diff --git a/app/functions/baseservices.gradle b/app/functions/baseservices.gradle deleted file mode 100644 index 2eaa297774..0000000000 --- a/app/functions/baseservices.gradle +++ /dev/null @@ -1,25 +0,0 @@ -// 基础服务:仅比亚迪渠道用sdk方式实现,其他都基于apk基础服务 - -project.dependencies { - if (Boolean.valueOf(RELEASE)) { - f8xxImplementation rootProject.ext.dependencies.mogobaseserviceapk - f80xImplementation rootProject.ext.dependencies.mogobaseserviceapk - f8AmapImplementation rootProject.ext.dependencies.mogobaseserviceapk - fochtaxiImplementation rootProject.ext.dependencies.mogobaseserviceapk - fochbusImplementation rootProject.ext.dependencies.mogobaseserviceapk - - fPadLenovoImplementation rootProject.ext.dependencies.mogobaseserviceapk - fPadLenovoOchTaxiImplementation rootProject.ext.dependencies.mogobaseserviceapk - fPadLenovoOchBusImplementation rootProject.ext.dependencies.mogobaseserviceapk - } else { - f8xxImplementation project(':foudations:mogo-base-services-apk') - f80xImplementation project(':foudations:mogo-base-services-apk') - f8AmapImplementation project(':foudations:mogo-base-services-apk') - fochtaxiImplementation project(':foudations:mogo-base-services-apk') - fochbusImplementation project(':foudations:mogo-base-services-apk') - - fPadLenovoImplementation project(':foudations:mogo-base-services-apk') - fPadLenovoOchTaxiImplementation project(':foudations:mogo-base-services-apk') - fPadLenovoOchBusImplementation project(':foudations:mogo-base-services-apk') - } -} \ No newline at end of file diff --git a/app/functions/httpdns.gradle b/app/functions/httpdns.gradle deleted file mode 100644 index c8522af9bb..0000000000 --- a/app/functions/httpdns.gradle +++ /dev/null @@ -1,13 +0,0 @@ -// 基础服务:仅比亚迪渠道用sdk方式实现,其他都基于apk基础服务 - -project.dependencies { - if (Boolean.valueOf(RELEASE)) { - qaImplementation rootProject.ext.dependencies.httpdnsnoop - demoImplementation rootProject.ext.dependencies.httpdnsnoop - onlineImplementation rootProject.ext.dependencies.httpdnsmogo - } else { - qaImplementation project(':foudations:httpdns-mogo') - demoImplementation project(':foudations:httpdns-mogo') - onlineImplementation project(':foudations:httpdns-mogo') - } -} \ No newline at end of file diff --git a/foudations/README.md b/foudations/README.md deleted file mode 100644 index 010ed73b74..0000000000 --- a/foudations/README.md +++ /dev/null @@ -1 +0,0 @@ -这个编写基础功能组件 \ No newline at end of file diff --git a/foudations/httpdns-base/.gitignore b/foudations/httpdns-base/.gitignore deleted file mode 100644 index 42afabfd2a..0000000000 --- a/foudations/httpdns-base/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/foudations/httpdns-base/build.gradle b/foudations/httpdns-base/build.gradle deleted file mode 100644 index 2f337a7de9..0000000000 --- a/foudations/httpdns-base/build.gradle +++ /dev/null @@ -1,43 +0,0 @@ -apply plugin: 'com.android.library' - -android { - compileSdkVersion rootProject.ext.android.compileSdkVersion - // buildToolsVersion rootProject.ext.android.buildToolsVersion - defaultConfig { - minSdkVersion rootProject.ext.android.minSdkVersion - targetSdkVersion rootProject.ext.android.targetSdkVersion - versionCode Integer.valueOf(VERSION_CODE) - versionName getValueFromRootProperties("${project.name.replace("-", "_").toUpperCase()}_VERSION") - - - testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" - consumerProguardFiles "consumer-rules.pro" - - javaCompileOptions { - annotationProcessorOptions { - arguments = [AROUTER_MODULE_NAME: project.getName()] - } - } - } - - buildTypes { - release { - minifyEnabled true - proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' - } - } -} - -dependencies { - implementation fileTree(dir: "libs", include: ["*.jar"]) - implementation rootProject.ext.dependencies.arouter - annotationProcessor rootProject.ext.dependencies.aroutercompiler - - if (Boolean.valueOf(RELEASE)) { - api rootProject.ext.dependencies.mogoutils - } else { - api project(':foudations:mogo-utils') - } -} - -apply from: new File(rootProject.rootDir, "gradle/upload.gradle").toString() \ No newline at end of file diff --git a/foudations/httpdns-base/gradle.properties b/foudations/httpdns-base/gradle.properties deleted file mode 100644 index c2f7baa9af..0000000000 --- a/foudations/httpdns-base/gradle.properties +++ /dev/null @@ -1,3 +0,0 @@ -GROUP=com.mogo.httpdns -POM_ARTIFACT_ID=httpdns-base -VERSION_CODE=1 \ No newline at end of file diff --git a/foudations/httpdns-base/proguard-rules.pro b/foudations/httpdns-base/proguard-rules.pro deleted file mode 100644 index 481bb43481..0000000000 --- a/foudations/httpdns-base/proguard-rules.pro +++ /dev/null @@ -1,21 +0,0 @@ -# Add project specific ProGuard rules here. -# You can control the set of applied configuration files using the -# proguardFiles setting in build.gradle. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#} - -# Uncomment this to preserve the line number information for -# debugging stack traces. -#-keepattributes SourceFile,LineNumberTable - -# If you keep the line number information, uncomment this to -# hide the original source file name. -#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/foudations/httpdns-base/src/main/AndroidManifest.xml b/foudations/httpdns-base/src/main/AndroidManifest.xml deleted file mode 100644 index eb5f8d96b8..0000000000 --- a/foudations/httpdns-base/src/main/AndroidManifest.xml +++ /dev/null @@ -1,4 +0,0 @@ - - - \ No newline at end of file diff --git a/foudations/httpdns-base/src/main/java/com/mogo/httpdns/IHttpDnsLocationChanged.java b/foudations/httpdns-base/src/main/java/com/mogo/httpdns/IHttpDnsLocationChanged.java deleted file mode 100644 index 37da4adc43..0000000000 --- a/foudations/httpdns-base/src/main/java/com/mogo/httpdns/IHttpDnsLocationChanged.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.mogo.httpdns; - -import android.location.Location; - -import androidx.annotation.Keep; - -import com.mogo.utils.httpdns.HttpSimpleLocation; -@Keep -public interface IHttpDnsLocationChanged { - /** - * 获取当前定位 - * @return 当前定位 - */ - HttpSimpleLocation getLocation(); -} diff --git a/foudations/httpdns-mogo/.gitignore b/foudations/httpdns-mogo/.gitignore deleted file mode 100644 index 42afabfd2a..0000000000 --- a/foudations/httpdns-mogo/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/foudations/httpdns-mogo/build.gradle b/foudations/httpdns-mogo/build.gradle deleted file mode 100644 index 513fac77a9..0000000000 --- a/foudations/httpdns-mogo/build.gradle +++ /dev/null @@ -1,46 +0,0 @@ -apply plugin: 'com.android.library' - -android { - compileSdkVersion rootProject.ext.android.compileSdkVersion - // buildToolsVersion rootProject.ext.android.buildToolsVersion - defaultConfig { - minSdkVersion rootProject.ext.android.minSdkVersion - targetSdkVersion rootProject.ext.android.targetSdkVersion - versionCode Integer.valueOf(VERSION_CODE) - versionName getValueFromRootProperties("${project.name.replace("-", "_").toUpperCase()}_VERSION") - - - testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" - consumerProguardFiles "consumer-rules.pro" - - javaCompileOptions { - annotationProcessorOptions { - arguments = [AROUTER_MODULE_NAME: project.getName()] - } - } - } - - buildTypes { - release { - minifyEnabled false - proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' - } - } -} - -dependencies { - implementation fileTree(dir: "libs", include: ["*.jar"]) - implementation rootProject.ext.dependencies.arouter - annotationProcessor rootProject.ext.dependencies.aroutercompiler - implementation 'com.mogo.httpdns:httpdns-helper:1.0.17' - - if (Boolean.valueOf(RELEASE)) { - implementation rootProject.ext.dependencies.httpdnsbase - implementation rootProject.ext.dependencies.mogocommons - } else { - implementation project(':foudations:httpdns-base') - implementation project(':foudations:mogo-commons') - } -} - -apply from: new File(rootProject.rootDir, "gradle/upload.gradle").toString() \ No newline at end of file diff --git a/foudations/httpdns-mogo/gradle.properties b/foudations/httpdns-mogo/gradle.properties deleted file mode 100644 index 112b45a237..0000000000 --- a/foudations/httpdns-mogo/gradle.properties +++ /dev/null @@ -1,3 +0,0 @@ -GROUP=com.mogo.httpdns -POM_ARTIFACT_ID=httpdns-mogo -VERSION_CODE=1 \ No newline at end of file diff --git a/foudations/httpdns-mogo/proguard-rules.pro b/foudations/httpdns-mogo/proguard-rules.pro deleted file mode 100644 index 481bb43481..0000000000 --- a/foudations/httpdns-mogo/proguard-rules.pro +++ /dev/null @@ -1,21 +0,0 @@ -# Add project specific ProGuard rules here. -# You can control the set of applied configuration files using the -# proguardFiles setting in build.gradle. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#} - -# Uncomment this to preserve the line number information for -# debugging stack traces. -#-keepattributes SourceFile,LineNumberTable - -# If you keep the line number information, uncomment this to -# hide the original source file name. -#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/foudations/httpdns-mogo/src/androidTest/java/com/mogo/httpdns/mogo/ExampleInstrumentedTest.java b/foudations/httpdns-mogo/src/androidTest/java/com/mogo/httpdns/mogo/ExampleInstrumentedTest.java deleted file mode 100644 index 6221400f44..0000000000 --- a/foudations/httpdns-mogo/src/androidTest/java/com/mogo/httpdns/mogo/ExampleInstrumentedTest.java +++ /dev/null @@ -1,26 +0,0 @@ -package com.mogo.httpdns.mogo; - -import android.content.Context; - -import androidx.test.platform.app.InstrumentationRegistry; -import androidx.test.ext.junit.runners.AndroidJUnit4; - -import org.junit.Test; -import org.junit.runner.RunWith; - -import static org.junit.Assert.*; - -/** - * Instrumented test, which will execute on an Android device. - * - * @see Testing documentation - */ -@RunWith(AndroidJUnit4.class) -public class ExampleInstrumentedTest { - @Test - public void useAppContext() { - // Context of the app under test. - Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); - assertEquals("com.mogo.httpdns.mogo.test", appContext.getPackageName()); - } -} \ No newline at end of file diff --git a/foudations/httpdns-mogo/src/main/AndroidManifest.xml b/foudations/httpdns-mogo/src/main/AndroidManifest.xml deleted file mode 100644 index b1c58ca282..0000000000 --- a/foudations/httpdns-mogo/src/main/AndroidManifest.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - \ No newline at end of file diff --git a/foudations/httpdns-mogo/src/test/java/com/mogo/httpdns/mogo/ExampleUnitTest.java b/foudations/httpdns-mogo/src/test/java/com/mogo/httpdns/mogo/ExampleUnitTest.java deleted file mode 100644 index bd65eb4339..0000000000 --- a/foudations/httpdns-mogo/src/test/java/com/mogo/httpdns/mogo/ExampleUnitTest.java +++ /dev/null @@ -1,17 +0,0 @@ -package com.mogo.httpdns.mogo; - -import org.junit.Test; - -import static org.junit.Assert.*; - -/** - * Example local unit test, which will execute on the development machine (host). - * - * @see Testing documentation - */ -public class ExampleUnitTest { - @Test - public void addition_isCorrect() { - assertEquals(4, 2 + 2); - } -} \ No newline at end of file diff --git a/foudations/httpdns-noop/.gitignore b/foudations/httpdns-noop/.gitignore deleted file mode 100644 index 42afabfd2a..0000000000 --- a/foudations/httpdns-noop/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/foudations/httpdns-noop/build.gradle b/foudations/httpdns-noop/build.gradle deleted file mode 100644 index 713d275623..0000000000 --- a/foudations/httpdns-noop/build.gradle +++ /dev/null @@ -1,43 +0,0 @@ -apply plugin: 'com.android.library' - -android { - compileSdkVersion rootProject.ext.android.compileSdkVersion - // buildToolsVersion rootProject.ext.android.buildToolsVersion - defaultConfig { - minSdkVersion rootProject.ext.android.minSdkVersion - targetSdkVersion rootProject.ext.android.targetSdkVersion - versionCode Integer.valueOf(VERSION_CODE) - versionName getValueFromRootProperties("${project.name.replace("-", "_").toUpperCase()}_VERSION") - - - testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" - consumerProguardFiles "consumer-rules.pro" - - javaCompileOptions { - annotationProcessorOptions { - arguments = [AROUTER_MODULE_NAME: project.getName()] - } - } - - } - - buildTypes { - release { - minifyEnabled false - proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' - } - } -} - -dependencies { - implementation fileTree(dir: "libs", include: ["*.jar"]) - implementation rootProject.ext.dependencies.arouter - annotationProcessor rootProject.ext.dependencies.aroutercompiler - if (Boolean.valueOf(RELEASE)) { - implementation rootProject.ext.dependencies.httpdnsbase - } else { - implementation project(':foudations:httpdns-base') - } -} - -apply from: new File(rootProject.rootDir, "gradle/upload.gradle").toString() \ No newline at end of file diff --git a/foudations/httpdns-noop/consumer-rules.pro b/foudations/httpdns-noop/consumer-rules.pro deleted file mode 100644 index f52fcb035b..0000000000 --- a/foudations/httpdns-noop/consumer-rules.pro +++ /dev/null @@ -1 +0,0 @@ --keep class com.mogo.httpdns.noop.*{*;} \ No newline at end of file diff --git a/foudations/httpdns-noop/gradle.properties b/foudations/httpdns-noop/gradle.properties deleted file mode 100644 index 1d02951301..0000000000 --- a/foudations/httpdns-noop/gradle.properties +++ /dev/null @@ -1,3 +0,0 @@ -GROUP=com.mogo.httpdns -POM_ARTIFACT_ID=httpdns-noop -VERSION_CODE=1 \ No newline at end of file diff --git a/foudations/httpdns-noop/proguard-rules.pro b/foudations/httpdns-noop/proguard-rules.pro deleted file mode 100644 index 481bb43481..0000000000 --- a/foudations/httpdns-noop/proguard-rules.pro +++ /dev/null @@ -1,21 +0,0 @@ -# Add project specific ProGuard rules here. -# You can control the set of applied configuration files using the -# proguardFiles setting in build.gradle. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#} - -# Uncomment this to preserve the line number information for -# debugging stack traces. -#-keepattributes SourceFile,LineNumberTable - -# If you keep the line number information, uncomment this to -# hide the original source file name. -#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/foudations/httpdns-noop/src/main/AndroidManifest.xml b/foudations/httpdns-noop/src/main/AndroidManifest.xml deleted file mode 100644 index 7bfbfbae9a..0000000000 --- a/foudations/httpdns-noop/src/main/AndroidManifest.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/foudations/httpdns-noop/src/main/java/com/mogo/httpdns/noop/HttpDnsNoop.java b/foudations/httpdns-noop/src/main/java/com/mogo/httpdns/noop/HttpDnsNoop.java deleted file mode 100644 index 006939ea5f..0000000000 --- a/foudations/httpdns-noop/src/main/java/com/mogo/httpdns/noop/HttpDnsNoop.java +++ /dev/null @@ -1,47 +0,0 @@ -package com.mogo.httpdns.noop; - -import android.content.Context; - -import com.alibaba.android.arouter.facade.annotation.Route; -import com.mogo.cloud.httpdns.listener.OnAddressChangedListener; -import com.mogo.httpdns.HttpDnsConst; -import com.mogo.httpdns.IHttpDnsCallback; -import com.mogo.httpdns.IMogoHttpDns; - -public -/** - * @author congtaowang - * @since 2020/11/18 - * - * 描述 - */ -@Route(path = HttpDnsConst.PATH) -class HttpDnsNoop implements IMogoHttpDns { - - @Override - public String getCachedHttpDnsIps(String host, int type) { - return host; - } - - @Override - public String syncGetHttpDns(String host, int type, boolean useCache) { - return host; - } - - @Override - public void addressChangedListener(OnAddressChangedListener listener) { - - } - - @Override - public void getHttpDnsIp(String host, int type, boolean useCache, IHttpDnsCallback callback) { - if (callback != null) { - callback.onParsed(host); - } - } - - @Override - public void init(Context context) { - - } -} diff --git a/foudations/mogo-aicloud-services-apk/.gitignore b/foudations/mogo-aicloud-services-apk/.gitignore deleted file mode 100644 index 42afabfd2a..0000000000 --- a/foudations/mogo-aicloud-services-apk/.gitignore +++ /dev/null @@ -1 +0,0 @@ -/build \ No newline at end of file diff --git a/foudations/mogo-aicloud-services-apk/build.gradle b/foudations/mogo-aicloud-services-apk/build.gradle deleted file mode 100644 index 3124fa6fdd..0000000000 --- a/foudations/mogo-aicloud-services-apk/build.gradle +++ /dev/null @@ -1,41 +0,0 @@ -plugins { - id 'com.android.library' -} - -android { - compileSdkVersion rootProject.ext.android.compileSdkVersion - - defaultConfig { - minSdkVersion rootProject.ext.android.minSdkVersion - targetSdkVersion rootProject.ext.android.targetSdkVersion - versionCode Integer.valueOf(VERSION_CODE) - versionName getValueFromRootProperties("${project.name.replace("-", "_").toUpperCase()}_VERSION") - - consumerProguardFiles "consumer-rules.pro" - } - - buildTypes { - release { - minifyEnabled false - proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' - } - } - compileOptions { - sourceCompatibility JavaVersion.VERSION_1_8 - targetCompatibility JavaVersion.VERSION_1_8 - } -} - -dependencies { - implementation rootProject.ext.dependencies.mogoaicloudsocket - - if (Boolean.valueOf(RELEASE)) { - implementation rootProject.ext.dependencies.mogoutils - implementation rootProject.ext.dependencies.mogoserviceapi - } else { - implementation project(":foudations:mogo-utils") - implementation project(":services:mogo-service-api") - } -} - -apply from: new File(rootProject.rootDir, "gradle/upload.gradle").toString() \ No newline at end of file diff --git a/foudations/mogo-aicloud-services-apk/gradle.properties b/foudations/mogo-aicloud-services-apk/gradle.properties deleted file mode 100644 index 18db84c7e8..0000000000 --- a/foudations/mogo-aicloud-services-apk/gradle.properties +++ /dev/null @@ -1,3 +0,0 @@ -GROUP=com.mogo.aicloud.services -POM_ARTIFACT_ID=services-apk -VERSION_CODE=1 diff --git a/foudations/mogo-aicloud-services-apk/proguard-rules.pro b/foudations/mogo-aicloud-services-apk/proguard-rules.pro deleted file mode 100644 index 481bb43481..0000000000 --- a/foudations/mogo-aicloud-services-apk/proguard-rules.pro +++ /dev/null @@ -1,21 +0,0 @@ -# Add project specific ProGuard rules here. -# You can control the set of applied configuration files using the -# proguardFiles setting in build.gradle. -# -# For more details, see -# http://developer.android.com/guide/developing/tools/proguard.html - -# If your project uses WebView with JS, uncomment the following -# and specify the fully qualified class name to the JavaScript interface -# class: -#-keepclassmembers class fqcn.of.javascript.interface.for.webview { -# public *; -#} - -# Uncomment this to preserve the line number information for -# debugging stack traces. -#-keepattributes SourceFile,LineNumberTable - -# If you keep the line number information, uncomment this to -# hide the original source file name. -#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/foudations/mogo-aicloud-services-apk/src/main/AndroidManifest.xml b/foudations/mogo-aicloud-services-apk/src/main/AndroidManifest.xml deleted file mode 100644 index a8c2c36937..0000000000 --- a/foudations/mogo-aicloud-services-apk/src/main/AndroidManifest.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - \ No newline at end of file diff --git a/foudations/mogo-aicloud-services-apk/src/main/java/com/mogo/aicloud/services/locationinfo/MogoLocationInfoServices.java b/foudations/mogo-aicloud-services-apk/src/main/java/com/mogo/aicloud/services/locationinfo/MogoLocationInfoServices.java deleted file mode 100644 index 74d0fdd744..0000000000 --- a/foudations/mogo-aicloud-services-apk/src/main/java/com/mogo/aicloud/services/locationinfo/MogoLocationInfoServices.java +++ /dev/null @@ -1,63 +0,0 @@ -package com.mogo.aicloud.services.locationinfo; - -import android.content.Context; - -import androidx.annotation.Keep; - -import com.mogo.map.location.MogoLocation; -import com.mogo.service.locationinfo.IMogoLocationInfoService; -import com.mogo.utils.logger.Logger; - -public -/** - * @author congtaowang - * @since 2020/7/16 - * - * 位置服务 - */ -@Keep -class MogoLocationInfoServices implements IMogoLocationInfoService { - - private static final String TAG = "MogoLocationInfoServices-apk"; - - private static volatile MogoLocationInfoServices sInstance; - - private MogoLocationInfoServices() { - } - - @Keep - public static MogoLocationInfoServices getInstance() { - if ( sInstance == null ) { - synchronized ( MogoLocationInfoServices.class ) { - if ( sInstance == null ) { - sInstance = new MogoLocationInfoServices(); - } - } - } - return sInstance; - } - - public synchronized void release() { - sInstance = null; - } - - @Override - public void provideLocation( MogoLocation location ) { - Logger.d( TAG, "apk - provideLocation" ); - } - - @Override - public void start() { - Logger.d( TAG, "apk - start" ); - } - - @Override - public void stop() { - Logger.d( TAG, "apk - stop" ); - } - - @Override - public void init( Context context ) { - Logger.d( TAG, "apk - init" ); - } -} diff --git a/foudations/mogo-aicloud-services-apk/src/main/java/com/mogo/aicloud/services/passport/PassportManager.java b/foudations/mogo-aicloud-services-apk/src/main/java/com/mogo/aicloud/services/passport/PassportManager.java deleted file mode 100644 index f4a6991534..0000000000 --- a/foudations/mogo-aicloud-services-apk/src/main/java/com/mogo/aicloud/services/passport/PassportManager.java +++ /dev/null @@ -1,71 +0,0 @@ -package com.mogo.aicloud.services.passport; - -import android.content.Context; - -import androidx.annotation.Keep; - -import com.mogo.cloud.passport.IMoGoTokenCallback; -import com.mogo.cloud.passport.MoGoAiCloudClient; -import com.mogo.service.passport.IMogoPassportManager; -import com.mogo.service.passport.IMogoTicketCallback; - -public -/* - * @author congtaowang - * @since 2020/7/16 - * - * 描述 - */ -@Keep -class PassportManager implements IMogoPassportManager { - - private static volatile PassportManager sInstance; - private IMogoTicketCallback mCallBack; - - private PassportManager() { - MoGoAiCloudClient.getInstance().addTokenCallbacks(new IMoGoTokenCallback() { - @Override - public void onTokenGot(String token, String sn) { - if (mCallBack != null) { - mCallBack.onTicketGot(token); - } - } - - @Override - public void onError(int code, String msg) { - if (mCallBack != null) { - mCallBack.onError(code, msg); - } - } - }); - } - - @Keep - public static PassportManager getInstance() { - if (sInstance == null) { - synchronized (PassportManager.class) { - if (sInstance == null) { - sInstance = new PassportManager(); - } - } - } - return sInstance; - } - - public synchronized void release() { - mCallBack = null; - sInstance = null; - } - - @Override - public void requestTicket(final IMogoTicketCallback callback) { - this.mCallBack = callback; - MoGoAiCloudClient.getInstance().refreshToken(); - } - - @Override - public void init(Context context) { - - } - -} diff --git a/foudations/mogo-aicloud-services-apk/src/main/java/com/mogo/aicloud/services/socket/MogoAiCloudSocketManager.java b/foudations/mogo-aicloud-services-apk/src/main/java/com/mogo/aicloud/services/socket/MogoAiCloudSocketManager.java deleted file mode 100644 index a45f3814ee..0000000000 --- a/foudations/mogo-aicloud-services-apk/src/main/java/com/mogo/aicloud/services/socket/MogoAiCloudSocketManager.java +++ /dev/null @@ -1,211 +0,0 @@ -package com.mogo.aicloud.services.socket; - -import android.content.Context; - -import androidx.annotation.Keep; - -import com.mogo.cloud.socket.IMogoCloudSocketMsgAckListener; -import com.mogo.cloud.socket.IMogoCloudSocketOnMessageListener; -import com.mogo.cloud.socket.SocketManager; -import com.mogo.cloud.socket.entity.MsgBody; -import com.mogo.service.connection.IMogoLifecycleListener; -import com.mogo.service.connection.IMogoMsgAckListener; -import com.mogo.service.connection.IMogoOnMessageListener; -import com.mogo.service.connection.IMogoSocketManager; -import com.mogo.utils.logger.Logger; -import com.zhidao.ptech.connsvr.commom.protocol.MogoCommon; -import com.zhidao.socket.ConnectionLifecycleListener; - -import java.util.ArrayList; -import java.util.List; -import java.util.Map; -import java.util.concurrent.ConcurrentHashMap; - -/** - * @author arrow - * @since 2021-02-22 - *

- * 长链实现:基于 netty - */ -@Keep -public class MogoAiCloudSocketManager extends ConnectionLifecycleListener implements IMogoSocketManager { - - private static final String TAG = "MogoAiCloudSocketManager-apk"; - - private static volatile MogoAiCloudSocketManager sInstance; - private String mAppId; - - private MogoAiCloudSocketManager(Context context) { - } - - @Keep - public static MogoAiCloudSocketManager getInstance(Context context) { - if (sInstance == null) { - synchronized (MogoAiCloudSocketManager.class) { - if (sInstance == null) { - sInstance = new MogoAiCloudSocketManager(context); - } - } - } - return sInstance; - } - - /** - * 管理消息分发 - *

- * key - msgType - */ - private final Map> mListeners = new ConcurrentHashMap<>(); - private final Map mLifeCycleListeners = new ConcurrentHashMap<>(); - - /** - * 管理消息回执 - *

- * key - msgId - */ - private final Map mAckListeners = new ConcurrentHashMap<>(); - - @Override - public void init(Context context, String appId) { - this.mAppId = appId; - SocketManager.getInstance().init(context); - SocketManager.getInstance().registerSocketConnCallback(this); - } - - @Override - public void registerOnMessageListener(int msgType, IMogoOnMessageListener listener) { - if (mListeners.containsKey(msgType)) { - com.mogo.cloud.utils.logger.Logger.w(TAG, "msgType %d is exist.", msgType); - return; - } - if (!mListeners.containsKey(msgType)) { - mListeners.put(msgType, new ArrayList<>()); - } - mListeners.get(msgType).add(listener); - SocketManager.getInstance().registerOnMessageListener(msgType, mogoCloudSocketOnMessageListener); - } - - @Override - public void unregisterOnMessageListener(int msgType) { - - } - - @Override - public void unregisterOnMessageListener(int msgType, IMogoOnMessageListener listener) { - if (listener == null) { - return; - } - if (!mListeners.containsKey(msgType)) { - return; - } - List listeners = mListeners.get(msgType); - if (listeners != null) { - listeners.remove(listener); - } - SocketManager.getInstance().unregisterOnMessageListener(msgType, mogoCloudSocketOnMessageListener); - } - - @Override - public void registerLifecycleListener(int msgType, IMogoLifecycleListener listener) { - if (mLifeCycleListeners.containsKey(msgType)) { - return; - } - if (!mLifeCycleListeners.containsKey(msgType)) { - mLifeCycleListeners.put(msgType, listener); - } - } - - @Override - public void unregisterLifecycleListener(int msgType) { - if (!mLifeCycleListeners.containsKey(msgType)) { - return; - } - mLifeCycleListeners.remove(msgType); - } - - @Override - public void sendMsg(MsgBody body, IMogoMsgAckListener listener) { - Logger.d(TAG, "sendMsg."); - mAckListeners.put(body.getMsgId(), listener); - MsgBody msgBody = new MsgBody(); - msgBody.msgType(body.getMsgType()); - msgBody.ack(body.isAck()); - msgBody.content(body.getContent()); - SocketManager.getInstance().sendMsg(mAppId, MogoCommon.Product.mogoBussiness.getNumber(), msgBody, mogoCloudSocketMsgAckListener); - } - - @Override - public void destroy() { - release(); - } - - public synchronized void release() { - SocketManager.getInstance().release(); - } - - @Override - public void init(Context context) { - - } - - private final IMogoCloudSocketMsgAckListener mogoCloudSocketMsgAckListener = msgId -> mAckListeners.get(msgId).onAck(msgId); - - private final IMogoCloudSocketOnMessageListener mogoCloudSocketOnMessageListener = new IMogoCloudSocketOnMessageListener() { - @Override - public Class target(int msgType) { - List listeners = mListeners.get(msgType); - if (listeners != null) { - return listeners.get(0).target(); - } else { - return Object.class; - } - } - - @Override - public void onMsgReceived(int msgType, Object obj) { - Logger.d(TAG,"onMsgReceived obj className : " + obj.getClass().getName()); - List listeners = mListeners.get(msgType); - if (listeners != null && !listeners.isEmpty()) { - for (IMogoOnMessageListener listener : listeners) { - if (listener != null) { - Logger.d(TAG, "received msgId = %s, content = %s", mAckListeners.get(msgType), obj); - listener.onMsgReceived(obj); - } - } - } - } - }; - - @Override - public void onConnectSuccess() { - if (mLifeCycleListeners.size() > 0){ - for (IMogoLifecycleListener lifecycleListener : mLifeCycleListeners.values()){ - if (lifecycleListener != null){ - lifecycleListener.onConnectSuccess(); - } - } - } - } - - @Override - public void onConnectFailure() { - if (mLifeCycleListeners.size() > 0){ - for (IMogoLifecycleListener lifecycleListener : mLifeCycleListeners.values()){ - if (lifecycleListener != null){ - lifecycleListener.onConnectFailure(); - } - } - } - } - - @Override - public void onConnectLost(boolean reconnect) { - if (mLifeCycleListeners.size() > 0){ - for (IMogoLifecycleListener lifecycleListener : mLifeCycleListeners.values()){ - if (lifecycleListener != null){ - lifecycleListener.onConnectLost(); - } - } - } - } -} diff --git a/foudations/httpdns-base/src/main/java/com/mogo/httpdns/HttpDnsConst.java b/foudations/mogo-aicloud-services-sdk/src/main/java/com/mogo/aicloud/services/httpdns/HttpDnsConst.java similarity index 77% rename from foudations/httpdns-base/src/main/java/com/mogo/httpdns/HttpDnsConst.java rename to foudations/mogo-aicloud-services-sdk/src/main/java/com/mogo/aicloud/services/httpdns/HttpDnsConst.java index e3dcbaa81c..e68ad990ed 100644 --- a/foudations/httpdns-base/src/main/java/com/mogo/httpdns/HttpDnsConst.java +++ b/foudations/mogo-aicloud-services-sdk/src/main/java/com/mogo/aicloud/services/httpdns/HttpDnsConst.java @@ -1,4 +1,4 @@ -package com.mogo.httpdns; +package com.mogo.service.cloud.httpdns; import androidx.annotation.Keep; @@ -11,9 +11,6 @@ import androidx.annotation.Keep; @Keep public class HttpDnsConst { - @Keep - public static final String PATH = "/httpdns/api"; - public static final int HTTP_DNS_ADDRESS_TYPE_HTTP = 0; public static final int HTTP_DNS_ADDRESS_TYPE_WS = 1; public static final int HTTP_DNS_ADDRESS_TYPE_IM = 2; diff --git a/foudations/httpdns-base/src/main/java/com/mogo/httpdns/IHttpDnsCallback.java b/foudations/mogo-aicloud-services-sdk/src/main/java/com/mogo/aicloud/services/httpdns/IHttpDnsCallback.java similarity index 85% rename from foudations/httpdns-base/src/main/java/com/mogo/httpdns/IHttpDnsCallback.java rename to foudations/mogo-aicloud-services-sdk/src/main/java/com/mogo/aicloud/services/httpdns/IHttpDnsCallback.java index 22bc13cc93..e53225d8f1 100644 --- a/foudations/httpdns-base/src/main/java/com/mogo/httpdns/IHttpDnsCallback.java +++ b/foudations/mogo-aicloud-services-sdk/src/main/java/com/mogo/aicloud/services/httpdns/IHttpDnsCallback.java @@ -1,4 +1,4 @@ -package com.mogo.httpdns; +package com.mogo.service.cloud.httpdns; import androidx.annotation.Keep; import androidx.annotation.Nullable; diff --git a/foudations/httpdns-base/src/main/java/com/mogo/httpdns/IMogoHttpDns.java b/foudations/mogo-aicloud-services-sdk/src/main/java/com/mogo/aicloud/services/httpdns/IMogoHttpDns.java similarity index 96% rename from foudations/httpdns-base/src/main/java/com/mogo/httpdns/IMogoHttpDns.java rename to foudations/mogo-aicloud-services-sdk/src/main/java/com/mogo/aicloud/services/httpdns/IMogoHttpDns.java index 4952da587f..71b1befcd1 100644 --- a/foudations/httpdns-base/src/main/java/com/mogo/httpdns/IMogoHttpDns.java +++ b/foudations/mogo-aicloud-services-sdk/src/main/java/com/mogo/aicloud/services/httpdns/IMogoHttpDns.java @@ -1,4 +1,4 @@ -package com.mogo.httpdns; +package com.mogo.service.cloud.httpdns; import androidx.annotation.Keep; diff --git a/foudations/httpdns-mogo/src/main/java/com/mogo/httpdns/mogo/MogoHttpDns.java b/foudations/mogo-aicloud-services-sdk/src/main/java/com/mogo/aicloud/services/httpdns/MogoHttpDns.java similarity index 100% rename from foudations/httpdns-mogo/src/main/java/com/mogo/httpdns/mogo/MogoHttpDns.java rename to foudations/mogo-aicloud-services-sdk/src/main/java/com/mogo/aicloud/services/httpdns/MogoHttpDns.java diff --git a/foudations/httpdns-base/src/main/java/com/mogo/httpdns/MogoHttpDnsHandler.java b/foudations/mogo-aicloud-services-sdk/src/main/java/com/mogo/aicloud/services/httpdns/MogoHttpDnsHandler.java similarity index 100% rename from foudations/httpdns-base/src/main/java/com/mogo/httpdns/MogoHttpDnsHandler.java rename to foudations/mogo-aicloud-services-sdk/src/main/java/com/mogo/aicloud/services/httpdns/MogoHttpDnsHandler.java diff --git a/foudations/mogo-commons/apipackage.txt b/foudations/mogo-commons/apipackage.txt deleted file mode 100644 index 855b249c77..0000000000 --- a/foudations/mogo-commons/apipackage.txt +++ /dev/null @@ -1,4 +0,0 @@ -com.mogo.commons.mvp -com.mogo.commons.debug -com.mogo.commons.voice -com.mogo.commons.data \ No newline at end of file diff --git a/modules/mogo-module-guide/build/generated/source/buildConfig/debug/com/mogo/module/guide/BuildConfig.java b/modules/mogo-module-guide/build/generated/source/buildConfig/debug/com/mogo/module/guide/BuildConfig.java new file mode 100644 index 0000000000..e57b803218 --- /dev/null +++ b/modules/mogo-module-guide/build/generated/source/buildConfig/debug/com/mogo/module/guide/BuildConfig.java @@ -0,0 +1,18 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package com.mogo.module.guide; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String LIBRARY_PACKAGE_NAME = "com.mogo.module.guide"; + /** + * @deprecated APPLICATION_ID is misleading in libraries. For the library package name use LIBRARY_PACKAGE_NAME + */ + @Deprecated + public static final String APPLICATION_ID = "com.mogo.module.guide"; + public static final String BUILD_TYPE = "debug"; + public static final String FLAVOR = ""; + public static final int VERSION_CODE = 1; + public static final String VERSION_NAME = "2.0.16"; +} diff --git a/modules/mogo-module-guide/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$guide.java b/modules/mogo-module-guide/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$guide.java new file mode 100644 index 0000000000..1cb6ec6d54 --- /dev/null +++ b/modules/mogo-module-guide/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$guide.java @@ -0,0 +1,18 @@ +package com.alibaba.android.arouter.routes; + +import com.alibaba.android.arouter.facade.enums.RouteType; +import com.alibaba.android.arouter.facade.model.RouteMeta; +import com.alibaba.android.arouter.facade.template.IRouteGroup; +import com.mogo.module.guide.MogoGuideProvider; +import java.lang.Override; +import java.lang.String; +import java.util.Map; + +/** + * DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER. */ +public class ARouter$$Group$$guide implements IRouteGroup { + @Override + public void loadInto(Map atlas) { + atlas.put("/guide/showFragment", RouteMeta.build(RouteType.PROVIDER, MogoGuideProvider.class, "/guide/showfragment", "guide", null, -1, -2147483648)); + } +} diff --git a/modules/mogo-module-guide/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogomoduleguide.java b/modules/mogo-module-guide/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogomoduleguide.java new file mode 100644 index 0000000000..c41da864fd --- /dev/null +++ b/modules/mogo-module-guide/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogomoduleguide.java @@ -0,0 +1,18 @@ +package com.alibaba.android.arouter.routes; + +import com.alibaba.android.arouter.facade.enums.RouteType; +import com.alibaba.android.arouter.facade.model.RouteMeta; +import com.alibaba.android.arouter.facade.template.IProviderGroup; +import com.mogo.module.guide.MogoGuideProvider; +import java.lang.Override; +import java.lang.String; +import java.util.Map; + +/** + * DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER. */ +public class ARouter$$Providers$$mogomoduleguide implements IProviderGroup { + @Override + public void loadInto(Map providers) { + providers.put("com.mogo.service.module.IMogoModuleProvider", RouteMeta.build(RouteType.PROVIDER, MogoGuideProvider.class, "/guide/showFragment", "guide", null, -1, -2147483648)); + } +} diff --git a/modules/mogo-module-guide/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Root$$mogomoduleguide.java b/modules/mogo-module-guide/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Root$$mogomoduleguide.java new file mode 100644 index 0000000000..ccde26469c --- /dev/null +++ b/modules/mogo-module-guide/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Root$$mogomoduleguide.java @@ -0,0 +1,17 @@ +package com.alibaba.android.arouter.routes; + +import com.alibaba.android.arouter.facade.template.IRouteGroup; +import com.alibaba.android.arouter.facade.template.IRouteRoot; +import java.lang.Class; +import java.lang.Override; +import java.lang.String; +import java.util.Map; + +/** + * DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER. */ +public class ARouter$$Root$$mogomoduleguide implements IRouteRoot { + @Override + public void loadInto(Map> routes) { + routes.put("guide", ARouter$$Group$$guide.class); + } +} diff --git a/modules/mogo-module-guide/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/modules/mogo-module-guide/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml new file mode 100644 index 0000000000..9336746b1d --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-guide/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json b/modules/mogo-module-guide/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json new file mode 100644 index 0000000000..a6c096cab2 --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"2.0.16","enabled":true,"outputFile":"mogo-module-guide-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.mogo.module.guide","split":""}}] \ No newline at end of file diff --git a/modules/mogo-module-guide/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/modules/mogo-module-guide/build/intermediates/annotation_processor_list/debug/annotationProcessors.json new file mode 100644 index 0000000000..9e26dfeeb6 --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/annotation_processor_list/debug/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/foudations/httpdns-base/consumer-rules.pro b/modules/mogo-module-guide/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt similarity index 100% rename from foudations/httpdns-base/consumer-rules.pro rename to modules/mogo-module-guide/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt diff --git a/modules/mogo-module-guide/build/intermediates/compile_library_classes/debug/classes.jar b/modules/mogo-module-guide/build/intermediates/compile_library_classes/debug/classes.jar new file mode 100644 index 0000000000..13d39ccc04 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/compile_library_classes/debug/classes.jar differ diff --git a/modules/mogo-module-guide/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar b/modules/mogo-module-guide/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar new file mode 100644 index 0000000000..a58775a2d3 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar differ diff --git a/foudations/httpdns-mogo/consumer-rules.pro b/modules/mogo-module-guide/build/intermediates/consumer_proguard_file/debug/proguard.txt similarity index 100% rename from foudations/httpdns-mogo/consumer-rules.pro rename to modules/mogo-module-guide/build/intermediates/consumer_proguard_file/debug/proguard.txt diff --git a/modules/mogo-module-guide/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/modules/mogo-module-guide/build/intermediates/incremental/debug-mergeJavaRes/merge-state new file mode 100644 index 0000000000..e041053518 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ diff --git a/modules/mogo-module-guide/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/modules/mogo-module-guide/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml new file mode 100644 index 0000000000..6d1612ad02 --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-guide/build/intermediates/incremental/mergeDebugShaders/merger.xml b/modules/mogo-module-guide/build/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000000..83880d6220 --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/incremental/mergeDebugShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-guide/build/intermediates/incremental/packageDebugAssets/merger.xml b/modules/mogo-module-guide/build/intermediates/incremental/packageDebugAssets/merger.xml new file mode 100644 index 0000000000..32a051f73b --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/incremental/packageDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-guide/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/modules/mogo-module-guide/build/intermediates/incremental/packageDebugResources/compile-file-map.properties new file mode 100644 index 0000000000..29b0ba470b --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/incremental/packageDebugResources/compile-file-map.properties @@ -0,0 +1,30 @@ +#Tue Aug 31 15:00:17 CST 2021 +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-xhdpi/module_guide_item_stage_five_launcher.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_item_stage_five_launcher.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-ldpi/module_guide_right_page.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_right_page.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-ldpi/module_guide_item_stage_five.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_item_stage_five.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/layout/module_guide_fragment.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_fragment.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-ldpi/module_guide_item_stage_three.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_item_stage_three.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-xhdpi/module_guide_item_stage_four_launcher.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_item_stage_four_launcher.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/drawable/module_guide_blue_corner.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/drawable/module_guide_blue_corner.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/layout/module_guide_item_stage_two.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_stage_two.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-ldpi/module_guide_item_stage_four.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_item_stage_four.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-xhdpi/module_guide_item_stage_three_launcher.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_item_stage_three_launcher.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-mdpi/module_guide_item_stage_three_launcher.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_item_stage_three_launcher.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-mdpi/module_guide_item_stage_five_launcher.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_item_stage_five_launcher.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/layout/module_guide_item_stage_three.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_stage_three.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-mdpi/module_guide_item_stage_two_launcher.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_item_stage_two_launcher.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-xhdpi/module_guide_item_stage_one_launcher.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_item_stage_one_launcher.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-ldpi/module_guide_item_stage_two.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_item_stage_two.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/layout/module_guide_item_stage_four.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_stage_four.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-mdpi/module_guide_item_stage_one_launcher.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_item_stage_one_launcher.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-ldpi/module_guide_item_stage_one.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_item_stage_one.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-mdpi/module_guide_item_stage_four_launcher.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_item_stage_four_launcher.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-ldpi/module_guide_left_page.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_left_page.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-mdpi/module_guide_right_page.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_right_page.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-xhdpi/module_guide_item_stage_two_launcher.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_item_stage_two_launcher.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-mdpi/module_guide_left_page.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_left_page.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/layout/module_guide_item_stage_one.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_stage_one.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/layout/module_guide_item_include.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_include.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-xhdpi/module_guide_right_page.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_right_page.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/mipmap-xhdpi/module_guide_left_page.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_left_page.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/res/layout/module_guide_item_stage_five.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_stage_five.xml diff --git a/modules/mogo-module-guide/build/intermediates/incremental/packageDebugResources/merged.dir/values-xhdpi-v4/values-xhdpi-v4.xml b/modules/mogo-module-guide/build/intermediates/incremental/packageDebugResources/merged.dir/values-xhdpi-v4/values-xhdpi-v4.xml new file mode 100644 index 0000000000..10da76ed9d --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/incremental/packageDebugResources/merged.dir/values-xhdpi-v4/values-xhdpi-v4.xml @@ -0,0 +1,1046 @@ + + + 0px + 0.1px + 0.5px + 1px + 10px + 100px + 101px + 102px + 103px + 104px + 104.5px + 105px + 106px + 107px + 108px + 109px + 11px + 110px + 111px + 112px + 113px + 114px + 115px + 116px + 117px + 118px + 119px + 12px + 120px + 121px + 122px + 123px + 124px + 125px + 126px + 127px + 128px + 129px + 13px + 130px + 1300px + 131px + 132px + 133px + 134px + 134.5px + 135px + 136px + 137px + 138px + 139px + 14px + 140px + 141px + 142px + 143px + 144px + 145px + 146px + 147px + 148px + 149px + 15px + 150px + 151px + 152px + 153px + 154px + 155px + 156px + 157px + 158px + 159px + 16px + 160px + 161px + 162px + 163px + 164px + 165px + 166px + 167px + 168px + 169px + 17px + 170px + 171px + 172px + 173px + 174px + 175px + 176px + 177px + 178px + 179px + 18px + 180px + 181px + 182px + 183px + 184px + 185px + 186px + 187px + 188px + 189px + 19px + 190px + 191px + 191.25px + 192px + 193px + 194px + 195px + 196px + 197px + 198px + 199px + 1.5px + 2px + 20px + 200px + 201px + 202px + 203px + 204px + 205px + 206px + 207px + 208px + 209px + 21px + 210px + 211px + 212px + 213px + 214px + 215px + 216px + 217px + 218px + 219px + 22px + 220px + 221px + 222px + 223px + 224px + 225px + 226px + 227px + 228px + 229px + 23px + 230px + 231px + 232px + 233px + 234px + 235px + 236px + 237px + 238px + 239px + 24px + 240px + 241px + 242px + 243px + 244px + 245px + 246px + 247px + 248px + 249px + 25px + 250px + 251px + 252px + 253px + 254px + 255px + 256px + 257px + 258px + 259px + 26px + 260px + 261px + 262px + 263px + 264px + 265px + 266px + 267px + 268px + 269px + 27px + 270px + 271px + 272px + 273px + 274px + 275px + 276px + 277px + 278px + 279px + 28px + 280px + 281px + 282px + 283px + 284px + 285px + 286px + 287px + 288px + 289px + 29px + 290px + 291px + 292px + 293px + 294px + 295px + 296px + 297px + 298px + 299px + 2.5px + 3px + 30px + 300px + 301px + 302px + 303px + 304px + 305px + 306px + 307px + 308px + 309px + 31px + 310px + 311px + 312px + 313px + 314px + 315px + 316px + 317px + 318px + 319px + 32px + 320px + 321px + 322px + 323px + 324px + 325px + 326px + 327px + 328px + 329px + 33px + 330px + 331px + 332px + 333px + 334px + 335px + 336px + 337px + 338px + 339px + 34px + 340px + 341px + 342px + 343px + 344px + 345px + 346px + 347px + 348px + 349px + 35px + 350px + 351px + 352px + 353px + 354px + 355px + 356px + 357px + 358px + 359px + 36px + 366px + 367px + 368px + 369px + 37px + 370px + 371px + 372px + 373px + 374px + 375px + 376px + 377px + 378px + 379px + 38px + 380px + 381px + 382px + 383px + 384px + 385px + 386px + 387px + 388px + 389px + 39px + 390px + 391px + 392px + 393px + 394px + 395px + 396px + 397px + 398px + 399px + 3.5px + 4px + 40px + 400px + 401px + 402px + 403px + 404px + 405px + 406px + 407px + 408px + 409px + 41px + 410px + 411px + 412px + 413px + 414px + 415px + 416px + 417px + 418px + 419px + 42px + 420px + 421px + 422px + 423px + 424px + 425px + 426px + 427px + 428px + 429px + 43px + 430px + 431px + 432px + 433px + 434px + 435px + 436px + 437px + 438px + 439px + 44px + 440px + 441px + 442px + 443px + 444px + 445px + 446px + 447px + 448px + 449px + 45px + 450px + 451px + 452px + 453px + 454px + 455px + 456px + 457px + 458px + 459px + 46px + 460px + 461px + 462px + 463px + 464px + 465px + 466px + 467px + 468px + 469px + 47px + 470px + 471px + 472px + 473px + 474px + 475px + 476px + 477px + 478px + 479px + 48px + 480px + 481px + 482px + 483px + 484px + 485px + 486px + 487px + 488px + 489px + 49px + 490px + 491px + 492px + 493px + 494px + 495px + 496px + 497px + 498px + 499px + 4.5px + 5px + 50px + 500px + 501px + 502px + 503px + 504px + 505px + 506px + 507px + 508px + 509px + 51px + 510px + 511px + 512px + 513px + 514px + 515px + 516px + 517px + 518px + 519px + 52px + 520px + 521px + 522px + 523px + 524px + 525px + 526px + 527px + 528px + 529px + 53px + 530px + 531px + 532px + 533px + 534px + 535px + 536px + 537px + 538px + 539px + 54px + 540px + 541px + 542px + 543px + 544px + 545px + 546px + 547px + 548px + 549px + 55px + 550px + 551px + 552px + 553px + 554px + 555px + 556px + 557px + 558px + 559px + 56px + 560px + 561px + 562px + 563px + 564px + 565px + 566px + 567px + 568px + 569px + 57px + 570px + 571px + 572px + 573px + 574px + 575px + 576px + 577px + 578px + 579px + 58px + 580px + 581px + 582px + 583px + 584px + 585px + 586px + 587px + 588px + 589px + 59px + 590px + 591px + 592px + 593px + 594px + 595px + 596px + 597px + 598px + 599px + 6px + 60px + 600px + 601px + 602px + 603px + 604px + 605px + 606px + 607px + 608px + 609px + 61px + 610px + 611px + 612px + 613px + 614px + 615px + 616px + 617px + 618px + 619px + 62px + 620px + 621px + 622px + 623px + 624px + 625px + 626px + 627px + 628px + 629px + 63px + 630px + 631px + 632px + 633px + 634px + 635px + 636px + 637px + 638px + 639px + 64px + 640px + 641px + 642px + 643px + 644px + 645px + 646px + 647px + 648px + 649px + 65px + 650px + 651px + 652px + 653px + 654px + 655px + 656px + 657px + 658px + 659px + 66px + 660px + 661px + 662px + 663px + 664px + 665px + 666px + 667px + 668px + 669px + 67px + 670px + 671px + 672px + 673px + 674px + 675px + 676px + 677px + 678px + 679px + 68px + 680px + 681px + 682px + 683px + 684px + 685px + 686px + 687px + 688px + 689px + 69px + 690px + 691px + 692px + 693px + 694px + 695px + 696px + 697px + 698px + 699px + 7px + 70px + 700px + 701px + 702px + 703px + 704px + 705px + 706px + 707px + 708px + 709px + 71px + 710px + 711px + 712px + 713px + 714px + 715px + 716px + 717px + 718px + 719px + 72px + 720px + 721px + 722px + 723px + 724px + 725px + 726px + 727px + 728px + 729px + 73px + 730px + 731px + 732px + 733px + 734px + 735px + 736px + 737px + 738px + 739px + 74px + 740px + 741px + 742px + 743px + 744px + 745px + 746px + 747px + 748px + 749px + 75px + 750px + 751px + 752px + 753px + 754px + 755px + 756px + 757px + 758px + 759px + 76px + 760px + 761px + 762px + 763px + 764px + 765px + 766px + 767px + 768px + 769px + 77px + 770px + 771px + 772px + 773px + 774px + 775px + 776px + 777px + 778px + 779px + 78px + 780px + 781px + 782px + 783px + 784px + 785px + 786px + 787px + 788px + 789px + 79px + 790px + 791px + 792px + 793px + 794px + 795px + 796px + 797px + 798px + 799px + 7.5px + 8px + 80px + 800px + 801px + 802px + 803px + 804px + 805px + 806px + 807px + 808px + 809px + 81px + 810px + 811px + 812px + 813px + 814px + 815px + 816px + 817px + 818px + 819px + 82px + 820px + 821px + 822px + 823px + 824px + 825px + 826px + 827px + 828px + 829px + 83px + 830px + 831px + 832px + 833px + 834px + 835px + 836px + 837px + 838px + 839px + 84px + 840px + 841px + 842px + 843px + 844px + 845px + 846px + 847px + 848px + 849px + 85px + 850px + 851px + 852px + 853px + 854px + 855px + 856px + 857px + 858px + 859px + 86px + 860px + 861px + 862px + 863px + 864px + 865px + 866px + 867px + 868px + 869px + 87px + 870px + 871px + 872px + 873px + 874px + 875px + 876px + 877px + 878px + 879px + 88px + 880px + 881px + 882px + 883px + 884px + 885px + 886px + 887px + 888px + 889px + 89px + 890px + 891px + 892px + 893px + 894px + 895px + 896px + 897px + 898px + 899px + 9px + 90px + 900px + 901px + 902px + 903px + 904px + 905px + 906px + 907px + 908px + 909px + 91px + 910px + 911px + 912px + 913px + 914px + 915px + 916px + 917px + 918px + 919px + 92px + 920px + 921px + 922px + 923px + 924px + 925px + 926px + 927px + 928px + 929px + 93px + 930px + 931px + 932px + 933px + 934px + 935px + 936px + 937px + 938px + 939px + 94px + 940px + 941px + 942px + 943px + 944px + 945px + 946px + 947px + 948px + 949px + 95px + 950px + 951px + 952px + 953px + 954px + 955px + 956px + 957px + 958px + 959px + 96px + 960px + 961px + 962px + 963px + 964px + 965px + 966px + 967px + 968px + 969px + 97px + 970px + 971px + 972px + 973px + 974px + 975px + 976px + 977px + 978px + 979px + 98px + 980px + 981px + 982px + 983px + 984px + 985px + 986px + 987px + 988px + 989px + 99px + 990px + 991px + 992px + 993px + 994px + 995px + 996px + 997px + 998px + 999px + -1px + -10px + -12px + -2px + -20px + -30px + -5px + -60px + -8px + 10px + 11px + 12px + 13px + 14px + 15px + 16px + 17px + 18px + 19px + 20px + 21px + 22px + 23px + 24px + 25px + 28px + 30px + 32px + 34px + 36px + 38px + 40px + 42px + 48px + 6px + 7px + 8px + 9px + \ No newline at end of file diff --git a/modules/mogo-module-guide/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml b/modules/mogo-module-guide/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml new file mode 100644 index 0000000000..a6eb310bb3 --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml @@ -0,0 +1,1060 @@ + + + #3B91FF + #33ffffff + #ffffff + 0.0000px + 0.0547px + 0.2734px + 0.5469px + 5.4688px + 54.6875px + 55.2344px + 55.7812px + 56.3281px + 56.8750px + 57.1484px + 57.4219px + 57.9688px + 58.5156px + 59.0625px + 59.6094px + 6.0156px + 60.1562px + 60.7031px + 61.2500px + 61.7969px + 62.3438px + 62.8906px + 63.4375px + 63.9844px + 64.5312px + 65.0781px + 6.5625px + 65.6250px + 66.1719px + 66.7188px + 67.2656px + 67.8125px + 68.3594px + 68.9062px + 69.4531px + 70.0000px + 70.5469px + 7.1094px + 71.0938px + 710.9375px + 71.6406px + 72.1875px + 72.7344px + 73.2812px + 73.5547px + 73.8281px + 74.3750px + 74.9219px + 75.4688px + 76.0156px + 7.6562px + 76.5625px + 77.1094px + 77.6562px + 78.2031px + 78.7500px + 79.2969px + 79.8438px + 80.3906px + 80.9375px + 81.4844px + 8.2031px + 82.0312px + 82.5781px + 83.1250px + 83.6719px + 84.2188px + 84.7656px + 85.3125px + 85.8594px + 86.4062px + 86.9531px + 8.7500px + 87.5000px + 88.0469px + 88.5938px + 89.1406px + 89.6875px + 90.2344px + 90.7812px + 91.3281px + 91.8750px + 92.4219px + 9.2969px + 92.9688px + 93.5156px + 94.0625px + 94.6094px + 95.1562px + 95.7031px + 96.2500px + 96.7969px + 97.3438px + 97.8906px + 9.8438px + 98.4375px + 98.9844px + 99.5312px + 100.0781px + 100.6250px + 101.1719px + 101.7188px + 102.2656px + 102.8125px + 103.3594px + 10.3906px + 103.9062px + 104.4531px + 104.5898px + 105.0000px + 105.5469px + 106.0938px + 106.6406px + 107.1875px + 107.7344px + 108.2812px + 108.8281px + 0.8203px + 1.0938px + 10.9375px + 109.3750px + 109.9219px + 110.4688px + 111.0156px + 111.5625px + 112.1094px + 112.6562px + 113.2031px + 113.7500px + 114.2969px + 11.4844px + 114.8438px + 115.3906px + 115.9375px + 116.4844px + 117.0312px + 117.5781px + 118.1250px + 118.6719px + 119.2188px + 119.7656px + 12.0312px + 120.3125px + 120.8594px + 121.4062px + 121.9531px + 122.5000px + 123.0469px + 123.5938px + 124.1406px + 124.6875px + 125.2344px + 12.5781px + 125.7812px + 126.3281px + 126.8750px + 127.4219px + 127.9688px + 128.5156px + 129.0625px + 129.6094px + 130.1562px + 130.7031px + 13.1250px + 131.2500px + 131.7969px + 132.3438px + 132.8906px + 133.4375px + 133.9844px + 134.5312px + 135.0781px + 135.6250px + 136.1719px + 13.6719px + 136.7188px + 137.2656px + 137.8125px + 138.3594px + 138.9062px + 139.4531px + 140.0000px + 140.5469px + 141.0938px + 141.6406px + 14.2188px + 142.1875px + 142.7344px + 143.2812px + 143.8281px + 144.3750px + 144.9219px + 145.4688px + 146.0156px + 146.5625px + 147.1094px + 14.7656px + 147.6562px + 148.2031px + 148.7500px + 149.2969px + 149.8438px + 150.3906px + 150.9375px + 151.4844px + 152.0312px + 152.5781px + 15.3125px + 153.1250px + 153.6719px + 154.2188px + 154.7656px + 155.3125px + 155.8594px + 156.4062px + 156.9531px + 157.5000px + 158.0469px + 15.8594px + 158.5938px + 159.1406px + 159.6875px + 160.2344px + 160.7812px + 161.3281px + 161.8750px + 162.4219px + 162.9688px + 163.5156px + 1.3672px + 1.6406px + 16.4062px + 164.0625px + 164.6094px + 165.1562px + 165.7031px + 166.2500px + 166.7969px + 167.3438px + 167.8906px + 168.4375px + 168.9844px + 16.9531px + 169.5312px + 170.0781px + 170.6250px + 171.1719px + 171.7188px + 172.2656px + 172.8125px + 173.3594px + 173.9062px + 174.4531px + 17.5000px + 175.0000px + 175.5469px + 176.0938px + 176.6406px + 177.1875px + 177.7344px + 178.2812px + 178.8281px + 179.3750px + 179.9219px + 18.0469px + 180.4688px + 181.0156px + 181.5625px + 182.1094px + 182.6562px + 183.2031px + 183.7500px + 184.2969px + 184.8438px + 185.3906px + 18.5938px + 185.9375px + 186.4844px + 187.0312px + 187.5781px + 188.1250px + 188.6719px + 189.2188px + 189.7656px + 190.3125px + 190.8594px + 19.1406px + 191.4062px + 191.9531px + 192.5000px + 193.0469px + 193.5938px + 194.1406px + 194.6875px + 195.2344px + 195.7812px + 196.3281px + 19.6875px + 200.1562px + 200.7031px + 201.2500px + 201.7969px + 20.2344px + 202.3438px + 202.8906px + 203.4375px + 203.9844px + 204.5312px + 205.0781px + 205.6250px + 206.1719px + 206.7188px + 207.2656px + 20.7812px + 207.8125px + 208.3594px + 208.9062px + 209.4531px + 210.0000px + 210.5469px + 211.0938px + 211.6406px + 212.1875px + 212.7344px + 21.3281px + 213.2812px + 213.8281px + 214.3750px + 214.9219px + 215.4688px + 216.0156px + 216.5625px + 217.1094px + 217.6562px + 218.2031px + 1.9141px + 2.1875px + 21.8750px + 218.7500px + 219.2969px + 219.8438px + 220.3906px + 220.9375px + 221.4844px + 222.0312px + 222.5781px + 223.1250px + 223.6719px + 22.4219px + 224.2188px + 224.7656px + 225.3125px + 225.8594px + 226.4062px + 226.9531px + 227.5000px + 228.0469px + 228.5938px + 229.1406px + 22.9688px + 229.6875px + 230.2344px + 230.7812px + 231.3281px + 231.8750px + 232.4219px + 232.9688px + 233.5156px + 234.0625px + 234.6094px + 23.5156px + 235.1562px + 235.7031px + 236.2500px + 236.7969px + 237.3438px + 237.8906px + 238.4375px + 238.9844px + 239.5312px + 240.0781px + 24.0625px + 240.6250px + 241.1719px + 241.7188px + 242.2656px + 242.8125px + 243.3594px + 243.9062px + 244.4531px + 245.0000px + 245.5469px + 24.6094px + 246.0938px + 246.6406px + 247.1875px + 247.7344px + 248.2812px + 248.8281px + 249.3750px + 249.9219px + 250.4688px + 251.0156px + 25.1562px + 251.5625px + 252.1094px + 252.6562px + 253.2031px + 253.7500px + 254.2969px + 254.8438px + 255.3906px + 255.9375px + 256.4844px + 25.7031px + 257.0312px + 257.5781px + 258.1250px + 258.6719px + 259.2188px + 259.7656px + 260.3125px + 260.8594px + 261.4062px + 261.9531px + 26.2500px + 262.5000px + 263.0469px + 263.5938px + 264.1406px + 264.6875px + 265.2344px + 265.7812px + 266.3281px + 266.8750px + 267.4219px + 26.7969px + 267.9688px + 268.5156px + 269.0625px + 269.6094px + 270.1562px + 270.7031px + 271.2500px + 271.7969px + 272.3438px + 272.8906px + 2.4609px + 2.7344px + 27.3438px + 273.4375px + 273.9844px + 274.5312px + 275.0781px + 275.6250px + 276.1719px + 276.7188px + 277.2656px + 277.8125px + 278.3594px + 27.8906px + 278.9062px + 279.4531px + 280.0000px + 280.5469px + 281.0938px + 281.6406px + 282.1875px + 282.7344px + 283.2812px + 283.8281px + 28.4375px + 284.3750px + 284.9219px + 285.4688px + 286.0156px + 286.5625px + 287.1094px + 287.6562px + 288.2031px + 288.7500px + 289.2969px + 28.9844px + 289.8438px + 290.3906px + 290.9375px + 291.4844px + 292.0312px + 292.5781px + 293.1250px + 293.6719px + 294.2188px + 294.7656px + 29.5312px + 295.3125px + 295.8594px + 296.4062px + 296.9531px + 297.5000px + 298.0469px + 298.5938px + 299.1406px + 299.6875px + 300.2344px + 30.0781px + 300.7812px + 301.3281px + 301.8750px + 302.4219px + 302.9688px + 303.5156px + 304.0625px + 304.6094px + 305.1562px + 305.7031px + 30.6250px + 306.2500px + 306.7969px + 307.3438px + 307.8906px + 308.4375px + 308.9844px + 309.5312px + 310.0781px + 310.6250px + 311.1719px + 31.1719px + 311.7188px + 312.2656px + 312.8125px + 313.3594px + 313.9062px + 314.4531px + 315.0000px + 315.5469px + 316.0938px + 316.6406px + 31.7188px + 317.1875px + 317.7344px + 318.2812px + 318.8281px + 319.3750px + 319.9219px + 320.4688px + 321.0156px + 321.5625px + 322.1094px + 32.2656px + 322.6562px + 323.2031px + 323.7500px + 324.2969px + 324.8438px + 325.3906px + 325.9375px + 326.4844px + 327.0312px + 327.5781px + 3.2812px + 32.8125px + 328.1250px + 328.6719px + 329.2188px + 329.7656px + 330.3125px + 330.8594px + 331.4062px + 331.9531px + 332.5000px + 333.0469px + 33.3594px + 333.5938px + 334.1406px + 334.6875px + 335.2344px + 335.7812px + 336.3281px + 336.8750px + 337.4219px + 337.9688px + 338.5156px + 33.9062px + 339.0625px + 339.6094px + 340.1562px + 340.7031px + 341.2500px + 341.7969px + 342.3438px + 342.8906px + 343.4375px + 343.9844px + 34.4531px + 344.5312px + 345.0781px + 345.6250px + 346.1719px + 346.7188px + 347.2656px + 347.8125px + 348.3594px + 348.9062px + 349.4531px + 35.0000px + 350.0000px + 350.5469px + 351.0938px + 351.6406px + 352.1875px + 352.7344px + 353.2812px + 353.8281px + 354.3750px + 354.9219px + 35.5469px + 355.4688px + 356.0156px + 356.5625px + 357.1094px + 357.6562px + 358.2031px + 358.7500px + 359.2969px + 359.8438px + 360.3906px + 36.0938px + 360.9375px + 361.4844px + 362.0312px + 362.5781px + 363.1250px + 363.6719px + 364.2188px + 364.7656px + 365.3125px + 365.8594px + 36.6406px + 366.4062px + 366.9531px + 367.5000px + 368.0469px + 368.5938px + 369.1406px + 369.6875px + 370.2344px + 370.7812px + 371.3281px + 37.1875px + 371.8750px + 372.4219px + 372.9688px + 373.5156px + 374.0625px + 374.6094px + 375.1562px + 375.7031px + 376.2500px + 376.7969px + 37.7344px + 377.3438px + 377.8906px + 378.4375px + 378.9844px + 379.5312px + 380.0781px + 380.6250px + 381.1719px + 381.7188px + 382.2656px + 3.8281px + 38.2812px + 382.8125px + 383.3594px + 383.9062px + 384.4531px + 385.0000px + 385.5469px + 386.0938px + 386.6406px + 387.1875px + 387.7344px + 38.8281px + 388.2812px + 388.8281px + 389.3750px + 389.9219px + 390.4688px + 391.0156px + 391.5625px + 392.1094px + 392.6562px + 393.2031px + 39.3750px + 393.7500px + 394.2969px + 394.8438px + 395.3906px + 395.9375px + 396.4844px + 397.0312px + 397.5781px + 398.1250px + 398.6719px + 39.9219px + 399.2188px + 399.7656px + 400.3125px + 400.8594px + 401.4062px + 401.9531px + 402.5000px + 403.0469px + 403.5938px + 404.1406px + 40.4688px + 404.6875px + 405.2344px + 405.7812px + 406.3281px + 406.8750px + 407.4219px + 407.9688px + 408.5156px + 409.0625px + 409.6094px + 41.0156px + 410.1562px + 410.7031px + 411.2500px + 411.7969px + 412.3438px + 412.8906px + 413.4375px + 413.9844px + 414.5312px + 415.0781px + 41.5625px + 415.6250px + 416.1719px + 416.7188px + 417.2656px + 417.8125px + 418.3594px + 418.9062px + 419.4531px + 420.0000px + 420.5469px + 42.1094px + 421.0938px + 421.6406px + 422.1875px + 422.7344px + 423.2812px + 423.8281px + 424.3750px + 424.9219px + 425.4688px + 426.0156px + 42.6562px + 426.5625px + 427.1094px + 427.6562px + 428.2031px + 428.7500px + 429.2969px + 429.8438px + 430.3906px + 430.9375px + 431.4844px + 43.2031px + 432.0312px + 432.5781px + 433.1250px + 433.6719px + 434.2188px + 434.7656px + 435.3125px + 435.8594px + 436.4062px + 436.9531px + 4.1016px + 4.3750px + 43.7500px + 437.5000px + 438.0469px + 438.5938px + 439.1406px + 439.6875px + 440.2344px + 440.7812px + 441.3281px + 441.8750px + 442.4219px + 44.2969px + 442.9688px + 443.5156px + 444.0625px + 444.6094px + 445.1562px + 445.7031px + 446.2500px + 446.7969px + 447.3438px + 447.8906px + 44.8438px + 448.4375px + 448.9844px + 449.5312px + 450.0781px + 450.6250px + 451.1719px + 451.7188px + 452.2656px + 452.8125px + 453.3594px + 45.3906px + 453.9062px + 454.4531px + 455.0000px + 455.5469px + 456.0938px + 456.6406px + 457.1875px + 457.7344px + 458.2812px + 458.8281px + 45.9375px + 459.3750px + 459.9219px + 460.4688px + 461.0156px + 461.5625px + 462.1094px + 462.6562px + 463.2031px + 463.7500px + 464.2969px + 46.4844px + 464.8438px + 465.3906px + 465.9375px + 466.4844px + 467.0312px + 467.5781px + 468.1250px + 468.6719px + 469.2188px + 469.7656px + 47.0312px + 470.3125px + 470.8594px + 471.4062px + 471.9531px + 472.5000px + 473.0469px + 473.5938px + 474.1406px + 474.6875px + 475.2344px + 47.5781px + 475.7812px + 476.3281px + 476.8750px + 477.4219px + 477.9688px + 478.5156px + 479.0625px + 479.6094px + 480.1562px + 480.7031px + 48.1250px + 481.2500px + 481.7969px + 482.3438px + 482.8906px + 483.4375px + 483.9844px + 484.5312px + 485.0781px + 485.6250px + 486.1719px + 48.6719px + 486.7188px + 487.2656px + 487.8125px + 488.3594px + 488.9062px + 489.4531px + 490.0000px + 490.5469px + 491.0938px + 491.6406px + 4.9219px + 49.2188px + 492.1875px + 492.7344px + 493.2812px + 493.8281px + 494.3750px + 494.9219px + 495.4688px + 496.0156px + 496.5625px + 497.1094px + 49.7656px + 497.6562px + 498.2031px + 498.7500px + 499.2969px + 499.8438px + 500.3906px + 500.9375px + 501.4844px + 502.0312px + 502.5781px + 50.3125px + 503.1250px + 503.6719px + 504.2188px + 504.7656px + 505.3125px + 505.8594px + 506.4062px + 506.9531px + 507.5000px + 508.0469px + 50.8594px + 508.5938px + 509.1406px + 509.6875px + 510.2344px + 510.7812px + 511.3281px + 511.8750px + 512.4219px + 512.9688px + 513.5156px + 51.4062px + 514.0625px + 514.6094px + 515.1562px + 515.7031px + 516.2500px + 516.7969px + 517.3438px + 517.8906px + 518.4375px + 518.9844px + 51.9531px + 519.5312px + 520.0781px + 520.6250px + 521.1719px + 521.7188px + 522.2656px + 522.8125px + 523.3594px + 523.9062px + 524.4531px + 52.5000px + 525.0000px + 525.5469px + 526.0938px + 526.6406px + 527.1875px + 527.7344px + 528.2812px + 528.8281px + 529.3750px + 529.9219px + 53.0469px + 530.4688px + 531.0156px + 531.5625px + 532.1094px + 532.6562px + 533.2031px + 533.7500px + 534.2969px + 534.8438px + 535.3906px + 53.5938px + 535.9375px + 536.4844px + 537.0312px + 537.5781px + 538.1250px + 538.6719px + 539.2188px + 539.7656px + 540.3125px + 540.8594px + 54.1406px + 541.4062px + 541.9531px + 542.5000px + 543.0469px + 543.5938px + 544.1406px + 544.6875px + 545.2344px + 545.7812px + 546.3281px + -0.5469px + -5.4688px + -6.5625px + -1.0938px + -10.9375px + -16.4062px + -2.7344px + -32.8125px + -4.3750px + 5.4688px + 6.0156px + 6.5625px + 7.1094px + 7.6562px + 8.2031px + 8.7500px + 9.2969px + 9.8438px + 10.3906px + 10.9375px + 11.4844px + 12.0312px + 12.5781px + 13.1250px + 13.6719px + 15.3125px + 16.4062px + 17.5000px + 18.5938px + 19.6875px + 20.7812px + 21.8750px + 22.9688px + 26.2500px + 3.2812px + 3.8281px + 4.3750px + 4.9219px + mogo-module-guide-agreement + 结束 + 进入首页 + 下一步 + 左滑了解更多 + 我们希望让您的出行更加安全高效,更多功能等着你去发现,快去体验体验吧 + 更多设置,在左上角的设置功能中,点击右下角的分享,可以把路况分享给其他车友,或者直接唤醒小智说,上报路况 + 这里是事件汇总,您可以查看您参与的事件和您的分享记录 + 欢迎使用’蘑菇车联‘,您下次可以直接对我说,打开’蘑菇车联‘来直接进入应用,点击左下方按钮进行摄像头设置 + 这里是道路信息显示,点击后可查看事件详情 + 左边是道路事件的播报,点击右边地图上的事件标示可以查看事件详情,或者直接唤醒小智说,中关村附近堵不堵,来查询目的地周围路况 + \ No newline at end of file diff --git a/modules/mogo-module-guide/build/intermediates/incremental/packageDebugResources/merger.xml b/modules/mogo-module-guide/build/intermediates/incremental/packageDebugResources/merger.xml new file mode 100644 index 0000000000..ef6ca097a4 --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/incremental/packageDebugResources/merger.xml @@ -0,0 +1,2 @@ + +-32.8125px-16.4062px-10.9375px-6.5625px-5.4688px-4.3750px-2.7344px-1.0938px-0.5469px0.0000px0.0547px0.2734px0.5469px0.8203px1.0938px1.3672px1.6406px1.9141px2.1875px2.4609px2.7344px3.2812px3.8281px4.1016px4.3750px4.9219px5.4688px6.0156px6.5625px7.1094px7.6562px8.2031px8.7500px9.2969px9.8438px10.3906px10.9375px11.4844px12.0312px12.5781px13.1250px13.6719px14.2188px14.7656px15.3125px15.8594px16.4062px16.9531px17.5000px18.0469px18.5938px19.1406px19.6875px20.2344px20.7812px21.3281px21.8750px22.4219px22.9688px23.5156px24.0625px24.6094px25.1562px25.7031px26.2500px26.7969px27.3438px27.8906px28.4375px28.9844px29.5312px30.0781px30.6250px31.1719px31.7188px32.2656px32.8125px33.3594px33.9062px34.4531px35.0000px35.5469px36.0938px36.6406px37.1875px37.7344px38.2812px38.8281px39.3750px39.9219px40.4688px41.0156px41.5625px42.1094px42.6562px43.2031px43.7500px44.2969px44.8438px45.3906px45.9375px46.4844px47.0312px47.5781px48.1250px48.6719px49.2188px49.7656px50.3125px50.8594px51.4062px51.9531px52.5000px53.0469px53.5938px54.1406px54.6875px55.2344px55.7812px56.3281px56.8750px57.1484px57.4219px57.9688px58.5156px59.0625px59.6094px60.1562px60.7031px61.2500px61.7969px62.3438px62.8906px63.4375px63.9844px64.5312px65.0781px65.6250px66.1719px66.7188px67.2656px67.8125px68.3594px68.9062px69.4531px70.0000px70.5469px71.0938px71.6406px72.1875px72.7344px73.2812px73.5547px73.8281px74.3750px74.9219px75.4688px76.0156px76.5625px77.1094px77.6562px78.2031px78.7500px79.2969px79.8438px80.3906px80.9375px81.4844px82.0312px82.5781px83.1250px83.6719px84.2188px84.7656px85.3125px85.8594px86.4062px86.9531px87.5000px88.0469px88.5938px89.1406px89.6875px90.2344px90.7812px91.3281px91.8750px92.4219px92.9688px93.5156px94.0625px94.6094px95.1562px95.7031px96.2500px96.7969px97.3438px97.8906px98.4375px98.9844px99.5312px100.0781px100.6250px101.1719px101.7188px102.2656px102.8125px103.3594px103.9062px104.4531px104.5898px105.0000px105.5469px106.0938px106.6406px107.1875px107.7344px108.2812px108.8281px109.3750px109.9219px110.4688px111.0156px111.5625px112.1094px112.6562px113.2031px113.7500px114.2969px114.8438px115.3906px115.9375px116.4844px117.0312px117.5781px118.1250px118.6719px119.2188px119.7656px120.3125px120.8594px121.4062px121.9531px122.5000px123.0469px123.5938px124.1406px124.6875px125.2344px125.7812px126.3281px126.8750px127.4219px127.9688px128.5156px129.0625px129.6094px130.1562px130.7031px131.2500px131.7969px132.3438px132.8906px133.4375px133.9844px134.5312px135.0781px135.6250px136.1719px136.7188px137.2656px137.8125px138.3594px138.9062px139.4531px140.0000px140.5469px141.0938px141.6406px142.1875px142.7344px143.2812px143.8281px144.3750px144.9219px145.4688px146.0156px146.5625px147.1094px147.6562px148.2031px148.7500px149.2969px149.8438px150.3906px150.9375px151.4844px152.0312px152.5781px153.1250px153.6719px154.2188px154.7656px155.3125px155.8594px156.4062px156.9531px157.5000px158.0469px158.5938px159.1406px159.6875px160.2344px160.7812px161.3281px161.8750px162.4219px162.9688px163.5156px164.0625px164.6094px165.1562px165.7031px166.2500px166.7969px167.3438px167.8906px168.4375px168.9844px169.5312px170.0781px170.6250px171.1719px171.7188px172.2656px172.8125px173.3594px173.9062px174.4531px175.0000px175.5469px176.0938px176.6406px177.1875px177.7344px178.2812px178.8281px179.3750px179.9219px180.4688px181.0156px181.5625px182.1094px182.6562px183.2031px183.7500px184.2969px184.8438px185.3906px185.9375px186.4844px187.0312px187.5781px188.1250px188.6719px189.2188px189.7656px190.3125px190.8594px191.4062px191.9531px192.5000px193.0469px193.5938px194.1406px194.6875px195.2344px195.7812px196.3281px200.1562px200.7031px201.2500px201.7969px202.3438px202.8906px203.4375px203.9844px204.5312px205.0781px205.6250px206.1719px206.7188px207.2656px207.8125px208.3594px208.9062px209.4531px210.0000px210.5469px211.0938px211.6406px212.1875px212.7344px213.2812px213.8281px214.3750px214.9219px215.4688px216.0156px216.5625px217.1094px217.6562px218.2031px218.7500px219.2969px219.8438px220.3906px220.9375px221.4844px222.0312px222.5781px223.1250px223.6719px224.2188px224.7656px225.3125px225.8594px226.4062px226.9531px227.5000px228.0469px228.5938px229.1406px229.6875px230.2344px230.7812px231.3281px231.8750px232.4219px232.9688px233.5156px234.0625px234.6094px235.1562px235.7031px236.2500px236.7969px237.3438px237.8906px238.4375px238.9844px239.5312px240.0781px240.6250px241.1719px241.7188px242.2656px242.8125px243.3594px243.9062px244.4531px245.0000px245.5469px246.0938px246.6406px247.1875px247.7344px248.2812px248.8281px249.3750px249.9219px250.4688px251.0156px251.5625px252.1094px252.6562px253.2031px253.7500px254.2969px254.8438px255.3906px255.9375px256.4844px257.0312px257.5781px258.1250px258.6719px259.2188px259.7656px260.3125px260.8594px261.4062px261.9531px262.5000px263.0469px263.5938px264.1406px264.6875px265.2344px265.7812px266.3281px266.8750px267.4219px267.9688px268.5156px269.0625px269.6094px270.1562px270.7031px271.2500px271.7969px272.3438px272.8906px273.4375px273.9844px274.5312px275.0781px275.6250px276.1719px276.7188px277.2656px277.8125px278.3594px278.9062px279.4531px280.0000px280.5469px281.0938px281.6406px282.1875px282.7344px283.2812px283.8281px284.3750px284.9219px285.4688px286.0156px286.5625px287.1094px287.6562px288.2031px288.7500px289.2969px289.8438px290.3906px290.9375px291.4844px292.0312px292.5781px293.1250px293.6719px294.2188px294.7656px295.3125px295.8594px296.4062px296.9531px297.5000px298.0469px298.5938px299.1406px299.6875px300.2344px300.7812px301.3281px301.8750px302.4219px302.9688px303.5156px304.0625px304.6094px305.1562px305.7031px306.2500px306.7969px307.3438px307.8906px308.4375px308.9844px309.5312px310.0781px310.6250px311.1719px311.7188px312.2656px312.8125px313.3594px313.9062px314.4531px315.0000px315.5469px316.0938px316.6406px317.1875px317.7344px318.2812px318.8281px319.3750px319.9219px320.4688px321.0156px321.5625px322.1094px322.6562px323.2031px323.7500px324.2969px324.8438px325.3906px325.9375px326.4844px327.0312px327.5781px328.1250px328.6719px329.2188px329.7656px330.3125px330.8594px331.4062px331.9531px332.5000px333.0469px333.5938px334.1406px334.6875px335.2344px335.7812px336.3281px336.8750px337.4219px337.9688px338.5156px339.0625px339.6094px340.1562px340.7031px341.2500px341.7969px342.3438px342.8906px343.4375px343.9844px344.5312px345.0781px345.6250px346.1719px346.7188px347.2656px347.8125px348.3594px348.9062px349.4531px350.0000px350.5469px351.0938px351.6406px352.1875px352.7344px353.2812px353.8281px354.3750px354.9219px355.4688px356.0156px356.5625px357.1094px357.6562px358.2031px358.7500px359.2969px359.8438px360.3906px360.9375px361.4844px362.0312px362.5781px363.1250px363.6719px364.2188px364.7656px365.3125px365.8594px366.4062px366.9531px367.5000px368.0469px368.5938px369.1406px369.6875px370.2344px370.7812px371.3281px371.8750px372.4219px372.9688px373.5156px374.0625px374.6094px375.1562px375.7031px376.2500px376.7969px377.3438px377.8906px378.4375px378.9844px379.5312px380.0781px380.6250px381.1719px381.7188px382.2656px382.8125px383.3594px383.9062px384.4531px385.0000px385.5469px386.0938px386.6406px387.1875px387.7344px388.2812px388.8281px389.3750px389.9219px390.4688px391.0156px391.5625px392.1094px392.6562px393.2031px393.7500px394.2969px394.8438px395.3906px395.9375px396.4844px397.0312px397.5781px398.1250px398.6719px399.2188px399.7656px400.3125px400.8594px401.4062px401.9531px402.5000px403.0469px403.5938px404.1406px404.6875px405.2344px405.7812px406.3281px406.8750px407.4219px407.9688px408.5156px409.0625px409.6094px410.1562px410.7031px411.2500px411.7969px412.3438px412.8906px413.4375px413.9844px414.5312px415.0781px415.6250px416.1719px416.7188px417.2656px417.8125px418.3594px418.9062px419.4531px420.0000px420.5469px421.0938px421.6406px422.1875px422.7344px423.2812px423.8281px424.3750px424.9219px425.4688px426.0156px426.5625px427.1094px427.6562px428.2031px428.7500px429.2969px429.8438px430.3906px430.9375px431.4844px432.0312px432.5781px433.1250px433.6719px434.2188px434.7656px435.3125px435.8594px436.4062px436.9531px437.5000px438.0469px438.5938px439.1406px439.6875px440.2344px440.7812px441.3281px441.8750px442.4219px442.9688px443.5156px444.0625px444.6094px445.1562px445.7031px446.2500px446.7969px447.3438px447.8906px448.4375px448.9844px449.5312px450.0781px450.6250px451.1719px451.7188px452.2656px452.8125px453.3594px453.9062px454.4531px455.0000px455.5469px456.0938px456.6406px457.1875px457.7344px458.2812px458.8281px459.3750px459.9219px460.4688px461.0156px461.5625px462.1094px462.6562px463.2031px463.7500px464.2969px464.8438px465.3906px465.9375px466.4844px467.0312px467.5781px468.1250px468.6719px469.2188px469.7656px470.3125px470.8594px471.4062px471.9531px472.5000px473.0469px473.5938px474.1406px474.6875px475.2344px475.7812px476.3281px476.8750px477.4219px477.9688px478.5156px479.0625px479.6094px480.1562px480.7031px481.2500px481.7969px482.3438px482.8906px483.4375px483.9844px484.5312px485.0781px485.6250px486.1719px486.7188px487.2656px487.8125px488.3594px488.9062px489.4531px490.0000px490.5469px491.0938px491.6406px492.1875px492.7344px493.2812px493.8281px494.3750px494.9219px495.4688px496.0156px496.5625px497.1094px497.6562px498.2031px498.7500px499.2969px499.8438px500.3906px500.9375px501.4844px502.0312px502.5781px503.1250px503.6719px504.2188px504.7656px505.3125px505.8594px506.4062px506.9531px507.5000px508.0469px508.5938px509.1406px509.6875px510.2344px510.7812px511.3281px511.8750px512.4219px512.9688px513.5156px514.0625px514.6094px515.1562px515.7031px516.2500px516.7969px517.3438px517.8906px518.4375px518.9844px519.5312px520.0781px520.6250px521.1719px521.7188px522.2656px522.8125px523.3594px523.9062px524.4531px525.0000px525.5469px526.0938px526.6406px527.1875px527.7344px528.2812px528.8281px529.3750px529.9219px530.4688px531.0156px531.5625px532.1094px532.6562px533.2031px533.7500px534.2969px534.8438px535.3906px535.9375px536.4844px537.0312px537.5781px538.1250px538.6719px539.2188px539.7656px540.3125px540.8594px541.4062px541.9531px542.5000px543.0469px543.5938px544.1406px544.6875px545.2344px545.7812px546.3281px710.9375px3.2812px3.8281px4.3750px4.9219px5.4688px6.0156px6.5625px7.1094px7.6562px8.2031px8.7500px9.2969px9.8438px10.3906px10.9375px11.4844px12.0312px12.5781px13.1250px13.6719px15.3125px16.4062px17.5000px18.5938px19.6875px20.7812px21.8750px22.9688px26.2500pxmogo-module-guide-agreement左滑了解更多进入首页下一步结束欢迎使用’蘑菇车联‘,您下次可以直接对我说,打开’蘑菇车联‘来直接进入应用,点击左下方按钮进行摄像头设置左边是道路事件的播报,点击右边地图上的事件标示可以查看事件详情,或者直接唤醒小智说,中关村附近堵不堵,来查询目的地周围路况这里是道路信息显示,点击后可查看事件详情这里是事件汇总,您可以查看您参与的事件和您的分享记录更多设置,在左上角的设置功能中,点击右下角的分享,可以把路况分享给其他车友,或者直接唤醒小智说,上报路况我们希望让您的出行更加安全高效,更多功能等着你去发现,快去体验体验吧#3B91FF#33ffffff#ffffff-60px-30px-20px-12px-10px-8px-5px-2px-1px0px0.1px0.5px1px1.5px2px2.5px3px3.5px4px4.5px5px6px7px7.5px8px9px10px11px12px13px14px15px16px17px18px19px20px21px22px23px24px25px26px27px28px29px30px31px32px33px34px35px36px37px38px39px40px41px42px43px44px45px46px47px48px49px50px51px52px53px54px55px56px57px58px59px60px61px62px63px64px65px66px67px68px69px70px71px72px73px74px75px76px77px78px79px80px81px82px83px84px85px86px87px88px89px90px91px92px93px94px95px96px97px98px99px100px101px102px103px104px104.5px105px106px107px108px109px110px111px112px113px114px115px116px117px118px119px120px121px122px123px124px125px126px127px128px129px130px131px132px133px134px134.5px135px136px137px138px139px140px141px142px143px144px145px146px147px148px149px150px151px152px153px154px155px156px157px158px159px160px161px162px163px164px165px166px167px168px169px170px171px172px173px174px175px176px177px178px179px180px181px182px183px184px185px186px187px188px189px190px191px191.25px192px193px194px195px196px197px198px199px200px201px202px203px204px205px206px207px208px209px210px211px212px213px214px215px216px217px218px219px220px221px222px223px224px225px226px227px228px229px230px231px232px233px234px235px236px237px238px239px240px241px242px243px244px245px246px247px248px249px250px251px252px253px254px255px256px257px258px259px260px261px262px263px264px265px266px267px268px269px270px271px272px273px274px275px276px277px278px279px280px281px282px283px284px285px286px287px288px289px290px291px292px293px294px295px296px297px298px299px300px301px302px303px304px305px306px307px308px309px310px311px312px313px314px315px316px317px318px319px320px321px322px323px324px325px326px327px328px329px330px331px332px333px334px335px336px337px338px339px340px341px342px343px344px345px346px347px348px349px350px351px352px353px354px355px356px357px358px359px366px367px368px369px370px371px372px373px374px375px376px377px378px379px380px381px382px383px384px385px386px387px388px389px390px391px392px393px394px395px396px397px398px399px400px401px402px403px404px405px406px407px408px409px410px411px412px413px414px415px416px417px418px419px420px421px422px423px424px425px426px427px428px429px430px431px432px433px434px435px436px437px438px439px440px441px442px443px444px445px446px447px448px449px450px451px452px453px454px455px456px457px458px459px460px461px462px463px464px465px466px467px468px469px470px471px472px473px474px475px476px477px478px479px480px481px482px483px484px485px486px487px488px489px490px491px492px493px494px495px496px497px498px499px500px501px502px503px504px505px506px507px508px509px510px511px512px513px514px515px516px517px518px519px520px521px522px523px524px525px526px527px528px529px530px531px532px533px534px535px536px537px538px539px540px541px542px543px544px545px546px547px548px549px550px551px552px553px554px555px556px557px558px559px560px561px562px563px564px565px566px567px568px569px570px571px572px573px574px575px576px577px578px579px580px581px582px583px584px585px586px587px588px589px590px591px592px593px594px595px596px597px598px599px600px601px602px603px604px605px606px607px608px609px610px611px612px613px614px615px616px617px618px619px620px621px622px623px624px625px626px627px628px629px630px631px632px633px634px635px636px637px638px639px640px641px642px643px644px645px646px647px648px649px650px651px652px653px654px655px656px657px658px659px660px661px662px663px664px665px666px667px668px669px670px671px672px673px674px675px676px677px678px679px680px681px682px683px684px685px686px687px688px689px690px691px692px693px694px695px696px697px698px699px700px701px702px703px704px705px706px707px708px709px710px711px712px713px714px715px716px717px718px719px720px721px722px723px724px725px726px727px728px729px730px731px732px733px734px735px736px737px738px739px740px741px742px743px744px745px746px747px748px749px750px751px752px753px754px755px756px757px758px759px760px761px762px763px764px765px766px767px768px769px770px771px772px773px774px775px776px777px778px779px780px781px782px783px784px785px786px787px788px789px790px791px792px793px794px795px796px797px798px799px800px801px802px803px804px805px806px807px808px809px810px811px812px813px814px815px816px817px818px819px820px821px822px823px824px825px826px827px828px829px830px831px832px833px834px835px836px837px838px839px840px841px842px843px844px845px846px847px848px849px850px851px852px853px854px855px856px857px858px859px860px861px862px863px864px865px866px867px868px869px870px871px872px873px874px875px876px877px878px879px880px881px882px883px884px885px886px887px888px889px890px891px892px893px894px895px896px897px898px899px900px901px902px903px904px905px906px907px908px909px910px911px912px913px914px915px916px917px918px919px920px921px922px923px924px925px926px927px928px929px930px931px932px933px934px935px936px937px938px939px940px941px942px943px944px945px946px947px948px949px950px951px952px953px954px955px956px957px958px959px960px961px962px963px964px965px966px967px968px969px970px971px972px973px974px975px976px977px978px979px980px981px982px983px984px985px986px987px988px989px990px991px992px993px994px995px996px997px998px999px1300px6px7px8px9px10px11px12px13px14px15px16px17px18px19px20px21px22px23px24px25px28px30px32px34px36px38px40px42px48px \ No newline at end of file diff --git a/modules/mogo-module-guide/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$guide.class b/modules/mogo-module-guide/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$guide.class new file mode 100644 index 0000000000..f135b7e902 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$guide.class differ diff --git a/modules/mogo-module-guide/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogomoduleguide.class b/modules/mogo-module-guide/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogomoduleguide.class new file mode 100644 index 0000000000..4e2e44fdc8 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogomoduleguide.class differ diff --git a/modules/mogo-module-guide/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Root$$mogomoduleguide.class b/modules/mogo-module-guide/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Root$$mogomoduleguide.class new file mode 100644 index 0000000000..7519fa6555 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Root$$mogomoduleguide.class differ diff --git a/modules/mogo-module-guide/build/intermediates/javac/debug/classes/com/mogo/module/guide/BuildConfig.class b/modules/mogo-module-guide/build/intermediates/javac/debug/classes/com/mogo/module/guide/BuildConfig.class new file mode 100644 index 0000000000..055191e5b8 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/javac/debug/classes/com/mogo/module/guide/BuildConfig.class differ diff --git a/modules/mogo-module-guide/build/intermediates/library_java_res/debug/res.jar b/modules/mogo-module-guide/build/intermediates/library_java_res/debug/res.jar new file mode 100644 index 0000000000..b84c9f742e Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/library_java_res/debug/res.jar differ diff --git a/modules/mogo-module-guide/build/intermediates/library_manifest/debug/AndroidManifest.xml b/modules/mogo-module-guide/build/intermediates/library_manifest/debug/AndroidManifest.xml new file mode 100644 index 0000000000..9336746b1d --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/library_manifest/debug/AndroidManifest.xml @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-guide/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt b/modules/mogo-module-guide/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt new file mode 100644 index 0000000000..361602c516 --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt @@ -0,0 +1,1090 @@ +R_DEF: Internal format may change without notice +local +color module_guide_blue_3B91FF +color module_guide_indicator_dark +color module_guide_indicator_white +dimen dp_0 +dimen dp_0_1 +dimen dp_0_5 +dimen dp_1 +dimen dp_10 +dimen dp_100 +dimen dp_101 +dimen dp_102 +dimen dp_103 +dimen dp_104 +dimen dp_104_5 +dimen dp_105 +dimen dp_106 +dimen dp_107 +dimen dp_108 +dimen dp_109 +dimen dp_11 +dimen dp_110 +dimen dp_111 +dimen dp_112 +dimen dp_113 +dimen dp_114 +dimen dp_115 +dimen dp_116 +dimen dp_117 +dimen dp_118 +dimen dp_119 +dimen dp_12 +dimen dp_120 +dimen dp_121 +dimen dp_122 +dimen dp_123 +dimen dp_124 +dimen dp_125 +dimen dp_126 +dimen dp_127 +dimen dp_128 +dimen dp_129 +dimen dp_13 +dimen dp_130 +dimen dp_1300 +dimen dp_131 +dimen dp_132 +dimen dp_133 +dimen dp_134 +dimen dp_134_5 +dimen dp_135 +dimen dp_136 +dimen dp_137 +dimen dp_138 +dimen dp_139 +dimen dp_14 +dimen dp_140 +dimen dp_141 +dimen dp_142 +dimen dp_143 +dimen dp_144 +dimen dp_145 +dimen dp_146 +dimen dp_147 +dimen dp_148 +dimen dp_149 +dimen dp_15 +dimen dp_150 +dimen dp_151 +dimen dp_152 +dimen dp_153 +dimen dp_154 +dimen dp_155 +dimen dp_156 +dimen dp_157 +dimen dp_158 +dimen dp_159 +dimen dp_16 +dimen dp_160 +dimen dp_161 +dimen dp_162 +dimen dp_163 +dimen dp_164 +dimen dp_165 +dimen dp_166 +dimen dp_167 +dimen dp_168 +dimen dp_169 +dimen dp_17 +dimen dp_170 +dimen dp_171 +dimen dp_172 +dimen dp_173 +dimen dp_174 +dimen dp_175 +dimen dp_176 +dimen dp_177 +dimen dp_178 +dimen dp_179 +dimen dp_18 +dimen dp_180 +dimen dp_181 +dimen dp_182 +dimen dp_183 +dimen dp_184 +dimen dp_185 +dimen dp_186 +dimen dp_187 +dimen dp_188 +dimen dp_189 +dimen dp_19 +dimen dp_190 +dimen dp_191 +dimen dp_191_25 +dimen dp_192 +dimen dp_193 +dimen dp_194 +dimen dp_195 +dimen dp_196 +dimen dp_197 +dimen dp_198 +dimen dp_199 +dimen dp_1_5 +dimen dp_2 +dimen dp_20 +dimen dp_200 +dimen dp_201 +dimen dp_202 +dimen dp_203 +dimen dp_204 +dimen dp_205 +dimen dp_206 +dimen dp_207 +dimen dp_208 +dimen dp_209 +dimen dp_21 +dimen dp_210 +dimen dp_211 +dimen dp_212 +dimen dp_213 +dimen dp_214 +dimen dp_215 +dimen dp_216 +dimen dp_217 +dimen dp_218 +dimen dp_219 +dimen dp_22 +dimen dp_220 +dimen dp_221 +dimen dp_222 +dimen dp_223 +dimen dp_224 +dimen dp_225 +dimen dp_226 +dimen dp_227 +dimen dp_228 +dimen dp_229 +dimen dp_23 +dimen dp_230 +dimen dp_231 +dimen dp_232 +dimen dp_233 +dimen dp_234 +dimen dp_235 +dimen dp_236 +dimen dp_237 +dimen dp_238 +dimen dp_239 +dimen dp_24 +dimen dp_240 +dimen dp_241 +dimen dp_242 +dimen dp_243 +dimen dp_244 +dimen dp_245 +dimen dp_246 +dimen dp_247 +dimen dp_248 +dimen dp_249 +dimen dp_25 +dimen dp_250 +dimen dp_251 +dimen dp_252 +dimen dp_253 +dimen dp_254 +dimen dp_255 +dimen dp_256 +dimen dp_257 +dimen dp_258 +dimen dp_259 +dimen dp_26 +dimen dp_260 +dimen dp_261 +dimen dp_262 +dimen dp_263 +dimen dp_264 +dimen dp_265 +dimen dp_266 +dimen dp_267 +dimen dp_268 +dimen dp_269 +dimen dp_27 +dimen dp_270 +dimen dp_271 +dimen dp_272 +dimen dp_273 +dimen dp_274 +dimen dp_275 +dimen dp_276 +dimen dp_277 +dimen dp_278 +dimen dp_279 +dimen dp_28 +dimen dp_280 +dimen dp_281 +dimen dp_282 +dimen dp_283 +dimen dp_284 +dimen dp_285 +dimen dp_286 +dimen dp_287 +dimen dp_288 +dimen dp_289 +dimen dp_29 +dimen dp_290 +dimen dp_291 +dimen dp_292 +dimen dp_293 +dimen dp_294 +dimen dp_295 +dimen dp_296 +dimen dp_297 +dimen dp_298 +dimen dp_299 +dimen dp_2_5 +dimen dp_3 +dimen dp_30 +dimen dp_300 +dimen dp_301 +dimen dp_302 +dimen dp_303 +dimen dp_304 +dimen dp_305 +dimen dp_306 +dimen dp_307 +dimen dp_308 +dimen dp_309 +dimen dp_31 +dimen dp_310 +dimen dp_311 +dimen dp_312 +dimen dp_313 +dimen dp_314 +dimen dp_315 +dimen dp_316 +dimen dp_317 +dimen dp_318 +dimen dp_319 +dimen dp_32 +dimen dp_320 +dimen dp_321 +dimen dp_322 +dimen dp_323 +dimen dp_324 +dimen dp_325 +dimen dp_326 +dimen dp_327 +dimen dp_328 +dimen dp_329 +dimen dp_33 +dimen dp_330 +dimen dp_331 +dimen dp_332 +dimen dp_333 +dimen dp_334 +dimen dp_335 +dimen dp_336 +dimen dp_337 +dimen dp_338 +dimen dp_339 +dimen dp_34 +dimen dp_340 +dimen dp_341 +dimen dp_342 +dimen dp_343 +dimen dp_344 +dimen dp_345 +dimen dp_346 +dimen dp_347 +dimen dp_348 +dimen dp_349 +dimen dp_35 +dimen dp_350 +dimen dp_351 +dimen dp_352 +dimen dp_353 +dimen dp_354 +dimen dp_355 +dimen dp_356 +dimen dp_357 +dimen dp_358 +dimen dp_359 +dimen dp_36 +dimen dp_366 +dimen dp_367 +dimen dp_368 +dimen dp_369 +dimen dp_37 +dimen dp_370 +dimen dp_371 +dimen dp_372 +dimen dp_373 +dimen dp_374 +dimen dp_375 +dimen dp_376 +dimen dp_377 +dimen dp_378 +dimen dp_379 +dimen dp_38 +dimen dp_380 +dimen dp_381 +dimen dp_382 +dimen dp_383 +dimen dp_384 +dimen dp_385 +dimen dp_386 +dimen dp_387 +dimen dp_388 +dimen dp_389 +dimen dp_39 +dimen dp_390 +dimen dp_391 +dimen dp_392 +dimen dp_393 +dimen dp_394 +dimen dp_395 +dimen dp_396 +dimen dp_397 +dimen dp_398 +dimen dp_399 +dimen dp_3_5 +dimen dp_4 +dimen dp_40 +dimen dp_400 +dimen dp_401 +dimen dp_402 +dimen dp_403 +dimen dp_404 +dimen dp_405 +dimen dp_406 +dimen dp_407 +dimen dp_408 +dimen dp_409 +dimen dp_41 +dimen dp_410 +dimen dp_411 +dimen dp_412 +dimen dp_413 +dimen dp_414 +dimen dp_415 +dimen dp_416 +dimen dp_417 +dimen dp_418 +dimen dp_419 +dimen dp_42 +dimen dp_420 +dimen dp_421 +dimen dp_422 +dimen dp_423 +dimen dp_424 +dimen dp_425 +dimen dp_426 +dimen dp_427 +dimen dp_428 +dimen dp_429 +dimen dp_43 +dimen dp_430 +dimen dp_431 +dimen dp_432 +dimen dp_433 +dimen dp_434 +dimen dp_435 +dimen dp_436 +dimen dp_437 +dimen dp_438 +dimen dp_439 +dimen dp_44 +dimen dp_440 +dimen dp_441 +dimen dp_442 +dimen dp_443 +dimen dp_444 +dimen dp_445 +dimen dp_446 +dimen dp_447 +dimen dp_448 +dimen dp_449 +dimen dp_45 +dimen dp_450 +dimen dp_451 +dimen dp_452 +dimen dp_453 +dimen dp_454 +dimen dp_455 +dimen dp_456 +dimen dp_457 +dimen dp_458 +dimen dp_459 +dimen dp_46 +dimen dp_460 +dimen dp_461 +dimen dp_462 +dimen dp_463 +dimen dp_464 +dimen dp_465 +dimen dp_466 +dimen dp_467 +dimen dp_468 +dimen dp_469 +dimen dp_47 +dimen dp_470 +dimen dp_471 +dimen dp_472 +dimen dp_473 +dimen dp_474 +dimen dp_475 +dimen dp_476 +dimen dp_477 +dimen dp_478 +dimen dp_479 +dimen dp_48 +dimen dp_480 +dimen dp_481 +dimen dp_482 +dimen dp_483 +dimen dp_484 +dimen dp_485 +dimen dp_486 +dimen dp_487 +dimen dp_488 +dimen dp_489 +dimen dp_49 +dimen dp_490 +dimen dp_491 +dimen dp_492 +dimen dp_493 +dimen dp_494 +dimen dp_495 +dimen dp_496 +dimen dp_497 +dimen dp_498 +dimen dp_499 +dimen dp_4_5 +dimen dp_5 +dimen dp_50 +dimen dp_500 +dimen dp_501 +dimen dp_502 +dimen dp_503 +dimen dp_504 +dimen dp_505 +dimen dp_506 +dimen dp_507 +dimen dp_508 +dimen dp_509 +dimen dp_51 +dimen dp_510 +dimen dp_511 +dimen dp_512 +dimen dp_513 +dimen dp_514 +dimen dp_515 +dimen dp_516 +dimen dp_517 +dimen dp_518 +dimen dp_519 +dimen dp_52 +dimen dp_520 +dimen dp_521 +dimen dp_522 +dimen dp_523 +dimen dp_524 +dimen dp_525 +dimen dp_526 +dimen dp_527 +dimen dp_528 +dimen dp_529 +dimen dp_53 +dimen dp_530 +dimen dp_531 +dimen dp_532 +dimen dp_533 +dimen dp_534 +dimen dp_535 +dimen dp_536 +dimen dp_537 +dimen dp_538 +dimen dp_539 +dimen dp_54 +dimen dp_540 +dimen dp_541 +dimen dp_542 +dimen dp_543 +dimen dp_544 +dimen dp_545 +dimen dp_546 +dimen dp_547 +dimen dp_548 +dimen dp_549 +dimen dp_55 +dimen dp_550 +dimen dp_551 +dimen dp_552 +dimen dp_553 +dimen dp_554 +dimen dp_555 +dimen dp_556 +dimen dp_557 +dimen dp_558 +dimen dp_559 +dimen dp_56 +dimen dp_560 +dimen dp_561 +dimen dp_562 +dimen dp_563 +dimen dp_564 +dimen dp_565 +dimen dp_566 +dimen dp_567 +dimen dp_568 +dimen dp_569 +dimen dp_57 +dimen dp_570 +dimen dp_571 +dimen dp_572 +dimen dp_573 +dimen dp_574 +dimen dp_575 +dimen dp_576 +dimen dp_577 +dimen dp_578 +dimen dp_579 +dimen dp_58 +dimen dp_580 +dimen dp_581 +dimen dp_582 +dimen dp_583 +dimen dp_584 +dimen dp_585 +dimen dp_586 +dimen dp_587 +dimen dp_588 +dimen dp_589 +dimen dp_59 +dimen dp_590 +dimen dp_591 +dimen dp_592 +dimen dp_593 +dimen dp_594 +dimen dp_595 +dimen dp_596 +dimen dp_597 +dimen dp_598 +dimen dp_599 +dimen dp_6 +dimen dp_60 +dimen dp_600 +dimen dp_601 +dimen dp_602 +dimen dp_603 +dimen dp_604 +dimen dp_605 +dimen dp_606 +dimen dp_607 +dimen dp_608 +dimen dp_609 +dimen dp_61 +dimen dp_610 +dimen dp_611 +dimen dp_612 +dimen dp_613 +dimen dp_614 +dimen dp_615 +dimen dp_616 +dimen dp_617 +dimen dp_618 +dimen dp_619 +dimen dp_62 +dimen dp_620 +dimen dp_621 +dimen dp_622 +dimen dp_623 +dimen dp_624 +dimen dp_625 +dimen dp_626 +dimen dp_627 +dimen dp_628 +dimen dp_629 +dimen dp_63 +dimen dp_630 +dimen dp_631 +dimen dp_632 +dimen dp_633 +dimen dp_634 +dimen dp_635 +dimen dp_636 +dimen dp_637 +dimen dp_638 +dimen dp_639 +dimen dp_64 +dimen dp_640 +dimen dp_641 +dimen dp_642 +dimen dp_643 +dimen dp_644 +dimen dp_645 +dimen dp_646 +dimen dp_647 +dimen dp_648 +dimen dp_649 +dimen dp_65 +dimen dp_650 +dimen dp_651 +dimen dp_652 +dimen dp_653 +dimen dp_654 +dimen dp_655 +dimen dp_656 +dimen dp_657 +dimen dp_658 +dimen dp_659 +dimen dp_66 +dimen dp_660 +dimen dp_661 +dimen dp_662 +dimen dp_663 +dimen dp_664 +dimen dp_665 +dimen dp_666 +dimen dp_667 +dimen dp_668 +dimen dp_669 +dimen dp_67 +dimen dp_670 +dimen dp_671 +dimen dp_672 +dimen dp_673 +dimen dp_674 +dimen dp_675 +dimen dp_676 +dimen dp_677 +dimen dp_678 +dimen dp_679 +dimen dp_68 +dimen dp_680 +dimen dp_681 +dimen dp_682 +dimen dp_683 +dimen dp_684 +dimen dp_685 +dimen dp_686 +dimen dp_687 +dimen dp_688 +dimen dp_689 +dimen dp_69 +dimen dp_690 +dimen dp_691 +dimen dp_692 +dimen dp_693 +dimen dp_694 +dimen dp_695 +dimen dp_696 +dimen dp_697 +dimen dp_698 +dimen dp_699 +dimen dp_7 +dimen dp_70 +dimen dp_700 +dimen dp_701 +dimen dp_702 +dimen dp_703 +dimen dp_704 +dimen dp_705 +dimen dp_706 +dimen dp_707 +dimen dp_708 +dimen dp_709 +dimen dp_71 +dimen dp_710 +dimen dp_711 +dimen dp_712 +dimen dp_713 +dimen dp_714 +dimen dp_715 +dimen dp_716 +dimen dp_717 +dimen dp_718 +dimen dp_719 +dimen dp_72 +dimen dp_720 +dimen dp_721 +dimen dp_722 +dimen dp_723 +dimen dp_724 +dimen dp_725 +dimen dp_726 +dimen dp_727 +dimen dp_728 +dimen dp_729 +dimen dp_73 +dimen dp_730 +dimen dp_731 +dimen dp_732 +dimen dp_733 +dimen dp_734 +dimen dp_735 +dimen dp_736 +dimen dp_737 +dimen dp_738 +dimen dp_739 +dimen dp_74 +dimen dp_740 +dimen dp_741 +dimen dp_742 +dimen dp_743 +dimen dp_744 +dimen dp_745 +dimen dp_746 +dimen dp_747 +dimen dp_748 +dimen dp_749 +dimen dp_75 +dimen dp_750 +dimen dp_751 +dimen dp_752 +dimen dp_753 +dimen dp_754 +dimen dp_755 +dimen dp_756 +dimen dp_757 +dimen dp_758 +dimen dp_759 +dimen dp_76 +dimen dp_760 +dimen dp_761 +dimen dp_762 +dimen dp_763 +dimen dp_764 +dimen dp_765 +dimen dp_766 +dimen dp_767 +dimen dp_768 +dimen dp_769 +dimen dp_77 +dimen dp_770 +dimen dp_771 +dimen dp_772 +dimen dp_773 +dimen dp_774 +dimen dp_775 +dimen dp_776 +dimen dp_777 +dimen dp_778 +dimen dp_779 +dimen dp_78 +dimen dp_780 +dimen dp_781 +dimen dp_782 +dimen dp_783 +dimen dp_784 +dimen dp_785 +dimen dp_786 +dimen dp_787 +dimen dp_788 +dimen dp_789 +dimen dp_79 +dimen dp_790 +dimen dp_791 +dimen dp_792 +dimen dp_793 +dimen dp_794 +dimen dp_795 +dimen dp_796 +dimen dp_797 +dimen dp_798 +dimen dp_799 +dimen dp_7_5 +dimen dp_8 +dimen dp_80 +dimen dp_800 +dimen dp_801 +dimen dp_802 +dimen dp_803 +dimen dp_804 +dimen dp_805 +dimen dp_806 +dimen dp_807 +dimen dp_808 +dimen dp_809 +dimen dp_81 +dimen dp_810 +dimen dp_811 +dimen dp_812 +dimen dp_813 +dimen dp_814 +dimen dp_815 +dimen dp_816 +dimen dp_817 +dimen dp_818 +dimen dp_819 +dimen dp_82 +dimen dp_820 +dimen dp_821 +dimen dp_822 +dimen dp_823 +dimen dp_824 +dimen dp_825 +dimen dp_826 +dimen dp_827 +dimen dp_828 +dimen dp_829 +dimen dp_83 +dimen dp_830 +dimen dp_831 +dimen dp_832 +dimen dp_833 +dimen dp_834 +dimen dp_835 +dimen dp_836 +dimen dp_837 +dimen dp_838 +dimen dp_839 +dimen dp_84 +dimen dp_840 +dimen dp_841 +dimen dp_842 +dimen dp_843 +dimen dp_844 +dimen dp_845 +dimen dp_846 +dimen dp_847 +dimen dp_848 +dimen dp_849 +dimen dp_85 +dimen dp_850 +dimen dp_851 +dimen dp_852 +dimen dp_853 +dimen dp_854 +dimen dp_855 +dimen dp_856 +dimen dp_857 +dimen dp_858 +dimen dp_859 +dimen dp_86 +dimen dp_860 +dimen dp_861 +dimen dp_862 +dimen dp_863 +dimen dp_864 +dimen dp_865 +dimen dp_866 +dimen dp_867 +dimen dp_868 +dimen dp_869 +dimen dp_87 +dimen dp_870 +dimen dp_871 +dimen dp_872 +dimen dp_873 +dimen dp_874 +dimen dp_875 +dimen dp_876 +dimen dp_877 +dimen dp_878 +dimen dp_879 +dimen dp_88 +dimen dp_880 +dimen dp_881 +dimen dp_882 +dimen dp_883 +dimen dp_884 +dimen dp_885 +dimen dp_886 +dimen dp_887 +dimen dp_888 +dimen dp_889 +dimen dp_89 +dimen dp_890 +dimen dp_891 +dimen dp_892 +dimen dp_893 +dimen dp_894 +dimen dp_895 +dimen dp_896 +dimen dp_897 +dimen dp_898 +dimen dp_899 +dimen dp_9 +dimen dp_90 +dimen dp_900 +dimen dp_901 +dimen dp_902 +dimen dp_903 +dimen dp_904 +dimen dp_905 +dimen dp_906 +dimen dp_907 +dimen dp_908 +dimen dp_909 +dimen dp_91 +dimen dp_910 +dimen dp_911 +dimen dp_912 +dimen dp_913 +dimen dp_914 +dimen dp_915 +dimen dp_916 +dimen dp_917 +dimen dp_918 +dimen dp_919 +dimen dp_92 +dimen dp_920 +dimen dp_921 +dimen dp_922 +dimen dp_923 +dimen dp_924 +dimen dp_925 +dimen dp_926 +dimen dp_927 +dimen dp_928 +dimen dp_929 +dimen dp_93 +dimen dp_930 +dimen dp_931 +dimen dp_932 +dimen dp_933 +dimen dp_934 +dimen dp_935 +dimen dp_936 +dimen dp_937 +dimen dp_938 +dimen dp_939 +dimen dp_94 +dimen dp_940 +dimen dp_941 +dimen dp_942 +dimen dp_943 +dimen dp_944 +dimen dp_945 +dimen dp_946 +dimen dp_947 +dimen dp_948 +dimen dp_949 +dimen dp_95 +dimen dp_950 +dimen dp_951 +dimen dp_952 +dimen dp_953 +dimen dp_954 +dimen dp_955 +dimen dp_956 +dimen dp_957 +dimen dp_958 +dimen dp_959 +dimen dp_96 +dimen dp_960 +dimen dp_961 +dimen dp_962 +dimen dp_963 +dimen dp_964 +dimen dp_965 +dimen dp_966 +dimen dp_967 +dimen dp_968 +dimen dp_969 +dimen dp_97 +dimen dp_970 +dimen dp_971 +dimen dp_972 +dimen dp_973 +dimen dp_974 +dimen dp_975 +dimen dp_976 +dimen dp_977 +dimen dp_978 +dimen dp_979 +dimen dp_98 +dimen dp_980 +dimen dp_981 +dimen dp_982 +dimen dp_983 +dimen dp_984 +dimen dp_985 +dimen dp_986 +dimen dp_987 +dimen dp_988 +dimen dp_989 +dimen dp_99 +dimen dp_990 +dimen dp_991 +dimen dp_992 +dimen dp_993 +dimen dp_994 +dimen dp_995 +dimen dp_996 +dimen dp_997 +dimen dp_998 +dimen dp_999 +dimen dp_m_1 +dimen dp_m_10 +dimen dp_m_12 +dimen dp_m_2 +dimen dp_m_20 +dimen dp_m_30 +dimen dp_m_5 +dimen dp_m_60 +dimen dp_m_8 +dimen sp_10 +dimen sp_11 +dimen sp_12 +dimen sp_13 +dimen sp_14 +dimen sp_15 +dimen sp_16 +dimen sp_17 +dimen sp_18 +dimen sp_19 +dimen sp_20 +dimen sp_21 +dimen sp_22 +dimen sp_23 +dimen sp_24 +dimen sp_25 +dimen sp_28 +dimen sp_30 +dimen sp_32 +dimen sp_34 +dimen sp_36 +dimen sp_38 +dimen sp_40 +dimen sp_42 +dimen sp_48 +dimen sp_6 +dimen sp_7 +dimen sp_8 +dimen sp_9 +drawable module_guide_blue_corner +id moduleGuideIndicator +id moduleGuidePageFive +id moduleGuidePageFour +id moduleGuidePageOne +id moduleGuidePageThree +id moduleGuidePageTwo +id moduleGuideViewPager +id module_guide_include +id module_guide_page_left +id module_guide_page_right +id module_guide_tv_next_step +layout module_guide_fragment +layout module_guide_item_include +layout module_guide_item_stage_five +layout module_guide_item_stage_four +layout module_guide_item_stage_one +layout module_guide_item_stage_three +layout module_guide_item_stage_two +mipmap module_guide_item_stage_five +mipmap module_guide_item_stage_five_launcher +mipmap module_guide_item_stage_four +mipmap module_guide_item_stage_four_launcher +mipmap module_guide_item_stage_one +mipmap module_guide_item_stage_one_launcher +mipmap module_guide_item_stage_three +mipmap module_guide_item_stage_three_launcher +mipmap module_guide_item_stage_two +mipmap module_guide_item_stage_two_launcher +mipmap module_guide_left_page +mipmap module_guide_right_page +string app_name +string module_guide_finish +string module_guide_item_entry_main +string module_guide_item_next_step +string module_guide_main +string module_guide_voice_page_end +string module_guide_voice_page_five +string module_guide_voice_page_four +string module_guide_voice_page_one +string module_guide_voice_page_three +string module_guide_voice_page_two diff --git a/modules/mogo-module-guide/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/modules/mogo-module-guide/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt new file mode 100644 index 0000000000..e589cbe3d2 --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt @@ -0,0 +1,13 @@ +1 +2 +6 +7 /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml +9 android:targetSdkVersion="19" /> +9-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml +10 +11 diff --git a/modules/mogo-module-guide/build/intermediates/merged_java_res/debug/out.jar b/modules/mogo-module-guide/build/intermediates/merged_java_res/debug/out.jar new file mode 100644 index 0000000000..b2b50b9b83 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/merged_java_res/debug/out.jar differ diff --git a/modules/mogo-module-guide/build/intermediates/merged_manifests/debug/output.json b/modules/mogo-module-guide/build/intermediates/merged_manifests/debug/output.json new file mode 100644 index 0000000000..6b93db545c --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/merged_manifests/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"2.0.16","enabled":true,"outputFile":"mogo-module-guide-debug.aar","fullName":"debug","baseName":"debug"},"path":"../../library_manifest/debug/AndroidManifest.xml","properties":{"packageId":"com.mogo.module.guide","split":""}}] \ No newline at end of file diff --git a/modules/mogo-module-guide/build/intermediates/packaged-classes/debug/classes.jar b/modules/mogo-module-guide/build/intermediates/packaged-classes/debug/classes.jar new file mode 100644 index 0000000000..67e6db6836 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged-classes/debug/classes.jar differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/drawable/module_guide_blue_corner.xml b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/drawable/module_guide_blue_corner.xml new file mode 100644 index 0000000000..c21deebfbf --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/drawable/module_guide_blue_corner.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_fragment.xml b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_fragment.xml new file mode 100644 index 0000000000..c0ab9b03e5 --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_fragment.xml @@ -0,0 +1,28 @@ + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_include.xml b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_include.xml new file mode 100644 index 0000000000..c170a9db8c --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_include.xml @@ -0,0 +1,42 @@ + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_stage_five.xml b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_stage_five.xml new file mode 100644 index 0000000000..a7842257a8 --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_stage_five.xml @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_stage_four.xml b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_stage_four.xml new file mode 100644 index 0000000000..a0a61c5541 --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_stage_four.xml @@ -0,0 +1,7 @@ + + + \ No newline at end of file diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_stage_one.xml b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_stage_one.xml new file mode 100644 index 0000000000..217f6c1c9c --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_stage_one.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_stage_three.xml b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_stage_three.xml new file mode 100644 index 0000000000..7721a4fde7 --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_stage_three.xml @@ -0,0 +1,7 @@ + + + \ No newline at end of file diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_stage_two.xml b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_stage_two.xml new file mode 100644 index 0000000000..4c79d09447 --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/layout/module_guide_item_stage_two.xml @@ -0,0 +1,7 @@ + + + \ No newline at end of file diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_item_stage_five.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_item_stage_five.png new file mode 100644 index 0000000000..fcd22618a3 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_item_stage_five.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_item_stage_four.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_item_stage_four.png new file mode 100644 index 0000000000..d6fc96f989 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_item_stage_four.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_item_stage_one.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_item_stage_one.png new file mode 100644 index 0000000000..2690abb302 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_item_stage_one.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_item_stage_three.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_item_stage_three.png new file mode 100644 index 0000000000..b849869d20 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_item_stage_three.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_item_stage_two.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_item_stage_two.png new file mode 100644 index 0000000000..dc2840a228 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_item_stage_two.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_left_page.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_left_page.png new file mode 100644 index 0000000000..da94ba4a48 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_left_page.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_right_page.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_right_page.png new file mode 100644 index 0000000000..f25becf47a Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-ldpi-v4/module_guide_right_page.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_item_stage_five_launcher.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_item_stage_five_launcher.png new file mode 100644 index 0000000000..e027bb55bb Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_item_stage_five_launcher.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_item_stage_four_launcher.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_item_stage_four_launcher.png new file mode 100644 index 0000000000..e7be0d312e Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_item_stage_four_launcher.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_item_stage_one_launcher.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_item_stage_one_launcher.png new file mode 100644 index 0000000000..14cd567ad0 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_item_stage_one_launcher.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_item_stage_three_launcher.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_item_stage_three_launcher.png new file mode 100644 index 0000000000..94fdf82256 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_item_stage_three_launcher.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_item_stage_two_launcher.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_item_stage_two_launcher.png new file mode 100644 index 0000000000..8b8861a012 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_item_stage_two_launcher.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_left_page.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_left_page.png new file mode 100644 index 0000000000..a79e3d796c Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_left_page.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_right_page.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_right_page.png new file mode 100644 index 0000000000..07fed27927 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-mdpi-v4/module_guide_right_page.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_item_stage_five_launcher.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_item_stage_five_launcher.png new file mode 100644 index 0000000000..61a3e015dc Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_item_stage_five_launcher.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_item_stage_four_launcher.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_item_stage_four_launcher.png new file mode 100644 index 0000000000..7153f0b341 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_item_stage_four_launcher.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_item_stage_one_launcher.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_item_stage_one_launcher.png new file mode 100644 index 0000000000..46a01e4a7a Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_item_stage_one_launcher.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_item_stage_three_launcher.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_item_stage_three_launcher.png new file mode 100644 index 0000000000..9e27ccecaa Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_item_stage_three_launcher.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_item_stage_two_launcher.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_item_stage_two_launcher.png new file mode 100644 index 0000000000..6a29d13093 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_item_stage_two_launcher.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_left_page.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_left_page.png new file mode 100644 index 0000000000..98ca2cb6df Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_left_page.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_right_page.png b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_right_page.png new file mode 100644 index 0000000000..f476cfc2dc Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/mipmap-xhdpi-v4/module_guide_right_page.png differ diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/values-xhdpi-v4/values-xhdpi-v4.xml b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/values-xhdpi-v4/values-xhdpi-v4.xml new file mode 100644 index 0000000000..10da76ed9d --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/values-xhdpi-v4/values-xhdpi-v4.xml @@ -0,0 +1,1046 @@ + + + 0px + 0.1px + 0.5px + 1px + 10px + 100px + 101px + 102px + 103px + 104px + 104.5px + 105px + 106px + 107px + 108px + 109px + 11px + 110px + 111px + 112px + 113px + 114px + 115px + 116px + 117px + 118px + 119px + 12px + 120px + 121px + 122px + 123px + 124px + 125px + 126px + 127px + 128px + 129px + 13px + 130px + 1300px + 131px + 132px + 133px + 134px + 134.5px + 135px + 136px + 137px + 138px + 139px + 14px + 140px + 141px + 142px + 143px + 144px + 145px + 146px + 147px + 148px + 149px + 15px + 150px + 151px + 152px + 153px + 154px + 155px + 156px + 157px + 158px + 159px + 16px + 160px + 161px + 162px + 163px + 164px + 165px + 166px + 167px + 168px + 169px + 17px + 170px + 171px + 172px + 173px + 174px + 175px + 176px + 177px + 178px + 179px + 18px + 180px + 181px + 182px + 183px + 184px + 185px + 186px + 187px + 188px + 189px + 19px + 190px + 191px + 191.25px + 192px + 193px + 194px + 195px + 196px + 197px + 198px + 199px + 1.5px + 2px + 20px + 200px + 201px + 202px + 203px + 204px + 205px + 206px + 207px + 208px + 209px + 21px + 210px + 211px + 212px + 213px + 214px + 215px + 216px + 217px + 218px + 219px + 22px + 220px + 221px + 222px + 223px + 224px + 225px + 226px + 227px + 228px + 229px + 23px + 230px + 231px + 232px + 233px + 234px + 235px + 236px + 237px + 238px + 239px + 24px + 240px + 241px + 242px + 243px + 244px + 245px + 246px + 247px + 248px + 249px + 25px + 250px + 251px + 252px + 253px + 254px + 255px + 256px + 257px + 258px + 259px + 26px + 260px + 261px + 262px + 263px + 264px + 265px + 266px + 267px + 268px + 269px + 27px + 270px + 271px + 272px + 273px + 274px + 275px + 276px + 277px + 278px + 279px + 28px + 280px + 281px + 282px + 283px + 284px + 285px + 286px + 287px + 288px + 289px + 29px + 290px + 291px + 292px + 293px + 294px + 295px + 296px + 297px + 298px + 299px + 2.5px + 3px + 30px + 300px + 301px + 302px + 303px + 304px + 305px + 306px + 307px + 308px + 309px + 31px + 310px + 311px + 312px + 313px + 314px + 315px + 316px + 317px + 318px + 319px + 32px + 320px + 321px + 322px + 323px + 324px + 325px + 326px + 327px + 328px + 329px + 33px + 330px + 331px + 332px + 333px + 334px + 335px + 336px + 337px + 338px + 339px + 34px + 340px + 341px + 342px + 343px + 344px + 345px + 346px + 347px + 348px + 349px + 35px + 350px + 351px + 352px + 353px + 354px + 355px + 356px + 357px + 358px + 359px + 36px + 366px + 367px + 368px + 369px + 37px + 370px + 371px + 372px + 373px + 374px + 375px + 376px + 377px + 378px + 379px + 38px + 380px + 381px + 382px + 383px + 384px + 385px + 386px + 387px + 388px + 389px + 39px + 390px + 391px + 392px + 393px + 394px + 395px + 396px + 397px + 398px + 399px + 3.5px + 4px + 40px + 400px + 401px + 402px + 403px + 404px + 405px + 406px + 407px + 408px + 409px + 41px + 410px + 411px + 412px + 413px + 414px + 415px + 416px + 417px + 418px + 419px + 42px + 420px + 421px + 422px + 423px + 424px + 425px + 426px + 427px + 428px + 429px + 43px + 430px + 431px + 432px + 433px + 434px + 435px + 436px + 437px + 438px + 439px + 44px + 440px + 441px + 442px + 443px + 444px + 445px + 446px + 447px + 448px + 449px + 45px + 450px + 451px + 452px + 453px + 454px + 455px + 456px + 457px + 458px + 459px + 46px + 460px + 461px + 462px + 463px + 464px + 465px + 466px + 467px + 468px + 469px + 47px + 470px + 471px + 472px + 473px + 474px + 475px + 476px + 477px + 478px + 479px + 48px + 480px + 481px + 482px + 483px + 484px + 485px + 486px + 487px + 488px + 489px + 49px + 490px + 491px + 492px + 493px + 494px + 495px + 496px + 497px + 498px + 499px + 4.5px + 5px + 50px + 500px + 501px + 502px + 503px + 504px + 505px + 506px + 507px + 508px + 509px + 51px + 510px + 511px + 512px + 513px + 514px + 515px + 516px + 517px + 518px + 519px + 52px + 520px + 521px + 522px + 523px + 524px + 525px + 526px + 527px + 528px + 529px + 53px + 530px + 531px + 532px + 533px + 534px + 535px + 536px + 537px + 538px + 539px + 54px + 540px + 541px + 542px + 543px + 544px + 545px + 546px + 547px + 548px + 549px + 55px + 550px + 551px + 552px + 553px + 554px + 555px + 556px + 557px + 558px + 559px + 56px + 560px + 561px + 562px + 563px + 564px + 565px + 566px + 567px + 568px + 569px + 57px + 570px + 571px + 572px + 573px + 574px + 575px + 576px + 577px + 578px + 579px + 58px + 580px + 581px + 582px + 583px + 584px + 585px + 586px + 587px + 588px + 589px + 59px + 590px + 591px + 592px + 593px + 594px + 595px + 596px + 597px + 598px + 599px + 6px + 60px + 600px + 601px + 602px + 603px + 604px + 605px + 606px + 607px + 608px + 609px + 61px + 610px + 611px + 612px + 613px + 614px + 615px + 616px + 617px + 618px + 619px + 62px + 620px + 621px + 622px + 623px + 624px + 625px + 626px + 627px + 628px + 629px + 63px + 630px + 631px + 632px + 633px + 634px + 635px + 636px + 637px + 638px + 639px + 64px + 640px + 641px + 642px + 643px + 644px + 645px + 646px + 647px + 648px + 649px + 65px + 650px + 651px + 652px + 653px + 654px + 655px + 656px + 657px + 658px + 659px + 66px + 660px + 661px + 662px + 663px + 664px + 665px + 666px + 667px + 668px + 669px + 67px + 670px + 671px + 672px + 673px + 674px + 675px + 676px + 677px + 678px + 679px + 68px + 680px + 681px + 682px + 683px + 684px + 685px + 686px + 687px + 688px + 689px + 69px + 690px + 691px + 692px + 693px + 694px + 695px + 696px + 697px + 698px + 699px + 7px + 70px + 700px + 701px + 702px + 703px + 704px + 705px + 706px + 707px + 708px + 709px + 71px + 710px + 711px + 712px + 713px + 714px + 715px + 716px + 717px + 718px + 719px + 72px + 720px + 721px + 722px + 723px + 724px + 725px + 726px + 727px + 728px + 729px + 73px + 730px + 731px + 732px + 733px + 734px + 735px + 736px + 737px + 738px + 739px + 74px + 740px + 741px + 742px + 743px + 744px + 745px + 746px + 747px + 748px + 749px + 75px + 750px + 751px + 752px + 753px + 754px + 755px + 756px + 757px + 758px + 759px + 76px + 760px + 761px + 762px + 763px + 764px + 765px + 766px + 767px + 768px + 769px + 77px + 770px + 771px + 772px + 773px + 774px + 775px + 776px + 777px + 778px + 779px + 78px + 780px + 781px + 782px + 783px + 784px + 785px + 786px + 787px + 788px + 789px + 79px + 790px + 791px + 792px + 793px + 794px + 795px + 796px + 797px + 798px + 799px + 7.5px + 8px + 80px + 800px + 801px + 802px + 803px + 804px + 805px + 806px + 807px + 808px + 809px + 81px + 810px + 811px + 812px + 813px + 814px + 815px + 816px + 817px + 818px + 819px + 82px + 820px + 821px + 822px + 823px + 824px + 825px + 826px + 827px + 828px + 829px + 83px + 830px + 831px + 832px + 833px + 834px + 835px + 836px + 837px + 838px + 839px + 84px + 840px + 841px + 842px + 843px + 844px + 845px + 846px + 847px + 848px + 849px + 85px + 850px + 851px + 852px + 853px + 854px + 855px + 856px + 857px + 858px + 859px + 86px + 860px + 861px + 862px + 863px + 864px + 865px + 866px + 867px + 868px + 869px + 87px + 870px + 871px + 872px + 873px + 874px + 875px + 876px + 877px + 878px + 879px + 88px + 880px + 881px + 882px + 883px + 884px + 885px + 886px + 887px + 888px + 889px + 89px + 890px + 891px + 892px + 893px + 894px + 895px + 896px + 897px + 898px + 899px + 9px + 90px + 900px + 901px + 902px + 903px + 904px + 905px + 906px + 907px + 908px + 909px + 91px + 910px + 911px + 912px + 913px + 914px + 915px + 916px + 917px + 918px + 919px + 92px + 920px + 921px + 922px + 923px + 924px + 925px + 926px + 927px + 928px + 929px + 93px + 930px + 931px + 932px + 933px + 934px + 935px + 936px + 937px + 938px + 939px + 94px + 940px + 941px + 942px + 943px + 944px + 945px + 946px + 947px + 948px + 949px + 95px + 950px + 951px + 952px + 953px + 954px + 955px + 956px + 957px + 958px + 959px + 96px + 960px + 961px + 962px + 963px + 964px + 965px + 966px + 967px + 968px + 969px + 97px + 970px + 971px + 972px + 973px + 974px + 975px + 976px + 977px + 978px + 979px + 98px + 980px + 981px + 982px + 983px + 984px + 985px + 986px + 987px + 988px + 989px + 99px + 990px + 991px + 992px + 993px + 994px + 995px + 996px + 997px + 998px + 999px + -1px + -10px + -12px + -2px + -20px + -30px + -5px + -60px + -8px + 10px + 11px + 12px + 13px + 14px + 15px + 16px + 17px + 18px + 19px + 20px + 21px + 22px + 23px + 24px + 25px + 28px + 30px + 32px + 34px + 36px + 38px + 40px + 42px + 48px + 6px + 7px + 8px + 9px + \ No newline at end of file diff --git a/modules/mogo-module-guide/build/intermediates/packaged_res/debug/values/values.xml b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/values/values.xml new file mode 100644 index 0000000000..a6eb310bb3 --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/packaged_res/debug/values/values.xml @@ -0,0 +1,1060 @@ + + + #3B91FF + #33ffffff + #ffffff + 0.0000px + 0.0547px + 0.2734px + 0.5469px + 5.4688px + 54.6875px + 55.2344px + 55.7812px + 56.3281px + 56.8750px + 57.1484px + 57.4219px + 57.9688px + 58.5156px + 59.0625px + 59.6094px + 6.0156px + 60.1562px + 60.7031px + 61.2500px + 61.7969px + 62.3438px + 62.8906px + 63.4375px + 63.9844px + 64.5312px + 65.0781px + 6.5625px + 65.6250px + 66.1719px + 66.7188px + 67.2656px + 67.8125px + 68.3594px + 68.9062px + 69.4531px + 70.0000px + 70.5469px + 7.1094px + 71.0938px + 710.9375px + 71.6406px + 72.1875px + 72.7344px + 73.2812px + 73.5547px + 73.8281px + 74.3750px + 74.9219px + 75.4688px + 76.0156px + 7.6562px + 76.5625px + 77.1094px + 77.6562px + 78.2031px + 78.7500px + 79.2969px + 79.8438px + 80.3906px + 80.9375px + 81.4844px + 8.2031px + 82.0312px + 82.5781px + 83.1250px + 83.6719px + 84.2188px + 84.7656px + 85.3125px + 85.8594px + 86.4062px + 86.9531px + 8.7500px + 87.5000px + 88.0469px + 88.5938px + 89.1406px + 89.6875px + 90.2344px + 90.7812px + 91.3281px + 91.8750px + 92.4219px + 9.2969px + 92.9688px + 93.5156px + 94.0625px + 94.6094px + 95.1562px + 95.7031px + 96.2500px + 96.7969px + 97.3438px + 97.8906px + 9.8438px + 98.4375px + 98.9844px + 99.5312px + 100.0781px + 100.6250px + 101.1719px + 101.7188px + 102.2656px + 102.8125px + 103.3594px + 10.3906px + 103.9062px + 104.4531px + 104.5898px + 105.0000px + 105.5469px + 106.0938px + 106.6406px + 107.1875px + 107.7344px + 108.2812px + 108.8281px + 0.8203px + 1.0938px + 10.9375px + 109.3750px + 109.9219px + 110.4688px + 111.0156px + 111.5625px + 112.1094px + 112.6562px + 113.2031px + 113.7500px + 114.2969px + 11.4844px + 114.8438px + 115.3906px + 115.9375px + 116.4844px + 117.0312px + 117.5781px + 118.1250px + 118.6719px + 119.2188px + 119.7656px + 12.0312px + 120.3125px + 120.8594px + 121.4062px + 121.9531px + 122.5000px + 123.0469px + 123.5938px + 124.1406px + 124.6875px + 125.2344px + 12.5781px + 125.7812px + 126.3281px + 126.8750px + 127.4219px + 127.9688px + 128.5156px + 129.0625px + 129.6094px + 130.1562px + 130.7031px + 13.1250px + 131.2500px + 131.7969px + 132.3438px + 132.8906px + 133.4375px + 133.9844px + 134.5312px + 135.0781px + 135.6250px + 136.1719px + 13.6719px + 136.7188px + 137.2656px + 137.8125px + 138.3594px + 138.9062px + 139.4531px + 140.0000px + 140.5469px + 141.0938px + 141.6406px + 14.2188px + 142.1875px + 142.7344px + 143.2812px + 143.8281px + 144.3750px + 144.9219px + 145.4688px + 146.0156px + 146.5625px + 147.1094px + 14.7656px + 147.6562px + 148.2031px + 148.7500px + 149.2969px + 149.8438px + 150.3906px + 150.9375px + 151.4844px + 152.0312px + 152.5781px + 15.3125px + 153.1250px + 153.6719px + 154.2188px + 154.7656px + 155.3125px + 155.8594px + 156.4062px + 156.9531px + 157.5000px + 158.0469px + 15.8594px + 158.5938px + 159.1406px + 159.6875px + 160.2344px + 160.7812px + 161.3281px + 161.8750px + 162.4219px + 162.9688px + 163.5156px + 1.3672px + 1.6406px + 16.4062px + 164.0625px + 164.6094px + 165.1562px + 165.7031px + 166.2500px + 166.7969px + 167.3438px + 167.8906px + 168.4375px + 168.9844px + 16.9531px + 169.5312px + 170.0781px + 170.6250px + 171.1719px + 171.7188px + 172.2656px + 172.8125px + 173.3594px + 173.9062px + 174.4531px + 17.5000px + 175.0000px + 175.5469px + 176.0938px + 176.6406px + 177.1875px + 177.7344px + 178.2812px + 178.8281px + 179.3750px + 179.9219px + 18.0469px + 180.4688px + 181.0156px + 181.5625px + 182.1094px + 182.6562px + 183.2031px + 183.7500px + 184.2969px + 184.8438px + 185.3906px + 18.5938px + 185.9375px + 186.4844px + 187.0312px + 187.5781px + 188.1250px + 188.6719px + 189.2188px + 189.7656px + 190.3125px + 190.8594px + 19.1406px + 191.4062px + 191.9531px + 192.5000px + 193.0469px + 193.5938px + 194.1406px + 194.6875px + 195.2344px + 195.7812px + 196.3281px + 19.6875px + 200.1562px + 200.7031px + 201.2500px + 201.7969px + 20.2344px + 202.3438px + 202.8906px + 203.4375px + 203.9844px + 204.5312px + 205.0781px + 205.6250px + 206.1719px + 206.7188px + 207.2656px + 20.7812px + 207.8125px + 208.3594px + 208.9062px + 209.4531px + 210.0000px + 210.5469px + 211.0938px + 211.6406px + 212.1875px + 212.7344px + 21.3281px + 213.2812px + 213.8281px + 214.3750px + 214.9219px + 215.4688px + 216.0156px + 216.5625px + 217.1094px + 217.6562px + 218.2031px + 1.9141px + 2.1875px + 21.8750px + 218.7500px + 219.2969px + 219.8438px + 220.3906px + 220.9375px + 221.4844px + 222.0312px + 222.5781px + 223.1250px + 223.6719px + 22.4219px + 224.2188px + 224.7656px + 225.3125px + 225.8594px + 226.4062px + 226.9531px + 227.5000px + 228.0469px + 228.5938px + 229.1406px + 22.9688px + 229.6875px + 230.2344px + 230.7812px + 231.3281px + 231.8750px + 232.4219px + 232.9688px + 233.5156px + 234.0625px + 234.6094px + 23.5156px + 235.1562px + 235.7031px + 236.2500px + 236.7969px + 237.3438px + 237.8906px + 238.4375px + 238.9844px + 239.5312px + 240.0781px + 24.0625px + 240.6250px + 241.1719px + 241.7188px + 242.2656px + 242.8125px + 243.3594px + 243.9062px + 244.4531px + 245.0000px + 245.5469px + 24.6094px + 246.0938px + 246.6406px + 247.1875px + 247.7344px + 248.2812px + 248.8281px + 249.3750px + 249.9219px + 250.4688px + 251.0156px + 25.1562px + 251.5625px + 252.1094px + 252.6562px + 253.2031px + 253.7500px + 254.2969px + 254.8438px + 255.3906px + 255.9375px + 256.4844px + 25.7031px + 257.0312px + 257.5781px + 258.1250px + 258.6719px + 259.2188px + 259.7656px + 260.3125px + 260.8594px + 261.4062px + 261.9531px + 26.2500px + 262.5000px + 263.0469px + 263.5938px + 264.1406px + 264.6875px + 265.2344px + 265.7812px + 266.3281px + 266.8750px + 267.4219px + 26.7969px + 267.9688px + 268.5156px + 269.0625px + 269.6094px + 270.1562px + 270.7031px + 271.2500px + 271.7969px + 272.3438px + 272.8906px + 2.4609px + 2.7344px + 27.3438px + 273.4375px + 273.9844px + 274.5312px + 275.0781px + 275.6250px + 276.1719px + 276.7188px + 277.2656px + 277.8125px + 278.3594px + 27.8906px + 278.9062px + 279.4531px + 280.0000px + 280.5469px + 281.0938px + 281.6406px + 282.1875px + 282.7344px + 283.2812px + 283.8281px + 28.4375px + 284.3750px + 284.9219px + 285.4688px + 286.0156px + 286.5625px + 287.1094px + 287.6562px + 288.2031px + 288.7500px + 289.2969px + 28.9844px + 289.8438px + 290.3906px + 290.9375px + 291.4844px + 292.0312px + 292.5781px + 293.1250px + 293.6719px + 294.2188px + 294.7656px + 29.5312px + 295.3125px + 295.8594px + 296.4062px + 296.9531px + 297.5000px + 298.0469px + 298.5938px + 299.1406px + 299.6875px + 300.2344px + 30.0781px + 300.7812px + 301.3281px + 301.8750px + 302.4219px + 302.9688px + 303.5156px + 304.0625px + 304.6094px + 305.1562px + 305.7031px + 30.6250px + 306.2500px + 306.7969px + 307.3438px + 307.8906px + 308.4375px + 308.9844px + 309.5312px + 310.0781px + 310.6250px + 311.1719px + 31.1719px + 311.7188px + 312.2656px + 312.8125px + 313.3594px + 313.9062px + 314.4531px + 315.0000px + 315.5469px + 316.0938px + 316.6406px + 31.7188px + 317.1875px + 317.7344px + 318.2812px + 318.8281px + 319.3750px + 319.9219px + 320.4688px + 321.0156px + 321.5625px + 322.1094px + 32.2656px + 322.6562px + 323.2031px + 323.7500px + 324.2969px + 324.8438px + 325.3906px + 325.9375px + 326.4844px + 327.0312px + 327.5781px + 3.2812px + 32.8125px + 328.1250px + 328.6719px + 329.2188px + 329.7656px + 330.3125px + 330.8594px + 331.4062px + 331.9531px + 332.5000px + 333.0469px + 33.3594px + 333.5938px + 334.1406px + 334.6875px + 335.2344px + 335.7812px + 336.3281px + 336.8750px + 337.4219px + 337.9688px + 338.5156px + 33.9062px + 339.0625px + 339.6094px + 340.1562px + 340.7031px + 341.2500px + 341.7969px + 342.3438px + 342.8906px + 343.4375px + 343.9844px + 34.4531px + 344.5312px + 345.0781px + 345.6250px + 346.1719px + 346.7188px + 347.2656px + 347.8125px + 348.3594px + 348.9062px + 349.4531px + 35.0000px + 350.0000px + 350.5469px + 351.0938px + 351.6406px + 352.1875px + 352.7344px + 353.2812px + 353.8281px + 354.3750px + 354.9219px + 35.5469px + 355.4688px + 356.0156px + 356.5625px + 357.1094px + 357.6562px + 358.2031px + 358.7500px + 359.2969px + 359.8438px + 360.3906px + 36.0938px + 360.9375px + 361.4844px + 362.0312px + 362.5781px + 363.1250px + 363.6719px + 364.2188px + 364.7656px + 365.3125px + 365.8594px + 36.6406px + 366.4062px + 366.9531px + 367.5000px + 368.0469px + 368.5938px + 369.1406px + 369.6875px + 370.2344px + 370.7812px + 371.3281px + 37.1875px + 371.8750px + 372.4219px + 372.9688px + 373.5156px + 374.0625px + 374.6094px + 375.1562px + 375.7031px + 376.2500px + 376.7969px + 37.7344px + 377.3438px + 377.8906px + 378.4375px + 378.9844px + 379.5312px + 380.0781px + 380.6250px + 381.1719px + 381.7188px + 382.2656px + 3.8281px + 38.2812px + 382.8125px + 383.3594px + 383.9062px + 384.4531px + 385.0000px + 385.5469px + 386.0938px + 386.6406px + 387.1875px + 387.7344px + 38.8281px + 388.2812px + 388.8281px + 389.3750px + 389.9219px + 390.4688px + 391.0156px + 391.5625px + 392.1094px + 392.6562px + 393.2031px + 39.3750px + 393.7500px + 394.2969px + 394.8438px + 395.3906px + 395.9375px + 396.4844px + 397.0312px + 397.5781px + 398.1250px + 398.6719px + 39.9219px + 399.2188px + 399.7656px + 400.3125px + 400.8594px + 401.4062px + 401.9531px + 402.5000px + 403.0469px + 403.5938px + 404.1406px + 40.4688px + 404.6875px + 405.2344px + 405.7812px + 406.3281px + 406.8750px + 407.4219px + 407.9688px + 408.5156px + 409.0625px + 409.6094px + 41.0156px + 410.1562px + 410.7031px + 411.2500px + 411.7969px + 412.3438px + 412.8906px + 413.4375px + 413.9844px + 414.5312px + 415.0781px + 41.5625px + 415.6250px + 416.1719px + 416.7188px + 417.2656px + 417.8125px + 418.3594px + 418.9062px + 419.4531px + 420.0000px + 420.5469px + 42.1094px + 421.0938px + 421.6406px + 422.1875px + 422.7344px + 423.2812px + 423.8281px + 424.3750px + 424.9219px + 425.4688px + 426.0156px + 42.6562px + 426.5625px + 427.1094px + 427.6562px + 428.2031px + 428.7500px + 429.2969px + 429.8438px + 430.3906px + 430.9375px + 431.4844px + 43.2031px + 432.0312px + 432.5781px + 433.1250px + 433.6719px + 434.2188px + 434.7656px + 435.3125px + 435.8594px + 436.4062px + 436.9531px + 4.1016px + 4.3750px + 43.7500px + 437.5000px + 438.0469px + 438.5938px + 439.1406px + 439.6875px + 440.2344px + 440.7812px + 441.3281px + 441.8750px + 442.4219px + 44.2969px + 442.9688px + 443.5156px + 444.0625px + 444.6094px + 445.1562px + 445.7031px + 446.2500px + 446.7969px + 447.3438px + 447.8906px + 44.8438px + 448.4375px + 448.9844px + 449.5312px + 450.0781px + 450.6250px + 451.1719px + 451.7188px + 452.2656px + 452.8125px + 453.3594px + 45.3906px + 453.9062px + 454.4531px + 455.0000px + 455.5469px + 456.0938px + 456.6406px + 457.1875px + 457.7344px + 458.2812px + 458.8281px + 45.9375px + 459.3750px + 459.9219px + 460.4688px + 461.0156px + 461.5625px + 462.1094px + 462.6562px + 463.2031px + 463.7500px + 464.2969px + 46.4844px + 464.8438px + 465.3906px + 465.9375px + 466.4844px + 467.0312px + 467.5781px + 468.1250px + 468.6719px + 469.2188px + 469.7656px + 47.0312px + 470.3125px + 470.8594px + 471.4062px + 471.9531px + 472.5000px + 473.0469px + 473.5938px + 474.1406px + 474.6875px + 475.2344px + 47.5781px + 475.7812px + 476.3281px + 476.8750px + 477.4219px + 477.9688px + 478.5156px + 479.0625px + 479.6094px + 480.1562px + 480.7031px + 48.1250px + 481.2500px + 481.7969px + 482.3438px + 482.8906px + 483.4375px + 483.9844px + 484.5312px + 485.0781px + 485.6250px + 486.1719px + 48.6719px + 486.7188px + 487.2656px + 487.8125px + 488.3594px + 488.9062px + 489.4531px + 490.0000px + 490.5469px + 491.0938px + 491.6406px + 4.9219px + 49.2188px + 492.1875px + 492.7344px + 493.2812px + 493.8281px + 494.3750px + 494.9219px + 495.4688px + 496.0156px + 496.5625px + 497.1094px + 49.7656px + 497.6562px + 498.2031px + 498.7500px + 499.2969px + 499.8438px + 500.3906px + 500.9375px + 501.4844px + 502.0312px + 502.5781px + 50.3125px + 503.1250px + 503.6719px + 504.2188px + 504.7656px + 505.3125px + 505.8594px + 506.4062px + 506.9531px + 507.5000px + 508.0469px + 50.8594px + 508.5938px + 509.1406px + 509.6875px + 510.2344px + 510.7812px + 511.3281px + 511.8750px + 512.4219px + 512.9688px + 513.5156px + 51.4062px + 514.0625px + 514.6094px + 515.1562px + 515.7031px + 516.2500px + 516.7969px + 517.3438px + 517.8906px + 518.4375px + 518.9844px + 51.9531px + 519.5312px + 520.0781px + 520.6250px + 521.1719px + 521.7188px + 522.2656px + 522.8125px + 523.3594px + 523.9062px + 524.4531px + 52.5000px + 525.0000px + 525.5469px + 526.0938px + 526.6406px + 527.1875px + 527.7344px + 528.2812px + 528.8281px + 529.3750px + 529.9219px + 53.0469px + 530.4688px + 531.0156px + 531.5625px + 532.1094px + 532.6562px + 533.2031px + 533.7500px + 534.2969px + 534.8438px + 535.3906px + 53.5938px + 535.9375px + 536.4844px + 537.0312px + 537.5781px + 538.1250px + 538.6719px + 539.2188px + 539.7656px + 540.3125px + 540.8594px + 54.1406px + 541.4062px + 541.9531px + 542.5000px + 543.0469px + 543.5938px + 544.1406px + 544.6875px + 545.2344px + 545.7812px + 546.3281px + -0.5469px + -5.4688px + -6.5625px + -1.0938px + -10.9375px + -16.4062px + -2.7344px + -32.8125px + -4.3750px + 5.4688px + 6.0156px + 6.5625px + 7.1094px + 7.6562px + 8.2031px + 8.7500px + 9.2969px + 9.8438px + 10.3906px + 10.9375px + 11.4844px + 12.0312px + 12.5781px + 13.1250px + 13.6719px + 15.3125px + 16.4062px + 17.5000px + 18.5938px + 19.6875px + 20.7812px + 21.8750px + 22.9688px + 26.2500px + 3.2812px + 3.8281px + 4.3750px + 4.9219px + mogo-module-guide-agreement + 结束 + 进入首页 + 下一步 + 左滑了解更多 + 我们希望让您的出行更加安全高效,更多功能等着你去发现,快去体验体验吧 + 更多设置,在左上角的设置功能中,点击右下角的分享,可以把路况分享给其他车友,或者直接唤醒小智说,上报路况 + 这里是事件汇总,您可以查看您参与的事件和您的分享记录 + 欢迎使用’蘑菇车联‘,您下次可以直接对我说,打开’蘑菇车联‘来直接进入应用,点击左下方按钮进行摄像头设置 + 这里是道路信息显示,点击后可查看事件详情 + 左边是道路事件的播报,点击右边地图上的事件标示可以查看事件详情,或者直接唤醒小智说,中关村附近堵不堵,来查询目的地周围路况 + \ No newline at end of file diff --git a/modules/mogo-module-guide/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt b/modules/mogo-module-guide/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt new file mode 100644 index 0000000000..612fecea21 --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt @@ -0,0 +1,3223 @@ +com.mogo.module.guide +anim abc_fade_in +anim abc_fade_out +anim abc_grow_fade_in_from_bottom +anim abc_popup_enter +anim abc_popup_exit +anim abc_shrink_fade_out_from_bottom +anim abc_slide_in_bottom +anim abc_slide_in_top +anim abc_slide_out_bottom +anim abc_slide_out_top +anim abc_tooltip_enter +anim abc_tooltip_exit +anim btn_checkbox_to_checked_box_inner_merged_animation +anim btn_checkbox_to_checked_box_outer_merged_animation +anim btn_checkbox_to_checked_icon_null_animation +anim btn_checkbox_to_unchecked_box_inner_merged_animation +anim btn_checkbox_to_unchecked_check_path_merged_animation +anim btn_checkbox_to_unchecked_icon_null_animation +anim btn_radio_to_off_mtrl_dot_group_animation +anim btn_radio_to_off_mtrl_ring_outer_animation +anim btn_radio_to_off_mtrl_ring_outer_path_animation +anim btn_radio_to_on_mtrl_dot_group_animation +anim btn_radio_to_on_mtrl_ring_outer_animation +anim btn_radio_to_on_mtrl_ring_outer_path_animation +attr OtherHeartImg +attr actionBarDivider +attr actionBarItemBackground +attr actionBarPopupTheme +attr actionBarSize +attr actionBarSplitStyle +attr actionBarStyle +attr actionBarTabBarStyle +attr actionBarTabStyle +attr actionBarTabTextStyle +attr actionBarTheme +attr actionBarWidgetTheme +attr actionButtonStyle +attr actionDropDownStyle +attr actionLayout +attr actionMenuTextAppearance +attr actionMenuTextColor +attr actionModeBackground +attr actionModeCloseButtonStyle +attr actionModeCloseDrawable +attr actionModeCopyDrawable +attr actionModeCutDrawable +attr actionModeFindDrawable +attr actionModePasteDrawable +attr actionModePopupWindowStyle +attr actionModeSelectAllDrawable +attr actionModeShareDrawable +attr actionModeSplitBackground +attr actionModeStyle +attr actionModeWebSearchDrawable +attr actionOverflowButtonStyle +attr actionOverflowMenuStyle +attr actionProviderClass +attr actionViewClass +attr activityChooserViewStyle +attr actualImageResource +attr actualImageScaleType +attr actualImageUri +attr alertDialogButtonGroupStyle +attr alertDialogCenterButtons +attr alertDialogStyle +attr alertDialogTheme +attr allowStacking +attr alpha +attr alphabeticModifiers +attr arrowHeadLength +attr arrowShaftLength +attr autoCompleteTextViewStyle +attr autoSizeMaxTextSize +attr autoSizeMinTextSize +attr autoSizePresetSizes +attr autoSizeStepGranularity +attr autoSizeTextType +attr background +attr backgroundImage +attr backgroundSplit +attr backgroundStacked +attr backgroundTint +attr backgroundTintMode +attr barLength +attr barrierAllowsGoneWidgets +attr barrierDirection +attr borderlessButtonStyle +attr btmText +attr btmTextSize +attr buttonBarButtonStyle +attr buttonBarNegativeButtonStyle +attr buttonBarNeutralButtonStyle +attr buttonBarPositiveButtonStyle +attr buttonBarStyle +attr buttonCompat +attr buttonGravity +attr buttonIconDimen +attr buttonPanelSideLayout +attr buttonStyle +attr buttonStyleSmall +attr buttonTint +attr buttonTintMode +attr chainUseRtl +attr checkboxStyle +attr checkedTextViewStyle +attr civ_border_color +attr civ_border_overlay +attr civ_border_width +attr civ_fill_color +attr clickable +attr closeIcon +attr closeItemLayout +attr collapseContentDescription +attr collapseIcon +attr color +attr colorAccent +attr colorBackgroundFloating +attr colorButtonNormal +attr colorControlActivated +attr colorControlHighlight +attr colorControlNormal +attr colorError +attr colorPrimary +attr colorPrimaryDark +attr colorSwitchThumbNormal +attr commitIcon +attr constraintSet +attr constraint_referenced_ids +attr content +attr contentDescription +attr contentInsetEnd +attr contentInsetEndWithActions +attr contentInsetLeft +attr contentInsetRight +attr contentInsetStart +attr contentInsetStartWithNavigation +attr controlBackground +attr coordinatorLayoutStyle +attr customNavigationLayout +attr defaultQueryHint +attr dialogCornerRadius +attr dialogPreferredPadding +attr dialogTheme +attr displayOptions +attr divider +attr dividerHorizontal +attr dividerPadding +attr dividerVertical +attr drawableBottomCompat +attr drawableEndCompat +attr drawableLeftCompat +attr drawableRightCompat +attr drawableSize +attr drawableStartCompat +attr drawableTint +attr drawableTintMode +attr drawableTopCompat +attr drawerArrowStyle +attr dropDownListViewStyle +attr dropdownListPreferredItemHeight +attr dsv_orientation +attr editTextBackground +attr editTextColor +attr editTextStyle +attr elenmentCount +attr elenmentEmpty +attr elenmentFill +attr elenmentHarf +attr elenmentHeight +attr elenmentPadding +attr elenmentStep +attr elenmentWidth +attr elevation +attr emptyVisibility +attr expandActivityOverflowButtonDrawable +attr fadeDuration +attr failureImage +attr failureImageScaleType +attr fastScrollEnabled +attr fastScrollHorizontalThumbDrawable +attr fastScrollHorizontalTrackDrawable +attr fastScrollVerticalThumbDrawable +attr fastScrollVerticalTrackDrawable +attr firstBaselineToTopHeight +attr font +attr fontFamily +attr fontProviderAuthority +attr fontProviderCerts +attr fontProviderFetchStrategy +attr fontProviderFetchTimeout +attr fontProviderPackage +attr fontProviderQuery +attr fontStyle +attr fontVariationSettings +attr fontWeight +attr gapBetweenBars +attr goIcon +attr height +attr hideOnContentScroll +attr homeAsUpIndicator +attr homeLayout +attr icon +attr iconTint +attr iconTintMode +attr iconifiedByDefault +attr imageButtonStyle +attr indeterminateProgressStyle +attr initialActivityCount +attr isLightTheme +attr itemPadding +attr keylines +attr lastBaselineToBottomHeight +attr layout +attr layoutManager +attr layout_anchor +attr layout_anchorGravity +attr layout_behavior +attr layout_constrainedHeight +attr layout_constrainedWidth +attr layout_constraintBaseline_creator +attr layout_constraintBaseline_toBaselineOf +attr layout_constraintBottom_creator +attr layout_constraintBottom_toBottomOf +attr layout_constraintBottom_toTopOf +attr layout_constraintCircle +attr layout_constraintCircleAngle +attr layout_constraintCircleRadius +attr layout_constraintDimensionRatio +attr layout_constraintEnd_toEndOf +attr layout_constraintEnd_toStartOf +attr layout_constraintGuide_begin +attr layout_constraintGuide_end +attr layout_constraintGuide_percent +attr layout_constraintHeight_default +attr layout_constraintHeight_max +attr layout_constraintHeight_min +attr layout_constraintHeight_percent +attr layout_constraintHorizontal_bias +attr layout_constraintHorizontal_chainStyle +attr layout_constraintHorizontal_weight +attr layout_constraintLeft_creator +attr layout_constraintLeft_toLeftOf +attr layout_constraintLeft_toRightOf +attr layout_constraintRight_creator +attr layout_constraintRight_toLeftOf +attr layout_constraintRight_toRightOf +attr layout_constraintStart_toEndOf +attr layout_constraintStart_toStartOf +attr layout_constraintTop_creator +attr layout_constraintTop_toBottomOf +attr layout_constraintTop_toTopOf +attr layout_constraintVertical_bias +attr layout_constraintVertical_chainStyle +attr layout_constraintVertical_weight +attr layout_constraintWidth_default +attr layout_constraintWidth_max +attr layout_constraintWidth_min +attr layout_constraintWidth_percent +attr layout_dodgeInsetEdges +attr layout_editor_absoluteX +attr layout_editor_absoluteY +attr layout_goneMarginBottom +attr layout_goneMarginEnd +attr layout_goneMarginLeft +attr layout_goneMarginRight +attr layout_goneMarginStart +attr layout_goneMarginTop +attr layout_insetEdge +attr layout_keyline +attr layout_optimizationLevel +attr lineHeight +attr listChoiceBackgroundIndicator +attr listChoiceIndicatorMultipleAnimated +attr listChoiceIndicatorSingleAnimated +attr listDividerAlertDialog +attr listItemLayout +attr listLayout +attr listMenuViewStyle +attr listPopupWindowStyle +attr listPreferredItemHeight +attr listPreferredItemHeightLarge +attr listPreferredItemHeightSmall +attr listPreferredItemPaddingEnd +attr listPreferredItemPaddingLeft +attr listPreferredItemPaddingRight +attr listPreferredItemPaddingStart +attr logo +attr logoDescription +attr maskColor +attr maxButtonHeight +attr measureWithLargestChild +attr menu +attr miv_blurRadius +attr miv_borderColor +attr miv_bottomLeftRadius +attr miv_bottomRightRadius +attr miv_failureHolder +attr miv_isBlur +attr miv_overlayImageId +attr miv_placeHolder +attr miv_radius +attr miv_shape +attr miv_shapeBorderWidth +attr miv_topLeftRadius +attr miv_topRightRadius +attr multiChoiceItemLayout +attr navigationContentDescription +attr navigationIcon +attr navigationMode +attr numericModifiers +attr overlapAnchor +attr overlayImage +attr paddingBottomNoButtons +attr paddingEnd +attr paddingStart +attr paddingTopNoTitle +attr panelBackground +attr panelMenuListTheme +attr panelMenuListWidth +attr placeholderImage +attr placeholderImageScaleType +attr popupMenuStyle +attr popupTheme +attr popupWindowStyle +attr preserveIconSpacing +attr pressedStateOverlayImage +attr progressBarAutoRotateInterval +attr progressBarImage +attr progressBarImageScaleType +attr progressBarPadding +attr progressBarStyle +attr queryBackground +attr queryHint +attr radioButtonStyle +attr ratingBarStyle +attr ratingBarStyleIndicator +attr ratingBarStyleSmall +attr recyclerViewStyle +attr retryImage +attr retryImageScaleType +attr reverseLayout +attr roundAsCircle +attr roundBottomEnd +attr roundBottomLeft +attr roundBottomRight +attr roundBottomStart +attr roundLayoutRadius +attr roundTopEnd +attr roundTopLeft +attr roundTopRight +attr roundTopStart +attr roundWithOverlayColor +attr roundedCornerRadius +attr roundingBorderColor +attr roundingBorderPadding +attr roundingBorderWidth +attr scanline +attr searchHintIcon +attr searchIcon +attr searchViewStyle +attr seekBarStyle +attr selectableItemBackground +attr selectableItemBackgroundBorderless +attr showAsAction +attr showDividers +attr showRectLine +attr showText +attr showTitle +attr singleChoiceItemLayout +attr spanCount +attr spinBars +attr spinnerDropDownItemStyle +attr spinnerStyle +attr splitTrack +attr srcCompat +attr stackFromEnd +attr state_above_anchor +attr statusBarBackground +attr stepSize +attr subMenuArrow +attr submitBackground +attr subtitle +attr subtitleTextAppearance +attr subtitleTextColor +attr subtitleTextStyle +attr suggestionRowLayout +attr switchMinWidth +attr switchPadding +attr switchStyle +attr switchTextAppearance +attr textAllCaps +attr textAppearanceLargePopupMenu +attr textAppearanceListItem +attr textAppearanceListItemSecondary +attr textAppearanceListItemSmall +attr textAppearancePopupMenuHeader +attr textAppearanceSearchResultSubtitle +attr textAppearanceSearchResultTitle +attr textAppearanceSmallPopupMenu +attr textColorAlertDialogListItem +attr textColorSearchUrl +attr textLocale +attr theme +attr thickness +attr thumbTextPadding +attr thumbTint +attr thumbTintMode +attr tickMark +attr tickMarkTint +attr tickMarkTintMode +attr tint +attr tintMode +attr title +attr titleMargin +attr titleMarginBottom +attr titleMarginEnd +attr titleMarginStart +attr titleMarginTop +attr titleMargins +attr titleTextAppearance +attr titleTextColor +attr titleTextStyle +attr toolbarNavigationButtonStyle +attr toolbarStyle +attr tooltipForegroundColor +attr tooltipFrameBackground +attr tooltipText +attr topText +attr topTextSize +attr track +attr trackTint +attr trackTintMode +attr triAngleColor +attr triAngleLength +attr triAngleWidth +attr ttcIndex +attr viewAspectRatio +attr viewInflaterClass +attr voiceIcon +attr windowActionBar +attr windowActionBarOverlay +attr windowActionModeOverlay +attr windowFixedHeightMajor +attr windowFixedHeightMinor +attr windowFixedWidthMajor +attr windowFixedWidthMinor +attr windowMinWidthMajor +attr windowMinWidthMinor +attr windowNoTitle +bool abc_action_bar_embed_tabs +bool abc_allow_stacked_button_bar +bool abc_config_actionMenuItemAllCaps +bool abc_config_showMenuShortcutsWhenKeyboardPresent +color abc_background_cache_hint_selector_material_dark +color abc_background_cache_hint_selector_material_light +color abc_btn_colored_borderless_text_material +color abc_btn_colored_text_material +color abc_color_highlight_material +color abc_hint_foreground_material_dark +color abc_hint_foreground_material_light +color abc_input_method_navigation_guard +color abc_primary_text_disable_only_material_dark +color abc_primary_text_disable_only_material_light +color abc_primary_text_material_dark +color abc_primary_text_material_light +color abc_search_url_text +color abc_search_url_text_normal +color abc_search_url_text_pressed +color abc_search_url_text_selected +color abc_secondary_text_material_dark +color abc_secondary_text_material_light +color abc_tint_btn_checkable +color abc_tint_default +color abc_tint_edittext +color abc_tint_seek_thumb +color abc_tint_spinner +color abc_tint_switch_track +color accent_material_dark +color accent_material_light +color androidx_core_ripple_material_light +color androidx_core_secondary_text_default_material_light +color background_floating_material_dark +color background_floating_material_light +color background_material_dark +color background_material_light +color blue +color bright_foreground_disabled_material_dark +color bright_foreground_disabled_material_light +color bright_foreground_inverse_material_dark +color bright_foreground_inverse_material_light +color bright_foreground_material_dark +color bright_foreground_material_light +color button_material_dark +color button_material_light +color colorPrimaryDark +color color_pad_bg +color dim_foreground_disabled_material_dark +color dim_foreground_disabled_material_light +color dim_foreground_material_dark +color dim_foreground_material_light +color error_color_material +color error_color_material_dark +color error_color_material_light +color foreground_material_dark +color foreground_material_light +color green +color highlighted_text_material_dark +color highlighted_text_material_light +color material_blue_grey_800 +color material_blue_grey_900 +color material_blue_grey_950 +color material_deep_teal_200 +color material_deep_teal_500 +color material_grey_100 +color material_grey_300 +color material_grey_50 +color material_grey_600 +color material_grey_800 +color material_grey_850 +color material_grey_900 +color module_authorize_affirm_text +color module_authorize_color +color module_authorize_loading_text +color module_authorize_text +color module_commons_FFF_333 +color module_commons_dlg_bkg +color module_commons_wm_dialog_text_textColor +color module_guide_blue_3B91FF +color module_guide_indicator_dark +color module_guide_indicator_white +color module_service_info_window_content_textColor +color module_services_dispatch_affirm_bg +color module_services_dispatch_bg +color module_services_dispatch_cars_background +color module_services_dispatch_cars_cancel +color module_services_dispatch_cars_count_down_bg +color module_services_dispatch_cars_count_down_txt +color module_services_dispatch_cars_line +color module_services_dispatch_cars_text_loc +color module_services_empty_tip_textColor +color module_services_error_textColor +color module_services_id_panel_item_avatar_border_color +color module_services_load_strategy_textColor +color module_services_online_car_panel_title_textColor +color module_services_panel_item_detail_textColor +color module_services_panel_item_distance_textColor +color module_services_panel_item_nickname_textColor +color modules_commons_toast_text_color +color notification_action_color_filter +color notification_icon_bg_color +color notification_material_background_media_default_color +color possible_result_points +color primary_dark_material_dark +color primary_dark_material_light +color primary_material_dark +color primary_material_light +color primary_text_default_material_dark +color primary_text_default_material_light +color primary_text_disabled_material_dark +color primary_text_disabled_material_light +color result_points +color result_view +color ripple_material_dark +color ripple_material_light +color secondary_text_default_material_dark +color secondary_text_default_material_light +color secondary_text_disabled_material_dark +color secondary_text_disabled_material_light +color switch_thumb_disabled_material_dark +color switch_thumb_disabled_material_light +color switch_thumb_material_dark +color switch_thumb_material_light +color switch_thumb_normal_material_dark +color switch_thumb_normal_material_light +color tooltip_background_dark +color tooltip_background_light +color transparent +color v2x_FFF_666 +color viewfinder_laser +color viewfinder_mask +color white +dimen abc_action_bar_content_inset_material +dimen abc_action_bar_content_inset_with_nav +dimen abc_action_bar_default_height_material +dimen abc_action_bar_default_padding_end_material +dimen abc_action_bar_default_padding_start_material +dimen abc_action_bar_elevation_material +dimen abc_action_bar_icon_vertical_padding_material +dimen abc_action_bar_overflow_padding_end_material +dimen abc_action_bar_overflow_padding_start_material +dimen abc_action_bar_progress_bar_size +dimen abc_action_bar_stacked_max_height +dimen abc_action_bar_stacked_tab_max_width +dimen abc_action_bar_subtitle_bottom_margin_material +dimen abc_action_bar_subtitle_top_margin_material +dimen abc_action_button_min_height_material +dimen abc_action_button_min_width_material +dimen abc_action_button_min_width_overflow_material +dimen abc_alert_dialog_button_bar_height +dimen abc_alert_dialog_button_dimen +dimen abc_button_inset_horizontal_material +dimen abc_button_inset_vertical_material +dimen abc_button_padding_horizontal_material +dimen abc_button_padding_vertical_material +dimen abc_cascading_menus_min_smallest_width +dimen abc_config_prefDialogWidth +dimen abc_control_corner_material +dimen abc_control_inset_material +dimen abc_control_padding_material +dimen abc_dialog_corner_radius_material +dimen abc_dialog_fixed_height_major +dimen abc_dialog_fixed_height_minor +dimen abc_dialog_fixed_width_major +dimen abc_dialog_fixed_width_minor +dimen abc_dialog_list_padding_bottom_no_buttons +dimen abc_dialog_list_padding_top_no_title +dimen abc_dialog_min_width_major +dimen abc_dialog_min_width_minor +dimen abc_dialog_padding_material +dimen abc_dialog_padding_top_material +dimen abc_dialog_title_divider_material +dimen abc_disabled_alpha_material_dark +dimen abc_disabled_alpha_material_light +dimen abc_dropdownitem_icon_width +dimen abc_dropdownitem_text_padding_left +dimen abc_dropdownitem_text_padding_right +dimen abc_edit_text_inset_bottom_material +dimen abc_edit_text_inset_horizontal_material +dimen abc_edit_text_inset_top_material +dimen abc_floating_window_z +dimen abc_list_item_height_large_material +dimen abc_list_item_height_material +dimen abc_list_item_height_small_material +dimen abc_list_item_padding_horizontal_material +dimen abc_panel_menu_list_width +dimen abc_progress_bar_height_material +dimen abc_search_view_preferred_height +dimen abc_search_view_preferred_width +dimen abc_seekbar_track_background_height_material +dimen abc_seekbar_track_progress_height_material +dimen abc_select_dialog_padding_start_material +dimen abc_switch_padding +dimen abc_text_size_body_1_material +dimen abc_text_size_body_2_material +dimen abc_text_size_button_material +dimen abc_text_size_caption_material +dimen abc_text_size_display_1_material +dimen abc_text_size_display_2_material +dimen abc_text_size_display_3_material +dimen abc_text_size_display_4_material +dimen abc_text_size_headline_material +dimen abc_text_size_large_material +dimen abc_text_size_medium_material +dimen abc_text_size_menu_header_material +dimen abc_text_size_menu_material +dimen abc_text_size_small_material +dimen abc_text_size_subhead_material +dimen abc_text_size_subtitle_material_toolbar +dimen abc_text_size_title_material +dimen abc_text_size_title_material_toolbar +dimen compat_button_inset_horizontal_material +dimen compat_button_inset_vertical_material +dimen compat_button_padding_horizontal_material +dimen compat_button_padding_vertical_material +dimen compat_control_corner_material +dimen compat_notification_large_icon_max_height +dimen compat_notification_large_icon_max_width +dimen disabled_alpha_material_dark +dimen disabled_alpha_material_light +dimen dp_0 +dimen dp_0_1 +dimen dp_0_5 +dimen dp_1 +dimen dp_10 +dimen dp_100 +dimen dp_1000 +dimen dp_101 +dimen dp_102 +dimen dp_103 +dimen dp_104 +dimen dp_104_5 +dimen dp_105 +dimen dp_106 +dimen dp_107 +dimen dp_108 +dimen dp_109 +dimen dp_11 +dimen dp_110 +dimen dp_111 +dimen dp_112 +dimen dp_113 +dimen dp_114 +dimen dp_115 +dimen dp_116 +dimen dp_117 +dimen dp_118 +dimen dp_119 +dimen dp_12 +dimen dp_120 +dimen dp_121 +dimen dp_122 +dimen dp_123 +dimen dp_124 +dimen dp_125 +dimen dp_126 +dimen dp_127 +dimen dp_128 +dimen dp_129 +dimen dp_13 +dimen dp_130 +dimen dp_1300 +dimen dp_131 +dimen dp_132 +dimen dp_133 +dimen dp_134 +dimen dp_134_5 +dimen dp_135 +dimen dp_136 +dimen dp_137 +dimen dp_138 +dimen dp_139 +dimen dp_14 +dimen dp_140 +dimen dp_141 +dimen dp_142 +dimen dp_143 +dimen dp_144 +dimen dp_145 +dimen dp_146 +dimen dp_147 +dimen dp_148 +dimen dp_149 +dimen dp_15 +dimen dp_150 +dimen dp_151 +dimen dp_152 +dimen dp_153 +dimen dp_154 +dimen dp_155 +dimen dp_156 +dimen dp_157 +dimen dp_158 +dimen dp_159 +dimen dp_16 +dimen dp_160 +dimen dp_161 +dimen dp_162 +dimen dp_163 +dimen dp_164 +dimen dp_165 +dimen dp_166 +dimen dp_167 +dimen dp_168 +dimen dp_169 +dimen dp_17 +dimen dp_170 +dimen dp_171 +dimen dp_172 +dimen dp_173 +dimen dp_174 +dimen dp_175 +dimen dp_176 +dimen dp_177 +dimen dp_178 +dimen dp_179 +dimen dp_18 +dimen dp_180 +dimen dp_181 +dimen dp_182 +dimen dp_183 +dimen dp_184 +dimen dp_185 +dimen dp_186 +dimen dp_187 +dimen dp_188 +dimen dp_189 +dimen dp_19 +dimen dp_190 +dimen dp_191 +dimen dp_191_25 +dimen dp_192 +dimen dp_1920 +dimen dp_193 +dimen dp_194 +dimen dp_195 +dimen dp_196 +dimen dp_197 +dimen dp_198 +dimen dp_199 +dimen dp_1_5 +dimen dp_2 +dimen dp_20 +dimen dp_200 +dimen dp_201 +dimen dp_202 +dimen dp_203 +dimen dp_204 +dimen dp_205 +dimen dp_206 +dimen dp_207 +dimen dp_208 +dimen dp_209 +dimen dp_21 +dimen dp_210 +dimen dp_211 +dimen dp_212 +dimen dp_213 +dimen dp_214 +dimen dp_215 +dimen dp_216 +dimen dp_217 +dimen dp_218 +dimen dp_219 +dimen dp_22 +dimen dp_220 +dimen dp_221 +dimen dp_222 +dimen dp_223 +dimen dp_224 +dimen dp_225 +dimen dp_226 +dimen dp_227 +dimen dp_228 +dimen dp_229 +dimen dp_23 +dimen dp_230 +dimen dp_231 +dimen dp_232 +dimen dp_233 +dimen dp_234 +dimen dp_235 +dimen dp_236 +dimen dp_237 +dimen dp_238 +dimen dp_239 +dimen dp_24 +dimen dp_240 +dimen dp_241 +dimen dp_242 +dimen dp_243 +dimen dp_244 +dimen dp_245 +dimen dp_246 +dimen dp_247 +dimen dp_248 +dimen dp_249 +dimen dp_25 +dimen dp_250 +dimen dp_251 +dimen dp_252 +dimen dp_253 +dimen dp_254 +dimen dp_255 +dimen dp_256 +dimen dp_257 +dimen dp_258 +dimen dp_259 +dimen dp_26 +dimen dp_260 +dimen dp_261 +dimen dp_262 +dimen dp_263 +dimen dp_264 +dimen dp_265 +dimen dp_266 +dimen dp_267 +dimen dp_268 +dimen dp_269 +dimen dp_27 +dimen dp_270 +dimen dp_271 +dimen dp_272 +dimen dp_273 +dimen dp_274 +dimen dp_275 +dimen dp_276 +dimen dp_277 +dimen dp_278 +dimen dp_279 +dimen dp_28 +dimen dp_280 +dimen dp_281 +dimen dp_282 +dimen dp_283 +dimen dp_284 +dimen dp_285 +dimen dp_286 +dimen dp_287 +dimen dp_288 +dimen dp_289 +dimen dp_29 +dimen dp_290 +dimen dp_291 +dimen dp_292 +dimen dp_293 +dimen dp_294 +dimen dp_295 +dimen dp_296 +dimen dp_297 +dimen dp_298 +dimen dp_299 +dimen dp_2_5 +dimen dp_3 +dimen dp_30 +dimen dp_300 +dimen dp_301 +dimen dp_302 +dimen dp_303 +dimen dp_304 +dimen dp_305 +dimen dp_306 +dimen dp_307 +dimen dp_308 +dimen dp_309 +dimen dp_31 +dimen dp_310 +dimen dp_311 +dimen dp_312 +dimen dp_313 +dimen dp_314 +dimen dp_315 +dimen dp_316 +dimen dp_317 +dimen dp_318 +dimen dp_319 +dimen dp_32 +dimen dp_320 +dimen dp_321 +dimen dp_322 +dimen dp_323 +dimen dp_324 +dimen dp_325 +dimen dp_326 +dimen dp_327 +dimen dp_328 +dimen dp_329 +dimen dp_33 +dimen dp_330 +dimen dp_331 +dimen dp_332 +dimen dp_333 +dimen dp_334 +dimen dp_335 +dimen dp_336 +dimen dp_337 +dimen dp_338 +dimen dp_339 +dimen dp_34 +dimen dp_340 +dimen dp_341 +dimen dp_342 +dimen dp_343 +dimen dp_344 +dimen dp_345 +dimen dp_346 +dimen dp_347 +dimen dp_348 +dimen dp_349 +dimen dp_35 +dimen dp_350 +dimen dp_351 +dimen dp_352 +dimen dp_353 +dimen dp_354 +dimen dp_355 +dimen dp_356 +dimen dp_357 +dimen dp_358 +dimen dp_359 +dimen dp_36 +dimen dp_366 +dimen dp_367 +dimen dp_368 +dimen dp_369 +dimen dp_37 +dimen dp_370 +dimen dp_371 +dimen dp_372 +dimen dp_373 +dimen dp_374 +dimen dp_375 +dimen dp_376 +dimen dp_377 +dimen dp_378 +dimen dp_379 +dimen dp_38 +dimen dp_380 +dimen dp_381 +dimen dp_382 +dimen dp_383 +dimen dp_384 +dimen dp_385 +dimen dp_386 +dimen dp_387 +dimen dp_388 +dimen dp_389 +dimen dp_39 +dimen dp_390 +dimen dp_391 +dimen dp_392 +dimen dp_393 +dimen dp_394 +dimen dp_395 +dimen dp_396 +dimen dp_397 +dimen dp_398 +dimen dp_399 +dimen dp_3_5 +dimen dp_4 +dimen dp_40 +dimen dp_400 +dimen dp_401 +dimen dp_402 +dimen dp_403 +dimen dp_404 +dimen dp_405 +dimen dp_406 +dimen dp_407 +dimen dp_408 +dimen dp_409 +dimen dp_41 +dimen dp_410 +dimen dp_411 +dimen dp_412 +dimen dp_413 +dimen dp_414 +dimen dp_415 +dimen dp_416 +dimen dp_417 +dimen dp_418 +dimen dp_419 +dimen dp_42 +dimen dp_420 +dimen dp_421 +dimen dp_422 +dimen dp_423 +dimen dp_424 +dimen dp_425 +dimen dp_426 +dimen dp_427 +dimen dp_428 +dimen dp_429 +dimen dp_43 +dimen dp_430 +dimen dp_431 +dimen dp_432 +dimen dp_433 +dimen dp_434 +dimen dp_435 +dimen dp_436 +dimen dp_437 +dimen dp_438 +dimen dp_439 +dimen dp_44 +dimen dp_440 +dimen dp_441 +dimen dp_442 +dimen dp_443 +dimen dp_444 +dimen dp_445 +dimen dp_446 +dimen dp_447 +dimen dp_448 +dimen dp_449 +dimen dp_45 +dimen dp_450 +dimen dp_451 +dimen dp_452 +dimen dp_453 +dimen dp_454 +dimen dp_455 +dimen dp_456 +dimen dp_457 +dimen dp_458 +dimen dp_459 +dimen dp_46 +dimen dp_460 +dimen dp_461 +dimen dp_462 +dimen dp_463 +dimen dp_464 +dimen dp_465 +dimen dp_466 +dimen dp_467 +dimen dp_468 +dimen dp_469 +dimen dp_47 +dimen dp_470 +dimen dp_471 +dimen dp_472 +dimen dp_473 +dimen dp_474 +dimen dp_475 +dimen dp_476 +dimen dp_477 +dimen dp_478 +dimen dp_479 +dimen dp_48 +dimen dp_480 +dimen dp_481 +dimen dp_482 +dimen dp_483 +dimen dp_484 +dimen dp_485 +dimen dp_486 +dimen dp_487 +dimen dp_488 +dimen dp_489 +dimen dp_49 +dimen dp_490 +dimen dp_491 +dimen dp_492 +dimen dp_493 +dimen dp_494 +dimen dp_495 +dimen dp_496 +dimen dp_497 +dimen dp_498 +dimen dp_499 +dimen dp_4_5 +dimen dp_5 +dimen dp_50 +dimen dp_500 +dimen dp_501 +dimen dp_502 +dimen dp_503 +dimen dp_504 +dimen dp_505 +dimen dp_506 +dimen dp_507 +dimen dp_508 +dimen dp_509 +dimen dp_51 +dimen dp_510 +dimen dp_511 +dimen dp_512 +dimen dp_513 +dimen dp_514 +dimen dp_515 +dimen dp_516 +dimen dp_517 +dimen dp_518 +dimen dp_519 +dimen dp_52 +dimen dp_520 +dimen dp_521 +dimen dp_522 +dimen dp_523 +dimen dp_524 +dimen dp_525 +dimen dp_526 +dimen dp_527 +dimen dp_528 +dimen dp_529 +dimen dp_53 +dimen dp_530 +dimen dp_531 +dimen dp_532 +dimen dp_533 +dimen dp_534 +dimen dp_535 +dimen dp_536 +dimen dp_537 +dimen dp_538 +dimen dp_539 +dimen dp_54 +dimen dp_540 +dimen dp_541 +dimen dp_542 +dimen dp_543 +dimen dp_544 +dimen dp_545 +dimen dp_546 +dimen dp_547 +dimen dp_548 +dimen dp_549 +dimen dp_55 +dimen dp_550 +dimen dp_551 +dimen dp_552 +dimen dp_553 +dimen dp_554 +dimen dp_555 +dimen dp_556 +dimen dp_557 +dimen dp_558 +dimen dp_559 +dimen dp_56 +dimen dp_560 +dimen dp_561 +dimen dp_562 +dimen dp_563 +dimen dp_564 +dimen dp_565 +dimen dp_566 +dimen dp_567 +dimen dp_568 +dimen dp_569 +dimen dp_57 +dimen dp_570 +dimen dp_571 +dimen dp_572 +dimen dp_573 +dimen dp_574 +dimen dp_575 +dimen dp_576 +dimen dp_577 +dimen dp_578 +dimen dp_579 +dimen dp_58 +dimen dp_580 +dimen dp_581 +dimen dp_582 +dimen dp_583 +dimen dp_584 +dimen dp_585 +dimen dp_586 +dimen dp_587 +dimen dp_588 +dimen dp_589 +dimen dp_59 +dimen dp_590 +dimen dp_591 +dimen dp_592 +dimen dp_593 +dimen dp_594 +dimen dp_595 +dimen dp_596 +dimen dp_597 +dimen dp_598 +dimen dp_599 +dimen dp_6 +dimen dp_60 +dimen dp_600 +dimen dp_601 +dimen dp_602 +dimen dp_603 +dimen dp_604 +dimen dp_605 +dimen dp_606 +dimen dp_607 +dimen dp_608 +dimen dp_609 +dimen dp_61 +dimen dp_610 +dimen dp_611 +dimen dp_612 +dimen dp_613 +dimen dp_614 +dimen dp_615 +dimen dp_616 +dimen dp_617 +dimen dp_618 +dimen dp_619 +dimen dp_62 +dimen dp_620 +dimen dp_621 +dimen dp_622 +dimen dp_623 +dimen dp_624 +dimen dp_625 +dimen dp_626 +dimen dp_627 +dimen dp_628 +dimen dp_629 +dimen dp_63 +dimen dp_630 +dimen dp_631 +dimen dp_632 +dimen dp_633 +dimen dp_634 +dimen dp_635 +dimen dp_636 +dimen dp_637 +dimen dp_638 +dimen dp_639 +dimen dp_64 +dimen dp_640 +dimen dp_641 +dimen dp_642 +dimen dp_643 +dimen dp_644 +dimen dp_645 +dimen dp_646 +dimen dp_647 +dimen dp_648 +dimen dp_649 +dimen dp_65 +dimen dp_650 +dimen dp_651 +dimen dp_652 +dimen dp_653 +dimen dp_654 +dimen dp_655 +dimen dp_656 +dimen dp_657 +dimen dp_658 +dimen dp_659 +dimen dp_66 +dimen dp_660 +dimen dp_661 +dimen dp_662 +dimen dp_663 +dimen dp_664 +dimen dp_665 +dimen dp_666 +dimen dp_667 +dimen dp_668 +dimen dp_669 +dimen dp_67 +dimen dp_670 +dimen dp_671 +dimen dp_672 +dimen dp_673 +dimen dp_674 +dimen dp_675 +dimen dp_676 +dimen dp_677 +dimen dp_678 +dimen dp_679 +dimen dp_68 +dimen dp_680 +dimen dp_681 +dimen dp_682 +dimen dp_683 +dimen dp_684 +dimen dp_685 +dimen dp_686 +dimen dp_687 +dimen dp_688 +dimen dp_689 +dimen dp_69 +dimen dp_690 +dimen dp_691 +dimen dp_692 +dimen dp_693 +dimen dp_694 +dimen dp_695 +dimen dp_696 +dimen dp_697 +dimen dp_698 +dimen dp_699 +dimen dp_7 +dimen dp_70 +dimen dp_700 +dimen dp_701 +dimen dp_702 +dimen dp_703 +dimen dp_704 +dimen dp_705 +dimen dp_706 +dimen dp_707 +dimen dp_708 +dimen dp_709 +dimen dp_71 +dimen dp_710 +dimen dp_711 +dimen dp_712 +dimen dp_713 +dimen dp_714 +dimen dp_715 +dimen dp_716 +dimen dp_717 +dimen dp_718 +dimen dp_719 +dimen dp_72 +dimen dp_720 +dimen dp_721 +dimen dp_722 +dimen dp_723 +dimen dp_724 +dimen dp_725 +dimen dp_726 +dimen dp_727 +dimen dp_728 +dimen dp_729 +dimen dp_73 +dimen dp_730 +dimen dp_731 +dimen dp_732 +dimen dp_733 +dimen dp_734 +dimen dp_735 +dimen dp_736 +dimen dp_737 +dimen dp_738 +dimen dp_739 +dimen dp_74 +dimen dp_740 +dimen dp_741 +dimen dp_742 +dimen dp_743 +dimen dp_744 +dimen dp_745 +dimen dp_746 +dimen dp_747 +dimen dp_748 +dimen dp_749 +dimen dp_75 +dimen dp_750 +dimen dp_751 +dimen dp_752 +dimen dp_753 +dimen dp_754 +dimen dp_755 +dimen dp_756 +dimen dp_757 +dimen dp_758 +dimen dp_759 +dimen dp_76 +dimen dp_760 +dimen dp_761 +dimen dp_762 +dimen dp_763 +dimen dp_764 +dimen dp_765 +dimen dp_766 +dimen dp_767 +dimen dp_768 +dimen dp_769 +dimen dp_77 +dimen dp_770 +dimen dp_771 +dimen dp_772 +dimen dp_773 +dimen dp_774 +dimen dp_775 +dimen dp_776 +dimen dp_777 +dimen dp_778 +dimen dp_779 +dimen dp_78 +dimen dp_780 +dimen dp_781 +dimen dp_782 +dimen dp_783 +dimen dp_784 +dimen dp_785 +dimen dp_786 +dimen dp_787 +dimen dp_788 +dimen dp_789 +dimen dp_79 +dimen dp_790 +dimen dp_791 +dimen dp_792 +dimen dp_793 +dimen dp_794 +dimen dp_795 +dimen dp_796 +dimen dp_797 +dimen dp_798 +dimen dp_799 +dimen dp_7_5 +dimen dp_8 +dimen dp_80 +dimen dp_800 +dimen dp_801 +dimen dp_802 +dimen dp_803 +dimen dp_804 +dimen dp_805 +dimen dp_806 +dimen dp_807 +dimen dp_808 +dimen dp_809 +dimen dp_81 +dimen dp_810 +dimen dp_811 +dimen dp_812 +dimen dp_813 +dimen dp_814 +dimen dp_815 +dimen dp_816 +dimen dp_817 +dimen dp_818 +dimen dp_819 +dimen dp_82 +dimen dp_820 +dimen dp_821 +dimen dp_822 +dimen dp_823 +dimen dp_824 +dimen dp_825 +dimen dp_826 +dimen dp_827 +dimen dp_828 +dimen dp_829 +dimen dp_83 +dimen dp_830 +dimen dp_831 +dimen dp_832 +dimen dp_833 +dimen dp_834 +dimen dp_835 +dimen dp_836 +dimen dp_837 +dimen dp_838 +dimen dp_839 +dimen dp_84 +dimen dp_840 +dimen dp_841 +dimen dp_842 +dimen dp_843 +dimen dp_844 +dimen dp_845 +dimen dp_846 +dimen dp_847 +dimen dp_848 +dimen dp_849 +dimen dp_85 +dimen dp_850 +dimen dp_851 +dimen dp_852 +dimen dp_853 +dimen dp_854 +dimen dp_855 +dimen dp_856 +dimen dp_857 +dimen dp_858 +dimen dp_859 +dimen dp_86 +dimen dp_860 +dimen dp_861 +dimen dp_862 +dimen dp_863 +dimen dp_864 +dimen dp_865 +dimen dp_866 +dimen dp_867 +dimen dp_868 +dimen dp_869 +dimen dp_87 +dimen dp_870 +dimen dp_871 +dimen dp_872 +dimen dp_873 +dimen dp_874 +dimen dp_875 +dimen dp_876 +dimen dp_877 +dimen dp_878 +dimen dp_879 +dimen dp_88 +dimen dp_880 +dimen dp_881 +dimen dp_882 +dimen dp_883 +dimen dp_884 +dimen dp_885 +dimen dp_886 +dimen dp_887 +dimen dp_888 +dimen dp_889 +dimen dp_89 +dimen dp_890 +dimen dp_891 +dimen dp_892 +dimen dp_893 +dimen dp_894 +dimen dp_895 +dimen dp_896 +dimen dp_897 +dimen dp_898 +dimen dp_899 +dimen dp_9 +dimen dp_90 +dimen dp_900 +dimen dp_901 +dimen dp_902 +dimen dp_903 +dimen dp_904 +dimen dp_905 +dimen dp_906 +dimen dp_907 +dimen dp_908 +dimen dp_909 +dimen dp_91 +dimen dp_910 +dimen dp_911 +dimen dp_912 +dimen dp_913 +dimen dp_914 +dimen dp_915 +dimen dp_916 +dimen dp_917 +dimen dp_918 +dimen dp_919 +dimen dp_92 +dimen dp_920 +dimen dp_921 +dimen dp_922 +dimen dp_923 +dimen dp_924 +dimen dp_925 +dimen dp_926 +dimen dp_927 +dimen dp_928 +dimen dp_929 +dimen dp_93 +dimen dp_930 +dimen dp_931 +dimen dp_932 +dimen dp_933 +dimen dp_934 +dimen dp_935 +dimen dp_936 +dimen dp_937 +dimen dp_938 +dimen dp_939 +dimen dp_94 +dimen dp_940 +dimen dp_941 +dimen dp_942 +dimen dp_943 +dimen dp_944 +dimen dp_945 +dimen dp_946 +dimen dp_947 +dimen dp_948 +dimen dp_949 +dimen dp_95 +dimen dp_950 +dimen dp_951 +dimen dp_952 +dimen dp_953 +dimen dp_954 +dimen dp_955 +dimen dp_956 +dimen dp_957 +dimen dp_958 +dimen dp_959 +dimen dp_96 +dimen dp_960 +dimen dp_961 +dimen dp_962 +dimen dp_963 +dimen dp_964 +dimen dp_965 +dimen dp_966 +dimen dp_967 +dimen dp_968 +dimen dp_969 +dimen dp_97 +dimen dp_970 +dimen dp_971 +dimen dp_972 +dimen dp_973 +dimen dp_974 +dimen dp_975 +dimen dp_976 +dimen dp_977 +dimen dp_978 +dimen dp_979 +dimen dp_98 +dimen dp_980 +dimen dp_981 +dimen dp_982 +dimen dp_983 +dimen dp_984 +dimen dp_985 +dimen dp_986 +dimen dp_987 +dimen dp_988 +dimen dp_989 +dimen dp_99 +dimen dp_990 +dimen dp_991 +dimen dp_992 +dimen dp_993 +dimen dp_994 +dimen dp_995 +dimen dp_996 +dimen dp_997 +dimen dp_998 +dimen dp_999 +dimen dp_m_1 +dimen dp_m_10 +dimen dp_m_12 +dimen dp_m_2 +dimen dp_m_20 +dimen dp_m_30 +dimen dp_m_5 +dimen dp_m_60 +dimen dp_m_8 +dimen fastscroll_default_thickness +dimen fastscroll_margin +dimen fastscroll_minimum_range +dimen heart_ratingbar_height +dimen heart_ratingbar_width +dimen highlight_alpha_material_colored +dimen highlight_alpha_material_dark +dimen highlight_alpha_material_light +dimen hint_alpha_material_dark +dimen hint_alpha_material_light +dimen hint_pressed_alpha_material_dark +dimen hint_pressed_alpha_material_light +dimen item_touch_helper_max_drag_scroll_per_frame +dimen item_touch_helper_swipe_escape_max_velocity +dimen item_touch_helper_swipe_escape_velocity +dimen modle_car_panel_call +dimen modle_car_panel_call_margin +dimen modle_car_panel_call_margin_left +dimen module_common_shadow_width +dimen module_common_shadow_width_pos +dimen module_commons_toast_icon_width +dimen module_commons_toast_marginBottom +dimen module_commons_toast_marginLeft +dimen module_commons_toast_marginRight +dimen module_commons_toast_marginTop +dimen module_commons_toast_maxWidth +dimen module_commons_toast_minWidth +dimen module_commons_toast_space_between_icon_and_msg +dimen module_commons_toast_textSize +dimen module_commons_toast_with_left_drawable_marginBottom +dimen module_commons_toast_with_left_drawable_marginLeft +dimen module_commons_toast_with_left_drawable_marginTop +dimen module_commons_toast_y_offset +dimen module_map_amap_my_location_bg_size +dimen module_map_amap_my_location_icon_height +dimen module_map_amap_my_location_icon_width +dimen module_service_content_minWidth +dimen module_service_content_textSize +dimen module_service_id_marker_content_paddingRight +dimen module_service_id_marker_content_paddingRight_widthoutCall +dimen module_service_marker_anchor_size +dimen module_service_marker_bounds_bottomMargin +dimen module_service_marker_bounds_leftMargin +dimen module_service_marker_bounds_rightMargin +dimen module_service_marker_bounds_topMargin +dimen module_service_marker_bubble_height +dimen module_service_marker_bubble_icon_height +dimen module_service_marker_bubble_icon_marginBottom +dimen module_service_marker_bubble_icon_vr_height +dimen module_service_marker_bubble_icon_vr_width +dimen module_service_marker_bubble_icon_width +dimen module_service_marker_bubble_vr_height +dimen module_service_marker_bubble_vr_width +dimen module_service_marker_bubble_width +dimen module_service_marker_dot_marginTop +dimen module_service_tag_textSize +dimen module_service_user_header_height +dimen module_service_user_header_width +dimen module_services_dispatch_airport_dialog_affirm_corner +dimen module_services_dispatch_airport_dialog_affirm_height +dimen module_services_dispatch_airport_dialog_affirm_width +dimen module_services_dispatch_airport_dialog_corner +dimen module_services_dispatch_airport_dialog_endloc_content_margin_top +dimen module_services_dispatch_airport_dialog_endloc_margin_top +dimen module_services_dispatch_airport_dialog_first_column_margin_left +dimen module_services_dispatch_airport_dialog_height +dimen module_services_dispatch_airport_dialog_last_column_margin_left +dimen module_services_dispatch_airport_dialog_margin_bottom +dimen module_services_dispatch_airport_dialog_margin_top +dimen module_services_dispatch_airport_dialog_next_level_title_size +dimen module_services_dispatch_airport_dialog_startloc_content_margin_top +dimen module_services_dispatch_airport_dialog_startloc_margin_top +dimen module_services_dispatch_airport_dialog_task_content_margin_top +dimen module_services_dispatch_airport_dialog_task_content_size +dimen module_services_dispatch_airport_dialog_task_margin_top +dimen module_services_dispatch_airport_dialog_title_margin_top +dimen module_services_dispatch_airport_dialog_title_size +dimen module_services_dispatch_airport_dialog_width +dimen module_services_dispatch_cars_dialog_btn_width +dimen module_services_dispatch_cars_dialog_content_margin_top +dimen module_services_dispatch_cars_dialog_content_size +dimen module_services_dispatch_cars_dialog_corner +dimen module_services_dispatch_cars_dialog_height +dimen module_services_dispatch_cars_dialog_line_margin_bottom +dimen module_services_dispatch_cars_dialog_loc_margin_top +dimen module_services_dispatch_cars_dialog_loc_size +dimen module_services_dispatch_cars_dialog_timer_margin +dimen module_services_dispatch_cars_dialog_timer_size +dimen module_services_dispatch_cars_dialog_timer_txt_size +dimen module_services_dispatch_cars_dialog_title_margin_top +dimen module_services_dispatch_cars_dialog_title_size +dimen module_services_dispatch_cars_dialog_width +dimen module_services_empty_tip_marginTop +dimen module_services_empty_tip_textSize +dimen module_services_id_panel_item_avatar_border_width +dimen module_services_id_panel_item_distance_marginLeft +dimen module_services_info_window_height +dimen module_services_info_window_paddingEnd +dimen module_services_info_window_paddingStart +dimen module_services_load_strategy_marginRight +dimen module_services_load_strategy_paddingLeft +dimen module_services_load_strategy_paddingTop +dimen module_services_load_strategy_textSize +dimen module_services_online_car_panel_close_margin_top +dimen module_services_online_car_panel_marginBottom +dimen module_services_online_car_panel_marginRight +dimen module_services_online_car_panel_marginTop +dimen module_services_online_car_panel_paddingBottom +dimen module_services_online_car_panel_paddingLeft +dimen module_services_online_car_panel_recycler_view_margin_top +dimen module_services_online_car_panel_title_margin_top +dimen module_services_online_car_panel_title_text_size +dimen module_services_panel_item_avatar_size +dimen module_services_panel_item_corner +dimen module_services_panel_item_detail_bkg_corner +dimen module_services_panel_item_detail_padding +dimen module_services_panel_item_detail_textSize +dimen module_services_panel_item_distance_tag_marginBottom +dimen module_services_panel_item_distance_textSize +dimen module_services_panel_item_marginBottom +dimen module_services_panel_item_nickname_marginLeft +dimen module_services_panel_item_nickname_marginTop +dimen module_services_panel_item_nickname_textSize +dimen module_services_panel_item_padding +dimen module_services_panel_item_start +dimen module_services_panel_strategy_button_bkg_corner +dimen module_services_panel_strategy_button_marginTop +dimen module_v2n_image_margin_left +dimen module_v2n_tip_height +dimen module_v2n_tip_text_margin_right +dimen module_v2n_tip_text_width +dimen module_v2n_tip_width +dimen module_v2x_brake_image_margin_left +dimen module_v2x_brake_image_margin_right +dimen module_v2x_brake_image_width +dimen module_v2x_brake_tip_height +dimen module_v2x_brake_tip_width +dimen module_v2x_surrounding_item_margin_left +dimen module_v2x_surrounding_list_margin_left +dimen notification_action_icon_size +dimen notification_action_text_size +dimen notification_big_circle_margin +dimen notification_content_margin_start +dimen notification_large_icon_height +dimen notification_large_icon_width +dimen notification_main_column_padding_top +dimen notification_media_narrow_margin +dimen notification_right_icon_size +dimen notification_right_side_padding_top +dimen notification_small_icon_background_padding +dimen notification_small_icon_size_as_large +dimen notification_subtext_size +dimen notification_top_pad +dimen notification_top_pad_large_text +dimen panel_list_item_title_size +dimen ratingbar_padding +dimen share_item_address +dimen sp_10 +dimen sp_11 +dimen sp_12 +dimen sp_13 +dimen sp_14 +dimen sp_15 +dimen sp_16 +dimen sp_17 +dimen sp_18 +dimen sp_19 +dimen sp_20 +dimen sp_21 +dimen sp_22 +dimen sp_23 +dimen sp_24 +dimen sp_25 +dimen sp_28 +dimen sp_30 +dimen sp_32 +dimen sp_34 +dimen sp_36 +dimen sp_38 +dimen sp_40 +dimen sp_42 +dimen sp_48 +dimen sp_6 +dimen sp_7 +dimen sp_8 +dimen sp_9 +dimen subtitle_corner_radius +dimen subtitle_outline_width +dimen subtitle_shadow_offset +dimen subtitle_shadow_radius +dimen tooltip_corner_radius +dimen tooltip_horizontal_padding +dimen tooltip_margin +dimen tooltip_precise_anchor_extra_offset +dimen tooltip_precise_anchor_threshold +dimen tooltip_vertical_padding +dimen tooltip_y_offset_non_touch +dimen tooltip_y_offset_touch +dimen v2x_panel_loading_top +dimen v2x_share_btn_height +dimen v2x_share_btn_width +drawable abc_ab_share_pack_mtrl_alpha +drawable abc_action_bar_item_background_material +drawable abc_btn_borderless_material +drawable abc_btn_check_material +drawable abc_btn_check_material_anim +drawable abc_btn_check_to_on_mtrl_000 +drawable abc_btn_check_to_on_mtrl_015 +drawable abc_btn_colored_material +drawable abc_btn_default_mtrl_shape +drawable abc_btn_radio_material +drawable abc_btn_radio_material_anim +drawable abc_btn_radio_to_on_mtrl_000 +drawable abc_btn_radio_to_on_mtrl_015 +drawable abc_btn_switch_to_on_mtrl_00001 +drawable abc_btn_switch_to_on_mtrl_00012 +drawable abc_cab_background_internal_bg +drawable abc_cab_background_top_material +drawable abc_cab_background_top_mtrl_alpha +drawable abc_control_background_material +drawable abc_dialog_material_background +drawable abc_edit_text_material +drawable abc_ic_ab_back_material +drawable abc_ic_arrow_drop_right_black_24dp +drawable abc_ic_clear_material +drawable abc_ic_commit_search_api_mtrl_alpha +drawable abc_ic_go_search_api_material +drawable abc_ic_menu_copy_mtrl_am_alpha +drawable abc_ic_menu_cut_mtrl_alpha +drawable abc_ic_menu_overflow_material +drawable abc_ic_menu_paste_mtrl_am_alpha +drawable abc_ic_menu_selectall_mtrl_alpha +drawable abc_ic_menu_share_mtrl_alpha +drawable abc_ic_search_api_material +drawable abc_ic_star_black_16dp +drawable abc_ic_star_black_36dp +drawable abc_ic_star_black_48dp +drawable abc_ic_star_half_black_16dp +drawable abc_ic_star_half_black_36dp +drawable abc_ic_star_half_black_48dp +drawable abc_ic_voice_search_api_material +drawable abc_item_background_holo_dark +drawable abc_item_background_holo_light +drawable abc_list_divider_material +drawable abc_list_divider_mtrl_alpha +drawable abc_list_focused_holo +drawable abc_list_longpressed_holo +drawable abc_list_pressed_holo_dark +drawable abc_list_pressed_holo_light +drawable abc_list_selector_background_transition_holo_dark +drawable abc_list_selector_background_transition_holo_light +drawable abc_list_selector_disabled_holo_dark +drawable abc_list_selector_disabled_holo_light +drawable abc_list_selector_holo_dark +drawable abc_list_selector_holo_light +drawable abc_menu_hardkey_panel_mtrl_mult +drawable abc_popup_background_mtrl_mult +drawable abc_ratingbar_indicator_material +drawable abc_ratingbar_material +drawable abc_ratingbar_small_material +drawable abc_scrubber_control_off_mtrl_alpha +drawable abc_scrubber_control_to_pressed_mtrl_000 +drawable abc_scrubber_control_to_pressed_mtrl_005 +drawable abc_scrubber_primary_mtrl_alpha +drawable abc_scrubber_track_mtrl_alpha +drawable abc_seekbar_thumb_material +drawable abc_seekbar_tick_mark_material +drawable abc_seekbar_track_material +drawable abc_spinner_mtrl_am_alpha +drawable abc_spinner_textfield_background_material +drawable abc_switch_thumb_material +drawable abc_switch_track_mtrl_alpha +drawable abc_tab_indicator_material +drawable abc_tab_indicator_mtrl_alpha +drawable abc_text_cursor_material +drawable abc_text_select_handle_left_mtrl_dark +drawable abc_text_select_handle_left_mtrl_light +drawable abc_text_select_handle_middle_mtrl_dark +drawable abc_text_select_handle_middle_mtrl_light +drawable abc_text_select_handle_right_mtrl_dark +drawable abc_text_select_handle_right_mtrl_light +drawable abc_textfield_activated_mtrl_alpha +drawable abc_textfield_default_mtrl_alpha +drawable abc_textfield_search_activated_mtrl_alpha +drawable abc_textfield_search_default_mtrl_alpha +drawable abc_textfield_search_material +drawable abc_vector_test +drawable account_adk_btn_gradient +drawable account_adk_btn_gray +drawable account_sdk_bg_10_corner +drawable account_sdk_bg_8_corner +drawable bg_adas_dispatch +drawable bg_adas_dispatch_affirm +drawable bg_map_marker_blue +drawable bg_map_marker_blue_dark +drawable bg_map_marker_blue_info +drawable bg_map_marker_dark_blue_info +drawable bg_map_marker_dark_green_info +drawable bg_map_marker_green +drawable bg_map_marker_green_dark +drawable bg_map_marker_green_info +drawable bg_map_marker_grey_info +drawable bg_map_marker_oragne +drawable bg_map_marker_orange_info +drawable bg_map_marker_purple +drawable bg_map_marker_purple_info +drawable bg_map_marker_red +drawable bg_map_marker_red_info +drawable bg_map_marker_yellow_info +drawable bg_qr_scan_line +drawable bg_qr_scan_success +drawable bg_shape_reverse_triangle_blue +drawable bg_shape_reverse_triangle_dark_blue +drawable bg_shape_reverse_triangle_dark_green +drawable bg_shape_reverse_triangle_green +drawable bg_shape_reverse_triangle_orange +drawable bg_shape_reverse_triangle_purple +drawable bg_shape_reverse_triangle_red +drawable bg_shape_reverse_yellow +drawable bg_waring_limiting_velocity +drawable bg_waring_traffic_light_vr +drawable bg_warning_bg +drawable blue +drawable btn_checkbox_checked_mtrl +drawable btn_checkbox_checked_to_unchecked_mtrl_animation +drawable btn_checkbox_unchecked_mtrl +drawable btn_checkbox_unchecked_to_checked_mtrl_animation +drawable btn_radio_off_mtrl +drawable btn_radio_off_to_on_mtrl_animation +drawable btn_radio_on_mtrl +drawable btn_radio_on_to_off_mtrl_animation +drawable common_marker_bottom_floor +drawable dialog_white_bg +drawable ic_amap_navi_cursor +drawable ic_navi_start +drawable ic_navi_target +drawable ic_phone_back +drawable ic_reverse_triangle +drawable icon_common_heart_animation_vr00 +drawable icon_common_heart_animation_vr01 +drawable icon_common_heart_animation_vr02 +drawable icon_default_user_head +drawable icon_heart_choose +drawable icon_heart_second +drawable icon_heart_second_other +drawable icon_heart_unchoose +drawable icon_heart_unchoose_other +drawable icon_map_marker_4s +drawable icon_map_marker_book +drawable icon_map_marker_car_gray +drawable icon_map_marker_car_gray_selected +drawable icon_map_marker_car_type2 +drawable icon_map_marker_car_type_110 +drawable icon_map_marker_car_type_119 +drawable icon_map_marker_car_type_120 +drawable icon_map_marker_car_type_bus +drawable icon_map_marker_car_type_taxi +drawable icon_map_marker_living +drawable icon_map_marker_living_white +drawable icon_map_marker_location_blue +drawable icon_map_marker_location_yellow +drawable icon_map_marker_location_yellow_vr +drawable icon_map_marker_misic +drawable icon_map_marker_news +drawable icon_map_marker_pondingl +drawable icon_map_marker_pondingl2 +drawable icon_map_marker_pondingl2_white +drawable icon_map_marker_refuel +drawable icon_map_marker_road_block_off +drawable icon_map_marker_road_block_off2 +drawable icon_map_marker_road_block_off2_white +drawable icon_map_marker_road_block_up +drawable icon_map_marker_road_block_up2 +drawable icon_map_marker_road_block_up2_white +drawable icon_map_marker_road_check +drawable icon_map_marker_road_check2 +drawable icon_map_marker_road_check2_white +drawable icon_map_marker_road_work +drawable icon_map_marker_road_work2 +drawable icon_map_marker_road_work2_white +drawable icon_map_marker_shear_news +drawable icon_map_marker_shop +drawable icon_map_marker_shop_discount +drawable icon_waring_traffic_light_green_vr +drawable icon_waring_traffic_light_red_vr +drawable icon_waring_traffic_light_yellow_vr +drawable icon_warning_v2x_abnormal_vehicle +drawable icon_warning_v2x_accident_prone_road_section +drawable icon_warning_v2x_avoid_special_vehicles +drawable icon_warning_v2x_ban_astern +drawable icon_warning_v2x_blind_area_collision +drawable icon_warning_v2x_collision_warning +drawable icon_warning_v2x_congestion +drawable icon_warning_v2x_emergency_brake +drawable icon_warning_v2x_give_way +drawable icon_warning_v2x_hump_bridge +drawable icon_warning_v2x_motorcycle_collision +drawable icon_warning_v2x_no_parking +drawable icon_warning_v2x_over_speed +drawable icon_warning_v2x_pedestrian_crossing +drawable icon_warning_v2x_reverse_overtaking +drawable icon_warning_v2x_road_construction +drawable icon_warning_v2x_road_dangerous +drawable icon_warning_v2x_roundaboutpng +drawable icon_warning_v2x_school +drawable icon_warning_v2x_special_vehicle_access +drawable icon_warning_v2x_test_section +drawable icon_warning_v2x_traffic_light_gray +drawable icon_warning_v2x_traffic_light_green +drawable icon_warning_v2x_traffic_light_red +drawable icon_warning_v2x_traffic_light_yellow +drawable icon_warning_v2x_traffic_lights_green +drawable icon_warning_v2x_traffic_lights_red +drawable icon_warning_v2x_tramcar +drawable icon_warning_v2x_turn_left_sharp +drawable icon_warning_v2x_turn_right_sharp +drawable icon_warning_v2x_vehicle_control +drawable map_api_ic_current_location2 +drawable map_api_ic_current_location2_cursor +drawable module_authorize_scrollbar +drawable module_authorize_selector_blue_corner +drawable module_authorize_selector_blue_left_corner +drawable module_authorize_selector_dark_corner +drawable module_authorize_selector_dark_right_corner +drawable module_authorize_shape_top_corner +drawable module_camera_real_time_traffic +drawable module_common_bg_vr +drawable module_common_close_selector +drawable module_common_close_selector_vr +drawable module_common_default_user_head +drawable module_common_ic_rc_accident3 +drawable module_common_ic_rc_accident3_white +drawable module_common_ic_rc_dark_frog2 +drawable module_common_ic_rc_dark_frog2_white +drawable module_common_ic_rc_freeze2 +drawable module_common_ic_rc_freeze2_white +drawable module_common_ic_rc_illegal_park +drawable module_common_ic_rc_illegal_park_white +drawable module_common_ic_rc_parking2 +drawable module_common_icon_close +drawable module_common_icon_close_press +drawable module_common_icon_close_vr +drawable module_common_icon_like_selected_vr +drawable module_common_icon_like_vr +drawable module_common_icon_map_marker_4s +drawable module_common_icon_map_marker_living +drawable module_common_icon_map_marker_living_white +drawable module_common_icon_map_marker_pondingl2 +drawable module_common_icon_map_marker_pondingl2_white +drawable module_common_icon_map_marker_refuel +drawable module_common_icon_map_marker_road_block_off2 +drawable module_common_icon_map_marker_road_block_off2_white +drawable module_common_icon_map_marker_road_block_up2 +drawable module_common_icon_map_marker_road_block_up2_white +drawable module_common_icon_map_marker_road_check2 +drawable module_common_icon_map_marker_road_check2_white +drawable module_common_icon_map_marker_road_work2 +drawable module_common_icon_map_marker_road_work2_white +drawable module_common_icon_map_marker_shear_news +drawable module_common_icon_map_marker_shop +drawable module_common_icon_map_marker_shop_discount +drawable module_common_icon_seek_help +drawable module_common_icon_unlike_selected_vr +drawable module_common_icon_unlike_vr +drawable module_common_like_vr +drawable module_common_my_location_bg +drawable module_common_selector_call +drawable module_common_unlike_vr +drawable module_commons_dialog_bg +drawable module_commons_dialog_left_bg +drawable module_commons_dialog_right_bg +drawable module_commons_heart_ratingbar_drawable +drawable module_commons_shape_dlg_round_bkg +drawable module_commons_shape_left_btn_bkg +drawable module_commons_shape_right_btn_bkg +drawable module_commons_toast_bkg +drawable module_dw_common_corner_bkg_light +drawable module_ext_drawable_shadow_bg +drawable module_ext_shadow_bkg +drawable module_ext_shadow_bkg_pressed +drawable module_guide_blue_corner +drawable module_map_amap_my_location_icon +drawable module_service_dispatch_cars_affirm_bg +drawable module_service_dispatch_cars_bg +drawable module_service_dispatch_cars_cancel_bg +drawable module_service_dispatch_timer_bg +drawable module_service_ic_call +drawable module_service_ic_car_for_help_0000 +drawable module_service_ic_car_for_help_0001 +drawable module_service_ic_car_for_help_0002 +drawable module_service_ic_car_for_help_0003 +drawable module_service_ic_car_for_help_0004 +drawable module_service_ic_car_for_help_0005 +drawable module_service_ic_car_for_help_0006 +drawable module_service_ic_car_for_help_0007 +drawable module_service_ic_car_for_help_0008 +drawable module_service_ic_car_for_help_0009 +drawable module_service_ic_car_for_help_0010 +drawable module_service_ic_car_for_help_0011 +drawable module_service_ic_car_for_help_0012 +drawable module_service_ic_car_for_help_0013 +drawable module_service_ic_car_for_help_0014 +drawable module_service_ic_car_for_help_0015 +drawable module_service_ic_car_for_help_0016 +drawable module_service_ic_car_for_help_0017 +drawable module_service_ic_car_for_help_0018 +drawable module_service_ic_car_for_help_0019 +drawable module_service_ic_car_for_help_0020 +drawable module_service_ic_car_for_help_0021 +drawable module_service_ic_car_for_help_0022 +drawable module_service_ic_car_for_help_0023 +drawable module_service_ic_car_for_help_0024 +drawable module_service_ic_rc_accident +drawable module_service_ic_rc_accident2 +drawable module_service_ic_rc_accident3 +drawable module_service_ic_rc_accident3_white +drawable module_service_ic_rc_dark_frog +drawable module_service_ic_rc_dark_frog2 +drawable module_service_ic_rc_dark_frog2_white +drawable module_service_ic_rc_freeze +drawable module_service_ic_rc_freeze2 +drawable module_service_ic_rc_freeze2_white +drawable module_service_ic_rc_illegal_park +drawable module_service_ic_rc_illegal_park_white +drawable module_service_ic_rc_parking +drawable module_service_ic_rc_parking2 +drawable module_service_ic_rc_road_slippery +drawable module_service_ic_rc_road_slippery_light +drawable module_service_ic_seek_helping +drawable module_service_ic_warning_circle_orange_00000 +drawable module_service_ic_warning_circle_orange_00001 +drawable module_service_ic_warning_circle_orange_00002 +drawable module_service_ic_warning_circle_orange_00003 +drawable module_service_ic_warning_circle_orange_00004 +drawable module_service_ic_warning_circle_orange_00005 +drawable module_service_ic_warning_circle_orange_00006 +drawable module_service_ic_warning_circle_orange_00007 +drawable module_service_ic_warning_circle_orange_00008 +drawable module_service_ic_warning_circle_orange_00009 +drawable module_service_ic_warning_circle_orange_00010 +drawable module_service_ic_warning_circle_orange_00011 +drawable module_service_ic_warning_circle_orange_00012 +drawable module_service_ic_warning_circle_orange_00013 +drawable module_service_ic_warning_circle_orange_00014 +drawable module_service_ic_warning_circle_orange_00015 +drawable module_service_ic_warning_circle_orange_00016 +drawable module_service_ic_warning_circle_orange_00017 +drawable module_service_ic_warning_circle_orange_00018 +drawable module_service_ic_warning_circle_orange_00019 +drawable module_service_ic_warning_circle_orange_00020 +drawable module_service_ic_warning_circle_orange_00021 +drawable module_service_ic_warning_circle_orange_00022 +drawable module_service_ic_warning_circle_orange_00023 +drawable module_service_ic_warning_circle_orange_00024 +drawable module_service_ic_warning_circle_orange_00025 +drawable module_service_ic_warning_circle_orange_00026 +drawable module_service_ic_warning_circle_orange_00027 +drawable module_service_ic_warning_circle_orange_00028 +drawable module_service_ic_warning_circle_orange_00029 +drawable module_service_ic_warning_circle_orange_00030 +drawable module_service_ic_warning_circle_orange_00031 +drawable module_service_ic_warning_circle_orange_00032 +drawable module_service_ic_warning_circle_orange_00033 +drawable module_service_ic_warning_circle_orange_00034 +drawable module_service_ic_warning_circle_orange_00035 +drawable module_service_ic_warning_circle_orange_00036 +drawable module_service_ic_warning_circle_orange_00037 +drawable module_service_ic_warning_circle_orange_00038 +drawable module_service_ic_warning_circle_orange_00039 +drawable module_service_ic_warning_circle_orange_00040 +drawable module_service_ic_warning_circle_orange_00041 +drawable module_service_ic_warning_circle_orange_00042 +drawable module_service_ic_warning_circle_orange_00043 +drawable module_service_ic_warning_circle_orange_00044 +drawable module_service_ic_warning_circle_orange_00045 +drawable module_service_ic_warning_circle_orange_00046 +drawable module_service_ic_warning_circle_orange_00047 +drawable module_service_ic_warning_circle_orange_00048 +drawable module_services_driver_info_window_bkg +drawable module_services_driver_type_blue_info +drawable module_services_driver_type_green_info +drawable module_services_driver_type_red_info +drawable module_services_info_window_cursor +drawable module_services_marker_bkg +drawable module_services_marker_vr_bkg +drawable module_services_marker_vr_bkg_checked +drawable module_services_online_car_panel_background +drawable module_services_online_car_panel_empty_icon +drawable module_services_panel_item_bkg +drawable module_services_panel_item_detail_bkg +drawable module_services_panel_strategy_button_bkg +drawable notification_action_background +drawable notification_bg +drawable notification_bg_low +drawable notification_bg_low_normal +drawable notification_bg_low_pressed +drawable notification_bg_normal +drawable notification_bg_normal_pressed +drawable notification_icon_background +drawable notification_template_icon_bg +drawable notification_template_icon_low_bg +drawable notification_tile_bg +drawable notify_panel_notification_icon_bg +drawable pad_back +drawable pad_car +drawable pad_logo_black +drawable selector_call_btn_normal +drawable selector_call_btn_pressed +drawable selector_service_car_panel_details +drawable service_car_panel_details_normal +drawable service_car_panel_details_pressed +drawable sr +drawable sy +drawable tooltip_frame_dark +drawable tooltip_frame_light +drawable zxing_scanline +id Full +id Half +id accessibility_action_clickable_span +id accessibility_custom_action_0 +id accessibility_custom_action_1 +id accessibility_custom_action_10 +id accessibility_custom_action_11 +id accessibility_custom_action_12 +id accessibility_custom_action_13 +id accessibility_custom_action_14 +id accessibility_custom_action_15 +id accessibility_custom_action_16 +id accessibility_custom_action_17 +id accessibility_custom_action_18 +id accessibility_custom_action_19 +id accessibility_custom_action_2 +id accessibility_custom_action_20 +id accessibility_custom_action_21 +id accessibility_custom_action_22 +id accessibility_custom_action_23 +id accessibility_custom_action_24 +id accessibility_custom_action_25 +id accessibility_custom_action_26 +id accessibility_custom_action_27 +id accessibility_custom_action_28 +id accessibility_custom_action_29 +id accessibility_custom_action_3 +id accessibility_custom_action_30 +id accessibility_custom_action_31 +id accessibility_custom_action_4 +id accessibility_custom_action_5 +id accessibility_custom_action_6 +id accessibility_custom_action_7 +id accessibility_custom_action_8 +id accessibility_custom_action_9 +id account_auth_back +id account_auth_cancel_login +id account_auth_login +id action0 +id action_bar +id action_bar_activity_content +id action_bar_container +id action_bar_root +id action_bar_spinner +id action_bar_subtitle +id action_bar_title +id action_container +id action_context_bar +id action_divider +id action_image +id action_menu_divider +id action_menu_presenter +id action_mode_bar +id action_mode_bar_stub +id action_mode_close_button +id action_text +id actions +id activity_chooser_view_content +id add +id alertTitle +id async +id auto_scanner_view +id bezier_view +id blocking +id bottom +id bt_refresh +id btnAuthorizeAgree +id btnAuthorizeDisAgree +id btnAuthorizeLoadingError +id buttonPanel +id cancel_action +id center +id centerCrop +id centerInside +id checkbox +id checked +id chronometer +id circle +id clAuthorizeContainer +id clAuthorizeLoading +id clAuthorizeTitle +id clAuthorizeTopParent +id clLoadingAuthorizeContainer +id clLoadingErrorContainer +id clMarkerContent +id clMarkerTopView +id content +id contentPanel +id custom +id customPanel +id customRatingBar +id decor_content_parent +id default_activity_button +id dialog_button +id edit_query +id end +id end_padder +id expand_activities_button +id expanded_menu +id fitBottomStart +id fitCenter +id fitEnd +id fitStart +id fitXY +id focusCrop +id forever +id glide_custom_view_target_tag +id gone +id group_divider +id home +id horizontal +id icon +id icon_group +id image +id info +id invisible +id italic +id item_touch_helper_previous_elevation +id ivAuthorizeLoading +id ivAuthorizeLoadingError +id ivCar +id ivIcon +id ivReverseTriangle +id ivUserHead +id iv_back +id iv_camera_traffic +id iv_qr +id left +id line1 +id line3 +id listMode +id list_item +id ll_scan_success +id loading_imageview +id loading_liner_layout +id loading_text +id map_amap_id_cursor +id media_actions +id message +id moduleGuideIndicator +id moduleGuidePageFive +id moduleGuidePageFour +id moduleGuidePageOne +id moduleGuidePageThree +id moduleGuidePageTwo +id moduleGuideViewPager +id module_adas_dispatch_remind_affirm +id module_adas_dispatch_remind_cancel +id module_adas_dispatch_remind_loc +id module_adas_dispatch_remind_timer +id module_commons_marker_car_model +id module_commons_toast_left_drawable +id module_commons_toast_msg +id module_commons_wm_dialog_button_cancel +id module_commons_wm_dialog_button_ok +id module_commons_wm_dialog_content +id module_guide_include +id module_guide_page_left +id module_guide_page_right +id module_guide_tv_next_step +id module_map_amap_my_location_bg_iv +id module_map_amap_my_location_iv +id module_service_id_call +id module_service_id_content +id module_service_id_marker_content +id module_service_id_tag +id module_service_id_user_header +id module_services_dispatch_dialog_confirm +id module_services_dispatch_dialog_end_content +id module_services_dispatch_dialog_flight_time +id module_services_dispatch_dialog_start_content +id module_services_dispatch_dialog_task_content +id module_services_dispatch_dialog_task_time +id module_services_dispatch_dialog_title +id module_services_empty_tip +id module_services_id_20Km_radius +id module_services_id_40Km_radius +id module_services_id_close +id module_services_id_error_container +id module_services_id_load_strategy_container +id module_services_id_loading +id module_services_id_panel_item_avatar +id module_services_id_panel_item_call +id module_services_id_panel_item_detail +id module_services_id_panel_item_distance +id module_services_id_panel_item_distance_tag +id module_services_id_panel_item_nickname +id module_services_id_recycler_view +id module_services_id_title +id module_services_status_iv +id module_services_status_tv +id multiply +id none +id normal +id notification_background +id notification_main_column +id notification_main_column_container +id off +id on +id packed +id parent +id parentPanel +id percent +id preview_view +id progress_circular +id progress_horizontal +id radio +id refresh_button +id right +id right_icon +id right_side +id rl_login_fail +id rl_qr_code +id round +id screen +id scrollIndicatorDown +id scrollIndicatorUp +id scrollView +id search_badge +id search_bar +id search_button +id search_close_btn +id search_edit_frame +id search_go_btn +id search_mag_icon +id search_plate +id search_src_text +id search_voice_btn +id select_dialog_listview +id shape_id +id shortcut +id spacer +id split_action_bar +id spread +id spread_inside +id src_atop +id src_in +id src_over +id start +id status_bar_latest_event_content +id submenuarrow +id submit_area +id switch_account +id tabMode +id tag_accessibility_actions +id tag_accessibility_clickable_spans +id tag_accessibility_heading +id tag_accessibility_pane_title +id tag_screen_reader_focusable +id tag_transition_group +id tag_unhandled_key_event_manager +id tag_unhandled_key_listeners +id text +id text2 +id textSpacerNoButtons +id textSpacerNoTitle +id time +id title +id titleDividerNoCustom +id title_template +id top +id topPanel +id tvAuthorizeButtonContent +id tvAuthorizeContent +id tvAuthorizeLastContent +id tvAuthorizeLoading +id tvAuthorizeLoadingError +id tvAuthorizeTitle +id tvMarkerContent +id tv_fail_desc +id tv_scan_desc +id txt_cancel +id txt_content +id txt_ok +id txt_sub_content +id txt_title +id unchecked +id uniform +id up +id vertical +id wrap +id wrap_content +integer abc_config_activityDefaultDur +integer abc_config_activityShortDur +integer cancel_button_image_alpha +integer config_tooltipAnimTime +integer status_bar_notification_info_maxnum +interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 +interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 +interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 +interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 +interpolator btn_radio_to_off_mtrl_animation_interpolator_0 +interpolator btn_radio_to_on_mtrl_animation_interpolator_0 +interpolator fast_out_slow_in +layout abc_action_bar_title_item +layout abc_action_bar_up_container +layout abc_action_menu_item_layout +layout abc_action_menu_layout +layout abc_action_mode_bar +layout abc_action_mode_close_item_material +layout abc_activity_chooser_view +layout abc_activity_chooser_view_list_item +layout abc_alert_dialog_button_bar_material +layout abc_alert_dialog_material +layout abc_alert_dialog_title_material +layout abc_cascading_menu_item_layout +layout abc_dialog_title_material +layout abc_expanded_menu_layout +layout abc_list_menu_item_checkbox +layout abc_list_menu_item_icon +layout abc_list_menu_item_layout +layout abc_list_menu_item_radio +layout abc_popup_menu_header_item_layout +layout abc_popup_menu_item_layout +layout abc_screen_content_include +layout abc_screen_simple +layout abc_screen_simple_overlay_action_mode +layout abc_screen_toolbar +layout abc_search_dropdown_item_icons_2line +layout abc_search_view +layout abc_select_dialog_material +layout abc_tooltip +layout activity_auth +layout activity_scan_qr +layout custom_dialog +layout dialog_cutom_layout +layout layout_pad_login +layout map_amap_cursor +layout modeules_commons_layout_custom_ratingbar +layout modudle_camera_layout_info +layout modudle_services_marker_info_window_layout +layout modudle_services_marker_layout +layout modudle_services_marker_layout_info +layout modudle_services_marker_vr_layout +layout module_authorize_fragment +layout module_common_bezier_layout +layout module_common_my_location +layout module_common_warning_marker_bottom +layout module_common_warning_marker_front +layout module_commons_layout_car +layout module_commons_layout_toast +layout module_commons_layout_toast_with_left_drawable +layout module_commons_layout_wm_dialog +layout module_dialog_adas_dispatch_airport +layout module_dialog_adas_dispatch_cars +layout module_guide_fragment +layout module_guide_item_include +layout module_guide_item_stage_five +layout module_guide_item_stage_four +layout module_guide_item_stage_one +layout module_guide_item_stage_three +layout module_guide_item_stage_two +layout module_services_fragment_online_car_panel +layout module_services_online_car_panel_item +layout module_services_status_panel +layout network_loading_item +layout notification_action +layout notification_action_tombstone +layout notification_media_action +layout notification_media_cancel_action +layout notification_template_big_media +layout notification_template_big_media_custom +layout notification_template_big_media_narrow +layout notification_template_big_media_narrow_custom +layout notification_template_custom_big +layout notification_template_icon_group +layout notification_template_lines_media +layout notification_template_media +layout notification_template_media_custom +layout notification_template_part_chronometer +layout notification_template_part_time +layout select_dialog_item_material +layout select_dialog_multichoice_material +layout select_dialog_singlechoice_material +layout support_simple_spinner_dropdown_item +mipmap module_authorize_loading +mipmap module_authorize_loading_error +mipmap module_authorize_title_left_symbol +mipmap module_authorize_title_right_symbol +mipmap module_guide_item_stage_five +mipmap module_guide_item_stage_five_launcher +mipmap module_guide_item_stage_four +mipmap module_guide_item_stage_four_launcher +mipmap module_guide_item_stage_one +mipmap module_guide_item_stage_one_launcher +mipmap module_guide_item_stage_three +mipmap module_guide_item_stage_three_launcher +mipmap module_guide_item_stage_two +mipmap module_guide_item_stage_two_launcher +mipmap module_guide_left_page +mipmap module_guide_right_page +raw beep +raw daba +raw kache +raw motuoche +raw people +raw shexiangtou +raw special_vehicle +raw stopline +raw tachexiaoche +raw taxi +raw v2x_daolujiebing +raw v2x_daolujishui +raw v2x_daolushigong +raw v2x_guzhangqiuzhu +raw v2x_jiaotongjiancha +raw v2x_nongwu +raw v2x_shigong_warning +raw v2x_shigu +raw v2x_shishilukuang +raw v2x_yongdu +raw ziche +raw zixingche +string abc_action_bar_home_description +string abc_action_bar_up_description +string abc_action_menu_overflow_description +string abc_action_mode_done +string abc_activity_chooser_view_see_all +string abc_activitychooserview_choose_application +string abc_capital_off +string abc_capital_on +string abc_font_family_body_1_material +string abc_font_family_body_2_material +string abc_font_family_button_material +string abc_font_family_caption_material +string abc_font_family_display_1_material +string abc_font_family_display_2_material +string abc_font_family_display_3_material +string abc_font_family_display_4_material +string abc_font_family_headline_material +string abc_font_family_menu_material +string abc_font_family_subhead_material +string abc_font_family_title_material +string abc_menu_alt_shortcut_label +string abc_menu_ctrl_shortcut_label +string abc_menu_delete_shortcut_label +string abc_menu_enter_shortcut_label +string abc_menu_function_shortcut_label +string abc_menu_meta_shortcut_label +string abc_menu_shift_shortcut_label +string abc_menu_space_shortcut_label +string abc_menu_sym_shortcut_label +string abc_prepend_shortcut_label +string abc_search_hint +string abc_searchview_description_clear +string abc_searchview_description_query +string abc_searchview_description_search +string abc_searchview_description_submit +string abc_searchview_description_voice +string abc_shareactionprovider_share_with +string abc_shareactionprovider_share_with_application +string abc_toolbar_collapse_description +string app_name +string module_authorize_agreement_agree +string module_authorize_agreement_disagree +string module_authorize_agreement_error +string module_authorize_agreement_loading +string module_authorize_agreement_retry +string module_authorize_agreement_tip +string module_authorize_failed +string module_commons_button_cancel +string module_commons_button_ok +string module_commons_exit_navi_content +string module_guide_finish +string module_guide_item_entry_main +string module_guide_item_next_step +string module_guide_main +string module_guide_voice_page_end +string module_guide_voice_page_five +string module_guide_voice_page_four +string module_guide_voice_page_one +string module_guide_voice_page_three +string module_guide_voice_page_two +string module_service_app_entrance_text +string module_service_launcher_card_info +string module_service_launcher_card_tips +string module_service_open_app_tip +string module_services_dispatch_cars_affirm +string module_services_dispatch_cars_cancel +string module_services_dispatch_cars_remind_content +string module_services_dispatch_cars_remind_title +string module_services_dispatch_dialog_affirm +string module_services_dispatch_dialog_end_loc +string module_services_dispatch_dialog_flight_info +string module_services_dispatch_dialog_start_loc +string module_services_dispatch_dialog_task_info +string module_services_dispatch_dialog_task_time +string module_services_dispatch_dialog_title +string module_services_error_text +string module_services_online_car_panel_empty_tmpl +string module_services_online_car_panel_title +string module_services_panel_item_call +string module_services_panel_item_detail_text +string module_services_panel_item_distance_tag_text +string module_services_str_20Km_radius +string module_services_str_40Km_radius +string network_resp_error +string search_menu_title +string status_bar_notification_info_overflow +string str_pad_login_sure +style AlertDialog_AppCompat +style AlertDialog_AppCompat_Light +style Animation_AppCompat_Dialog +style Animation_AppCompat_DropDownUp +style Animation_AppCompat_Tooltip +style BaseFloatDialogStyle +style Base_AlertDialog_AppCompat +style Base_AlertDialog_AppCompat_Light +style Base_Animation_AppCompat_Dialog +style Base_Animation_AppCompat_DropDownUp +style Base_Animation_AppCompat_Tooltip +style Base_DialogWindowTitleBackground_AppCompat +style Base_DialogWindowTitle_AppCompat +style Base_TextAppearance_AppCompat +style Base_TextAppearance_AppCompat_Body1 +style Base_TextAppearance_AppCompat_Body2 +style Base_TextAppearance_AppCompat_Button +style Base_TextAppearance_AppCompat_Caption +style Base_TextAppearance_AppCompat_Display1 +style Base_TextAppearance_AppCompat_Display2 +style Base_TextAppearance_AppCompat_Display3 +style Base_TextAppearance_AppCompat_Display4 +style Base_TextAppearance_AppCompat_Headline +style Base_TextAppearance_AppCompat_Inverse +style Base_TextAppearance_AppCompat_Large +style Base_TextAppearance_AppCompat_Large_Inverse +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Medium +style Base_TextAppearance_AppCompat_Medium_Inverse +style Base_TextAppearance_AppCompat_Menu +style Base_TextAppearance_AppCompat_SearchResult +style Base_TextAppearance_AppCompat_SearchResult_Subtitle +style Base_TextAppearance_AppCompat_SearchResult_Title +style Base_TextAppearance_AppCompat_Small +style Base_TextAppearance_AppCompat_Small_Inverse +style Base_TextAppearance_AppCompat_Subhead +style Base_TextAppearance_AppCompat_Subhead_Inverse +style Base_TextAppearance_AppCompat_Title +style Base_TextAppearance_AppCompat_Title_Inverse +style Base_TextAppearance_AppCompat_Tooltip +style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionMode_Title +style Base_TextAppearance_AppCompat_Widget_Button +style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Inverse +style Base_TextAppearance_AppCompat_Widget_DropDownItem +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Widget_Switch +style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style Base_TextAppearance_Widget_AppCompat_Toolbar_Title +style Base_ThemeOverlay_AppCompat +style Base_ThemeOverlay_AppCompat_ActionBar +style Base_ThemeOverlay_AppCompat_Dark +style Base_ThemeOverlay_AppCompat_Dark_ActionBar +style Base_ThemeOverlay_AppCompat_Dialog +style Base_ThemeOverlay_AppCompat_Dialog_Alert +style Base_ThemeOverlay_AppCompat_Light +style Base_Theme_AppCompat +style Base_Theme_AppCompat_CompactMenu +style Base_Theme_AppCompat_Dialog +style Base_Theme_AppCompat_DialogWhenLarge +style Base_Theme_AppCompat_Dialog_Alert +style Base_Theme_AppCompat_Dialog_FixedSize +style Base_Theme_AppCompat_Dialog_MinWidth +style Base_Theme_AppCompat_Light +style Base_Theme_AppCompat_Light_DarkActionBar +style Base_Theme_AppCompat_Light_Dialog +style Base_Theme_AppCompat_Light_DialogWhenLarge +style Base_Theme_AppCompat_Light_Dialog_Alert +style Base_Theme_AppCompat_Light_Dialog_FixedSize +style Base_Theme_AppCompat_Light_Dialog_MinWidth +style Base_V21_ThemeOverlay_AppCompat_Dialog +style Base_V21_Theme_AppCompat +style Base_V21_Theme_AppCompat_Dialog +style Base_V21_Theme_AppCompat_Light +style Base_V21_Theme_AppCompat_Light_Dialog +style Base_V22_Theme_AppCompat +style Base_V22_Theme_AppCompat_Light +style Base_V23_Theme_AppCompat +style Base_V23_Theme_AppCompat_Light +style Base_V26_Theme_AppCompat +style Base_V26_Theme_AppCompat_Light +style Base_V26_Widget_AppCompat_Toolbar +style Base_V28_Theme_AppCompat +style Base_V28_Theme_AppCompat_Light +style Base_V7_ThemeOverlay_AppCompat_Dialog +style Base_V7_Theme_AppCompat +style Base_V7_Theme_AppCompat_Dialog +style Base_V7_Theme_AppCompat_Light +style Base_V7_Theme_AppCompat_Light_Dialog +style Base_V7_Widget_AppCompat_AutoCompleteTextView +style Base_V7_Widget_AppCompat_EditText +style Base_V7_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_ActionBar +style Base_Widget_AppCompat_ActionBar_Solid +style Base_Widget_AppCompat_ActionBar_TabBar +style Base_Widget_AppCompat_ActionBar_TabText +style Base_Widget_AppCompat_ActionBar_TabView +style Base_Widget_AppCompat_ActionButton +style Base_Widget_AppCompat_ActionButton_CloseMode +style Base_Widget_AppCompat_ActionButton_Overflow +style Base_Widget_AppCompat_ActionMode +style Base_Widget_AppCompat_ActivityChooserView +style Base_Widget_AppCompat_AutoCompleteTextView +style Base_Widget_AppCompat_Button +style Base_Widget_AppCompat_ButtonBar +style Base_Widget_AppCompat_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Borderless +style Base_Widget_AppCompat_Button_Borderless_Colored +style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Colored +style Base_Widget_AppCompat_Button_Small +style Base_Widget_AppCompat_CompoundButton_CheckBox +style Base_Widget_AppCompat_CompoundButton_RadioButton +style Base_Widget_AppCompat_CompoundButton_Switch +style Base_Widget_AppCompat_DrawerArrowToggle +style Base_Widget_AppCompat_DrawerArrowToggle_Common +style Base_Widget_AppCompat_DropDownItem_Spinner +style Base_Widget_AppCompat_EditText +style Base_Widget_AppCompat_ImageButton +style Base_Widget_AppCompat_Light_ActionBar +style Base_Widget_AppCompat_Light_ActionBar_Solid +style Base_Widget_AppCompat_Light_ActionBar_TabBar +style Base_Widget_AppCompat_Light_ActionBar_TabText +style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Base_Widget_AppCompat_Light_ActionBar_TabView +style Base_Widget_AppCompat_Light_PopupMenu +style Base_Widget_AppCompat_Light_PopupMenu_Overflow +style Base_Widget_AppCompat_ListMenuView +style Base_Widget_AppCompat_ListPopupWindow +style Base_Widget_AppCompat_ListView +style Base_Widget_AppCompat_ListView_DropDown +style Base_Widget_AppCompat_ListView_Menu +style Base_Widget_AppCompat_PopupMenu +style Base_Widget_AppCompat_PopupMenu_Overflow +style Base_Widget_AppCompat_PopupWindow +style Base_Widget_AppCompat_ProgressBar +style Base_Widget_AppCompat_ProgressBar_Horizontal +style Base_Widget_AppCompat_RatingBar +style Base_Widget_AppCompat_RatingBar_Indicator +style Base_Widget_AppCompat_RatingBar_Small +style Base_Widget_AppCompat_SearchView +style Base_Widget_AppCompat_SearchView_ActionBar +style Base_Widget_AppCompat_SeekBar +style Base_Widget_AppCompat_SeekBar_Discrete +style Base_Widget_AppCompat_Spinner +style Base_Widget_AppCompat_Spinner_Underlined +style Base_Widget_AppCompat_TextView +style Base_Widget_AppCompat_TextView_SpinnerItem +style Base_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_Toolbar_Button_Navigation +style Platform_AppCompat +style Platform_AppCompat_Light +style Platform_ThemeOverlay_AppCompat +style Platform_ThemeOverlay_AppCompat_Dark +style Platform_ThemeOverlay_AppCompat_Light +style Platform_V21_AppCompat +style Platform_V21_AppCompat_Light +style Platform_V25_AppCompat +style Platform_V25_AppCompat_Light +style Platform_Widget_AppCompat_Spinner +style RtlOverlay_DialogWindowTitle_AppCompat +style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +style RtlOverlay_Widget_AppCompat_DialogTitle_Icon +style RtlOverlay_Widget_AppCompat_PopupMenuItem +style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +style RtlOverlay_Widget_AppCompat_SearchView_MagIcon +style RtlOverlay_Widget_AppCompat_Search_DropDown +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Query +style RtlOverlay_Widget_AppCompat_Search_DropDown_Text +style RtlUnderlay_Widget_AppCompat_ActionButton +style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +style TextAppearance_AppCompat +style TextAppearance_AppCompat_Body1 +style TextAppearance_AppCompat_Body2 +style TextAppearance_AppCompat_Button +style TextAppearance_AppCompat_Caption +style TextAppearance_AppCompat_Display1 +style TextAppearance_AppCompat_Display2 +style TextAppearance_AppCompat_Display3 +style TextAppearance_AppCompat_Display4 +style TextAppearance_AppCompat_Headline +style TextAppearance_AppCompat_Inverse +style TextAppearance_AppCompat_Large +style TextAppearance_AppCompat_Large_Inverse +style TextAppearance_AppCompat_Light_SearchResult_Subtitle +style TextAppearance_AppCompat_Light_SearchResult_Title +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Medium +style TextAppearance_AppCompat_Medium_Inverse +style TextAppearance_AppCompat_Menu +style TextAppearance_AppCompat_SearchResult_Subtitle +style TextAppearance_AppCompat_SearchResult_Title +style TextAppearance_AppCompat_Small +style TextAppearance_AppCompat_Small_Inverse +style TextAppearance_AppCompat_Subhead +style TextAppearance_AppCompat_Subhead_Inverse +style TextAppearance_AppCompat_Title +style TextAppearance_AppCompat_Title_Inverse +style TextAppearance_AppCompat_Tooltip +style TextAppearance_AppCompat_Widget_ActionBar_Menu +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionBar_Title +style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Title +style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +style TextAppearance_AppCompat_Widget_Button +style TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style TextAppearance_AppCompat_Widget_Button_Colored +style TextAppearance_AppCompat_Widget_Button_Inverse +style TextAppearance_AppCompat_Widget_DropDownItem +style TextAppearance_AppCompat_Widget_PopupMenu_Header +style TextAppearance_AppCompat_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Widget_Switch +style TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style TextAppearance_Compat_Notification +style TextAppearance_Compat_Notification_Info +style TextAppearance_Compat_Notification_Info_Media +style TextAppearance_Compat_Notification_Line2 +style TextAppearance_Compat_Notification_Line2_Media +style TextAppearance_Compat_Notification_Media +style TextAppearance_Compat_Notification_Time +style TextAppearance_Compat_Notification_Time_Media +style TextAppearance_Compat_Notification_Title +style TextAppearance_Compat_Notification_Title_Media +style TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style TextAppearance_Widget_AppCompat_Toolbar_Title +style ThemeOverlay_AppCompat +style ThemeOverlay_AppCompat_ActionBar +style ThemeOverlay_AppCompat_Dark +style ThemeOverlay_AppCompat_Dark_ActionBar +style ThemeOverlay_AppCompat_DayNight +style ThemeOverlay_AppCompat_DayNight_ActionBar +style ThemeOverlay_AppCompat_Dialog +style ThemeOverlay_AppCompat_Dialog_Alert +style ThemeOverlay_AppCompat_Light +style Theme_AppCompat +style Theme_AppCompat_CompactMenu +style Theme_AppCompat_DayNight +style Theme_AppCompat_DayNight_DarkActionBar +style Theme_AppCompat_DayNight_Dialog +style Theme_AppCompat_DayNight_DialogWhenLarge +style Theme_AppCompat_DayNight_Dialog_Alert +style Theme_AppCompat_DayNight_Dialog_MinWidth +style Theme_AppCompat_DayNight_NoActionBar +style Theme_AppCompat_Dialog +style Theme_AppCompat_DialogWhenLarge +style Theme_AppCompat_Dialog_Alert +style Theme_AppCompat_Dialog_MinWidth +style Theme_AppCompat_Light +style Theme_AppCompat_Light_DarkActionBar +style Theme_AppCompat_Light_Dialog +style Theme_AppCompat_Light_DialogWhenLarge +style Theme_AppCompat_Light_Dialog_Alert +style Theme_AppCompat_Light_Dialog_MinWidth +style Theme_AppCompat_Light_NoActionBar +style Theme_AppCompat_NoActionBar +style Theme_AppMain +style Widget_AppCompat_ActionBar +style Widget_AppCompat_ActionBar_Solid +style Widget_AppCompat_ActionBar_TabBar +style Widget_AppCompat_ActionBar_TabText +style Widget_AppCompat_ActionBar_TabView +style Widget_AppCompat_ActionButton +style Widget_AppCompat_ActionButton_CloseMode +style Widget_AppCompat_ActionButton_Overflow +style Widget_AppCompat_ActionMode +style Widget_AppCompat_ActivityChooserView +style Widget_AppCompat_AutoCompleteTextView +style Widget_AppCompat_Button +style Widget_AppCompat_ButtonBar +style Widget_AppCompat_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Borderless +style Widget_AppCompat_Button_Borderless_Colored +style Widget_AppCompat_Button_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Colored +style Widget_AppCompat_Button_Small +style Widget_AppCompat_CompoundButton_CheckBox +style Widget_AppCompat_CompoundButton_RadioButton +style Widget_AppCompat_CompoundButton_Switch +style Widget_AppCompat_DrawerArrowToggle +style Widget_AppCompat_DropDownItem_Spinner +style Widget_AppCompat_EditText +style Widget_AppCompat_ImageButton +style Widget_AppCompat_Light_ActionBar +style Widget_AppCompat_Light_ActionBar_Solid +style Widget_AppCompat_Light_ActionBar_Solid_Inverse +style Widget_AppCompat_Light_ActionBar_TabBar +style Widget_AppCompat_Light_ActionBar_TabBar_Inverse +style Widget_AppCompat_Light_ActionBar_TabText +style Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Widget_AppCompat_Light_ActionBar_TabView +style Widget_AppCompat_Light_ActionBar_TabView_Inverse +style Widget_AppCompat_Light_ActionButton +style Widget_AppCompat_Light_ActionButton_CloseMode +style Widget_AppCompat_Light_ActionButton_Overflow +style Widget_AppCompat_Light_ActionMode_Inverse +style Widget_AppCompat_Light_ActivityChooserView +style Widget_AppCompat_Light_AutoCompleteTextView +style Widget_AppCompat_Light_DropDownItem_Spinner +style Widget_AppCompat_Light_ListPopupWindow +style Widget_AppCompat_Light_ListView_DropDown +style Widget_AppCompat_Light_PopupMenu +style Widget_AppCompat_Light_PopupMenu_Overflow +style Widget_AppCompat_Light_SearchView +style Widget_AppCompat_Light_Spinner_DropDown_ActionBar +style Widget_AppCompat_ListMenuView +style Widget_AppCompat_ListPopupWindow +style Widget_AppCompat_ListView +style Widget_AppCompat_ListView_DropDown +style Widget_AppCompat_ListView_Menu +style Widget_AppCompat_PopupMenu +style Widget_AppCompat_PopupMenu_Overflow +style Widget_AppCompat_PopupWindow +style Widget_AppCompat_ProgressBar +style Widget_AppCompat_ProgressBar_Horizontal +style Widget_AppCompat_RatingBar +style Widget_AppCompat_RatingBar_Indicator +style Widget_AppCompat_RatingBar_Small +style Widget_AppCompat_SearchView +style Widget_AppCompat_SearchView_ActionBar +style Widget_AppCompat_SeekBar +style Widget_AppCompat_SeekBar_Discrete +style Widget_AppCompat_Spinner +style Widget_AppCompat_Spinner_DropDown +style Widget_AppCompat_Spinner_DropDown_ActionBar +style Widget_AppCompat_Spinner_Underlined +style Widget_AppCompat_TextView +style Widget_AppCompat_TextView_SpinnerItem +style Widget_AppCompat_Toolbar +style Widget_AppCompat_Toolbar_Button_Navigation +style Widget_Compat_NotificationActionContainer +style Widget_Compat_NotificationActionText +style Widget_Support_CoordinatorLayout +style customHeartHeartRatingBarStyle +styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle +styleable ActionBarLayout android_layout_gravity +styleable ActionMenuItemView android_minWidth +styleable ActionMenuView +styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle +styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount +styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout +styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible +styleable AnimatedStateListDrawableItem android_drawable android_id +styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId +styleable AppCompatImageView android_src srcCompat tint tintMode +styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode +styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance +styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale +styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle +styleable AutoScannerView btmText btmTextSize maskColor scanline showRectLine topText topTextSize triAngleColor triAngleLength triAngleWidth +styleable ButtonBarLayout allowStacking +styleable ColorStateListItem alpha android_alpha android_color +styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode +styleable ConstraintLayout_Layout android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation barrierAllowsGoneWidgets barrierDirection chainUseRtl constraintSet constraint_referenced_ids layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_optimizationLevel +styleable ConstraintLayout_placeholder content emptyVisibility +styleable ConstraintSet android_alpha android_elevation android_id android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ android_visibility barrierAllowsGoneWidgets barrierDirection chainUseRtl constraint_referenced_ids layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop +styleable CoordinatorLayout keylines statusBarBackground +styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline +styleable CustomCircleImageView civ_border_color civ_border_overlay civ_border_width civ_fill_color +styleable CustomRatingBar OtherHeartImg clickable elenmentCount elenmentEmpty elenmentFill elenmentHarf elenmentHeight elenmentPadding elenmentStep elenmentWidth stepSize +styleable DiscreteScrollView dsv_orientation +styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness +styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery +styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex +styleable GenericDraweeHierarchy actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio +styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type +styleable GradientColorItem android_color android_offset +styleable LinearConstraintLayout android_orientation +styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers +styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width +styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset +styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible +styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText +styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow +styleable MogoImageView miv_blurRadius miv_borderColor miv_bottomLeftRadius miv_bottomRightRadius miv_failureHolder miv_isBlur miv_overlayImageId miv_placeHolder miv_radius miv_shape miv_shapeBorderWidth miv_topLeftRadius miv_topRightRadius +styleable MogoSkinBackgroundHelper android_background +styleable MogoSkinCompatImageView android_src android_tint srcCompat tint +styleable MogoSkinCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance +styleable MogoSkinTextAppearance android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textSize android_textStyle android_typeface textAllCaps +styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor +styleable PopupWindowBackgroundState state_above_anchor +styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle +styleable RecyclerView android_clipToPadding android_descendantFocusability android_orientation fastScrollEnabled fastScrollHorizontalThumbDrawable fastScrollHorizontalTrackDrawable fastScrollVerticalThumbDrawable fastScrollVerticalTrackDrawable layoutManager reverseLayout spanCount stackFromEnd +styleable RoundLayout roundLayoutRadius +styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon +styleable SimpleDraweeView actualImageResource actualImageScaleType actualImageUri backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio +styleable SkinCompatProgressBar android_indeterminateDrawable android_progressDrawable +styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme +styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible +styleable StateListDrawableItem android_drawable +styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode +styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale +styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor +styleable View android_focusable android_theme paddingEnd paddingStart theme +styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode +styleable ViewPager2 android_orientation +styleable ViewStubCompat android_id android_inflatedId android_layout diff --git a/modules/mogo-module-guide/build/intermediates/runtime_library_classes/debug/classes.jar b/modules/mogo-module-guide/build/intermediates/runtime_library_classes/debug/classes.jar new file mode 100644 index 0000000000..13d39ccc04 Binary files /dev/null and b/modules/mogo-module-guide/build/intermediates/runtime_library_classes/debug/classes.jar differ diff --git a/modules/mogo-module-guide/build/intermediates/symbols/debug/R.txt b/modules/mogo-module-guide/build/intermediates/symbols/debug/R.txt new file mode 100644 index 0000000000..8da3789f05 --- /dev/null +++ b/modules/mogo-module-guide/build/intermediates/symbols/debug/R.txt @@ -0,0 +1,3936 @@ +int anim abc_fade_in 0x7f010001 +int anim abc_fade_out 0x7f010002 +int anim abc_grow_fade_in_from_bottom 0x7f010003 +int anim abc_popup_enter 0x7f010004 +int anim abc_popup_exit 0x7f010005 +int anim abc_shrink_fade_out_from_bottom 0x7f010006 +int anim abc_slide_in_bottom 0x7f010007 +int anim abc_slide_in_top 0x7f010008 +int anim abc_slide_out_bottom 0x7f010009 +int anim abc_slide_out_top 0x7f01000a +int anim abc_tooltip_enter 0x7f01000b +int anim abc_tooltip_exit 0x7f01000c +int anim btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000d +int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000e +int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000f +int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f010010 +int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010011 +int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010012 +int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010013 +int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010014 +int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010015 +int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010016 +int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010017 +int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010018 +int attr OtherHeartImg 0x7f040001 +int attr actionBarDivider 0x7f040002 +int attr actionBarItemBackground 0x7f040003 +int attr actionBarPopupTheme 0x7f040004 +int attr actionBarSize 0x7f040005 +int attr actionBarSplitStyle 0x7f040006 +int attr actionBarStyle 0x7f040007 +int attr actionBarTabBarStyle 0x7f040008 +int attr actionBarTabStyle 0x7f040009 +int attr actionBarTabTextStyle 0x7f04000a +int attr actionBarTheme 0x7f04000b +int attr actionBarWidgetTheme 0x7f04000c +int attr actionButtonStyle 0x7f04000d +int attr actionDropDownStyle 0x7f04000e +int attr actionLayout 0x7f04000f +int attr actionMenuTextAppearance 0x7f040010 +int attr actionMenuTextColor 0x7f040011 +int attr actionModeBackground 0x7f040012 +int attr actionModeCloseButtonStyle 0x7f040013 +int attr actionModeCloseDrawable 0x7f040014 +int attr actionModeCopyDrawable 0x7f040015 +int attr actionModeCutDrawable 0x7f040016 +int attr actionModeFindDrawable 0x7f040017 +int attr actionModePasteDrawable 0x7f040018 +int attr actionModePopupWindowStyle 0x7f040019 +int attr actionModeSelectAllDrawable 0x7f04001a +int attr actionModeShareDrawable 0x7f04001b +int attr actionModeSplitBackground 0x7f04001c +int attr actionModeStyle 0x7f04001d +int attr actionModeWebSearchDrawable 0x7f04001e +int attr actionOverflowButtonStyle 0x7f04001f +int attr actionOverflowMenuStyle 0x7f040020 +int attr actionProviderClass 0x7f040021 +int attr actionViewClass 0x7f040022 +int attr activityChooserViewStyle 0x7f040023 +int attr actualImageResource 0x7f040024 +int attr actualImageScaleType 0x7f040025 +int attr actualImageUri 0x7f040026 +int attr alertDialogButtonGroupStyle 0x7f040027 +int attr alertDialogCenterButtons 0x7f040028 +int attr alertDialogStyle 0x7f040029 +int attr alertDialogTheme 0x7f04002a +int attr allowStacking 0x7f04002b +int attr alpha 0x7f04002c +int attr alphabeticModifiers 0x7f04002d +int attr arrowHeadLength 0x7f04002e +int attr arrowShaftLength 0x7f04002f +int attr autoCompleteTextViewStyle 0x7f040030 +int attr autoSizeMaxTextSize 0x7f040031 +int attr autoSizeMinTextSize 0x7f040032 +int attr autoSizePresetSizes 0x7f040033 +int attr autoSizeStepGranularity 0x7f040034 +int attr autoSizeTextType 0x7f040035 +int attr background 0x7f040036 +int attr backgroundImage 0x7f040037 +int attr backgroundSplit 0x7f040038 +int attr backgroundStacked 0x7f040039 +int attr backgroundTint 0x7f04003a +int attr backgroundTintMode 0x7f04003b +int attr barLength 0x7f04003c +int attr barrierAllowsGoneWidgets 0x7f04003d +int attr barrierDirection 0x7f04003e +int attr borderlessButtonStyle 0x7f04003f +int attr btmText 0x7f040040 +int attr btmTextSize 0x7f040041 +int attr buttonBarButtonStyle 0x7f040042 +int attr buttonBarNegativeButtonStyle 0x7f040043 +int attr buttonBarNeutralButtonStyle 0x7f040044 +int attr buttonBarPositiveButtonStyle 0x7f040045 +int attr buttonBarStyle 0x7f040046 +int attr buttonCompat 0x7f040047 +int attr buttonGravity 0x7f040048 +int attr buttonIconDimen 0x7f040049 +int attr buttonPanelSideLayout 0x7f04004a +int attr buttonStyle 0x7f04004b +int attr buttonStyleSmall 0x7f04004c +int attr buttonTint 0x7f04004d +int attr buttonTintMode 0x7f04004e +int attr chainUseRtl 0x7f04004f +int attr checkboxStyle 0x7f040050 +int attr checkedTextViewStyle 0x7f040051 +int attr civ_border_color 0x7f040052 +int attr civ_border_overlay 0x7f040053 +int attr civ_border_width 0x7f040054 +int attr civ_fill_color 0x7f040055 +int attr clickable 0x7f040056 +int attr closeIcon 0x7f040057 +int attr closeItemLayout 0x7f040058 +int attr collapseContentDescription 0x7f040059 +int attr collapseIcon 0x7f04005a +int attr color 0x7f04005b +int attr colorAccent 0x7f04005c +int attr colorBackgroundFloating 0x7f04005d +int attr colorButtonNormal 0x7f04005e +int attr colorControlActivated 0x7f04005f +int attr colorControlHighlight 0x7f040060 +int attr colorControlNormal 0x7f040061 +int attr colorError 0x7f040062 +int attr colorPrimary 0x7f040063 +int attr colorPrimaryDark 0x7f040064 +int attr colorSwitchThumbNormal 0x7f040065 +int attr commitIcon 0x7f040066 +int attr constraintSet 0x7f040067 +int attr constraint_referenced_ids 0x7f040068 +int attr content 0x7f040069 +int attr contentDescription 0x7f04006a +int attr contentInsetEnd 0x7f04006b +int attr contentInsetEndWithActions 0x7f04006c +int attr contentInsetLeft 0x7f04006d +int attr contentInsetRight 0x7f04006e +int attr contentInsetStart 0x7f04006f +int attr contentInsetStartWithNavigation 0x7f040070 +int attr controlBackground 0x7f040071 +int attr coordinatorLayoutStyle 0x7f040072 +int attr customNavigationLayout 0x7f040073 +int attr defaultQueryHint 0x7f040074 +int attr dialogCornerRadius 0x7f040075 +int attr dialogPreferredPadding 0x7f040076 +int attr dialogTheme 0x7f040077 +int attr displayOptions 0x7f040078 +int attr divider 0x7f040079 +int attr dividerHorizontal 0x7f04007a +int attr dividerPadding 0x7f04007b +int attr dividerVertical 0x7f04007c +int attr drawableBottomCompat 0x7f04007d +int attr drawableEndCompat 0x7f04007e +int attr drawableLeftCompat 0x7f04007f +int attr drawableRightCompat 0x7f040080 +int attr drawableSize 0x7f040081 +int attr drawableStartCompat 0x7f040082 +int attr drawableTint 0x7f040083 +int attr drawableTintMode 0x7f040084 +int attr drawableTopCompat 0x7f040085 +int attr drawerArrowStyle 0x7f040086 +int attr dropDownListViewStyle 0x7f040087 +int attr dropdownListPreferredItemHeight 0x7f040088 +int attr dsv_orientation 0x7f040089 +int attr editTextBackground 0x7f04008a +int attr editTextColor 0x7f04008b +int attr editTextStyle 0x7f04008c +int attr elenmentCount 0x7f04008d +int attr elenmentEmpty 0x7f04008e +int attr elenmentFill 0x7f04008f +int attr elenmentHarf 0x7f040090 +int attr elenmentHeight 0x7f040091 +int attr elenmentPadding 0x7f040092 +int attr elenmentStep 0x7f040093 +int attr elenmentWidth 0x7f040094 +int attr elevation 0x7f040095 +int attr emptyVisibility 0x7f040096 +int attr expandActivityOverflowButtonDrawable 0x7f040097 +int attr fadeDuration 0x7f040098 +int attr failureImage 0x7f040099 +int attr failureImageScaleType 0x7f04009a +int attr fastScrollEnabled 0x7f04009b +int attr fastScrollHorizontalThumbDrawable 0x7f04009c +int attr fastScrollHorizontalTrackDrawable 0x7f04009d +int attr fastScrollVerticalThumbDrawable 0x7f04009e +int attr fastScrollVerticalTrackDrawable 0x7f04009f +int attr firstBaselineToTopHeight 0x7f0400a0 +int attr font 0x7f0400a1 +int attr fontFamily 0x7f0400a2 +int attr fontProviderAuthority 0x7f0400a3 +int attr fontProviderCerts 0x7f0400a4 +int attr fontProviderFetchStrategy 0x7f0400a5 +int attr fontProviderFetchTimeout 0x7f0400a6 +int attr fontProviderPackage 0x7f0400a7 +int attr fontProviderQuery 0x7f0400a8 +int attr fontStyle 0x7f0400a9 +int attr fontVariationSettings 0x7f0400aa +int attr fontWeight 0x7f0400ab +int attr gapBetweenBars 0x7f0400ac +int attr goIcon 0x7f0400ad +int attr height 0x7f0400ae +int attr hideOnContentScroll 0x7f0400af +int attr homeAsUpIndicator 0x7f0400b0 +int attr homeLayout 0x7f0400b1 +int attr icon 0x7f0400b2 +int attr iconTint 0x7f0400b3 +int attr iconTintMode 0x7f0400b4 +int attr iconifiedByDefault 0x7f0400b5 +int attr imageButtonStyle 0x7f0400b6 +int attr indeterminateProgressStyle 0x7f0400b7 +int attr initialActivityCount 0x7f0400b8 +int attr isLightTheme 0x7f0400b9 +int attr itemPadding 0x7f0400ba +int attr keylines 0x7f0400bb +int attr lastBaselineToBottomHeight 0x7f0400bc +int attr layout 0x7f0400bd +int attr layoutManager 0x7f0400be +int attr layout_anchor 0x7f0400bf +int attr layout_anchorGravity 0x7f0400c0 +int attr layout_behavior 0x7f0400c1 +int attr layout_constrainedHeight 0x7f0400c2 +int attr layout_constrainedWidth 0x7f0400c3 +int attr layout_constraintBaseline_creator 0x7f0400c4 +int attr layout_constraintBaseline_toBaselineOf 0x7f0400c5 +int attr layout_constraintBottom_creator 0x7f0400c6 +int attr layout_constraintBottom_toBottomOf 0x7f0400c7 +int attr layout_constraintBottom_toTopOf 0x7f0400c8 +int attr layout_constraintCircle 0x7f0400c9 +int attr layout_constraintCircleAngle 0x7f0400ca +int attr layout_constraintCircleRadius 0x7f0400cb +int attr layout_constraintDimensionRatio 0x7f0400cc +int attr layout_constraintEnd_toEndOf 0x7f0400cd +int attr layout_constraintEnd_toStartOf 0x7f0400ce +int attr layout_constraintGuide_begin 0x7f0400cf +int attr layout_constraintGuide_end 0x7f0400d0 +int attr layout_constraintGuide_percent 0x7f0400d1 +int attr layout_constraintHeight_default 0x7f0400d2 +int attr layout_constraintHeight_max 0x7f0400d3 +int attr layout_constraintHeight_min 0x7f0400d4 +int attr layout_constraintHeight_percent 0x7f0400d5 +int attr layout_constraintHorizontal_bias 0x7f0400d6 +int attr layout_constraintHorizontal_chainStyle 0x7f0400d7 +int attr layout_constraintHorizontal_weight 0x7f0400d8 +int attr layout_constraintLeft_creator 0x7f0400d9 +int attr layout_constraintLeft_toLeftOf 0x7f0400da +int attr layout_constraintLeft_toRightOf 0x7f0400db +int attr layout_constraintRight_creator 0x7f0400dc +int attr layout_constraintRight_toLeftOf 0x7f0400dd +int attr layout_constraintRight_toRightOf 0x7f0400de +int attr layout_constraintStart_toEndOf 0x7f0400df +int attr layout_constraintStart_toStartOf 0x7f0400e0 +int attr layout_constraintTop_creator 0x7f0400e1 +int attr layout_constraintTop_toBottomOf 0x7f0400e2 +int attr layout_constraintTop_toTopOf 0x7f0400e3 +int attr layout_constraintVertical_bias 0x7f0400e4 +int attr layout_constraintVertical_chainStyle 0x7f0400e5 +int attr layout_constraintVertical_weight 0x7f0400e6 +int attr layout_constraintWidth_default 0x7f0400e7 +int attr layout_constraintWidth_max 0x7f0400e8 +int attr layout_constraintWidth_min 0x7f0400e9 +int attr layout_constraintWidth_percent 0x7f0400ea +int attr layout_dodgeInsetEdges 0x7f0400eb +int attr layout_editor_absoluteX 0x7f0400ec +int attr layout_editor_absoluteY 0x7f0400ed +int attr layout_goneMarginBottom 0x7f0400ee +int attr layout_goneMarginEnd 0x7f0400ef +int attr layout_goneMarginLeft 0x7f0400f0 +int attr layout_goneMarginRight 0x7f0400f1 +int attr layout_goneMarginStart 0x7f0400f2 +int attr layout_goneMarginTop 0x7f0400f3 +int attr layout_insetEdge 0x7f0400f4 +int attr layout_keyline 0x7f0400f5 +int attr layout_optimizationLevel 0x7f0400f6 +int attr lineHeight 0x7f0400f7 +int attr listChoiceBackgroundIndicator 0x7f0400f8 +int attr listChoiceIndicatorMultipleAnimated 0x7f0400f9 +int attr listChoiceIndicatorSingleAnimated 0x7f0400fa +int attr listDividerAlertDialog 0x7f0400fb +int attr listItemLayout 0x7f0400fc +int attr listLayout 0x7f0400fd +int attr listMenuViewStyle 0x7f0400fe +int attr listPopupWindowStyle 0x7f0400ff +int attr listPreferredItemHeight 0x7f040100 +int attr listPreferredItemHeightLarge 0x7f040101 +int attr listPreferredItemHeightSmall 0x7f040102 +int attr listPreferredItemPaddingEnd 0x7f040103 +int attr listPreferredItemPaddingLeft 0x7f040104 +int attr listPreferredItemPaddingRight 0x7f040105 +int attr listPreferredItemPaddingStart 0x7f040106 +int attr logo 0x7f040107 +int attr logoDescription 0x7f040108 +int attr maskColor 0x7f040109 +int attr maxButtonHeight 0x7f04010a +int attr measureWithLargestChild 0x7f04010b +int attr menu 0x7f04010c +int attr miv_blurRadius 0x7f04010d +int attr miv_borderColor 0x7f04010e +int attr miv_bottomLeftRadius 0x7f04010f +int attr miv_bottomRightRadius 0x7f040110 +int attr miv_failureHolder 0x7f040111 +int attr miv_isBlur 0x7f040112 +int attr miv_overlayImageId 0x7f040113 +int attr miv_placeHolder 0x7f040114 +int attr miv_radius 0x7f040115 +int attr miv_shape 0x7f040116 +int attr miv_shapeBorderWidth 0x7f040117 +int attr miv_topLeftRadius 0x7f040118 +int attr miv_topRightRadius 0x7f040119 +int attr multiChoiceItemLayout 0x7f04011a +int attr navigationContentDescription 0x7f04011b +int attr navigationIcon 0x7f04011c +int attr navigationMode 0x7f04011d +int attr numericModifiers 0x7f04011e +int attr overlapAnchor 0x7f04011f +int attr overlayImage 0x7f040120 +int attr paddingBottomNoButtons 0x7f040121 +int attr paddingEnd 0x7f040122 +int attr paddingStart 0x7f040123 +int attr paddingTopNoTitle 0x7f040124 +int attr panelBackground 0x7f040125 +int attr panelMenuListTheme 0x7f040126 +int attr panelMenuListWidth 0x7f040127 +int attr placeholderImage 0x7f040128 +int attr placeholderImageScaleType 0x7f040129 +int attr popupMenuStyle 0x7f04012a +int attr popupTheme 0x7f04012b +int attr popupWindowStyle 0x7f04012c +int attr preserveIconSpacing 0x7f04012d +int attr pressedStateOverlayImage 0x7f04012e +int attr progressBarAutoRotateInterval 0x7f04012f +int attr progressBarImage 0x7f040130 +int attr progressBarImageScaleType 0x7f040131 +int attr progressBarPadding 0x7f040132 +int attr progressBarStyle 0x7f040133 +int attr queryBackground 0x7f040134 +int attr queryHint 0x7f040135 +int attr radioButtonStyle 0x7f040136 +int attr ratingBarStyle 0x7f040137 +int attr ratingBarStyleIndicator 0x7f040138 +int attr ratingBarStyleSmall 0x7f040139 +int attr recyclerViewStyle 0x7f04013a +int attr retryImage 0x7f04013b +int attr retryImageScaleType 0x7f04013c +int attr reverseLayout 0x7f04013d +int attr roundAsCircle 0x7f04013e +int attr roundBottomEnd 0x7f04013f +int attr roundBottomLeft 0x7f040140 +int attr roundBottomRight 0x7f040141 +int attr roundBottomStart 0x7f040142 +int attr roundLayoutRadius 0x7f040143 +int attr roundTopEnd 0x7f040144 +int attr roundTopLeft 0x7f040145 +int attr roundTopRight 0x7f040146 +int attr roundTopStart 0x7f040147 +int attr roundWithOverlayColor 0x7f040148 +int attr roundedCornerRadius 0x7f040149 +int attr roundingBorderColor 0x7f04014a +int attr roundingBorderPadding 0x7f04014b +int attr roundingBorderWidth 0x7f04014c +int attr scanline 0x7f04014d +int attr searchHintIcon 0x7f04014e +int attr searchIcon 0x7f04014f +int attr searchViewStyle 0x7f040150 +int attr seekBarStyle 0x7f040151 +int attr selectableItemBackground 0x7f040152 +int attr selectableItemBackgroundBorderless 0x7f040153 +int attr showAsAction 0x7f040154 +int attr showDividers 0x7f040155 +int attr showRectLine 0x7f040156 +int attr showText 0x7f040157 +int attr showTitle 0x7f040158 +int attr singleChoiceItemLayout 0x7f040159 +int attr spanCount 0x7f04015a +int attr spinBars 0x7f04015b +int attr spinnerDropDownItemStyle 0x7f04015c +int attr spinnerStyle 0x7f04015d +int attr splitTrack 0x7f04015e +int attr srcCompat 0x7f04015f +int attr stackFromEnd 0x7f040160 +int attr state_above_anchor 0x7f040161 +int attr statusBarBackground 0x7f040162 +int attr stepSize 0x7f040163 +int attr subMenuArrow 0x7f040164 +int attr submitBackground 0x7f040165 +int attr subtitle 0x7f040166 +int attr subtitleTextAppearance 0x7f040167 +int attr subtitleTextColor 0x7f040168 +int attr subtitleTextStyle 0x7f040169 +int attr suggestionRowLayout 0x7f04016a +int attr switchMinWidth 0x7f04016b +int attr switchPadding 0x7f04016c +int attr switchStyle 0x7f04016d +int attr switchTextAppearance 0x7f04016e +int attr textAllCaps 0x7f04016f +int attr textAppearanceLargePopupMenu 0x7f040170 +int attr textAppearanceListItem 0x7f040171 +int attr textAppearanceListItemSecondary 0x7f040172 +int attr textAppearanceListItemSmall 0x7f040173 +int attr textAppearancePopupMenuHeader 0x7f040174 +int attr textAppearanceSearchResultSubtitle 0x7f040175 +int attr textAppearanceSearchResultTitle 0x7f040176 +int attr textAppearanceSmallPopupMenu 0x7f040177 +int attr textColorAlertDialogListItem 0x7f040178 +int attr textColorSearchUrl 0x7f040179 +int attr textLocale 0x7f04017a +int attr theme 0x7f04017b +int attr thickness 0x7f04017c +int attr thumbTextPadding 0x7f04017d +int attr thumbTint 0x7f04017e +int attr thumbTintMode 0x7f04017f +int attr tickMark 0x7f040180 +int attr tickMarkTint 0x7f040181 +int attr tickMarkTintMode 0x7f040182 +int attr tint 0x7f040183 +int attr tintMode 0x7f040184 +int attr title 0x7f040185 +int attr titleMargin 0x7f040186 +int attr titleMarginBottom 0x7f040187 +int attr titleMarginEnd 0x7f040188 +int attr titleMarginStart 0x7f040189 +int attr titleMarginTop 0x7f04018a +int attr titleMargins 0x7f04018b +int attr titleTextAppearance 0x7f04018c +int attr titleTextColor 0x7f04018d +int attr titleTextStyle 0x7f04018e +int attr toolbarNavigationButtonStyle 0x7f04018f +int attr toolbarStyle 0x7f040190 +int attr tooltipForegroundColor 0x7f040191 +int attr tooltipFrameBackground 0x7f040192 +int attr tooltipText 0x7f040193 +int attr topText 0x7f040194 +int attr topTextSize 0x7f040195 +int attr track 0x7f040196 +int attr trackTint 0x7f040197 +int attr trackTintMode 0x7f040198 +int attr triAngleColor 0x7f040199 +int attr triAngleLength 0x7f04019a +int attr triAngleWidth 0x7f04019b +int attr ttcIndex 0x7f04019c +int attr viewAspectRatio 0x7f04019d +int attr viewInflaterClass 0x7f04019e +int attr voiceIcon 0x7f04019f +int attr windowActionBar 0x7f0401a0 +int attr windowActionBarOverlay 0x7f0401a1 +int attr windowActionModeOverlay 0x7f0401a2 +int attr windowFixedHeightMajor 0x7f0401a3 +int attr windowFixedHeightMinor 0x7f0401a4 +int attr windowFixedWidthMajor 0x7f0401a5 +int attr windowFixedWidthMinor 0x7f0401a6 +int attr windowMinWidthMajor 0x7f0401a7 +int attr windowMinWidthMinor 0x7f0401a8 +int attr windowNoTitle 0x7f0401a9 +int bool abc_action_bar_embed_tabs 0x7f050001 +int bool abc_allow_stacked_button_bar 0x7f050002 +int bool abc_config_actionMenuItemAllCaps 0x7f050003 +int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f050004 +int color abc_background_cache_hint_selector_material_dark 0x7f060001 +int color abc_background_cache_hint_selector_material_light 0x7f060002 +int color abc_btn_colored_borderless_text_material 0x7f060003 +int color abc_btn_colored_text_material 0x7f060004 +int color abc_color_highlight_material 0x7f060005 +int color abc_hint_foreground_material_dark 0x7f060006 +int color abc_hint_foreground_material_light 0x7f060007 +int color abc_input_method_navigation_guard 0x7f060008 +int color abc_primary_text_disable_only_material_dark 0x7f060009 +int color abc_primary_text_disable_only_material_light 0x7f06000a +int color abc_primary_text_material_dark 0x7f06000b +int color abc_primary_text_material_light 0x7f06000c +int color abc_search_url_text 0x7f06000d +int color abc_search_url_text_normal 0x7f06000e +int color abc_search_url_text_pressed 0x7f06000f +int color abc_search_url_text_selected 0x7f060010 +int color abc_secondary_text_material_dark 0x7f060011 +int color abc_secondary_text_material_light 0x7f060012 +int color abc_tint_btn_checkable 0x7f060013 +int color abc_tint_default 0x7f060014 +int color abc_tint_edittext 0x7f060015 +int color abc_tint_seek_thumb 0x7f060016 +int color abc_tint_spinner 0x7f060017 +int color abc_tint_switch_track 0x7f060018 +int color accent_material_dark 0x7f060019 +int color accent_material_light 0x7f06001a +int color androidx_core_ripple_material_light 0x7f06001b +int color androidx_core_secondary_text_default_material_light 0x7f06001c +int color background_floating_material_dark 0x7f06001d +int color background_floating_material_light 0x7f06001e +int color background_material_dark 0x7f06001f +int color background_material_light 0x7f060020 +int color blue 0x7f060021 +int color bright_foreground_disabled_material_dark 0x7f060022 +int color bright_foreground_disabled_material_light 0x7f060023 +int color bright_foreground_inverse_material_dark 0x7f060024 +int color bright_foreground_inverse_material_light 0x7f060025 +int color bright_foreground_material_dark 0x7f060026 +int color bright_foreground_material_light 0x7f060027 +int color button_material_dark 0x7f060028 +int color button_material_light 0x7f060029 +int color colorPrimaryDark 0x7f06002a +int color color_pad_bg 0x7f06002b +int color dim_foreground_disabled_material_dark 0x7f06002c +int color dim_foreground_disabled_material_light 0x7f06002d +int color dim_foreground_material_dark 0x7f06002e +int color dim_foreground_material_light 0x7f06002f +int color error_color_material 0x7f060030 +int color error_color_material_dark 0x7f060031 +int color error_color_material_light 0x7f060032 +int color foreground_material_dark 0x7f060033 +int color foreground_material_light 0x7f060034 +int color green 0x7f060035 +int color highlighted_text_material_dark 0x7f060036 +int color highlighted_text_material_light 0x7f060037 +int color material_blue_grey_800 0x7f060038 +int color material_blue_grey_900 0x7f060039 +int color material_blue_grey_950 0x7f06003a +int color material_deep_teal_200 0x7f06003b +int color material_deep_teal_500 0x7f06003c +int color material_grey_100 0x7f06003d +int color material_grey_300 0x7f06003e +int color material_grey_50 0x7f06003f +int color material_grey_600 0x7f060040 +int color material_grey_800 0x7f060041 +int color material_grey_850 0x7f060042 +int color material_grey_900 0x7f060043 +int color module_authorize_affirm_text 0x7f060044 +int color module_authorize_color 0x7f060045 +int color module_authorize_loading_text 0x7f060046 +int color module_authorize_text 0x7f060047 +int color module_commons_FFF_333 0x7f060048 +int color module_commons_dlg_bkg 0x7f060049 +int color module_commons_wm_dialog_text_textColor 0x7f06004a +int color module_guide_blue_3B91FF 0x7f06004b +int color module_guide_indicator_dark 0x7f06004c +int color module_guide_indicator_white 0x7f06004d +int color module_service_info_window_content_textColor 0x7f06004e +int color module_services_dispatch_affirm_bg 0x7f06004f +int color module_services_dispatch_bg 0x7f060050 +int color module_services_dispatch_cars_background 0x7f060051 +int color module_services_dispatch_cars_cancel 0x7f060052 +int color module_services_dispatch_cars_count_down_bg 0x7f060053 +int color module_services_dispatch_cars_count_down_txt 0x7f060054 +int color module_services_dispatch_cars_line 0x7f060055 +int color module_services_dispatch_cars_text_loc 0x7f060056 +int color module_services_empty_tip_textColor 0x7f060057 +int color module_services_error_textColor 0x7f060058 +int color module_services_id_panel_item_avatar_border_color 0x7f060059 +int color module_services_load_strategy_textColor 0x7f06005a +int color module_services_online_car_panel_title_textColor 0x7f06005b +int color module_services_panel_item_detail_textColor 0x7f06005c +int color module_services_panel_item_distance_textColor 0x7f06005d +int color module_services_panel_item_nickname_textColor 0x7f06005e +int color modules_commons_toast_text_color 0x7f06005f +int color notification_action_color_filter 0x7f060060 +int color notification_icon_bg_color 0x7f060061 +int color notification_material_background_media_default_color 0x7f060062 +int color possible_result_points 0x7f060063 +int color primary_dark_material_dark 0x7f060064 +int color primary_dark_material_light 0x7f060065 +int color primary_material_dark 0x7f060066 +int color primary_material_light 0x7f060067 +int color primary_text_default_material_dark 0x7f060068 +int color primary_text_default_material_light 0x7f060069 +int color primary_text_disabled_material_dark 0x7f06006a +int color primary_text_disabled_material_light 0x7f06006b +int color result_points 0x7f06006c +int color result_view 0x7f06006d +int color ripple_material_dark 0x7f06006e +int color ripple_material_light 0x7f06006f +int color secondary_text_default_material_dark 0x7f060070 +int color secondary_text_default_material_light 0x7f060071 +int color secondary_text_disabled_material_dark 0x7f060072 +int color secondary_text_disabled_material_light 0x7f060073 +int color switch_thumb_disabled_material_dark 0x7f060074 +int color switch_thumb_disabled_material_light 0x7f060075 +int color switch_thumb_material_dark 0x7f060076 +int color switch_thumb_material_light 0x7f060077 +int color switch_thumb_normal_material_dark 0x7f060078 +int color switch_thumb_normal_material_light 0x7f060079 +int color tooltip_background_dark 0x7f06007a +int color tooltip_background_light 0x7f06007b +int color transparent 0x7f06007c +int color v2x_FFF_666 0x7f06007d +int color viewfinder_laser 0x7f06007e +int color viewfinder_mask 0x7f06007f +int color white 0x7f060080 +int dimen abc_action_bar_content_inset_material 0x7f070001 +int dimen abc_action_bar_content_inset_with_nav 0x7f070002 +int dimen abc_action_bar_default_height_material 0x7f070003 +int dimen abc_action_bar_default_padding_end_material 0x7f070004 +int dimen abc_action_bar_default_padding_start_material 0x7f070005 +int dimen abc_action_bar_elevation_material 0x7f070006 +int dimen abc_action_bar_icon_vertical_padding_material 0x7f070007 +int dimen abc_action_bar_overflow_padding_end_material 0x7f070008 +int dimen abc_action_bar_overflow_padding_start_material 0x7f070009 +int dimen abc_action_bar_progress_bar_size 0x7f07000a +int dimen abc_action_bar_stacked_max_height 0x7f07000b +int dimen abc_action_bar_stacked_tab_max_width 0x7f07000c +int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07000d +int dimen abc_action_bar_subtitle_top_margin_material 0x7f07000e +int dimen abc_action_button_min_height_material 0x7f07000f +int dimen abc_action_button_min_width_material 0x7f070010 +int dimen abc_action_button_min_width_overflow_material 0x7f070011 +int dimen abc_alert_dialog_button_bar_height 0x7f070012 +int dimen abc_alert_dialog_button_dimen 0x7f070013 +int dimen abc_button_inset_horizontal_material 0x7f070014 +int dimen abc_button_inset_vertical_material 0x7f070015 +int dimen abc_button_padding_horizontal_material 0x7f070016 +int dimen abc_button_padding_vertical_material 0x7f070017 +int dimen abc_cascading_menus_min_smallest_width 0x7f070018 +int dimen abc_config_prefDialogWidth 0x7f070019 +int dimen abc_control_corner_material 0x7f07001a +int dimen abc_control_inset_material 0x7f07001b +int dimen abc_control_padding_material 0x7f07001c +int dimen abc_dialog_corner_radius_material 0x7f07001d +int dimen abc_dialog_fixed_height_major 0x7f07001e +int dimen abc_dialog_fixed_height_minor 0x7f07001f +int dimen abc_dialog_fixed_width_major 0x7f070020 +int dimen abc_dialog_fixed_width_minor 0x7f070021 +int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f070022 +int dimen abc_dialog_list_padding_top_no_title 0x7f070023 +int dimen abc_dialog_min_width_major 0x7f070024 +int dimen abc_dialog_min_width_minor 0x7f070025 +int dimen abc_dialog_padding_material 0x7f070026 +int dimen abc_dialog_padding_top_material 0x7f070027 +int dimen abc_dialog_title_divider_material 0x7f070028 +int dimen abc_disabled_alpha_material_dark 0x7f070029 +int dimen abc_disabled_alpha_material_light 0x7f07002a +int dimen abc_dropdownitem_icon_width 0x7f07002b +int dimen abc_dropdownitem_text_padding_left 0x7f07002c +int dimen abc_dropdownitem_text_padding_right 0x7f07002d +int dimen abc_edit_text_inset_bottom_material 0x7f07002e +int dimen abc_edit_text_inset_horizontal_material 0x7f07002f +int dimen abc_edit_text_inset_top_material 0x7f070030 +int dimen abc_floating_window_z 0x7f070031 +int dimen abc_list_item_height_large_material 0x7f070032 +int dimen abc_list_item_height_material 0x7f070033 +int dimen abc_list_item_height_small_material 0x7f070034 +int dimen abc_list_item_padding_horizontal_material 0x7f070035 +int dimen abc_panel_menu_list_width 0x7f070036 +int dimen abc_progress_bar_height_material 0x7f070037 +int dimen abc_search_view_preferred_height 0x7f070038 +int dimen abc_search_view_preferred_width 0x7f070039 +int dimen abc_seekbar_track_background_height_material 0x7f07003a +int dimen abc_seekbar_track_progress_height_material 0x7f07003b +int dimen abc_select_dialog_padding_start_material 0x7f07003c +int dimen abc_switch_padding 0x7f07003d +int dimen abc_text_size_body_1_material 0x7f07003e +int dimen abc_text_size_body_2_material 0x7f07003f +int dimen abc_text_size_button_material 0x7f070040 +int dimen abc_text_size_caption_material 0x7f070041 +int dimen abc_text_size_display_1_material 0x7f070042 +int dimen abc_text_size_display_2_material 0x7f070043 +int dimen abc_text_size_display_3_material 0x7f070044 +int dimen abc_text_size_display_4_material 0x7f070045 +int dimen abc_text_size_headline_material 0x7f070046 +int dimen abc_text_size_large_material 0x7f070047 +int dimen abc_text_size_medium_material 0x7f070048 +int dimen abc_text_size_menu_header_material 0x7f070049 +int dimen abc_text_size_menu_material 0x7f07004a +int dimen abc_text_size_small_material 0x7f07004b +int dimen abc_text_size_subhead_material 0x7f07004c +int dimen abc_text_size_subtitle_material_toolbar 0x7f07004d +int dimen abc_text_size_title_material 0x7f07004e +int dimen abc_text_size_title_material_toolbar 0x7f07004f +int dimen compat_button_inset_horizontal_material 0x7f070050 +int dimen compat_button_inset_vertical_material 0x7f070051 +int dimen compat_button_padding_horizontal_material 0x7f070052 +int dimen compat_button_padding_vertical_material 0x7f070053 +int dimen compat_control_corner_material 0x7f070054 +int dimen compat_notification_large_icon_max_height 0x7f070055 +int dimen compat_notification_large_icon_max_width 0x7f070056 +int dimen disabled_alpha_material_dark 0x7f070057 +int dimen disabled_alpha_material_light 0x7f070058 +int dimen dp_0 0x7f070059 +int dimen dp_0_1 0x7f07005a +int dimen dp_0_5 0x7f07005b +int dimen dp_1 0x7f07005c +int dimen dp_10 0x7f07005d +int dimen dp_100 0x7f07005e +int dimen dp_1000 0x7f07005f +int dimen dp_101 0x7f070060 +int dimen dp_102 0x7f070061 +int dimen dp_103 0x7f070062 +int dimen dp_104 0x7f070063 +int dimen dp_104_5 0x7f070064 +int dimen dp_105 0x7f070065 +int dimen dp_106 0x7f070066 +int dimen dp_107 0x7f070067 +int dimen dp_108 0x7f070068 +int dimen dp_109 0x7f070069 +int dimen dp_11 0x7f07006a +int dimen dp_110 0x7f07006b +int dimen dp_111 0x7f07006c +int dimen dp_112 0x7f07006d +int dimen dp_113 0x7f07006e +int dimen dp_114 0x7f07006f +int dimen dp_115 0x7f070070 +int dimen dp_116 0x7f070071 +int dimen dp_117 0x7f070072 +int dimen dp_118 0x7f070073 +int dimen dp_119 0x7f070074 +int dimen dp_12 0x7f070075 +int dimen dp_120 0x7f070076 +int dimen dp_121 0x7f070077 +int dimen dp_122 0x7f070078 +int dimen dp_123 0x7f070079 +int dimen dp_124 0x7f07007a +int dimen dp_125 0x7f07007b +int dimen dp_126 0x7f07007c +int dimen dp_127 0x7f07007d +int dimen dp_128 0x7f07007e +int dimen dp_129 0x7f07007f +int dimen dp_13 0x7f070080 +int dimen dp_130 0x7f070081 +int dimen dp_1300 0x7f070082 +int dimen dp_131 0x7f070083 +int dimen dp_132 0x7f070084 +int dimen dp_133 0x7f070085 +int dimen dp_134 0x7f070086 +int dimen dp_134_5 0x7f070087 +int dimen dp_135 0x7f070088 +int dimen dp_136 0x7f070089 +int dimen dp_137 0x7f07008a +int dimen dp_138 0x7f07008b +int dimen dp_139 0x7f07008c +int dimen dp_14 0x7f07008d +int dimen dp_140 0x7f07008e +int dimen dp_141 0x7f07008f +int dimen dp_142 0x7f070090 +int dimen dp_143 0x7f070091 +int dimen dp_144 0x7f070092 +int dimen dp_145 0x7f070093 +int dimen dp_146 0x7f070094 +int dimen dp_147 0x7f070095 +int dimen dp_148 0x7f070096 +int dimen dp_149 0x7f070097 +int dimen dp_15 0x7f070098 +int dimen dp_150 0x7f070099 +int dimen dp_151 0x7f07009a +int dimen dp_152 0x7f07009b +int dimen dp_153 0x7f07009c +int dimen dp_154 0x7f07009d +int dimen dp_155 0x7f07009e +int dimen dp_156 0x7f07009f +int dimen dp_157 0x7f0700a0 +int dimen dp_158 0x7f0700a1 +int dimen dp_159 0x7f0700a2 +int dimen dp_16 0x7f0700a3 +int dimen dp_160 0x7f0700a4 +int dimen dp_161 0x7f0700a5 +int dimen dp_162 0x7f0700a6 +int dimen dp_163 0x7f0700a7 +int dimen dp_164 0x7f0700a8 +int dimen dp_165 0x7f0700a9 +int dimen dp_166 0x7f0700aa +int dimen dp_167 0x7f0700ab +int dimen dp_168 0x7f0700ac +int dimen dp_169 0x7f0700ad +int dimen dp_17 0x7f0700ae +int dimen dp_170 0x7f0700af +int dimen dp_171 0x7f0700b0 +int dimen dp_172 0x7f0700b1 +int dimen dp_173 0x7f0700b2 +int dimen dp_174 0x7f0700b3 +int dimen dp_175 0x7f0700b4 +int dimen dp_176 0x7f0700b5 +int dimen dp_177 0x7f0700b6 +int dimen dp_178 0x7f0700b7 +int dimen dp_179 0x7f0700b8 +int dimen dp_18 0x7f0700b9 +int dimen dp_180 0x7f0700ba +int dimen dp_181 0x7f0700bb +int dimen dp_182 0x7f0700bc +int dimen dp_183 0x7f0700bd +int dimen dp_184 0x7f0700be +int dimen dp_185 0x7f0700bf +int dimen dp_186 0x7f0700c0 +int dimen dp_187 0x7f0700c1 +int dimen dp_188 0x7f0700c2 +int dimen dp_189 0x7f0700c3 +int dimen dp_19 0x7f0700c4 +int dimen dp_190 0x7f0700c5 +int dimen dp_191 0x7f0700c6 +int dimen dp_191_25 0x7f0700c7 +int dimen dp_192 0x7f0700c8 +int dimen dp_1920 0x7f0700c9 +int dimen dp_193 0x7f0700ca +int dimen dp_194 0x7f0700cb +int dimen dp_195 0x7f0700cc +int dimen dp_196 0x7f0700cd +int dimen dp_197 0x7f0700ce +int dimen dp_198 0x7f0700cf +int dimen dp_199 0x7f0700d0 +int dimen dp_1_5 0x7f0700d1 +int dimen dp_2 0x7f0700d2 +int dimen dp_20 0x7f0700d3 +int dimen dp_200 0x7f0700d4 +int dimen dp_201 0x7f0700d5 +int dimen dp_202 0x7f0700d6 +int dimen dp_203 0x7f0700d7 +int dimen dp_204 0x7f0700d8 +int dimen dp_205 0x7f0700d9 +int dimen dp_206 0x7f0700da +int dimen dp_207 0x7f0700db +int dimen dp_208 0x7f0700dc +int dimen dp_209 0x7f0700dd +int dimen dp_21 0x7f0700de +int dimen dp_210 0x7f0700df +int dimen dp_211 0x7f0700e0 +int dimen dp_212 0x7f0700e1 +int dimen dp_213 0x7f0700e2 +int dimen dp_214 0x7f0700e3 +int dimen dp_215 0x7f0700e4 +int dimen dp_216 0x7f0700e5 +int dimen dp_217 0x7f0700e6 +int dimen dp_218 0x7f0700e7 +int dimen dp_219 0x7f0700e8 +int dimen dp_22 0x7f0700e9 +int dimen dp_220 0x7f0700ea +int dimen dp_221 0x7f0700eb +int dimen dp_222 0x7f0700ec +int dimen dp_223 0x7f0700ed +int dimen dp_224 0x7f0700ee +int dimen dp_225 0x7f0700ef +int dimen dp_226 0x7f0700f0 +int dimen dp_227 0x7f0700f1 +int dimen dp_228 0x7f0700f2 +int dimen dp_229 0x7f0700f3 +int dimen dp_23 0x7f0700f4 +int dimen dp_230 0x7f0700f5 +int dimen dp_231 0x7f0700f6 +int dimen dp_232 0x7f0700f7 +int dimen dp_233 0x7f0700f8 +int dimen dp_234 0x7f0700f9 +int dimen dp_235 0x7f0700fa +int dimen dp_236 0x7f0700fb +int dimen dp_237 0x7f0700fc +int dimen dp_238 0x7f0700fd +int dimen dp_239 0x7f0700fe +int dimen dp_24 0x7f0700ff +int dimen dp_240 0x7f070100 +int dimen dp_241 0x7f070101 +int dimen dp_242 0x7f070102 +int dimen dp_243 0x7f070103 +int dimen dp_244 0x7f070104 +int dimen dp_245 0x7f070105 +int dimen dp_246 0x7f070106 +int dimen dp_247 0x7f070107 +int dimen dp_248 0x7f070108 +int dimen dp_249 0x7f070109 +int dimen dp_25 0x7f07010a +int dimen dp_250 0x7f07010b +int dimen dp_251 0x7f07010c +int dimen dp_252 0x7f07010d +int dimen dp_253 0x7f07010e +int dimen dp_254 0x7f07010f +int dimen dp_255 0x7f070110 +int dimen dp_256 0x7f070111 +int dimen dp_257 0x7f070112 +int dimen dp_258 0x7f070113 +int dimen dp_259 0x7f070114 +int dimen dp_26 0x7f070115 +int dimen dp_260 0x7f070116 +int dimen dp_261 0x7f070117 +int dimen dp_262 0x7f070118 +int dimen dp_263 0x7f070119 +int dimen dp_264 0x7f07011a +int dimen dp_265 0x7f07011b +int dimen dp_266 0x7f07011c +int dimen dp_267 0x7f07011d +int dimen dp_268 0x7f07011e +int dimen dp_269 0x7f07011f +int dimen dp_27 0x7f070120 +int dimen dp_270 0x7f070121 +int dimen dp_271 0x7f070122 +int dimen dp_272 0x7f070123 +int dimen dp_273 0x7f070124 +int dimen dp_274 0x7f070125 +int dimen dp_275 0x7f070126 +int dimen dp_276 0x7f070127 +int dimen dp_277 0x7f070128 +int dimen dp_278 0x7f070129 +int dimen dp_279 0x7f07012a +int dimen dp_28 0x7f07012b +int dimen dp_280 0x7f07012c +int dimen dp_281 0x7f07012d +int dimen dp_282 0x7f07012e +int dimen dp_283 0x7f07012f +int dimen dp_284 0x7f070130 +int dimen dp_285 0x7f070131 +int dimen dp_286 0x7f070132 +int dimen dp_287 0x7f070133 +int dimen dp_288 0x7f070134 +int dimen dp_289 0x7f070135 +int dimen dp_29 0x7f070136 +int dimen dp_290 0x7f070137 +int dimen dp_291 0x7f070138 +int dimen dp_292 0x7f070139 +int dimen dp_293 0x7f07013a +int dimen dp_294 0x7f07013b +int dimen dp_295 0x7f07013c +int dimen dp_296 0x7f07013d +int dimen dp_297 0x7f07013e +int dimen dp_298 0x7f07013f +int dimen dp_299 0x7f070140 +int dimen dp_2_5 0x7f070141 +int dimen dp_3 0x7f070142 +int dimen dp_30 0x7f070143 +int dimen dp_300 0x7f070144 +int dimen dp_301 0x7f070145 +int dimen dp_302 0x7f070146 +int dimen dp_303 0x7f070147 +int dimen dp_304 0x7f070148 +int dimen dp_305 0x7f070149 +int dimen dp_306 0x7f07014a +int dimen dp_307 0x7f07014b +int dimen dp_308 0x7f07014c +int dimen dp_309 0x7f07014d +int dimen dp_31 0x7f07014e +int dimen dp_310 0x7f07014f +int dimen dp_311 0x7f070150 +int dimen dp_312 0x7f070151 +int dimen dp_313 0x7f070152 +int dimen dp_314 0x7f070153 +int dimen dp_315 0x7f070154 +int dimen dp_316 0x7f070155 +int dimen dp_317 0x7f070156 +int dimen dp_318 0x7f070157 +int dimen dp_319 0x7f070158 +int dimen dp_32 0x7f070159 +int dimen dp_320 0x7f07015a +int dimen dp_321 0x7f07015b +int dimen dp_322 0x7f07015c +int dimen dp_323 0x7f07015d +int dimen dp_324 0x7f07015e +int dimen dp_325 0x7f07015f +int dimen dp_326 0x7f070160 +int dimen dp_327 0x7f070161 +int dimen dp_328 0x7f070162 +int dimen dp_329 0x7f070163 +int dimen dp_33 0x7f070164 +int dimen dp_330 0x7f070165 +int dimen dp_331 0x7f070166 +int dimen dp_332 0x7f070167 +int dimen dp_333 0x7f070168 +int dimen dp_334 0x7f070169 +int dimen dp_335 0x7f07016a +int dimen dp_336 0x7f07016b +int dimen dp_337 0x7f07016c +int dimen dp_338 0x7f07016d +int dimen dp_339 0x7f07016e +int dimen dp_34 0x7f07016f +int dimen dp_340 0x7f070170 +int dimen dp_341 0x7f070171 +int dimen dp_342 0x7f070172 +int dimen dp_343 0x7f070173 +int dimen dp_344 0x7f070174 +int dimen dp_345 0x7f070175 +int dimen dp_346 0x7f070176 +int dimen dp_347 0x7f070177 +int dimen dp_348 0x7f070178 +int dimen dp_349 0x7f070179 +int dimen dp_35 0x7f07017a +int dimen dp_350 0x7f07017b +int dimen dp_351 0x7f07017c +int dimen dp_352 0x7f07017d +int dimen dp_353 0x7f07017e +int dimen dp_354 0x7f07017f +int dimen dp_355 0x7f070180 +int dimen dp_356 0x7f070181 +int dimen dp_357 0x7f070182 +int dimen dp_358 0x7f070183 +int dimen dp_359 0x7f070184 +int dimen dp_36 0x7f070185 +int dimen dp_366 0x7f070186 +int dimen dp_367 0x7f070187 +int dimen dp_368 0x7f070188 +int dimen dp_369 0x7f070189 +int dimen dp_37 0x7f07018a +int dimen dp_370 0x7f07018b +int dimen dp_371 0x7f07018c +int dimen dp_372 0x7f07018d +int dimen dp_373 0x7f07018e +int dimen dp_374 0x7f07018f +int dimen dp_375 0x7f070190 +int dimen dp_376 0x7f070191 +int dimen dp_377 0x7f070192 +int dimen dp_378 0x7f070193 +int dimen dp_379 0x7f070194 +int dimen dp_38 0x7f070195 +int dimen dp_380 0x7f070196 +int dimen dp_381 0x7f070197 +int dimen dp_382 0x7f070198 +int dimen dp_383 0x7f070199 +int dimen dp_384 0x7f07019a +int dimen dp_385 0x7f07019b +int dimen dp_386 0x7f07019c +int dimen dp_387 0x7f07019d +int dimen dp_388 0x7f07019e +int dimen dp_389 0x7f07019f +int dimen dp_39 0x7f0701a0 +int dimen dp_390 0x7f0701a1 +int dimen dp_391 0x7f0701a2 +int dimen dp_392 0x7f0701a3 +int dimen dp_393 0x7f0701a4 +int dimen dp_394 0x7f0701a5 +int dimen dp_395 0x7f0701a6 +int dimen dp_396 0x7f0701a7 +int dimen dp_397 0x7f0701a8 +int dimen dp_398 0x7f0701a9 +int dimen dp_399 0x7f0701aa +int dimen dp_3_5 0x7f0701ab +int dimen dp_4 0x7f0701ac +int dimen dp_40 0x7f0701ad +int dimen dp_400 0x7f0701ae +int dimen dp_401 0x7f0701af +int dimen dp_402 0x7f0701b0 +int dimen dp_403 0x7f0701b1 +int dimen dp_404 0x7f0701b2 +int dimen dp_405 0x7f0701b3 +int dimen dp_406 0x7f0701b4 +int dimen dp_407 0x7f0701b5 +int dimen dp_408 0x7f0701b6 +int dimen dp_409 0x7f0701b7 +int dimen dp_41 0x7f0701b8 +int dimen dp_410 0x7f0701b9 +int dimen dp_411 0x7f0701ba +int dimen dp_412 0x7f0701bb +int dimen dp_413 0x7f0701bc +int dimen dp_414 0x7f0701bd +int dimen dp_415 0x7f0701be +int dimen dp_416 0x7f0701bf +int dimen dp_417 0x7f0701c0 +int dimen dp_418 0x7f0701c1 +int dimen dp_419 0x7f0701c2 +int dimen dp_42 0x7f0701c3 +int dimen dp_420 0x7f0701c4 +int dimen dp_421 0x7f0701c5 +int dimen dp_422 0x7f0701c6 +int dimen dp_423 0x7f0701c7 +int dimen dp_424 0x7f0701c8 +int dimen dp_425 0x7f0701c9 +int dimen dp_426 0x7f0701ca +int dimen dp_427 0x7f0701cb +int dimen dp_428 0x7f0701cc +int dimen dp_429 0x7f0701cd +int dimen dp_43 0x7f0701ce +int dimen dp_430 0x7f0701cf +int dimen dp_431 0x7f0701d0 +int dimen dp_432 0x7f0701d1 +int dimen dp_433 0x7f0701d2 +int dimen dp_434 0x7f0701d3 +int dimen dp_435 0x7f0701d4 +int dimen dp_436 0x7f0701d5 +int dimen dp_437 0x7f0701d6 +int dimen dp_438 0x7f0701d7 +int dimen dp_439 0x7f0701d8 +int dimen dp_44 0x7f0701d9 +int dimen dp_440 0x7f0701da +int dimen dp_441 0x7f0701db +int dimen dp_442 0x7f0701dc +int dimen dp_443 0x7f0701dd +int dimen dp_444 0x7f0701de +int dimen dp_445 0x7f0701df +int dimen dp_446 0x7f0701e0 +int dimen dp_447 0x7f0701e1 +int dimen dp_448 0x7f0701e2 +int dimen dp_449 0x7f0701e3 +int dimen dp_45 0x7f0701e4 +int dimen dp_450 0x7f0701e5 +int dimen dp_451 0x7f0701e6 +int dimen dp_452 0x7f0701e7 +int dimen dp_453 0x7f0701e8 +int dimen dp_454 0x7f0701e9 +int dimen dp_455 0x7f0701ea +int dimen dp_456 0x7f0701eb +int dimen dp_457 0x7f0701ec +int dimen dp_458 0x7f0701ed +int dimen dp_459 0x7f0701ee +int dimen dp_46 0x7f0701ef +int dimen dp_460 0x7f0701f0 +int dimen dp_461 0x7f0701f1 +int dimen dp_462 0x7f0701f2 +int dimen dp_463 0x7f0701f3 +int dimen dp_464 0x7f0701f4 +int dimen dp_465 0x7f0701f5 +int dimen dp_466 0x7f0701f6 +int dimen dp_467 0x7f0701f7 +int dimen dp_468 0x7f0701f8 +int dimen dp_469 0x7f0701f9 +int dimen dp_47 0x7f0701fa +int dimen dp_470 0x7f0701fb +int dimen dp_471 0x7f0701fc +int dimen dp_472 0x7f0701fd +int dimen dp_473 0x7f0701fe +int dimen dp_474 0x7f0701ff +int dimen dp_475 0x7f070200 +int dimen dp_476 0x7f070201 +int dimen dp_477 0x7f070202 +int dimen dp_478 0x7f070203 +int dimen dp_479 0x7f070204 +int dimen dp_48 0x7f070205 +int dimen dp_480 0x7f070206 +int dimen dp_481 0x7f070207 +int dimen dp_482 0x7f070208 +int dimen dp_483 0x7f070209 +int dimen dp_484 0x7f07020a +int dimen dp_485 0x7f07020b +int dimen dp_486 0x7f07020c +int dimen dp_487 0x7f07020d +int dimen dp_488 0x7f07020e +int dimen dp_489 0x7f07020f +int dimen dp_49 0x7f070210 +int dimen dp_490 0x7f070211 +int dimen dp_491 0x7f070212 +int dimen dp_492 0x7f070213 +int dimen dp_493 0x7f070214 +int dimen dp_494 0x7f070215 +int dimen dp_495 0x7f070216 +int dimen dp_496 0x7f070217 +int dimen dp_497 0x7f070218 +int dimen dp_498 0x7f070219 +int dimen dp_499 0x7f07021a +int dimen dp_4_5 0x7f07021b +int dimen dp_5 0x7f07021c +int dimen dp_50 0x7f07021d +int dimen dp_500 0x7f07021e +int dimen dp_501 0x7f07021f +int dimen dp_502 0x7f070220 +int dimen dp_503 0x7f070221 +int dimen dp_504 0x7f070222 +int dimen dp_505 0x7f070223 +int dimen dp_506 0x7f070224 +int dimen dp_507 0x7f070225 +int dimen dp_508 0x7f070226 +int dimen dp_509 0x7f070227 +int dimen dp_51 0x7f070228 +int dimen dp_510 0x7f070229 +int dimen dp_511 0x7f07022a +int dimen dp_512 0x7f07022b +int dimen dp_513 0x7f07022c +int dimen dp_514 0x7f07022d +int dimen dp_515 0x7f07022e +int dimen dp_516 0x7f07022f +int dimen dp_517 0x7f070230 +int dimen dp_518 0x7f070231 +int dimen dp_519 0x7f070232 +int dimen dp_52 0x7f070233 +int dimen dp_520 0x7f070234 +int dimen dp_521 0x7f070235 +int dimen dp_522 0x7f070236 +int dimen dp_523 0x7f070237 +int dimen dp_524 0x7f070238 +int dimen dp_525 0x7f070239 +int dimen dp_526 0x7f07023a +int dimen dp_527 0x7f07023b +int dimen dp_528 0x7f07023c +int dimen dp_529 0x7f07023d +int dimen dp_53 0x7f07023e +int dimen dp_530 0x7f07023f +int dimen dp_531 0x7f070240 +int dimen dp_532 0x7f070241 +int dimen dp_533 0x7f070242 +int dimen dp_534 0x7f070243 +int dimen dp_535 0x7f070244 +int dimen dp_536 0x7f070245 +int dimen dp_537 0x7f070246 +int dimen dp_538 0x7f070247 +int dimen dp_539 0x7f070248 +int dimen dp_54 0x7f070249 +int dimen dp_540 0x7f07024a +int dimen dp_541 0x7f07024b +int dimen dp_542 0x7f07024c +int dimen dp_543 0x7f07024d +int dimen dp_544 0x7f07024e +int dimen dp_545 0x7f07024f +int dimen dp_546 0x7f070250 +int dimen dp_547 0x7f070251 +int dimen dp_548 0x7f070252 +int dimen dp_549 0x7f070253 +int dimen dp_55 0x7f070254 +int dimen dp_550 0x7f070255 +int dimen dp_551 0x7f070256 +int dimen dp_552 0x7f070257 +int dimen dp_553 0x7f070258 +int dimen dp_554 0x7f070259 +int dimen dp_555 0x7f07025a +int dimen dp_556 0x7f07025b +int dimen dp_557 0x7f07025c +int dimen dp_558 0x7f07025d +int dimen dp_559 0x7f07025e +int dimen dp_56 0x7f07025f +int dimen dp_560 0x7f070260 +int dimen dp_561 0x7f070261 +int dimen dp_562 0x7f070262 +int dimen dp_563 0x7f070263 +int dimen dp_564 0x7f070264 +int dimen dp_565 0x7f070265 +int dimen dp_566 0x7f070266 +int dimen dp_567 0x7f070267 +int dimen dp_568 0x7f070268 +int dimen dp_569 0x7f070269 +int dimen dp_57 0x7f07026a +int dimen dp_570 0x7f07026b +int dimen dp_571 0x7f07026c +int dimen dp_572 0x7f07026d +int dimen dp_573 0x7f07026e +int dimen dp_574 0x7f07026f +int dimen dp_575 0x7f070270 +int dimen dp_576 0x7f070271 +int dimen dp_577 0x7f070272 +int dimen dp_578 0x7f070273 +int dimen dp_579 0x7f070274 +int dimen dp_58 0x7f070275 +int dimen dp_580 0x7f070276 +int dimen dp_581 0x7f070277 +int dimen dp_582 0x7f070278 +int dimen dp_583 0x7f070279 +int dimen dp_584 0x7f07027a +int dimen dp_585 0x7f07027b +int dimen dp_586 0x7f07027c +int dimen dp_587 0x7f07027d +int dimen dp_588 0x7f07027e +int dimen dp_589 0x7f07027f +int dimen dp_59 0x7f070280 +int dimen dp_590 0x7f070281 +int dimen dp_591 0x7f070282 +int dimen dp_592 0x7f070283 +int dimen dp_593 0x7f070284 +int dimen dp_594 0x7f070285 +int dimen dp_595 0x7f070286 +int dimen dp_596 0x7f070287 +int dimen dp_597 0x7f070288 +int dimen dp_598 0x7f070289 +int dimen dp_599 0x7f07028a +int dimen dp_6 0x7f07028b +int dimen dp_60 0x7f07028c +int dimen dp_600 0x7f07028d +int dimen dp_601 0x7f07028e +int dimen dp_602 0x7f07028f +int dimen dp_603 0x7f070290 +int dimen dp_604 0x7f070291 +int dimen dp_605 0x7f070292 +int dimen dp_606 0x7f070293 +int dimen dp_607 0x7f070294 +int dimen dp_608 0x7f070295 +int dimen dp_609 0x7f070296 +int dimen dp_61 0x7f070297 +int dimen dp_610 0x7f070298 +int dimen dp_611 0x7f070299 +int dimen dp_612 0x7f07029a +int dimen dp_613 0x7f07029b +int dimen dp_614 0x7f07029c +int dimen dp_615 0x7f07029d +int dimen dp_616 0x7f07029e +int dimen dp_617 0x7f07029f +int dimen dp_618 0x7f0702a0 +int dimen dp_619 0x7f0702a1 +int dimen dp_62 0x7f0702a2 +int dimen dp_620 0x7f0702a3 +int dimen dp_621 0x7f0702a4 +int dimen dp_622 0x7f0702a5 +int dimen dp_623 0x7f0702a6 +int dimen dp_624 0x7f0702a7 +int dimen dp_625 0x7f0702a8 +int dimen dp_626 0x7f0702a9 +int dimen dp_627 0x7f0702aa +int dimen dp_628 0x7f0702ab +int dimen dp_629 0x7f0702ac +int dimen dp_63 0x7f0702ad +int dimen dp_630 0x7f0702ae +int dimen dp_631 0x7f0702af +int dimen dp_632 0x7f0702b0 +int dimen dp_633 0x7f0702b1 +int dimen dp_634 0x7f0702b2 +int dimen dp_635 0x7f0702b3 +int dimen dp_636 0x7f0702b4 +int dimen dp_637 0x7f0702b5 +int dimen dp_638 0x7f0702b6 +int dimen dp_639 0x7f0702b7 +int dimen dp_64 0x7f0702b8 +int dimen dp_640 0x7f0702b9 +int dimen dp_641 0x7f0702ba +int dimen dp_642 0x7f0702bb +int dimen dp_643 0x7f0702bc +int dimen dp_644 0x7f0702bd +int dimen dp_645 0x7f0702be +int dimen dp_646 0x7f0702bf +int dimen dp_647 0x7f0702c0 +int dimen dp_648 0x7f0702c1 +int dimen dp_649 0x7f0702c2 +int dimen dp_65 0x7f0702c3 +int dimen dp_650 0x7f0702c4 +int dimen dp_651 0x7f0702c5 +int dimen dp_652 0x7f0702c6 +int dimen dp_653 0x7f0702c7 +int dimen dp_654 0x7f0702c8 +int dimen dp_655 0x7f0702c9 +int dimen dp_656 0x7f0702ca +int dimen dp_657 0x7f0702cb +int dimen dp_658 0x7f0702cc +int dimen dp_659 0x7f0702cd +int dimen dp_66 0x7f0702ce +int dimen dp_660 0x7f0702cf +int dimen dp_661 0x7f0702d0 +int dimen dp_662 0x7f0702d1 +int dimen dp_663 0x7f0702d2 +int dimen dp_664 0x7f0702d3 +int dimen dp_665 0x7f0702d4 +int dimen dp_666 0x7f0702d5 +int dimen dp_667 0x7f0702d6 +int dimen dp_668 0x7f0702d7 +int dimen dp_669 0x7f0702d8 +int dimen dp_67 0x7f0702d9 +int dimen dp_670 0x7f0702da +int dimen dp_671 0x7f0702db +int dimen dp_672 0x7f0702dc +int dimen dp_673 0x7f0702dd +int dimen dp_674 0x7f0702de +int dimen dp_675 0x7f0702df +int dimen dp_676 0x7f0702e0 +int dimen dp_677 0x7f0702e1 +int dimen dp_678 0x7f0702e2 +int dimen dp_679 0x7f0702e3 +int dimen dp_68 0x7f0702e4 +int dimen dp_680 0x7f0702e5 +int dimen dp_681 0x7f0702e6 +int dimen dp_682 0x7f0702e7 +int dimen dp_683 0x7f0702e8 +int dimen dp_684 0x7f0702e9 +int dimen dp_685 0x7f0702ea +int dimen dp_686 0x7f0702eb +int dimen dp_687 0x7f0702ec +int dimen dp_688 0x7f0702ed +int dimen dp_689 0x7f0702ee +int dimen dp_69 0x7f0702ef +int dimen dp_690 0x7f0702f0 +int dimen dp_691 0x7f0702f1 +int dimen dp_692 0x7f0702f2 +int dimen dp_693 0x7f0702f3 +int dimen dp_694 0x7f0702f4 +int dimen dp_695 0x7f0702f5 +int dimen dp_696 0x7f0702f6 +int dimen dp_697 0x7f0702f7 +int dimen dp_698 0x7f0702f8 +int dimen dp_699 0x7f0702f9 +int dimen dp_7 0x7f0702fa +int dimen dp_70 0x7f0702fb +int dimen dp_700 0x7f0702fc +int dimen dp_701 0x7f0702fd +int dimen dp_702 0x7f0702fe +int dimen dp_703 0x7f0702ff +int dimen dp_704 0x7f070300 +int dimen dp_705 0x7f070301 +int dimen dp_706 0x7f070302 +int dimen dp_707 0x7f070303 +int dimen dp_708 0x7f070304 +int dimen dp_709 0x7f070305 +int dimen dp_71 0x7f070306 +int dimen dp_710 0x7f070307 +int dimen dp_711 0x7f070308 +int dimen dp_712 0x7f070309 +int dimen dp_713 0x7f07030a +int dimen dp_714 0x7f07030b +int dimen dp_715 0x7f07030c +int dimen dp_716 0x7f07030d +int dimen dp_717 0x7f07030e +int dimen dp_718 0x7f07030f +int dimen dp_719 0x7f070310 +int dimen dp_72 0x7f070311 +int dimen dp_720 0x7f070312 +int dimen dp_721 0x7f070313 +int dimen dp_722 0x7f070314 +int dimen dp_723 0x7f070315 +int dimen dp_724 0x7f070316 +int dimen dp_725 0x7f070317 +int dimen dp_726 0x7f070318 +int dimen dp_727 0x7f070319 +int dimen dp_728 0x7f07031a +int dimen dp_729 0x7f07031b +int dimen dp_73 0x7f07031c +int dimen dp_730 0x7f07031d +int dimen dp_731 0x7f07031e +int dimen dp_732 0x7f07031f +int dimen dp_733 0x7f070320 +int dimen dp_734 0x7f070321 +int dimen dp_735 0x7f070322 +int dimen dp_736 0x7f070323 +int dimen dp_737 0x7f070324 +int dimen dp_738 0x7f070325 +int dimen dp_739 0x7f070326 +int dimen dp_74 0x7f070327 +int dimen dp_740 0x7f070328 +int dimen dp_741 0x7f070329 +int dimen dp_742 0x7f07032a +int dimen dp_743 0x7f07032b +int dimen dp_744 0x7f07032c +int dimen dp_745 0x7f07032d +int dimen dp_746 0x7f07032e +int dimen dp_747 0x7f07032f +int dimen dp_748 0x7f070330 +int dimen dp_749 0x7f070331 +int dimen dp_75 0x7f070332 +int dimen dp_750 0x7f070333 +int dimen dp_751 0x7f070334 +int dimen dp_752 0x7f070335 +int dimen dp_753 0x7f070336 +int dimen dp_754 0x7f070337 +int dimen dp_755 0x7f070338 +int dimen dp_756 0x7f070339 +int dimen dp_757 0x7f07033a +int dimen dp_758 0x7f07033b +int dimen dp_759 0x7f07033c +int dimen dp_76 0x7f07033d +int dimen dp_760 0x7f07033e +int dimen dp_761 0x7f07033f +int dimen dp_762 0x7f070340 +int dimen dp_763 0x7f070341 +int dimen dp_764 0x7f070342 +int dimen dp_765 0x7f070343 +int dimen dp_766 0x7f070344 +int dimen dp_767 0x7f070345 +int dimen dp_768 0x7f070346 +int dimen dp_769 0x7f070347 +int dimen dp_77 0x7f070348 +int dimen dp_770 0x7f070349 +int dimen dp_771 0x7f07034a +int dimen dp_772 0x7f07034b +int dimen dp_773 0x7f07034c +int dimen dp_774 0x7f07034d +int dimen dp_775 0x7f07034e +int dimen dp_776 0x7f07034f +int dimen dp_777 0x7f070350 +int dimen dp_778 0x7f070351 +int dimen dp_779 0x7f070352 +int dimen dp_78 0x7f070353 +int dimen dp_780 0x7f070354 +int dimen dp_781 0x7f070355 +int dimen dp_782 0x7f070356 +int dimen dp_783 0x7f070357 +int dimen dp_784 0x7f070358 +int dimen dp_785 0x7f070359 +int dimen dp_786 0x7f07035a +int dimen dp_787 0x7f07035b +int dimen dp_788 0x7f07035c +int dimen dp_789 0x7f07035d +int dimen dp_79 0x7f07035e +int dimen dp_790 0x7f07035f +int dimen dp_791 0x7f070360 +int dimen dp_792 0x7f070361 +int dimen dp_793 0x7f070362 +int dimen dp_794 0x7f070363 +int dimen dp_795 0x7f070364 +int dimen dp_796 0x7f070365 +int dimen dp_797 0x7f070366 +int dimen dp_798 0x7f070367 +int dimen dp_799 0x7f070368 +int dimen dp_7_5 0x7f070369 +int dimen dp_8 0x7f07036a +int dimen dp_80 0x7f07036b +int dimen dp_800 0x7f07036c +int dimen dp_801 0x7f07036d +int dimen dp_802 0x7f07036e +int dimen dp_803 0x7f07036f +int dimen dp_804 0x7f070370 +int dimen dp_805 0x7f070371 +int dimen dp_806 0x7f070372 +int dimen dp_807 0x7f070373 +int dimen dp_808 0x7f070374 +int dimen dp_809 0x7f070375 +int dimen dp_81 0x7f070376 +int dimen dp_810 0x7f070377 +int dimen dp_811 0x7f070378 +int dimen dp_812 0x7f070379 +int dimen dp_813 0x7f07037a +int dimen dp_814 0x7f07037b +int dimen dp_815 0x7f07037c +int dimen dp_816 0x7f07037d +int dimen dp_817 0x7f07037e +int dimen dp_818 0x7f07037f +int dimen dp_819 0x7f070380 +int dimen dp_82 0x7f070381 +int dimen dp_820 0x7f070382 +int dimen dp_821 0x7f070383 +int dimen dp_822 0x7f070384 +int dimen dp_823 0x7f070385 +int dimen dp_824 0x7f070386 +int dimen dp_825 0x7f070387 +int dimen dp_826 0x7f070388 +int dimen dp_827 0x7f070389 +int dimen dp_828 0x7f07038a +int dimen dp_829 0x7f07038b +int dimen dp_83 0x7f07038c +int dimen dp_830 0x7f07038d +int dimen dp_831 0x7f07038e +int dimen dp_832 0x7f07038f +int dimen dp_833 0x7f070390 +int dimen dp_834 0x7f070391 +int dimen dp_835 0x7f070392 +int dimen dp_836 0x7f070393 +int dimen dp_837 0x7f070394 +int dimen dp_838 0x7f070395 +int dimen dp_839 0x7f070396 +int dimen dp_84 0x7f070397 +int dimen dp_840 0x7f070398 +int dimen dp_841 0x7f070399 +int dimen dp_842 0x7f07039a +int dimen dp_843 0x7f07039b +int dimen dp_844 0x7f07039c +int dimen dp_845 0x7f07039d +int dimen dp_846 0x7f07039e +int dimen dp_847 0x7f07039f +int dimen dp_848 0x7f0703a0 +int dimen dp_849 0x7f0703a1 +int dimen dp_85 0x7f0703a2 +int dimen dp_850 0x7f0703a3 +int dimen dp_851 0x7f0703a4 +int dimen dp_852 0x7f0703a5 +int dimen dp_853 0x7f0703a6 +int dimen dp_854 0x7f0703a7 +int dimen dp_855 0x7f0703a8 +int dimen dp_856 0x7f0703a9 +int dimen dp_857 0x7f0703aa +int dimen dp_858 0x7f0703ab +int dimen dp_859 0x7f0703ac +int dimen dp_86 0x7f0703ad +int dimen dp_860 0x7f0703ae +int dimen dp_861 0x7f0703af +int dimen dp_862 0x7f0703b0 +int dimen dp_863 0x7f0703b1 +int dimen dp_864 0x7f0703b2 +int dimen dp_865 0x7f0703b3 +int dimen dp_866 0x7f0703b4 +int dimen dp_867 0x7f0703b5 +int dimen dp_868 0x7f0703b6 +int dimen dp_869 0x7f0703b7 +int dimen dp_87 0x7f0703b8 +int dimen dp_870 0x7f0703b9 +int dimen dp_871 0x7f0703ba +int dimen dp_872 0x7f0703bb +int dimen dp_873 0x7f0703bc +int dimen dp_874 0x7f0703bd +int dimen dp_875 0x7f0703be +int dimen dp_876 0x7f0703bf +int dimen dp_877 0x7f0703c0 +int dimen dp_878 0x7f0703c1 +int dimen dp_879 0x7f0703c2 +int dimen dp_88 0x7f0703c3 +int dimen dp_880 0x7f0703c4 +int dimen dp_881 0x7f0703c5 +int dimen dp_882 0x7f0703c6 +int dimen dp_883 0x7f0703c7 +int dimen dp_884 0x7f0703c8 +int dimen dp_885 0x7f0703c9 +int dimen dp_886 0x7f0703ca +int dimen dp_887 0x7f0703cb +int dimen dp_888 0x7f0703cc +int dimen dp_889 0x7f0703cd +int dimen dp_89 0x7f0703ce +int dimen dp_890 0x7f0703cf +int dimen dp_891 0x7f0703d0 +int dimen dp_892 0x7f0703d1 +int dimen dp_893 0x7f0703d2 +int dimen dp_894 0x7f0703d3 +int dimen dp_895 0x7f0703d4 +int dimen dp_896 0x7f0703d5 +int dimen dp_897 0x7f0703d6 +int dimen dp_898 0x7f0703d7 +int dimen dp_899 0x7f0703d8 +int dimen dp_9 0x7f0703d9 +int dimen dp_90 0x7f0703da +int dimen dp_900 0x7f0703db +int dimen dp_901 0x7f0703dc +int dimen dp_902 0x7f0703dd +int dimen dp_903 0x7f0703de +int dimen dp_904 0x7f0703df +int dimen dp_905 0x7f0703e0 +int dimen dp_906 0x7f0703e1 +int dimen dp_907 0x7f0703e2 +int dimen dp_908 0x7f0703e3 +int dimen dp_909 0x7f0703e4 +int dimen dp_91 0x7f0703e5 +int dimen dp_910 0x7f0703e6 +int dimen dp_911 0x7f0703e7 +int dimen dp_912 0x7f0703e8 +int dimen dp_913 0x7f0703e9 +int dimen dp_914 0x7f0703ea +int dimen dp_915 0x7f0703eb +int dimen dp_916 0x7f0703ec +int dimen dp_917 0x7f0703ed +int dimen dp_918 0x7f0703ee +int dimen dp_919 0x7f0703ef +int dimen dp_92 0x7f0703f0 +int dimen dp_920 0x7f0703f1 +int dimen dp_921 0x7f0703f2 +int dimen dp_922 0x7f0703f3 +int dimen dp_923 0x7f0703f4 +int dimen dp_924 0x7f0703f5 +int dimen dp_925 0x7f0703f6 +int dimen dp_926 0x7f0703f7 +int dimen dp_927 0x7f0703f8 +int dimen dp_928 0x7f0703f9 +int dimen dp_929 0x7f0703fa +int dimen dp_93 0x7f0703fb +int dimen dp_930 0x7f0703fc +int dimen dp_931 0x7f0703fd +int dimen dp_932 0x7f0703fe +int dimen dp_933 0x7f0703ff +int dimen dp_934 0x7f070400 +int dimen dp_935 0x7f070401 +int dimen dp_936 0x7f070402 +int dimen dp_937 0x7f070403 +int dimen dp_938 0x7f070404 +int dimen dp_939 0x7f070405 +int dimen dp_94 0x7f070406 +int dimen dp_940 0x7f070407 +int dimen dp_941 0x7f070408 +int dimen dp_942 0x7f070409 +int dimen dp_943 0x7f07040a +int dimen dp_944 0x7f07040b +int dimen dp_945 0x7f07040c +int dimen dp_946 0x7f07040d +int dimen dp_947 0x7f07040e +int dimen dp_948 0x7f07040f +int dimen dp_949 0x7f070410 +int dimen dp_95 0x7f070411 +int dimen dp_950 0x7f070412 +int dimen dp_951 0x7f070413 +int dimen dp_952 0x7f070414 +int dimen dp_953 0x7f070415 +int dimen dp_954 0x7f070416 +int dimen dp_955 0x7f070417 +int dimen dp_956 0x7f070418 +int dimen dp_957 0x7f070419 +int dimen dp_958 0x7f07041a +int dimen dp_959 0x7f07041b +int dimen dp_96 0x7f07041c +int dimen dp_960 0x7f07041d +int dimen dp_961 0x7f07041e +int dimen dp_962 0x7f07041f +int dimen dp_963 0x7f070420 +int dimen dp_964 0x7f070421 +int dimen dp_965 0x7f070422 +int dimen dp_966 0x7f070423 +int dimen dp_967 0x7f070424 +int dimen dp_968 0x7f070425 +int dimen dp_969 0x7f070426 +int dimen dp_97 0x7f070427 +int dimen dp_970 0x7f070428 +int dimen dp_971 0x7f070429 +int dimen dp_972 0x7f07042a +int dimen dp_973 0x7f07042b +int dimen dp_974 0x7f07042c +int dimen dp_975 0x7f07042d +int dimen dp_976 0x7f07042e +int dimen dp_977 0x7f07042f +int dimen dp_978 0x7f070430 +int dimen dp_979 0x7f070431 +int dimen dp_98 0x7f070432 +int dimen dp_980 0x7f070433 +int dimen dp_981 0x7f070434 +int dimen dp_982 0x7f070435 +int dimen dp_983 0x7f070436 +int dimen dp_984 0x7f070437 +int dimen dp_985 0x7f070438 +int dimen dp_986 0x7f070439 +int dimen dp_987 0x7f07043a +int dimen dp_988 0x7f07043b +int dimen dp_989 0x7f07043c +int dimen dp_99 0x7f07043d +int dimen dp_990 0x7f07043e +int dimen dp_991 0x7f07043f +int dimen dp_992 0x7f070440 +int dimen dp_993 0x7f070441 +int dimen dp_994 0x7f070442 +int dimen dp_995 0x7f070443 +int dimen dp_996 0x7f070444 +int dimen dp_997 0x7f070445 +int dimen dp_998 0x7f070446 +int dimen dp_999 0x7f070447 +int dimen dp_m_1 0x7f070448 +int dimen dp_m_10 0x7f070449 +int dimen dp_m_12 0x7f07044a +int dimen dp_m_2 0x7f07044b +int dimen dp_m_20 0x7f07044c +int dimen dp_m_30 0x7f07044d +int dimen dp_m_5 0x7f07044e +int dimen dp_m_60 0x7f07044f +int dimen dp_m_8 0x7f070450 +int dimen fastscroll_default_thickness 0x7f070451 +int dimen fastscroll_margin 0x7f070452 +int dimen fastscroll_minimum_range 0x7f070453 +int dimen heart_ratingbar_height 0x7f070454 +int dimen heart_ratingbar_width 0x7f070455 +int dimen highlight_alpha_material_colored 0x7f070456 +int dimen highlight_alpha_material_dark 0x7f070457 +int dimen highlight_alpha_material_light 0x7f070458 +int dimen hint_alpha_material_dark 0x7f070459 +int dimen hint_alpha_material_light 0x7f07045a +int dimen hint_pressed_alpha_material_dark 0x7f07045b +int dimen hint_pressed_alpha_material_light 0x7f07045c +int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f07045d +int dimen item_touch_helper_swipe_escape_max_velocity 0x7f07045e +int dimen item_touch_helper_swipe_escape_velocity 0x7f07045f +int dimen modle_car_panel_call 0x7f070460 +int dimen modle_car_panel_call_margin 0x7f070461 +int dimen modle_car_panel_call_margin_left 0x7f070462 +int dimen module_common_shadow_width 0x7f070463 +int dimen module_common_shadow_width_pos 0x7f070464 +int dimen module_commons_toast_icon_width 0x7f070465 +int dimen module_commons_toast_marginBottom 0x7f070466 +int dimen module_commons_toast_marginLeft 0x7f070467 +int dimen module_commons_toast_marginRight 0x7f070468 +int dimen module_commons_toast_marginTop 0x7f070469 +int dimen module_commons_toast_maxWidth 0x7f07046a +int dimen module_commons_toast_minWidth 0x7f07046b +int dimen module_commons_toast_space_between_icon_and_msg 0x7f07046c +int dimen module_commons_toast_textSize 0x7f07046d +int dimen module_commons_toast_with_left_drawable_marginBottom 0x7f07046e +int dimen module_commons_toast_with_left_drawable_marginLeft 0x7f07046f +int dimen module_commons_toast_with_left_drawable_marginTop 0x7f070470 +int dimen module_commons_toast_y_offset 0x7f070471 +int dimen module_map_amap_my_location_bg_size 0x7f070472 +int dimen module_map_amap_my_location_icon_height 0x7f070473 +int dimen module_map_amap_my_location_icon_width 0x7f070474 +int dimen module_service_content_minWidth 0x7f070475 +int dimen module_service_content_textSize 0x7f070476 +int dimen module_service_id_marker_content_paddingRight 0x7f070477 +int dimen module_service_id_marker_content_paddingRight_widthoutCall 0x7f070478 +int dimen module_service_marker_anchor_size 0x7f070479 +int dimen module_service_marker_bounds_bottomMargin 0x7f07047a +int dimen module_service_marker_bounds_leftMargin 0x7f07047b +int dimen module_service_marker_bounds_rightMargin 0x7f07047c +int dimen module_service_marker_bounds_topMargin 0x7f07047d +int dimen module_service_marker_bubble_height 0x7f07047e +int dimen module_service_marker_bubble_icon_height 0x7f07047f +int dimen module_service_marker_bubble_icon_marginBottom 0x7f070480 +int dimen module_service_marker_bubble_icon_vr_height 0x7f070481 +int dimen module_service_marker_bubble_icon_vr_width 0x7f070482 +int dimen module_service_marker_bubble_icon_width 0x7f070483 +int dimen module_service_marker_bubble_vr_height 0x7f070484 +int dimen module_service_marker_bubble_vr_width 0x7f070485 +int dimen module_service_marker_bubble_width 0x7f070486 +int dimen module_service_marker_dot_marginTop 0x7f070487 +int dimen module_service_tag_textSize 0x7f070488 +int dimen module_service_user_header_height 0x7f070489 +int dimen module_service_user_header_width 0x7f07048a +int dimen module_services_dispatch_airport_dialog_affirm_corner 0x7f07048b +int dimen module_services_dispatch_airport_dialog_affirm_height 0x7f07048c +int dimen module_services_dispatch_airport_dialog_affirm_width 0x7f07048d +int dimen module_services_dispatch_airport_dialog_corner 0x7f07048e +int dimen module_services_dispatch_airport_dialog_endloc_content_margin_top 0x7f07048f +int dimen module_services_dispatch_airport_dialog_endloc_margin_top 0x7f070490 +int dimen module_services_dispatch_airport_dialog_first_column_margin_left 0x7f070491 +int dimen module_services_dispatch_airport_dialog_height 0x7f070492 +int dimen module_services_dispatch_airport_dialog_last_column_margin_left 0x7f070493 +int dimen module_services_dispatch_airport_dialog_margin_bottom 0x7f070494 +int dimen module_services_dispatch_airport_dialog_margin_top 0x7f070495 +int dimen module_services_dispatch_airport_dialog_next_level_title_size 0x7f070496 +int dimen module_services_dispatch_airport_dialog_startloc_content_margin_top 0x7f070497 +int dimen module_services_dispatch_airport_dialog_startloc_margin_top 0x7f070498 +int dimen module_services_dispatch_airport_dialog_task_content_margin_top 0x7f070499 +int dimen module_services_dispatch_airport_dialog_task_content_size 0x7f07049a +int dimen module_services_dispatch_airport_dialog_task_margin_top 0x7f07049b +int dimen module_services_dispatch_airport_dialog_title_margin_top 0x7f07049c +int dimen module_services_dispatch_airport_dialog_title_size 0x7f07049d +int dimen module_services_dispatch_airport_dialog_width 0x7f07049e +int dimen module_services_dispatch_cars_dialog_btn_width 0x7f07049f +int dimen module_services_dispatch_cars_dialog_content_margin_top 0x7f0704a0 +int dimen module_services_dispatch_cars_dialog_content_size 0x7f0704a1 +int dimen module_services_dispatch_cars_dialog_corner 0x7f0704a2 +int dimen module_services_dispatch_cars_dialog_height 0x7f0704a3 +int dimen module_services_dispatch_cars_dialog_line_margin_bottom 0x7f0704a4 +int dimen module_services_dispatch_cars_dialog_loc_margin_top 0x7f0704a5 +int dimen module_services_dispatch_cars_dialog_loc_size 0x7f0704a6 +int dimen module_services_dispatch_cars_dialog_timer_margin 0x7f0704a7 +int dimen module_services_dispatch_cars_dialog_timer_size 0x7f0704a8 +int dimen module_services_dispatch_cars_dialog_timer_txt_size 0x7f0704a9 +int dimen module_services_dispatch_cars_dialog_title_margin_top 0x7f0704aa +int dimen module_services_dispatch_cars_dialog_title_size 0x7f0704ab +int dimen module_services_dispatch_cars_dialog_width 0x7f0704ac +int dimen module_services_empty_tip_marginTop 0x7f0704ad +int dimen module_services_empty_tip_textSize 0x7f0704ae +int dimen module_services_id_panel_item_avatar_border_width 0x7f0704af +int dimen module_services_id_panel_item_distance_marginLeft 0x7f0704b0 +int dimen module_services_info_window_height 0x7f0704b1 +int dimen module_services_info_window_paddingEnd 0x7f0704b2 +int dimen module_services_info_window_paddingStart 0x7f0704b3 +int dimen module_services_load_strategy_marginRight 0x7f0704b4 +int dimen module_services_load_strategy_paddingLeft 0x7f0704b5 +int dimen module_services_load_strategy_paddingTop 0x7f0704b6 +int dimen module_services_load_strategy_textSize 0x7f0704b7 +int dimen module_services_online_car_panel_close_margin_top 0x7f0704b8 +int dimen module_services_online_car_panel_marginBottom 0x7f0704b9 +int dimen module_services_online_car_panel_marginRight 0x7f0704ba +int dimen module_services_online_car_panel_marginTop 0x7f0704bb +int dimen module_services_online_car_panel_paddingBottom 0x7f0704bc +int dimen module_services_online_car_panel_paddingLeft 0x7f0704bd +int dimen module_services_online_car_panel_recycler_view_margin_top 0x7f0704be +int dimen module_services_online_car_panel_title_margin_top 0x7f0704bf +int dimen module_services_online_car_panel_title_text_size 0x7f0704c0 +int dimen module_services_panel_item_avatar_size 0x7f0704c1 +int dimen module_services_panel_item_corner 0x7f0704c2 +int dimen module_services_panel_item_detail_bkg_corner 0x7f0704c3 +int dimen module_services_panel_item_detail_padding 0x7f0704c4 +int dimen module_services_panel_item_detail_textSize 0x7f0704c5 +int dimen module_services_panel_item_distance_tag_marginBottom 0x7f0704c6 +int dimen module_services_panel_item_distance_textSize 0x7f0704c7 +int dimen module_services_panel_item_marginBottom 0x7f0704c8 +int dimen module_services_panel_item_nickname_marginLeft 0x7f0704c9 +int dimen module_services_panel_item_nickname_marginTop 0x7f0704ca +int dimen module_services_panel_item_nickname_textSize 0x7f0704cb +int dimen module_services_panel_item_padding 0x7f0704cc +int dimen module_services_panel_item_start 0x7f0704cd +int dimen module_services_panel_strategy_button_bkg_corner 0x7f0704ce +int dimen module_services_panel_strategy_button_marginTop 0x7f0704cf +int dimen module_v2n_image_margin_left 0x7f0704d0 +int dimen module_v2n_tip_height 0x7f0704d1 +int dimen module_v2n_tip_text_margin_right 0x7f0704d2 +int dimen module_v2n_tip_text_width 0x7f0704d3 +int dimen module_v2n_tip_width 0x7f0704d4 +int dimen module_v2x_brake_image_margin_left 0x7f0704d5 +int dimen module_v2x_brake_image_margin_right 0x7f0704d6 +int dimen module_v2x_brake_image_width 0x7f0704d7 +int dimen module_v2x_brake_tip_height 0x7f0704d8 +int dimen module_v2x_brake_tip_width 0x7f0704d9 +int dimen module_v2x_surrounding_item_margin_left 0x7f0704da +int dimen module_v2x_surrounding_list_margin_left 0x7f0704db +int dimen notification_action_icon_size 0x7f0704dc +int dimen notification_action_text_size 0x7f0704dd +int dimen notification_big_circle_margin 0x7f0704de +int dimen notification_content_margin_start 0x7f0704df +int dimen notification_large_icon_height 0x7f0704e0 +int dimen notification_large_icon_width 0x7f0704e1 +int dimen notification_main_column_padding_top 0x7f0704e2 +int dimen notification_media_narrow_margin 0x7f0704e3 +int dimen notification_right_icon_size 0x7f0704e4 +int dimen notification_right_side_padding_top 0x7f0704e5 +int dimen notification_small_icon_background_padding 0x7f0704e6 +int dimen notification_small_icon_size_as_large 0x7f0704e7 +int dimen notification_subtext_size 0x7f0704e8 +int dimen notification_top_pad 0x7f0704e9 +int dimen notification_top_pad_large_text 0x7f0704ea +int dimen panel_list_item_title_size 0x7f0704eb +int dimen ratingbar_padding 0x7f0704ec +int dimen share_item_address 0x7f0704ed +int dimen sp_10 0x7f0704ee +int dimen sp_11 0x7f0704ef +int dimen sp_12 0x7f0704f0 +int dimen sp_13 0x7f0704f1 +int dimen sp_14 0x7f0704f2 +int dimen sp_15 0x7f0704f3 +int dimen sp_16 0x7f0704f4 +int dimen sp_17 0x7f0704f5 +int dimen sp_18 0x7f0704f6 +int dimen sp_19 0x7f0704f7 +int dimen sp_20 0x7f0704f8 +int dimen sp_21 0x7f0704f9 +int dimen sp_22 0x7f0704fa +int dimen sp_23 0x7f0704fb +int dimen sp_24 0x7f0704fc +int dimen sp_25 0x7f0704fd +int dimen sp_28 0x7f0704fe +int dimen sp_30 0x7f0704ff +int dimen sp_32 0x7f070500 +int dimen sp_34 0x7f070501 +int dimen sp_36 0x7f070502 +int dimen sp_38 0x7f070503 +int dimen sp_40 0x7f070504 +int dimen sp_42 0x7f070505 +int dimen sp_48 0x7f070506 +int dimen sp_6 0x7f070507 +int dimen sp_7 0x7f070508 +int dimen sp_8 0x7f070509 +int dimen sp_9 0x7f07050a +int dimen subtitle_corner_radius 0x7f07050b +int dimen subtitle_outline_width 0x7f07050c +int dimen subtitle_shadow_offset 0x7f07050d +int dimen subtitle_shadow_radius 0x7f07050e +int dimen tooltip_corner_radius 0x7f07050f +int dimen tooltip_horizontal_padding 0x7f070510 +int dimen tooltip_margin 0x7f070511 +int dimen tooltip_precise_anchor_extra_offset 0x7f070512 +int dimen tooltip_precise_anchor_threshold 0x7f070513 +int dimen tooltip_vertical_padding 0x7f070514 +int dimen tooltip_y_offset_non_touch 0x7f070515 +int dimen tooltip_y_offset_touch 0x7f070516 +int dimen v2x_panel_loading_top 0x7f070517 +int dimen v2x_share_btn_height 0x7f070518 +int dimen v2x_share_btn_width 0x7f070519 +int drawable abc_ab_share_pack_mtrl_alpha 0x7f080001 +int drawable abc_action_bar_item_background_material 0x7f080002 +int drawable abc_btn_borderless_material 0x7f080003 +int drawable abc_btn_check_material 0x7f080004 +int drawable abc_btn_check_material_anim 0x7f080005 +int drawable abc_btn_check_to_on_mtrl_000 0x7f080006 +int drawable abc_btn_check_to_on_mtrl_015 0x7f080007 +int drawable abc_btn_colored_material 0x7f080008 +int drawable abc_btn_default_mtrl_shape 0x7f080009 +int drawable abc_btn_radio_material 0x7f08000a +int drawable abc_btn_radio_material_anim 0x7f08000b +int drawable abc_btn_radio_to_on_mtrl_000 0x7f08000c +int drawable abc_btn_radio_to_on_mtrl_015 0x7f08000d +int drawable abc_btn_switch_to_on_mtrl_00001 0x7f08000e +int drawable abc_btn_switch_to_on_mtrl_00012 0x7f08000f +int drawable abc_cab_background_internal_bg 0x7f080010 +int drawable abc_cab_background_top_material 0x7f080011 +int drawable abc_cab_background_top_mtrl_alpha 0x7f080012 +int drawable abc_control_background_material 0x7f080013 +int drawable abc_dialog_material_background 0x7f080014 +int drawable abc_edit_text_material 0x7f080015 +int drawable abc_ic_ab_back_material 0x7f080016 +int drawable abc_ic_arrow_drop_right_black_24dp 0x7f080017 +int drawable abc_ic_clear_material 0x7f080018 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f080019 +int drawable abc_ic_go_search_api_material 0x7f08001a +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f08001b +int drawable abc_ic_menu_cut_mtrl_alpha 0x7f08001c +int drawable abc_ic_menu_overflow_material 0x7f08001d +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f08001e +int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f08001f +int drawable abc_ic_menu_share_mtrl_alpha 0x7f080020 +int drawable abc_ic_search_api_material 0x7f080021 +int drawable abc_ic_star_black_16dp 0x7f080022 +int drawable abc_ic_star_black_36dp 0x7f080023 +int drawable abc_ic_star_black_48dp 0x7f080024 +int drawable abc_ic_star_half_black_16dp 0x7f080025 +int drawable abc_ic_star_half_black_36dp 0x7f080026 +int drawable abc_ic_star_half_black_48dp 0x7f080027 +int drawable abc_ic_voice_search_api_material 0x7f080028 +int drawable abc_item_background_holo_dark 0x7f080029 +int drawable abc_item_background_holo_light 0x7f08002a +int drawable abc_list_divider_material 0x7f08002b +int drawable abc_list_divider_mtrl_alpha 0x7f08002c +int drawable abc_list_focused_holo 0x7f08002d +int drawable abc_list_longpressed_holo 0x7f08002e +int drawable abc_list_pressed_holo_dark 0x7f08002f +int drawable abc_list_pressed_holo_light 0x7f080030 +int drawable abc_list_selector_background_transition_holo_dark 0x7f080031 +int drawable abc_list_selector_background_transition_holo_light 0x7f080032 +int drawable abc_list_selector_disabled_holo_dark 0x7f080033 +int drawable abc_list_selector_disabled_holo_light 0x7f080034 +int drawable abc_list_selector_holo_dark 0x7f080035 +int drawable abc_list_selector_holo_light 0x7f080036 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f080037 +int drawable abc_popup_background_mtrl_mult 0x7f080038 +int drawable abc_ratingbar_indicator_material 0x7f080039 +int drawable abc_ratingbar_material 0x7f08003a +int drawable abc_ratingbar_small_material 0x7f08003b +int drawable abc_scrubber_control_off_mtrl_alpha 0x7f08003c +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f08003d +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f08003e +int drawable abc_scrubber_primary_mtrl_alpha 0x7f08003f +int drawable abc_scrubber_track_mtrl_alpha 0x7f080040 +int drawable abc_seekbar_thumb_material 0x7f080041 +int drawable abc_seekbar_tick_mark_material 0x7f080042 +int drawable abc_seekbar_track_material 0x7f080043 +int drawable abc_spinner_mtrl_am_alpha 0x7f080044 +int drawable abc_spinner_textfield_background_material 0x7f080045 +int drawable abc_switch_thumb_material 0x7f080046 +int drawable abc_switch_track_mtrl_alpha 0x7f080047 +int drawable abc_tab_indicator_material 0x7f080048 +int drawable abc_tab_indicator_mtrl_alpha 0x7f080049 +int drawable abc_text_cursor_material 0x7f08004a +int drawable abc_text_select_handle_left_mtrl_dark 0x7f08004b +int drawable abc_text_select_handle_left_mtrl_light 0x7f08004c +int drawable abc_text_select_handle_middle_mtrl_dark 0x7f08004d +int drawable abc_text_select_handle_middle_mtrl_light 0x7f08004e +int drawable abc_text_select_handle_right_mtrl_dark 0x7f08004f +int drawable abc_text_select_handle_right_mtrl_light 0x7f080050 +int drawable abc_textfield_activated_mtrl_alpha 0x7f080051 +int drawable abc_textfield_default_mtrl_alpha 0x7f080052 +int drawable abc_textfield_search_activated_mtrl_alpha 0x7f080053 +int drawable abc_textfield_search_default_mtrl_alpha 0x7f080054 +int drawable abc_textfield_search_material 0x7f080055 +int drawable abc_vector_test 0x7f080056 +int drawable account_adk_btn_gradient 0x7f080057 +int drawable account_adk_btn_gray 0x7f080058 +int drawable account_sdk_bg_10_corner 0x7f080059 +int drawable account_sdk_bg_8_corner 0x7f08005a +int drawable bg_adas_dispatch 0x7f08005b +int drawable bg_adas_dispatch_affirm 0x7f08005c +int drawable bg_map_marker_blue 0x7f08005d +int drawable bg_map_marker_blue_dark 0x7f08005e +int drawable bg_map_marker_blue_info 0x7f08005f +int drawable bg_map_marker_dark_blue_info 0x7f080060 +int drawable bg_map_marker_dark_green_info 0x7f080061 +int drawable bg_map_marker_green 0x7f080062 +int drawable bg_map_marker_green_dark 0x7f080063 +int drawable bg_map_marker_green_info 0x7f080064 +int drawable bg_map_marker_grey_info 0x7f080065 +int drawable bg_map_marker_oragne 0x7f080066 +int drawable bg_map_marker_orange_info 0x7f080067 +int drawable bg_map_marker_purple 0x7f080068 +int drawable bg_map_marker_purple_info 0x7f080069 +int drawable bg_map_marker_red 0x7f08006a +int drawable bg_map_marker_red_info 0x7f08006b +int drawable bg_map_marker_yellow_info 0x7f08006c +int drawable bg_qr_scan_line 0x7f08006d +int drawable bg_qr_scan_success 0x7f08006e +int drawable bg_shape_reverse_triangle_blue 0x7f08006f +int drawable bg_shape_reverse_triangle_dark_blue 0x7f080070 +int drawable bg_shape_reverse_triangle_dark_green 0x7f080071 +int drawable bg_shape_reverse_triangle_green 0x7f080072 +int drawable bg_shape_reverse_triangle_orange 0x7f080073 +int drawable bg_shape_reverse_triangle_purple 0x7f080074 +int drawable bg_shape_reverse_triangle_red 0x7f080075 +int drawable bg_shape_reverse_yellow 0x7f080076 +int drawable bg_waring_limiting_velocity 0x7f080077 +int drawable bg_waring_traffic_light_vr 0x7f080078 +int drawable bg_warning_bg 0x7f080079 +int drawable blue 0x7f08007a +int drawable btn_checkbox_checked_mtrl 0x7f08007b +int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f08007c +int drawable btn_checkbox_unchecked_mtrl 0x7f08007d +int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f08007e +int drawable btn_radio_off_mtrl 0x7f08007f +int drawable btn_radio_off_to_on_mtrl_animation 0x7f080080 +int drawable btn_radio_on_mtrl 0x7f080081 +int drawable btn_radio_on_to_off_mtrl_animation 0x7f080082 +int drawable common_marker_bottom_floor 0x7f080083 +int drawable dialog_white_bg 0x7f080084 +int drawable ic_amap_navi_cursor 0x7f080085 +int drawable ic_navi_start 0x7f080086 +int drawable ic_navi_target 0x7f080087 +int drawable ic_phone_back 0x7f080088 +int drawable ic_reverse_triangle 0x7f080089 +int drawable icon_common_heart_animation_vr00 0x7f08008a +int drawable icon_common_heart_animation_vr01 0x7f08008b +int drawable icon_common_heart_animation_vr02 0x7f08008c +int drawable icon_default_user_head 0x7f08008d +int drawable icon_heart_choose 0x7f08008e +int drawable icon_heart_second 0x7f08008f +int drawable icon_heart_second_other 0x7f080090 +int drawable icon_heart_unchoose 0x7f080091 +int drawable icon_heart_unchoose_other 0x7f080092 +int drawable icon_map_marker_4s 0x7f080093 +int drawable icon_map_marker_book 0x7f080094 +int drawable icon_map_marker_car_gray 0x7f080095 +int drawable icon_map_marker_car_gray_selected 0x7f080096 +int drawable icon_map_marker_car_type2 0x7f080097 +int drawable icon_map_marker_car_type_110 0x7f080098 +int drawable icon_map_marker_car_type_119 0x7f080099 +int drawable icon_map_marker_car_type_120 0x7f08009a +int drawable icon_map_marker_car_type_bus 0x7f08009b +int drawable icon_map_marker_car_type_taxi 0x7f08009c +int drawable icon_map_marker_living 0x7f08009d +int drawable icon_map_marker_living_white 0x7f08009e +int drawable icon_map_marker_location_blue 0x7f08009f +int drawable icon_map_marker_location_yellow 0x7f0800a0 +int drawable icon_map_marker_location_yellow_vr 0x7f0800a1 +int drawable icon_map_marker_misic 0x7f0800a2 +int drawable icon_map_marker_news 0x7f0800a3 +int drawable icon_map_marker_pondingl 0x7f0800a4 +int drawable icon_map_marker_pondingl2 0x7f0800a5 +int drawable icon_map_marker_pondingl2_white 0x7f0800a6 +int drawable icon_map_marker_refuel 0x7f0800a7 +int drawable icon_map_marker_road_block_off 0x7f0800a8 +int drawable icon_map_marker_road_block_off2 0x7f0800a9 +int drawable icon_map_marker_road_block_off2_white 0x7f0800aa +int drawable icon_map_marker_road_block_up 0x7f0800ab +int drawable icon_map_marker_road_block_up2 0x7f0800ac +int drawable icon_map_marker_road_block_up2_white 0x7f0800ad +int drawable icon_map_marker_road_check 0x7f0800ae +int drawable icon_map_marker_road_check2 0x7f0800af +int drawable icon_map_marker_road_check2_white 0x7f0800b0 +int drawable icon_map_marker_road_work 0x7f0800b1 +int drawable icon_map_marker_road_work2 0x7f0800b2 +int drawable icon_map_marker_road_work2_white 0x7f0800b3 +int drawable icon_map_marker_shear_news 0x7f0800b4 +int drawable icon_map_marker_shop 0x7f0800b5 +int drawable icon_map_marker_shop_discount 0x7f0800b6 +int drawable icon_waring_traffic_light_green_vr 0x7f0800b7 +int drawable icon_waring_traffic_light_red_vr 0x7f0800b8 +int drawable icon_waring_traffic_light_yellow_vr 0x7f0800b9 +int drawable icon_warning_v2x_abnormal_vehicle 0x7f0800ba +int drawable icon_warning_v2x_accident_prone_road_section 0x7f0800bb +int drawable icon_warning_v2x_avoid_special_vehicles 0x7f0800bc +int drawable icon_warning_v2x_ban_astern 0x7f0800bd +int drawable icon_warning_v2x_blind_area_collision 0x7f0800be +int drawable icon_warning_v2x_collision_warning 0x7f0800bf +int drawable icon_warning_v2x_congestion 0x7f0800c0 +int drawable icon_warning_v2x_emergency_brake 0x7f0800c1 +int drawable icon_warning_v2x_give_way 0x7f0800c2 +int drawable icon_warning_v2x_hump_bridge 0x7f0800c3 +int drawable icon_warning_v2x_motorcycle_collision 0x7f0800c4 +int drawable icon_warning_v2x_no_parking 0x7f0800c5 +int drawable icon_warning_v2x_over_speed 0x7f0800c6 +int drawable icon_warning_v2x_pedestrian_crossing 0x7f0800c7 +int drawable icon_warning_v2x_reverse_overtaking 0x7f0800c8 +int drawable icon_warning_v2x_road_construction 0x7f0800c9 +int drawable icon_warning_v2x_road_dangerous 0x7f0800ca +int drawable icon_warning_v2x_roundaboutpng 0x7f0800cb +int drawable icon_warning_v2x_school 0x7f0800cc +int drawable icon_warning_v2x_special_vehicle_access 0x7f0800cd +int drawable icon_warning_v2x_test_section 0x7f0800ce +int drawable icon_warning_v2x_traffic_light_gray 0x7f0800cf +int drawable icon_warning_v2x_traffic_light_green 0x7f0800d0 +int drawable icon_warning_v2x_traffic_light_red 0x7f0800d1 +int drawable icon_warning_v2x_traffic_light_yellow 0x7f0800d2 +int drawable icon_warning_v2x_traffic_lights_green 0x7f0800d3 +int drawable icon_warning_v2x_traffic_lights_red 0x7f0800d4 +int drawable icon_warning_v2x_tramcar 0x7f0800d5 +int drawable icon_warning_v2x_turn_left_sharp 0x7f0800d6 +int drawable icon_warning_v2x_turn_right_sharp 0x7f0800d7 +int drawable icon_warning_v2x_vehicle_control 0x7f0800d8 +int drawable map_api_ic_current_location2 0x7f0800d9 +int drawable map_api_ic_current_location2_cursor 0x7f0800da +int drawable module_authorize_scrollbar 0x7f0800db +int drawable module_authorize_selector_blue_corner 0x7f0800dc +int drawable module_authorize_selector_blue_left_corner 0x7f0800dd +int drawable module_authorize_selector_dark_corner 0x7f0800de +int drawable module_authorize_selector_dark_right_corner 0x7f0800df +int drawable module_authorize_shape_top_corner 0x7f0800e0 +int drawable module_camera_real_time_traffic 0x7f0800e1 +int drawable module_common_bg_vr 0x7f0800e2 +int drawable module_common_close_selector 0x7f0800e3 +int drawable module_common_close_selector_vr 0x7f0800e4 +int drawable module_common_default_user_head 0x7f0800e5 +int drawable module_common_ic_rc_accident3 0x7f0800e6 +int drawable module_common_ic_rc_accident3_white 0x7f0800e7 +int drawable module_common_ic_rc_dark_frog2 0x7f0800e8 +int drawable module_common_ic_rc_dark_frog2_white 0x7f0800e9 +int drawable module_common_ic_rc_freeze2 0x7f0800ea +int drawable module_common_ic_rc_freeze2_white 0x7f0800eb +int drawable module_common_ic_rc_illegal_park 0x7f0800ec +int drawable module_common_ic_rc_illegal_park_white 0x7f0800ed +int drawable module_common_ic_rc_parking2 0x7f0800ee +int drawable module_common_icon_close 0x7f0800ef +int drawable module_common_icon_close_press 0x7f0800f0 +int drawable module_common_icon_close_vr 0x7f0800f1 +int drawable module_common_icon_like_selected_vr 0x7f0800f2 +int drawable module_common_icon_like_vr 0x7f0800f3 +int drawable module_common_icon_map_marker_4s 0x7f0800f4 +int drawable module_common_icon_map_marker_living 0x7f0800f5 +int drawable module_common_icon_map_marker_living_white 0x7f0800f6 +int drawable module_common_icon_map_marker_pondingl2 0x7f0800f7 +int drawable module_common_icon_map_marker_pondingl2_white 0x7f0800f8 +int drawable module_common_icon_map_marker_refuel 0x7f0800f9 +int drawable module_common_icon_map_marker_road_block_off2 0x7f0800fa +int drawable module_common_icon_map_marker_road_block_off2_white 0x7f0800fb +int drawable module_common_icon_map_marker_road_block_up2 0x7f0800fc +int drawable module_common_icon_map_marker_road_block_up2_white 0x7f0800fd +int drawable module_common_icon_map_marker_road_check2 0x7f0800fe +int drawable module_common_icon_map_marker_road_check2_white 0x7f0800ff +int drawable module_common_icon_map_marker_road_work2 0x7f080100 +int drawable module_common_icon_map_marker_road_work2_white 0x7f080101 +int drawable module_common_icon_map_marker_shear_news 0x7f080102 +int drawable module_common_icon_map_marker_shop 0x7f080103 +int drawable module_common_icon_map_marker_shop_discount 0x7f080104 +int drawable module_common_icon_seek_help 0x7f080105 +int drawable module_common_icon_unlike_selected_vr 0x7f080106 +int drawable module_common_icon_unlike_vr 0x7f080107 +int drawable module_common_like_vr 0x7f080108 +int drawable module_common_my_location_bg 0x7f080109 +int drawable module_common_selector_call 0x7f08010a +int drawable module_common_unlike_vr 0x7f08010b +int drawable module_commons_dialog_bg 0x7f08010c +int drawable module_commons_dialog_left_bg 0x7f08010d +int drawable module_commons_dialog_right_bg 0x7f08010e +int drawable module_commons_heart_ratingbar_drawable 0x7f08010f +int drawable module_commons_shape_dlg_round_bkg 0x7f080110 +int drawable module_commons_shape_left_btn_bkg 0x7f080111 +int drawable module_commons_shape_right_btn_bkg 0x7f080112 +int drawable module_commons_toast_bkg 0x7f080113 +int drawable module_dw_common_corner_bkg_light 0x7f080114 +int drawable module_ext_drawable_shadow_bg 0x7f080115 +int drawable module_ext_shadow_bkg 0x7f080116 +int drawable module_ext_shadow_bkg_pressed 0x7f080117 +int drawable module_guide_blue_corner 0x7f080118 +int drawable module_map_amap_my_location_icon 0x7f080119 +int drawable module_service_dispatch_cars_affirm_bg 0x7f08011a +int drawable module_service_dispatch_cars_bg 0x7f08011b +int drawable module_service_dispatch_cars_cancel_bg 0x7f08011c +int drawable module_service_dispatch_timer_bg 0x7f08011d +int drawable module_service_ic_call 0x7f08011e +int drawable module_service_ic_car_for_help_0000 0x7f08011f +int drawable module_service_ic_car_for_help_0001 0x7f080120 +int drawable module_service_ic_car_for_help_0002 0x7f080121 +int drawable module_service_ic_car_for_help_0003 0x7f080122 +int drawable module_service_ic_car_for_help_0004 0x7f080123 +int drawable module_service_ic_car_for_help_0005 0x7f080124 +int drawable module_service_ic_car_for_help_0006 0x7f080125 +int drawable module_service_ic_car_for_help_0007 0x7f080126 +int drawable module_service_ic_car_for_help_0008 0x7f080127 +int drawable module_service_ic_car_for_help_0009 0x7f080128 +int drawable module_service_ic_car_for_help_0010 0x7f080129 +int drawable module_service_ic_car_for_help_0011 0x7f08012a +int drawable module_service_ic_car_for_help_0012 0x7f08012b +int drawable module_service_ic_car_for_help_0013 0x7f08012c +int drawable module_service_ic_car_for_help_0014 0x7f08012d +int drawable module_service_ic_car_for_help_0015 0x7f08012e +int drawable module_service_ic_car_for_help_0016 0x7f08012f +int drawable module_service_ic_car_for_help_0017 0x7f080130 +int drawable module_service_ic_car_for_help_0018 0x7f080131 +int drawable module_service_ic_car_for_help_0019 0x7f080132 +int drawable module_service_ic_car_for_help_0020 0x7f080133 +int drawable module_service_ic_car_for_help_0021 0x7f080134 +int drawable module_service_ic_car_for_help_0022 0x7f080135 +int drawable module_service_ic_car_for_help_0023 0x7f080136 +int drawable module_service_ic_car_for_help_0024 0x7f080137 +int drawable module_service_ic_rc_accident 0x7f080138 +int drawable module_service_ic_rc_accident2 0x7f080139 +int drawable module_service_ic_rc_accident3 0x7f08013a +int drawable module_service_ic_rc_accident3_white 0x7f08013b +int drawable module_service_ic_rc_dark_frog 0x7f08013c +int drawable module_service_ic_rc_dark_frog2 0x7f08013d +int drawable module_service_ic_rc_dark_frog2_white 0x7f08013e +int drawable module_service_ic_rc_freeze 0x7f08013f +int drawable module_service_ic_rc_freeze2 0x7f080140 +int drawable module_service_ic_rc_freeze2_white 0x7f080141 +int drawable module_service_ic_rc_illegal_park 0x7f080142 +int drawable module_service_ic_rc_illegal_park_white 0x7f080143 +int drawable module_service_ic_rc_parking 0x7f080144 +int drawable module_service_ic_rc_parking2 0x7f080145 +int drawable module_service_ic_rc_road_slippery 0x7f080146 +int drawable module_service_ic_rc_road_slippery_light 0x7f080147 +int drawable module_service_ic_seek_helping 0x7f080148 +int drawable module_service_ic_warning_circle_orange_00000 0x7f080149 +int drawable module_service_ic_warning_circle_orange_00001 0x7f08014a +int drawable module_service_ic_warning_circle_orange_00002 0x7f08014b +int drawable module_service_ic_warning_circle_orange_00003 0x7f08014c +int drawable module_service_ic_warning_circle_orange_00004 0x7f08014d +int drawable module_service_ic_warning_circle_orange_00005 0x7f08014e +int drawable module_service_ic_warning_circle_orange_00006 0x7f08014f +int drawable module_service_ic_warning_circle_orange_00007 0x7f080150 +int drawable module_service_ic_warning_circle_orange_00008 0x7f080151 +int drawable module_service_ic_warning_circle_orange_00009 0x7f080152 +int drawable module_service_ic_warning_circle_orange_00010 0x7f080153 +int drawable module_service_ic_warning_circle_orange_00011 0x7f080154 +int drawable module_service_ic_warning_circle_orange_00012 0x7f080155 +int drawable module_service_ic_warning_circle_orange_00013 0x7f080156 +int drawable module_service_ic_warning_circle_orange_00014 0x7f080157 +int drawable module_service_ic_warning_circle_orange_00015 0x7f080158 +int drawable module_service_ic_warning_circle_orange_00016 0x7f080159 +int drawable module_service_ic_warning_circle_orange_00017 0x7f08015a +int drawable module_service_ic_warning_circle_orange_00018 0x7f08015b +int drawable module_service_ic_warning_circle_orange_00019 0x7f08015c +int drawable module_service_ic_warning_circle_orange_00020 0x7f08015d +int drawable module_service_ic_warning_circle_orange_00021 0x7f08015e +int drawable module_service_ic_warning_circle_orange_00022 0x7f08015f +int drawable module_service_ic_warning_circle_orange_00023 0x7f080160 +int drawable module_service_ic_warning_circle_orange_00024 0x7f080161 +int drawable module_service_ic_warning_circle_orange_00025 0x7f080162 +int drawable module_service_ic_warning_circle_orange_00026 0x7f080163 +int drawable module_service_ic_warning_circle_orange_00027 0x7f080164 +int drawable module_service_ic_warning_circle_orange_00028 0x7f080165 +int drawable module_service_ic_warning_circle_orange_00029 0x7f080166 +int drawable module_service_ic_warning_circle_orange_00030 0x7f080167 +int drawable module_service_ic_warning_circle_orange_00031 0x7f080168 +int drawable module_service_ic_warning_circle_orange_00032 0x7f080169 +int drawable module_service_ic_warning_circle_orange_00033 0x7f08016a +int drawable module_service_ic_warning_circle_orange_00034 0x7f08016b +int drawable module_service_ic_warning_circle_orange_00035 0x7f08016c +int drawable module_service_ic_warning_circle_orange_00036 0x7f08016d +int drawable module_service_ic_warning_circle_orange_00037 0x7f08016e +int drawable module_service_ic_warning_circle_orange_00038 0x7f08016f +int drawable module_service_ic_warning_circle_orange_00039 0x7f080170 +int drawable module_service_ic_warning_circle_orange_00040 0x7f080171 +int drawable module_service_ic_warning_circle_orange_00041 0x7f080172 +int drawable module_service_ic_warning_circle_orange_00042 0x7f080173 +int drawable module_service_ic_warning_circle_orange_00043 0x7f080174 +int drawable module_service_ic_warning_circle_orange_00044 0x7f080175 +int drawable module_service_ic_warning_circle_orange_00045 0x7f080176 +int drawable module_service_ic_warning_circle_orange_00046 0x7f080177 +int drawable module_service_ic_warning_circle_orange_00047 0x7f080178 +int drawable module_service_ic_warning_circle_orange_00048 0x7f080179 +int drawable module_services_driver_info_window_bkg 0x7f08017a +int drawable module_services_driver_type_blue_info 0x7f08017b +int drawable module_services_driver_type_green_info 0x7f08017c +int drawable module_services_driver_type_red_info 0x7f08017d +int drawable module_services_info_window_cursor 0x7f08017e +int drawable module_services_marker_bkg 0x7f08017f +int drawable module_services_marker_vr_bkg 0x7f080180 +int drawable module_services_marker_vr_bkg_checked 0x7f080181 +int drawable module_services_online_car_panel_background 0x7f080182 +int drawable module_services_online_car_panel_empty_icon 0x7f080183 +int drawable module_services_panel_item_bkg 0x7f080184 +int drawable module_services_panel_item_detail_bkg 0x7f080185 +int drawable module_services_panel_strategy_button_bkg 0x7f080186 +int drawable notification_action_background 0x7f080187 +int drawable notification_bg 0x7f080188 +int drawable notification_bg_low 0x7f080189 +int drawable notification_bg_low_normal 0x7f08018a +int drawable notification_bg_low_pressed 0x7f08018b +int drawable notification_bg_normal 0x7f08018c +int drawable notification_bg_normal_pressed 0x7f08018d +int drawable notification_icon_background 0x7f08018e +int drawable notification_template_icon_bg 0x7f08018f +int drawable notification_template_icon_low_bg 0x7f080190 +int drawable notification_tile_bg 0x7f080191 +int drawable notify_panel_notification_icon_bg 0x7f080192 +int drawable pad_back 0x7f080193 +int drawable pad_car 0x7f080194 +int drawable pad_logo_black 0x7f080195 +int drawable selector_call_btn_normal 0x7f080196 +int drawable selector_call_btn_pressed 0x7f080197 +int drawable selector_service_car_panel_details 0x7f080198 +int drawable service_car_panel_details_normal 0x7f080199 +int drawable service_car_panel_details_pressed 0x7f08019a +int drawable sr 0x7f08019b +int drawable sy 0x7f08019c +int drawable tooltip_frame_dark 0x7f08019d +int drawable tooltip_frame_light 0x7f08019e +int drawable zxing_scanline 0x7f08019f +int id Full 0x7f0b0001 +int id Half 0x7f0b0002 +int id accessibility_action_clickable_span 0x7f0b0003 +int id accessibility_custom_action_0 0x7f0b0004 +int id accessibility_custom_action_1 0x7f0b0005 +int id accessibility_custom_action_10 0x7f0b0006 +int id accessibility_custom_action_11 0x7f0b0007 +int id accessibility_custom_action_12 0x7f0b0008 +int id accessibility_custom_action_13 0x7f0b0009 +int id accessibility_custom_action_14 0x7f0b000a +int id accessibility_custom_action_15 0x7f0b000b +int id accessibility_custom_action_16 0x7f0b000c +int id accessibility_custom_action_17 0x7f0b000d +int id accessibility_custom_action_18 0x7f0b000e +int id accessibility_custom_action_19 0x7f0b000f +int id accessibility_custom_action_2 0x7f0b0010 +int id accessibility_custom_action_20 0x7f0b0011 +int id accessibility_custom_action_21 0x7f0b0012 +int id accessibility_custom_action_22 0x7f0b0013 +int id accessibility_custom_action_23 0x7f0b0014 +int id accessibility_custom_action_24 0x7f0b0015 +int id accessibility_custom_action_25 0x7f0b0016 +int id accessibility_custom_action_26 0x7f0b0017 +int id accessibility_custom_action_27 0x7f0b0018 +int id accessibility_custom_action_28 0x7f0b0019 +int id accessibility_custom_action_29 0x7f0b001a +int id accessibility_custom_action_3 0x7f0b001b +int id accessibility_custom_action_30 0x7f0b001c +int id accessibility_custom_action_31 0x7f0b001d +int id accessibility_custom_action_4 0x7f0b001e +int id accessibility_custom_action_5 0x7f0b001f +int id accessibility_custom_action_6 0x7f0b0020 +int id accessibility_custom_action_7 0x7f0b0021 +int id accessibility_custom_action_8 0x7f0b0022 +int id accessibility_custom_action_9 0x7f0b0023 +int id account_auth_back 0x7f0b0024 +int id account_auth_cancel_login 0x7f0b0025 +int id account_auth_login 0x7f0b0026 +int id action0 0x7f0b0027 +int id action_bar 0x7f0b0028 +int id action_bar_activity_content 0x7f0b0029 +int id action_bar_container 0x7f0b002a +int id action_bar_root 0x7f0b002b +int id action_bar_spinner 0x7f0b002c +int id action_bar_subtitle 0x7f0b002d +int id action_bar_title 0x7f0b002e +int id action_container 0x7f0b002f +int id action_context_bar 0x7f0b0030 +int id action_divider 0x7f0b0031 +int id action_image 0x7f0b0032 +int id action_menu_divider 0x7f0b0033 +int id action_menu_presenter 0x7f0b0034 +int id action_mode_bar 0x7f0b0035 +int id action_mode_bar_stub 0x7f0b0036 +int id action_mode_close_button 0x7f0b0037 +int id action_text 0x7f0b0038 +int id actions 0x7f0b0039 +int id activity_chooser_view_content 0x7f0b003a +int id add 0x7f0b003b +int id alertTitle 0x7f0b003c +int id async 0x7f0b003d +int id auto_scanner_view 0x7f0b003e +int id bezier_view 0x7f0b003f +int id blocking 0x7f0b0040 +int id bottom 0x7f0b0041 +int id bt_refresh 0x7f0b0042 +int id btnAuthorizeAgree 0x7f0b0043 +int id btnAuthorizeDisAgree 0x7f0b0044 +int id btnAuthorizeLoadingError 0x7f0b0045 +int id buttonPanel 0x7f0b0046 +int id cancel_action 0x7f0b0047 +int id center 0x7f0b0048 +int id centerCrop 0x7f0b0049 +int id centerInside 0x7f0b004a +int id checkbox 0x7f0b004b +int id checked 0x7f0b004c +int id chronometer 0x7f0b004d +int id circle 0x7f0b004e +int id clAuthorizeContainer 0x7f0b004f +int id clAuthorizeLoading 0x7f0b0050 +int id clAuthorizeTitle 0x7f0b0051 +int id clAuthorizeTopParent 0x7f0b0052 +int id clLoadingAuthorizeContainer 0x7f0b0053 +int id clLoadingErrorContainer 0x7f0b0054 +int id clMarkerContent 0x7f0b0055 +int id clMarkerTopView 0x7f0b0056 +int id content 0x7f0b0057 +int id contentPanel 0x7f0b0058 +int id custom 0x7f0b0059 +int id customPanel 0x7f0b005a +int id customRatingBar 0x7f0b005b +int id decor_content_parent 0x7f0b005c +int id default_activity_button 0x7f0b005d +int id dialog_button 0x7f0b005e +int id edit_query 0x7f0b005f +int id end 0x7f0b0060 +int id end_padder 0x7f0b0061 +int id expand_activities_button 0x7f0b0062 +int id expanded_menu 0x7f0b0063 +int id fitBottomStart 0x7f0b0064 +int id fitCenter 0x7f0b0065 +int id fitEnd 0x7f0b0066 +int id fitStart 0x7f0b0067 +int id fitXY 0x7f0b0068 +int id focusCrop 0x7f0b0069 +int id forever 0x7f0b006a +int id glide_custom_view_target_tag 0x7f0b006b +int id gone 0x7f0b006c +int id group_divider 0x7f0b006d +int id home 0x7f0b006e +int id horizontal 0x7f0b006f +int id icon 0x7f0b0070 +int id icon_group 0x7f0b0071 +int id image 0x7f0b0072 +int id info 0x7f0b0073 +int id invisible 0x7f0b0074 +int id italic 0x7f0b0075 +int id item_touch_helper_previous_elevation 0x7f0b0076 +int id ivAuthorizeLoading 0x7f0b0077 +int id ivAuthorizeLoadingError 0x7f0b0078 +int id ivCar 0x7f0b0079 +int id ivIcon 0x7f0b007a +int id ivReverseTriangle 0x7f0b007b +int id ivUserHead 0x7f0b007c +int id iv_back 0x7f0b007d +int id iv_camera_traffic 0x7f0b007e +int id iv_qr 0x7f0b007f +int id left 0x7f0b0080 +int id line1 0x7f0b0081 +int id line3 0x7f0b0082 +int id listMode 0x7f0b0083 +int id list_item 0x7f0b0084 +int id ll_scan_success 0x7f0b0085 +int id loading_imageview 0x7f0b0086 +int id loading_liner_layout 0x7f0b0087 +int id loading_text 0x7f0b0088 +int id map_amap_id_cursor 0x7f0b0089 +int id media_actions 0x7f0b008a +int id message 0x7f0b008b +int id moduleGuideIndicator 0x7f0b008c +int id moduleGuidePageFive 0x7f0b008d +int id moduleGuidePageFour 0x7f0b008e +int id moduleGuidePageOne 0x7f0b008f +int id moduleGuidePageThree 0x7f0b0090 +int id moduleGuidePageTwo 0x7f0b0091 +int id moduleGuideViewPager 0x7f0b0092 +int id module_adas_dispatch_remind_affirm 0x7f0b0093 +int id module_adas_dispatch_remind_cancel 0x7f0b0094 +int id module_adas_dispatch_remind_loc 0x7f0b0095 +int id module_adas_dispatch_remind_timer 0x7f0b0096 +int id module_commons_marker_car_model 0x7f0b0097 +int id module_commons_toast_left_drawable 0x7f0b0098 +int id module_commons_toast_msg 0x7f0b0099 +int id module_commons_wm_dialog_button_cancel 0x7f0b009a +int id module_commons_wm_dialog_button_ok 0x7f0b009b +int id module_commons_wm_dialog_content 0x7f0b009c +int id module_guide_include 0x7f0b009d +int id module_guide_page_left 0x7f0b009e +int id module_guide_page_right 0x7f0b009f +int id module_guide_tv_next_step 0x7f0b00a0 +int id module_map_amap_my_location_bg_iv 0x7f0b00a1 +int id module_map_amap_my_location_iv 0x7f0b00a2 +int id module_service_id_call 0x7f0b00a3 +int id module_service_id_content 0x7f0b00a4 +int id module_service_id_marker_content 0x7f0b00a5 +int id module_service_id_tag 0x7f0b00a6 +int id module_service_id_user_header 0x7f0b00a7 +int id module_services_dispatch_dialog_confirm 0x7f0b00a8 +int id module_services_dispatch_dialog_end_content 0x7f0b00a9 +int id module_services_dispatch_dialog_flight_time 0x7f0b00aa +int id module_services_dispatch_dialog_start_content 0x7f0b00ab +int id module_services_dispatch_dialog_task_content 0x7f0b00ac +int id module_services_dispatch_dialog_task_time 0x7f0b00ad +int id module_services_dispatch_dialog_title 0x7f0b00ae +int id module_services_empty_tip 0x7f0b00af +int id module_services_id_20Km_radius 0x7f0b00b0 +int id module_services_id_40Km_radius 0x7f0b00b1 +int id module_services_id_close 0x7f0b00b2 +int id module_services_id_error_container 0x7f0b00b3 +int id module_services_id_load_strategy_container 0x7f0b00b4 +int id module_services_id_loading 0x7f0b00b5 +int id module_services_id_panel_item_avatar 0x7f0b00b6 +int id module_services_id_panel_item_call 0x7f0b00b7 +int id module_services_id_panel_item_detail 0x7f0b00b8 +int id module_services_id_panel_item_distance 0x7f0b00b9 +int id module_services_id_panel_item_distance_tag 0x7f0b00ba +int id module_services_id_panel_item_nickname 0x7f0b00bb +int id module_services_id_recycler_view 0x7f0b00bc +int id module_services_id_title 0x7f0b00bd +int id module_services_status_iv 0x7f0b00be +int id module_services_status_tv 0x7f0b00bf +int id multiply 0x7f0b00c0 +int id none 0x7f0b00c1 +int id normal 0x7f0b00c2 +int id notification_background 0x7f0b00c3 +int id notification_main_column 0x7f0b00c4 +int id notification_main_column_container 0x7f0b00c5 +int id off 0x7f0b00c6 +int id on 0x7f0b00c7 +int id packed 0x7f0b00c8 +int id parent 0x7f0b00c9 +int id parentPanel 0x7f0b00ca +int id percent 0x7f0b00cb +int id preview_view 0x7f0b00cc +int id progress_circular 0x7f0b00cd +int id progress_horizontal 0x7f0b00ce +int id radio 0x7f0b00cf +int id refresh_button 0x7f0b00d0 +int id right 0x7f0b00d1 +int id right_icon 0x7f0b00d2 +int id right_side 0x7f0b00d3 +int id rl_login_fail 0x7f0b00d4 +int id rl_qr_code 0x7f0b00d5 +int id round 0x7f0b00d6 +int id screen 0x7f0b00d7 +int id scrollIndicatorDown 0x7f0b00d8 +int id scrollIndicatorUp 0x7f0b00d9 +int id scrollView 0x7f0b00da +int id search_badge 0x7f0b00db +int id search_bar 0x7f0b00dc +int id search_button 0x7f0b00dd +int id search_close_btn 0x7f0b00de +int id search_edit_frame 0x7f0b00df +int id search_go_btn 0x7f0b00e0 +int id search_mag_icon 0x7f0b00e1 +int id search_plate 0x7f0b00e2 +int id search_src_text 0x7f0b00e3 +int id search_voice_btn 0x7f0b00e4 +int id select_dialog_listview 0x7f0b00e5 +int id shape_id 0x7f0b00e6 +int id shortcut 0x7f0b00e7 +int id spacer 0x7f0b00e8 +int id split_action_bar 0x7f0b00e9 +int id spread 0x7f0b00ea +int id spread_inside 0x7f0b00eb +int id src_atop 0x7f0b00ec +int id src_in 0x7f0b00ed +int id src_over 0x7f0b00ee +int id start 0x7f0b00ef +int id status_bar_latest_event_content 0x7f0b00f0 +int id submenuarrow 0x7f0b00f1 +int id submit_area 0x7f0b00f2 +int id switch_account 0x7f0b00f3 +int id tabMode 0x7f0b00f4 +int id tag_accessibility_actions 0x7f0b00f5 +int id tag_accessibility_clickable_spans 0x7f0b00f6 +int id tag_accessibility_heading 0x7f0b00f7 +int id tag_accessibility_pane_title 0x7f0b00f8 +int id tag_screen_reader_focusable 0x7f0b00f9 +int id tag_transition_group 0x7f0b00fa +int id tag_unhandled_key_event_manager 0x7f0b00fb +int id tag_unhandled_key_listeners 0x7f0b00fc +int id text 0x7f0b00fd +int id text2 0x7f0b00fe +int id textSpacerNoButtons 0x7f0b00ff +int id textSpacerNoTitle 0x7f0b0100 +int id time 0x7f0b0101 +int id title 0x7f0b0102 +int id titleDividerNoCustom 0x7f0b0103 +int id title_template 0x7f0b0104 +int id top 0x7f0b0105 +int id topPanel 0x7f0b0106 +int id tvAuthorizeButtonContent 0x7f0b0107 +int id tvAuthorizeContent 0x7f0b0108 +int id tvAuthorizeLastContent 0x7f0b0109 +int id tvAuthorizeLoading 0x7f0b010a +int id tvAuthorizeLoadingError 0x7f0b010b +int id tvAuthorizeTitle 0x7f0b010c +int id tvMarkerContent 0x7f0b010d +int id tv_fail_desc 0x7f0b010e +int id tv_scan_desc 0x7f0b010f +int id txt_cancel 0x7f0b0110 +int id txt_content 0x7f0b0111 +int id txt_ok 0x7f0b0112 +int id txt_sub_content 0x7f0b0113 +int id txt_title 0x7f0b0114 +int id unchecked 0x7f0b0115 +int id uniform 0x7f0b0116 +int id up 0x7f0b0117 +int id vertical 0x7f0b0118 +int id wrap 0x7f0b0119 +int id wrap_content 0x7f0b011a +int integer abc_config_activityDefaultDur 0x7f0c0001 +int integer abc_config_activityShortDur 0x7f0c0002 +int integer cancel_button_image_alpha 0x7f0c0003 +int integer config_tooltipAnimTime 0x7f0c0004 +int integer status_bar_notification_info_maxnum 0x7f0c0005 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x7f0d0001 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x7f0d0002 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x7f0d0003 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x7f0d0004 +int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x7f0d0005 +int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x7f0d0006 +int interpolator fast_out_slow_in 0x7f0d0007 +int layout abc_action_bar_title_item 0x7f0e0001 +int layout abc_action_bar_up_container 0x7f0e0002 +int layout abc_action_menu_item_layout 0x7f0e0003 +int layout abc_action_menu_layout 0x7f0e0004 +int layout abc_action_mode_bar 0x7f0e0005 +int layout abc_action_mode_close_item_material 0x7f0e0006 +int layout abc_activity_chooser_view 0x7f0e0007 +int layout abc_activity_chooser_view_list_item 0x7f0e0008 +int layout abc_alert_dialog_button_bar_material 0x7f0e0009 +int layout abc_alert_dialog_material 0x7f0e000a +int layout abc_alert_dialog_title_material 0x7f0e000b +int layout abc_cascading_menu_item_layout 0x7f0e000c +int layout abc_dialog_title_material 0x7f0e000d +int layout abc_expanded_menu_layout 0x7f0e000e +int layout abc_list_menu_item_checkbox 0x7f0e000f +int layout abc_list_menu_item_icon 0x7f0e0010 +int layout abc_list_menu_item_layout 0x7f0e0011 +int layout abc_list_menu_item_radio 0x7f0e0012 +int layout abc_popup_menu_header_item_layout 0x7f0e0013 +int layout abc_popup_menu_item_layout 0x7f0e0014 +int layout abc_screen_content_include 0x7f0e0015 +int layout abc_screen_simple 0x7f0e0016 +int layout abc_screen_simple_overlay_action_mode 0x7f0e0017 +int layout abc_screen_toolbar 0x7f0e0018 +int layout abc_search_dropdown_item_icons_2line 0x7f0e0019 +int layout abc_search_view 0x7f0e001a +int layout abc_select_dialog_material 0x7f0e001b +int layout abc_tooltip 0x7f0e001c +int layout activity_auth 0x7f0e001d +int layout activity_scan_qr 0x7f0e001e +int layout custom_dialog 0x7f0e001f +int layout dialog_cutom_layout 0x7f0e0020 +int layout layout_pad_login 0x7f0e0021 +int layout map_amap_cursor 0x7f0e0022 +int layout modeules_commons_layout_custom_ratingbar 0x7f0e0023 +int layout modudle_camera_layout_info 0x7f0e0024 +int layout modudle_services_marker_info_window_layout 0x7f0e0025 +int layout modudle_services_marker_layout 0x7f0e0026 +int layout modudle_services_marker_layout_info 0x7f0e0027 +int layout modudle_services_marker_vr_layout 0x7f0e0028 +int layout module_authorize_fragment 0x7f0e0029 +int layout module_common_bezier_layout 0x7f0e002a +int layout module_common_my_location 0x7f0e002b +int layout module_common_warning_marker_bottom 0x7f0e002c +int layout module_common_warning_marker_front 0x7f0e002d +int layout module_commons_layout_car 0x7f0e002e +int layout module_commons_layout_toast 0x7f0e002f +int layout module_commons_layout_toast_with_left_drawable 0x7f0e0030 +int layout module_commons_layout_wm_dialog 0x7f0e0031 +int layout module_dialog_adas_dispatch_airport 0x7f0e0032 +int layout module_dialog_adas_dispatch_cars 0x7f0e0033 +int layout module_guide_fragment 0x7f0e0034 +int layout module_guide_item_include 0x7f0e0035 +int layout module_guide_item_stage_five 0x7f0e0036 +int layout module_guide_item_stage_four 0x7f0e0037 +int layout module_guide_item_stage_one 0x7f0e0038 +int layout module_guide_item_stage_three 0x7f0e0039 +int layout module_guide_item_stage_two 0x7f0e003a +int layout module_services_fragment_online_car_panel 0x7f0e003b +int layout module_services_online_car_panel_item 0x7f0e003c +int layout module_services_status_panel 0x7f0e003d +int layout network_loading_item 0x7f0e003e +int layout notification_action 0x7f0e003f +int layout notification_action_tombstone 0x7f0e0040 +int layout notification_media_action 0x7f0e0041 +int layout notification_media_cancel_action 0x7f0e0042 +int layout notification_template_big_media 0x7f0e0043 +int layout notification_template_big_media_custom 0x7f0e0044 +int layout notification_template_big_media_narrow 0x7f0e0045 +int layout notification_template_big_media_narrow_custom 0x7f0e0046 +int layout notification_template_custom_big 0x7f0e0047 +int layout notification_template_icon_group 0x7f0e0048 +int layout notification_template_lines_media 0x7f0e0049 +int layout notification_template_media 0x7f0e004a +int layout notification_template_media_custom 0x7f0e004b +int layout notification_template_part_chronometer 0x7f0e004c +int layout notification_template_part_time 0x7f0e004d +int layout select_dialog_item_material 0x7f0e004e +int layout select_dialog_multichoice_material 0x7f0e004f +int layout select_dialog_singlechoice_material 0x7f0e0050 +int layout support_simple_spinner_dropdown_item 0x7f0e0051 +int mipmap module_authorize_loading 0x7f100001 +int mipmap module_authorize_loading_error 0x7f100002 +int mipmap module_authorize_title_left_symbol 0x7f100003 +int mipmap module_authorize_title_right_symbol 0x7f100004 +int mipmap module_guide_item_stage_five 0x7f100005 +int mipmap module_guide_item_stage_five_launcher 0x7f100006 +int mipmap module_guide_item_stage_four 0x7f100007 +int mipmap module_guide_item_stage_four_launcher 0x7f100008 +int mipmap module_guide_item_stage_one 0x7f100009 +int mipmap module_guide_item_stage_one_launcher 0x7f10000a +int mipmap module_guide_item_stage_three 0x7f10000b +int mipmap module_guide_item_stage_three_launcher 0x7f10000c +int mipmap module_guide_item_stage_two 0x7f10000d +int mipmap module_guide_item_stage_two_launcher 0x7f10000e +int mipmap module_guide_left_page 0x7f10000f +int mipmap module_guide_right_page 0x7f100010 +int raw beep 0x7f130001 +int raw daba 0x7f130002 +int raw kache 0x7f130003 +int raw motuoche 0x7f130004 +int raw people 0x7f130005 +int raw shexiangtou 0x7f130006 +int raw special_vehicle 0x7f130007 +int raw stopline 0x7f130008 +int raw tachexiaoche 0x7f130009 +int raw taxi 0x7f13000a +int raw v2x_daolujiebing 0x7f13000b +int raw v2x_daolujishui 0x7f13000c +int raw v2x_daolushigong 0x7f13000d +int raw v2x_guzhangqiuzhu 0x7f13000e +int raw v2x_jiaotongjiancha 0x7f13000f +int raw v2x_nongwu 0x7f130010 +int raw v2x_shigong_warning 0x7f130011 +int raw v2x_shigu 0x7f130012 +int raw v2x_shishilukuang 0x7f130013 +int raw v2x_yongdu 0x7f130014 +int raw ziche 0x7f130015 +int raw zixingche 0x7f130016 +int string abc_action_bar_home_description 0x7f140001 +int string abc_action_bar_up_description 0x7f140002 +int string abc_action_menu_overflow_description 0x7f140003 +int string abc_action_mode_done 0x7f140004 +int string abc_activity_chooser_view_see_all 0x7f140005 +int string abc_activitychooserview_choose_application 0x7f140006 +int string abc_capital_off 0x7f140007 +int string abc_capital_on 0x7f140008 +int string abc_font_family_body_1_material 0x7f140009 +int string abc_font_family_body_2_material 0x7f14000a +int string abc_font_family_button_material 0x7f14000b +int string abc_font_family_caption_material 0x7f14000c +int string abc_font_family_display_1_material 0x7f14000d +int string abc_font_family_display_2_material 0x7f14000e +int string abc_font_family_display_3_material 0x7f14000f +int string abc_font_family_display_4_material 0x7f140010 +int string abc_font_family_headline_material 0x7f140011 +int string abc_font_family_menu_material 0x7f140012 +int string abc_font_family_subhead_material 0x7f140013 +int string abc_font_family_title_material 0x7f140014 +int string abc_menu_alt_shortcut_label 0x7f140015 +int string abc_menu_ctrl_shortcut_label 0x7f140016 +int string abc_menu_delete_shortcut_label 0x7f140017 +int string abc_menu_enter_shortcut_label 0x7f140018 +int string abc_menu_function_shortcut_label 0x7f140019 +int string abc_menu_meta_shortcut_label 0x7f14001a +int string abc_menu_shift_shortcut_label 0x7f14001b +int string abc_menu_space_shortcut_label 0x7f14001c +int string abc_menu_sym_shortcut_label 0x7f14001d +int string abc_prepend_shortcut_label 0x7f14001e +int string abc_search_hint 0x7f14001f +int string abc_searchview_description_clear 0x7f140020 +int string abc_searchview_description_query 0x7f140021 +int string abc_searchview_description_search 0x7f140022 +int string abc_searchview_description_submit 0x7f140023 +int string abc_searchview_description_voice 0x7f140024 +int string abc_shareactionprovider_share_with 0x7f140025 +int string abc_shareactionprovider_share_with_application 0x7f140026 +int string abc_toolbar_collapse_description 0x7f140027 +int string app_name 0x7f140028 +int string module_authorize_agreement_agree 0x7f140029 +int string module_authorize_agreement_disagree 0x7f14002a +int string module_authorize_agreement_error 0x7f14002b +int string module_authorize_agreement_loading 0x7f14002c +int string module_authorize_agreement_retry 0x7f14002d +int string module_authorize_agreement_tip 0x7f14002e +int string module_authorize_failed 0x7f14002f +int string module_commons_button_cancel 0x7f140030 +int string module_commons_button_ok 0x7f140031 +int string module_commons_exit_navi_content 0x7f140032 +int string module_guide_finish 0x7f140033 +int string module_guide_item_entry_main 0x7f140034 +int string module_guide_item_next_step 0x7f140035 +int string module_guide_main 0x7f140036 +int string module_guide_voice_page_end 0x7f140037 +int string module_guide_voice_page_five 0x7f140038 +int string module_guide_voice_page_four 0x7f140039 +int string module_guide_voice_page_one 0x7f14003a +int string module_guide_voice_page_three 0x7f14003b +int string module_guide_voice_page_two 0x7f14003c +int string module_service_app_entrance_text 0x7f14003d +int string module_service_launcher_card_info 0x7f14003e +int string module_service_launcher_card_tips 0x7f14003f +int string module_service_open_app_tip 0x7f140040 +int string module_services_dispatch_cars_affirm 0x7f140041 +int string module_services_dispatch_cars_cancel 0x7f140042 +int string module_services_dispatch_cars_remind_content 0x7f140043 +int string module_services_dispatch_cars_remind_title 0x7f140044 +int string module_services_dispatch_dialog_affirm 0x7f140045 +int string module_services_dispatch_dialog_end_loc 0x7f140046 +int string module_services_dispatch_dialog_flight_info 0x7f140047 +int string module_services_dispatch_dialog_start_loc 0x7f140048 +int string module_services_dispatch_dialog_task_info 0x7f140049 +int string module_services_dispatch_dialog_task_time 0x7f14004a +int string module_services_dispatch_dialog_title 0x7f14004b +int string module_services_error_text 0x7f14004c +int string module_services_online_car_panel_empty_tmpl 0x7f14004d +int string module_services_online_car_panel_title 0x7f14004e +int string module_services_panel_item_call 0x7f14004f +int string module_services_panel_item_detail_text 0x7f140050 +int string module_services_panel_item_distance_tag_text 0x7f140051 +int string module_services_str_20Km_radius 0x7f140052 +int string module_services_str_40Km_radius 0x7f140053 +int string network_resp_error 0x7f140054 +int string search_menu_title 0x7f140055 +int string status_bar_notification_info_overflow 0x7f140056 +int string str_pad_login_sure 0x7f140057 +int style AlertDialog_AppCompat 0x7f150001 +int style AlertDialog_AppCompat_Light 0x7f150002 +int style Animation_AppCompat_Dialog 0x7f150003 +int style Animation_AppCompat_DropDownUp 0x7f150004 +int style Animation_AppCompat_Tooltip 0x7f150005 +int style BaseFloatDialogStyle 0x7f150006 +int style Base_AlertDialog_AppCompat 0x7f150007 +int style Base_AlertDialog_AppCompat_Light 0x7f150008 +int style Base_Animation_AppCompat_Dialog 0x7f150009 +int style Base_Animation_AppCompat_DropDownUp 0x7f15000a +int style Base_Animation_AppCompat_Tooltip 0x7f15000b +int style Base_DialogWindowTitleBackground_AppCompat 0x7f15000c +int style Base_DialogWindowTitle_AppCompat 0x7f15000d +int style Base_TextAppearance_AppCompat 0x7f15000e +int style Base_TextAppearance_AppCompat_Body1 0x7f15000f +int style Base_TextAppearance_AppCompat_Body2 0x7f150010 +int style Base_TextAppearance_AppCompat_Button 0x7f150011 +int style Base_TextAppearance_AppCompat_Caption 0x7f150012 +int style Base_TextAppearance_AppCompat_Display1 0x7f150013 +int style Base_TextAppearance_AppCompat_Display2 0x7f150014 +int style Base_TextAppearance_AppCompat_Display3 0x7f150015 +int style Base_TextAppearance_AppCompat_Display4 0x7f150016 +int style Base_TextAppearance_AppCompat_Headline 0x7f150017 +int style Base_TextAppearance_AppCompat_Inverse 0x7f150018 +int style Base_TextAppearance_AppCompat_Large 0x7f150019 +int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f15001a +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f15001b +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f15001c +int style Base_TextAppearance_AppCompat_Medium 0x7f15001d +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f15001e +int style Base_TextAppearance_AppCompat_Menu 0x7f15001f +int style Base_TextAppearance_AppCompat_SearchResult 0x7f150020 +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f150021 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f150022 +int style Base_TextAppearance_AppCompat_Small 0x7f150023 +int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f150024 +int style Base_TextAppearance_AppCompat_Subhead 0x7f150025 +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f150026 +int style Base_TextAppearance_AppCompat_Title 0x7f150027 +int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f150028 +int style Base_TextAppearance_AppCompat_Tooltip 0x7f150029 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f15002a +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f15002b +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f15002c +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f15002d +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f15002e +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f15002f +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f150030 +int style Base_TextAppearance_AppCompat_Widget_Button 0x7f150031 +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150032 +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f150033 +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150034 +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f150035 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f150036 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f150037 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f150038 +int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f150039 +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f15003a +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f15003b +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f15003c +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f15003d +int style Base_ThemeOverlay_AppCompat 0x7f15003e +int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f15003f +int style Base_ThemeOverlay_AppCompat_Dark 0x7f150040 +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150041 +int style Base_ThemeOverlay_AppCompat_Dialog 0x7f150042 +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f150043 +int style Base_ThemeOverlay_AppCompat_Light 0x7f150044 +int style Base_Theme_AppCompat 0x7f150045 +int style Base_Theme_AppCompat_CompactMenu 0x7f150046 +int style Base_Theme_AppCompat_Dialog 0x7f150047 +int style Base_Theme_AppCompat_DialogWhenLarge 0x7f150048 +int style Base_Theme_AppCompat_Dialog_Alert 0x7f150049 +int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f15004a +int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f15004b +int style Base_Theme_AppCompat_Light 0x7f15004c +int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f15004d +int style Base_Theme_AppCompat_Light_Dialog 0x7f15004e +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f15004f +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f150050 +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f150051 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f150052 +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f150053 +int style Base_V21_Theme_AppCompat 0x7f150054 +int style Base_V21_Theme_AppCompat_Dialog 0x7f150055 +int style Base_V21_Theme_AppCompat_Light 0x7f150056 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f150057 +int style Base_V22_Theme_AppCompat 0x7f150058 +int style Base_V22_Theme_AppCompat_Light 0x7f150059 +int style Base_V23_Theme_AppCompat 0x7f15005a +int style Base_V23_Theme_AppCompat_Light 0x7f15005b +int style Base_V26_Theme_AppCompat 0x7f15005c +int style Base_V26_Theme_AppCompat_Light 0x7f15005d +int style Base_V26_Widget_AppCompat_Toolbar 0x7f15005e +int style Base_V28_Theme_AppCompat 0x7f15005f +int style Base_V28_Theme_AppCompat_Light 0x7f150060 +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f150061 +int style Base_V7_Theme_AppCompat 0x7f150062 +int style Base_V7_Theme_AppCompat_Dialog 0x7f150063 +int style Base_V7_Theme_AppCompat_Light 0x7f150064 +int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f150065 +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f150066 +int style Base_V7_Widget_AppCompat_EditText 0x7f150067 +int style Base_V7_Widget_AppCompat_Toolbar 0x7f150068 +int style Base_Widget_AppCompat_ActionBar 0x7f150069 +int style Base_Widget_AppCompat_ActionBar_Solid 0x7f15006a +int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f15006b +int style Base_Widget_AppCompat_ActionBar_TabText 0x7f15006c +int style Base_Widget_AppCompat_ActionBar_TabView 0x7f15006d +int style Base_Widget_AppCompat_ActionButton 0x7f15006e +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f15006f +int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f150070 +int style Base_Widget_AppCompat_ActionMode 0x7f150071 +int style Base_Widget_AppCompat_ActivityChooserView 0x7f150072 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f150073 +int style Base_Widget_AppCompat_Button 0x7f150074 +int style Base_Widget_AppCompat_ButtonBar 0x7f150075 +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f150076 +int style Base_Widget_AppCompat_Button_Borderless 0x7f150077 +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f150078 +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f150079 +int style Base_Widget_AppCompat_Button_Colored 0x7f15007a +int style Base_Widget_AppCompat_Button_Small 0x7f15007b +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f15007c +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f15007d +int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f15007e +int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f15007f +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f150080 +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f150081 +int style Base_Widget_AppCompat_EditText 0x7f150082 +int style Base_Widget_AppCompat_ImageButton 0x7f150083 +int style Base_Widget_AppCompat_Light_ActionBar 0x7f150084 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f150085 +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f150086 +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f150087 +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f150088 +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f150089 +int style Base_Widget_AppCompat_Light_PopupMenu 0x7f15008a +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f15008b +int style Base_Widget_AppCompat_ListMenuView 0x7f15008c +int style Base_Widget_AppCompat_ListPopupWindow 0x7f15008d +int style Base_Widget_AppCompat_ListView 0x7f15008e +int style Base_Widget_AppCompat_ListView_DropDown 0x7f15008f +int style Base_Widget_AppCompat_ListView_Menu 0x7f150090 +int style Base_Widget_AppCompat_PopupMenu 0x7f150091 +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f150092 +int style Base_Widget_AppCompat_PopupWindow 0x7f150093 +int style Base_Widget_AppCompat_ProgressBar 0x7f150094 +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f150095 +int style Base_Widget_AppCompat_RatingBar 0x7f150096 +int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f150097 +int style Base_Widget_AppCompat_RatingBar_Small 0x7f150098 +int style Base_Widget_AppCompat_SearchView 0x7f150099 +int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f15009a +int style Base_Widget_AppCompat_SeekBar 0x7f15009b +int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f15009c +int style Base_Widget_AppCompat_Spinner 0x7f15009d +int style Base_Widget_AppCompat_Spinner_Underlined 0x7f15009e +int style Base_Widget_AppCompat_TextView 0x7f15009f +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f1500a0 +int style Base_Widget_AppCompat_Toolbar 0x7f1500a1 +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f1500a2 +int style Platform_AppCompat 0x7f1500a3 +int style Platform_AppCompat_Light 0x7f1500a4 +int style Platform_ThemeOverlay_AppCompat 0x7f1500a5 +int style Platform_ThemeOverlay_AppCompat_Dark 0x7f1500a6 +int style Platform_ThemeOverlay_AppCompat_Light 0x7f1500a7 +int style Platform_V21_AppCompat 0x7f1500a8 +int style Platform_V21_AppCompat_Light 0x7f1500a9 +int style Platform_V25_AppCompat 0x7f1500aa +int style Platform_V25_AppCompat_Light 0x7f1500ab +int style Platform_Widget_AppCompat_Spinner 0x7f1500ac +int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f1500ad +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f1500ae +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f1500af +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f1500b0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f1500b1 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f1500b2 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f1500b3 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f1500b4 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f1500b5 +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f1500b6 +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f1500b7 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f1500b8 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f1500b9 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f1500ba +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f1500bb +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f1500bc +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f1500bd +int style TextAppearance_AppCompat 0x7f1500be +int style TextAppearance_AppCompat_Body1 0x7f1500bf +int style TextAppearance_AppCompat_Body2 0x7f1500c0 +int style TextAppearance_AppCompat_Button 0x7f1500c1 +int style TextAppearance_AppCompat_Caption 0x7f1500c2 +int style TextAppearance_AppCompat_Display1 0x7f1500c3 +int style TextAppearance_AppCompat_Display2 0x7f1500c4 +int style TextAppearance_AppCompat_Display3 0x7f1500c5 +int style TextAppearance_AppCompat_Display4 0x7f1500c6 +int style TextAppearance_AppCompat_Headline 0x7f1500c7 +int style TextAppearance_AppCompat_Inverse 0x7f1500c8 +int style TextAppearance_AppCompat_Large 0x7f1500c9 +int style TextAppearance_AppCompat_Large_Inverse 0x7f1500ca +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f1500cb +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f1500cc +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f1500cd +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f1500ce +int style TextAppearance_AppCompat_Medium 0x7f1500cf +int style TextAppearance_AppCompat_Medium_Inverse 0x7f1500d0 +int style TextAppearance_AppCompat_Menu 0x7f1500d1 +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f1500d2 +int style TextAppearance_AppCompat_SearchResult_Title 0x7f1500d3 +int style TextAppearance_AppCompat_Small 0x7f1500d4 +int style TextAppearance_AppCompat_Small_Inverse 0x7f1500d5 +int style TextAppearance_AppCompat_Subhead 0x7f1500d6 +int style TextAppearance_AppCompat_Subhead_Inverse 0x7f1500d7 +int style TextAppearance_AppCompat_Title 0x7f1500d8 +int style TextAppearance_AppCompat_Title_Inverse 0x7f1500d9 +int style TextAppearance_AppCompat_Tooltip 0x7f1500da +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f1500db +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f1500dc +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f1500dd +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f1500de +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f1500df +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f1500e0 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f1500e1 +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f1500e2 +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f1500e3 +int style TextAppearance_AppCompat_Widget_Button 0x7f1500e4 +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f1500e5 +int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f1500e6 +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f1500e7 +int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f1500e8 +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f1500e9 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f1500ea +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f1500eb +int style TextAppearance_AppCompat_Widget_Switch 0x7f1500ec +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f1500ed +int style TextAppearance_Compat_Notification 0x7f1500ee +int style TextAppearance_Compat_Notification_Info 0x7f1500ef +int style TextAppearance_Compat_Notification_Info_Media 0x7f1500f0 +int style TextAppearance_Compat_Notification_Line2 0x7f1500f1 +int style TextAppearance_Compat_Notification_Line2_Media 0x7f1500f2 +int style TextAppearance_Compat_Notification_Media 0x7f1500f3 +int style TextAppearance_Compat_Notification_Time 0x7f1500f4 +int style TextAppearance_Compat_Notification_Time_Media 0x7f1500f5 +int style TextAppearance_Compat_Notification_Title 0x7f1500f6 +int style TextAppearance_Compat_Notification_Title_Media 0x7f1500f7 +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f1500f8 +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f1500f9 +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f1500fa +int style ThemeOverlay_AppCompat 0x7f1500fb +int style ThemeOverlay_AppCompat_ActionBar 0x7f1500fc +int style ThemeOverlay_AppCompat_Dark 0x7f1500fd +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f1500fe +int style ThemeOverlay_AppCompat_DayNight 0x7f1500ff +int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x7f150100 +int style ThemeOverlay_AppCompat_Dialog 0x7f150101 +int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f150102 +int style ThemeOverlay_AppCompat_Light 0x7f150103 +int style Theme_AppCompat 0x7f150104 +int style Theme_AppCompat_CompactMenu 0x7f150105 +int style Theme_AppCompat_DayNight 0x7f150106 +int style Theme_AppCompat_DayNight_DarkActionBar 0x7f150107 +int style Theme_AppCompat_DayNight_Dialog 0x7f150108 +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f150109 +int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f15010a +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f15010b +int style Theme_AppCompat_DayNight_NoActionBar 0x7f15010c +int style Theme_AppCompat_Dialog 0x7f15010d +int style Theme_AppCompat_DialogWhenLarge 0x7f15010e +int style Theme_AppCompat_Dialog_Alert 0x7f15010f +int style Theme_AppCompat_Dialog_MinWidth 0x7f150110 +int style Theme_AppCompat_Light 0x7f150111 +int style Theme_AppCompat_Light_DarkActionBar 0x7f150112 +int style Theme_AppCompat_Light_Dialog 0x7f150113 +int style Theme_AppCompat_Light_DialogWhenLarge 0x7f150114 +int style Theme_AppCompat_Light_Dialog_Alert 0x7f150115 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f150116 +int style Theme_AppCompat_Light_NoActionBar 0x7f150117 +int style Theme_AppCompat_NoActionBar 0x7f150118 +int style Theme_AppMain 0x7f150119 +int style Widget_AppCompat_ActionBar 0x7f15011a +int style Widget_AppCompat_ActionBar_Solid 0x7f15011b +int style Widget_AppCompat_ActionBar_TabBar 0x7f15011c +int style Widget_AppCompat_ActionBar_TabText 0x7f15011d +int style Widget_AppCompat_ActionBar_TabView 0x7f15011e +int style Widget_AppCompat_ActionButton 0x7f15011f +int style Widget_AppCompat_ActionButton_CloseMode 0x7f150120 +int style Widget_AppCompat_ActionButton_Overflow 0x7f150121 +int style Widget_AppCompat_ActionMode 0x7f150122 +int style Widget_AppCompat_ActivityChooserView 0x7f150123 +int style Widget_AppCompat_AutoCompleteTextView 0x7f150124 +int style Widget_AppCompat_Button 0x7f150125 +int style Widget_AppCompat_ButtonBar 0x7f150126 +int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f150127 +int style Widget_AppCompat_Button_Borderless 0x7f150128 +int style Widget_AppCompat_Button_Borderless_Colored 0x7f150129 +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f15012a +int style Widget_AppCompat_Button_Colored 0x7f15012b +int style Widget_AppCompat_Button_Small 0x7f15012c +int style Widget_AppCompat_CompoundButton_CheckBox 0x7f15012d +int style Widget_AppCompat_CompoundButton_RadioButton 0x7f15012e +int style Widget_AppCompat_CompoundButton_Switch 0x7f15012f +int style Widget_AppCompat_DrawerArrowToggle 0x7f150130 +int style Widget_AppCompat_DropDownItem_Spinner 0x7f150131 +int style Widget_AppCompat_EditText 0x7f150132 +int style Widget_AppCompat_ImageButton 0x7f150133 +int style Widget_AppCompat_Light_ActionBar 0x7f150134 +int style Widget_AppCompat_Light_ActionBar_Solid 0x7f150135 +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f150136 +int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f150137 +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f150138 +int style Widget_AppCompat_Light_ActionBar_TabText 0x7f150139 +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f15013a +int style Widget_AppCompat_Light_ActionBar_TabView 0x7f15013b +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f15013c +int style Widget_AppCompat_Light_ActionButton 0x7f15013d +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f15013e +int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f15013f +int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f150140 +int style Widget_AppCompat_Light_ActivityChooserView 0x7f150141 +int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f150142 +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f150143 +int style Widget_AppCompat_Light_ListPopupWindow 0x7f150144 +int style Widget_AppCompat_Light_ListView_DropDown 0x7f150145 +int style Widget_AppCompat_Light_PopupMenu 0x7f150146 +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f150147 +int style Widget_AppCompat_Light_SearchView 0x7f150148 +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f150149 +int style Widget_AppCompat_ListMenuView 0x7f15014a +int style Widget_AppCompat_ListPopupWindow 0x7f15014b +int style Widget_AppCompat_ListView 0x7f15014c +int style Widget_AppCompat_ListView_DropDown 0x7f15014d +int style Widget_AppCompat_ListView_Menu 0x7f15014e +int style Widget_AppCompat_PopupMenu 0x7f15014f +int style Widget_AppCompat_PopupMenu_Overflow 0x7f150150 +int style Widget_AppCompat_PopupWindow 0x7f150151 +int style Widget_AppCompat_ProgressBar 0x7f150152 +int style Widget_AppCompat_ProgressBar_Horizontal 0x7f150153 +int style Widget_AppCompat_RatingBar 0x7f150154 +int style Widget_AppCompat_RatingBar_Indicator 0x7f150155 +int style Widget_AppCompat_RatingBar_Small 0x7f150156 +int style Widget_AppCompat_SearchView 0x7f150157 +int style Widget_AppCompat_SearchView_ActionBar 0x7f150158 +int style Widget_AppCompat_SeekBar 0x7f150159 +int style Widget_AppCompat_SeekBar_Discrete 0x7f15015a +int style Widget_AppCompat_Spinner 0x7f15015b +int style Widget_AppCompat_Spinner_DropDown 0x7f15015c +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f15015d +int style Widget_AppCompat_Spinner_Underlined 0x7f15015e +int style Widget_AppCompat_TextView 0x7f15015f +int style Widget_AppCompat_TextView_SpinnerItem 0x7f150160 +int style Widget_AppCompat_Toolbar 0x7f150161 +int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f150162 +int style Widget_Compat_NotificationActionContainer 0x7f150163 +int style Widget_Compat_NotificationActionText 0x7f150164 +int style Widget_Support_CoordinatorLayout 0x7f150165 +int style customHeartHeartRatingBarStyle 0x7f150166 +int[] styleable ActionBar { 0x7f040036, 0x7f040038, 0x7f040039, 0x7f04006b, 0x7f04006c, 0x7f04006d, 0x7f04006e, 0x7f04006f, 0x7f040070, 0x7f040073, 0x7f040078, 0x7f040079, 0x7f040095, 0x7f0400ae, 0x7f0400af, 0x7f0400b0, 0x7f0400b1, 0x7f0400b2, 0x7f0400b7, 0x7f0400ba, 0x7f040107, 0x7f04011d, 0x7f04012b, 0x7f040132, 0x7f040133, 0x7f040166, 0x7f040169, 0x7f040185, 0x7f04018e } +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionBarLayout { 0x10100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x7f040036, 0x7f040038, 0x7f040058, 0x7f0400ae, 0x7f040169, 0x7f04018e } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x7f040097, 0x7f0400b8 } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable AlertDialog { 0x10100f2, 0x7f040049, 0x7f04004a, 0x7f0400fc, 0x7f0400fd, 0x7f04011a, 0x7f040158, 0x7f040159 } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable AnimatedStateListDrawableCompat_android_constantSize 0 +int styleable AnimatedStateListDrawableCompat_android_dither 1 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 +int styleable AnimatedStateListDrawableCompat_android_visible 5 +int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } +int styleable AnimatedStateListDrawableItem_android_drawable 0 +int styleable AnimatedStateListDrawableItem_android_id 1 +int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_fromId 1 +int styleable AnimatedStateListDrawableTransition_android_reversible 2 +int styleable AnimatedStateListDrawableTransition_android_toId 3 +int[] styleable AppCompatImageView { 0x1010119, 0x7f04015f, 0x7f040183, 0x7f040184 } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x1010142, 0x7f040180, 0x7f040181, 0x7f040182 } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } +int styleable AppCompatTextHelper_android_drawableBottom 0 +int styleable AppCompatTextHelper_android_drawableEnd 1 +int styleable AppCompatTextHelper_android_drawableLeft 2 +int styleable AppCompatTextHelper_android_drawableRight 3 +int styleable AppCompatTextHelper_android_drawableStart 4 +int styleable AppCompatTextHelper_android_drawableTop 5 +int styleable AppCompatTextHelper_android_textAppearance 6 +int[] styleable AppCompatTextView { 0x1010034, 0x7f040031, 0x7f040032, 0x7f040033, 0x7f040034, 0x7f040035, 0x7f04007d, 0x7f04007e, 0x7f04007f, 0x7f040080, 0x7f040082, 0x7f040083, 0x7f040084, 0x7f040085, 0x7f0400a0, 0x7f0400a2, 0x7f0400aa, 0x7f0400bc, 0x7f0400f7, 0x7f04016f, 0x7f04017a } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_drawableBottomCompat 6 +int styleable AppCompatTextView_drawableEndCompat 7 +int styleable AppCompatTextView_drawableLeftCompat 8 +int styleable AppCompatTextView_drawableRightCompat 9 +int styleable AppCompatTextView_drawableStartCompat 10 +int styleable AppCompatTextView_drawableTint 11 +int styleable AppCompatTextView_drawableTintMode 12 +int styleable AppCompatTextView_drawableTopCompat 13 +int styleable AppCompatTextView_firstBaselineToTopHeight 14 +int styleable AppCompatTextView_fontFamily 15 +int styleable AppCompatTextView_fontVariationSettings 16 +int styleable AppCompatTextView_lastBaselineToBottomHeight 17 +int styleable AppCompatTextView_lineHeight 18 +int styleable AppCompatTextView_textAllCaps 19 +int styleable AppCompatTextView_textLocale 20 +int[] styleable AppCompatTheme { 0x7f040002, 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000d, 0x7f04000e, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040020, 0x7f040023, 0x7f040027, 0x7f040028, 0x7f040029, 0x7f04002a, 0x10100ae, 0x1010057, 0x7f040030, 0x7f04003f, 0x7f040042, 0x7f040043, 0x7f040044, 0x7f040045, 0x7f040046, 0x7f04004b, 0x7f04004c, 0x7f040050, 0x7f040051, 0x7f04005c, 0x7f04005d, 0x7f04005e, 0x7f04005f, 0x7f040060, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f040064, 0x7f040065, 0x7f040071, 0x7f040075, 0x7f040076, 0x7f040077, 0x7f04007a, 0x7f04007c, 0x7f040087, 0x7f040088, 0x7f04008a, 0x7f04008b, 0x7f04008c, 0x7f0400b0, 0x7f0400b6, 0x7f0400f8, 0x7f0400f9, 0x7f0400fa, 0x7f0400fb, 0x7f0400fe, 0x7f0400ff, 0x7f040100, 0x7f040101, 0x7f040102, 0x7f040103, 0x7f040104, 0x7f040105, 0x7f040106, 0x7f040125, 0x7f040126, 0x7f040127, 0x7f04012a, 0x7f04012c, 0x7f040136, 0x7f040137, 0x7f040138, 0x7f040139, 0x7f040150, 0x7f040151, 0x7f040152, 0x7f040153, 0x7f04015c, 0x7f04015d, 0x7f04016d, 0x7f040170, 0x7f040171, 0x7f040172, 0x7f040173, 0x7f040174, 0x7f040175, 0x7f040176, 0x7f040177, 0x7f040178, 0x7f040179, 0x7f04018f, 0x7f040190, 0x7f040191, 0x7f040192, 0x7f04019e, 0x7f0401a0, 0x7f0401a1, 0x7f0401a2, 0x7f0401a3, 0x7f0401a4, 0x7f0401a5, 0x7f0401a6, 0x7f0401a7, 0x7f0401a8, 0x7f0401a9 } +int styleable AppCompatTheme_actionBarDivider 0 +int styleable AppCompatTheme_actionBarItemBackground 1 +int styleable AppCompatTheme_actionBarPopupTheme 2 +int styleable AppCompatTheme_actionBarSize 3 +int styleable AppCompatTheme_actionBarSplitStyle 4 +int styleable AppCompatTheme_actionBarStyle 5 +int styleable AppCompatTheme_actionBarTabBarStyle 6 +int styleable AppCompatTheme_actionBarTabStyle 7 +int styleable AppCompatTheme_actionBarTabTextStyle 8 +int styleable AppCompatTheme_actionBarTheme 9 +int styleable AppCompatTheme_actionBarWidgetTheme 10 +int styleable AppCompatTheme_actionButtonStyle 11 +int styleable AppCompatTheme_actionDropDownStyle 12 +int styleable AppCompatTheme_actionMenuTextAppearance 13 +int styleable AppCompatTheme_actionMenuTextColor 14 +int styleable AppCompatTheme_actionModeBackground 15 +int styleable AppCompatTheme_actionModeCloseButtonStyle 16 +int styleable AppCompatTheme_actionModeCloseDrawable 17 +int styleable AppCompatTheme_actionModeCopyDrawable 18 +int styleable AppCompatTheme_actionModeCutDrawable 19 +int styleable AppCompatTheme_actionModeFindDrawable 20 +int styleable AppCompatTheme_actionModePasteDrawable 21 +int styleable AppCompatTheme_actionModePopupWindowStyle 22 +int styleable AppCompatTheme_actionModeSelectAllDrawable 23 +int styleable AppCompatTheme_actionModeShareDrawable 24 +int styleable AppCompatTheme_actionModeSplitBackground 25 +int styleable AppCompatTheme_actionModeStyle 26 +int styleable AppCompatTheme_actionModeWebSearchDrawable 27 +int styleable AppCompatTheme_actionOverflowButtonStyle 28 +int styleable AppCompatTheme_actionOverflowMenuStyle 29 +int styleable AppCompatTheme_activityChooserViewStyle 30 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 31 +int styleable AppCompatTheme_alertDialogCenterButtons 32 +int styleable AppCompatTheme_alertDialogStyle 33 +int styleable AppCompatTheme_alertDialogTheme 34 +int styleable AppCompatTheme_android_windowAnimationStyle 35 +int styleable AppCompatTheme_android_windowIsFloating 36 +int styleable AppCompatTheme_autoCompleteTextViewStyle 37 +int styleable AppCompatTheme_borderlessButtonStyle 38 +int styleable AppCompatTheme_buttonBarButtonStyle 39 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42 +int styleable AppCompatTheme_buttonBarStyle 43 +int styleable AppCompatTheme_buttonStyle 44 +int styleable AppCompatTheme_buttonStyleSmall 45 +int styleable AppCompatTheme_checkboxStyle 46 +int styleable AppCompatTheme_checkedTextViewStyle 47 +int styleable AppCompatTheme_colorAccent 48 +int styleable AppCompatTheme_colorBackgroundFloating 49 +int styleable AppCompatTheme_colorButtonNormal 50 +int styleable AppCompatTheme_colorControlActivated 51 +int styleable AppCompatTheme_colorControlHighlight 52 +int styleable AppCompatTheme_colorControlNormal 53 +int styleable AppCompatTheme_colorError 54 +int styleable AppCompatTheme_colorPrimary 55 +int styleable AppCompatTheme_colorPrimaryDark 56 +int styleable AppCompatTheme_colorSwitchThumbNormal 57 +int styleable AppCompatTheme_controlBackground 58 +int styleable AppCompatTheme_dialogCornerRadius 59 +int styleable AppCompatTheme_dialogPreferredPadding 60 +int styleable AppCompatTheme_dialogTheme 61 +int styleable AppCompatTheme_dividerHorizontal 62 +int styleable AppCompatTheme_dividerVertical 63 +int styleable AppCompatTheme_dropDownListViewStyle 64 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 65 +int styleable AppCompatTheme_editTextBackground 66 +int styleable AppCompatTheme_editTextColor 67 +int styleable AppCompatTheme_editTextStyle 68 +int styleable AppCompatTheme_homeAsUpIndicator 69 +int styleable AppCompatTheme_imageButtonStyle 70 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 71 +int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 72 +int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 73 +int styleable AppCompatTheme_listDividerAlertDialog 74 +int styleable AppCompatTheme_listMenuViewStyle 75 +int styleable AppCompatTheme_listPopupWindowStyle 76 +int styleable AppCompatTheme_listPreferredItemHeight 77 +int styleable AppCompatTheme_listPreferredItemHeightLarge 78 +int styleable AppCompatTheme_listPreferredItemHeightSmall 79 +int styleable AppCompatTheme_listPreferredItemPaddingEnd 80 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 81 +int styleable AppCompatTheme_listPreferredItemPaddingRight 82 +int styleable AppCompatTheme_listPreferredItemPaddingStart 83 +int styleable AppCompatTheme_panelBackground 84 +int styleable AppCompatTheme_panelMenuListTheme 85 +int styleable AppCompatTheme_panelMenuListWidth 86 +int styleable AppCompatTheme_popupMenuStyle 87 +int styleable AppCompatTheme_popupWindowStyle 88 +int styleable AppCompatTheme_radioButtonStyle 89 +int styleable AppCompatTheme_ratingBarStyle 90 +int styleable AppCompatTheme_ratingBarStyleIndicator 91 +int styleable AppCompatTheme_ratingBarStyleSmall 92 +int styleable AppCompatTheme_searchViewStyle 93 +int styleable AppCompatTheme_seekBarStyle 94 +int styleable AppCompatTheme_selectableItemBackground 95 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 96 +int styleable AppCompatTheme_spinnerDropDownItemStyle 97 +int styleable AppCompatTheme_spinnerStyle 98 +int styleable AppCompatTheme_switchStyle 99 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 100 +int styleable AppCompatTheme_textAppearanceListItem 101 +int styleable AppCompatTheme_textAppearanceListItemSecondary 102 +int styleable AppCompatTheme_textAppearanceListItemSmall 103 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 104 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 105 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 106 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 107 +int styleable AppCompatTheme_textColorAlertDialogListItem 108 +int styleable AppCompatTheme_textColorSearchUrl 109 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 110 +int styleable AppCompatTheme_toolbarStyle 111 +int styleable AppCompatTheme_tooltipForegroundColor 112 +int styleable AppCompatTheme_tooltipFrameBackground 113 +int styleable AppCompatTheme_viewInflaterClass 114 +int styleable AppCompatTheme_windowActionBar 115 +int styleable AppCompatTheme_windowActionBarOverlay 116 +int styleable AppCompatTheme_windowActionModeOverlay 117 +int styleable AppCompatTheme_windowFixedHeightMajor 118 +int styleable AppCompatTheme_windowFixedHeightMinor 119 +int styleable AppCompatTheme_windowFixedWidthMajor 120 +int styleable AppCompatTheme_windowFixedWidthMinor 121 +int styleable AppCompatTheme_windowMinWidthMajor 122 +int styleable AppCompatTheme_windowMinWidthMinor 123 +int styleable AppCompatTheme_windowNoTitle 124 +int[] styleable AutoScannerView { 0x7f040040, 0x7f040041, 0x7f040109, 0x7f04014d, 0x7f040156, 0x7f040194, 0x7f040195, 0x7f040199, 0x7f04019a, 0x7f04019b } +int styleable AutoScannerView_btmText 0 +int styleable AutoScannerView_btmTextSize 1 +int styleable AutoScannerView_maskColor 2 +int styleable AutoScannerView_scanline 3 +int styleable AutoScannerView_showRectLine 4 +int styleable AutoScannerView_topText 5 +int styleable AutoScannerView_topTextSize 6 +int styleable AutoScannerView_triAngleColor 7 +int styleable AutoScannerView_triAngleLength 8 +int styleable AutoScannerView_triAngleWidth 9 +int[] styleable ButtonBarLayout { 0x7f04002b } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable ColorStateListItem { 0x7f04002c, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable CompoundButton { 0x1010107, 0x7f040047, 0x7f04004d, 0x7f04004e } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonCompat 1 +int styleable CompoundButton_buttonTint 2 +int styleable CompoundButton_buttonTintMode 3 +int[] styleable ConstraintLayout_Layout { 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x7f04003d, 0x7f04003e, 0x7f04004f, 0x7f040067, 0x7f040068, 0x7f0400c2, 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400c6, 0x7f0400c7, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400cb, 0x7f0400cc, 0x7f0400cd, 0x7f0400ce, 0x7f0400cf, 0x7f0400d0, 0x7f0400d1, 0x7f0400d2, 0x7f0400d3, 0x7f0400d4, 0x7f0400d5, 0x7f0400d6, 0x7f0400d7, 0x7f0400d8, 0x7f0400d9, 0x7f0400da, 0x7f0400db, 0x7f0400dc, 0x7f0400dd, 0x7f0400de, 0x7f0400df, 0x7f0400e0, 0x7f0400e1, 0x7f0400e2, 0x7f0400e3, 0x7f0400e4, 0x7f0400e5, 0x7f0400e6, 0x7f0400e7, 0x7f0400e8, 0x7f0400e9, 0x7f0400ea, 0x7f0400ec, 0x7f0400ed, 0x7f0400ee, 0x7f0400ef, 0x7f0400f0, 0x7f0400f1, 0x7f0400f2, 0x7f0400f3, 0x7f0400f6 } +int styleable ConstraintLayout_Layout_android_maxHeight 0 +int styleable ConstraintLayout_Layout_android_maxWidth 1 +int styleable ConstraintLayout_Layout_android_minHeight 2 +int styleable ConstraintLayout_Layout_android_minWidth 3 +int styleable ConstraintLayout_Layout_android_orientation 4 +int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 5 +int styleable ConstraintLayout_Layout_barrierDirection 6 +int styleable ConstraintLayout_Layout_chainUseRtl 7 +int styleable ConstraintLayout_Layout_constraintSet 8 +int styleable ConstraintLayout_Layout_constraint_referenced_ids 9 +int styleable ConstraintLayout_Layout_layout_constrainedHeight 10 +int styleable ConstraintLayout_Layout_layout_constrainedWidth 11 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 12 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 13 +int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 14 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 15 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 16 +int styleable ConstraintLayout_Layout_layout_constraintCircle 17 +int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 18 +int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 19 +int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 20 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 21 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 22 +int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 23 +int styleable ConstraintLayout_Layout_layout_constraintGuide_end 24 +int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 25 +int styleable ConstraintLayout_Layout_layout_constraintHeight_default 26 +int styleable ConstraintLayout_Layout_layout_constraintHeight_max 27 +int styleable ConstraintLayout_Layout_layout_constraintHeight_min 28 +int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 29 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 30 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 31 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 32 +int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 33 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 34 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 35 +int styleable ConstraintLayout_Layout_layout_constraintRight_creator 36 +int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 37 +int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 38 +int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 39 +int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 40 +int styleable ConstraintLayout_Layout_layout_constraintTop_creator 41 +int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 42 +int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 43 +int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 44 +int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 45 +int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 46 +int styleable ConstraintLayout_Layout_layout_constraintWidth_default 47 +int styleable ConstraintLayout_Layout_layout_constraintWidth_max 48 +int styleable ConstraintLayout_Layout_layout_constraintWidth_min 49 +int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 50 +int styleable ConstraintLayout_Layout_layout_editor_absoluteX 51 +int styleable ConstraintLayout_Layout_layout_editor_absoluteY 52 +int styleable ConstraintLayout_Layout_layout_goneMarginBottom 53 +int styleable ConstraintLayout_Layout_layout_goneMarginEnd 54 +int styleable ConstraintLayout_Layout_layout_goneMarginLeft 55 +int styleable ConstraintLayout_Layout_layout_goneMarginRight 56 +int styleable ConstraintLayout_Layout_layout_goneMarginStart 57 +int styleable ConstraintLayout_Layout_layout_goneMarginTop 58 +int styleable ConstraintLayout_Layout_layout_optimizationLevel 59 +int[] styleable ConstraintLayout_placeholder { 0x7f040069, 0x7f040096 } +int styleable ConstraintLayout_placeholder_content 0 +int styleable ConstraintLayout_placeholder_emptyVisibility 1 +int[] styleable ConstraintSet { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x7f04003d, 0x7f04003e, 0x7f04004f, 0x7f040068, 0x7f0400c2, 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400c6, 0x7f0400c7, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400cb, 0x7f0400cc, 0x7f0400cd, 0x7f0400ce, 0x7f0400cf, 0x7f0400d0, 0x7f0400d1, 0x7f0400d2, 0x7f0400d3, 0x7f0400d4, 0x7f0400d5, 0x7f0400d6, 0x7f0400d7, 0x7f0400d8, 0x7f0400d9, 0x7f0400da, 0x7f0400db, 0x7f0400dc, 0x7f0400dd, 0x7f0400de, 0x7f0400df, 0x7f0400e0, 0x7f0400e1, 0x7f0400e2, 0x7f0400e3, 0x7f0400e4, 0x7f0400e5, 0x7f0400e6, 0x7f0400e7, 0x7f0400e8, 0x7f0400e9, 0x7f0400ea, 0x7f0400ec, 0x7f0400ed, 0x7f0400ee, 0x7f0400ef, 0x7f0400f0, 0x7f0400f1, 0x7f0400f2, 0x7f0400f3 } +int styleable ConstraintSet_android_alpha 0 +int styleable ConstraintSet_android_elevation 1 +int styleable ConstraintSet_android_id 2 +int styleable ConstraintSet_android_layout_height 3 +int styleable ConstraintSet_android_layout_marginBottom 4 +int styleable ConstraintSet_android_layout_marginEnd 5 +int styleable ConstraintSet_android_layout_marginLeft 6 +int styleable ConstraintSet_android_layout_marginRight 7 +int styleable ConstraintSet_android_layout_marginStart 8 +int styleable ConstraintSet_android_layout_marginTop 9 +int styleable ConstraintSet_android_layout_width 10 +int styleable ConstraintSet_android_maxHeight 11 +int styleable ConstraintSet_android_maxWidth 12 +int styleable ConstraintSet_android_minHeight 13 +int styleable ConstraintSet_android_minWidth 14 +int styleable ConstraintSet_android_orientation 15 +int styleable ConstraintSet_android_rotation 16 +int styleable ConstraintSet_android_rotationX 17 +int styleable ConstraintSet_android_rotationY 18 +int styleable ConstraintSet_android_scaleX 19 +int styleable ConstraintSet_android_scaleY 20 +int styleable ConstraintSet_android_transformPivotX 21 +int styleable ConstraintSet_android_transformPivotY 22 +int styleable ConstraintSet_android_translationX 23 +int styleable ConstraintSet_android_translationY 24 +int styleable ConstraintSet_android_translationZ 25 +int styleable ConstraintSet_android_visibility 26 +int styleable ConstraintSet_barrierAllowsGoneWidgets 27 +int styleable ConstraintSet_barrierDirection 28 +int styleable ConstraintSet_chainUseRtl 29 +int styleable ConstraintSet_constraint_referenced_ids 30 +int styleable ConstraintSet_layout_constrainedHeight 31 +int styleable ConstraintSet_layout_constrainedWidth 32 +int styleable ConstraintSet_layout_constraintBaseline_creator 33 +int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 34 +int styleable ConstraintSet_layout_constraintBottom_creator 35 +int styleable ConstraintSet_layout_constraintBottom_toBottomOf 36 +int styleable ConstraintSet_layout_constraintBottom_toTopOf 37 +int styleable ConstraintSet_layout_constraintCircle 38 +int styleable ConstraintSet_layout_constraintCircleAngle 39 +int styleable ConstraintSet_layout_constraintCircleRadius 40 +int styleable ConstraintSet_layout_constraintDimensionRatio 41 +int styleable ConstraintSet_layout_constraintEnd_toEndOf 42 +int styleable ConstraintSet_layout_constraintEnd_toStartOf 43 +int styleable ConstraintSet_layout_constraintGuide_begin 44 +int styleable ConstraintSet_layout_constraintGuide_end 45 +int styleable ConstraintSet_layout_constraintGuide_percent 46 +int styleable ConstraintSet_layout_constraintHeight_default 47 +int styleable ConstraintSet_layout_constraintHeight_max 48 +int styleable ConstraintSet_layout_constraintHeight_min 49 +int styleable ConstraintSet_layout_constraintHeight_percent 50 +int styleable ConstraintSet_layout_constraintHorizontal_bias 51 +int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 52 +int styleable ConstraintSet_layout_constraintHorizontal_weight 53 +int styleable ConstraintSet_layout_constraintLeft_creator 54 +int styleable ConstraintSet_layout_constraintLeft_toLeftOf 55 +int styleable ConstraintSet_layout_constraintLeft_toRightOf 56 +int styleable ConstraintSet_layout_constraintRight_creator 57 +int styleable ConstraintSet_layout_constraintRight_toLeftOf 58 +int styleable ConstraintSet_layout_constraintRight_toRightOf 59 +int styleable ConstraintSet_layout_constraintStart_toEndOf 60 +int styleable ConstraintSet_layout_constraintStart_toStartOf 61 +int styleable ConstraintSet_layout_constraintTop_creator 62 +int styleable ConstraintSet_layout_constraintTop_toBottomOf 63 +int styleable ConstraintSet_layout_constraintTop_toTopOf 64 +int styleable ConstraintSet_layout_constraintVertical_bias 65 +int styleable ConstraintSet_layout_constraintVertical_chainStyle 66 +int styleable ConstraintSet_layout_constraintVertical_weight 67 +int styleable ConstraintSet_layout_constraintWidth_default 68 +int styleable ConstraintSet_layout_constraintWidth_max 69 +int styleable ConstraintSet_layout_constraintWidth_min 70 +int styleable ConstraintSet_layout_constraintWidth_percent 71 +int styleable ConstraintSet_layout_editor_absoluteX 72 +int styleable ConstraintSet_layout_editor_absoluteY 73 +int styleable ConstraintSet_layout_goneMarginBottom 74 +int styleable ConstraintSet_layout_goneMarginEnd 75 +int styleable ConstraintSet_layout_goneMarginLeft 76 +int styleable ConstraintSet_layout_goneMarginRight 77 +int styleable ConstraintSet_layout_goneMarginStart 78 +int styleable ConstraintSet_layout_goneMarginTop 79 +int[] styleable CoordinatorLayout { 0x7f0400bb, 0x7f040162 } +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x7f0400bf, 0x7f0400c0, 0x7f0400c1, 0x7f0400eb, 0x7f0400f4, 0x7f0400f5 } +int styleable CoordinatorLayout_Layout_android_layout_gravity 0 +int styleable CoordinatorLayout_Layout_layout_anchor 1 +int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 +int styleable CoordinatorLayout_Layout_layout_behavior 3 +int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 +int styleable CoordinatorLayout_Layout_layout_insetEdge 5 +int styleable CoordinatorLayout_Layout_layout_keyline 6 +int[] styleable CustomCircleImageView { 0x7f040052, 0x7f040053, 0x7f040054, 0x7f040055 } +int styleable CustomCircleImageView_civ_border_color 0 +int styleable CustomCircleImageView_civ_border_overlay 1 +int styleable CustomCircleImageView_civ_border_width 2 +int styleable CustomCircleImageView_civ_fill_color 3 +int[] styleable CustomRatingBar { 0x7f040001, 0x7f040056, 0x7f04008d, 0x7f04008e, 0x7f04008f, 0x7f040090, 0x7f040091, 0x7f040092, 0x7f040093, 0x7f040094, 0x7f040163 } +int styleable CustomRatingBar_OtherHeartImg 0 +int styleable CustomRatingBar_clickable 1 +int styleable CustomRatingBar_elenmentCount 2 +int styleable CustomRatingBar_elenmentEmpty 3 +int styleable CustomRatingBar_elenmentFill 4 +int styleable CustomRatingBar_elenmentHarf 5 +int styleable CustomRatingBar_elenmentHeight 6 +int styleable CustomRatingBar_elenmentPadding 7 +int styleable CustomRatingBar_elenmentStep 8 +int styleable CustomRatingBar_elenmentWidth 9 +int styleable CustomRatingBar_stepSize 10 +int[] styleable DiscreteScrollView { 0x7f040089 } +int styleable DiscreteScrollView_dsv_orientation 0 +int[] styleable DrawerArrowToggle { 0x7f04002e, 0x7f04002f, 0x7f04003c, 0x7f04005b, 0x7f040081, 0x7f0400ac, 0x7f04015b, 0x7f04017c } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable FontFamily { 0x7f0400a3, 0x7f0400a4, 0x7f0400a5, 0x7f0400a6, 0x7f0400a7, 0x7f0400a8 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f0400a1, 0x7f0400a9, 0x7f0400aa, 0x7f0400ab, 0x7f04019c } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable GenericDraweeHierarchy { 0x7f040025, 0x7f040037, 0x7f040098, 0x7f040099, 0x7f04009a, 0x7f040120, 0x7f040128, 0x7f040129, 0x7f04012e, 0x7f04012f, 0x7f040130, 0x7f040131, 0x7f04013b, 0x7f04013c, 0x7f04013e, 0x7f04013f, 0x7f040140, 0x7f040141, 0x7f040142, 0x7f040144, 0x7f040145, 0x7f040146, 0x7f040147, 0x7f040148, 0x7f040149, 0x7f04014a, 0x7f04014b, 0x7f04014c, 0x7f04019d } +int styleable GenericDraweeHierarchy_actualImageScaleType 0 +int styleable GenericDraweeHierarchy_backgroundImage 1 +int styleable GenericDraweeHierarchy_fadeDuration 2 +int styleable GenericDraweeHierarchy_failureImage 3 +int styleable GenericDraweeHierarchy_failureImageScaleType 4 +int styleable GenericDraweeHierarchy_overlayImage 5 +int styleable GenericDraweeHierarchy_placeholderImage 6 +int styleable GenericDraweeHierarchy_placeholderImageScaleType 7 +int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8 +int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9 +int styleable GenericDraweeHierarchy_progressBarImage 10 +int styleable GenericDraweeHierarchy_progressBarImageScaleType 11 +int styleable GenericDraweeHierarchy_retryImage 12 +int styleable GenericDraweeHierarchy_retryImageScaleType 13 +int styleable GenericDraweeHierarchy_roundAsCircle 14 +int styleable GenericDraweeHierarchy_roundBottomEnd 15 +int styleable GenericDraweeHierarchy_roundBottomLeft 16 +int styleable GenericDraweeHierarchy_roundBottomRight 17 +int styleable GenericDraweeHierarchy_roundBottomStart 18 +int styleable GenericDraweeHierarchy_roundTopEnd 19 +int styleable GenericDraweeHierarchy_roundTopLeft 20 +int styleable GenericDraweeHierarchy_roundTopRight 21 +int styleable GenericDraweeHierarchy_roundTopStart 22 +int styleable GenericDraweeHierarchy_roundWithOverlayColor 23 +int styleable GenericDraweeHierarchy_roundedCornerRadius 24 +int styleable GenericDraweeHierarchy_roundingBorderColor 25 +int styleable GenericDraweeHierarchy_roundingBorderPadding 26 +int styleable GenericDraweeHierarchy_roundingBorderWidth 27 +int styleable GenericDraweeHierarchy_viewAspectRatio 28 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int[] styleable LinearConstraintLayout { 0x10100c4 } +int styleable LinearConstraintLayout_android_orientation 0 +int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x7f040079, 0x7f04007b, 0x7f04010b, 0x7f040155 } +int styleable LinearLayoutCompat_android_baselineAligned 0 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 +int styleable LinearLayoutCompat_android_gravity 2 +int styleable LinearLayoutCompat_android_orientation 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_height 1 +int styleable LinearLayoutCompat_Layout_android_layout_weight 2 +int styleable LinearLayoutCompat_Layout_android_layout_width 3 +int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } +int styleable MenuGroup_android_checkableBehavior 0 +int styleable MenuGroup_android_enabled 1 +int styleable MenuGroup_android_id 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_visible 5 +int[] styleable MenuItem { 0x7f04000f, 0x7f040021, 0x7f040022, 0x7f04002d, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x7f04006a, 0x7f0400b3, 0x7f0400b4, 0x7f04011e, 0x7f040154, 0x7f040193 } +int styleable MenuItem_actionLayout 0 +int styleable MenuItem_actionProviderClass 1 +int styleable MenuItem_actionViewClass 2 +int styleable MenuItem_alphabeticModifiers 3 +int styleable MenuItem_android_alphabeticShortcut 4 +int styleable MenuItem_android_checkable 5 +int styleable MenuItem_android_checked 6 +int styleable MenuItem_android_enabled 7 +int styleable MenuItem_android_icon 8 +int styleable MenuItem_android_id 9 +int styleable MenuItem_android_menuCategory 10 +int styleable MenuItem_android_numericShortcut 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_android_orderInCategory 13 +int styleable MenuItem_android_title 14 +int styleable MenuItem_android_titleCondensed 15 +int styleable MenuItem_android_visible 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x7f04012d, 0x7f040164 } +int styleable MenuView_android_headerBackground 0 +int styleable MenuView_android_horizontalDivider 1 +int styleable MenuView_android_itemBackground 2 +int styleable MenuView_android_itemIconDisabledAlpha 3 +int styleable MenuView_android_itemTextAppearance 4 +int styleable MenuView_android_verticalDivider 5 +int styleable MenuView_android_windowAnimationStyle 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable MogoImageView { 0x7f04010d, 0x7f04010e, 0x7f04010f, 0x7f040110, 0x7f040111, 0x7f040112, 0x7f040113, 0x7f040114, 0x7f040115, 0x7f040116, 0x7f040117, 0x7f040118, 0x7f040119 } +int styleable MogoImageView_miv_blurRadius 0 +int styleable MogoImageView_miv_borderColor 1 +int styleable MogoImageView_miv_bottomLeftRadius 2 +int styleable MogoImageView_miv_bottomRightRadius 3 +int styleable MogoImageView_miv_failureHolder 4 +int styleable MogoImageView_miv_isBlur 5 +int styleable MogoImageView_miv_overlayImageId 6 +int styleable MogoImageView_miv_placeHolder 7 +int styleable MogoImageView_miv_radius 8 +int styleable MogoImageView_miv_shape 9 +int styleable MogoImageView_miv_shapeBorderWidth 10 +int styleable MogoImageView_miv_topLeftRadius 11 +int styleable MogoImageView_miv_topRightRadius 12 +int[] styleable MogoSkinBackgroundHelper { 0x10100d4 } +int styleable MogoSkinBackgroundHelper_android_background 0 +int[] styleable MogoSkinCompatImageView { 0x1010119, 0x1010121, 0x7f04015f, 0x7f040183 } +int styleable MogoSkinCompatImageView_android_src 0 +int styleable MogoSkinCompatImageView_android_tint 1 +int styleable MogoSkinCompatImageView_srcCompat 2 +int styleable MogoSkinCompatImageView_tint 3 +int[] styleable MogoSkinCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } +int styleable MogoSkinCompatTextHelper_android_drawableBottom 0 +int styleable MogoSkinCompatTextHelper_android_drawableEnd 1 +int styleable MogoSkinCompatTextHelper_android_drawableLeft 2 +int styleable MogoSkinCompatTextHelper_android_drawableRight 3 +int styleable MogoSkinCompatTextHelper_android_drawableStart 4 +int styleable MogoSkinCompatTextHelper_android_drawableTop 5 +int styleable MogoSkinCompatTextHelper_android_textAppearance 6 +int[] styleable MogoSkinTextAppearance { 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x1010095, 0x1010097, 0x1010096, 0x7f04016f } +int styleable MogoSkinTextAppearance_android_shadowColor 0 +int styleable MogoSkinTextAppearance_android_shadowDx 1 +int styleable MogoSkinTextAppearance_android_shadowDy 2 +int styleable MogoSkinTextAppearance_android_shadowRadius 3 +int styleable MogoSkinTextAppearance_android_textColor 4 +int styleable MogoSkinTextAppearance_android_textColorHint 5 +int styleable MogoSkinTextAppearance_android_textSize 6 +int styleable MogoSkinTextAppearance_android_textStyle 7 +int styleable MogoSkinTextAppearance_android_typeface 8 +int styleable MogoSkinTextAppearance_textAllCaps 9 +int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x7f04011f } +int styleable PopupWindow_android_popupAnimationStyle 0 +int styleable PopupWindow_android_popupBackground 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x7f040161 } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable RecycleListView { 0x7f040121, 0x7f040124 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable RecyclerView { 0x10100eb, 0x10100f1, 0x10100c4, 0x7f04009b, 0x7f04009c, 0x7f04009d, 0x7f04009e, 0x7f04009f, 0x7f0400be, 0x7f04013d, 0x7f04015a, 0x7f040160 } +int styleable RecyclerView_android_clipToPadding 0 +int styleable RecyclerView_android_descendantFocusability 1 +int styleable RecyclerView_android_orientation 2 +int styleable RecyclerView_fastScrollEnabled 3 +int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4 +int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5 +int styleable RecyclerView_fastScrollVerticalThumbDrawable 6 +int styleable RecyclerView_fastScrollVerticalTrackDrawable 7 +int styleable RecyclerView_layoutManager 8 +int styleable RecyclerView_reverseLayout 9 +int styleable RecyclerView_spanCount 10 +int styleable RecyclerView_stackFromEnd 11 +int[] styleable RoundLayout { 0x7f040143 } +int styleable RoundLayout_roundLayoutRadius 0 +int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x7f040057, 0x7f040066, 0x7f040074, 0x7f0400ad, 0x7f0400b5, 0x7f0400bd, 0x7f040134, 0x7f040135, 0x7f04014e, 0x7f04014f, 0x7f040165, 0x7f04016a, 0x7f04019f } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_imeOptions 1 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_maxWidth 3 +int styleable SearchView_closeIcon 4 +int styleable SearchView_commitIcon 5 +int styleable SearchView_defaultQueryHint 6 +int styleable SearchView_goIcon 7 +int styleable SearchView_iconifiedByDefault 8 +int styleable SearchView_layout 9 +int styleable SearchView_queryBackground 10 +int styleable SearchView_queryHint 11 +int styleable SearchView_searchHintIcon 12 +int styleable SearchView_searchIcon 13 +int styleable SearchView_submitBackground 14 +int styleable SearchView_suggestionRowLayout 15 +int styleable SearchView_voiceIcon 16 +int[] styleable SimpleDraweeView { 0x7f040024, 0x7f040025, 0x7f040026, 0x7f040037, 0x7f040098, 0x7f040099, 0x7f04009a, 0x7f040120, 0x7f040128, 0x7f040129, 0x7f04012e, 0x7f04012f, 0x7f040130, 0x7f040131, 0x7f04013b, 0x7f04013c, 0x7f04013e, 0x7f04013f, 0x7f040140, 0x7f040141, 0x7f040142, 0x7f040144, 0x7f040145, 0x7f040146, 0x7f040147, 0x7f040148, 0x7f040149, 0x7f04014a, 0x7f04014b, 0x7f04014c, 0x7f04019d } +int styleable SimpleDraweeView_actualImageResource 0 +int styleable SimpleDraweeView_actualImageScaleType 1 +int styleable SimpleDraweeView_actualImageUri 2 +int styleable SimpleDraweeView_backgroundImage 3 +int styleable SimpleDraweeView_fadeDuration 4 +int styleable SimpleDraweeView_failureImage 5 +int styleable SimpleDraweeView_failureImageScaleType 6 +int styleable SimpleDraweeView_overlayImage 7 +int styleable SimpleDraweeView_placeholderImage 8 +int styleable SimpleDraweeView_placeholderImageScaleType 9 +int styleable SimpleDraweeView_pressedStateOverlayImage 10 +int styleable SimpleDraweeView_progressBarAutoRotateInterval 11 +int styleable SimpleDraweeView_progressBarImage 12 +int styleable SimpleDraweeView_progressBarImageScaleType 13 +int styleable SimpleDraweeView_retryImage 14 +int styleable SimpleDraweeView_retryImageScaleType 15 +int styleable SimpleDraweeView_roundAsCircle 16 +int styleable SimpleDraweeView_roundBottomEnd 17 +int styleable SimpleDraweeView_roundBottomLeft 18 +int styleable SimpleDraweeView_roundBottomRight 19 +int styleable SimpleDraweeView_roundBottomStart 20 +int styleable SimpleDraweeView_roundTopEnd 21 +int styleable SimpleDraweeView_roundTopLeft 22 +int styleable SimpleDraweeView_roundTopRight 23 +int styleable SimpleDraweeView_roundTopStart 24 +int styleable SimpleDraweeView_roundWithOverlayColor 25 +int styleable SimpleDraweeView_roundedCornerRadius 26 +int styleable SimpleDraweeView_roundingBorderColor 27 +int styleable SimpleDraweeView_roundingBorderPadding 28 +int styleable SimpleDraweeView_roundingBorderWidth 29 +int styleable SimpleDraweeView_viewAspectRatio 30 +int[] styleable SkinCompatProgressBar { 0x101013b, 0x101013c } +int styleable SkinCompatProgressBar_android_indeterminateDrawable 0 +int styleable SkinCompatProgressBar_android_progressDrawable 1 +int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x7f04012b } +int styleable Spinner_android_dropDownWidth 0 +int styleable Spinner_android_entries 1 +int styleable Spinner_android_popupBackground 2 +int styleable Spinner_android_prompt 3 +int styleable Spinner_popupTheme 4 +int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable StateListDrawable_android_constantSize 0 +int styleable StateListDrawable_android_dither 1 +int styleable StateListDrawable_android_enterFadeDuration 2 +int styleable StateListDrawable_android_exitFadeDuration 3 +int styleable StateListDrawable_android_variablePadding 4 +int styleable StateListDrawable_android_visible 5 +int[] styleable StateListDrawableItem { 0x1010199 } +int styleable StateListDrawableItem_android_drawable 0 +int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x7f040157, 0x7f04015e, 0x7f04016b, 0x7f04016c, 0x7f04016e, 0x7f04017d, 0x7f04017e, 0x7f04017f, 0x7f040196, 0x7f040197, 0x7f040198 } +int styleable SwitchCompat_android_textOff 0 +int styleable SwitchCompat_android_textOn 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x7f0400a2, 0x7f0400aa, 0x7f04016f, 0x7f04017a } +int styleable TextAppearance_android_fontFamily 0 +int styleable TextAppearance_android_shadowColor 1 +int styleable TextAppearance_android_shadowDx 2 +int styleable TextAppearance_android_shadowDy 3 +int styleable TextAppearance_android_shadowRadius 4 +int styleable TextAppearance_android_textColor 5 +int styleable TextAppearance_android_textColorHint 6 +int styleable TextAppearance_android_textColorLink 7 +int styleable TextAppearance_android_textFontWeight 8 +int styleable TextAppearance_android_textSize 9 +int styleable TextAppearance_android_textStyle 10 +int styleable TextAppearance_android_typeface 11 +int styleable TextAppearance_fontFamily 12 +int styleable TextAppearance_fontVariationSettings 13 +int styleable TextAppearance_textAllCaps 14 +int styleable TextAppearance_textLocale 15 +int[] styleable Toolbar { 0x10100af, 0x1010140, 0x7f040048, 0x7f040059, 0x7f04005a, 0x7f04006b, 0x7f04006c, 0x7f04006d, 0x7f04006e, 0x7f04006f, 0x7f040070, 0x7f040107, 0x7f040108, 0x7f04010a, 0x7f04010c, 0x7f04011b, 0x7f04011c, 0x7f04012b, 0x7f040166, 0x7f040167, 0x7f040168, 0x7f040185, 0x7f040186, 0x7f040187, 0x7f040188, 0x7f040189, 0x7f04018a, 0x7f04018b, 0x7f04018c, 0x7f04018d } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_menu 14 +int styleable Toolbar_navigationContentDescription 15 +int styleable Toolbar_navigationIcon 16 +int styleable Toolbar_popupTheme 17 +int styleable Toolbar_subtitle 18 +int styleable Toolbar_subtitleTextAppearance 19 +int styleable Toolbar_subtitleTextColor 20 +int styleable Toolbar_title 21 +int styleable Toolbar_titleMargin 22 +int styleable Toolbar_titleMarginBottom 23 +int styleable Toolbar_titleMarginEnd 24 +int styleable Toolbar_titleMarginStart 25 +int styleable Toolbar_titleMarginTop 26 +int styleable Toolbar_titleMargins 27 +int styleable Toolbar_titleTextAppearance 28 +int styleable Toolbar_titleTextColor 29 +int[] styleable View { 0x10100da, 0x1010000, 0x7f040122, 0x7f040123, 0x7f04017b } +int styleable View_android_focusable 0 +int styleable View_android_theme 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x10100d4, 0x7f04003a, 0x7f04003b } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewPager2 { 0x10100c4 } +int styleable ViewPager2_android_orientation 0 +int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_inflatedId 1 +int styleable ViewStubCompat_android_layout 2 diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/build-history.bin b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/build-history.bin new file mode 100644 index 0000000000..0fd777e678 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/build-history.bin differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab new file mode 100644 index 0000000000..0aa6679fc6 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream new file mode 100644 index 0000000000..1fe306e86b Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len new file mode 100644 index 0000000000..2945fc28c1 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len new file mode 100644 index 0000000000..cf8a30a1c9 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at new file mode 100644 index 0000000000..d081e3ed41 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i new file mode 100644 index 0000000000..b4198619c9 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab new file mode 100644 index 0000000000..6db0b12604 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream new file mode 100644 index 0000000000..88523a3b5a Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len new file mode 100644 index 0000000000..4cfa84c2bd Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len new file mode 100644 index 0000000000..42df8b93f2 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at new file mode 100644 index 0000000000..d25ce2d1d6 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i new file mode 100644 index 0000000000..9a0c49a569 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab new file mode 100644 index 0000000000..ec45b00d5b Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream new file mode 100644 index 0000000000..5ce9c0202e Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len new file mode 100644 index 0000000000..c6582fdc3d Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len new file mode 100644 index 0000000000..ec8f944c8a Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at new file mode 100644 index 0000000000..7b1fdc4bea Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i new file mode 100644 index 0000000000..6b812c6bd3 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab new file mode 100644 index 0000000000..27cc301c05 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream new file mode 100644 index 0000000000..8a1fb14526 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len new file mode 100644 index 0000000000..a025a5d3f1 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len new file mode 100644 index 0000000000..c580238d5e Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at new file mode 100644 index 0000000000..039bcd4871 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i new file mode 100644 index 0000000000..3093a54cc4 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab new file mode 100644 index 0000000000..bdf584a84b Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream new file mode 100644 index 0000000000..bcc87b2ad5 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len new file mode 100644 index 0000000000..11d24d584a Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len new file mode 100644 index 0000000000..2a17e6e5bd Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at new file mode 100644 index 0000000000..46d6744972 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i new file mode 100644 index 0000000000..cc6ab047d9 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab new file mode 100644 index 0000000000..01d3620e61 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream new file mode 100644 index 0000000000..31160ac72b Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len new file mode 100644 index 0000000000..3725a3dc7a Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len new file mode 100644 index 0000000000..213dab4207 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at new file mode 100644 index 0000000000..f4c8e16671 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i new file mode 100644 index 0000000000..83d9c9fdfc Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab new file mode 100644 index 0000000000..982bb0ce6d Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream new file mode 100644 index 0000000000..885153b335 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len new file mode 100644 index 0000000000..2945fc28c1 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len new file mode 100644 index 0000000000..cf8a30a1c9 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at new file mode 100644 index 0000000000..19fd9beaa3 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i new file mode 100644 index 0000000000..3f4f5e3dc8 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab new file mode 100644 index 0000000000..5365b966c8 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream new file mode 100644 index 0000000000..c577358bc8 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len new file mode 100644 index 0000000000..51ae757bb3 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len new file mode 100644 index 0000000000..817b326d9e Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at new file mode 100644 index 0000000000..904421a722 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i new file mode 100644 index 0000000000..b8d37b8498 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab new file mode 100644 index 0000000000..221e95338f Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream new file mode 100644 index 0000000000..2aee423102 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len new file mode 100644 index 0000000000..94890e9500 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len new file mode 100644 index 0000000000..cf8a30a1c9 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at new file mode 100644 index 0000000000..272dab3538 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i new file mode 100644 index 0000000000..77cc77d266 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab new file mode 100644 index 0000000000..4fef5ef897 --- /dev/null +++ b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab @@ -0,0 +1,2 @@ +15 +0 \ No newline at end of file diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab new file mode 100644 index 0000000000..66b8c784ed Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream new file mode 100644 index 0000000000..885153b335 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len new file mode 100644 index 0000000000..2945fc28c1 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len new file mode 100644 index 0000000000..cf8a30a1c9 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at new file mode 100644 index 0000000000..3763557f4e Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i new file mode 100644 index 0000000000..a8319625a8 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab new file mode 100644 index 0000000000..88ba76bfbd Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream new file mode 100644 index 0000000000..fbebe849c1 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len new file mode 100644 index 0000000000..933d5532f4 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len new file mode 100644 index 0000000000..cf8a30a1c9 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at new file mode 100644 index 0000000000..c0a1b3b027 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i new file mode 100644 index 0000000000..0c9845623d Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab new file mode 100644 index 0000000000..f9b4dd7639 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream new file mode 100644 index 0000000000..804bf0f36b Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len new file mode 100644 index 0000000000..5b9c2d0840 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len new file mode 100644 index 0000000000..987f5e183a Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.at b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.at new file mode 100644 index 0000000000..955e818d7c Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i new file mode 100644 index 0000000000..497bba7607 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/last-build.bin b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/last-build.bin new file mode 100644 index 0000000000..f31a4ec3dd Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/compileDebugKotlin/last-build.bin differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin new file mode 100644 index 0000000000..647fb73ef2 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab new file mode 100644 index 0000000000..7c7d8b190a Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream new file mode 100644 index 0000000000..1fe306e86b Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len new file mode 100644 index 0000000000..2945fc28c1 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.len new file mode 100644 index 0000000000..cf8a30a1c9 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at new file mode 100644 index 0000000000..6fd1f03a78 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i new file mode 100644 index 0000000000..b4198619c9 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab new file mode 100644 index 0000000000..6db0b12604 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream new file mode 100644 index 0000000000..88523a3b5a Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len new file mode 100644 index 0000000000..4cfa84c2bd Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len new file mode 100644 index 0000000000..42df8b93f2 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at new file mode 100644 index 0000000000..d25ce2d1d6 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i new file mode 100644 index 0000000000..9a0c49a569 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab new file mode 100644 index 0000000000..ec45b00d5b Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream new file mode 100644 index 0000000000..5ce9c0202e Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len new file mode 100644 index 0000000000..c6582fdc3d Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len new file mode 100644 index 0000000000..ec8f944c8a Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at new file mode 100644 index 0000000000..7b1fdc4bea Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i new file mode 100644 index 0000000000..6b812c6bd3 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab new file mode 100644 index 0000000000..aa05f49cdd Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream new file mode 100644 index 0000000000..85e46c1617 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len new file mode 100644 index 0000000000..e6543bb3e5 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len new file mode 100644 index 0000000000..be9fd94b80 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at new file mode 100644 index 0000000000..7bffbc2d7e Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i new file mode 100644 index 0000000000..0bde6de530 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab new file mode 100644 index 0000000000..bdf584a84b Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream new file mode 100644 index 0000000000..bcc87b2ad5 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len new file mode 100644 index 0000000000..11d24d584a Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len new file mode 100644 index 0000000000..2a17e6e5bd Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at new file mode 100644 index 0000000000..46d6744972 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i new file mode 100644 index 0000000000..cc6ab047d9 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab new file mode 100644 index 0000000000..01d3620e61 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream new file mode 100644 index 0000000000..31160ac72b Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len new file mode 100644 index 0000000000..3725a3dc7a Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len new file mode 100644 index 0000000000..213dab4207 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at new file mode 100644 index 0000000000..f4c8e16671 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i new file mode 100644 index 0000000000..83d9c9fdfc Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab new file mode 100644 index 0000000000..a6f7dcafcc Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream new file mode 100644 index 0000000000..885153b335 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len new file mode 100644 index 0000000000..2945fc28c1 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len new file mode 100644 index 0000000000..cf8a30a1c9 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at new file mode 100644 index 0000000000..50cf30c8cb Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i new file mode 100644 index 0000000000..3f4f5e3dc8 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab new file mode 100644 index 0000000000..5365b966c8 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream new file mode 100644 index 0000000000..c577358bc8 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len new file mode 100644 index 0000000000..51ae757bb3 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len new file mode 100644 index 0000000000..817b326d9e Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at new file mode 100644 index 0000000000..904421a722 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i new file mode 100644 index 0000000000..b8d37b8498 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab new file mode 100644 index 0000000000..221e95338f Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream new file mode 100644 index 0000000000..2aee423102 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len new file mode 100644 index 0000000000..94890e9500 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len new file mode 100644 index 0000000000..cf8a30a1c9 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at new file mode 100644 index 0000000000..272dab3538 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i new file mode 100644 index 0000000000..77cc77d266 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/counters.tab b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/counters.tab new file mode 100644 index 0000000000..4fef5ef897 --- /dev/null +++ b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/counters.tab @@ -0,0 +1,2 @@ +15 +0 \ No newline at end of file diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab new file mode 100644 index 0000000000..66b8c784ed Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream new file mode 100644 index 0000000000..885153b335 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len new file mode 100644 index 0000000000..2945fc28c1 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.len new file mode 100644 index 0000000000..cf8a30a1c9 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at new file mode 100644 index 0000000000..3763557f4e Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i new file mode 100644 index 0000000000..a8319625a8 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab new file mode 100644 index 0000000000..88ba76bfbd Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream new file mode 100644 index 0000000000..fbebe849c1 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len new file mode 100644 index 0000000000..933d5532f4 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.len new file mode 100644 index 0000000000..cf8a30a1c9 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at new file mode 100644 index 0000000000..c0a1b3b027 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i new file mode 100644 index 0000000000..0c9845623d Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab new file mode 100644 index 0000000000..78ed5d1204 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream new file mode 100644 index 0000000000..a9e95fd9ea Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len new file mode 100644 index 0000000000..5a33f23bf4 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.len new file mode 100644 index 0000000000..76cb3c965a Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.values.at b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.values.at new file mode 100644 index 0000000000..d59a6af96f Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.values.at differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i new file mode 100644 index 0000000000..70e0553609 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i.len b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i.len differ diff --git a/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin new file mode 100644 index 0000000000..e96828d22e Binary files /dev/null and b/modules/mogo-module-guide/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin differ diff --git a/modules/mogo-module-guide/build/outputs/aar/mogo-module-guide-debug.aar b/modules/mogo-module-guide/build/outputs/aar/mogo-module-guide-debug.aar new file mode 100644 index 0000000000..5d4e5f127a Binary files /dev/null and b/modules/mogo-module-guide/build/outputs/aar/mogo-module-guide-debug.aar differ diff --git a/modules/mogo-module-guide/build/outputs/logs/manifest-merger-debug-report.txt b/modules/mogo-module-guide/build/outputs/logs/manifest-merger-debug-report.txt new file mode 100644 index 0000000000..d5cf0c1a8b --- /dev/null +++ b/modules/mogo-module-guide/build/outputs/logs/manifest-merger-debug-report.txt @@ -0,0 +1,37 @@ +-- Merging decision tree log --- +manifest +ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml:1:1-45 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml:1:1-45 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml:1:1-45 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml:1:1-45 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml:1:1-45 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml:1:1-45 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml:1:1-45 + package + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml:1:11-42 + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml + android:versionName + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml:1:1-45 + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml + xmlns:android + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml:1:1-45 + android:versionCode + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml:1:1-45 + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml +uses-sdk +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml reason: use-sdk injection requested +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml + android:targetSdkVersion + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml + android:minSdkVersion + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-guide/src/main/AndroidManifest.xml diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin b/modules/mogo-module-guide/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin new file mode 100644 index 0000000000..aae35e6ec9 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incApCache/debug/apt-cache.bin b/modules/mogo-module-guide/build/tmp/kapt3/incApCache/debug/apt-cache.bin new file mode 100644 index 0000000000..9983310f1d Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incApCache/debug/apt-cache.bin differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incApCache/debug/classpath-entries.bin b/modules/mogo-module-guide/build/tmp/kapt3/incApCache/debug/classpath-entries.bin new file mode 100644 index 0000000000..ddd53849c7 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incApCache/debug/classpath-entries.bin differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incApCache/debug/classpath-structure.bin b/modules/mogo-module-guide/build/tmp/kapt3/incApCache/debug/classpath-structure.bin new file mode 100644 index 0000000000..b9861aa652 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incApCache/debug/classpath-structure.bin differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incApCache/debug/java-cache.bin b/modules/mogo-module-guide/build/tmp/kapt3/incApCache/debug/java-cache.bin new file mode 100644 index 0000000000..64bae7c8d2 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incApCache/debug/java-cache.bin differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-module-guide_debug.kotlin_module b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-module-guide_debug.kotlin_module new file mode 100644 index 0000000000..9d641659ad Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-module-guide_debug.kotlin_module differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/GuideBizManager.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/GuideBizManager.class new file mode 100644 index 0000000000..11af8f7357 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/GuideBizManager.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/GuideConstant$Companion.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/GuideConstant$Companion.class new file mode 100644 index 0000000000..df21c4323d Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/GuideConstant$Companion.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/GuideConstant.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/GuideConstant.class new file mode 100644 index 0000000000..8cbe7c297a Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/GuideConstant.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/MogoGuideProvider.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/MogoGuideProvider.class new file mode 100644 index 0000000000..8562463cd5 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/MogoGuideProvider.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideAdapter$Companion.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideAdapter$Companion.class new file mode 100644 index 0000000000..d3d47d0d87 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideAdapter$Companion.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideAdapter.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideAdapter.class new file mode 100644 index 0000000000..7d1d7d4048 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideAdapter.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideConstract$Biz.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideConstract$Biz.class new file mode 100644 index 0000000000..57f46414d6 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideConstract$Biz.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideConstract$View.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideConstract$View.class new file mode 100644 index 0000000000..59112bb656 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideConstract$View.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideConstract.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideConstract.class new file mode 100644 index 0000000000..7840830657 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideConstract.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideFragment$Companion.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideFragment$Companion.class new file mode 100644 index 0000000000..ac6bd632b0 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideFragment$Companion.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideFragment.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideFragment.class new file mode 100644 index 0000000000..7decf16785 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuideFragment.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuidePresenter$Companion.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuidePresenter$Companion.class new file mode 100644 index 0000000000..575bed430e Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuidePresenter$Companion.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuidePresenter.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuidePresenter.class new file mode 100644 index 0000000000..566e52d1c3 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/fragment/GuidePresenter.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageFiveFragment$GuideLocationPresenter.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageFiveFragment$GuideLocationPresenter.class new file mode 100644 index 0000000000..494d7de12a Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageFiveFragment$GuideLocationPresenter.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageFiveFragment.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageFiveFragment.class new file mode 100644 index 0000000000..2767111b81 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageFiveFragment.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageFourFragment$GuideNavigationPresenter.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageFourFragment$GuideNavigationPresenter.class new file mode 100644 index 0000000000..3148b7d708 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageFourFragment$GuideNavigationPresenter.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageFourFragment.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageFourFragment.class new file mode 100644 index 0000000000..0bf4f75bb0 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageFourFragment.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageOneFragment$GuideStartPresenter.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageOneFragment$GuideStartPresenter.class new file mode 100644 index 0000000000..269134f11b Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageOneFragment$GuideStartPresenter.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageOneFragment.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageOneFragment.class new file mode 100644 index 0000000000..1089d87d01 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageOneFragment.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageThreeFragment$GuideOnLineCarPresenter.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageThreeFragment$GuideOnLineCarPresenter.class new file mode 100644 index 0000000000..7dd8cbe81c Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageThreeFragment$GuideOnLineCarPresenter.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageThreeFragment.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageThreeFragment.class new file mode 100644 index 0000000000..df5b59e4de Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageThreeFragment.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageTwoFragment$GuideCardPresenter.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageTwoFragment$GuideCardPresenter.class new file mode 100644 index 0000000000..4511ee4776 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageTwoFragment$GuideCardPresenter.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageTwoFragment.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageTwoFragment.class new file mode 100644 index 0000000000..56ad1daa0a Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/guide/GuideStageTwoFragment.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/util/AnalyticsUtil.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/util/AnalyticsUtil.class new file mode 100644 index 0000000000..d80cea2ef2 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/util/AnalyticsUtil.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/util/SharedPreferenceUtil.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/util/SharedPreferenceUtil.class new file mode 100644 index 0000000000..4bc2bf3d11 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/util/SharedPreferenceUtil.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/util/VoiceUtilKt.class b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/util/VoiceUtilKt.class new file mode 100644 index 0000000000..19e08de58b Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/incrementalData/debug/com/mogo/module/guide/util/VoiceUtilKt.class differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/GuideBizManager.java b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/GuideBizManager.java new file mode 100644 index 0000000000..35b16fca25 --- /dev/null +++ b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/GuideBizManager.java @@ -0,0 +1,29 @@ +package com.mogo.module.guide; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0005\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\b\u0010\u0005\u001a\u00020\u0006H\u0002J\u0006\u0010\u0007\u001a\u00020\u0006J\b\u0010\b\u001a\u00020\u0006H\u0002J\u0006\u0010\t\u001a\u00020\u0006J\u0006\u0010\n\u001a\u00020\u0006R\u0010\u0010\u0003\u001a\u0004\u0018\u00010\u0004X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u000b"}, d2 = {"Lcom/mogo/module/guide/GuideBizManager;", "", "()V", "serviceApi", "Lcom/mogo/service/IMogoServiceApis;", "addGuideFragmentToStack", "", "init", "initService", "invokeAuthorize", "removeGuideFragmentToStack", "mogo-module-guide_debug"}) +public final class GuideBizManager { + private static com.mogo.service.IMogoServiceApis serviceApi; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.guide.GuideBizManager INSTANCE = null; + + public final void init() { + } + + private final void initService() { + } + + private final void addGuideFragmentToStack() { + } + + public final void removeGuideFragmentToStack() { + } + + public final void invokeAuthorize() { + } + + private GuideBizManager() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/GuideBizManager.kapt_metadata b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/GuideBizManager.kapt_metadata new file mode 100644 index 0000000000..a617108f61 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/GuideBizManager.kapt_metadata differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/GuideConstant.java b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/GuideConstant.java new file mode 100644 index 0000000000..d4d8047755 --- /dev/null +++ b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/GuideConstant.java @@ -0,0 +1,33 @@ +package com.mogo.module.guide; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0003\u0018\u0000 \u00032\u00020\u0001:\u0001\u0003B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0004"}, d2 = {"Lcom/mogo/module/guide/GuideConstant;", "", "()V", "Companion", "mogo-module-guide_debug"}) +public final class GuideConstant { + + /** + * 展示用户引导模块地址 + */ + @org.jetbrains.annotations.NotNull() + public static final java.lang.String PATH_GUIDE_FRAGMENT = "/guide/showFragment"; + + /** + * provider模块实例名称(暂时仅有卡片用到) + */ + @org.jetbrains.annotations.NotNull() + public static final java.lang.String PATH_GUIDE_MODULE_NAME = "GUIDE_MODULE_NAME"; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.guide.GuideConstant.Companion Companion = null; + + public GuideConstant() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u0002\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0006"}, d2 = {"Lcom/mogo/module/guide/GuideConstant$Companion;", "", "()V", "PATH_GUIDE_FRAGMENT", "", "PATH_GUIDE_MODULE_NAME", "mogo-module-guide_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/GuideConstant.kapt_metadata b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/GuideConstant.kapt_metadata new file mode 100644 index 0000000000..2ebc5427bf Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/GuideConstant.kapt_metadata differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/MogoGuideProvider.java b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/MogoGuideProvider.java new file mode 100644 index 0000000000..d39adfda57 --- /dev/null +++ b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/MogoGuideProvider.java @@ -0,0 +1,82 @@ +package com.mogo.module.guide; + +import java.lang.System; + +@com.alibaba.android.arouter.facade.annotation.Route(path = "/guide/showFragment") +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000R\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0002\n\u0000\b\u0007\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\u001e\u0010\u0003\u001a\u0004\u0018\u00010\u00042\b\u0010\u0005\u001a\u0004\u0018\u00010\u00062\b\u0010\u0007\u001a\u0004\u0018\u00010\bH\u0016J\u0014\u0010\t\u001a\u0004\u0018\u00010\n2\b\u0010\u0005\u001a\u0004\u0018\u00010\u0006H\u0016J\n\u0010\u000b\u001a\u0004\u0018\u00010\fH\u0016J\n\u0010\r\u001a\u0004\u0018\u00010\fH\u0016J\n\u0010\u000e\u001a\u0004\u0018\u00010\u000fH\u0016J\n\u0010\u0010\u001a\u0004\u0018\u00010\u0011H\u0016J\n\u0010\u0012\u001a\u0004\u0018\u00010\u0013H\u0016J\b\u0010\u0014\u001a\u00020\fH\u0016J\n\u0010\u0015\u001a\u0004\u0018\u00010\u0016H\u0016J\b\u0010\u0017\u001a\u00020\u0018H\u0016J\u0012\u0010\u0019\u001a\u00020\u001a2\b\u0010\u0005\u001a\u0004\u0018\u00010\u0006H\u0016\u00a8\u0006\u001b"}, d2 = {"Lcom/mogo/module/guide/MogoGuideProvider;", "Lcom/mogo/service/module/IMogoModuleProvider;", "()V", "createFragment", "Landroidx/fragment/app/Fragment;", "context", "Landroid/content/Context;", "data", "Landroid/os/Bundle;", "createView", "Landroid/view/View;", "getAppName", "", "getAppPackage", "getLocationListener", "Lcom/mogo/map/location/IMogoLocationListener;", "getMapListener", "Lcom/mogo/map/listener/IMogoMapListener;", "getMarkerClickListener", "Lcom/mogo/map/marker/IMogoMarkerClickListener;", "getModuleName", "getNaviListener", "Lcom/mogo/map/navi/IMogoNaviListener;", "getType", "", "init", "", "mogo-module-guide_debug"}) +public final class MogoGuideProvider implements com.mogo.service.module.IMogoModuleProvider { + + /** + * 卡片用到 + */ + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public androidx.fragment.app.Fragment createFragment(@org.jetbrains.annotations.Nullable() + android.content.Context context, @org.jetbrains.annotations.Nullable() + android.os.Bundle data) { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public android.view.View createView(@org.jetbrains.annotations.Nullable() + android.content.Context context) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String getModuleName() { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public com.mogo.map.listener.IMogoMapListener getMapListener() { + return null; + } + + @java.lang.Override() + public int getType() { + return 0; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public com.mogo.map.navi.IMogoNaviListener getNaviListener() { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public com.mogo.map.location.IMogoLocationListener getLocationListener() { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public com.mogo.map.marker.IMogoMarkerClickListener getMarkerClickListener() { + return null; + } + + @java.lang.Override() + public void init(@org.jetbrains.annotations.Nullable() + android.content.Context context) { + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public java.lang.String getAppPackage() { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public java.lang.String getAppName() { + return null; + } + + public MogoGuideProvider() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/MogoGuideProvider.kapt_metadata b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/MogoGuideProvider.kapt_metadata new file mode 100644 index 0000000000..29711e29f7 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/MogoGuideProvider.kapt_metadata differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuideAdapter.java b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuideAdapter.java new file mode 100644 index 0000000000..eef9d4e1bc --- /dev/null +++ b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuideAdapter.java @@ -0,0 +1,39 @@ +package com.mogo.module.guide.fragment; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000&\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010!\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0003\u0018\u0000 \f2\u00020\u0001:\u0001\fB\r\u0012\u0006\u0010\u0002\u001a\u00020\u0003\u00a2\u0006\u0002\u0010\u0004J\u0010\u0010\b\u001a\u00020\u00072\u0006\u0010\t\u001a\u00020\nH\u0016J\b\u0010\u000b\u001a\u00020\nH\u0016R\u0014\u0010\u0005\u001a\b\u0012\u0004\u0012\u00020\u00070\u0006X\u0082\u0004\u00a2\u0006\u0002\n\u0000\u00a8\u0006\r"}, d2 = {"Lcom/mogo/module/guide/fragment/GuideAdapter;", "Landroidx/viewpager2/adapter/FragmentStateAdapter;", "fragmentActivity", "Lcom/mogo/module/guide/fragment/GuideFragment;", "(Lcom/mogo/module/guide/fragment/GuideFragment;)V", "guideList", "", "Landroidx/fragment/app/Fragment;", "createFragment", "position", "", "getItemCount", "Companion", "mogo-module-guide_debug"}) +public final class GuideAdapter extends androidx.viewpager2.adapter.FragmentStateAdapter { + private final java.util.List guideList = null; + public static final int GUIDE_PAGE_ONE = 0; + public static final int GUIDE_PAGE_TWO = 1; + public static final int GUIDE_PAGE_THREE = 2; + public static final int GUIDE_PAGE_FOUR = 3; + public static final int GUIDE_PAGE_FIVE = 4; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.guide.fragment.GuideAdapter.Companion Companion = null; + + @java.lang.Override() + public int getItemCount() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public androidx.fragment.app.Fragment createFragment(int position) { + return null; + } + + public GuideAdapter(@org.jetbrains.annotations.NotNull() + com.mogo.module.guide.fragment.GuideFragment fragmentActivity) { + super(null); + } + + @kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\b\n\u0002\b\u0005\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0007\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\b\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\t"}, d2 = {"Lcom/mogo/module/guide/fragment/GuideAdapter$Companion;", "", "()V", "GUIDE_PAGE_FIVE", "", "GUIDE_PAGE_FOUR", "GUIDE_PAGE_ONE", "GUIDE_PAGE_THREE", "GUIDE_PAGE_TWO", "mogo-module-guide_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuideAdapter.kapt_metadata b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuideAdapter.kapt_metadata new file mode 100644 index 0000000000..bdc00ae808 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuideAdapter.kapt_metadata differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuideConstract.java b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuideConstract.java new file mode 100644 index 0000000000..b486e526bd --- /dev/null +++ b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuideConstract.java @@ -0,0 +1,19 @@ +package com.mogo.module.guide.fragment; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0004\u0018\u00002\u00020\u0001:\u0002\u0003\u0004B\u0005\u00a2\u0006\u0002\u0010\u0002\u00a8\u0006\u0005"}, d2 = {"Lcom/mogo/module/guide/fragment/GuideConstract;", "", "()V", "Biz", "View", "mogo-module-guide_debug"}) +public final class GuideConstract { + + public GuideConstract() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\n\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\bf\u0018\u00002\u00020\u0001\u00a8\u0006\u0002"}, d2 = {"Lcom/mogo/module/guide/fragment/GuideConstract$View;", "Lcom/mogo/commons/mvp/IView;", "mogo-module-guide_debug"}) + public static abstract interface View extends com.mogo.commons.mvp.IView { + } + + @kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\n\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0000\bf\u0018\u00002\u00020\u0001\u00a8\u0006\u0002"}, d2 = {"Lcom/mogo/module/guide/fragment/GuideConstract$Biz;", "", "mogo-module-guide_debug"}) + public static abstract interface Biz { + } +} \ No newline at end of file diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuideConstract.kapt_metadata b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuideConstract.kapt_metadata new file mode 100644 index 0000000000..791643c835 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuideConstract.kapt_metadata differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuideFragment.java b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuideFragment.java new file mode 100644 index 0000000000..b094221956 --- /dev/null +++ b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuideFragment.java @@ -0,0 +1,80 @@ +package com.mogo.module.guide.fragment; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000.\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\t\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0010\u0018\u0000 \u001b2\u000e\u0012\u0004\u0012\u00020\u0002\u0012\u0004\u0012\u00020\u00030\u00012\u00020\u0002:\u0001\u001bB\u0005\u00a2\u0006\u0002\u0010\u0004J\u0006\u0010\u000b\u001a\u00020\fJ\b\u0010\r\u001a\u00020\u0003H\u0014J\b\u0010\u000e\u001a\u00020\fH\u0002J\b\u0010\u000f\u001a\u00020\nH\u0014J\b\u0010\u0010\u001a\u00020\fH\u0014J\u0006\u0010\u0011\u001a\u00020\fJ\u0006\u0010\u0012\u001a\u00020\fJ\b\u0010\u0013\u001a\u00020\fH\u0002J\b\u0010\u0014\u001a\u00020\fH\u0002J\u0006\u0010\u0015\u001a\u00020\fJ\b\u0010\u0016\u001a\u00020\fH\u0016J\b\u0010\u0017\u001a\u00020\fH\u0016J\b\u0010\u0018\u001a\u00020\fH\u0002J\u0006\u0010\u0019\u001a\u00020\fJ\u0006\u0010\u001a\u001a\u00020\fR\u0010\u0010\u0005\u001a\u0004\u0018\u00010\u0006X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0007\u001a\u00020\bX\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\t\u001a\u00020\nX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u001c"}, d2 = {"Lcom/mogo/module/guide/fragment/GuideFragment;", "Lcom/mogo/commons/mvp/MvpFragment;", "Lcom/mogo/module/guide/fragment/GuideConstract$View;", "Lcom/mogo/module/guide/fragment/GuidePresenter;", "()V", "adapter", "Lcom/mogo/module/guide/fragment/GuideAdapter;", "duringTime", "", "recordCount", "", "closeGuideFragment", "", "createPresenter", "destroy", "getLayoutId", "initViews", "invisibleLeft", "invisibleRight", "invokeAuthorize", "moveToBack", "moveToNext", "onDestroy", "onDestroyView", "track", "visibleLeft", "visibleRight", "Companion", "mogo-module-guide_debug"}) +public final class GuideFragment extends com.mogo.commons.mvp.MvpFragment implements com.mogo.module.guide.fragment.GuideConstract.View { + private long duringTime = 0L; + private int recordCount = 0; + private com.mogo.module.guide.fragment.GuideAdapter adapter; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "GuideFragment"; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.guide.fragment.GuideFragment.Companion Companion = null; + private java.util.HashMap _$_findViewCache; + + @java.lang.Override() + protected int getLayoutId() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + protected com.mogo.module.guide.fragment.GuidePresenter createPresenter() { + return null; + } + + @java.lang.Override() + protected void initViews() { + } + + public final void visibleLeft() { + } + + public final void invisibleLeft() { + } + + public final void visibleRight() { + } + + public final void invisibleRight() { + } + + public final void moveToNext() { + } + + private final void moveToBack() { + } + + public final void closeGuideFragment() { + } + + private final void track() { + } + + private final void destroy() { + } + + private final void invokeAuthorize() { + } + + @java.lang.Override() + public void onDestroyView() { + } + + @java.lang.Override() + public void onDestroy() { + } + + public GuideFragment() { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0005"}, d2 = {"Lcom/mogo/module/guide/fragment/GuideFragment$Companion;", "", "()V", "TAG", "", "mogo-module-guide_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuideFragment.kapt_metadata b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuideFragment.kapt_metadata new file mode 100644 index 0000000000..31d285d24b Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuideFragment.kapt_metadata differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuidePresenter.java b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuidePresenter.java new file mode 100644 index 0000000000..045b96480e --- /dev/null +++ b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuidePresenter.java @@ -0,0 +1,29 @@ +package com.mogo.module.guide.fragment; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\"\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\u0018\u0000 \n2\b\u0012\u0004\u0012\u00020\u00020\u00012\u00020\u0003:\u0001\nB\u000f\b\u0016\u0012\u0006\u0010\u0004\u001a\u00020\u0002\u00a2\u0006\u0002\u0010\u0005J\u0010\u0010\u0006\u001a\u00020\u00072\u0006\u0010\b\u001a\u00020\tH\u0016\u00a8\u0006\u000b"}, d2 = {"Lcom/mogo/module/guide/fragment/GuidePresenter;", "Lcom/mogo/commons/mvp/Presenter;", "Lcom/mogo/module/guide/fragment/GuideConstract$View;", "Lcom/mogo/module/guide/fragment/GuideConstract$Biz;", "view", "(Lcom/mogo/module/guide/fragment/GuideConstract$View;)V", "onCreate", "", "owner", "Landroidx/lifecycle/LifecycleOwner;", "Companion", "mogo-module-guide_debug"}) +public final class GuidePresenter extends com.mogo.commons.mvp.Presenter implements com.mogo.module.guide.fragment.GuideConstract.Biz { + @org.jetbrains.annotations.NotNull() + public static final java.lang.String TAG = "GuidePresenter"; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.guide.fragment.GuidePresenter.Companion Companion = null; + + @java.lang.Override() + public void onCreate(@org.jetbrains.annotations.NotNull() + androidx.lifecycle.LifecycleOwner owner) { + } + + public GuidePresenter(@org.jetbrains.annotations.NotNull() + com.mogo.module.guide.fragment.GuideConstract.View view) { + super(null); + } + + @kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0005"}, d2 = {"Lcom/mogo/module/guide/fragment/GuidePresenter$Companion;", "", "()V", "TAG", "", "mogo-module-guide_debug"}) + public static final class Companion { + + private Companion() { + super(); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuidePresenter.kapt_metadata b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuidePresenter.kapt_metadata new file mode 100644 index 0000000000..cfb60370c3 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/fragment/GuidePresenter.kapt_metadata differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageFiveFragment.java b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageFiveFragment.java new file mode 100644 index 0000000000..b0f9a82971 --- /dev/null +++ b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageFiveFragment.java @@ -0,0 +1,42 @@ +package com.mogo.module.guide.guide; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000(\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0003\u0018\u00002\u0014\u0012\u0004\u0012\u00020\u0002\u0012\n\u0012\b\u0012\u0004\u0012\u00020\u00020\u00030\u0001:\u0001\rB\u000f\b\u0016\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u0006J\u000e\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\u00020\u0003H\u0014J\b\u0010\b\u001a\u00020\tH\u0014J\b\u0010\n\u001a\u00020\u000bH\u0014J\b\u0010\f\u001a\u00020\u000bH\u0016R\u0010\u0010\u0004\u001a\u0004\u0018\u00010\u0005X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u000e"}, d2 = {"Lcom/mogo/module/guide/guide/GuideStageFiveFragment;", "Lcom/mogo/commons/mvp/MvpFragment;", "Lcom/mogo/commons/mvp/IView;", "Lcom/mogo/commons/mvp/Presenter;", "containerFragment", "Lcom/mogo/module/guide/fragment/GuideFragment;", "(Lcom/mogo/module/guide/fragment/GuideFragment;)V", "createPresenter", "getLayoutId", "", "initViews", "", "onResume", "GuideLocationPresenter", "mogo-module-guide_debug"}) +public final class GuideStageFiveFragment extends com.mogo.commons.mvp.MvpFragment> { + private com.mogo.module.guide.fragment.GuideFragment containerFragment; + private java.util.HashMap _$_findViewCache; + + @java.lang.Override() + protected int getLayoutId() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + protected com.mogo.commons.mvp.Presenter createPresenter() { + return null; + } + + @java.lang.Override() + protected void initViews() { + } + + @java.lang.Override() + public void onResume() { + } + + public GuideStageFiveFragment(@org.jetbrains.annotations.NotNull() + com.mogo.module.guide.fragment.GuideFragment containerFragment) { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0010\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\u0018\u00002\b\u0012\u0004\u0012\u00020\u00020\u0001B\u0011\b\u0016\u0012\b\u0010\u0003\u001a\u0004\u0018\u00010\u0002\u00a2\u0006\u0002\u0010\u0004\u00a8\u0006\u0005"}, d2 = {"Lcom/mogo/module/guide/guide/GuideStageFiveFragment$GuideLocationPresenter;", "Lcom/mogo/commons/mvp/Presenter;", "Lcom/mogo/commons/mvp/IView;", "view", "(Lcom/mogo/commons/mvp/IView;)V", "mogo-module-guide_debug"}) + public static final class GuideLocationPresenter extends com.mogo.commons.mvp.Presenter { + + public GuideLocationPresenter(@org.jetbrains.annotations.Nullable() + com.mogo.commons.mvp.IView view) { + super(null); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageFiveFragment.kapt_metadata b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageFiveFragment.kapt_metadata new file mode 100644 index 0000000000..65b51dea3d Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageFiveFragment.kapt_metadata differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageFourFragment.java b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageFourFragment.java new file mode 100644 index 0000000000..658f3c11ee --- /dev/null +++ b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageFourFragment.java @@ -0,0 +1,42 @@ +package com.mogo.module.guide.guide; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000(\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0003\u0018\u00002\u0014\u0012\u0004\u0012\u00020\u0002\u0012\n\u0012\b\u0012\u0004\u0012\u00020\u00020\u00030\u0001:\u0001\rB\u000f\b\u0016\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u0006J\u000e\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\u00020\u0003H\u0014J\b\u0010\b\u001a\u00020\tH\u0014J\b\u0010\n\u001a\u00020\u000bH\u0014J\b\u0010\f\u001a\u00020\u000bH\u0016R\u0010\u0010\u0004\u001a\u0004\u0018\u00010\u0005X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u000e"}, d2 = {"Lcom/mogo/module/guide/guide/GuideStageFourFragment;", "Lcom/mogo/commons/mvp/MvpFragment;", "Lcom/mogo/commons/mvp/IView;", "Lcom/mogo/commons/mvp/Presenter;", "containerFragment", "Lcom/mogo/module/guide/fragment/GuideFragment;", "(Lcom/mogo/module/guide/fragment/GuideFragment;)V", "createPresenter", "getLayoutId", "", "initViews", "", "onResume", "GuideNavigationPresenter", "mogo-module-guide_debug"}) +public final class GuideStageFourFragment extends com.mogo.commons.mvp.MvpFragment> { + private com.mogo.module.guide.fragment.GuideFragment containerFragment; + private java.util.HashMap _$_findViewCache; + + @java.lang.Override() + protected int getLayoutId() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + protected com.mogo.commons.mvp.Presenter createPresenter() { + return null; + } + + @java.lang.Override() + protected void initViews() { + } + + @java.lang.Override() + public void onResume() { + } + + public GuideStageFourFragment(@org.jetbrains.annotations.NotNull() + com.mogo.module.guide.fragment.GuideFragment containerFragment) { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0010\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\u0018\u00002\b\u0012\u0004\u0012\u00020\u00020\u0001B\u0011\b\u0016\u0012\b\u0010\u0003\u001a\u0004\u0018\u00010\u0002\u00a2\u0006\u0002\u0010\u0004\u00a8\u0006\u0005"}, d2 = {"Lcom/mogo/module/guide/guide/GuideStageFourFragment$GuideNavigationPresenter;", "Lcom/mogo/commons/mvp/Presenter;", "Lcom/mogo/commons/mvp/IView;", "view", "(Lcom/mogo/commons/mvp/IView;)V", "mogo-module-guide_debug"}) + public static final class GuideNavigationPresenter extends com.mogo.commons.mvp.Presenter { + + public GuideNavigationPresenter(@org.jetbrains.annotations.Nullable() + com.mogo.commons.mvp.IView view) { + super(null); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageFourFragment.kapt_metadata b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageFourFragment.kapt_metadata new file mode 100644 index 0000000000..f30bd2e09b Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageFourFragment.kapt_metadata differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageOneFragment.java b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageOneFragment.java new file mode 100644 index 0000000000..11cc65c51e --- /dev/null +++ b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageOneFragment.java @@ -0,0 +1,42 @@ +package com.mogo.module.guide.guide; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000(\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0003\u0018\u00002\u0014\u0012\u0004\u0012\u00020\u0002\u0012\n\u0012\b\u0012\u0004\u0012\u00020\u00020\u00030\u0001:\u0001\rB\u000f\b\u0016\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u0006J\u000e\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\u00020\u0003H\u0014J\b\u0010\b\u001a\u00020\tH\u0014J\b\u0010\n\u001a\u00020\u000bH\u0014J\b\u0010\f\u001a\u00020\u000bH\u0016R\u0010\u0010\u0004\u001a\u0004\u0018\u00010\u0005X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u000e"}, d2 = {"Lcom/mogo/module/guide/guide/GuideStageOneFragment;", "Lcom/mogo/commons/mvp/MvpFragment;", "Lcom/mogo/commons/mvp/IView;", "Lcom/mogo/commons/mvp/Presenter;", "containerFragment", "Lcom/mogo/module/guide/fragment/GuideFragment;", "(Lcom/mogo/module/guide/fragment/GuideFragment;)V", "createPresenter", "getLayoutId", "", "initViews", "", "onResume", "GuideStartPresenter", "mogo-module-guide_debug"}) +public final class GuideStageOneFragment extends com.mogo.commons.mvp.MvpFragment> { + private com.mogo.module.guide.fragment.GuideFragment containerFragment; + private java.util.HashMap _$_findViewCache; + + @java.lang.Override() + protected int getLayoutId() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + protected com.mogo.commons.mvp.Presenter createPresenter() { + return null; + } + + @java.lang.Override() + protected void initViews() { + } + + @java.lang.Override() + public void onResume() { + } + + public GuideStageOneFragment(@org.jetbrains.annotations.NotNull() + com.mogo.module.guide.fragment.GuideFragment containerFragment) { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0010\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\u0018\u00002\b\u0012\u0004\u0012\u00020\u00020\u0001B\u0011\b\u0016\u0012\b\u0010\u0003\u001a\u0004\u0018\u00010\u0002\u00a2\u0006\u0002\u0010\u0004\u00a8\u0006\u0005"}, d2 = {"Lcom/mogo/module/guide/guide/GuideStageOneFragment$GuideStartPresenter;", "Lcom/mogo/commons/mvp/Presenter;", "Lcom/mogo/commons/mvp/IView;", "view", "(Lcom/mogo/commons/mvp/IView;)V", "mogo-module-guide_debug"}) + public static final class GuideStartPresenter extends com.mogo.commons.mvp.Presenter { + + public GuideStartPresenter(@org.jetbrains.annotations.Nullable() + com.mogo.commons.mvp.IView view) { + super(null); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageOneFragment.kapt_metadata b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageOneFragment.kapt_metadata new file mode 100644 index 0000000000..2928cf600f Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageOneFragment.kapt_metadata differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageThreeFragment.java b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageThreeFragment.java new file mode 100644 index 0000000000..440a764ec7 --- /dev/null +++ b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageThreeFragment.java @@ -0,0 +1,42 @@ +package com.mogo.module.guide.guide; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000(\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0003\u0018\u00002\u0014\u0012\u0004\u0012\u00020\u0002\u0012\n\u0012\b\u0012\u0004\u0012\u00020\u00020\u00030\u0001:\u0001\rB\u000f\b\u0016\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u0006J\u000e\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\u00020\u0003H\u0014J\b\u0010\b\u001a\u00020\tH\u0014J\b\u0010\n\u001a\u00020\u000bH\u0014J\b\u0010\f\u001a\u00020\u000bH\u0016R\u0010\u0010\u0004\u001a\u0004\u0018\u00010\u0005X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u000e"}, d2 = {"Lcom/mogo/module/guide/guide/GuideStageThreeFragment;", "Lcom/mogo/commons/mvp/MvpFragment;", "Lcom/mogo/commons/mvp/IView;", "Lcom/mogo/commons/mvp/Presenter;", "containerFragment", "Lcom/mogo/module/guide/fragment/GuideFragment;", "(Lcom/mogo/module/guide/fragment/GuideFragment;)V", "createPresenter", "getLayoutId", "", "initViews", "", "onResume", "GuideOnLineCarPresenter", "mogo-module-guide_debug"}) +public final class GuideStageThreeFragment extends com.mogo.commons.mvp.MvpFragment> { + private com.mogo.module.guide.fragment.GuideFragment containerFragment; + private java.util.HashMap _$_findViewCache; + + @java.lang.Override() + protected int getLayoutId() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + protected com.mogo.commons.mvp.Presenter createPresenter() { + return null; + } + + @java.lang.Override() + protected void initViews() { + } + + @java.lang.Override() + public void onResume() { + } + + public GuideStageThreeFragment(@org.jetbrains.annotations.NotNull() + com.mogo.module.guide.fragment.GuideFragment containerFragment) { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0010\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\u0018\u00002\b\u0012\u0004\u0012\u00020\u00020\u0001B\u0011\b\u0016\u0012\b\u0010\u0003\u001a\u0004\u0018\u00010\u0002\u00a2\u0006\u0002\u0010\u0004\u00a8\u0006\u0005"}, d2 = {"Lcom/mogo/module/guide/guide/GuideStageThreeFragment$GuideOnLineCarPresenter;", "Lcom/mogo/commons/mvp/Presenter;", "Lcom/mogo/commons/mvp/IView;", "view", "(Lcom/mogo/commons/mvp/IView;)V", "mogo-module-guide_debug"}) + public static final class GuideOnLineCarPresenter extends com.mogo.commons.mvp.Presenter { + + public GuideOnLineCarPresenter(@org.jetbrains.annotations.Nullable() + com.mogo.commons.mvp.IView view) { + super(null); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageThreeFragment.kapt_metadata b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageThreeFragment.kapt_metadata new file mode 100644 index 0000000000..1abf8bc5d3 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageThreeFragment.kapt_metadata differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageTwoFragment.java b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageTwoFragment.java new file mode 100644 index 0000000000..5228983ed5 --- /dev/null +++ b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageTwoFragment.java @@ -0,0 +1,42 @@ +package com.mogo.module.guide.guide; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000(\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0003\u0018\u00002\u0014\u0012\u0004\u0012\u00020\u0002\u0012\n\u0012\b\u0012\u0004\u0012\u00020\u00020\u00030\u0001:\u0001\rB\u000f\b\u0016\u0012\u0006\u0010\u0004\u001a\u00020\u0005\u00a2\u0006\u0002\u0010\u0006J\u000e\u0010\u0007\u001a\b\u0012\u0004\u0012\u00020\u00020\u0003H\u0014J\b\u0010\b\u001a\u00020\tH\u0014J\b\u0010\n\u001a\u00020\u000bH\u0014J\b\u0010\f\u001a\u00020\u000bH\u0016R\u0010\u0010\u0004\u001a\u0004\u0018\u00010\u0005X\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u000e"}, d2 = {"Lcom/mogo/module/guide/guide/GuideStageTwoFragment;", "Lcom/mogo/commons/mvp/MvpFragment;", "Lcom/mogo/commons/mvp/IView;", "Lcom/mogo/commons/mvp/Presenter;", "containerFragment", "Lcom/mogo/module/guide/fragment/GuideFragment;", "(Lcom/mogo/module/guide/fragment/GuideFragment;)V", "createPresenter", "getLayoutId", "", "initViews", "", "onResume", "GuideCardPresenter", "mogo-module-guide_debug"}) +public final class GuideStageTwoFragment extends com.mogo.commons.mvp.MvpFragment> { + private com.mogo.module.guide.fragment.GuideFragment containerFragment; + private java.util.HashMap _$_findViewCache; + + @java.lang.Override() + protected int getLayoutId() { + return 0; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + protected com.mogo.commons.mvp.Presenter createPresenter() { + return null; + } + + @java.lang.Override() + protected void initViews() { + } + + @java.lang.Override() + public void onResume() { + } + + public GuideStageTwoFragment(@org.jetbrains.annotations.NotNull() + com.mogo.module.guide.fragment.GuideFragment containerFragment) { + super(); + } + + @kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0010\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\u0018\u00002\b\u0012\u0004\u0012\u00020\u00020\u0001B\u0011\b\u0016\u0012\b\u0010\u0003\u001a\u0004\u0018\u00010\u0002\u00a2\u0006\u0002\u0010\u0004\u00a8\u0006\u0005"}, d2 = {"Lcom/mogo/module/guide/guide/GuideStageTwoFragment$GuideCardPresenter;", "Lcom/mogo/commons/mvp/Presenter;", "Lcom/mogo/commons/mvp/IView;", "view", "(Lcom/mogo/commons/mvp/IView;)V", "mogo-module-guide_debug"}) + public static final class GuideCardPresenter extends com.mogo.commons.mvp.Presenter { + + public GuideCardPresenter(@org.jetbrains.annotations.Nullable() + com.mogo.commons.mvp.IView view) { + super(null); + } + } +} \ No newline at end of file diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageTwoFragment.kapt_metadata b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageTwoFragment.kapt_metadata new file mode 100644 index 0000000000..5211d31e2c Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/guide/GuideStageTwoFragment.kapt_metadata differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/util/AnalyticsUtil.java b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/util/AnalyticsUtil.java new file mode 100644 index 0000000000..8bab38ef28 --- /dev/null +++ b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/util/AnalyticsUtil.java @@ -0,0 +1,25 @@ +package com.mogo.module.guide.util; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000(\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u0003\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\n\u0002\u0010%\n\u0000\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J&\u0010\t\u001a\u00020\n2\u0006\u0010\u000b\u001a\u00020\u00042\u0016\b\u0002\u0010\f\u001a\u0010\u0012\u0004\u0012\u00020\u0004\u0012\u0004\u0012\u00020\u0001\u0018\u00010\rR\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0006\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u0010\u0010\u0007\u001a\u0004\u0018\u00010\bX\u0082\u000e\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u000e"}, d2 = {"Lcom/mogo/module/guide/util/AnalyticsUtil;", "", "()V", "INVOKE_TRACK_PASS_TIME", "", "INVOKE_TRACK_PLAY_PASS_ID", "INVOKE_TRACK_PLAY_TIME", "trackRouter", "Lcom/mogo/service/analytics/IMogoAnalytics;", "track", "", "eventType", "data", "", "mogo-module-guide_debug"}) +public final class AnalyticsUtil { + @org.jetbrains.annotations.NotNull() + public static final java.lang.String INVOKE_TRACK_PLAY_PASS_ID = "v2x_play_pass"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String INVOKE_TRACK_PASS_TIME = "pass_time"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String INVOKE_TRACK_PLAY_TIME = "play_time"; + private static com.mogo.service.analytics.IMogoAnalytics trackRouter; + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.guide.util.AnalyticsUtil INSTANCE = null; + + public final void track(@org.jetbrains.annotations.NotNull() + java.lang.String eventType, @org.jetbrains.annotations.Nullable() + java.util.Map data) { + } + + private AnalyticsUtil() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/util/AnalyticsUtil.kapt_metadata b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/util/AnalyticsUtil.kapt_metadata new file mode 100644 index 0000000000..7914023cf6 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/util/AnalyticsUtil.kapt_metadata differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/util/SharedPreferenceUtil.java b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/util/SharedPreferenceUtil.java new file mode 100644 index 0000000000..75c92c192c --- /dev/null +++ b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/util/SharedPreferenceUtil.java @@ -0,0 +1,23 @@ +package com.mogo.module.guide.util; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u001a\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0002\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002J\u0006\u0010\u0003\u001a\u00020\u0004J\u0006\u0010\u0005\u001a\u00020\u0006J\u0006\u0010\u0007\u001a\u00020\u0006\u00a8\u0006\b"}, d2 = {"Lcom/mogo/module/guide/util/SharedPreferenceUtil;", "", "()V", "hasGuide", "", "setGuideFinish", "", "setGuideRecord", "mogo-module-guide_debug"}) +public final class SharedPreferenceUtil { + @org.jetbrains.annotations.NotNull() + public static final com.mogo.module.guide.util.SharedPreferenceUtil INSTANCE = null; + + public final boolean hasGuide() { + return false; + } + + public final void setGuideFinish() { + } + + public final void setGuideRecord() { + } + + private SharedPreferenceUtil() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/util/SharedPreferenceUtil.kapt_metadata b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/util/SharedPreferenceUtil.kapt_metadata new file mode 100644 index 0000000000..6b5d639f8c Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/util/SharedPreferenceUtil.kapt_metadata differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/util/VoiceUtilKt.java b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/util/VoiceUtilKt.java new file mode 100644 index 0000000000..9769cd830c --- /dev/null +++ b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/util/VoiceUtilKt.java @@ -0,0 +1,17 @@ +package com.mogo.module.guide.util; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\u001c\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0000\n\u0002\u0018\u0002\n\u0000\u001a\u000e\u0010\u0000\u001a\u00020\u00012\u0006\u0010\u0002\u001a\u00020\u0003\u001a \u0010\u0004\u001a\u00020\u00012\u0006\u0010\u0002\u001a\u00020\u00032\u0006\u0010\u0005\u001a\u00020\u00062\b\u0010\u0007\u001a\u0004\u0018\u00010\b\u00a8\u0006\t"}, d2 = {"breakOffSpeak", "", "context", "Landroid/content/Context;", "speak", "text", "", "callBack", "Lcom/mogo/commons/voice/IMogoVoiceCmdCallBack;", "mogo-module-guide_debug"}) +public final class VoiceUtilKt { + + public static final void speak(@org.jetbrains.annotations.NotNull() + android.content.Context context, @org.jetbrains.annotations.NotNull() + java.lang.String text, @org.jetbrains.annotations.Nullable() + com.mogo.commons.voice.IMogoVoiceCmdCallBack callBack) { + } + + public static final void breakOffSpeak(@org.jetbrains.annotations.NotNull() + android.content.Context context) { + } +} \ No newline at end of file diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/util/VoiceUtilKt.kapt_metadata b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/util/VoiceUtilKt.kapt_metadata new file mode 100644 index 0000000000..700fc0d53c Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/com/mogo/module/guide/util/VoiceUtilKt.kapt_metadata differ diff --git a/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java new file mode 100644 index 0000000000..73693e1c55 --- /dev/null +++ b/modules/mogo-module-guide/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java @@ -0,0 +1,4 @@ +package error; + +public final class NonExistentClass { +} \ No newline at end of file diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/META-INF/mogo-module-guide_debug.kotlin_module b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/META-INF/mogo-module-guide_debug.kotlin_module new file mode 100644 index 0000000000..9d641659ad Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/META-INF/mogo-module-guide_debug.kotlin_module differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/GuideBizManager$invokeAuthorize$1.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/GuideBizManager$invokeAuthorize$1.class new file mode 100644 index 0000000000..91e0dae4ef Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/GuideBizManager$invokeAuthorize$1.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/GuideBizManager.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/GuideBizManager.class new file mode 100644 index 0000000000..f7ecb17bb6 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/GuideBizManager.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/GuideConstant$Companion.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/GuideConstant$Companion.class new file mode 100644 index 0000000000..ef3eb8376c Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/GuideConstant$Companion.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/GuideConstant.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/GuideConstant.class new file mode 100644 index 0000000000..646526253b Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/GuideConstant.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/MogoGuideProvider.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/MogoGuideProvider.class new file mode 100644 index 0000000000..2308ecc031 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/MogoGuideProvider.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideAdapter$Companion.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideAdapter$Companion.class new file mode 100644 index 0000000000..3478a099be Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideAdapter$Companion.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideAdapter.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideAdapter.class new file mode 100644 index 0000000000..c73e867fbb Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideAdapter.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideConstract$Biz.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideConstract$Biz.class new file mode 100644 index 0000000000..1bec6359d0 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideConstract$Biz.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideConstract$View.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideConstract$View.class new file mode 100644 index 0000000000..cc3f2647cb Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideConstract$View.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideConstract.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideConstract.class new file mode 100644 index 0000000000..290033d64d Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideConstract.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideFragment$Companion.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideFragment$Companion.class new file mode 100644 index 0000000000..6fea0d5857 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideFragment$Companion.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideFragment$initViews$1.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideFragment$initViews$1.class new file mode 100644 index 0000000000..d3c76dfcfb Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideFragment$initViews$1.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideFragment$initViews$2.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideFragment$initViews$2.class new file mode 100644 index 0000000000..68e0328d7e Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideFragment$initViews$2.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideFragment$initViews$3.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideFragment$initViews$3.class new file mode 100644 index 0000000000..b7e892d034 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideFragment$initViews$3.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideFragment$onDestroy$1.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideFragment$onDestroy$1.class new file mode 100644 index 0000000000..eb63652e92 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideFragment$onDestroy$1.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideFragment.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideFragment.class new file mode 100644 index 0000000000..6081a98e14 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuideFragment.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuidePresenter$Companion.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuidePresenter$Companion.class new file mode 100644 index 0000000000..b68787e0a4 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuidePresenter$Companion.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuidePresenter.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuidePresenter.class new file mode 100644 index 0000000000..650b70ec19 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/fragment/GuidePresenter.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageFiveFragment$GuideLocationPresenter.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageFiveFragment$GuideLocationPresenter.class new file mode 100644 index 0000000000..5b1f4f59d7 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageFiveFragment$GuideLocationPresenter.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageFiveFragment$onResume$1.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageFiveFragment$onResume$1.class new file mode 100644 index 0000000000..2a37ab0aee Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageFiveFragment$onResume$1.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageFiveFragment.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageFiveFragment.class new file mode 100644 index 0000000000..ba688f2b91 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageFiveFragment.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageFourFragment$GuideNavigationPresenter.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageFourFragment$GuideNavigationPresenter.class new file mode 100644 index 0000000000..54c84a30a8 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageFourFragment$GuideNavigationPresenter.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageFourFragment$onResume$1.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageFourFragment$onResume$1.class new file mode 100644 index 0000000000..ae14162d95 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageFourFragment$onResume$1.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageFourFragment.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageFourFragment.class new file mode 100644 index 0000000000..6578d00a0b Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageFourFragment.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageOneFragment$GuideStartPresenter.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageOneFragment$GuideStartPresenter.class new file mode 100644 index 0000000000..ec8df84a66 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageOneFragment$GuideStartPresenter.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageOneFragment$onResume$1.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageOneFragment$onResume$1.class new file mode 100644 index 0000000000..03de4d64a1 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageOneFragment$onResume$1.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageOneFragment.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageOneFragment.class new file mode 100644 index 0000000000..74e6451c22 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageOneFragment.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageThreeFragment$GuideOnLineCarPresenter.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageThreeFragment$GuideOnLineCarPresenter.class new file mode 100644 index 0000000000..cd80074096 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageThreeFragment$GuideOnLineCarPresenter.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageThreeFragment$onResume$1.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageThreeFragment$onResume$1.class new file mode 100644 index 0000000000..40b6d2da22 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageThreeFragment$onResume$1.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageThreeFragment.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageThreeFragment.class new file mode 100644 index 0000000000..adec7a6925 Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageThreeFragment.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageTwoFragment$GuideCardPresenter.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageTwoFragment$GuideCardPresenter.class new file mode 100644 index 0000000000..ddecdfd0ca Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageTwoFragment$GuideCardPresenter.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageTwoFragment$onResume$1.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageTwoFragment$onResume$1.class new file mode 100644 index 0000000000..6617ac5bca Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageTwoFragment$onResume$1.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageTwoFragment.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageTwoFragment.class new file mode 100644 index 0000000000..817b954e7a Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/guide/GuideStageTwoFragment.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/util/AnalyticsUtil.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/util/AnalyticsUtil.class new file mode 100644 index 0000000000..299d3621fe Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/util/AnalyticsUtil.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/util/SharedPreferenceUtil.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/util/SharedPreferenceUtil.class new file mode 100644 index 0000000000..28b6469bac Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/util/SharedPreferenceUtil.class differ diff --git a/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/util/VoiceUtilKt.class b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/util/VoiceUtilKt.class new file mode 100644 index 0000000000..400528cbeb Binary files /dev/null and b/modules/mogo-module-guide/build/tmp/kotlin-classes/debug/com/mogo/module/guide/util/VoiceUtilKt.class differ diff --git a/modules/mogo-module-media/build/generated/source/buildConfig/debug/com/mogo/module/media/BuildConfig.java b/modules/mogo-module-media/build/generated/source/buildConfig/debug/com/mogo/module/media/BuildConfig.java new file mode 100644 index 0000000000..4ee84a782d --- /dev/null +++ b/modules/mogo-module-media/build/generated/source/buildConfig/debug/com/mogo/module/media/BuildConfig.java @@ -0,0 +1,18 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package com.mogo.module.media; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String LIBRARY_PACKAGE_NAME = "com.mogo.module.media"; + /** + * @deprecated APPLICATION_ID is misleading in libraries. For the library package name use LIBRARY_PACKAGE_NAME + */ + @Deprecated + public static final String APPLICATION_ID = "com.mogo.module.media"; + public static final String BUILD_TYPE = "debug"; + public static final String FLAVOR = ""; + public static final int VERSION_CODE = 1; + public static final String VERSION_NAME = "2.0.16"; +} diff --git a/modules/mogo-module-media/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/modules/mogo-module-media/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml new file mode 100644 index 0000000000..fb3db882bb --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json b/modules/mogo-module-media/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json new file mode 100644 index 0000000000..076189dca3 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"2.0.16","enabled":true,"outputFile":"mogo-module-media-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.mogo.module.media","split":""}}] \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar b/modules/mogo-module-media/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar new file mode 100644 index 0000000000..76cc6a171f Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar differ diff --git a/modules/mogo-module-media/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/modules/mogo-module-media/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml new file mode 100644 index 0000000000..6d1612ad02 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/incremental/mergeDebugShaders/merger.xml b/modules/mogo-module-media/build/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000000..83880d6220 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/incremental/mergeDebugShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/incremental/packageDebugAssets/merger.xml b/modules/mogo-module-media/build/intermediates/incremental/packageDebugAssets/merger.xml new file mode 100644 index 0000000000..a9a7c47dd9 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/incremental/packageDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/modules/mogo-module-media/build/intermediates/incremental/packageDebugResources/compile-file-map.properties new file mode 100644 index 0000000000..c9a3549088 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/incremental/packageDebugResources/compile-file-map.properties @@ -0,0 +1,178 @@ +#Tue Aug 31 15:00:18 CST 2021 +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_default_music_img.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_default_music_img.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable/module_media_misic_progress_bar.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_misic_progress_bar.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_suspend.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_suspend.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable/module_media_user_share_music_back.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_user_share_music_back.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon24.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon24.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/module_media_play.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_play.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable/module_media_card_back.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_card_back.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon67.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon67.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon50.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon50.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/module_media_share_default_icon.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_default_icon.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/module_media_share_fail.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_fail.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/module_media_window_pop_play.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_window_pop_play.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/ic_search_unshadow.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_search_unshadow.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon69.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon69.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon34.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon34.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/ic_search_choice_point.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_search_choice_point.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_window_pop_pause.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_pop_pause.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon60.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon60.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon59.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon59.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon16.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon16.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/module_media_window_pop_pause.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_window_pop_pause.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_share_default_rect_icon.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_default_rect_icon.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon42.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon42.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/layout/module_media_share_fragment_view.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_share_fragment_view.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/module_media_blur_default_icon.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_blur_default_icon.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon14.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon14.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon44.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon44.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon57.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon57.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon30.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon30.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/module_media_window_alert_bg.9.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_window_alert_bg.9.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon28.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon28.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon26.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon26.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon75.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon75.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_last_song_click.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_last_song_click.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon62.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon62.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon32.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon32.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/module_media_window_pop_play.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_window_pop_play.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon6.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon6.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon63.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon63.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon20.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon20.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_next_song_click.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_next_song_click.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable/module_media_share_toast_bg.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_share_toast_bg.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon46.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon46.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon71.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon71.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable/module_media_progress_pop_bg.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_progress_pop_bg.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon11.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon11.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon54.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon54.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/module_media_have_heart.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_have_heart.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/layout/module_media_share_toast_view.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_share_toast_view.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/module_media_share_default_icon.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_default_icon.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon39.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon39.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_default_music_img_new.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_default_music_img_new.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/module_media_next_song.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_next_song.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon5.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon5.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon37.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon37.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon56.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon56.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/ic_search_poi_location.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_search_poi_location.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon73.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon73.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/module_media_share_fail.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_fail.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/module_media_share_default_icon2.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_default_icon2.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon29.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon29.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable/module_media_demo_selector.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_demo_selector.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon8.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon8.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/module_media_full_screen.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_full_screen.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/ic_search_poi_location.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_search_poi_location.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/module_media_head_default_img.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_head_default_img.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_window_pop_pause_new.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_pop_pause_new.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable/module_media_play_bg_selector.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_play_bg_selector.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_window_pop_play_new.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_pop_play_new.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/layout/module_media_music_window_alert_layout.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_music_window_alert_layout.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon35.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon35.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_head_default_img.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_head_default_img.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable/module_media_share_dialog_title_bg.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_share_dialog_title_bg.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon22.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon22.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/ic_search_choice_point.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_search_choice_point.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/module_media_no_img_default_icon.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_no_img_default_icon.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon65.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon65.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon3.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon3.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon52.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon52.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon18.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon18.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/module_media_full_screen.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_full_screen.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon48.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon48.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable/module_media_progress_bg.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_progress_bg.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/module_media_have_heart.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_have_heart.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_share_success.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_success.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/module_media_next_song.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_next_song.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/module_media_share_success.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_success.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_last_song.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_last_song.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_play.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_play.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_full_screen_select.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_full_screen_select.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon68.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon68.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/module_media_no_heart.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_no_heart.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/layout/module_media_card_fragment_view.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_card_fragment_view.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon33.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon33.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_window_pop_play.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_pop_play.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable/module_media_card_tran_img_bg.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_card_tran_img_bg.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/module_media_share_normal.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_normal.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon41.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon41.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon17.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon17.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/module_media_share_default_rect_icon.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_default_rect_icon.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/module_media_share_normal.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_normal.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon1.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon1.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_window_alert_bg.9.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_alert_bg.9.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/module_media_head_default_img.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_head_default_img.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_share_normal.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_normal.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon51.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon51.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon43.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon43.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/module_media_no_heart.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_no_heart.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/layout/module_media_dialog_cutom_layout.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_dialog_cutom_layout.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_no_img_default_icon.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_no_img_default_icon.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/module_media_default_music_img.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_default_music_img.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/module_media_share_success.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_success.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon25.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon25.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_blur_default_icon.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_blur_default_icon.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_share_fail.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_fail.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/module_media_blur_default_icon.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_blur_default_icon.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_icon_map_marker_music.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_icon_map_marker_music.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable/module_media_share_dialog_left_btn_bg.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_share_dialog_left_btn_bg.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon31.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon31.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/module_media_suspend.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_suspend.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon74.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon74.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable/module_media_click_poi_bg_top.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_click_poi_bg_top.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_have_heart.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_have_heart.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/module_media_share_default_rect_icon.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_default_rect_icon.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon61.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon61.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon15.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon15.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon13.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon13.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_full_screen.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_full_screen.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/module_media_last_song.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_last_song.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/ic_search_poi_location.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/ic_search_poi_location.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon58.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon58.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon45.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon45.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon27.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon27.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable/module_media_share_dialog_right_btn_bg.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_share_dialog_right_btn_bg.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon38.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon38.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_no_heart.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_no_heart.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/ic_search_choice_point.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/ic_search_choice_point.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable/module_media_circle_bg.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_circle_bg.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon7.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon7.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/module_media_no_img_default_icon.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_no_img_default_icon.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/module_media_window_pop_pause.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_window_pop_pause.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable/module_media_next_bg_selector.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_next_bg_selector.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_window_pop_next.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_pop_next.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon21.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon21.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/module_media_play.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_play.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/module_media_default_music_img.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_default_music_img.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/layout/module_media_bubble_marker.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_bubble_marker.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon72.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon72.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable/module_media_window_progress_bar.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_window_progress_bar.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon47.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon47.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_share_default_icon1.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_default_icon1.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon55.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon55.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon64.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon64.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/layout/module_media_music_window_alert_layout_new.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_music_window_alert_layout_new.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon4.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon4.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon12.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon12.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon19.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon19.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/ic_search_unshadow.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/ic_search_unshadow.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon9.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon9.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon49.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon49.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/module_media_window_alert_bg.9.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_window_alert_bg.9.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/module_media_last_song.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_last_song.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_share_click.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_click.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_next_song.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_next_song.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable/module_media_share_dialog_bg.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_share_dialog_bg.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-mdpi/module_media_suspend.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_suspend.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon70.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon70.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon2.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon2.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon23.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon23.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable/module_media_bottom_revert_trianle_bg.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_bottom_revert_trianle_bg.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon36.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon36.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon40.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon40.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon10.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon10.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_share_default_icon.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_default_icon.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon53.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon53.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-ldpi/module_media_share_default_icon2.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_default_icon2.png +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/res/drawable-xhdpi/module_media_music_animal_icon66.png=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon66.png diff --git a/modules/mogo-module-media/build/intermediates/incremental/packageDebugResources/merged.dir/values-xhdpi-v4/values-xhdpi-v4.xml b/modules/mogo-module-media/build/intermediates/incremental/packageDebugResources/merged.dir/values-xhdpi-v4/values-xhdpi-v4.xml new file mode 100644 index 0000000000..df8584292d --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/incremental/packageDebugResources/merged.dir/values-xhdpi-v4/values-xhdpi-v4.xml @@ -0,0 +1,130 @@ + + + #D81B60 + #008577 + #00574B + 660px + 20px + 660px + 15px + 2px + 78px + 53px + 107px + 660px + 348px + 226px + 226px + 348px + 2px + 28px + 4px + 36px + 64px + 12px + 6px + 11px + 2px + 8px + 6px + 6px + 21px + 4px + 22px + 20px + 22px + 22px + 180px + 660px + 60px + 750px + 120px + 270px + 872px + 40px + 1067px + 1760px + 80px + 101px + 56px + 40px + 140px + 116px + 112px + 30px + 60px + 8px + 16px + 16px + 115px + 24px + 14px + 35px + 230px + 600px + 116px + 116px + 20px + 130px + 40px + 96px + 60px + 34px + 525px + 6px + 136px + 20px + 136px + 34px + 61px + 55px + 40px + 30px + 4px + 790px + 23px + 67.5px + 23px + 10px + 67.5px + 126px + 56px + 56px + 35px + 116px + 3px + 116px + 22px + 28px + 37.5px + 67.5px + 145px + 30px + 20px + 23px + 90px + 30px + 90px + 16px + 68px + 23px + 68px + 21px + 24px + 26px + 30px + 20px + 350px + 120px + 20px + 36px + 500px + 30px + mogo-module-media + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml b/modules/mogo-module-media/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml new file mode 100644 index 0000000000..4bb7fd5d3f --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/incremental/packageDebugResources/merged.dir/values/values.xml @@ -0,0 +1,177 @@ + + + #444E6E + #f6ffffff + #ffffff + #1Affffff + #7affffff + #fff + 352px + 10.67px + 352px + 8px + 1px + 44px + 28px + 62px + 352px + 175px + 114px + 114px + 175px + 2px + 15px + 4px + 20px + 35px + 6.4px + 3.2px + 6px + 1px + 4px + 3px + 4px + 11px + 12px + 10.5px + 11px + 11.5px + 96px + 352px + 32px + 400px + 80px + 150px + 467px + 80px + 573px + 930px + 44px + 60px + 30px + 21px + 82px + 116px + 60px + 18px + 60px + 4px + 8px + 7px + 14px + 10px + 18px + 123px + 338px + 116px + 62px + 11.5px + 68px + 22px + 51px + 32px + 18px + 280px + 3.2px + 72.5px + 10.7px + 72.5px + 10px + 32.5px + 28px + 22px + 16px + 2px + 421px + 12px + 36px + 12px + 5px + 36px + 67.2px + 30px + 30px + 18px + 62px + 3px + 62px + 12px + 15px + 20px + 36px + 78px + 16px + 10.6px + 12px + 48px + 16px + 48px + 8px + 36px + 12px + 36px + 11px + 12px + 14px + 16px + 10px + 187px + 64px + 11px + 18px + 267px + 16px + mogo-module-media + 来自 + 的分享 + 分享失败 + 是否确认分享此书? + 是否确认分享此新闻? + 是否确认分享此歌曲? + 分享成功 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/incremental/packageDebugResources/merger.xml b/modules/mogo-module-media/build/intermediates/incremental/packageDebugResources/merger.xml new file mode 100644 index 0000000000..d0190a07a0 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/incremental/packageDebugResources/merger.xml @@ -0,0 +1,84 @@ + +#008577#00574B#D81B60872px1067px40px1760px660px660px20px23px67.5px67.5px67.5px10px23px116px30px145px20px30px90px90px21px24px23px26px30px16px68px68px23px35px56px56px126px3px116px116px22px37.5px28px790px525px55px61px20px136px20px136px34px40px30px34px40px60px96px130px4px6px600px140px116px116px112px30px80px101px60px115px230px14px35px24px56px40px8px16px16px500px350px20px120px36px20px660px660px20px22px22px348px348px226px226px36px28px4px2px11px22px21px4px6px2px15px78px107px53px2px64px6px12px6px8px180px60px750px120px270px30pxmogo-module-media#fff#7affffff#444E6E#f6ffffff#1Affffff#ffffff467px573px80px930px352px352px10.67px12px36px36px36px5px12px62px16px78px10.6px16px48px48px11px12px12px14px16px8px36px36px12px18px30px30px67.2px3px62px62px12px20px15px421px280px28px32.5px11.5px72.5px10.7px72.5px10px22px16px18px22px32px51px68px2px3.2px338px82px116px116px60px18px44px60px60px123px10px18px14px30px21px4px8px7px267px187px10px64px18px11px352px352px10.5px11px11.5px175px175px114px114px20px15px4px2px6px12px11px4px1px8px44px62px28px1px35px3.2px6.4px3px4px96px32px400px80px150px16pxmogo-module-media来自的分享是否确认分享此歌曲?是否确认分享此书?是否确认分享此新闻?分享成功分享失败 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/library_assets/debug/out/13646-rugby-loader.json b/modules/mogo-module-media/build/intermediates/library_assets/debug/out/13646-rugby-loader.json new file mode 100644 index 0000000000..70c3b84438 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/library_assets/debug/out/13646-rugby-loader.json @@ -0,0 +1 @@ +{"v":"5.5.9","fr":30,"ip":0,"op":17,"w":500,"h":500,"nm":"Base Ball","ddd":0,"assets":[{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 17","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.166,"y":0},"t":23,"s":[295.125,240.875,0],"to":[0,0,0],"ti":[0,0,0]},{"t":37,"s":[287.625,240.875,0]}],"ix":2},"a":{"a":0,"k":[37.625,-9.125,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[35.375,-9.125],[39.875,-9.125]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.313725490196,0.313725490196,0.313725490196,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.956862804936,0.63137254902,0.564705882353,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.211],"y":[0]},"t":23,"s":[100]},{"t":33,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.211],"y":[0]},"t":29,"s":[100]},{"t":38,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":4,"nm":"Trim Paths 2","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":23,"op":36,"st":23,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 16","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.115,"y":0},"t":26,"s":[299.938,258.875,0],"to":[0,0,0],"ti":[0,0,0]},{"t":40,"s":[287.438,258.875,0]}],"ix":2},"a":{"a":0,"k":[35.938,8.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[30.625,8.875],[41.25,8.875]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.313725490196,0.313725490196,0.313725490196,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.956862804936,0.63137254902,0.564705882353,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.211],"y":[0]},"t":26,"s":[100]},{"t":36,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.211],"y":[0]},"t":32,"s":[100]},{"t":41,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":4,"nm":"Trim Paths 2","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":26,"op":39,"st":26,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 15","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.115,"y":0},"t":23,"s":[300.188,275.812,0],"to":[0,0,0],"ti":[0,0,0]},{"t":36,"s":[282.688,275.812,0]}],"ix":2},"a":{"a":0,"k":[32.688,25.812,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[44.25,25.625],[48.75,25.625]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.313725490196,0.313725490196,0.313725490196,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.956862804936,0.63137254902,0.564705882353,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.211],"y":[0]},"t":23,"s":[100]},{"t":33,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.211],"y":[0]},"t":28,"s":[100]},{"t":34,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":4,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[16.625,26],[34.875,26]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.313725490196,0.313725490196,0.313725490196,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.956862804936,0.63137254902,0.564705882353,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.211],"y":[0]},"t":27,"s":[100]},{"t":37,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.211],"y":[0]},"t":33,"s":[100]},{"t":43,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":4,"nm":"Trim Paths 2","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":4,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":23,"op":35,"st":23,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Shape Layer 9","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.166,"y":0},"t":2,"s":[295.125,240.875,0],"to":[0,0,0],"ti":[0,0,0]},{"t":16,"s":[287.625,240.875,0]}],"ix":2},"a":{"a":0,"k":[37.625,-9.125,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[35.375,-9.125],[39.875,-9.125]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.313725490196,0.313725490196,0.313725490196,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.956862804936,0.63137254902,0.564705882353,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.211],"y":[0]},"t":2,"s":[100]},{"t":12,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.211],"y":[0]},"t":8,"s":[100]},{"t":17,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":4,"nm":"Trim Paths 2","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":2,"op":15,"st":2,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Shape Layer 8","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.115,"y":0},"t":5,"s":[299.938,258.875,0],"to":[0,0,0],"ti":[0,0,0]},{"t":19,"s":[287.438,258.875,0]}],"ix":2},"a":{"a":0,"k":[35.938,8.875,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[30.625,8.875],[41.25,8.875]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.313725490196,0.313725490196,0.313725490196,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.956862804936,0.63137254902,0.564705882353,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.211],"y":[0]},"t":5,"s":[100]},{"t":15,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.211],"y":[0]},"t":11,"s":[100]},{"t":20,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":4,"nm":"Trim Paths 2","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":5,"op":18,"st":5,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Shape Layer 7","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0,"y":1},"o":{"x":0.115,"y":0},"t":2,"s":[300.188,275.812,0],"to":[0,0,0],"ti":[0,0,0]},{"t":15,"s":[282.688,275.812,0]}],"ix":2},"a":{"a":0,"k":[32.688,25.812,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[44.25,25.625],[48.75,25.625]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.313725490196,0.313725490196,0.313725490196,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.956862804936,0.63137254902,0.564705882353,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.211],"y":[0]},"t":2,"s":[100]},{"t":12,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.211],"y":[0]},"t":7,"s":[100]},{"t":13,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":4,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[16.625,26],[34.875,26]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.313725490196,0.313725490196,0.313725490196,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.956862804936,0.63137254902,0.564705882353,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.211],"y":[0]},"t":6,"s":[100]},{"t":16,"s":[0]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.211],"y":[0]},"t":12,"s":[100]},{"t":22,"s":[0]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":4,"nm":"Trim Paths 2","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":4,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":2,"op":14,"st":2,"bm":0}]},{"id":"comp_1","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 6","parent":4,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-6.969,-6.062,0],"ix":2},"a":{"a":0,"k":[-19.656,6.062,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-23.812,1.562],[-15.5,10.562]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.313725490196,0.313725490196,0.313725490196,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.956862804936,0.63137254902,0.564705882353,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 5","parent":4,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-13.406,-0.188,0],"ix":2},"a":{"a":0,"k":[-19.656,6.062,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-23.812,1.562],[-15.5,10.562]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.313725490196,0.313725490196,0.313725490196,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.956862804936,0.63137254902,0.564705882353,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"Shape Layer 4","parent":4,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-19.656,6.062,0],"ix":2},"a":{"a":0,"k":[-19.656,6.062,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-23.812,1.562],[-15.5,10.562]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.313725490196,0.313725490196,0.313725490196,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.956862804936,0.63137254902,0.564705882353,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Shape Layer 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[264.625,274.625,0],"to":[0,0,0],"ti":[0,0,0]},{"t":17,"s":[210.875,222.125,0]}],"ix":2,"x":"var $bm_rt;\n$bm_rt = loopOut('cycle');"},"a":{"a":0,"k":[-13.625,0.125,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-23.75,10],[-3.5,-9.75]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.313725490196,0.313725490196,0.313725490196,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.956862804936,0.63137254902,0.564705882353,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":61,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"Effect","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[250,250,0],"ix":2},"a":{"a":0,"k":[250,250,0],"ix":1},"s":{"a":0,"k":[147,147,100],"ix":6}},"ao":0,"w":500,"h":500,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 11","parent":4,"td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-12.821,-0.393,0],"ix":2},"a":{"a":0,"k":[-12.821,-0.393,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[17.75,-18.75],[0,0],[-17.058,18.196]],"o":[[0,0],[-18.717,19.772],[0,0],[18.75,-20]],"v":[[17.75,-31],[-29.75,-17],[-43.5,31.5],[4.25,15.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.315119485294,0.315119485294,0.315119485294,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"Centre Part","parent":4,"tt":1,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-5.301,"ix":10},"p":{"a":0,"k":[0,0,0],"ix":2},"a":{"a":0,"k":[250,250,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":500,"h":500,"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Shape Layer 1","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-12.821,-0.393,0],"ix":2},"a":{"a":0,"k":[-12.821,-0.393,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[23.5,-23],[0,0],[-20.5,21.75]],"o":[[0,0],[-21.485,21.028],[0,0],[20.5,-21.75]],"v":[[17.75,-31],[-31.25,-18.25],[-43.5,31.5],[6.5,16.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.315119485294,0.315119485294,0.315119485294,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":0,"k":94,"ix":2},"o":{"a":0,"k":142,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Shape Layer 10","parent":4,"td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-12.821,-0.393,0],"ix":2},"a":{"a":0,"k":[-12.821,-0.393,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[18.544,-17.965],[0,0],[-17.058,18.196]],"o":[[0,0],[-19.25,18.648],[0,0],[18.75,-20]],"v":[[17.75,-31],[-32.25,-17.75],[-43.5,31.5],[4.25,15.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.315119485294,0.315119485294,0.315119485294,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"color","parent":4,"tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-46.534,"ix":10},"p":{"a":0,"k":[-13.142,-0.536,0],"ix":2},"a":{"a":0,"k":[-12.892,-0.786,0],"ix":1},"s":{"a":0,"k":[83.074,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[65.681,75.156],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":0,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.956862804936,0.63137254902,0.564705882353,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-12.892,-0.786],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":61,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Shape Layer 12","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[231.153,249.422,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":8.5,"s":[231.153,253.097,0],"to":[0,0,0],"ti":[0,0,0]},{"t":17,"s":[231.153,249.422,0]}],"ix":2},"a":{"a":0,"k":[-12.821,-0.393,0],"ix":1},"s":{"a":0,"k":[147,147,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[23.5,-23],[0,0],[-20.5,21.75]],"o":[[0,0],[-21.485,21.028],[0,0],[20.5,-21.75]],"v":[[17.75,-31],[-31.25,-18.25],[-43.5,31.5],[6.5,16.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":0,"k":94,"ix":2},"o":{"a":0,"k":142,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":61,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/library_assets/debug/out/images/img_0.png b/modules/mogo-module-media/build/intermediates/library_assets/debug/out/images/img_0.png new file mode 100644 index 0000000000..34b602b89f Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/library_assets/debug/out/images/img_0.png differ diff --git a/modules/mogo-module-media/build/intermediates/library_assets/debug/out/images/img_1.png b/modules/mogo-module-media/build/intermediates/library_assets/debug/out/images/img_1.png new file mode 100644 index 0000000000..c7f4766de9 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/library_assets/debug/out/images/img_1.png differ diff --git a/modules/mogo-module-media/build/intermediates/library_assets/debug/out/traffic_active_animator.json b/modules/mogo-module-media/build/intermediates/library_assets/debug/out/traffic_active_animator.json new file mode 100644 index 0000000000..753c8125f1 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/library_assets/debug/out/traffic_active_animator.json @@ -0,0 +1 @@ +{"v":"5.5.9","fr":25,"ip":0,"op":40,"w":600,"h":600,"nm":"合成 2","ddd":0,"assets":[{"id":"image_0","w":249,"h":420,"u":"images/","p":"img_0.png","e":0},{"id":"image_1","w":606,"h":396,"u":"images/","p":"img_1.png","e":0},{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"tick2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0],"e":[99]},{"t":22}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[473.856,259.731,0],"ix":2},"a":{"a":0,"k":[27.375,-11.375,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":20,"s":[0,0,100],"e":[80,80,100]},{"t":22}],"ix":6,"x":"var $bm_rt;\nvar amp, freq, decay, n, n, t, t, v;\namp = 0.1;\nfreq = 1;\ndecay = 4;\n$bm_rt = n = 0;\nif (numKeys > 0) {\n $bm_rt = n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n}\nif (n == 0) {\n $bm_rt = t = 0;\n} else {\n $bm_rt = t = $bm_sub(time, key(n).time);\n}\nif (n > 0) {\n v = velocityAtTime($bm_sub(key(n).time, $bm_div(thisComp.frameDuration, 10)));\n $bm_rt = $bm_sum(value, $bm_div($bm_mul($bm_mul(v, amp), Math.sin($bm_mul($bm_mul($bm_mul(freq, t), 2), Math.PI))), Math.exp($bm_mul(decay, t))));\n} else {\n $bm_rt = value;\n}"}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-36,-15.5],[-21,-0.75],[1.75,-22.25]],"c":false},"ix":2},"nm":"路径 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":8,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"描边 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[45,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"形状 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":20,"op":770,"st":20,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":" Round 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[474.319,259.882,0],"ix":2},"a":{"a":0,"k":[-9,-4,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":22,"s":[50,50,100],"e":[70,70,100]},{"t":25}],"ix":6,"x":"var $bm_rt;\nvar amp, freq, decay, n, n, t, t, v;\namp = 0.1;\nfreq = 1;\ndecay = 4;\n$bm_rt = n = 0;\nif (numKeys > 0) {\n $bm_rt = n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n}\nif (n == 0) {\n $bm_rt = t = 0;\n} else {\n $bm_rt = t = $bm_sub(time, key(n).time);\n}\nif (n > 0) {\n v = velocityAtTime($bm_sub(key(n).time, $bm_div(thisComp.frameDuration, 10)));\n $bm_rt = $bm_sum(value, $bm_div($bm_mul($bm_mul(v, amp), Math.sin($bm_mul($bm_mul($bm_mul(freq, t), 2), Math.PI))), Math.exp($bm_mul(decay, t))));\n} else {\n $bm_rt = value;\n}"}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[90,90],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"椭圆路径 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0.600000023842,0.600000023842,0.600000023842,1],"e":[0.196078434587,0.772549033165,1,1]},{"t":22}],"ix":4},"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[100],"e":[50]},{"t":22}],"ix":5},"r":1,"bm":0,"nm":"填充 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-9.264,-4.264],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"椭圆 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":20,"op":770,"st":20,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":" Round 8","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[2],"e":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":9.899,"s":[100],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[0],"e":[1]},{"t":749}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[474.519,259.894,0],"ix":2},"a":{"a":0,"k":[-9,-4,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":0,"s":[50,50,100],"e":[159,159,100]},{"t":20}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[70,70],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"椭圆路径 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.162408118154,0.778977397844,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"描边 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-9.264,-4.264],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"椭圆 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":20,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":" Round 9","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":9,"s":[2],"e":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":18.899,"s":[100],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":29,"s":[0],"e":[1]},{"t":758}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[474.519,259.894,0],"ix":2},"a":{"a":0,"k":[-9,-4,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":9,"s":[50,50,100],"e":[159,159,100]},{"t":29}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[70,70],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"椭圆路径 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.162408118154,0.778977397844,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"描边 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-9.264,-4.264],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"椭圆 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":9,"op":29,"st":9,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":" Round 7","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15,"s":[2],"e":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":24.899,"s":[100],"e":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":35,"s":[0],"e":[1]},{"t":764}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[474.519,259.894,0],"ix":2},"a":{"a":0,"k":[-9,-4,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":15,"s":[50,50,100],"e":[159,159,100]},{"t":35}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[70,70],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"椭圆路径 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"st","c":{"a":0,"k":[0.162408118154,0.778977397844,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"描边 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-9.264,-4.264],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"椭圆 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":15,"op":35,"st":15,"bm":0},{"ddd":0,"ind":6,"ty":2,"nm":"手机.png","cl":"png","refId":"image_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[472,302,0],"ix":2},"a":{"a":0,"k":[124.5,210,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"ip":0,"op":750,"st":0,"bm":0}]},{"id":"comp_1","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"line 4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[281,380.5,0],"ix":2},"a":{"a":0,"k":[-25.5,-79.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[34,-174.5],[74,-174.5]],"c":false},"ix":2},"nm":"路径 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.162408118154,0.778977397844,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"描边 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-163.061,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"形状 2","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.162408118154,0.778977397844,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"描边 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[73.195,-73.461],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"形状 1","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[100],"e":[7]},{"t":24}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":20,"s":[100],"e":[7]},{"t":28}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"修剪路径 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":20,"op":30,"st":20,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"line 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[281,380.5,0],"ix":2},"a":{"a":0,"k":[-25.5,-79.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[34,-174.5],[74,-174.5]],"c":false},"ix":2},"nm":"路径 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.162408118154,0.778977397844,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"描边 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"形状 2","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[0.162408118154,0.778977397844,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"描边 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[73.195,-73.461],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"形状 1","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[7],"e":[100]},{"t":25}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[7],"e":[100]},{"t":29}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":3,"nm":"修剪路径 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":20,"op":30,"st":20,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"line 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[281,380.5,0],"ix":2},"a":{"a":0,"k":[-25.5,-79.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-7],[0,0]],"o":[[0,7],[0,0]],"v":[[-25,-107],[-25,-80]],"c":false},"ix":2},"nm":"路径 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.162408118154,0.778977397844,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"描边 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"形状 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[7],"e":[100]},{"t":25}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[7],"e":[100]},{"t":29}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"修剪路径 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":20,"op":30,"st":20,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"line","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[281,208.5,0],"ix":2},"a":{"a":0,"k":[-25.5,-106.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-7],[0,0]],"o":[[0,7],[0,0]],"v":[[-25,-107],[-25,-80]],"c":false},"ix":2},"nm":"路径 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.162408118154,0.778977397844,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":5,"ix":5},"lc":2,"lj":1,"ml":4,"bm":0,"nm":"描边 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"形状 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[100],"e":[0]},{"t":24.5}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[100],"e":[0]},{"t":28}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"修剪路径 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":20,"op":30,"st":20,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"tick1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[283.556,288.743,0],"ix":2},"a":{"a":0,"k":[27.375,-11.375,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":10,"s":[100,100,100],"e":[50,50,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":15,"s":[50,50,100],"e":[100,100,100]},{"t":18}],"ix":6,"x":"var $bm_rt;\nvar amp, freq, decay, n, n, t, t, v;\namp = 0.1;\nfreq = 1;\ndecay = 4;\n$bm_rt = n = 0;\nif (numKeys > 0) {\n $bm_rt = n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n}\nif (n == 0) {\n $bm_rt = t = 0;\n} else {\n $bm_rt = t = $bm_sub(time, key(n).time);\n}\nif (n > 0) {\n v = velocityAtTime($bm_sub(key(n).time, $bm_div(thisComp.frameDuration, 10)));\n $bm_rt = $bm_sum(value, $bm_div($bm_mul($bm_mul(v, amp), Math.sin($bm_mul($bm_mul($bm_mul(freq, t), 2), Math.PI))), Math.exp($bm_mul(decay, t))));\n} else {\n $bm_rt = value;\n}"}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-36,-15.5],[-21,-0.75],[1.75,-22.25]],"c":false},"ix":2},"nm":"路径 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":10,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"描边 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[45,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"形状 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":16,"s":[0],"e":[100]},{"t":24}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"修剪路径 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":750,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":" Round 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[284.319,288.882,0],"ix":2},"a":{"a":0,"k":[-9,-4,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":10,"s":[100,100,100],"e":[80,80,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"t":15,"s":[80,80,100],"e":[100,100,100]},{"t":18}],"ix":6,"x":"var $bm_rt;\nvar amp, freq, decay, n, n, t, t, v;\namp = 0.1;\nfreq = 1;\ndecay = 4;\n$bm_rt = n = 0;\nif (numKeys > 0) {\n $bm_rt = n = nearestKey(time).index;\n if (key(n).time > time) {\n n--;\n }\n}\nif (n == 0) {\n $bm_rt = t = 0;\n} else {\n $bm_rt = t = $bm_sub(time, key(n).time);\n}\nif (n > 0) {\n v = velocityAtTime($bm_sub(key(n).time, $bm_div(thisComp.frameDuration, 10)));\n $bm_rt = $bm_sum(value, $bm_div($bm_mul($bm_mul(v, amp), Math.sin($bm_mul($bm_mul($bm_mul(freq, t), 2), Math.PI))), Math.exp($bm_mul(decay, t))));\n} else {\n $bm_rt = value;\n}"}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"a":0,"k":[90,90],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"nm":"椭圆路径 1","mn":"ADBE Vector Shape - Ellipse","hd":false},{"ty":"fl","c":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0.600000023842,0.600000023842,0.600000023842,1],"e":[0.196078431373,0.772549019608,1,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":10,"s":[0.196078431373,0.772549019608,1,1],"e":[0.196078434587,0.772549033165,1,1]},{"t":22}],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"填充 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-9.264,-4.264],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"椭圆 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":750,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"手机","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.517],"y":[0.999]},"o":{"x":[0.652],"y":[0.016]},"t":0,"s":[22],"e":[287.899]},{"t":25}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.99],"y":[1]},"o":{"x":[0.01],"y":[0]},"t":0,"s":[300],"e":[300]},{"t":25}],"ix":4}},"a":{"a":0,"k":[300,300,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":600,"h":600,"ip":0,"op":40,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"bule tick","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,300,0],"ix":2},"a":{"a":0,"k":[300,300,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":600,"h":600,"ip":0,"op":40,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":2,"nm":"车机.png","cl":"png","refId":"image_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[302,310,0],"ix":2},"a":{"a":0,"k":[303,198,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"ip":0,"op":40,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"形状图层 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[294.742,298.636,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[600,606.881],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"矩形路径 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"填充 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[5.258,4.805],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"变换"}],"nm":"矩形 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":750,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/library_manifest/debug/AndroidManifest.xml b/modules/mogo-module-media/build/intermediates/library_manifest/debug/AndroidManifest.xml new file mode 100644 index 0000000000..fb3db882bb --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/library_manifest/debug/AndroidManifest.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt b/modules/mogo-module-media/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt new file mode 100644 index 0000000000..81c53a760e --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt @@ -0,0 +1,349 @@ +R_DEF: Internal format may change without notice +local +attr? circleBackground +attr? civ_border_color +attr? civ_border_overlay +attr? civ_border_width +attr? civ_fill_color +attr? radius +attr? ringColor +attr? riv_border_color +attr? riv_border_width +attr? riv_corner_radius +attr? riv_corner_radius_bottom_left +attr? riv_corner_radius_bottom_right +attr? riv_corner_radius_top_left +attr? riv_corner_radius_top_right +attr? riv_mutate_background +attr? riv_oval +attr? riv_tile_mode +attr? riv_tile_mode_x +attr? riv_tile_mode_y +attr? textColor +color colorAccent +color colorPrimary +color colorPrimaryDark +color modules_media_music_bg_color +color modules_media_music_circle_color +color modules_media_music_circle_color_end +color modules_media_music_circle_color_start +color modules_media_music_time_text_color +color modules_media_music_title_text_color +dimen module_media_back_height +dimen module_media_back_radius +dimen module_media_back_width +dimen module_media_card_control_icon_left_padding +dimen module_media_card_control_icon_margin_bottom +dimen module_media_card_control_icon_size +dimen module_media_card_control_play_icon_margin +dimen module_media_card_control_play_icon_size +dimen module_media_card_height +dimen module_media_card_no_share_anim_height +dimen module_media_card_no_share_anim_img_height +dimen module_media_card_no_share_anim_img_width +dimen module_media_card_no_share_anim_width +dimen module_media_card_no_share_music_bottom_title_margin +dimen module_media_card_no_share_music_bottom_title_size +dimen module_media_card_no_share_music_top_title_margin +dimen module_media_card_no_share_music_top_title_size +dimen module_media_card_no_share_title_margin +dimen module_media_card_progress_bg_drawable_height +dimen module_media_card_progress_bg_drawable_width +dimen module_media_card_progress_height +dimen module_media_card_progress_margin +dimen module_media_card_progress_pop_bg_drawable_height +dimen module_media_card_progress_pop_bg_drawable_width +dimen module_media_card_progress_time_text_margin_bottom +dimen module_media_card_progress_time_text_margin_left +dimen module_media_card_progress_time_text_margin_right +dimen module_media_card_progress_time_text_size +dimen module_media_card_radius +dimen module_media_card_radius_blur +dimen module_media_card_share_full_margin_top +dimen module_media_card_share_user_text_width_max +dimen module_media_card_width +dimen module_media_draw_rect_map_bottom +dimen module_media_draw_rect_map_left +dimen module_media_draw_rect_map_right +dimen module_media_draw_rect_map_top +dimen module_media_music_state_location +dimen module_media_music_state_location_new +dimen module_media_music_state_location_x +dimen module_media_music_state_location_x_new +dimen module_media_pop_window_anim_img_size +dimen module_media_pop_window_anim_img_size_new +dimen module_media_pop_window_control_img_size +dimen module_media_pop_window_control_margin_right +dimen module_media_pop_window_height +dimen module_media_pop_window_height_new +dimen module_media_pop_window_inner_height +dimen module_media_pop_window_inner_padding +dimen module_media_pop_window_pause +dimen module_media_pop_window_progress_height +dimen module_media_pop_window_radius +dimen module_media_pop_window_radius_margin +dimen module_media_pop_window_size +dimen module_media_pop_window_text_bottom_size +dimen module_media_pop_window_text_margin +dimen module_media_pop_window_text_top_size +dimen module_media_pop_window_text_width +dimen module_media_pop_window_width +dimen module_media_pop_window_width_new +dimen module_media_share_back_top +dimen module_media_share_fragment_bg_radius +dimen module_media_share_fragment_btn_height +dimen module_media_share_fragment_btn_size +dimen module_media_share_fragment_center_margin_bottom +dimen module_media_share_fragment_center_margin_top +dimen module_media_share_fragment_center_text_size +dimen module_media_share_fragment_height +dimen module_media_share_fragment_img_radius +dimen module_media_share_fragment_title_height +dimen module_media_share_fragment_title_img_right +dimen module_media_share_fragment_title_img_size +dimen module_media_share_fragment_title_padding +dimen module_media_share_fragment_title_padding_left +dimen module_media_share_fragment_title_padding_top +dimen module_media_share_fragment_title_scroll_tv1_size +dimen module_media_share_fragment_title_scroll_tv2_size +dimen module_media_share_fragment_tv2_margin_top +dimen module_media_share_fragment_width +dimen module_media_share_full_screen_back_top +dimen module_media_share_full_screen_height +dimen module_media_share_full_screen_margin_left_right +dimen module_media_share_full_screen_pading +dimen module_media_share_full_screen_width +dimen module_media_share_media_back_height +dimen module_media_share_media_back_margin_left +dimen module_media_share_media_back_margin_right +dimen module_media_share_media_back_top +dimen module_media_share_media_image_height +dimen module_media_share_media_image_radius +dimen module_media_share_media_image_width +dimen module_media_share_media_name_back_left +dimen module_media_share_media_singer_name_size +dimen module_media_share_media_song_name_size +dimen module_media_share_share_icon_width +dimen module_media_share_user_back_margin_height +dimen module_media_share_user_back_margin_left_right +dimen module_media_share_user_back_radius +dimen module_media_share_user_from_size +dimen module_media_share_user_head_image_height +dimen module_media_share_user_head_image_left +dimen module_media_share_user_head_image_width +dimen module_media_share_user_like_back_margin_right +dimen module_media_share_user_like_height +dimen module_media_share_user_like_size +dimen module_media_share_user_like_width +dimen module_media_share_user_name_back_margin_left +dimen module_media_share_user_name_back_margin_right +dimen module_media_share_user_name_size +dimen module_media_share_user_of_share_size +dimen module_media_toast_share_bg_radius +dimen module_media_toast_share_height +dimen module_media_toast_share_img_size +dimen module_media_toast_share_margin_top +dimen module_media_toast_share_text_size +dimen module_media_toast_share_width +dimen module_media_window_corner +drawable ic_search_choice_point +drawable ic_search_poi_location +drawable ic_search_unshadow +drawable module_media_blur_default_icon +drawable module_media_bottom_revert_trianle_bg +drawable module_media_card_back +drawable module_media_card_tran_img_bg +drawable module_media_circle_bg +drawable module_media_click_poi_bg_top +drawable module_media_default_music_img +drawable module_media_default_music_img_new +drawable module_media_demo_selector +drawable module_media_full_screen +drawable module_media_full_screen_select +drawable module_media_have_heart +drawable module_media_head_default_img +drawable module_media_icon_map_marker_music +drawable module_media_last_song +drawable module_media_last_song_click +drawable module_media_misic_progress_bar +drawable module_media_music_animal_icon1 +drawable module_media_music_animal_icon10 +drawable module_media_music_animal_icon11 +drawable module_media_music_animal_icon12 +drawable module_media_music_animal_icon13 +drawable module_media_music_animal_icon14 +drawable module_media_music_animal_icon15 +drawable module_media_music_animal_icon16 +drawable module_media_music_animal_icon17 +drawable module_media_music_animal_icon18 +drawable module_media_music_animal_icon19 +drawable module_media_music_animal_icon2 +drawable module_media_music_animal_icon20 +drawable module_media_music_animal_icon21 +drawable module_media_music_animal_icon22 +drawable module_media_music_animal_icon23 +drawable module_media_music_animal_icon24 +drawable module_media_music_animal_icon25 +drawable module_media_music_animal_icon26 +drawable module_media_music_animal_icon27 +drawable module_media_music_animal_icon28 +drawable module_media_music_animal_icon29 +drawable module_media_music_animal_icon3 +drawable module_media_music_animal_icon30 +drawable module_media_music_animal_icon31 +drawable module_media_music_animal_icon32 +drawable module_media_music_animal_icon33 +drawable module_media_music_animal_icon34 +drawable module_media_music_animal_icon35 +drawable module_media_music_animal_icon36 +drawable module_media_music_animal_icon37 +drawable module_media_music_animal_icon38 +drawable module_media_music_animal_icon39 +drawable module_media_music_animal_icon4 +drawable module_media_music_animal_icon40 +drawable module_media_music_animal_icon41 +drawable module_media_music_animal_icon42 +drawable module_media_music_animal_icon43 +drawable module_media_music_animal_icon44 +drawable module_media_music_animal_icon45 +drawable module_media_music_animal_icon46 +drawable module_media_music_animal_icon47 +drawable module_media_music_animal_icon48 +drawable module_media_music_animal_icon49 +drawable module_media_music_animal_icon5 +drawable module_media_music_animal_icon50 +drawable module_media_music_animal_icon51 +drawable module_media_music_animal_icon52 +drawable module_media_music_animal_icon53 +drawable module_media_music_animal_icon54 +drawable module_media_music_animal_icon55 +drawable module_media_music_animal_icon56 +drawable module_media_music_animal_icon57 +drawable module_media_music_animal_icon58 +drawable module_media_music_animal_icon59 +drawable module_media_music_animal_icon6 +drawable module_media_music_animal_icon60 +drawable module_media_music_animal_icon61 +drawable module_media_music_animal_icon62 +drawable module_media_music_animal_icon63 +drawable module_media_music_animal_icon64 +drawable module_media_music_animal_icon65 +drawable module_media_music_animal_icon66 +drawable module_media_music_animal_icon67 +drawable module_media_music_animal_icon68 +drawable module_media_music_animal_icon69 +drawable module_media_music_animal_icon7 +drawable module_media_music_animal_icon70 +drawable module_media_music_animal_icon71 +drawable module_media_music_animal_icon72 +drawable module_media_music_animal_icon73 +drawable module_media_music_animal_icon74 +drawable module_media_music_animal_icon75 +drawable module_media_music_animal_icon8 +drawable module_media_music_animal_icon9 +drawable module_media_next_bg_selector +drawable module_media_next_song +drawable module_media_next_song_click +drawable module_media_no_heart +drawable module_media_no_img_default_icon +drawable module_media_play +drawable module_media_play_bg_selector +drawable module_media_progress_bg +drawable module_media_progress_pop_bg +drawable module_media_share_click +drawable module_media_share_default_icon +drawable module_media_share_default_icon1 +drawable module_media_share_default_icon2 +drawable module_media_share_default_rect_icon +drawable module_media_share_dialog_bg +drawable module_media_share_dialog_left_btn_bg +drawable module_media_share_dialog_right_btn_bg +drawable module_media_share_dialog_title_bg +drawable module_media_share_fail +drawable module_media_share_normal +drawable module_media_share_success +drawable module_media_share_toast_bg +drawable module_media_suspend +drawable module_media_user_share_music_back +drawable module_media_window_alert_bg +drawable module_media_window_pop_next +drawable module_media_window_pop_pause +drawable module_media_window_pop_pause_new +drawable module_media_window_pop_play +drawable module_media_window_pop_play_new +drawable module_media_window_progress_bar +id clamp +id full_screen_id +id icon +id imgViewIcon +id last_music +id left_time_progress +id like_back_id +id like_id +id like_num_id +id media_animal_surface_view +id media_blur_img +id media_blur_img_above +id media_card_view +id media_dialog_content +id media_img +id media_name +id media_singer +id mirror +id module_media_toast_inner +id music_progress_bar +id next_music +id no_share_back_id +id no_share_medial_image_id +id no_share_medial_singer_name_id +id no_share_medial_song_name_id +id play_pause_music +id repeat +id right_all_time_progress +id shape_id +id share_back_id +id share_id +id share_medial_image_id +id share_medial_singer_name_id +id share_medial_song_name_id +id share_user_back_id +id share_user_heardImage +id share_user_name +id txtViewContent +id txt_cancel +id txt_cancle +id txt_content +id txt_ok +id txt_sub_content +id txt_title +id window_circle_bg +id window_circle_img +id window_circle_img_new +id window_current_time +id window_divide +id window_max_time +id window_music_next +id window_obscuration +id window_play_pause +id window_play_pause_new +id window_progress_bar +id window_scroll_txt +layout module_media_bubble_marker +layout module_media_card_fragment_view +layout module_media_dialog_cutom_layout +layout module_media_music_window_alert_layout +layout module_media_music_window_alert_layout_new +layout module_media_share_fragment_view +layout module_media_share_toast_view +string app_name +string media_qq_share_content_from +string media_qq_share_content_share +string module_media_share_fail +string module_media_share_lan_ren +string module_media_share_le_ting_news +string module_media_share_qq_music +string module_media_share_success +style AppTheme +styleable MediaCircleImageView2 civ_border_width civ_border_color civ_border_overlay civ_fill_color +styleable MediaRoundedImageView riv_corner_radius riv_corner_radius_top_left riv_corner_radius_top_right riv_corner_radius_bottom_left riv_corner_radius_bottom_right riv_border_width riv_border_color riv_mutate_background riv_oval android:scaleType riv_tile_mode riv_tile_mode_x riv_tile_mode_y +styleable PercentageRing radius circleBackground ringColor textColor diff --git a/modules/mogo-module-media/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/modules/mogo-module-media/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt new file mode 100644 index 0000000000..60fa18ec2d --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt @@ -0,0 +1,58 @@ +1 +2 +6 +7 /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml +9 android:targetSdkVersion="19" /> +9-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml +10 +11 +11-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:4:5-81 +11-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:4:22-78 +12 +12-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:5:5-68 +12-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:5:22-65 +13 +13-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:6:5-80 +13-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:6:22-77 +14 +14-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:7:5-67 +14-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:7:22-64 +15 +15-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:8:5-91 +15-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:8:22-88 +16 +16-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:9:5-83 +16-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:9:22-80 +17 +17-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:10:5-77 +17-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:10:22-75 +18 +18-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:11:5-74 +18-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:11:22-71 +19 +20 +20-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:13:5-21:19 +21 +21-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:14:6-20:20 +21-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:14:16-60 +22 +22-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:15:13-19:29 +23 +23-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:16:17-66 +23-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:16:25-63 +24 +24-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:17:17-73 +24-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:17:25-70 +25 +25-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:18:17-77 +25-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:18:25-74 +26 +27 +28 +29 +30 diff --git a/modules/mogo-module-media/build/intermediates/merged_manifests/debug/output.json b/modules/mogo-module-media/build/intermediates/merged_manifests/debug/output.json new file mode 100644 index 0000000000..6fb1402c16 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/merged_manifests/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"2.0.16","enabled":true,"outputFile":"mogo-module-media-debug.aar","fullName":"debug","baseName":"debug"},"path":"../../library_manifest/debug/AndroidManifest.xml","properties":{"packageId":"com.mogo.module.media","split":""}}] \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_search_choice_point.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_search_choice_point.png new file mode 100644 index 0000000000..8ca4538285 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_search_choice_point.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_search_poi_location.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_search_poi_location.png new file mode 100644 index 0000000000..25940d02c6 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_search_poi_location.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_search_unshadow.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_search_unshadow.png new file mode 100644 index 0000000000..cd32e7f85f Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/ic_search_unshadow.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_blur_default_icon.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_blur_default_icon.png new file mode 100644 index 0000000000..30d5891d96 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_blur_default_icon.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_default_music_img.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_default_music_img.png new file mode 100644 index 0000000000..d8de3c1ef3 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_default_music_img.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_full_screen.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_full_screen.png new file mode 100644 index 0000000000..240f148149 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_full_screen.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_have_heart.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_have_heart.png new file mode 100644 index 0000000000..f86d4f3fde Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_have_heart.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_head_default_img.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_head_default_img.png new file mode 100644 index 0000000000..0597a02397 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_head_default_img.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_last_song.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_last_song.png new file mode 100644 index 0000000000..eb4a4099a1 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_last_song.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_next_song.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_next_song.png new file mode 100644 index 0000000000..dcb18e202f Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_next_song.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_no_heart.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_no_heart.png new file mode 100644 index 0000000000..804057b9ca Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_no_heart.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_no_img_default_icon.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_no_img_default_icon.png new file mode 100644 index 0000000000..04f4e5c139 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_no_img_default_icon.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_play.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_play.png new file mode 100644 index 0000000000..1b16f5d635 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_play.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_default_icon.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_default_icon.png new file mode 100644 index 0000000000..a6ab1c9620 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_default_icon.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_default_icon2.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_default_icon2.png new file mode 100644 index 0000000000..2dbb8b6773 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_default_icon2.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_default_rect_icon.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_default_rect_icon.png new file mode 100644 index 0000000000..fc0b6145b1 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_default_rect_icon.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_fail.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_fail.png new file mode 100644 index 0000000000..e15649f868 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_fail.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_normal.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_normal.png new file mode 100644 index 0000000000..2562454404 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_normal.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_success.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_success.png new file mode 100644 index 0000000000..2508848c10 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_share_success.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_suspend.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_suspend.png new file mode 100644 index 0000000000..88df36ee6d Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_suspend.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_window_alert_bg.9.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_window_alert_bg.9.png new file mode 100644 index 0000000000..8e6032a5f1 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_window_alert_bg.9.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_window_pop_pause.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_window_pop_pause.png new file mode 100644 index 0000000000..6d35054284 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_window_pop_pause.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_window_pop_play.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_window_pop_play.png new file mode 100644 index 0000000000..61510381d0 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-ldpi-v4/module_media_window_pop_play.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/ic_search_choice_point.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/ic_search_choice_point.png new file mode 100644 index 0000000000..8ca4538285 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/ic_search_choice_point.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/ic_search_poi_location.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/ic_search_poi_location.png new file mode 100644 index 0000000000..25940d02c6 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/ic_search_poi_location.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/ic_search_unshadow.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/ic_search_unshadow.png new file mode 100644 index 0000000000..cd32e7f85f Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/ic_search_unshadow.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_blur_default_icon.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_blur_default_icon.png new file mode 100644 index 0000000000..30d5891d96 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_blur_default_icon.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_default_music_img.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_default_music_img.png new file mode 100644 index 0000000000..d8de3c1ef3 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_default_music_img.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_full_screen.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_full_screen.png new file mode 100644 index 0000000000..240f148149 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_full_screen.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_have_heart.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_have_heart.png new file mode 100644 index 0000000000..f86d4f3fde Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_have_heart.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_head_default_img.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_head_default_img.png new file mode 100644 index 0000000000..0597a02397 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_head_default_img.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_last_song.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_last_song.png new file mode 100644 index 0000000000..eb4a4099a1 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_last_song.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_next_song.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_next_song.png new file mode 100644 index 0000000000..dcb18e202f Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_next_song.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_no_heart.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_no_heart.png new file mode 100644 index 0000000000..804057b9ca Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_no_heart.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_no_img_default_icon.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_no_img_default_icon.png new file mode 100644 index 0000000000..04f4e5c139 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_no_img_default_icon.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_play.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_play.png new file mode 100644 index 0000000000..1b16f5d635 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_play.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_default_icon.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_default_icon.png new file mode 100644 index 0000000000..a6ab1c9620 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_default_icon.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_default_icon2.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_default_icon2.png new file mode 100644 index 0000000000..2dbb8b6773 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_default_icon2.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_default_rect_icon.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_default_rect_icon.png new file mode 100644 index 0000000000..fc0b6145b1 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_default_rect_icon.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_fail.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_fail.png new file mode 100644 index 0000000000..e15649f868 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_fail.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_normal.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_normal.png new file mode 100644 index 0000000000..2562454404 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_normal.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_success.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_success.png new file mode 100644 index 0000000000..2508848c10 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_share_success.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_suspend.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_suspend.png new file mode 100644 index 0000000000..88df36ee6d Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_suspend.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_window_alert_bg.9.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_window_alert_bg.9.png new file mode 100644 index 0000000000..8e6032a5f1 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_window_alert_bg.9.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_window_pop_pause.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_window_pop_pause.png new file mode 100644 index 0000000000..6d35054284 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_window_pop_pause.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_window_pop_play.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_window_pop_play.png new file mode 100644 index 0000000000..61510381d0 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-mdpi-v4/module_media_window_pop_play.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_search_choice_point.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_search_choice_point.png new file mode 100644 index 0000000000..9f75ac8e88 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_search_choice_point.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_search_poi_location.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_search_poi_location.png new file mode 100644 index 0000000000..484f80efd5 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/ic_search_poi_location.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_blur_default_icon.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_blur_default_icon.png new file mode 100644 index 0000000000..7198c071db Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_blur_default_icon.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_default_music_img.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_default_music_img.png new file mode 100644 index 0000000000..df81e5d06d Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_default_music_img.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_default_music_img_new.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_default_music_img_new.png new file mode 100644 index 0000000000..fcc9015490 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_default_music_img_new.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_full_screen.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_full_screen.png new file mode 100644 index 0000000000..bc14feee50 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_full_screen.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_full_screen_select.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_full_screen_select.png new file mode 100644 index 0000000000..170785863b Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_full_screen_select.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_have_heart.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_have_heart.png new file mode 100644 index 0000000000..d660105c2d Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_have_heart.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_head_default_img.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_head_default_img.png new file mode 100644 index 0000000000..f2e5a03cab Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_head_default_img.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_icon_map_marker_music.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_icon_map_marker_music.png new file mode 100644 index 0000000000..398912c0ea Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_icon_map_marker_music.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_last_song.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_last_song.png new file mode 100644 index 0000000000..f3a0b6f28e Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_last_song.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_last_song_click.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_last_song_click.png new file mode 100644 index 0000000000..80ec16e26f Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_last_song_click.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon1.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon1.png new file mode 100644 index 0000000000..172a5934ae Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon1.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon10.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon10.png new file mode 100644 index 0000000000..dc9589159b Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon10.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon11.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon11.png new file mode 100644 index 0000000000..d913d05154 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon11.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon12.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon12.png new file mode 100644 index 0000000000..35702bc1ab Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon12.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon13.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon13.png new file mode 100644 index 0000000000..94faa2ac0e Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon13.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon14.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon14.png new file mode 100644 index 0000000000..341e9ce7b9 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon14.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon15.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon15.png new file mode 100644 index 0000000000..a271a09b42 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon15.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon16.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon16.png new file mode 100644 index 0000000000..4ff5b09209 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon16.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon17.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon17.png new file mode 100644 index 0000000000..1a96b0115a Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon17.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon18.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon18.png new file mode 100644 index 0000000000..238f47d78c Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon18.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon19.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon19.png new file mode 100644 index 0000000000..b45536a4d1 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon19.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon2.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon2.png new file mode 100644 index 0000000000..775d44e934 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon2.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon20.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon20.png new file mode 100644 index 0000000000..b70e929788 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon20.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon21.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon21.png new file mode 100644 index 0000000000..b17ef58d95 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon21.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon22.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon22.png new file mode 100644 index 0000000000..28a667b077 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon22.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon23.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon23.png new file mode 100644 index 0000000000..8fb205f65c Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon23.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon24.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon24.png new file mode 100644 index 0000000000..57216edd8b Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon24.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon25.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon25.png new file mode 100644 index 0000000000..bf1db703d9 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon25.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon26.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon26.png new file mode 100644 index 0000000000..ff783cb414 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon26.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon27.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon27.png new file mode 100644 index 0000000000..b8c70103a6 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon27.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon28.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon28.png new file mode 100644 index 0000000000..0b53d4e0cc Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon28.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon29.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon29.png new file mode 100644 index 0000000000..35910fc41e Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon29.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon3.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon3.png new file mode 100644 index 0000000000..f2aef2d862 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon3.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon30.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon30.png new file mode 100644 index 0000000000..a8e76f4292 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon30.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon31.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon31.png new file mode 100644 index 0000000000..2cfcb1239b Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon31.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon32.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon32.png new file mode 100644 index 0000000000..8a7e0eab0c Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon32.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon33.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon33.png new file mode 100644 index 0000000000..801817119d Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon33.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon34.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon34.png new file mode 100644 index 0000000000..0775b3aae6 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon34.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon35.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon35.png new file mode 100644 index 0000000000..d78c1ad2fc Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon35.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon36.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon36.png new file mode 100644 index 0000000000..00c647affa Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon36.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon37.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon37.png new file mode 100644 index 0000000000..72d9a66e36 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon37.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon38.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon38.png new file mode 100644 index 0000000000..36525eec91 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon38.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon39.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon39.png new file mode 100644 index 0000000000..1ef84eba37 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon39.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon4.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon4.png new file mode 100644 index 0000000000..8180b14e9a Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon4.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon40.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon40.png new file mode 100644 index 0000000000..14e67a0b5a Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon40.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon41.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon41.png new file mode 100644 index 0000000000..bc95f9f96c Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon41.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon42.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon42.png new file mode 100644 index 0000000000..ed0b6f76ce Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon42.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon43.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon43.png new file mode 100644 index 0000000000..7e36135339 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon43.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon44.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon44.png new file mode 100644 index 0000000000..eb86260b6d Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon44.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon45.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon45.png new file mode 100644 index 0000000000..4d2423aacc Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon45.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon46.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon46.png new file mode 100644 index 0000000000..ddf538ab6e Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon46.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon47.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon47.png new file mode 100644 index 0000000000..04e325d6c0 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon47.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon48.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon48.png new file mode 100644 index 0000000000..6b029f0a17 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon48.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon49.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon49.png new file mode 100644 index 0000000000..e329da91b6 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon49.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon5.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon5.png new file mode 100644 index 0000000000..4fda193c49 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon5.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon50.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon50.png new file mode 100644 index 0000000000..d357202e6d Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon50.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon51.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon51.png new file mode 100644 index 0000000000..d3c5a2d346 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon51.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon52.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon52.png new file mode 100644 index 0000000000..ca7c4220a9 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon52.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon53.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon53.png new file mode 100644 index 0000000000..f3ee370442 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon53.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon54.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon54.png new file mode 100644 index 0000000000..c9a047e05e Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon54.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon55.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon55.png new file mode 100644 index 0000000000..35d3b5a7c4 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon55.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon56.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon56.png new file mode 100644 index 0000000000..44912aa767 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon56.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon57.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon57.png new file mode 100644 index 0000000000..f87729a3fc Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon57.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon58.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon58.png new file mode 100644 index 0000000000..b031cda549 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon58.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon59.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon59.png new file mode 100644 index 0000000000..37241888fc Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon59.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon6.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon6.png new file mode 100644 index 0000000000..74ff4016fc Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon6.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon60.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon60.png new file mode 100644 index 0000000000..b8d636130d Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon60.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon61.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon61.png new file mode 100644 index 0000000000..f37807f227 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon61.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon62.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon62.png new file mode 100644 index 0000000000..8e91f014c8 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon62.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon63.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon63.png new file mode 100644 index 0000000000..eb93bf536c Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon63.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon64.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon64.png new file mode 100644 index 0000000000..5eee54dd42 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon64.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon65.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon65.png new file mode 100644 index 0000000000..757cbb1047 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon65.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon66.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon66.png new file mode 100644 index 0000000000..7ec3c175b6 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon66.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon67.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon67.png new file mode 100644 index 0000000000..89547994eb Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon67.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon68.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon68.png new file mode 100644 index 0000000000..41ba271e26 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon68.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon69.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon69.png new file mode 100644 index 0000000000..2e9f59de0a Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon69.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon7.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon7.png new file mode 100644 index 0000000000..86cfdf616c Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon7.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon70.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon70.png new file mode 100644 index 0000000000..d9cc30556d Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon70.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon71.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon71.png new file mode 100644 index 0000000000..b996b8de6b Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon71.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon72.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon72.png new file mode 100644 index 0000000000..a93bb38648 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon72.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon73.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon73.png new file mode 100644 index 0000000000..a3089c41eb Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon73.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon74.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon74.png new file mode 100644 index 0000000000..a3d862aa22 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon74.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon75.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon75.png new file mode 100644 index 0000000000..18e155874b Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon75.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon8.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon8.png new file mode 100644 index 0000000000..946405b451 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon8.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon9.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon9.png new file mode 100644 index 0000000000..43622cdd9c Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_music_animal_icon9.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_next_song.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_next_song.png new file mode 100644 index 0000000000..a3898c5827 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_next_song.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_next_song_click.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_next_song_click.png new file mode 100644 index 0000000000..6194927beb Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_next_song_click.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_no_heart.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_no_heart.png new file mode 100644 index 0000000000..4c1d667884 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_no_heart.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_no_img_default_icon.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_no_img_default_icon.png new file mode 100644 index 0000000000..d1978ce559 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_no_img_default_icon.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_play.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_play.png new file mode 100644 index 0000000000..d46389d86e Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_play.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_click.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_click.png new file mode 100644 index 0000000000..246b92c4a9 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_click.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_default_icon.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_default_icon.png new file mode 100644 index 0000000000..bfaed8e0f5 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_default_icon.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_default_icon1.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_default_icon1.png new file mode 100644 index 0000000000..38c4a43636 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_default_icon1.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_default_rect_icon.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_default_rect_icon.png new file mode 100644 index 0000000000..51d4b92fe8 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_default_rect_icon.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_fail.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_fail.png new file mode 100644 index 0000000000..b70bfed8c1 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_fail.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_normal.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_normal.png new file mode 100644 index 0000000000..dcc359bf47 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_normal.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_success.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_success.png new file mode 100644 index 0000000000..0005916564 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_share_success.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_suspend.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_suspend.png new file mode 100644 index 0000000000..3dfa5da5c6 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_suspend.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_alert_bg.9.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_alert_bg.9.png new file mode 100644 index 0000000000..96ddb81326 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_alert_bg.9.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_pop_next.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_pop_next.png new file mode 100644 index 0000000000..d23e33246b Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_pop_next.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_pop_pause.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_pop_pause.png new file mode 100644 index 0000000000..a908c23da5 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_pop_pause.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_pop_pause_new.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_pop_pause_new.png new file mode 100644 index 0000000000..86f936f702 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_pop_pause_new.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_pop_play.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_pop_play.png new file mode 100644 index 0000000000..ab6f5e4d7c Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_pop_play.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_pop_play_new.png b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_pop_play_new.png new file mode 100644 index 0000000000..78e5680e91 Binary files /dev/null and b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable-xhdpi-v4/module_media_window_pop_play_new.png differ diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_bottom_revert_trianle_bg.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_bottom_revert_trianle_bg.xml new file mode 100644 index 0000000000..19bc1f9d13 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_bottom_revert_trianle_bg.xml @@ -0,0 +1,18 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_card_back.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_card_back.xml new file mode 100644 index 0000000000..71b9ee964e --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_card_back.xml @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_card_tran_img_bg.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_card_tran_img_bg.xml new file mode 100644 index 0000000000..fc072d2f97 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_card_tran_img_bg.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_circle_bg.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_circle_bg.xml new file mode 100644 index 0000000000..4f0286a260 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_circle_bg.xml @@ -0,0 +1,9 @@ + + + + + diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_click_poi_bg_top.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_click_poi_bg_top.xml new file mode 100644 index 0000000000..df19595e70 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_click_poi_bg_top.xml @@ -0,0 +1,15 @@ + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_demo_selector.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_demo_selector.xml new file mode 100644 index 0000000000..d17daeaa24 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_demo_selector.xml @@ -0,0 +1,12 @@ + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_misic_progress_bar.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_misic_progress_bar.xml new file mode 100644 index 0000000000..eb04bda3a3 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_misic_progress_bar.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_next_bg_selector.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_next_bg_selector.xml new file mode 100644 index 0000000000..3141e1a44a --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_next_bg_selector.xml @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_play_bg_selector.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_play_bg_selector.xml new file mode 100644 index 0000000000..eafad48464 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_play_bg_selector.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_progress_bg.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_progress_bg.xml new file mode 100644 index 0000000000..11e0a400c7 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_progress_bg.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_progress_pop_bg.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_progress_pop_bg.xml new file mode 100644 index 0000000000..a8e74c1033 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_progress_pop_bg.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_share_dialog_bg.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_share_dialog_bg.xml new file mode 100644 index 0000000000..222dea52a8 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_share_dialog_bg.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_share_dialog_left_btn_bg.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_share_dialog_left_btn_bg.xml new file mode 100644 index 0000000000..fad92a439a --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_share_dialog_left_btn_bg.xml @@ -0,0 +1,12 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_share_dialog_right_btn_bg.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_share_dialog_right_btn_bg.xml new file mode 100644 index 0000000000..111ff2af99 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_share_dialog_right_btn_bg.xml @@ -0,0 +1,13 @@ + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_share_dialog_title_bg.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_share_dialog_title_bg.xml new file mode 100644 index 0000000000..9037314b49 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_share_dialog_title_bg.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_share_toast_bg.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_share_toast_bg.xml new file mode 100644 index 0000000000..c3ade0a821 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_share_toast_bg.xml @@ -0,0 +1,9 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_user_share_music_back.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_user_share_music_back.xml new file mode 100644 index 0000000000..42bde49ed3 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_user_share_music_back.xml @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_window_progress_bar.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_window_progress_bar.xml new file mode 100644 index 0000000000..a62ffcda8f --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/drawable/module_media_window_progress_bar.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_bubble_marker.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_bubble_marker.xml new file mode 100644 index 0000000000..0fc5b67336 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_bubble_marker.xml @@ -0,0 +1,23 @@ + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_card_fragment_view.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_card_fragment_view.xml new file mode 100644 index 0000000000..2223bb6dbf --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_card_fragment_view.xml @@ -0,0 +1,375 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_dialog_cutom_layout.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_dialog_cutom_layout.xml new file mode 100644 index 0000000000..e6aaae273c --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_dialog_cutom_layout.xml @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_music_window_alert_layout.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_music_window_alert_layout.xml new file mode 100644 index 0000000000..7a0b082d3b --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_music_window_alert_layout.xml @@ -0,0 +1,112 @@ + + + + + + + + + + + + + + + + + + + diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_music_window_alert_layout_new.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_music_window_alert_layout_new.xml new file mode 100644 index 0000000000..9002881140 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_music_window_alert_layout_new.xml @@ -0,0 +1,67 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_share_fragment_view.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_share_fragment_view.xml new file mode 100644 index 0000000000..6389fdef75 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_share_fragment_view.xml @@ -0,0 +1,122 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_share_toast_view.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_share_toast_view.xml new file mode 100644 index 0000000000..73fc49ae04 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/layout/module_media_share_toast_view.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/values-xhdpi-v4/values-xhdpi-v4.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/values-xhdpi-v4/values-xhdpi-v4.xml new file mode 100644 index 0000000000..df8584292d --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/values-xhdpi-v4/values-xhdpi-v4.xml @@ -0,0 +1,130 @@ + + + #D81B60 + #008577 + #00574B + 660px + 20px + 660px + 15px + 2px + 78px + 53px + 107px + 660px + 348px + 226px + 226px + 348px + 2px + 28px + 4px + 36px + 64px + 12px + 6px + 11px + 2px + 8px + 6px + 6px + 21px + 4px + 22px + 20px + 22px + 22px + 180px + 660px + 60px + 750px + 120px + 270px + 872px + 40px + 1067px + 1760px + 80px + 101px + 56px + 40px + 140px + 116px + 112px + 30px + 60px + 8px + 16px + 16px + 115px + 24px + 14px + 35px + 230px + 600px + 116px + 116px + 20px + 130px + 40px + 96px + 60px + 34px + 525px + 6px + 136px + 20px + 136px + 34px + 61px + 55px + 40px + 30px + 4px + 790px + 23px + 67.5px + 23px + 10px + 67.5px + 126px + 56px + 56px + 35px + 116px + 3px + 116px + 22px + 28px + 37.5px + 67.5px + 145px + 30px + 20px + 23px + 90px + 30px + 90px + 16px + 68px + 23px + 68px + 21px + 24px + 26px + 30px + 20px + 350px + 120px + 20px + 36px + 500px + 30px + mogo-module-media + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/packaged_res/debug/values/values.xml b/modules/mogo-module-media/build/intermediates/packaged_res/debug/values/values.xml new file mode 100644 index 0000000000..4bb7fd5d3f --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/packaged_res/debug/values/values.xml @@ -0,0 +1,177 @@ + + + #444E6E + #f6ffffff + #ffffff + #1Affffff + #7affffff + #fff + 352px + 10.67px + 352px + 8px + 1px + 44px + 28px + 62px + 352px + 175px + 114px + 114px + 175px + 2px + 15px + 4px + 20px + 35px + 6.4px + 3.2px + 6px + 1px + 4px + 3px + 4px + 11px + 12px + 10.5px + 11px + 11.5px + 96px + 352px + 32px + 400px + 80px + 150px + 467px + 80px + 573px + 930px + 44px + 60px + 30px + 21px + 82px + 116px + 60px + 18px + 60px + 4px + 8px + 7px + 14px + 10px + 18px + 123px + 338px + 116px + 62px + 11.5px + 68px + 22px + 51px + 32px + 18px + 280px + 3.2px + 72.5px + 10.7px + 72.5px + 10px + 32.5px + 28px + 22px + 16px + 2px + 421px + 12px + 36px + 12px + 5px + 36px + 67.2px + 30px + 30px + 18px + 62px + 3px + 62px + 12px + 15px + 20px + 36px + 78px + 16px + 10.6px + 12px + 48px + 16px + 48px + 8px + 36px + 12px + 36px + 11px + 12px + 14px + 16px + 10px + 187px + 64px + 11px + 18px + 267px + 16px + mogo-module-media + 来自 + 的分享 + 分享失败 + 是否确认分享此书? + 是否确认分享此新闻? + 是否确认分享此歌曲? + 分享成功 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-media/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt b/modules/mogo-module-media/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt new file mode 100644 index 0000000000..5b66a66593 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt @@ -0,0 +1,3580 @@ +com.mogo.module.media +anim abc_fade_in +anim abc_fade_out +anim abc_grow_fade_in_from_bottom +anim abc_popup_enter +anim abc_popup_exit +anim abc_shrink_fade_out_from_bottom +anim abc_slide_in_bottom +anim abc_slide_in_top +anim abc_slide_out_bottom +anim abc_slide_out_top +anim abc_tooltip_enter +anim abc_tooltip_exit +anim btn_checkbox_to_checked_box_inner_merged_animation +anim btn_checkbox_to_checked_box_outer_merged_animation +anim btn_checkbox_to_checked_icon_null_animation +anim btn_checkbox_to_unchecked_box_inner_merged_animation +anim btn_checkbox_to_unchecked_check_path_merged_animation +anim btn_checkbox_to_unchecked_icon_null_animation +anim btn_radio_to_off_mtrl_dot_group_animation +anim btn_radio_to_off_mtrl_ring_outer_animation +anim btn_radio_to_off_mtrl_ring_outer_path_animation +anim btn_radio_to_on_mtrl_dot_group_animation +anim btn_radio_to_on_mtrl_ring_outer_animation +anim btn_radio_to_on_mtrl_ring_outer_path_animation +attr OtherHeartImg +attr actionBarDivider +attr actionBarItemBackground +attr actionBarPopupTheme +attr actionBarSize +attr actionBarSplitStyle +attr actionBarStyle +attr actionBarTabBarStyle +attr actionBarTabStyle +attr actionBarTabTextStyle +attr actionBarTheme +attr actionBarWidgetTheme +attr actionButtonStyle +attr actionDropDownStyle +attr actionLayout +attr actionMenuTextAppearance +attr actionMenuTextColor +attr actionModeBackground +attr actionModeCloseButtonStyle +attr actionModeCloseDrawable +attr actionModeCopyDrawable +attr actionModeCutDrawable +attr actionModeFindDrawable +attr actionModePasteDrawable +attr actionModePopupWindowStyle +attr actionModeSelectAllDrawable +attr actionModeShareDrawable +attr actionModeSplitBackground +attr actionModeStyle +attr actionModeWebSearchDrawable +attr actionOverflowButtonStyle +attr actionOverflowMenuStyle +attr actionProviderClass +attr actionViewClass +attr activityChooserViewStyle +attr actualImageResource +attr actualImageScaleType +attr actualImageUri +attr alertDialogButtonGroupStyle +attr alertDialogCenterButtons +attr alertDialogStyle +attr alertDialogTheme +attr allowStacking +attr alpha +attr alphabeticModifiers +attr arrowHeadLength +attr arrowShaftLength +attr autoCompleteTextViewStyle +attr autoSizeMaxTextSize +attr autoSizeMinTextSize +attr autoSizePresetSizes +attr autoSizeStepGranularity +attr autoSizeTextType +attr background +attr backgroundImage +attr backgroundSplit +attr backgroundStacked +attr backgroundTint +attr backgroundTintMode +attr barLength +attr barrierAllowsGoneWidgets +attr barrierDirection +attr borderlessButtonStyle +attr btmText +attr btmTextSize +attr buttonBarButtonStyle +attr buttonBarNegativeButtonStyle +attr buttonBarNeutralButtonStyle +attr buttonBarPositiveButtonStyle +attr buttonBarStyle +attr buttonCompat +attr buttonGravity +attr buttonIconDimen +attr buttonPanelSideLayout +attr buttonStyle +attr buttonStyleSmall +attr buttonTint +attr buttonTintMode +attr chainUseRtl +attr checkboxStyle +attr checkedTextViewStyle +attr circleBackground +attr civ_border_color +attr civ_border_overlay +attr civ_border_width +attr civ_fill_color +attr clickable +attr closeIcon +attr closeItemLayout +attr collapseContentDescription +attr collapseIcon +attr color +attr colorAccent +attr colorBackgroundFloating +attr colorButtonNormal +attr colorControlActivated +attr colorControlHighlight +attr colorControlNormal +attr colorError +attr colorPrimary +attr colorPrimaryDark +attr colorSwitchThumbNormal +attr commitIcon +attr constraintSet +attr constraint_referenced_ids +attr content +attr contentDescription +attr contentInsetEnd +attr contentInsetEndWithActions +attr contentInsetLeft +attr contentInsetRight +attr contentInsetStart +attr contentInsetStartWithNavigation +attr controlBackground +attr coordinatorLayoutStyle +attr customNavigationLayout +attr defaultQueryHint +attr dialogCornerRadius +attr dialogPreferredPadding +attr dialogTheme +attr displayOptions +attr divider +attr dividerHorizontal +attr dividerPadding +attr dividerVertical +attr drawableBottomCompat +attr drawableEndCompat +attr drawableLeftCompat +attr drawableRightCompat +attr drawableSize +attr drawableStartCompat +attr drawableTint +attr drawableTintMode +attr drawableTopCompat +attr drawerArrowStyle +attr dropDownListViewStyle +attr dropdownListPreferredItemHeight +attr dsv_orientation +attr editTextBackground +attr editTextColor +attr editTextStyle +attr elenmentCount +attr elenmentEmpty +attr elenmentFill +attr elenmentHarf +attr elenmentHeight +attr elenmentPadding +attr elenmentStep +attr elenmentWidth +attr elevation +attr emptyVisibility +attr expandActivityOverflowButtonDrawable +attr fadeDuration +attr failureImage +attr failureImageScaleType +attr fastScrollEnabled +attr fastScrollHorizontalThumbDrawable +attr fastScrollHorizontalTrackDrawable +attr fastScrollVerticalThumbDrawable +attr fastScrollVerticalTrackDrawable +attr firstBaselineToTopHeight +attr font +attr fontFamily +attr fontProviderAuthority +attr fontProviderCerts +attr fontProviderFetchStrategy +attr fontProviderFetchTimeout +attr fontProviderPackage +attr fontProviderQuery +attr fontStyle +attr fontVariationSettings +attr fontWeight +attr gapBetweenBars +attr goIcon +attr height +attr hideOnContentScroll +attr homeAsUpIndicator +attr homeLayout +attr icon +attr iconTint +attr iconTintMode +attr iconifiedByDefault +attr imageButtonStyle +attr indeterminateProgressStyle +attr initialActivityCount +attr isLightTheme +attr itemPadding +attr keylines +attr lastBaselineToBottomHeight +attr layout +attr layoutManager +attr layout_anchor +attr layout_anchorGravity +attr layout_behavior +attr layout_constrainedHeight +attr layout_constrainedWidth +attr layout_constraintBaseline_creator +attr layout_constraintBaseline_toBaselineOf +attr layout_constraintBottom_creator +attr layout_constraintBottom_toBottomOf +attr layout_constraintBottom_toTopOf +attr layout_constraintCircle +attr layout_constraintCircleAngle +attr layout_constraintCircleRadius +attr layout_constraintDimensionRatio +attr layout_constraintEnd_toEndOf +attr layout_constraintEnd_toStartOf +attr layout_constraintGuide_begin +attr layout_constraintGuide_end +attr layout_constraintGuide_percent +attr layout_constraintHeight_default +attr layout_constraintHeight_max +attr layout_constraintHeight_min +attr layout_constraintHeight_percent +attr layout_constraintHorizontal_bias +attr layout_constraintHorizontal_chainStyle +attr layout_constraintHorizontal_weight +attr layout_constraintLeft_creator +attr layout_constraintLeft_toLeftOf +attr layout_constraintLeft_toRightOf +attr layout_constraintRight_creator +attr layout_constraintRight_toLeftOf +attr layout_constraintRight_toRightOf +attr layout_constraintStart_toEndOf +attr layout_constraintStart_toStartOf +attr layout_constraintTop_creator +attr layout_constraintTop_toBottomOf +attr layout_constraintTop_toTopOf +attr layout_constraintVertical_bias +attr layout_constraintVertical_chainStyle +attr layout_constraintVertical_weight +attr layout_constraintWidth_default +attr layout_constraintWidth_max +attr layout_constraintWidth_min +attr layout_constraintWidth_percent +attr layout_dodgeInsetEdges +attr layout_editor_absoluteX +attr layout_editor_absoluteY +attr layout_goneMarginBottom +attr layout_goneMarginEnd +attr layout_goneMarginLeft +attr layout_goneMarginRight +attr layout_goneMarginStart +attr layout_goneMarginTop +attr layout_insetEdge +attr layout_keyline +attr layout_optimizationLevel +attr lineHeight +attr listChoiceBackgroundIndicator +attr listChoiceIndicatorMultipleAnimated +attr listChoiceIndicatorSingleAnimated +attr listDividerAlertDialog +attr listItemLayout +attr listLayout +attr listMenuViewStyle +attr listPopupWindowStyle +attr listPreferredItemHeight +attr listPreferredItemHeightLarge +attr listPreferredItemHeightSmall +attr listPreferredItemPaddingEnd +attr listPreferredItemPaddingLeft +attr listPreferredItemPaddingRight +attr listPreferredItemPaddingStart +attr logo +attr logoDescription +attr maskColor +attr maxButtonHeight +attr measureWithLargestChild +attr menu +attr miv_blurRadius +attr miv_borderColor +attr miv_bottomLeftRadius +attr miv_bottomRightRadius +attr miv_failureHolder +attr miv_isBlur +attr miv_overlayImageId +attr miv_placeHolder +attr miv_radius +attr miv_shape +attr miv_shapeBorderWidth +attr miv_topLeftRadius +attr miv_topRightRadius +attr multiChoiceItemLayout +attr navigationContentDescription +attr navigationIcon +attr navigationMode +attr numericModifiers +attr overlapAnchor +attr overlayImage +attr paddingBottomNoButtons +attr paddingEnd +attr paddingStart +attr paddingTopNoTitle +attr panelBackground +attr panelMenuListTheme +attr panelMenuListWidth +attr placeholderImage +attr placeholderImageScaleType +attr popupMenuStyle +attr popupTheme +attr popupWindowStyle +attr preserveIconSpacing +attr pressedStateOverlayImage +attr progressBarAutoRotateInterval +attr progressBarImage +attr progressBarImageScaleType +attr progressBarPadding +attr progressBarStyle +attr queryBackground +attr queryHint +attr radioButtonStyle +attr radius +attr ratingBarStyle +attr ratingBarStyleIndicator +attr ratingBarStyleSmall +attr recyclerViewStyle +attr retryImage +attr retryImageScaleType +attr reverseLayout +attr ringColor +attr riv_border_color +attr riv_border_width +attr riv_corner_radius +attr riv_corner_radius_bottom_left +attr riv_corner_radius_bottom_right +attr riv_corner_radius_top_left +attr riv_corner_radius_top_right +attr riv_mutate_background +attr riv_oval +attr riv_tile_mode +attr riv_tile_mode_x +attr riv_tile_mode_y +attr roundAsCircle +attr roundBottomEnd +attr roundBottomLeft +attr roundBottomRight +attr roundBottomStart +attr roundLayoutRadius +attr roundTopEnd +attr roundTopLeft +attr roundTopRight +attr roundTopStart +attr roundWithOverlayColor +attr roundedCornerRadius +attr roundingBorderColor +attr roundingBorderPadding +attr roundingBorderWidth +attr scanline +attr searchHintIcon +attr searchIcon +attr searchViewStyle +attr seekBarStyle +attr selectableItemBackground +attr selectableItemBackgroundBorderless +attr showAsAction +attr showDividers +attr showRectLine +attr showText +attr showTitle +attr singleChoiceItemLayout +attr spanCount +attr spinBars +attr spinnerDropDownItemStyle +attr spinnerStyle +attr splitTrack +attr srcCompat +attr stackFromEnd +attr state_above_anchor +attr statusBarBackground +attr stepSize +attr subMenuArrow +attr submitBackground +attr subtitle +attr subtitleTextAppearance +attr subtitleTextColor +attr subtitleTextStyle +attr suggestionRowLayout +attr switchMinWidth +attr switchPadding +attr switchStyle +attr switchTextAppearance +attr textAllCaps +attr textAppearanceLargePopupMenu +attr textAppearanceListItem +attr textAppearanceListItemSecondary +attr textAppearanceListItemSmall +attr textAppearancePopupMenuHeader +attr textAppearanceSearchResultSubtitle +attr textAppearanceSearchResultTitle +attr textAppearanceSmallPopupMenu +attr textColor +attr textColorAlertDialogListItem +attr textColorSearchUrl +attr textLocale +attr theme +attr thickness +attr thumbTextPadding +attr thumbTint +attr thumbTintMode +attr tickMark +attr tickMarkTint +attr tickMarkTintMode +attr tint +attr tintMode +attr title +attr titleMargin +attr titleMarginBottom +attr titleMarginEnd +attr titleMarginStart +attr titleMarginTop +attr titleMargins +attr titleTextAppearance +attr titleTextColor +attr titleTextStyle +attr toolbarNavigationButtonStyle +attr toolbarStyle +attr tooltipForegroundColor +attr tooltipFrameBackground +attr tooltipText +attr topText +attr topTextSize +attr track +attr trackTint +attr trackTintMode +attr triAngleColor +attr triAngleLength +attr triAngleWidth +attr ttcIndex +attr viewAspectRatio +attr viewInflaterClass +attr voiceIcon +attr windowActionBar +attr windowActionBarOverlay +attr windowActionModeOverlay +attr windowFixedHeightMajor +attr windowFixedHeightMinor +attr windowFixedWidthMajor +attr windowFixedWidthMinor +attr windowMinWidthMajor +attr windowMinWidthMinor +attr windowNoTitle +bool abc_action_bar_embed_tabs +bool abc_allow_stacked_button_bar +bool abc_config_actionMenuItemAllCaps +bool abc_config_showMenuShortcutsWhenKeyboardPresent +color abc_background_cache_hint_selector_material_dark +color abc_background_cache_hint_selector_material_light +color abc_btn_colored_borderless_text_material +color abc_btn_colored_text_material +color abc_color_highlight_material +color abc_hint_foreground_material_dark +color abc_hint_foreground_material_light +color abc_input_method_navigation_guard +color abc_primary_text_disable_only_material_dark +color abc_primary_text_disable_only_material_light +color abc_primary_text_material_dark +color abc_primary_text_material_light +color abc_search_url_text +color abc_search_url_text_normal +color abc_search_url_text_pressed +color abc_search_url_text_selected +color abc_secondary_text_material_dark +color abc_secondary_text_material_light +color abc_tint_btn_checkable +color abc_tint_default +color abc_tint_edittext +color abc_tint_seek_thumb +color abc_tint_spinner +color abc_tint_switch_track +color accent_material_dark +color accent_material_light +color adas_dispatch_remind_background +color adas_dispatch_remind_cancel +color adas_dispatch_remind_count_down_bg +color adas_dispatch_remind_count_down_txt +color adas_dispatch_remind_line +color adas_dispatch_remind_text_loc +color androidx_core_ripple_material_light +color androidx_core_secondary_text_default_material_light +color background_floating_material_dark +color background_floating_material_light +color background_material_dark +color background_material_light +color blue +color bright_foreground_disabled_material_dark +color bright_foreground_disabled_material_light +color bright_foreground_inverse_material_dark +color bright_foreground_inverse_material_light +color bright_foreground_material_dark +color bright_foreground_material_light +color button_material_dark +color button_material_light +color colorAccent +color colorPrimary +color colorPrimaryDark +color color_pad_bg +color dim_foreground_disabled_material_dark +color dim_foreground_disabled_material_light +color dim_foreground_material_dark +color dim_foreground_material_light +color error_color_material +color error_color_material_dark +color error_color_material_light +color foreground_material_dark +color foreground_material_light +color green +color highlighted_text_material_dark +color highlighted_text_material_light +color material_blue_grey_800 +color material_blue_grey_900 +color material_blue_grey_950 +color material_deep_teal_200 +color material_deep_teal_500 +color material_grey_100 +color material_grey_300 +color material_grey_50 +color material_grey_600 +color material_grey_800 +color material_grey_850 +color material_grey_900 +color module_authorize_affirm_text +color module_authorize_color +color module_authorize_loading_text +color module_authorize_text +color module_commons_FFF_333 +color module_commons_dlg_bkg +color module_commons_wm_dialog_text_textColor +color module_service_info_window_content_textColor +color module_services_dispatch_affirm_bg +color module_services_dispatch_bg +color module_services_dispatch_cars_background +color module_services_dispatch_cars_cancel +color module_services_dispatch_cars_count_down_bg +color module_services_dispatch_cars_count_down_txt +color module_services_dispatch_cars_line +color module_services_dispatch_cars_text_loc +color module_services_empty_tip_textColor +color module_services_error_textColor +color module_services_id_panel_item_avatar_border_color +color module_services_load_strategy_textColor +color module_services_online_car_panel_title_textColor +color module_services_panel_item_detail_textColor +color module_services_panel_item_distance_textColor +color module_services_panel_item_nickname_textColor +color modules_commons_toast_text_color +color modules_media_music_bg_color +color modules_media_music_circle_color +color modules_media_music_circle_color_end +color modules_media_music_circle_color_start +color modules_media_music_time_text_color +color modules_media_music_title_text_color +color notification_action_color_filter +color notification_icon_bg_color +color notification_material_background_media_default_color +color possible_result_points +color primary_dark_material_dark +color primary_dark_material_light +color primary_material_dark +color primary_material_light +color primary_text_default_material_dark +color primary_text_default_material_light +color primary_text_disabled_material_dark +color primary_text_disabled_material_light +color result_points +color result_view +color ripple_material_dark +color ripple_material_light +color secondary_text_default_material_dark +color secondary_text_default_material_light +color secondary_text_disabled_material_dark +color secondary_text_disabled_material_light +color switch_thumb_disabled_material_dark +color switch_thumb_disabled_material_light +color switch_thumb_material_dark +color switch_thumb_material_light +color switch_thumb_normal_material_dark +color switch_thumb_normal_material_light +color tooltip_background_dark +color tooltip_background_light +color transparent +color v2x_FFF_666 +color viewfinder_laser +color viewfinder_mask +color white +dimen abc_action_bar_content_inset_material +dimen abc_action_bar_content_inset_with_nav +dimen abc_action_bar_default_height_material +dimen abc_action_bar_default_padding_end_material +dimen abc_action_bar_default_padding_start_material +dimen abc_action_bar_elevation_material +dimen abc_action_bar_icon_vertical_padding_material +dimen abc_action_bar_overflow_padding_end_material +dimen abc_action_bar_overflow_padding_start_material +dimen abc_action_bar_progress_bar_size +dimen abc_action_bar_stacked_max_height +dimen abc_action_bar_stacked_tab_max_width +dimen abc_action_bar_subtitle_bottom_margin_material +dimen abc_action_bar_subtitle_top_margin_material +dimen abc_action_button_min_height_material +dimen abc_action_button_min_width_material +dimen abc_action_button_min_width_overflow_material +dimen abc_alert_dialog_button_bar_height +dimen abc_alert_dialog_button_dimen +dimen abc_button_inset_horizontal_material +dimen abc_button_inset_vertical_material +dimen abc_button_padding_horizontal_material +dimen abc_button_padding_vertical_material +dimen abc_cascading_menus_min_smallest_width +dimen abc_config_prefDialogWidth +dimen abc_control_corner_material +dimen abc_control_inset_material +dimen abc_control_padding_material +dimen abc_dialog_corner_radius_material +dimen abc_dialog_fixed_height_major +dimen abc_dialog_fixed_height_minor +dimen abc_dialog_fixed_width_major +dimen abc_dialog_fixed_width_minor +dimen abc_dialog_list_padding_bottom_no_buttons +dimen abc_dialog_list_padding_top_no_title +dimen abc_dialog_min_width_major +dimen abc_dialog_min_width_minor +dimen abc_dialog_padding_material +dimen abc_dialog_padding_top_material +dimen abc_dialog_title_divider_material +dimen abc_disabled_alpha_material_dark +dimen abc_disabled_alpha_material_light +dimen abc_dropdownitem_icon_width +dimen abc_dropdownitem_text_padding_left +dimen abc_dropdownitem_text_padding_right +dimen abc_edit_text_inset_bottom_material +dimen abc_edit_text_inset_horizontal_material +dimen abc_edit_text_inset_top_material +dimen abc_floating_window_z +dimen abc_list_item_height_large_material +dimen abc_list_item_height_material +dimen abc_list_item_height_small_material +dimen abc_list_item_padding_horizontal_material +dimen abc_panel_menu_list_width +dimen abc_progress_bar_height_material +dimen abc_search_view_preferred_height +dimen abc_search_view_preferred_width +dimen abc_seekbar_track_background_height_material +dimen abc_seekbar_track_progress_height_material +dimen abc_select_dialog_padding_start_material +dimen abc_switch_padding +dimen abc_text_size_body_1_material +dimen abc_text_size_body_2_material +dimen abc_text_size_button_material +dimen abc_text_size_caption_material +dimen abc_text_size_display_1_material +dimen abc_text_size_display_2_material +dimen abc_text_size_display_3_material +dimen abc_text_size_display_4_material +dimen abc_text_size_headline_material +dimen abc_text_size_large_material +dimen abc_text_size_medium_material +dimen abc_text_size_menu_header_material +dimen abc_text_size_menu_material +dimen abc_text_size_small_material +dimen abc_text_size_subhead_material +dimen abc_text_size_subtitle_material_toolbar +dimen abc_text_size_title_material +dimen abc_text_size_title_material_toolbar +dimen adas_dispatch_remind_dialog_btn_width +dimen adas_dispatch_remind_dialog_content_margin_top +dimen adas_dispatch_remind_dialog_content_size +dimen adas_dispatch_remind_dialog_corner +dimen adas_dispatch_remind_dialog_height +dimen adas_dispatch_remind_dialog_line_margin_bottom +dimen adas_dispatch_remind_dialog_loc_margin_top +dimen adas_dispatch_remind_dialog_loc_size +dimen adas_dispatch_remind_dialog_timer_margin +dimen adas_dispatch_remind_dialog_timer_size +dimen adas_dispatch_remind_dialog_timer_txt_size +dimen adas_dispatch_remind_dialog_title_margin_top +dimen adas_dispatch_remind_dialog_title_size +dimen adas_dispatch_remind_dialog_width +dimen compat_button_inset_horizontal_material +dimen compat_button_inset_vertical_material +dimen compat_button_padding_horizontal_material +dimen compat_button_padding_vertical_material +dimen compat_control_corner_material +dimen compat_notification_large_icon_max_height +dimen compat_notification_large_icon_max_width +dimen disabled_alpha_material_dark +dimen disabled_alpha_material_light +dimen dp_0 +dimen dp_0_1 +dimen dp_0_5 +dimen dp_1 +dimen dp_10 +dimen dp_100 +dimen dp_1000 +dimen dp_101 +dimen dp_102 +dimen dp_103 +dimen dp_104 +dimen dp_104_5 +dimen dp_105 +dimen dp_106 +dimen dp_107 +dimen dp_108 +dimen dp_109 +dimen dp_11 +dimen dp_110 +dimen dp_111 +dimen dp_112 +dimen dp_113 +dimen dp_114 +dimen dp_115 +dimen dp_116 +dimen dp_117 +dimen dp_118 +dimen dp_119 +dimen dp_12 +dimen dp_120 +dimen dp_121 +dimen dp_122 +dimen dp_123 +dimen dp_124 +dimen dp_125 +dimen dp_126 +dimen dp_127 +dimen dp_128 +dimen dp_129 +dimen dp_13 +dimen dp_130 +dimen dp_1300 +dimen dp_131 +dimen dp_132 +dimen dp_133 +dimen dp_134 +dimen dp_134_5 +dimen dp_135 +dimen dp_136 +dimen dp_137 +dimen dp_138 +dimen dp_139 +dimen dp_14 +dimen dp_140 +dimen dp_141 +dimen dp_142 +dimen dp_143 +dimen dp_144 +dimen dp_145 +dimen dp_146 +dimen dp_147 +dimen dp_148 +dimen dp_149 +dimen dp_15 +dimen dp_150 +dimen dp_151 +dimen dp_152 +dimen dp_153 +dimen dp_154 +dimen dp_155 +dimen dp_156 +dimen dp_157 +dimen dp_158 +dimen dp_159 +dimen dp_16 +dimen dp_160 +dimen dp_161 +dimen dp_162 +dimen dp_163 +dimen dp_164 +dimen dp_165 +dimen dp_166 +dimen dp_167 +dimen dp_168 +dimen dp_169 +dimen dp_17 +dimen dp_170 +dimen dp_171 +dimen dp_172 +dimen dp_173 +dimen dp_174 +dimen dp_175 +dimen dp_176 +dimen dp_177 +dimen dp_178 +dimen dp_179 +dimen dp_18 +dimen dp_180 +dimen dp_181 +dimen dp_182 +dimen dp_183 +dimen dp_184 +dimen dp_185 +dimen dp_186 +dimen dp_187 +dimen dp_188 +dimen dp_189 +dimen dp_19 +dimen dp_190 +dimen dp_191 +dimen dp_191_25 +dimen dp_192 +dimen dp_1920 +dimen dp_193 +dimen dp_194 +dimen dp_195 +dimen dp_196 +dimen dp_197 +dimen dp_198 +dimen dp_199 +dimen dp_1_5 +dimen dp_2 +dimen dp_20 +dimen dp_200 +dimen dp_201 +dimen dp_202 +dimen dp_203 +dimen dp_204 +dimen dp_205 +dimen dp_206 +dimen dp_207 +dimen dp_208 +dimen dp_209 +dimen dp_21 +dimen dp_210 +dimen dp_211 +dimen dp_212 +dimen dp_213 +dimen dp_214 +dimen dp_215 +dimen dp_216 +dimen dp_217 +dimen dp_218 +dimen dp_219 +dimen dp_22 +dimen dp_220 +dimen dp_221 +dimen dp_222 +dimen dp_223 +dimen dp_224 +dimen dp_225 +dimen dp_226 +dimen dp_227 +dimen dp_228 +dimen dp_229 +dimen dp_23 +dimen dp_230 +dimen dp_231 +dimen dp_232 +dimen dp_233 +dimen dp_234 +dimen dp_235 +dimen dp_236 +dimen dp_237 +dimen dp_238 +dimen dp_239 +dimen dp_24 +dimen dp_240 +dimen dp_241 +dimen dp_242 +dimen dp_243 +dimen dp_244 +dimen dp_245 +dimen dp_246 +dimen dp_247 +dimen dp_248 +dimen dp_249 +dimen dp_25 +dimen dp_250 +dimen dp_251 +dimen dp_252 +dimen dp_253 +dimen dp_254 +dimen dp_255 +dimen dp_256 +dimen dp_257 +dimen dp_258 +dimen dp_259 +dimen dp_26 +dimen dp_260 +dimen dp_261 +dimen dp_262 +dimen dp_263 +dimen dp_264 +dimen dp_265 +dimen dp_266 +dimen dp_267 +dimen dp_268 +dimen dp_269 +dimen dp_27 +dimen dp_270 +dimen dp_271 +dimen dp_272 +dimen dp_273 +dimen dp_274 +dimen dp_275 +dimen dp_276 +dimen dp_277 +dimen dp_278 +dimen dp_279 +dimen dp_28 +dimen dp_280 +dimen dp_281 +dimen dp_282 +dimen dp_283 +dimen dp_284 +dimen dp_285 +dimen dp_286 +dimen dp_287 +dimen dp_288 +dimen dp_289 +dimen dp_29 +dimen dp_290 +dimen dp_291 +dimen dp_292 +dimen dp_293 +dimen dp_294 +dimen dp_295 +dimen dp_296 +dimen dp_297 +dimen dp_298 +dimen dp_299 +dimen dp_2_5 +dimen dp_3 +dimen dp_30 +dimen dp_300 +dimen dp_301 +dimen dp_302 +dimen dp_303 +dimen dp_304 +dimen dp_305 +dimen dp_306 +dimen dp_307 +dimen dp_308 +dimen dp_309 +dimen dp_31 +dimen dp_310 +dimen dp_311 +dimen dp_312 +dimen dp_313 +dimen dp_314 +dimen dp_315 +dimen dp_316 +dimen dp_317 +dimen dp_318 +dimen dp_319 +dimen dp_32 +dimen dp_320 +dimen dp_321 +dimen dp_322 +dimen dp_323 +dimen dp_324 +dimen dp_325 +dimen dp_326 +dimen dp_327 +dimen dp_328 +dimen dp_329 +dimen dp_33 +dimen dp_330 +dimen dp_331 +dimen dp_332 +dimen dp_333 +dimen dp_334 +dimen dp_335 +dimen dp_336 +dimen dp_337 +dimen dp_338 +dimen dp_339 +dimen dp_34 +dimen dp_340 +dimen dp_341 +dimen dp_342 +dimen dp_343 +dimen dp_344 +dimen dp_345 +dimen dp_346 +dimen dp_347 +dimen dp_348 +dimen dp_349 +dimen dp_35 +dimen dp_350 +dimen dp_351 +dimen dp_352 +dimen dp_353 +dimen dp_354 +dimen dp_355 +dimen dp_356 +dimen dp_357 +dimen dp_358 +dimen dp_359 +dimen dp_36 +dimen dp_366 +dimen dp_367 +dimen dp_368 +dimen dp_369 +dimen dp_37 +dimen dp_370 +dimen dp_371 +dimen dp_372 +dimen dp_373 +dimen dp_374 +dimen dp_375 +dimen dp_376 +dimen dp_377 +dimen dp_378 +dimen dp_379 +dimen dp_38 +dimen dp_380 +dimen dp_381 +dimen dp_382 +dimen dp_383 +dimen dp_384 +dimen dp_385 +dimen dp_386 +dimen dp_387 +dimen dp_388 +dimen dp_389 +dimen dp_39 +dimen dp_390 +dimen dp_391 +dimen dp_392 +dimen dp_393 +dimen dp_394 +dimen dp_395 +dimen dp_396 +dimen dp_397 +dimen dp_398 +dimen dp_399 +dimen dp_3_5 +dimen dp_4 +dimen dp_40 +dimen dp_400 +dimen dp_401 +dimen dp_402 +dimen dp_403 +dimen dp_404 +dimen dp_405 +dimen dp_406 +dimen dp_407 +dimen dp_408 +dimen dp_409 +dimen dp_41 +dimen dp_410 +dimen dp_411 +dimen dp_412 +dimen dp_413 +dimen dp_414 +dimen dp_415 +dimen dp_416 +dimen dp_417 +dimen dp_418 +dimen dp_419 +dimen dp_42 +dimen dp_420 +dimen dp_421 +dimen dp_422 +dimen dp_423 +dimen dp_424 +dimen dp_425 +dimen dp_426 +dimen dp_427 +dimen dp_428 +dimen dp_429 +dimen dp_43 +dimen dp_430 +dimen dp_431 +dimen dp_432 +dimen dp_433 +dimen dp_434 +dimen dp_435 +dimen dp_436 +dimen dp_437 +dimen dp_438 +dimen dp_439 +dimen dp_44 +dimen dp_440 +dimen dp_441 +dimen dp_442 +dimen dp_443 +dimen dp_444 +dimen dp_445 +dimen dp_446 +dimen dp_447 +dimen dp_448 +dimen dp_449 +dimen dp_45 +dimen dp_450 +dimen dp_451 +dimen dp_452 +dimen dp_453 +dimen dp_454 +dimen dp_455 +dimen dp_456 +dimen dp_457 +dimen dp_458 +dimen dp_459 +dimen dp_46 +dimen dp_460 +dimen dp_461 +dimen dp_462 +dimen dp_463 +dimen dp_464 +dimen dp_465 +dimen dp_466 +dimen dp_467 +dimen dp_468 +dimen dp_469 +dimen dp_47 +dimen dp_470 +dimen dp_471 +dimen dp_472 +dimen dp_473 +dimen dp_474 +dimen dp_475 +dimen dp_476 +dimen dp_477 +dimen dp_478 +dimen dp_479 +dimen dp_48 +dimen dp_480 +dimen dp_481 +dimen dp_482 +dimen dp_483 +dimen dp_484 +dimen dp_485 +dimen dp_486 +dimen dp_487 +dimen dp_488 +dimen dp_489 +dimen dp_49 +dimen dp_490 +dimen dp_491 +dimen dp_492 +dimen dp_493 +dimen dp_494 +dimen dp_495 +dimen dp_496 +dimen dp_497 +dimen dp_498 +dimen dp_499 +dimen dp_4_5 +dimen dp_5 +dimen dp_50 +dimen dp_500 +dimen dp_501 +dimen dp_502 +dimen dp_503 +dimen dp_504 +dimen dp_505 +dimen dp_506 +dimen dp_507 +dimen dp_508 +dimen dp_509 +dimen dp_51 +dimen dp_510 +dimen dp_511 +dimen dp_512 +dimen dp_513 +dimen dp_514 +dimen dp_515 +dimen dp_516 +dimen dp_517 +dimen dp_518 +dimen dp_519 +dimen dp_52 +dimen dp_520 +dimen dp_521 +dimen dp_522 +dimen dp_523 +dimen dp_524 +dimen dp_525 +dimen dp_526 +dimen dp_527 +dimen dp_528 +dimen dp_529 +dimen dp_53 +dimen dp_530 +dimen dp_531 +dimen dp_532 +dimen dp_533 +dimen dp_534 +dimen dp_535 +dimen dp_536 +dimen dp_537 +dimen dp_538 +dimen dp_539 +dimen dp_54 +dimen dp_540 +dimen dp_541 +dimen dp_542 +dimen dp_543 +dimen dp_544 +dimen dp_545 +dimen dp_546 +dimen dp_547 +dimen dp_548 +dimen dp_549 +dimen dp_55 +dimen dp_550 +dimen dp_551 +dimen dp_552 +dimen dp_553 +dimen dp_554 +dimen dp_555 +dimen dp_556 +dimen dp_557 +dimen dp_558 +dimen dp_559 +dimen dp_56 +dimen dp_560 +dimen dp_561 +dimen dp_562 +dimen dp_563 +dimen dp_564 +dimen dp_565 +dimen dp_566 +dimen dp_567 +dimen dp_568 +dimen dp_569 +dimen dp_57 +dimen dp_570 +dimen dp_571 +dimen dp_572 +dimen dp_573 +dimen dp_574 +dimen dp_575 +dimen dp_576 +dimen dp_577 +dimen dp_578 +dimen dp_579 +dimen dp_58 +dimen dp_580 +dimen dp_581 +dimen dp_582 +dimen dp_583 +dimen dp_584 +dimen dp_585 +dimen dp_586 +dimen dp_587 +dimen dp_588 +dimen dp_589 +dimen dp_59 +dimen dp_590 +dimen dp_591 +dimen dp_592 +dimen dp_593 +dimen dp_594 +dimen dp_595 +dimen dp_596 +dimen dp_597 +dimen dp_598 +dimen dp_599 +dimen dp_6 +dimen dp_60 +dimen dp_600 +dimen dp_601 +dimen dp_602 +dimen dp_603 +dimen dp_604 +dimen dp_605 +dimen dp_606 +dimen dp_607 +dimen dp_608 +dimen dp_609 +dimen dp_61 +dimen dp_610 +dimen dp_611 +dimen dp_612 +dimen dp_613 +dimen dp_614 +dimen dp_615 +dimen dp_616 +dimen dp_617 +dimen dp_618 +dimen dp_619 +dimen dp_62 +dimen dp_620 +dimen dp_621 +dimen dp_622 +dimen dp_623 +dimen dp_624 +dimen dp_625 +dimen dp_626 +dimen dp_627 +dimen dp_628 +dimen dp_629 +dimen dp_63 +dimen dp_630 +dimen dp_631 +dimen dp_632 +dimen dp_633 +dimen dp_634 +dimen dp_635 +dimen dp_636 +dimen dp_637 +dimen dp_638 +dimen dp_639 +dimen dp_64 +dimen dp_640 +dimen dp_641 +dimen dp_642 +dimen dp_643 +dimen dp_644 +dimen dp_645 +dimen dp_646 +dimen dp_647 +dimen dp_648 +dimen dp_649 +dimen dp_65 +dimen dp_650 +dimen dp_651 +dimen dp_652 +dimen dp_653 +dimen dp_654 +dimen dp_655 +dimen dp_656 +dimen dp_657 +dimen dp_658 +dimen dp_659 +dimen dp_66 +dimen dp_660 +dimen dp_661 +dimen dp_662 +dimen dp_663 +dimen dp_664 +dimen dp_665 +dimen dp_666 +dimen dp_667 +dimen dp_668 +dimen dp_669 +dimen dp_67 +dimen dp_670 +dimen dp_671 +dimen dp_672 +dimen dp_673 +dimen dp_674 +dimen dp_675 +dimen dp_676 +dimen dp_677 +dimen dp_678 +dimen dp_679 +dimen dp_68 +dimen dp_680 +dimen dp_681 +dimen dp_682 +dimen dp_683 +dimen dp_684 +dimen dp_685 +dimen dp_686 +dimen dp_687 +dimen dp_688 +dimen dp_689 +dimen dp_69 +dimen dp_690 +dimen dp_691 +dimen dp_692 +dimen dp_693 +dimen dp_694 +dimen dp_695 +dimen dp_696 +dimen dp_697 +dimen dp_698 +dimen dp_699 +dimen dp_7 +dimen dp_70 +dimen dp_700 +dimen dp_701 +dimen dp_702 +dimen dp_703 +dimen dp_704 +dimen dp_705 +dimen dp_706 +dimen dp_707 +dimen dp_708 +dimen dp_709 +dimen dp_71 +dimen dp_710 +dimen dp_711 +dimen dp_712 +dimen dp_713 +dimen dp_714 +dimen dp_715 +dimen dp_716 +dimen dp_717 +dimen dp_718 +dimen dp_719 +dimen dp_72 +dimen dp_720 +dimen dp_721 +dimen dp_722 +dimen dp_723 +dimen dp_724 +dimen dp_725 +dimen dp_726 +dimen dp_727 +dimen dp_728 +dimen dp_729 +dimen dp_73 +dimen dp_730 +dimen dp_731 +dimen dp_732 +dimen dp_733 +dimen dp_734 +dimen dp_735 +dimen dp_736 +dimen dp_737 +dimen dp_738 +dimen dp_739 +dimen dp_74 +dimen dp_740 +dimen dp_741 +dimen dp_742 +dimen dp_743 +dimen dp_744 +dimen dp_745 +dimen dp_746 +dimen dp_747 +dimen dp_748 +dimen dp_749 +dimen dp_75 +dimen dp_750 +dimen dp_751 +dimen dp_752 +dimen dp_753 +dimen dp_754 +dimen dp_755 +dimen dp_756 +dimen dp_757 +dimen dp_758 +dimen dp_759 +dimen dp_76 +dimen dp_760 +dimen dp_761 +dimen dp_762 +dimen dp_763 +dimen dp_764 +dimen dp_765 +dimen dp_766 +dimen dp_767 +dimen dp_768 +dimen dp_769 +dimen dp_77 +dimen dp_770 +dimen dp_771 +dimen dp_772 +dimen dp_773 +dimen dp_774 +dimen dp_775 +dimen dp_776 +dimen dp_777 +dimen dp_778 +dimen dp_779 +dimen dp_78 +dimen dp_780 +dimen dp_781 +dimen dp_782 +dimen dp_783 +dimen dp_784 +dimen dp_785 +dimen dp_786 +dimen dp_787 +dimen dp_788 +dimen dp_789 +dimen dp_79 +dimen dp_790 +dimen dp_791 +dimen dp_792 +dimen dp_793 +dimen dp_794 +dimen dp_795 +dimen dp_796 +dimen dp_797 +dimen dp_798 +dimen dp_799 +dimen dp_7_5 +dimen dp_8 +dimen dp_80 +dimen dp_800 +dimen dp_801 +dimen dp_802 +dimen dp_803 +dimen dp_804 +dimen dp_805 +dimen dp_806 +dimen dp_807 +dimen dp_808 +dimen dp_809 +dimen dp_81 +dimen dp_810 +dimen dp_811 +dimen dp_812 +dimen dp_813 +dimen dp_814 +dimen dp_815 +dimen dp_816 +dimen dp_817 +dimen dp_818 +dimen dp_819 +dimen dp_82 +dimen dp_820 +dimen dp_821 +dimen dp_822 +dimen dp_823 +dimen dp_824 +dimen dp_825 +dimen dp_826 +dimen dp_827 +dimen dp_828 +dimen dp_829 +dimen dp_83 +dimen dp_830 +dimen dp_831 +dimen dp_832 +dimen dp_833 +dimen dp_834 +dimen dp_835 +dimen dp_836 +dimen dp_837 +dimen dp_838 +dimen dp_839 +dimen dp_84 +dimen dp_840 +dimen dp_841 +dimen dp_842 +dimen dp_843 +dimen dp_844 +dimen dp_845 +dimen dp_846 +dimen dp_847 +dimen dp_848 +dimen dp_849 +dimen dp_85 +dimen dp_850 +dimen dp_851 +dimen dp_852 +dimen dp_853 +dimen dp_854 +dimen dp_855 +dimen dp_856 +dimen dp_857 +dimen dp_858 +dimen dp_859 +dimen dp_86 +dimen dp_860 +dimen dp_861 +dimen dp_862 +dimen dp_863 +dimen dp_864 +dimen dp_865 +dimen dp_866 +dimen dp_867 +dimen dp_868 +dimen dp_869 +dimen dp_87 +dimen dp_870 +dimen dp_871 +dimen dp_872 +dimen dp_873 +dimen dp_874 +dimen dp_875 +dimen dp_876 +dimen dp_877 +dimen dp_878 +dimen dp_879 +dimen dp_88 +dimen dp_880 +dimen dp_881 +dimen dp_882 +dimen dp_883 +dimen dp_884 +dimen dp_885 +dimen dp_886 +dimen dp_887 +dimen dp_888 +dimen dp_889 +dimen dp_89 +dimen dp_890 +dimen dp_891 +dimen dp_892 +dimen dp_893 +dimen dp_894 +dimen dp_895 +dimen dp_896 +dimen dp_897 +dimen dp_898 +dimen dp_899 +dimen dp_9 +dimen dp_90 +dimen dp_900 +dimen dp_901 +dimen dp_902 +dimen dp_903 +dimen dp_904 +dimen dp_905 +dimen dp_906 +dimen dp_907 +dimen dp_908 +dimen dp_909 +dimen dp_91 +dimen dp_910 +dimen dp_911 +dimen dp_912 +dimen dp_913 +dimen dp_914 +dimen dp_915 +dimen dp_916 +dimen dp_917 +dimen dp_918 +dimen dp_919 +dimen dp_92 +dimen dp_920 +dimen dp_921 +dimen dp_922 +dimen dp_923 +dimen dp_924 +dimen dp_925 +dimen dp_926 +dimen dp_927 +dimen dp_928 +dimen dp_929 +dimen dp_93 +dimen dp_930 +dimen dp_931 +dimen dp_932 +dimen dp_933 +dimen dp_934 +dimen dp_935 +dimen dp_936 +dimen dp_937 +dimen dp_938 +dimen dp_939 +dimen dp_94 +dimen dp_940 +dimen dp_941 +dimen dp_942 +dimen dp_943 +dimen dp_944 +dimen dp_945 +dimen dp_946 +dimen dp_947 +dimen dp_948 +dimen dp_949 +dimen dp_95 +dimen dp_950 +dimen dp_951 +dimen dp_952 +dimen dp_953 +dimen dp_954 +dimen dp_955 +dimen dp_956 +dimen dp_957 +dimen dp_958 +dimen dp_959 +dimen dp_96 +dimen dp_960 +dimen dp_961 +dimen dp_962 +dimen dp_963 +dimen dp_964 +dimen dp_965 +dimen dp_966 +dimen dp_967 +dimen dp_968 +dimen dp_969 +dimen dp_97 +dimen dp_970 +dimen dp_971 +dimen dp_972 +dimen dp_973 +dimen dp_974 +dimen dp_975 +dimen dp_976 +dimen dp_977 +dimen dp_978 +dimen dp_979 +dimen dp_98 +dimen dp_980 +dimen dp_981 +dimen dp_982 +dimen dp_983 +dimen dp_984 +dimen dp_985 +dimen dp_986 +dimen dp_987 +dimen dp_988 +dimen dp_989 +dimen dp_99 +dimen dp_990 +dimen dp_991 +dimen dp_992 +dimen dp_993 +dimen dp_994 +dimen dp_995 +dimen dp_996 +dimen dp_997 +dimen dp_998 +dimen dp_999 +dimen dp_m_1 +dimen dp_m_10 +dimen dp_m_12 +dimen dp_m_2 +dimen dp_m_20 +dimen dp_m_30 +dimen dp_m_5 +dimen dp_m_60 +dimen dp_m_8 +dimen fastscroll_default_thickness +dimen fastscroll_margin +dimen fastscroll_minimum_range +dimen heart_ratingbar_height +dimen heart_ratingbar_width +dimen highlight_alpha_material_colored +dimen highlight_alpha_material_dark +dimen highlight_alpha_material_light +dimen hint_alpha_material_dark +dimen hint_alpha_material_light +dimen hint_pressed_alpha_material_dark +dimen hint_pressed_alpha_material_light +dimen item_touch_helper_max_drag_scroll_per_frame +dimen item_touch_helper_swipe_escape_max_velocity +dimen item_touch_helper_swipe_escape_velocity +dimen modle_car_panel_call +dimen modle_car_panel_call_margin +dimen modle_car_panel_call_margin_left +dimen module_common_shadow_width +dimen module_common_shadow_width_pos +dimen module_commons_toast_icon_width +dimen module_commons_toast_marginBottom +dimen module_commons_toast_marginLeft +dimen module_commons_toast_marginRight +dimen module_commons_toast_marginTop +dimen module_commons_toast_maxWidth +dimen module_commons_toast_minWidth +dimen module_commons_toast_space_between_icon_and_msg +dimen module_commons_toast_textSize +dimen module_commons_toast_with_left_drawable_marginBottom +dimen module_commons_toast_with_left_drawable_marginLeft +dimen module_commons_toast_with_left_drawable_marginTop +dimen module_commons_toast_y_offset +dimen module_map_amap_my_location_bg_size +dimen module_map_amap_my_location_icon_height +dimen module_map_amap_my_location_icon_width +dimen module_media_back_height +dimen module_media_back_radius +dimen module_media_back_width +dimen module_media_card_control_icon_left_padding +dimen module_media_card_control_icon_margin_bottom +dimen module_media_card_control_icon_size +dimen module_media_card_control_play_icon_margin +dimen module_media_card_control_play_icon_size +dimen module_media_card_height +dimen module_media_card_no_share_anim_height +dimen module_media_card_no_share_anim_img_height +dimen module_media_card_no_share_anim_img_width +dimen module_media_card_no_share_anim_width +dimen module_media_card_no_share_music_bottom_title_margin +dimen module_media_card_no_share_music_bottom_title_size +dimen module_media_card_no_share_music_top_title_margin +dimen module_media_card_no_share_music_top_title_size +dimen module_media_card_no_share_title_margin +dimen module_media_card_progress_bg_drawable_height +dimen module_media_card_progress_bg_drawable_width +dimen module_media_card_progress_height +dimen module_media_card_progress_margin +dimen module_media_card_progress_pop_bg_drawable_height +dimen module_media_card_progress_pop_bg_drawable_width +dimen module_media_card_progress_time_text_margin_bottom +dimen module_media_card_progress_time_text_margin_left +dimen module_media_card_progress_time_text_margin_right +dimen module_media_card_progress_time_text_size +dimen module_media_card_radius +dimen module_media_card_radius_blur +dimen module_media_card_share_full_margin_top +dimen module_media_card_share_user_text_width_max +dimen module_media_card_width +dimen module_media_draw_rect_map_bottom +dimen module_media_draw_rect_map_left +dimen module_media_draw_rect_map_right +dimen module_media_draw_rect_map_top +dimen module_media_music_state_location +dimen module_media_music_state_location_new +dimen module_media_music_state_location_x +dimen module_media_music_state_location_x_new +dimen module_media_pop_window_anim_img_size +dimen module_media_pop_window_anim_img_size_new +dimen module_media_pop_window_control_img_size +dimen module_media_pop_window_control_margin_right +dimen module_media_pop_window_height +dimen module_media_pop_window_height_new +dimen module_media_pop_window_inner_height +dimen module_media_pop_window_inner_padding +dimen module_media_pop_window_pause +dimen module_media_pop_window_progress_height +dimen module_media_pop_window_radius +dimen module_media_pop_window_radius_margin +dimen module_media_pop_window_size +dimen module_media_pop_window_text_bottom_size +dimen module_media_pop_window_text_margin +dimen module_media_pop_window_text_top_size +dimen module_media_pop_window_text_width +dimen module_media_pop_window_width +dimen module_media_pop_window_width_new +dimen module_media_share_back_top +dimen module_media_share_fragment_bg_radius +dimen module_media_share_fragment_btn_height +dimen module_media_share_fragment_btn_size +dimen module_media_share_fragment_center_margin_bottom +dimen module_media_share_fragment_center_margin_top +dimen module_media_share_fragment_center_text_size +dimen module_media_share_fragment_height +dimen module_media_share_fragment_img_radius +dimen module_media_share_fragment_title_height +dimen module_media_share_fragment_title_img_right +dimen module_media_share_fragment_title_img_size +dimen module_media_share_fragment_title_padding +dimen module_media_share_fragment_title_padding_left +dimen module_media_share_fragment_title_padding_top +dimen module_media_share_fragment_title_scroll_tv1_size +dimen module_media_share_fragment_title_scroll_tv2_size +dimen module_media_share_fragment_tv2_margin_top +dimen module_media_share_fragment_width +dimen module_media_share_full_screen_back_top +dimen module_media_share_full_screen_height +dimen module_media_share_full_screen_margin_left_right +dimen module_media_share_full_screen_pading +dimen module_media_share_full_screen_width +dimen module_media_share_media_back_height +dimen module_media_share_media_back_margin_left +dimen module_media_share_media_back_margin_right +dimen module_media_share_media_back_top +dimen module_media_share_media_image_height +dimen module_media_share_media_image_radius +dimen module_media_share_media_image_width +dimen module_media_share_media_name_back_left +dimen module_media_share_media_singer_name_size +dimen module_media_share_media_song_name_size +dimen module_media_share_share_icon_width +dimen module_media_share_user_back_margin_height +dimen module_media_share_user_back_margin_left_right +dimen module_media_share_user_back_radius +dimen module_media_share_user_from_size +dimen module_media_share_user_head_image_height +dimen module_media_share_user_head_image_left +dimen module_media_share_user_head_image_width +dimen module_media_share_user_like_back_margin_right +dimen module_media_share_user_like_height +dimen module_media_share_user_like_size +dimen module_media_share_user_like_width +dimen module_media_share_user_name_back_margin_left +dimen module_media_share_user_name_back_margin_right +dimen module_media_share_user_name_size +dimen module_media_share_user_of_share_size +dimen module_media_toast_share_bg_radius +dimen module_media_toast_share_height +dimen module_media_toast_share_img_size +dimen module_media_toast_share_margin_top +dimen module_media_toast_share_text_size +dimen module_media_toast_share_width +dimen module_media_window_corner +dimen module_service_content_minWidth +dimen module_service_content_textSize +dimen module_service_id_marker_content_paddingRight +dimen module_service_id_marker_content_paddingRight_widthoutCall +dimen module_service_marker_anchor_size +dimen module_service_marker_bounds_bottomMargin +dimen module_service_marker_bounds_leftMargin +dimen module_service_marker_bounds_rightMargin +dimen module_service_marker_bounds_topMargin +dimen module_service_marker_bubble_height +dimen module_service_marker_bubble_icon_height +dimen module_service_marker_bubble_icon_marginBottom +dimen module_service_marker_bubble_icon_vr_height +dimen module_service_marker_bubble_icon_vr_width +dimen module_service_marker_bubble_icon_width +dimen module_service_marker_bubble_vr_height +dimen module_service_marker_bubble_vr_width +dimen module_service_marker_bubble_width +dimen module_service_marker_dot_marginTop +dimen module_service_tag_textSize +dimen module_service_user_header_height +dimen module_service_user_header_width +dimen module_services_dispatch_airport_dialog_affirm_corner +dimen module_services_dispatch_airport_dialog_affirm_height +dimen module_services_dispatch_airport_dialog_affirm_width +dimen module_services_dispatch_airport_dialog_corner +dimen module_services_dispatch_airport_dialog_endloc_content_margin_top +dimen module_services_dispatch_airport_dialog_endloc_margin_top +dimen module_services_dispatch_airport_dialog_first_column_margin_left +dimen module_services_dispatch_airport_dialog_height +dimen module_services_dispatch_airport_dialog_last_column_margin_left +dimen module_services_dispatch_airport_dialog_margin_bottom +dimen module_services_dispatch_airport_dialog_margin_top +dimen module_services_dispatch_airport_dialog_next_level_title_size +dimen module_services_dispatch_airport_dialog_startloc_content_margin_top +dimen module_services_dispatch_airport_dialog_startloc_margin_top +dimen module_services_dispatch_airport_dialog_task_content_margin_top +dimen module_services_dispatch_airport_dialog_task_content_size +dimen module_services_dispatch_airport_dialog_task_margin_top +dimen module_services_dispatch_airport_dialog_title_margin_top +dimen module_services_dispatch_airport_dialog_title_size +dimen module_services_dispatch_airport_dialog_width +dimen module_services_dispatch_cars_dialog_btn_width +dimen module_services_dispatch_cars_dialog_content_margin_top +dimen module_services_dispatch_cars_dialog_content_size +dimen module_services_dispatch_cars_dialog_corner +dimen module_services_dispatch_cars_dialog_height +dimen module_services_dispatch_cars_dialog_line_margin_bottom +dimen module_services_dispatch_cars_dialog_loc_margin_top +dimen module_services_dispatch_cars_dialog_loc_size +dimen module_services_dispatch_cars_dialog_timer_margin +dimen module_services_dispatch_cars_dialog_timer_size +dimen module_services_dispatch_cars_dialog_timer_txt_size +dimen module_services_dispatch_cars_dialog_title_margin_top +dimen module_services_dispatch_cars_dialog_title_size +dimen module_services_dispatch_cars_dialog_width +dimen module_services_empty_tip_marginTop +dimen module_services_empty_tip_textSize +dimen module_services_id_panel_item_avatar_border_width +dimen module_services_id_panel_item_distance_marginLeft +dimen module_services_info_window_height +dimen module_services_info_window_paddingEnd +dimen module_services_info_window_paddingStart +dimen module_services_load_strategy_marginRight +dimen module_services_load_strategy_paddingLeft +dimen module_services_load_strategy_paddingTop +dimen module_services_load_strategy_textSize +dimen module_services_online_car_panel_close_margin_top +dimen module_services_online_car_panel_marginBottom +dimen module_services_online_car_panel_marginRight +dimen module_services_online_car_panel_marginTop +dimen module_services_online_car_panel_paddingBottom +dimen module_services_online_car_panel_paddingLeft +dimen module_services_online_car_panel_recycler_view_margin_top +dimen module_services_online_car_panel_title_margin_top +dimen module_services_online_car_panel_title_text_size +dimen module_services_panel_item_avatar_size +dimen module_services_panel_item_corner +dimen module_services_panel_item_detail_bkg_corner +dimen module_services_panel_item_detail_padding +dimen module_services_panel_item_detail_textSize +dimen module_services_panel_item_distance_tag_marginBottom +dimen module_services_panel_item_distance_textSize +dimen module_services_panel_item_marginBottom +dimen module_services_panel_item_nickname_marginLeft +dimen module_services_panel_item_nickname_marginTop +dimen module_services_panel_item_nickname_textSize +dimen module_services_panel_item_padding +dimen module_services_panel_item_start +dimen module_services_panel_strategy_button_bkg_corner +dimen module_services_panel_strategy_button_marginTop +dimen module_v2n_image_margin_left +dimen module_v2n_tip_height +dimen module_v2n_tip_text_margin_right +dimen module_v2n_tip_text_width +dimen module_v2n_tip_width +dimen module_v2x_brake_image_margin_left +dimen module_v2x_brake_image_margin_right +dimen module_v2x_brake_image_width +dimen module_v2x_brake_tip_height +dimen module_v2x_brake_tip_width +dimen module_v2x_surrounding_item_margin_left +dimen module_v2x_surrounding_list_margin_left +dimen notification_action_icon_size +dimen notification_action_text_size +dimen notification_big_circle_margin +dimen notification_content_margin_start +dimen notification_large_icon_height +dimen notification_large_icon_width +dimen notification_main_column_padding_top +dimen notification_media_narrow_margin +dimen notification_right_icon_size +dimen notification_right_side_padding_top +dimen notification_small_icon_background_padding +dimen notification_small_icon_size_as_large +dimen notification_subtext_size +dimen notification_top_pad +dimen notification_top_pad_large_text +dimen panel_list_item_title_size +dimen ratingbar_padding +dimen share_item_address +dimen sp_10 +dimen sp_11 +dimen sp_12 +dimen sp_13 +dimen sp_14 +dimen sp_15 +dimen sp_16 +dimen sp_17 +dimen sp_18 +dimen sp_19 +dimen sp_20 +dimen sp_21 +dimen sp_22 +dimen sp_23 +dimen sp_24 +dimen sp_25 +dimen sp_28 +dimen sp_30 +dimen sp_32 +dimen sp_34 +dimen sp_36 +dimen sp_38 +dimen sp_40 +dimen sp_42 +dimen sp_48 +dimen sp_6 +dimen sp_7 +dimen sp_8 +dimen sp_9 +dimen subtitle_corner_radius +dimen subtitle_outline_width +dimen subtitle_shadow_offset +dimen subtitle_shadow_radius +dimen tooltip_corner_radius +dimen tooltip_horizontal_padding +dimen tooltip_margin +dimen tooltip_precise_anchor_extra_offset +dimen tooltip_precise_anchor_threshold +dimen tooltip_vertical_padding +dimen tooltip_y_offset_non_touch +dimen tooltip_y_offset_touch +dimen v2x_panel_loading_top +dimen v2x_share_btn_height +dimen v2x_share_btn_width +drawable abc_ab_share_pack_mtrl_alpha +drawable abc_action_bar_item_background_material +drawable abc_btn_borderless_material +drawable abc_btn_check_material +drawable abc_btn_check_material_anim +drawable abc_btn_check_to_on_mtrl_000 +drawable abc_btn_check_to_on_mtrl_015 +drawable abc_btn_colored_material +drawable abc_btn_default_mtrl_shape +drawable abc_btn_radio_material +drawable abc_btn_radio_material_anim +drawable abc_btn_radio_to_on_mtrl_000 +drawable abc_btn_radio_to_on_mtrl_015 +drawable abc_btn_switch_to_on_mtrl_00001 +drawable abc_btn_switch_to_on_mtrl_00012 +drawable abc_cab_background_internal_bg +drawable abc_cab_background_top_material +drawable abc_cab_background_top_mtrl_alpha +drawable abc_control_background_material +drawable abc_dialog_material_background +drawable abc_edit_text_material +drawable abc_ic_ab_back_material +drawable abc_ic_arrow_drop_right_black_24dp +drawable abc_ic_clear_material +drawable abc_ic_commit_search_api_mtrl_alpha +drawable abc_ic_go_search_api_material +drawable abc_ic_menu_copy_mtrl_am_alpha +drawable abc_ic_menu_cut_mtrl_alpha +drawable abc_ic_menu_overflow_material +drawable abc_ic_menu_paste_mtrl_am_alpha +drawable abc_ic_menu_selectall_mtrl_alpha +drawable abc_ic_menu_share_mtrl_alpha +drawable abc_ic_search_api_material +drawable abc_ic_star_black_16dp +drawable abc_ic_star_black_36dp +drawable abc_ic_star_black_48dp +drawable abc_ic_star_half_black_16dp +drawable abc_ic_star_half_black_36dp +drawable abc_ic_star_half_black_48dp +drawable abc_ic_voice_search_api_material +drawable abc_item_background_holo_dark +drawable abc_item_background_holo_light +drawable abc_list_divider_material +drawable abc_list_divider_mtrl_alpha +drawable abc_list_focused_holo +drawable abc_list_longpressed_holo +drawable abc_list_pressed_holo_dark +drawable abc_list_pressed_holo_light +drawable abc_list_selector_background_transition_holo_dark +drawable abc_list_selector_background_transition_holo_light +drawable abc_list_selector_disabled_holo_dark +drawable abc_list_selector_disabled_holo_light +drawable abc_list_selector_holo_dark +drawable abc_list_selector_holo_light +drawable abc_menu_hardkey_panel_mtrl_mult +drawable abc_popup_background_mtrl_mult +drawable abc_ratingbar_indicator_material +drawable abc_ratingbar_material +drawable abc_ratingbar_small_material +drawable abc_scrubber_control_off_mtrl_alpha +drawable abc_scrubber_control_to_pressed_mtrl_000 +drawable abc_scrubber_control_to_pressed_mtrl_005 +drawable abc_scrubber_primary_mtrl_alpha +drawable abc_scrubber_track_mtrl_alpha +drawable abc_seekbar_thumb_material +drawable abc_seekbar_tick_mark_material +drawable abc_seekbar_track_material +drawable abc_spinner_mtrl_am_alpha +drawable abc_spinner_textfield_background_material +drawable abc_switch_thumb_material +drawable abc_switch_track_mtrl_alpha +drawable abc_tab_indicator_material +drawable abc_tab_indicator_mtrl_alpha +drawable abc_text_cursor_material +drawable abc_text_select_handle_left_mtrl_dark +drawable abc_text_select_handle_left_mtrl_light +drawable abc_text_select_handle_middle_mtrl_dark +drawable abc_text_select_handle_middle_mtrl_light +drawable abc_text_select_handle_right_mtrl_dark +drawable abc_text_select_handle_right_mtrl_light +drawable abc_textfield_activated_mtrl_alpha +drawable abc_textfield_default_mtrl_alpha +drawable abc_textfield_search_activated_mtrl_alpha +drawable abc_textfield_search_default_mtrl_alpha +drawable abc_textfield_search_material +drawable abc_vector_test +drawable account_adk_btn_gradient +drawable account_adk_btn_gray +drawable account_sdk_bg_10_corner +drawable account_sdk_bg_8_corner +drawable bg_adas_dispatch +drawable bg_adas_dispatch_affirm +drawable bg_map_marker_blue +drawable bg_map_marker_blue_dark +drawable bg_map_marker_blue_info +drawable bg_map_marker_dark_blue_info +drawable bg_map_marker_dark_green_info +drawable bg_map_marker_green +drawable bg_map_marker_green_dark +drawable bg_map_marker_green_info +drawable bg_map_marker_grey_info +drawable bg_map_marker_oragne +drawable bg_map_marker_orange_info +drawable bg_map_marker_purple +drawable bg_map_marker_purple_info +drawable bg_map_marker_red +drawable bg_map_marker_red_info +drawable bg_map_marker_yellow_info +drawable bg_qr_scan_line +drawable bg_qr_scan_success +drawable bg_shape_reverse_triangle_blue +drawable bg_shape_reverse_triangle_dark_blue +drawable bg_shape_reverse_triangle_dark_green +drawable bg_shape_reverse_triangle_green +drawable bg_shape_reverse_triangle_orange +drawable bg_shape_reverse_triangle_purple +drawable bg_shape_reverse_triangle_red +drawable bg_shape_reverse_yellow +drawable bg_waring_limiting_velocity +drawable bg_waring_traffic_light_vr +drawable bg_warning_bg +drawable blue +drawable btn_bg +drawable btn_checkbox_checked_mtrl +drawable btn_checkbox_checked_to_unchecked_mtrl_animation +drawable btn_checkbox_unchecked_mtrl +drawable btn_checkbox_unchecked_to_checked_mtrl_animation +drawable btn_radio_off_mtrl +drawable btn_radio_off_to_on_mtrl_animation +drawable btn_radio_on_mtrl +drawable btn_radio_on_to_off_mtrl_animation +drawable btn_show_bg +drawable common_marker_bottom_floor +drawable dialog_white_bg +drawable ic_amap_navi_cursor +drawable ic_back +drawable ic_back_true +drawable ic_can_config +drawable ic_can_config_true +drawable ic_minimality +drawable ic_minimality_true +drawable ic_navi_start +drawable ic_navi_target +drawable ic_phone_back +drawable ic_reverse_triangle +drawable ic_search_choice_point +drawable ic_search_poi_location +drawable ic_search_unshadow +drawable icon_common_heart_animation_vr00 +drawable icon_common_heart_animation_vr01 +drawable icon_common_heart_animation_vr02 +drawable icon_default_user_head +drawable icon_heart_choose +drawable icon_heart_second +drawable icon_heart_second_other +drawable icon_heart_unchoose +drawable icon_heart_unchoose_other +drawable icon_map_marker_4s +drawable icon_map_marker_book +drawable icon_map_marker_car_gray +drawable icon_map_marker_car_gray_selected +drawable icon_map_marker_car_type2 +drawable icon_map_marker_car_type_110 +drawable icon_map_marker_car_type_119 +drawable icon_map_marker_car_type_120 +drawable icon_map_marker_car_type_bus +drawable icon_map_marker_car_type_taxi +drawable icon_map_marker_living +drawable icon_map_marker_living_white +drawable icon_map_marker_location_blue +drawable icon_map_marker_location_yellow +drawable icon_map_marker_location_yellow_vr +drawable icon_map_marker_misic +drawable icon_map_marker_news +drawable icon_map_marker_pondingl +drawable icon_map_marker_pondingl2 +drawable icon_map_marker_pondingl2_white +drawable icon_map_marker_refuel +drawable icon_map_marker_road_block_off +drawable icon_map_marker_road_block_off2 +drawable icon_map_marker_road_block_off2_white +drawable icon_map_marker_road_block_up +drawable icon_map_marker_road_block_up2 +drawable icon_map_marker_road_block_up2_white +drawable icon_map_marker_road_check +drawable icon_map_marker_road_check2 +drawable icon_map_marker_road_check2_white +drawable icon_map_marker_road_work +drawable icon_map_marker_road_work2 +drawable icon_map_marker_road_work2_white +drawable icon_map_marker_shear_news +drawable icon_map_marker_shop +drawable icon_map_marker_shop_discount +drawable icon_waring_traffic_light_green_vr +drawable icon_waring_traffic_light_red_vr +drawable icon_waring_traffic_light_yellow_vr +drawable icon_warning_v2x_abnormal_vehicle +drawable icon_warning_v2x_accident_prone_road_section +drawable icon_warning_v2x_avoid_special_vehicles +drawable icon_warning_v2x_ban_astern +drawable icon_warning_v2x_blind_area_collision +drawable icon_warning_v2x_collision_warning +drawable icon_warning_v2x_congestion +drawable icon_warning_v2x_emergency_brake +drawable icon_warning_v2x_give_way +drawable icon_warning_v2x_hump_bridge +drawable icon_warning_v2x_motorcycle_collision +drawable icon_warning_v2x_no_parking +drawable icon_warning_v2x_over_speed +drawable icon_warning_v2x_pedestrian_crossing +drawable icon_warning_v2x_reverse_overtaking +drawable icon_warning_v2x_road_construction +drawable icon_warning_v2x_road_dangerous +drawable icon_warning_v2x_roundaboutpng +drawable icon_warning_v2x_school +drawable icon_warning_v2x_special_vehicle_access +drawable icon_warning_v2x_test_section +drawable icon_warning_v2x_traffic_light_gray +drawable icon_warning_v2x_traffic_light_green +drawable icon_warning_v2x_traffic_light_red +drawable icon_warning_v2x_traffic_light_yellow +drawable icon_warning_v2x_traffic_lights_green +drawable icon_warning_v2x_traffic_lights_red +drawable icon_warning_v2x_tramcar +drawable icon_warning_v2x_turn_left_sharp +drawable icon_warning_v2x_turn_right_sharp +drawable icon_warning_v2x_vehicle_control +drawable map_api_ic_current_location2 +drawable map_api_ic_current_location2_cursor +drawable module_adas_bg_shape +drawable module_adas_left_corner_bg +drawable module_adas_right_corner_bg +drawable module_adas_timer_bg_shape +drawable module_authorize_scrollbar +drawable module_authorize_selector_blue_corner +drawable module_authorize_selector_blue_left_corner +drawable module_authorize_selector_dark_corner +drawable module_authorize_selector_dark_right_corner +drawable module_authorize_shape_top_corner +drawable module_camera_real_time_traffic +drawable module_common_bg_vr +drawable module_common_close_selector +drawable module_common_close_selector_vr +drawable module_common_default_user_head +drawable module_common_ic_rc_accident3 +drawable module_common_ic_rc_accident3_white +drawable module_common_ic_rc_dark_frog2 +drawable module_common_ic_rc_dark_frog2_white +drawable module_common_ic_rc_freeze2 +drawable module_common_ic_rc_freeze2_white +drawable module_common_ic_rc_illegal_park +drawable module_common_ic_rc_illegal_park_white +drawable module_common_ic_rc_parking2 +drawable module_common_icon_close +drawable module_common_icon_close_press +drawable module_common_icon_close_vr +drawable module_common_icon_like_selected_vr +drawable module_common_icon_like_vr +drawable module_common_icon_map_marker_4s +drawable module_common_icon_map_marker_living +drawable module_common_icon_map_marker_living_white +drawable module_common_icon_map_marker_pondingl2 +drawable module_common_icon_map_marker_pondingl2_white +drawable module_common_icon_map_marker_refuel +drawable module_common_icon_map_marker_road_block_off2 +drawable module_common_icon_map_marker_road_block_off2_white +drawable module_common_icon_map_marker_road_block_up2 +drawable module_common_icon_map_marker_road_block_up2_white +drawable module_common_icon_map_marker_road_check2 +drawable module_common_icon_map_marker_road_check2_white +drawable module_common_icon_map_marker_road_work2 +drawable module_common_icon_map_marker_road_work2_white +drawable module_common_icon_map_marker_shear_news +drawable module_common_icon_map_marker_shop +drawable module_common_icon_map_marker_shop_discount +drawable module_common_icon_seek_help +drawable module_common_icon_unlike_selected_vr +drawable module_common_icon_unlike_vr +drawable module_common_like_vr +drawable module_common_my_location_bg +drawable module_common_selector_call +drawable module_common_unlike_vr +drawable module_commons_dialog_bg +drawable module_commons_dialog_left_bg +drawable module_commons_dialog_right_bg +drawable module_commons_heart_ratingbar_drawable +drawable module_commons_shape_dlg_round_bkg +drawable module_commons_shape_left_btn_bkg +drawable module_commons_shape_right_btn_bkg +drawable module_commons_toast_bkg +drawable module_dw_common_corner_bkg_light +drawable module_ext_drawable_shadow_bg +drawable module_ext_shadow_bkg +drawable module_ext_shadow_bkg_pressed +drawable module_map_amap_my_location_icon +drawable module_media_blur_default_icon +drawable module_media_bottom_revert_trianle_bg +drawable module_media_card_back +drawable module_media_card_tran_img_bg +drawable module_media_circle_bg +drawable module_media_click_poi_bg_top +drawable module_media_default_music_img +drawable module_media_default_music_img_new +drawable module_media_demo_selector +drawable module_media_full_screen +drawable module_media_full_screen_select +drawable module_media_have_heart +drawable module_media_head_default_img +drawable module_media_icon_map_marker_music +drawable module_media_last_song +drawable module_media_last_song_click +drawable module_media_misic_progress_bar +drawable module_media_music_animal_icon1 +drawable module_media_music_animal_icon10 +drawable module_media_music_animal_icon11 +drawable module_media_music_animal_icon12 +drawable module_media_music_animal_icon13 +drawable module_media_music_animal_icon14 +drawable module_media_music_animal_icon15 +drawable module_media_music_animal_icon16 +drawable module_media_music_animal_icon17 +drawable module_media_music_animal_icon18 +drawable module_media_music_animal_icon19 +drawable module_media_music_animal_icon2 +drawable module_media_music_animal_icon20 +drawable module_media_music_animal_icon21 +drawable module_media_music_animal_icon22 +drawable module_media_music_animal_icon23 +drawable module_media_music_animal_icon24 +drawable module_media_music_animal_icon25 +drawable module_media_music_animal_icon26 +drawable module_media_music_animal_icon27 +drawable module_media_music_animal_icon28 +drawable module_media_music_animal_icon29 +drawable module_media_music_animal_icon3 +drawable module_media_music_animal_icon30 +drawable module_media_music_animal_icon31 +drawable module_media_music_animal_icon32 +drawable module_media_music_animal_icon33 +drawable module_media_music_animal_icon34 +drawable module_media_music_animal_icon35 +drawable module_media_music_animal_icon36 +drawable module_media_music_animal_icon37 +drawable module_media_music_animal_icon38 +drawable module_media_music_animal_icon39 +drawable module_media_music_animal_icon4 +drawable module_media_music_animal_icon40 +drawable module_media_music_animal_icon41 +drawable module_media_music_animal_icon42 +drawable module_media_music_animal_icon43 +drawable module_media_music_animal_icon44 +drawable module_media_music_animal_icon45 +drawable module_media_music_animal_icon46 +drawable module_media_music_animal_icon47 +drawable module_media_music_animal_icon48 +drawable module_media_music_animal_icon49 +drawable module_media_music_animal_icon5 +drawable module_media_music_animal_icon50 +drawable module_media_music_animal_icon51 +drawable module_media_music_animal_icon52 +drawable module_media_music_animal_icon53 +drawable module_media_music_animal_icon54 +drawable module_media_music_animal_icon55 +drawable module_media_music_animal_icon56 +drawable module_media_music_animal_icon57 +drawable module_media_music_animal_icon58 +drawable module_media_music_animal_icon59 +drawable module_media_music_animal_icon6 +drawable module_media_music_animal_icon60 +drawable module_media_music_animal_icon61 +drawable module_media_music_animal_icon62 +drawable module_media_music_animal_icon63 +drawable module_media_music_animal_icon64 +drawable module_media_music_animal_icon65 +drawable module_media_music_animal_icon66 +drawable module_media_music_animal_icon67 +drawable module_media_music_animal_icon68 +drawable module_media_music_animal_icon69 +drawable module_media_music_animal_icon7 +drawable module_media_music_animal_icon70 +drawable module_media_music_animal_icon71 +drawable module_media_music_animal_icon72 +drawable module_media_music_animal_icon73 +drawable module_media_music_animal_icon74 +drawable module_media_music_animal_icon75 +drawable module_media_music_animal_icon8 +drawable module_media_music_animal_icon9 +drawable module_media_next_bg_selector +drawable module_media_next_song +drawable module_media_next_song_click +drawable module_media_no_heart +drawable module_media_no_img_default_icon +drawable module_media_play +drawable module_media_play_bg_selector +drawable module_media_progress_bg +drawable module_media_progress_pop_bg +drawable module_media_share_click +drawable module_media_share_default_icon +drawable module_media_share_default_icon1 +drawable module_media_share_default_icon2 +drawable module_media_share_default_rect_icon +drawable module_media_share_dialog_bg +drawable module_media_share_dialog_left_btn_bg +drawable module_media_share_dialog_right_btn_bg +drawable module_media_share_dialog_title_bg +drawable module_media_share_fail +drawable module_media_share_normal +drawable module_media_share_success +drawable module_media_share_toast_bg +drawable module_media_suspend +drawable module_media_user_share_music_back +drawable module_media_window_alert_bg +drawable module_media_window_pop_next +drawable module_media_window_pop_pause +drawable module_media_window_pop_pause_new +drawable module_media_window_pop_play +drawable module_media_window_pop_play_new +drawable module_media_window_progress_bar +drawable module_service_dispatch_cars_affirm_bg +drawable module_service_dispatch_cars_bg +drawable module_service_dispatch_cars_cancel_bg +drawable module_service_dispatch_timer_bg +drawable module_service_ic_call +drawable module_service_ic_car_for_help_0000 +drawable module_service_ic_car_for_help_0001 +drawable module_service_ic_car_for_help_0002 +drawable module_service_ic_car_for_help_0003 +drawable module_service_ic_car_for_help_0004 +drawable module_service_ic_car_for_help_0005 +drawable module_service_ic_car_for_help_0006 +drawable module_service_ic_car_for_help_0007 +drawable module_service_ic_car_for_help_0008 +drawable module_service_ic_car_for_help_0009 +drawable module_service_ic_car_for_help_0010 +drawable module_service_ic_car_for_help_0011 +drawable module_service_ic_car_for_help_0012 +drawable module_service_ic_car_for_help_0013 +drawable module_service_ic_car_for_help_0014 +drawable module_service_ic_car_for_help_0015 +drawable module_service_ic_car_for_help_0016 +drawable module_service_ic_car_for_help_0017 +drawable module_service_ic_car_for_help_0018 +drawable module_service_ic_car_for_help_0019 +drawable module_service_ic_car_for_help_0020 +drawable module_service_ic_car_for_help_0021 +drawable module_service_ic_car_for_help_0022 +drawable module_service_ic_car_for_help_0023 +drawable module_service_ic_car_for_help_0024 +drawable module_service_ic_rc_accident +drawable module_service_ic_rc_accident2 +drawable module_service_ic_rc_accident3 +drawable module_service_ic_rc_accident3_white +drawable module_service_ic_rc_dark_frog +drawable module_service_ic_rc_dark_frog2 +drawable module_service_ic_rc_dark_frog2_white +drawable module_service_ic_rc_freeze +drawable module_service_ic_rc_freeze2 +drawable module_service_ic_rc_freeze2_white +drawable module_service_ic_rc_illegal_park +drawable module_service_ic_rc_illegal_park_white +drawable module_service_ic_rc_parking +drawable module_service_ic_rc_parking2 +drawable module_service_ic_rc_road_slippery +drawable module_service_ic_rc_road_slippery_light +drawable module_service_ic_seek_helping +drawable module_service_ic_warning_circle_orange_00000 +drawable module_service_ic_warning_circle_orange_00001 +drawable module_service_ic_warning_circle_orange_00002 +drawable module_service_ic_warning_circle_orange_00003 +drawable module_service_ic_warning_circle_orange_00004 +drawable module_service_ic_warning_circle_orange_00005 +drawable module_service_ic_warning_circle_orange_00006 +drawable module_service_ic_warning_circle_orange_00007 +drawable module_service_ic_warning_circle_orange_00008 +drawable module_service_ic_warning_circle_orange_00009 +drawable module_service_ic_warning_circle_orange_00010 +drawable module_service_ic_warning_circle_orange_00011 +drawable module_service_ic_warning_circle_orange_00012 +drawable module_service_ic_warning_circle_orange_00013 +drawable module_service_ic_warning_circle_orange_00014 +drawable module_service_ic_warning_circle_orange_00015 +drawable module_service_ic_warning_circle_orange_00016 +drawable module_service_ic_warning_circle_orange_00017 +drawable module_service_ic_warning_circle_orange_00018 +drawable module_service_ic_warning_circle_orange_00019 +drawable module_service_ic_warning_circle_orange_00020 +drawable module_service_ic_warning_circle_orange_00021 +drawable module_service_ic_warning_circle_orange_00022 +drawable module_service_ic_warning_circle_orange_00023 +drawable module_service_ic_warning_circle_orange_00024 +drawable module_service_ic_warning_circle_orange_00025 +drawable module_service_ic_warning_circle_orange_00026 +drawable module_service_ic_warning_circle_orange_00027 +drawable module_service_ic_warning_circle_orange_00028 +drawable module_service_ic_warning_circle_orange_00029 +drawable module_service_ic_warning_circle_orange_00030 +drawable module_service_ic_warning_circle_orange_00031 +drawable module_service_ic_warning_circle_orange_00032 +drawable module_service_ic_warning_circle_orange_00033 +drawable module_service_ic_warning_circle_orange_00034 +drawable module_service_ic_warning_circle_orange_00035 +drawable module_service_ic_warning_circle_orange_00036 +drawable module_service_ic_warning_circle_orange_00037 +drawable module_service_ic_warning_circle_orange_00038 +drawable module_service_ic_warning_circle_orange_00039 +drawable module_service_ic_warning_circle_orange_00040 +drawable module_service_ic_warning_circle_orange_00041 +drawable module_service_ic_warning_circle_orange_00042 +drawable module_service_ic_warning_circle_orange_00043 +drawable module_service_ic_warning_circle_orange_00044 +drawable module_service_ic_warning_circle_orange_00045 +drawable module_service_ic_warning_circle_orange_00046 +drawable module_service_ic_warning_circle_orange_00047 +drawable module_service_ic_warning_circle_orange_00048 +drawable module_services_driver_info_window_bkg +drawable module_services_driver_type_blue_info +drawable module_services_driver_type_green_info +drawable module_services_driver_type_red_info +drawable module_services_info_window_cursor +drawable module_services_marker_bkg +drawable module_services_marker_vr_bkg +drawable module_services_marker_vr_bkg_checked +drawable module_services_online_car_panel_background +drawable module_services_online_car_panel_empty_icon +drawable module_services_panel_item_bkg +drawable module_services_panel_item_detail_bkg +drawable module_services_panel_strategy_button_bkg +drawable notification_action_background +drawable notification_bg +drawable notification_bg_low +drawable notification_bg_low_normal +drawable notification_bg_low_pressed +drawable notification_bg_normal +drawable notification_bg_normal_pressed +drawable notification_icon_background +drawable notification_template_icon_bg +drawable notification_template_icon_low_bg +drawable notification_tile_bg +drawable notify_panel_notification_icon_bg +drawable obu_state_blue +drawable obu_state_green +drawable obu_state_red +drawable obu_state_yellow +drawable pad_back +drawable pad_car +drawable pad_logo_black +drawable radio_btn_bg +drawable selector_back +drawable selector_call_btn_normal +drawable selector_call_btn_pressed +drawable selector_can +drawable selector_minimality +drawable selector_obu_state +drawable selector_service_car_panel_details +drawable service_car_panel_details_normal +drawable service_car_panel_details_pressed +drawable sr +drawable sy +drawable tooltip_frame_dark +drawable tooltip_frame_light +drawable zxing_scanline +id Full +id Half +id accessibility_action_clickable_span +id accessibility_custom_action_0 +id accessibility_custom_action_1 +id accessibility_custom_action_10 +id accessibility_custom_action_11 +id accessibility_custom_action_12 +id accessibility_custom_action_13 +id accessibility_custom_action_14 +id accessibility_custom_action_15 +id accessibility_custom_action_16 +id accessibility_custom_action_17 +id accessibility_custom_action_18 +id accessibility_custom_action_19 +id accessibility_custom_action_2 +id accessibility_custom_action_20 +id accessibility_custom_action_21 +id accessibility_custom_action_22 +id accessibility_custom_action_23 +id accessibility_custom_action_24 +id accessibility_custom_action_25 +id accessibility_custom_action_26 +id accessibility_custom_action_27 +id accessibility_custom_action_28 +id accessibility_custom_action_29 +id accessibility_custom_action_3 +id accessibility_custom_action_30 +id accessibility_custom_action_31 +id accessibility_custom_action_4 +id accessibility_custom_action_5 +id accessibility_custom_action_6 +id accessibility_custom_action_7 +id accessibility_custom_action_8 +id accessibility_custom_action_9 +id account_auth_back +id account_auth_cancel_login +id account_auth_login +id action0 +id action_bar +id action_bar_activity_content +id action_bar_container +id action_bar_root +id action_bar_spinner +id action_bar_subtitle +id action_bar_title +id action_container +id action_context_bar +id action_divider +id action_image +id action_menu_divider +id action_menu_presenter +id action_mode_bar +id action_mode_bar_stub +id action_mode_close_button +id action_text +id actions +id activity_chooser_view_content +id add +id alertTitle +id async +id auto_scanner_view +id bezier_view +id bg +id blocking +id bottom +id bt_refresh +id btnAuthorizeAgree +id btnAuthorizeDisAgree +id btnAuthorizeLoadingError +id btn_back +id btn_c +id btn_list +id btn_maximize +id btn_minimality +id buttonPanel +id can_parent +id cancel_action +id center +id centerCrop +id centerInside +id checkbox +id checked +id chronometer +id circle +id clAuthorizeContainer +id clAuthorizeLoading +id clAuthorizeTitle +id clAuthorizeTopParent +id clLoadingAuthorizeContainer +id clLoadingErrorContainer +id clMarkerContent +id clMarkerTopView +id clamp +id content +id contentPanel +id custom +id customPanel +id customRatingBar +id decor_content_parent +id default_activity_button +id dialog_button +id edit_query +id end +id end_padder +id expand_activities_button +id expanded_menu +id fitBottomStart +id fitCenter +id fitEnd +id fitStart +id fitXY +id focusCrop +id forever +id full_screen_id +id glide_custom_view_target_tag +id gone +id group_divider +id home +id horizontal +id icon +id icon_group +id image +id imgViewIcon +id info +id invisible +id ip +id italic +id item_group +id item_touch_helper_previous_elevation +id ivAuthorizeLoading +id ivAuthorizeLoadingError +id ivCar +id ivIcon +id ivReverseTriangle +id ivUserHead +id iv_back +id iv_camera_traffic +id iv_qr +id last_music +id left +id left_time_progress +id like_back_id +id like_id +id like_num_id +id line1 +id line3 +id listMode +id list_item +id ll_scan_success +id loading_imageview +id loading_liner_layout +id loading_text +id local_ip +id local_ip_view +id map_amap_id_cursor +id media_actions +id media_animal_surface_view +id media_blur_img +id media_blur_img_above +id media_card_view +id media_dialog_content +id media_img +id media_name +id media_singer +id message +id mirror +id module_adas_dispatch_remind_affirm +id module_adas_dispatch_remind_cancel +id module_adas_dispatch_remind_loc +id module_adas_dispatch_remind_timer +id module_commons_marker_car_model +id module_commons_toast_left_drawable +id module_commons_toast_msg +id module_commons_wm_dialog_button_cancel +id module_commons_wm_dialog_button_ok +id module_commons_wm_dialog_content +id module_map_amap_my_location_bg_iv +id module_map_amap_my_location_iv +id module_media_toast_inner +id module_service_id_call +id module_service_id_content +id module_service_id_marker_content +id module_service_id_tag +id module_service_id_user_header +id module_services_dispatch_dialog_confirm +id module_services_dispatch_dialog_end_content +id module_services_dispatch_dialog_flight_time +id module_services_dispatch_dialog_start_content +id module_services_dispatch_dialog_task_content +id module_services_dispatch_dialog_task_time +id module_services_dispatch_dialog_title +id module_services_empty_tip +id module_services_id_20Km_radius +id module_services_id_40Km_radius +id module_services_id_close +id module_services_id_error_container +id module_services_id_load_strategy_container +id module_services_id_loading +id module_services_id_panel_item_avatar +id module_services_id_panel_item_call +id module_services_id_panel_item_detail +id module_services_id_panel_item_distance +id module_services_id_panel_item_distance_tag +id module_services_id_panel_item_nickname +id module_services_id_recycler_view +id module_services_id_title +id module_services_status_iv +id module_services_status_tv +id multiply +id music_progress_bar +id name +id next_music +id no_share_back_id +id no_share_medial_image_id +id no_share_medial_singer_name_id +id no_share_medial_song_name_id +id none +id normal +id notification_background +id notification_main_column +id notification_main_column_container +id obu_ip_view +id obu_state +id off +id on +id packed +id parent +id parentPanel +id percent +id play_pause_music +id preview_view +id progress_circular +id progress_horizontal +id r_btn +id radio +id refresh_button +id repeat +id right +id right_all_time_progress +id right_icon +id right_side +id rl_login_fail +id rl_qr_code +id round +id save_obu_ip +id screen +id scrollIndicatorDown +id scrollIndicatorUp +id scrollView +id search_badge +id search_bar +id search_button +id search_close_btn +id search_edit_frame +id search_go_btn +id search_mag_icon +id search_plate +id search_src_text +id search_voice_btn +id select_dialog_listview +id shape_id +id share_back_id +id share_id +id share_medial_image_id +id share_medial_singer_name_id +id share_medial_song_name_id +id share_user_back_id +id share_user_heardImage +id share_user_name +id shortcut +id spacer +id split_action_bar +id spread +id spread_inside +id src_atop +id src_in +id src_over +id start +id status_bar_latest_event_content +id submenuarrow +id submit_area +id switch_account +id tabMode +id tag_accessibility_actions +id tag_accessibility_clickable_spans +id tag_accessibility_heading +id tag_accessibility_pane_title +id tag_screen_reader_focusable +id tag_transition_group +id tag_unhandled_key_event_manager +id tag_unhandled_key_listeners +id text +id text2 +id textSpacerNoButtons +id textSpacerNoTitle +id time +id title +id titleDividerNoCustom +id title_template +id top +id topPanel +id tvAuthorizeButtonContent +id tvAuthorizeContent +id tvAuthorizeLastContent +id tvAuthorizeLoading +id tvAuthorizeLoadingError +id tvAuthorizeTitle +id tvMarkerContent +id tv_fail_desc +id tv_scan_desc +id txtViewContent +id txt_cancel +id txt_cancle +id txt_content +id txt_ok +id txt_sub_content +id txt_title +id unchecked +id uniform +id up +id version +id vertical +id window_circle_bg +id window_circle_img +id window_circle_img_new +id window_current_time +id window_divide +id window_max_time +id window_music_next +id window_obscuration +id window_play_pause +id window_play_pause_new +id window_progress_bar +id window_scroll_txt +id wrap +id wrap_content +integer abc_config_activityDefaultDur +integer abc_config_activityShortDur +integer cancel_button_image_alpha +integer config_tooltipAnimTime +integer status_bar_notification_info_maxnum +interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 +interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 +interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 +interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 +interpolator btn_radio_to_off_mtrl_animation_interpolator_0 +interpolator btn_radio_to_on_mtrl_animation_interpolator_0 +interpolator fast_out_slow_in +layout abc_action_bar_title_item +layout abc_action_bar_up_container +layout abc_action_menu_item_layout +layout abc_action_menu_layout +layout abc_action_mode_bar +layout abc_action_mode_close_item_material +layout abc_activity_chooser_view +layout abc_activity_chooser_view_list_item +layout abc_alert_dialog_button_bar_material +layout abc_alert_dialog_material +layout abc_alert_dialog_title_material +layout abc_cascading_menu_item_layout +layout abc_dialog_title_material +layout abc_expanded_menu_layout +layout abc_list_menu_item_checkbox +layout abc_list_menu_item_icon +layout abc_list_menu_item_layout +layout abc_list_menu_item_radio +layout abc_popup_menu_header_item_layout +layout abc_popup_menu_item_layout +layout abc_screen_content_include +layout abc_screen_simple +layout abc_screen_simple_overlay_action_mode +layout abc_screen_toolbar +layout abc_search_dropdown_item_icons_2line +layout abc_search_view +layout abc_select_dialog_material +layout abc_tooltip +layout activity_auth +layout activity_scan_qr +layout custom_dialog +layout dialog_adas_dispatch_remind +layout dialog_can_config +layout dialog_cutom_layout +layout item +layout item_radio_btn +layout layout_pad_login +layout map_amap_cursor +layout modeules_commons_layout_custom_ratingbar +layout modudle_camera_layout_info +layout modudle_services_marker_info_window_layout +layout modudle_services_marker_layout +layout modudle_services_marker_layout_info +layout modudle_services_marker_vr_layout +layout module_authorize_fragment +layout module_common_bezier_layout +layout module_common_my_location +layout module_common_warning_marker_bottom +layout module_common_warning_marker_front +layout module_commons_layout_car +layout module_commons_layout_toast +layout module_commons_layout_toast_with_left_drawable +layout module_commons_layout_wm_dialog +layout module_dialog_adas_dispatch_airport +layout module_dialog_adas_dispatch_cars +layout module_media_bubble_marker +layout module_media_card_fragment_view +layout module_media_dialog_cutom_layout +layout module_media_music_window_alert_layout +layout module_media_music_window_alert_layout_new +layout module_media_share_fragment_view +layout module_media_share_toast_view +layout module_services_fragment_online_car_panel +layout module_services_online_car_panel_item +layout module_services_status_panel +layout network_loading_item +layout notification_action +layout notification_action_tombstone +layout notification_media_action +layout notification_media_cancel_action +layout notification_template_big_media +layout notification_template_big_media_custom +layout notification_template_big_media_narrow +layout notification_template_big_media_narrow_custom +layout notification_template_custom_big +layout notification_template_icon_group +layout notification_template_lines_media +layout notification_template_media +layout notification_template_media_custom +layout notification_template_part_chronometer +layout notification_template_part_time +layout select_dialog_item_material +layout select_dialog_multichoice_material +layout select_dialog_singlechoice_material +layout support_simple_spinner_dropdown_item +mipmap module_authorize_loading +mipmap module_authorize_loading_error +mipmap module_authorize_title_left_symbol +mipmap module_authorize_title_right_symbol +raw beep +raw daba +raw kache +raw motuoche +raw people +raw shexiangtou +raw special_vehicle +raw stopline +raw tachexiaoche +raw taxi +raw v2x_daolujiebing +raw v2x_daolujishui +raw v2x_daolushigong +raw v2x_guzhangqiuzhu +raw v2x_jiaotongjiancha +raw v2x_nongwu +raw v2x_shigong_warning +raw v2x_shigu +raw v2x_shishilukuang +raw v2x_yongdu +raw ziche +raw zixingche +string abc_action_bar_home_description +string abc_action_bar_up_description +string abc_action_menu_overflow_description +string abc_action_mode_done +string abc_activity_chooser_view_see_all +string abc_activitychooserview_choose_application +string abc_capital_off +string abc_capital_on +string abc_font_family_body_1_material +string abc_font_family_body_2_material +string abc_font_family_button_material +string abc_font_family_caption_material +string abc_font_family_display_1_material +string abc_font_family_display_2_material +string abc_font_family_display_3_material +string abc_font_family_display_4_material +string abc_font_family_headline_material +string abc_font_family_menu_material +string abc_font_family_subhead_material +string abc_font_family_title_material +string abc_menu_alt_shortcut_label +string abc_menu_ctrl_shortcut_label +string abc_menu_delete_shortcut_label +string abc_menu_enter_shortcut_label +string abc_menu_function_shortcut_label +string abc_menu_meta_shortcut_label +string abc_menu_shift_shortcut_label +string abc_menu_space_shortcut_label +string abc_menu_sym_shortcut_label +string abc_prepend_shortcut_label +string abc_search_hint +string abc_searchview_description_clear +string abc_searchview_description_query +string abc_searchview_description_search +string abc_searchview_description_submit +string abc_searchview_description_voice +string abc_shareactionprovider_share_with +string abc_shareactionprovider_share_with_application +string abc_toolbar_collapse_description +string app_name +string media_qq_share_content_from +string media_qq_share_content_share +string module_adas_dispatch_remind_affirm +string module_adas_dispatch_remind_cancel +string module_adas_dispatch_remind_content +string module_adas_dispatch_remind_title +string module_authorize_agreement_agree +string module_authorize_agreement_disagree +string module_authorize_agreement_error +string module_authorize_agreement_loading +string module_authorize_agreement_retry +string module_authorize_agreement_tip +string module_authorize_failed +string module_commons_button_cancel +string module_commons_button_ok +string module_commons_exit_navi_content +string module_media_share_fail +string module_media_share_lan_ren +string module_media_share_le_ting_news +string module_media_share_qq_music +string module_media_share_success +string module_service_app_entrance_text +string module_service_launcher_card_info +string module_service_launcher_card_tips +string module_service_open_app_tip +string module_services_dispatch_cars_affirm +string module_services_dispatch_cars_cancel +string module_services_dispatch_cars_remind_content +string module_services_dispatch_cars_remind_title +string module_services_dispatch_dialog_affirm +string module_services_dispatch_dialog_end_loc +string module_services_dispatch_dialog_flight_info +string module_services_dispatch_dialog_start_loc +string module_services_dispatch_dialog_task_info +string module_services_dispatch_dialog_task_time +string module_services_dispatch_dialog_title +string module_services_error_text +string module_services_online_car_panel_empty_tmpl +string module_services_online_car_panel_title +string module_services_panel_item_call +string module_services_panel_item_detail_text +string module_services_panel_item_distance_tag_text +string module_services_str_20Km_radius +string module_services_str_40Km_radius +string network_resp_error +string search_menu_title +string status_bar_notification_info_overflow +string str_pad_login_sure +style AlertDialog_AppCompat +style AlertDialog_AppCompat_Light +style Animation_AppCompat_Dialog +style Animation_AppCompat_DropDownUp +style Animation_AppCompat_Tooltip +style AppTheme +style BaseFloatDialogStyle +style Base_AlertDialog_AppCompat +style Base_AlertDialog_AppCompat_Light +style Base_Animation_AppCompat_Dialog +style Base_Animation_AppCompat_DropDownUp +style Base_Animation_AppCompat_Tooltip +style Base_DialogWindowTitleBackground_AppCompat +style Base_DialogWindowTitle_AppCompat +style Base_TextAppearance_AppCompat +style Base_TextAppearance_AppCompat_Body1 +style Base_TextAppearance_AppCompat_Body2 +style Base_TextAppearance_AppCompat_Button +style Base_TextAppearance_AppCompat_Caption +style Base_TextAppearance_AppCompat_Display1 +style Base_TextAppearance_AppCompat_Display2 +style Base_TextAppearance_AppCompat_Display3 +style Base_TextAppearance_AppCompat_Display4 +style Base_TextAppearance_AppCompat_Headline +style Base_TextAppearance_AppCompat_Inverse +style Base_TextAppearance_AppCompat_Large +style Base_TextAppearance_AppCompat_Large_Inverse +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Medium +style Base_TextAppearance_AppCompat_Medium_Inverse +style Base_TextAppearance_AppCompat_Menu +style Base_TextAppearance_AppCompat_SearchResult +style Base_TextAppearance_AppCompat_SearchResult_Subtitle +style Base_TextAppearance_AppCompat_SearchResult_Title +style Base_TextAppearance_AppCompat_Small +style Base_TextAppearance_AppCompat_Small_Inverse +style Base_TextAppearance_AppCompat_Subhead +style Base_TextAppearance_AppCompat_Subhead_Inverse +style Base_TextAppearance_AppCompat_Title +style Base_TextAppearance_AppCompat_Title_Inverse +style Base_TextAppearance_AppCompat_Tooltip +style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionMode_Title +style Base_TextAppearance_AppCompat_Widget_Button +style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Inverse +style Base_TextAppearance_AppCompat_Widget_DropDownItem +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Widget_Switch +style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style Base_TextAppearance_Widget_AppCompat_Toolbar_Title +style Base_ThemeOverlay_AppCompat +style Base_ThemeOverlay_AppCompat_ActionBar +style Base_ThemeOverlay_AppCompat_Dark +style Base_ThemeOverlay_AppCompat_Dark_ActionBar +style Base_ThemeOverlay_AppCompat_Dialog +style Base_ThemeOverlay_AppCompat_Dialog_Alert +style Base_ThemeOverlay_AppCompat_Light +style Base_Theme_AppCompat +style Base_Theme_AppCompat_CompactMenu +style Base_Theme_AppCompat_Dialog +style Base_Theme_AppCompat_DialogWhenLarge +style Base_Theme_AppCompat_Dialog_Alert +style Base_Theme_AppCompat_Dialog_FixedSize +style Base_Theme_AppCompat_Dialog_MinWidth +style Base_Theme_AppCompat_Light +style Base_Theme_AppCompat_Light_DarkActionBar +style Base_Theme_AppCompat_Light_Dialog +style Base_Theme_AppCompat_Light_DialogWhenLarge +style Base_Theme_AppCompat_Light_Dialog_Alert +style Base_Theme_AppCompat_Light_Dialog_FixedSize +style Base_Theme_AppCompat_Light_Dialog_MinWidth +style Base_V21_ThemeOverlay_AppCompat_Dialog +style Base_V21_Theme_AppCompat +style Base_V21_Theme_AppCompat_Dialog +style Base_V21_Theme_AppCompat_Light +style Base_V21_Theme_AppCompat_Light_Dialog +style Base_V22_Theme_AppCompat +style Base_V22_Theme_AppCompat_Light +style Base_V23_Theme_AppCompat +style Base_V23_Theme_AppCompat_Light +style Base_V26_Theme_AppCompat +style Base_V26_Theme_AppCompat_Light +style Base_V26_Widget_AppCompat_Toolbar +style Base_V28_Theme_AppCompat +style Base_V28_Theme_AppCompat_Light +style Base_V7_ThemeOverlay_AppCompat_Dialog +style Base_V7_Theme_AppCompat +style Base_V7_Theme_AppCompat_Dialog +style Base_V7_Theme_AppCompat_Light +style Base_V7_Theme_AppCompat_Light_Dialog +style Base_V7_Widget_AppCompat_AutoCompleteTextView +style Base_V7_Widget_AppCompat_EditText +style Base_V7_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_ActionBar +style Base_Widget_AppCompat_ActionBar_Solid +style Base_Widget_AppCompat_ActionBar_TabBar +style Base_Widget_AppCompat_ActionBar_TabText +style Base_Widget_AppCompat_ActionBar_TabView +style Base_Widget_AppCompat_ActionButton +style Base_Widget_AppCompat_ActionButton_CloseMode +style Base_Widget_AppCompat_ActionButton_Overflow +style Base_Widget_AppCompat_ActionMode +style Base_Widget_AppCompat_ActivityChooserView +style Base_Widget_AppCompat_AutoCompleteTextView +style Base_Widget_AppCompat_Button +style Base_Widget_AppCompat_ButtonBar +style Base_Widget_AppCompat_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Borderless +style Base_Widget_AppCompat_Button_Borderless_Colored +style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Colored +style Base_Widget_AppCompat_Button_Small +style Base_Widget_AppCompat_CompoundButton_CheckBox +style Base_Widget_AppCompat_CompoundButton_RadioButton +style Base_Widget_AppCompat_CompoundButton_Switch +style Base_Widget_AppCompat_DrawerArrowToggle +style Base_Widget_AppCompat_DrawerArrowToggle_Common +style Base_Widget_AppCompat_DropDownItem_Spinner +style Base_Widget_AppCompat_EditText +style Base_Widget_AppCompat_ImageButton +style Base_Widget_AppCompat_Light_ActionBar +style Base_Widget_AppCompat_Light_ActionBar_Solid +style Base_Widget_AppCompat_Light_ActionBar_TabBar +style Base_Widget_AppCompat_Light_ActionBar_TabText +style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Base_Widget_AppCompat_Light_ActionBar_TabView +style Base_Widget_AppCompat_Light_PopupMenu +style Base_Widget_AppCompat_Light_PopupMenu_Overflow +style Base_Widget_AppCompat_ListMenuView +style Base_Widget_AppCompat_ListPopupWindow +style Base_Widget_AppCompat_ListView +style Base_Widget_AppCompat_ListView_DropDown +style Base_Widget_AppCompat_ListView_Menu +style Base_Widget_AppCompat_PopupMenu +style Base_Widget_AppCompat_PopupMenu_Overflow +style Base_Widget_AppCompat_PopupWindow +style Base_Widget_AppCompat_ProgressBar +style Base_Widget_AppCompat_ProgressBar_Horizontal +style Base_Widget_AppCompat_RatingBar +style Base_Widget_AppCompat_RatingBar_Indicator +style Base_Widget_AppCompat_RatingBar_Small +style Base_Widget_AppCompat_SearchView +style Base_Widget_AppCompat_SearchView_ActionBar +style Base_Widget_AppCompat_SeekBar +style Base_Widget_AppCompat_SeekBar_Discrete +style Base_Widget_AppCompat_Spinner +style Base_Widget_AppCompat_Spinner_Underlined +style Base_Widget_AppCompat_TextView +style Base_Widget_AppCompat_TextView_SpinnerItem +style Base_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_Toolbar_Button_Navigation +style DialogTransparentStyle +style Platform_AppCompat +style Platform_AppCompat_Light +style Platform_ThemeOverlay_AppCompat +style Platform_ThemeOverlay_AppCompat_Dark +style Platform_ThemeOverlay_AppCompat_Light +style Platform_V21_AppCompat +style Platform_V21_AppCompat_Light +style Platform_V25_AppCompat +style Platform_V25_AppCompat_Light +style Platform_Widget_AppCompat_Spinner +style RadioBtnStyle +style RtlOverlay_DialogWindowTitle_AppCompat +style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +style RtlOverlay_Widget_AppCompat_DialogTitle_Icon +style RtlOverlay_Widget_AppCompat_PopupMenuItem +style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +style RtlOverlay_Widget_AppCompat_SearchView_MagIcon +style RtlOverlay_Widget_AppCompat_Search_DropDown +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Query +style RtlOverlay_Widget_AppCompat_Search_DropDown_Text +style RtlUnderlay_Widget_AppCompat_ActionButton +style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +style TextAppearance_AppCompat +style TextAppearance_AppCompat_Body1 +style TextAppearance_AppCompat_Body2 +style TextAppearance_AppCompat_Button +style TextAppearance_AppCompat_Caption +style TextAppearance_AppCompat_Display1 +style TextAppearance_AppCompat_Display2 +style TextAppearance_AppCompat_Display3 +style TextAppearance_AppCompat_Display4 +style TextAppearance_AppCompat_Headline +style TextAppearance_AppCompat_Inverse +style TextAppearance_AppCompat_Large +style TextAppearance_AppCompat_Large_Inverse +style TextAppearance_AppCompat_Light_SearchResult_Subtitle +style TextAppearance_AppCompat_Light_SearchResult_Title +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Medium +style TextAppearance_AppCompat_Medium_Inverse +style TextAppearance_AppCompat_Menu +style TextAppearance_AppCompat_SearchResult_Subtitle +style TextAppearance_AppCompat_SearchResult_Title +style TextAppearance_AppCompat_Small +style TextAppearance_AppCompat_Small_Inverse +style TextAppearance_AppCompat_Subhead +style TextAppearance_AppCompat_Subhead_Inverse +style TextAppearance_AppCompat_Title +style TextAppearance_AppCompat_Title_Inverse +style TextAppearance_AppCompat_Tooltip +style TextAppearance_AppCompat_Widget_ActionBar_Menu +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionBar_Title +style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Title +style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +style TextAppearance_AppCompat_Widget_Button +style TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style TextAppearance_AppCompat_Widget_Button_Colored +style TextAppearance_AppCompat_Widget_Button_Inverse +style TextAppearance_AppCompat_Widget_DropDownItem +style TextAppearance_AppCompat_Widget_PopupMenu_Header +style TextAppearance_AppCompat_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Widget_Switch +style TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style TextAppearance_Compat_Notification +style TextAppearance_Compat_Notification_Info +style TextAppearance_Compat_Notification_Info_Media +style TextAppearance_Compat_Notification_Line2 +style TextAppearance_Compat_Notification_Line2_Media +style TextAppearance_Compat_Notification_Media +style TextAppearance_Compat_Notification_Time +style TextAppearance_Compat_Notification_Time_Media +style TextAppearance_Compat_Notification_Title +style TextAppearance_Compat_Notification_Title_Media +style TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style TextAppearance_Widget_AppCompat_Toolbar_Title +style ThemeOverlay_AppCompat +style ThemeOverlay_AppCompat_ActionBar +style ThemeOverlay_AppCompat_Dark +style ThemeOverlay_AppCompat_Dark_ActionBar +style ThemeOverlay_AppCompat_DayNight +style ThemeOverlay_AppCompat_DayNight_ActionBar +style ThemeOverlay_AppCompat_Dialog +style ThemeOverlay_AppCompat_Dialog_Alert +style ThemeOverlay_AppCompat_Light +style Theme_AppCompat +style Theme_AppCompat_CompactMenu +style Theme_AppCompat_DayNight +style Theme_AppCompat_DayNight_DarkActionBar +style Theme_AppCompat_DayNight_Dialog +style Theme_AppCompat_DayNight_DialogWhenLarge +style Theme_AppCompat_DayNight_Dialog_Alert +style Theme_AppCompat_DayNight_Dialog_MinWidth +style Theme_AppCompat_DayNight_NoActionBar +style Theme_AppCompat_Dialog +style Theme_AppCompat_DialogWhenLarge +style Theme_AppCompat_Dialog_Alert +style Theme_AppCompat_Dialog_MinWidth +style Theme_AppCompat_Light +style Theme_AppCompat_Light_DarkActionBar +style Theme_AppCompat_Light_Dialog +style Theme_AppCompat_Light_DialogWhenLarge +style Theme_AppCompat_Light_Dialog_Alert +style Theme_AppCompat_Light_Dialog_MinWidth +style Theme_AppCompat_Light_NoActionBar +style Theme_AppCompat_NoActionBar +style Theme_AppMain +style Widget_AppCompat_ActionBar +style Widget_AppCompat_ActionBar_Solid +style Widget_AppCompat_ActionBar_TabBar +style Widget_AppCompat_ActionBar_TabText +style Widget_AppCompat_ActionBar_TabView +style Widget_AppCompat_ActionButton +style Widget_AppCompat_ActionButton_CloseMode +style Widget_AppCompat_ActionButton_Overflow +style Widget_AppCompat_ActionMode +style Widget_AppCompat_ActivityChooserView +style Widget_AppCompat_AutoCompleteTextView +style Widget_AppCompat_Button +style Widget_AppCompat_ButtonBar +style Widget_AppCompat_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Borderless +style Widget_AppCompat_Button_Borderless_Colored +style Widget_AppCompat_Button_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Colored +style Widget_AppCompat_Button_Small +style Widget_AppCompat_CompoundButton_CheckBox +style Widget_AppCompat_CompoundButton_RadioButton +style Widget_AppCompat_CompoundButton_Switch +style Widget_AppCompat_DrawerArrowToggle +style Widget_AppCompat_DropDownItem_Spinner +style Widget_AppCompat_EditText +style Widget_AppCompat_ImageButton +style Widget_AppCompat_Light_ActionBar +style Widget_AppCompat_Light_ActionBar_Solid +style Widget_AppCompat_Light_ActionBar_Solid_Inverse +style Widget_AppCompat_Light_ActionBar_TabBar +style Widget_AppCompat_Light_ActionBar_TabBar_Inverse +style Widget_AppCompat_Light_ActionBar_TabText +style Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Widget_AppCompat_Light_ActionBar_TabView +style Widget_AppCompat_Light_ActionBar_TabView_Inverse +style Widget_AppCompat_Light_ActionButton +style Widget_AppCompat_Light_ActionButton_CloseMode +style Widget_AppCompat_Light_ActionButton_Overflow +style Widget_AppCompat_Light_ActionMode_Inverse +style Widget_AppCompat_Light_ActivityChooserView +style Widget_AppCompat_Light_AutoCompleteTextView +style Widget_AppCompat_Light_DropDownItem_Spinner +style Widget_AppCompat_Light_ListPopupWindow +style Widget_AppCompat_Light_ListView_DropDown +style Widget_AppCompat_Light_PopupMenu +style Widget_AppCompat_Light_PopupMenu_Overflow +style Widget_AppCompat_Light_SearchView +style Widget_AppCompat_Light_Spinner_DropDown_ActionBar +style Widget_AppCompat_ListMenuView +style Widget_AppCompat_ListPopupWindow +style Widget_AppCompat_ListView +style Widget_AppCompat_ListView_DropDown +style Widget_AppCompat_ListView_Menu +style Widget_AppCompat_PopupMenu +style Widget_AppCompat_PopupMenu_Overflow +style Widget_AppCompat_PopupWindow +style Widget_AppCompat_ProgressBar +style Widget_AppCompat_ProgressBar_Horizontal +style Widget_AppCompat_RatingBar +style Widget_AppCompat_RatingBar_Indicator +style Widget_AppCompat_RatingBar_Small +style Widget_AppCompat_SearchView +style Widget_AppCompat_SearchView_ActionBar +style Widget_AppCompat_SeekBar +style Widget_AppCompat_SeekBar_Discrete +style Widget_AppCompat_Spinner +style Widget_AppCompat_Spinner_DropDown +style Widget_AppCompat_Spinner_DropDown_ActionBar +style Widget_AppCompat_Spinner_Underlined +style Widget_AppCompat_TextView +style Widget_AppCompat_TextView_SpinnerItem +style Widget_AppCompat_Toolbar +style Widget_AppCompat_Toolbar_Button_Navigation +style Widget_Compat_NotificationActionContainer +style Widget_Compat_NotificationActionText +style Widget_Support_CoordinatorLayout +style customHeartHeartRatingBarStyle +styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle +styleable ActionBarLayout android_layout_gravity +styleable ActionMenuItemView android_minWidth +styleable ActionMenuView +styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle +styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount +styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout +styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible +styleable AnimatedStateListDrawableItem android_drawable android_id +styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId +styleable AppCompatImageView android_src srcCompat tint tintMode +styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode +styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance +styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale +styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle +styleable AutoScannerView btmText btmTextSize maskColor scanline showRectLine topText topTextSize triAngleColor triAngleLength triAngleWidth +styleable ButtonBarLayout allowStacking +styleable ColorStateListItem alpha android_alpha android_color +styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode +styleable ConstraintLayout_Layout android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation barrierAllowsGoneWidgets barrierDirection chainUseRtl constraintSet constraint_referenced_ids layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_optimizationLevel +styleable ConstraintLayout_placeholder content emptyVisibility +styleable ConstraintSet android_alpha android_elevation android_id android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ android_visibility barrierAllowsGoneWidgets barrierDirection chainUseRtl constraint_referenced_ids layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop +styleable CoordinatorLayout keylines statusBarBackground +styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline +styleable CustomCircleImageView civ_border_color civ_border_overlay civ_border_width civ_fill_color +styleable CustomRatingBar OtherHeartImg clickable elenmentCount elenmentEmpty elenmentFill elenmentHarf elenmentHeight elenmentPadding elenmentStep elenmentWidth stepSize +styleable DiscreteScrollView dsv_orientation +styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness +styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery +styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex +styleable GenericDraweeHierarchy actualImageScaleType backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio +styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type +styleable GradientColorItem android_color android_offset +styleable LinearConstraintLayout android_orientation +styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers +styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width +styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset +styleable MediaCircleImageView2 civ_border_color civ_border_overlay civ_border_width civ_fill_color +styleable MediaRoundedImageView android_scaleType riv_border_color riv_border_width riv_corner_radius riv_corner_radius_bottom_left riv_corner_radius_bottom_right riv_corner_radius_top_left riv_corner_radius_top_right riv_mutate_background riv_oval riv_tile_mode riv_tile_mode_x riv_tile_mode_y +styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible +styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText +styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow +styleable MogoImageView miv_blurRadius miv_borderColor miv_bottomLeftRadius miv_bottomRightRadius miv_failureHolder miv_isBlur miv_overlayImageId miv_placeHolder miv_radius miv_shape miv_shapeBorderWidth miv_topLeftRadius miv_topRightRadius +styleable MogoSkinBackgroundHelper android_background +styleable MogoSkinCompatImageView android_src android_tint srcCompat tint +styleable MogoSkinCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance +styleable MogoSkinTextAppearance android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textSize android_textStyle android_typeface textAllCaps +styleable PercentageRing circleBackground radius ringColor textColor +styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor +styleable PopupWindowBackgroundState state_above_anchor +styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle +styleable RecyclerView android_clipToPadding android_descendantFocusability android_orientation fastScrollEnabled fastScrollHorizontalThumbDrawable fastScrollHorizontalTrackDrawable fastScrollVerticalThumbDrawable fastScrollVerticalTrackDrawable layoutManager reverseLayout spanCount stackFromEnd +styleable RoundLayout roundLayoutRadius +styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon +styleable SimpleDraweeView actualImageResource actualImageScaleType actualImageUri backgroundImage fadeDuration failureImage failureImageScaleType overlayImage placeholderImage placeholderImageScaleType pressedStateOverlayImage progressBarAutoRotateInterval progressBarImage progressBarImageScaleType retryImage retryImageScaleType roundAsCircle roundBottomEnd roundBottomLeft roundBottomRight roundBottomStart roundTopEnd roundTopLeft roundTopRight roundTopStart roundWithOverlayColor roundedCornerRadius roundingBorderColor roundingBorderPadding roundingBorderWidth viewAspectRatio +styleable SkinCompatProgressBar android_indeterminateDrawable android_progressDrawable +styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme +styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible +styleable StateListDrawableItem android_drawable +styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode +styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale +styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor +styleable View android_focusable android_theme paddingEnd paddingStart theme +styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode +styleable ViewStubCompat android_id android_inflatedId android_layout diff --git a/modules/mogo-module-media/build/intermediates/symbols/debug/R.txt b/modules/mogo-module-media/build/intermediates/symbols/debug/R.txt new file mode 100644 index 0000000000..8261919b86 --- /dev/null +++ b/modules/mogo-module-media/build/intermediates/symbols/debug/R.txt @@ -0,0 +1,4313 @@ +int anim abc_fade_in 0x7f010001 +int anim abc_fade_out 0x7f010002 +int anim abc_grow_fade_in_from_bottom 0x7f010003 +int anim abc_popup_enter 0x7f010004 +int anim abc_popup_exit 0x7f010005 +int anim abc_shrink_fade_out_from_bottom 0x7f010006 +int anim abc_slide_in_bottom 0x7f010007 +int anim abc_slide_in_top 0x7f010008 +int anim abc_slide_out_bottom 0x7f010009 +int anim abc_slide_out_top 0x7f01000a +int anim abc_tooltip_enter 0x7f01000b +int anim abc_tooltip_exit 0x7f01000c +int anim btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000d +int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000e +int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000f +int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f010010 +int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010011 +int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010012 +int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010013 +int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010014 +int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010015 +int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010016 +int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010017 +int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010018 +int attr OtherHeartImg 0x7f040001 +int attr actionBarDivider 0x7f040002 +int attr actionBarItemBackground 0x7f040003 +int attr actionBarPopupTheme 0x7f040004 +int attr actionBarSize 0x7f040005 +int attr actionBarSplitStyle 0x7f040006 +int attr actionBarStyle 0x7f040007 +int attr actionBarTabBarStyle 0x7f040008 +int attr actionBarTabStyle 0x7f040009 +int attr actionBarTabTextStyle 0x7f04000a +int attr actionBarTheme 0x7f04000b +int attr actionBarWidgetTheme 0x7f04000c +int attr actionButtonStyle 0x7f04000d +int attr actionDropDownStyle 0x7f04000e +int attr actionLayout 0x7f04000f +int attr actionMenuTextAppearance 0x7f040010 +int attr actionMenuTextColor 0x7f040011 +int attr actionModeBackground 0x7f040012 +int attr actionModeCloseButtonStyle 0x7f040013 +int attr actionModeCloseDrawable 0x7f040014 +int attr actionModeCopyDrawable 0x7f040015 +int attr actionModeCutDrawable 0x7f040016 +int attr actionModeFindDrawable 0x7f040017 +int attr actionModePasteDrawable 0x7f040018 +int attr actionModePopupWindowStyle 0x7f040019 +int attr actionModeSelectAllDrawable 0x7f04001a +int attr actionModeShareDrawable 0x7f04001b +int attr actionModeSplitBackground 0x7f04001c +int attr actionModeStyle 0x7f04001d +int attr actionModeWebSearchDrawable 0x7f04001e +int attr actionOverflowButtonStyle 0x7f04001f +int attr actionOverflowMenuStyle 0x7f040020 +int attr actionProviderClass 0x7f040021 +int attr actionViewClass 0x7f040022 +int attr activityChooserViewStyle 0x7f040023 +int attr actualImageResource 0x7f040024 +int attr actualImageScaleType 0x7f040025 +int attr actualImageUri 0x7f040026 +int attr alertDialogButtonGroupStyle 0x7f040027 +int attr alertDialogCenterButtons 0x7f040028 +int attr alertDialogStyle 0x7f040029 +int attr alertDialogTheme 0x7f04002a +int attr allowStacking 0x7f04002b +int attr alpha 0x7f04002c +int attr alphabeticModifiers 0x7f04002d +int attr arrowHeadLength 0x7f04002e +int attr arrowShaftLength 0x7f04002f +int attr autoCompleteTextViewStyle 0x7f040030 +int attr autoSizeMaxTextSize 0x7f040031 +int attr autoSizeMinTextSize 0x7f040032 +int attr autoSizePresetSizes 0x7f040033 +int attr autoSizeStepGranularity 0x7f040034 +int attr autoSizeTextType 0x7f040035 +int attr background 0x7f040036 +int attr backgroundImage 0x7f040037 +int attr backgroundSplit 0x7f040038 +int attr backgroundStacked 0x7f040039 +int attr backgroundTint 0x7f04003a +int attr backgroundTintMode 0x7f04003b +int attr barLength 0x7f04003c +int attr barrierAllowsGoneWidgets 0x7f04003d +int attr barrierDirection 0x7f04003e +int attr borderlessButtonStyle 0x7f04003f +int attr btmText 0x7f040040 +int attr btmTextSize 0x7f040041 +int attr buttonBarButtonStyle 0x7f040042 +int attr buttonBarNegativeButtonStyle 0x7f040043 +int attr buttonBarNeutralButtonStyle 0x7f040044 +int attr buttonBarPositiveButtonStyle 0x7f040045 +int attr buttonBarStyle 0x7f040046 +int attr buttonCompat 0x7f040047 +int attr buttonGravity 0x7f040048 +int attr buttonIconDimen 0x7f040049 +int attr buttonPanelSideLayout 0x7f04004a +int attr buttonStyle 0x7f04004b +int attr buttonStyleSmall 0x7f04004c +int attr buttonTint 0x7f04004d +int attr buttonTintMode 0x7f04004e +int attr chainUseRtl 0x7f04004f +int attr checkboxStyle 0x7f040050 +int attr checkedTextViewStyle 0x7f040051 +int attr circleBackground 0x7f040052 +int attr civ_border_color 0x7f040053 +int attr civ_border_overlay 0x7f040054 +int attr civ_border_width 0x7f040055 +int attr civ_fill_color 0x7f040056 +int attr clickable 0x7f040057 +int attr closeIcon 0x7f040058 +int attr closeItemLayout 0x7f040059 +int attr collapseContentDescription 0x7f04005a +int attr collapseIcon 0x7f04005b +int attr color 0x7f04005c +int attr colorAccent 0x7f04005d +int attr colorBackgroundFloating 0x7f04005e +int attr colorButtonNormal 0x7f04005f +int attr colorControlActivated 0x7f040060 +int attr colorControlHighlight 0x7f040061 +int attr colorControlNormal 0x7f040062 +int attr colorError 0x7f040063 +int attr colorPrimary 0x7f040064 +int attr colorPrimaryDark 0x7f040065 +int attr colorSwitchThumbNormal 0x7f040066 +int attr commitIcon 0x7f040067 +int attr constraintSet 0x7f040068 +int attr constraint_referenced_ids 0x7f040069 +int attr content 0x7f04006a +int attr contentDescription 0x7f04006b +int attr contentInsetEnd 0x7f04006c +int attr contentInsetEndWithActions 0x7f04006d +int attr contentInsetLeft 0x7f04006e +int attr contentInsetRight 0x7f04006f +int attr contentInsetStart 0x7f040070 +int attr contentInsetStartWithNavigation 0x7f040071 +int attr controlBackground 0x7f040072 +int attr coordinatorLayoutStyle 0x7f040073 +int attr customNavigationLayout 0x7f040074 +int attr defaultQueryHint 0x7f040075 +int attr dialogCornerRadius 0x7f040076 +int attr dialogPreferredPadding 0x7f040077 +int attr dialogTheme 0x7f040078 +int attr displayOptions 0x7f040079 +int attr divider 0x7f04007a +int attr dividerHorizontal 0x7f04007b +int attr dividerPadding 0x7f04007c +int attr dividerVertical 0x7f04007d +int attr drawableBottomCompat 0x7f04007e +int attr drawableEndCompat 0x7f04007f +int attr drawableLeftCompat 0x7f040080 +int attr drawableRightCompat 0x7f040081 +int attr drawableSize 0x7f040082 +int attr drawableStartCompat 0x7f040083 +int attr drawableTint 0x7f040084 +int attr drawableTintMode 0x7f040085 +int attr drawableTopCompat 0x7f040086 +int attr drawerArrowStyle 0x7f040087 +int attr dropDownListViewStyle 0x7f040088 +int attr dropdownListPreferredItemHeight 0x7f040089 +int attr dsv_orientation 0x7f04008a +int attr editTextBackground 0x7f04008b +int attr editTextColor 0x7f04008c +int attr editTextStyle 0x7f04008d +int attr elenmentCount 0x7f04008e +int attr elenmentEmpty 0x7f04008f +int attr elenmentFill 0x7f040090 +int attr elenmentHarf 0x7f040091 +int attr elenmentHeight 0x7f040092 +int attr elenmentPadding 0x7f040093 +int attr elenmentStep 0x7f040094 +int attr elenmentWidth 0x7f040095 +int attr elevation 0x7f040096 +int attr emptyVisibility 0x7f040097 +int attr expandActivityOverflowButtonDrawable 0x7f040098 +int attr fadeDuration 0x7f040099 +int attr failureImage 0x7f04009a +int attr failureImageScaleType 0x7f04009b +int attr fastScrollEnabled 0x7f04009c +int attr fastScrollHorizontalThumbDrawable 0x7f04009d +int attr fastScrollHorizontalTrackDrawable 0x7f04009e +int attr fastScrollVerticalThumbDrawable 0x7f04009f +int attr fastScrollVerticalTrackDrawable 0x7f0400a0 +int attr firstBaselineToTopHeight 0x7f0400a1 +int attr font 0x7f0400a2 +int attr fontFamily 0x7f0400a3 +int attr fontProviderAuthority 0x7f0400a4 +int attr fontProviderCerts 0x7f0400a5 +int attr fontProviderFetchStrategy 0x7f0400a6 +int attr fontProviderFetchTimeout 0x7f0400a7 +int attr fontProviderPackage 0x7f0400a8 +int attr fontProviderQuery 0x7f0400a9 +int attr fontStyle 0x7f0400aa +int attr fontVariationSettings 0x7f0400ab +int attr fontWeight 0x7f0400ac +int attr gapBetweenBars 0x7f0400ad +int attr goIcon 0x7f0400ae +int attr height 0x7f0400af +int attr hideOnContentScroll 0x7f0400b0 +int attr homeAsUpIndicator 0x7f0400b1 +int attr homeLayout 0x7f0400b2 +int attr icon 0x7f0400b3 +int attr iconTint 0x7f0400b4 +int attr iconTintMode 0x7f0400b5 +int attr iconifiedByDefault 0x7f0400b6 +int attr imageButtonStyle 0x7f0400b7 +int attr indeterminateProgressStyle 0x7f0400b8 +int attr initialActivityCount 0x7f0400b9 +int attr isLightTheme 0x7f0400ba +int attr itemPadding 0x7f0400bb +int attr keylines 0x7f0400bc +int attr lastBaselineToBottomHeight 0x7f0400bd +int attr layout 0x7f0400be +int attr layoutManager 0x7f0400bf +int attr layout_anchor 0x7f0400c0 +int attr layout_anchorGravity 0x7f0400c1 +int attr layout_behavior 0x7f0400c2 +int attr layout_constrainedHeight 0x7f0400c3 +int attr layout_constrainedWidth 0x7f0400c4 +int attr layout_constraintBaseline_creator 0x7f0400c5 +int attr layout_constraintBaseline_toBaselineOf 0x7f0400c6 +int attr layout_constraintBottom_creator 0x7f0400c7 +int attr layout_constraintBottom_toBottomOf 0x7f0400c8 +int attr layout_constraintBottom_toTopOf 0x7f0400c9 +int attr layout_constraintCircle 0x7f0400ca +int attr layout_constraintCircleAngle 0x7f0400cb +int attr layout_constraintCircleRadius 0x7f0400cc +int attr layout_constraintDimensionRatio 0x7f0400cd +int attr layout_constraintEnd_toEndOf 0x7f0400ce +int attr layout_constraintEnd_toStartOf 0x7f0400cf +int attr layout_constraintGuide_begin 0x7f0400d0 +int attr layout_constraintGuide_end 0x7f0400d1 +int attr layout_constraintGuide_percent 0x7f0400d2 +int attr layout_constraintHeight_default 0x7f0400d3 +int attr layout_constraintHeight_max 0x7f0400d4 +int attr layout_constraintHeight_min 0x7f0400d5 +int attr layout_constraintHeight_percent 0x7f0400d6 +int attr layout_constraintHorizontal_bias 0x7f0400d7 +int attr layout_constraintHorizontal_chainStyle 0x7f0400d8 +int attr layout_constraintHorizontal_weight 0x7f0400d9 +int attr layout_constraintLeft_creator 0x7f0400da +int attr layout_constraintLeft_toLeftOf 0x7f0400db +int attr layout_constraintLeft_toRightOf 0x7f0400dc +int attr layout_constraintRight_creator 0x7f0400dd +int attr layout_constraintRight_toLeftOf 0x7f0400de +int attr layout_constraintRight_toRightOf 0x7f0400df +int attr layout_constraintStart_toEndOf 0x7f0400e0 +int attr layout_constraintStart_toStartOf 0x7f0400e1 +int attr layout_constraintTop_creator 0x7f0400e2 +int attr layout_constraintTop_toBottomOf 0x7f0400e3 +int attr layout_constraintTop_toTopOf 0x7f0400e4 +int attr layout_constraintVertical_bias 0x7f0400e5 +int attr layout_constraintVertical_chainStyle 0x7f0400e6 +int attr layout_constraintVertical_weight 0x7f0400e7 +int attr layout_constraintWidth_default 0x7f0400e8 +int attr layout_constraintWidth_max 0x7f0400e9 +int attr layout_constraintWidth_min 0x7f0400ea +int attr layout_constraintWidth_percent 0x7f0400eb +int attr layout_dodgeInsetEdges 0x7f0400ec +int attr layout_editor_absoluteX 0x7f0400ed +int attr layout_editor_absoluteY 0x7f0400ee +int attr layout_goneMarginBottom 0x7f0400ef +int attr layout_goneMarginEnd 0x7f0400f0 +int attr layout_goneMarginLeft 0x7f0400f1 +int attr layout_goneMarginRight 0x7f0400f2 +int attr layout_goneMarginStart 0x7f0400f3 +int attr layout_goneMarginTop 0x7f0400f4 +int attr layout_insetEdge 0x7f0400f5 +int attr layout_keyline 0x7f0400f6 +int attr layout_optimizationLevel 0x7f0400f7 +int attr lineHeight 0x7f0400f8 +int attr listChoiceBackgroundIndicator 0x7f0400f9 +int attr listChoiceIndicatorMultipleAnimated 0x7f0400fa +int attr listChoiceIndicatorSingleAnimated 0x7f0400fb +int attr listDividerAlertDialog 0x7f0400fc +int attr listItemLayout 0x7f0400fd +int attr listLayout 0x7f0400fe +int attr listMenuViewStyle 0x7f0400ff +int attr listPopupWindowStyle 0x7f040100 +int attr listPreferredItemHeight 0x7f040101 +int attr listPreferredItemHeightLarge 0x7f040102 +int attr listPreferredItemHeightSmall 0x7f040103 +int attr listPreferredItemPaddingEnd 0x7f040104 +int attr listPreferredItemPaddingLeft 0x7f040105 +int attr listPreferredItemPaddingRight 0x7f040106 +int attr listPreferredItemPaddingStart 0x7f040107 +int attr logo 0x7f040108 +int attr logoDescription 0x7f040109 +int attr maskColor 0x7f04010a +int attr maxButtonHeight 0x7f04010b +int attr measureWithLargestChild 0x7f04010c +int attr menu 0x7f04010d +int attr miv_blurRadius 0x7f04010e +int attr miv_borderColor 0x7f04010f +int attr miv_bottomLeftRadius 0x7f040110 +int attr miv_bottomRightRadius 0x7f040111 +int attr miv_failureHolder 0x7f040112 +int attr miv_isBlur 0x7f040113 +int attr miv_overlayImageId 0x7f040114 +int attr miv_placeHolder 0x7f040115 +int attr miv_radius 0x7f040116 +int attr miv_shape 0x7f040117 +int attr miv_shapeBorderWidth 0x7f040118 +int attr miv_topLeftRadius 0x7f040119 +int attr miv_topRightRadius 0x7f04011a +int attr multiChoiceItemLayout 0x7f04011b +int attr navigationContentDescription 0x7f04011c +int attr navigationIcon 0x7f04011d +int attr navigationMode 0x7f04011e +int attr numericModifiers 0x7f04011f +int attr overlapAnchor 0x7f040120 +int attr overlayImage 0x7f040121 +int attr paddingBottomNoButtons 0x7f040122 +int attr paddingEnd 0x7f040123 +int attr paddingStart 0x7f040124 +int attr paddingTopNoTitle 0x7f040125 +int attr panelBackground 0x7f040126 +int attr panelMenuListTheme 0x7f040127 +int attr panelMenuListWidth 0x7f040128 +int attr placeholderImage 0x7f040129 +int attr placeholderImageScaleType 0x7f04012a +int attr popupMenuStyle 0x7f04012b +int attr popupTheme 0x7f04012c +int attr popupWindowStyle 0x7f04012d +int attr preserveIconSpacing 0x7f04012e +int attr pressedStateOverlayImage 0x7f04012f +int attr progressBarAutoRotateInterval 0x7f040130 +int attr progressBarImage 0x7f040131 +int attr progressBarImageScaleType 0x7f040132 +int attr progressBarPadding 0x7f040133 +int attr progressBarStyle 0x7f040134 +int attr queryBackground 0x7f040135 +int attr queryHint 0x7f040136 +int attr radioButtonStyle 0x7f040137 +int attr radius 0x7f040138 +int attr ratingBarStyle 0x7f040139 +int attr ratingBarStyleIndicator 0x7f04013a +int attr ratingBarStyleSmall 0x7f04013b +int attr recyclerViewStyle 0x7f04013c +int attr retryImage 0x7f04013d +int attr retryImageScaleType 0x7f04013e +int attr reverseLayout 0x7f04013f +int attr ringColor 0x7f040140 +int attr riv_border_color 0x7f040141 +int attr riv_border_width 0x7f040142 +int attr riv_corner_radius 0x7f040143 +int attr riv_corner_radius_bottom_left 0x7f040144 +int attr riv_corner_radius_bottom_right 0x7f040145 +int attr riv_corner_radius_top_left 0x7f040146 +int attr riv_corner_radius_top_right 0x7f040147 +int attr riv_mutate_background 0x7f040148 +int attr riv_oval 0x7f040149 +int attr riv_tile_mode 0x7f04014a +int attr riv_tile_mode_x 0x7f04014b +int attr riv_tile_mode_y 0x7f04014c +int attr roundAsCircle 0x7f04014d +int attr roundBottomEnd 0x7f04014e +int attr roundBottomLeft 0x7f04014f +int attr roundBottomRight 0x7f040150 +int attr roundBottomStart 0x7f040151 +int attr roundLayoutRadius 0x7f040152 +int attr roundTopEnd 0x7f040153 +int attr roundTopLeft 0x7f040154 +int attr roundTopRight 0x7f040155 +int attr roundTopStart 0x7f040156 +int attr roundWithOverlayColor 0x7f040157 +int attr roundedCornerRadius 0x7f040158 +int attr roundingBorderColor 0x7f040159 +int attr roundingBorderPadding 0x7f04015a +int attr roundingBorderWidth 0x7f04015b +int attr scanline 0x7f04015c +int attr searchHintIcon 0x7f04015d +int attr searchIcon 0x7f04015e +int attr searchViewStyle 0x7f04015f +int attr seekBarStyle 0x7f040160 +int attr selectableItemBackground 0x7f040161 +int attr selectableItemBackgroundBorderless 0x7f040162 +int attr showAsAction 0x7f040163 +int attr showDividers 0x7f040164 +int attr showRectLine 0x7f040165 +int attr showText 0x7f040166 +int attr showTitle 0x7f040167 +int attr singleChoiceItemLayout 0x7f040168 +int attr spanCount 0x7f040169 +int attr spinBars 0x7f04016a +int attr spinnerDropDownItemStyle 0x7f04016b +int attr spinnerStyle 0x7f04016c +int attr splitTrack 0x7f04016d +int attr srcCompat 0x7f04016e +int attr stackFromEnd 0x7f04016f +int attr state_above_anchor 0x7f040170 +int attr statusBarBackground 0x7f040171 +int attr stepSize 0x7f040172 +int attr subMenuArrow 0x7f040173 +int attr submitBackground 0x7f040174 +int attr subtitle 0x7f040175 +int attr subtitleTextAppearance 0x7f040176 +int attr subtitleTextColor 0x7f040177 +int attr subtitleTextStyle 0x7f040178 +int attr suggestionRowLayout 0x7f040179 +int attr switchMinWidth 0x7f04017a +int attr switchPadding 0x7f04017b +int attr switchStyle 0x7f04017c +int attr switchTextAppearance 0x7f04017d +int attr textAllCaps 0x7f04017e +int attr textAppearanceLargePopupMenu 0x7f04017f +int attr textAppearanceListItem 0x7f040180 +int attr textAppearanceListItemSecondary 0x7f040181 +int attr textAppearanceListItemSmall 0x7f040182 +int attr textAppearancePopupMenuHeader 0x7f040183 +int attr textAppearanceSearchResultSubtitle 0x7f040184 +int attr textAppearanceSearchResultTitle 0x7f040185 +int attr textAppearanceSmallPopupMenu 0x7f040186 +int attr textColor 0x7f040187 +int attr textColorAlertDialogListItem 0x7f040188 +int attr textColorSearchUrl 0x7f040189 +int attr textLocale 0x7f04018a +int attr theme 0x7f04018b +int attr thickness 0x7f04018c +int attr thumbTextPadding 0x7f04018d +int attr thumbTint 0x7f04018e +int attr thumbTintMode 0x7f04018f +int attr tickMark 0x7f040190 +int attr tickMarkTint 0x7f040191 +int attr tickMarkTintMode 0x7f040192 +int attr tint 0x7f040193 +int attr tintMode 0x7f040194 +int attr title 0x7f040195 +int attr titleMargin 0x7f040196 +int attr titleMarginBottom 0x7f040197 +int attr titleMarginEnd 0x7f040198 +int attr titleMarginStart 0x7f040199 +int attr titleMarginTop 0x7f04019a +int attr titleMargins 0x7f04019b +int attr titleTextAppearance 0x7f04019c +int attr titleTextColor 0x7f04019d +int attr titleTextStyle 0x7f04019e +int attr toolbarNavigationButtonStyle 0x7f04019f +int attr toolbarStyle 0x7f0401a0 +int attr tooltipForegroundColor 0x7f0401a1 +int attr tooltipFrameBackground 0x7f0401a2 +int attr tooltipText 0x7f0401a3 +int attr topText 0x7f0401a4 +int attr topTextSize 0x7f0401a5 +int attr track 0x7f0401a6 +int attr trackTint 0x7f0401a7 +int attr trackTintMode 0x7f0401a8 +int attr triAngleColor 0x7f0401a9 +int attr triAngleLength 0x7f0401aa +int attr triAngleWidth 0x7f0401ab +int attr ttcIndex 0x7f0401ac +int attr viewAspectRatio 0x7f0401ad +int attr viewInflaterClass 0x7f0401ae +int attr voiceIcon 0x7f0401af +int attr windowActionBar 0x7f0401b0 +int attr windowActionBarOverlay 0x7f0401b1 +int attr windowActionModeOverlay 0x7f0401b2 +int attr windowFixedHeightMajor 0x7f0401b3 +int attr windowFixedHeightMinor 0x7f0401b4 +int attr windowFixedWidthMajor 0x7f0401b5 +int attr windowFixedWidthMinor 0x7f0401b6 +int attr windowMinWidthMajor 0x7f0401b7 +int attr windowMinWidthMinor 0x7f0401b8 +int attr windowNoTitle 0x7f0401b9 +int bool abc_action_bar_embed_tabs 0x7f050001 +int bool abc_allow_stacked_button_bar 0x7f050002 +int bool abc_config_actionMenuItemAllCaps 0x7f050003 +int bool abc_config_showMenuShortcutsWhenKeyboardPresent 0x7f050004 +int color abc_background_cache_hint_selector_material_dark 0x7f060001 +int color abc_background_cache_hint_selector_material_light 0x7f060002 +int color abc_btn_colored_borderless_text_material 0x7f060003 +int color abc_btn_colored_text_material 0x7f060004 +int color abc_color_highlight_material 0x7f060005 +int color abc_hint_foreground_material_dark 0x7f060006 +int color abc_hint_foreground_material_light 0x7f060007 +int color abc_input_method_navigation_guard 0x7f060008 +int color abc_primary_text_disable_only_material_dark 0x7f060009 +int color abc_primary_text_disable_only_material_light 0x7f06000a +int color abc_primary_text_material_dark 0x7f06000b +int color abc_primary_text_material_light 0x7f06000c +int color abc_search_url_text 0x7f06000d +int color abc_search_url_text_normal 0x7f06000e +int color abc_search_url_text_pressed 0x7f06000f +int color abc_search_url_text_selected 0x7f060010 +int color abc_secondary_text_material_dark 0x7f060011 +int color abc_secondary_text_material_light 0x7f060012 +int color abc_tint_btn_checkable 0x7f060013 +int color abc_tint_default 0x7f060014 +int color abc_tint_edittext 0x7f060015 +int color abc_tint_seek_thumb 0x7f060016 +int color abc_tint_spinner 0x7f060017 +int color abc_tint_switch_track 0x7f060018 +int color accent_material_dark 0x7f060019 +int color accent_material_light 0x7f06001a +int color adas_dispatch_remind_background 0x7f06001b +int color adas_dispatch_remind_cancel 0x7f06001c +int color adas_dispatch_remind_count_down_bg 0x7f06001d +int color adas_dispatch_remind_count_down_txt 0x7f06001e +int color adas_dispatch_remind_line 0x7f06001f +int color adas_dispatch_remind_text_loc 0x7f060020 +int color androidx_core_ripple_material_light 0x7f060021 +int color androidx_core_secondary_text_default_material_light 0x7f060022 +int color background_floating_material_dark 0x7f060023 +int color background_floating_material_light 0x7f060024 +int color background_material_dark 0x7f060025 +int color background_material_light 0x7f060026 +int color blue 0x7f060027 +int color bright_foreground_disabled_material_dark 0x7f060028 +int color bright_foreground_disabled_material_light 0x7f060029 +int color bright_foreground_inverse_material_dark 0x7f06002a +int color bright_foreground_inverse_material_light 0x7f06002b +int color bright_foreground_material_dark 0x7f06002c +int color bright_foreground_material_light 0x7f06002d +int color button_material_dark 0x7f06002e +int color button_material_light 0x7f06002f +int color colorAccent 0x7f060030 +int color colorPrimary 0x7f060031 +int color colorPrimaryDark 0x7f060032 +int color color_pad_bg 0x7f060033 +int color dim_foreground_disabled_material_dark 0x7f060034 +int color dim_foreground_disabled_material_light 0x7f060035 +int color dim_foreground_material_dark 0x7f060036 +int color dim_foreground_material_light 0x7f060037 +int color error_color_material 0x7f060038 +int color error_color_material_dark 0x7f060039 +int color error_color_material_light 0x7f06003a +int color foreground_material_dark 0x7f06003b +int color foreground_material_light 0x7f06003c +int color green 0x7f06003d +int color highlighted_text_material_dark 0x7f06003e +int color highlighted_text_material_light 0x7f06003f +int color material_blue_grey_800 0x7f060040 +int color material_blue_grey_900 0x7f060041 +int color material_blue_grey_950 0x7f060042 +int color material_deep_teal_200 0x7f060043 +int color material_deep_teal_500 0x7f060044 +int color material_grey_100 0x7f060045 +int color material_grey_300 0x7f060046 +int color material_grey_50 0x7f060047 +int color material_grey_600 0x7f060048 +int color material_grey_800 0x7f060049 +int color material_grey_850 0x7f06004a +int color material_grey_900 0x7f06004b +int color module_authorize_affirm_text 0x7f06004c +int color module_authorize_color 0x7f06004d +int color module_authorize_loading_text 0x7f06004e +int color module_authorize_text 0x7f06004f +int color module_commons_FFF_333 0x7f060050 +int color module_commons_dlg_bkg 0x7f060051 +int color module_commons_wm_dialog_text_textColor 0x7f060052 +int color module_service_info_window_content_textColor 0x7f060053 +int color module_services_dispatch_affirm_bg 0x7f060054 +int color module_services_dispatch_bg 0x7f060055 +int color module_services_dispatch_cars_background 0x7f060056 +int color module_services_dispatch_cars_cancel 0x7f060057 +int color module_services_dispatch_cars_count_down_bg 0x7f060058 +int color module_services_dispatch_cars_count_down_txt 0x7f060059 +int color module_services_dispatch_cars_line 0x7f06005a +int color module_services_dispatch_cars_text_loc 0x7f06005b +int color module_services_empty_tip_textColor 0x7f06005c +int color module_services_error_textColor 0x7f06005d +int color module_services_id_panel_item_avatar_border_color 0x7f06005e +int color module_services_load_strategy_textColor 0x7f06005f +int color module_services_online_car_panel_title_textColor 0x7f060060 +int color module_services_panel_item_detail_textColor 0x7f060061 +int color module_services_panel_item_distance_textColor 0x7f060062 +int color module_services_panel_item_nickname_textColor 0x7f060063 +int color modules_commons_toast_text_color 0x7f060064 +int color modules_media_music_bg_color 0x7f060065 +int color modules_media_music_circle_color 0x7f060066 +int color modules_media_music_circle_color_end 0x7f060067 +int color modules_media_music_circle_color_start 0x7f060068 +int color modules_media_music_time_text_color 0x7f060069 +int color modules_media_music_title_text_color 0x7f06006a +int color notification_action_color_filter 0x7f06006b +int color notification_icon_bg_color 0x7f06006c +int color notification_material_background_media_default_color 0x7f06006d +int color possible_result_points 0x7f06006e +int color primary_dark_material_dark 0x7f06006f +int color primary_dark_material_light 0x7f060070 +int color primary_material_dark 0x7f060071 +int color primary_material_light 0x7f060072 +int color primary_text_default_material_dark 0x7f060073 +int color primary_text_default_material_light 0x7f060074 +int color primary_text_disabled_material_dark 0x7f060075 +int color primary_text_disabled_material_light 0x7f060076 +int color result_points 0x7f060077 +int color result_view 0x7f060078 +int color ripple_material_dark 0x7f060079 +int color ripple_material_light 0x7f06007a +int color secondary_text_default_material_dark 0x7f06007b +int color secondary_text_default_material_light 0x7f06007c +int color secondary_text_disabled_material_dark 0x7f06007d +int color secondary_text_disabled_material_light 0x7f06007e +int color switch_thumb_disabled_material_dark 0x7f06007f +int color switch_thumb_disabled_material_light 0x7f060080 +int color switch_thumb_material_dark 0x7f060081 +int color switch_thumb_material_light 0x7f060082 +int color switch_thumb_normal_material_dark 0x7f060083 +int color switch_thumb_normal_material_light 0x7f060084 +int color tooltip_background_dark 0x7f060085 +int color tooltip_background_light 0x7f060086 +int color transparent 0x7f060087 +int color v2x_FFF_666 0x7f060088 +int color viewfinder_laser 0x7f060089 +int color viewfinder_mask 0x7f06008a +int color white 0x7f06008b +int dimen abc_action_bar_content_inset_material 0x7f070001 +int dimen abc_action_bar_content_inset_with_nav 0x7f070002 +int dimen abc_action_bar_default_height_material 0x7f070003 +int dimen abc_action_bar_default_padding_end_material 0x7f070004 +int dimen abc_action_bar_default_padding_start_material 0x7f070005 +int dimen abc_action_bar_elevation_material 0x7f070006 +int dimen abc_action_bar_icon_vertical_padding_material 0x7f070007 +int dimen abc_action_bar_overflow_padding_end_material 0x7f070008 +int dimen abc_action_bar_overflow_padding_start_material 0x7f070009 +int dimen abc_action_bar_progress_bar_size 0x7f07000a +int dimen abc_action_bar_stacked_max_height 0x7f07000b +int dimen abc_action_bar_stacked_tab_max_width 0x7f07000c +int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07000d +int dimen abc_action_bar_subtitle_top_margin_material 0x7f07000e +int dimen abc_action_button_min_height_material 0x7f07000f +int dimen abc_action_button_min_width_material 0x7f070010 +int dimen abc_action_button_min_width_overflow_material 0x7f070011 +int dimen abc_alert_dialog_button_bar_height 0x7f070012 +int dimen abc_alert_dialog_button_dimen 0x7f070013 +int dimen abc_button_inset_horizontal_material 0x7f070014 +int dimen abc_button_inset_vertical_material 0x7f070015 +int dimen abc_button_padding_horizontal_material 0x7f070016 +int dimen abc_button_padding_vertical_material 0x7f070017 +int dimen abc_cascading_menus_min_smallest_width 0x7f070018 +int dimen abc_config_prefDialogWidth 0x7f070019 +int dimen abc_control_corner_material 0x7f07001a +int dimen abc_control_inset_material 0x7f07001b +int dimen abc_control_padding_material 0x7f07001c +int dimen abc_dialog_corner_radius_material 0x7f07001d +int dimen abc_dialog_fixed_height_major 0x7f07001e +int dimen abc_dialog_fixed_height_minor 0x7f07001f +int dimen abc_dialog_fixed_width_major 0x7f070020 +int dimen abc_dialog_fixed_width_minor 0x7f070021 +int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f070022 +int dimen abc_dialog_list_padding_top_no_title 0x7f070023 +int dimen abc_dialog_min_width_major 0x7f070024 +int dimen abc_dialog_min_width_minor 0x7f070025 +int dimen abc_dialog_padding_material 0x7f070026 +int dimen abc_dialog_padding_top_material 0x7f070027 +int dimen abc_dialog_title_divider_material 0x7f070028 +int dimen abc_disabled_alpha_material_dark 0x7f070029 +int dimen abc_disabled_alpha_material_light 0x7f07002a +int dimen abc_dropdownitem_icon_width 0x7f07002b +int dimen abc_dropdownitem_text_padding_left 0x7f07002c +int dimen abc_dropdownitem_text_padding_right 0x7f07002d +int dimen abc_edit_text_inset_bottom_material 0x7f07002e +int dimen abc_edit_text_inset_horizontal_material 0x7f07002f +int dimen abc_edit_text_inset_top_material 0x7f070030 +int dimen abc_floating_window_z 0x7f070031 +int dimen abc_list_item_height_large_material 0x7f070032 +int dimen abc_list_item_height_material 0x7f070033 +int dimen abc_list_item_height_small_material 0x7f070034 +int dimen abc_list_item_padding_horizontal_material 0x7f070035 +int dimen abc_panel_menu_list_width 0x7f070036 +int dimen abc_progress_bar_height_material 0x7f070037 +int dimen abc_search_view_preferred_height 0x7f070038 +int dimen abc_search_view_preferred_width 0x7f070039 +int dimen abc_seekbar_track_background_height_material 0x7f07003a +int dimen abc_seekbar_track_progress_height_material 0x7f07003b +int dimen abc_select_dialog_padding_start_material 0x7f07003c +int dimen abc_switch_padding 0x7f07003d +int dimen abc_text_size_body_1_material 0x7f07003e +int dimen abc_text_size_body_2_material 0x7f07003f +int dimen abc_text_size_button_material 0x7f070040 +int dimen abc_text_size_caption_material 0x7f070041 +int dimen abc_text_size_display_1_material 0x7f070042 +int dimen abc_text_size_display_2_material 0x7f070043 +int dimen abc_text_size_display_3_material 0x7f070044 +int dimen abc_text_size_display_4_material 0x7f070045 +int dimen abc_text_size_headline_material 0x7f070046 +int dimen abc_text_size_large_material 0x7f070047 +int dimen abc_text_size_medium_material 0x7f070048 +int dimen abc_text_size_menu_header_material 0x7f070049 +int dimen abc_text_size_menu_material 0x7f07004a +int dimen abc_text_size_small_material 0x7f07004b +int dimen abc_text_size_subhead_material 0x7f07004c +int dimen abc_text_size_subtitle_material_toolbar 0x7f07004d +int dimen abc_text_size_title_material 0x7f07004e +int dimen abc_text_size_title_material_toolbar 0x7f07004f +int dimen adas_dispatch_remind_dialog_btn_width 0x7f070050 +int dimen adas_dispatch_remind_dialog_content_margin_top 0x7f070051 +int dimen adas_dispatch_remind_dialog_content_size 0x7f070052 +int dimen adas_dispatch_remind_dialog_corner 0x7f070053 +int dimen adas_dispatch_remind_dialog_height 0x7f070054 +int dimen adas_dispatch_remind_dialog_line_margin_bottom 0x7f070055 +int dimen adas_dispatch_remind_dialog_loc_margin_top 0x7f070056 +int dimen adas_dispatch_remind_dialog_loc_size 0x7f070057 +int dimen adas_dispatch_remind_dialog_timer_margin 0x7f070058 +int dimen adas_dispatch_remind_dialog_timer_size 0x7f070059 +int dimen adas_dispatch_remind_dialog_timer_txt_size 0x7f07005a +int dimen adas_dispatch_remind_dialog_title_margin_top 0x7f07005b +int dimen adas_dispatch_remind_dialog_title_size 0x7f07005c +int dimen adas_dispatch_remind_dialog_width 0x7f07005d +int dimen compat_button_inset_horizontal_material 0x7f07005e +int dimen compat_button_inset_vertical_material 0x7f07005f +int dimen compat_button_padding_horizontal_material 0x7f070060 +int dimen compat_button_padding_vertical_material 0x7f070061 +int dimen compat_control_corner_material 0x7f070062 +int dimen compat_notification_large_icon_max_height 0x7f070063 +int dimen compat_notification_large_icon_max_width 0x7f070064 +int dimen disabled_alpha_material_dark 0x7f070065 +int dimen disabled_alpha_material_light 0x7f070066 +int dimen dp_0 0x7f070067 +int dimen dp_0_1 0x7f070068 +int dimen dp_0_5 0x7f070069 +int dimen dp_1 0x7f07006a +int dimen dp_10 0x7f07006b +int dimen dp_100 0x7f07006c +int dimen dp_1000 0x7f07006d +int dimen dp_101 0x7f07006e +int dimen dp_102 0x7f07006f +int dimen dp_103 0x7f070070 +int dimen dp_104 0x7f070071 +int dimen dp_104_5 0x7f070072 +int dimen dp_105 0x7f070073 +int dimen dp_106 0x7f070074 +int dimen dp_107 0x7f070075 +int dimen dp_108 0x7f070076 +int dimen dp_109 0x7f070077 +int dimen dp_11 0x7f070078 +int dimen dp_110 0x7f070079 +int dimen dp_111 0x7f07007a +int dimen dp_112 0x7f07007b +int dimen dp_113 0x7f07007c +int dimen dp_114 0x7f07007d +int dimen dp_115 0x7f07007e +int dimen dp_116 0x7f07007f +int dimen dp_117 0x7f070080 +int dimen dp_118 0x7f070081 +int dimen dp_119 0x7f070082 +int dimen dp_12 0x7f070083 +int dimen dp_120 0x7f070084 +int dimen dp_121 0x7f070085 +int dimen dp_122 0x7f070086 +int dimen dp_123 0x7f070087 +int dimen dp_124 0x7f070088 +int dimen dp_125 0x7f070089 +int dimen dp_126 0x7f07008a +int dimen dp_127 0x7f07008b +int dimen dp_128 0x7f07008c +int dimen dp_129 0x7f07008d +int dimen dp_13 0x7f07008e +int dimen dp_130 0x7f07008f +int dimen dp_1300 0x7f070090 +int dimen dp_131 0x7f070091 +int dimen dp_132 0x7f070092 +int dimen dp_133 0x7f070093 +int dimen dp_134 0x7f070094 +int dimen dp_134_5 0x7f070095 +int dimen dp_135 0x7f070096 +int dimen dp_136 0x7f070097 +int dimen dp_137 0x7f070098 +int dimen dp_138 0x7f070099 +int dimen dp_139 0x7f07009a +int dimen dp_14 0x7f07009b +int dimen dp_140 0x7f07009c +int dimen dp_141 0x7f07009d +int dimen dp_142 0x7f07009e +int dimen dp_143 0x7f07009f +int dimen dp_144 0x7f0700a0 +int dimen dp_145 0x7f0700a1 +int dimen dp_146 0x7f0700a2 +int dimen dp_147 0x7f0700a3 +int dimen dp_148 0x7f0700a4 +int dimen dp_149 0x7f0700a5 +int dimen dp_15 0x7f0700a6 +int dimen dp_150 0x7f0700a7 +int dimen dp_151 0x7f0700a8 +int dimen dp_152 0x7f0700a9 +int dimen dp_153 0x7f0700aa +int dimen dp_154 0x7f0700ab +int dimen dp_155 0x7f0700ac +int dimen dp_156 0x7f0700ad +int dimen dp_157 0x7f0700ae +int dimen dp_158 0x7f0700af +int dimen dp_159 0x7f0700b0 +int dimen dp_16 0x7f0700b1 +int dimen dp_160 0x7f0700b2 +int dimen dp_161 0x7f0700b3 +int dimen dp_162 0x7f0700b4 +int dimen dp_163 0x7f0700b5 +int dimen dp_164 0x7f0700b6 +int dimen dp_165 0x7f0700b7 +int dimen dp_166 0x7f0700b8 +int dimen dp_167 0x7f0700b9 +int dimen dp_168 0x7f0700ba +int dimen dp_169 0x7f0700bb +int dimen dp_17 0x7f0700bc +int dimen dp_170 0x7f0700bd +int dimen dp_171 0x7f0700be +int dimen dp_172 0x7f0700bf +int dimen dp_173 0x7f0700c0 +int dimen dp_174 0x7f0700c1 +int dimen dp_175 0x7f0700c2 +int dimen dp_176 0x7f0700c3 +int dimen dp_177 0x7f0700c4 +int dimen dp_178 0x7f0700c5 +int dimen dp_179 0x7f0700c6 +int dimen dp_18 0x7f0700c7 +int dimen dp_180 0x7f0700c8 +int dimen dp_181 0x7f0700c9 +int dimen dp_182 0x7f0700ca +int dimen dp_183 0x7f0700cb +int dimen dp_184 0x7f0700cc +int dimen dp_185 0x7f0700cd +int dimen dp_186 0x7f0700ce +int dimen dp_187 0x7f0700cf +int dimen dp_188 0x7f0700d0 +int dimen dp_189 0x7f0700d1 +int dimen dp_19 0x7f0700d2 +int dimen dp_190 0x7f0700d3 +int dimen dp_191 0x7f0700d4 +int dimen dp_191_25 0x7f0700d5 +int dimen dp_192 0x7f0700d6 +int dimen dp_1920 0x7f0700d7 +int dimen dp_193 0x7f0700d8 +int dimen dp_194 0x7f0700d9 +int dimen dp_195 0x7f0700da +int dimen dp_196 0x7f0700db +int dimen dp_197 0x7f0700dc +int dimen dp_198 0x7f0700dd +int dimen dp_199 0x7f0700de +int dimen dp_1_5 0x7f0700df +int dimen dp_2 0x7f0700e0 +int dimen dp_20 0x7f0700e1 +int dimen dp_200 0x7f0700e2 +int dimen dp_201 0x7f0700e3 +int dimen dp_202 0x7f0700e4 +int dimen dp_203 0x7f0700e5 +int dimen dp_204 0x7f0700e6 +int dimen dp_205 0x7f0700e7 +int dimen dp_206 0x7f0700e8 +int dimen dp_207 0x7f0700e9 +int dimen dp_208 0x7f0700ea +int dimen dp_209 0x7f0700eb +int dimen dp_21 0x7f0700ec +int dimen dp_210 0x7f0700ed +int dimen dp_211 0x7f0700ee +int dimen dp_212 0x7f0700ef +int dimen dp_213 0x7f0700f0 +int dimen dp_214 0x7f0700f1 +int dimen dp_215 0x7f0700f2 +int dimen dp_216 0x7f0700f3 +int dimen dp_217 0x7f0700f4 +int dimen dp_218 0x7f0700f5 +int dimen dp_219 0x7f0700f6 +int dimen dp_22 0x7f0700f7 +int dimen dp_220 0x7f0700f8 +int dimen dp_221 0x7f0700f9 +int dimen dp_222 0x7f0700fa +int dimen dp_223 0x7f0700fb +int dimen dp_224 0x7f0700fc +int dimen dp_225 0x7f0700fd +int dimen dp_226 0x7f0700fe +int dimen dp_227 0x7f0700ff +int dimen dp_228 0x7f070100 +int dimen dp_229 0x7f070101 +int dimen dp_23 0x7f070102 +int dimen dp_230 0x7f070103 +int dimen dp_231 0x7f070104 +int dimen dp_232 0x7f070105 +int dimen dp_233 0x7f070106 +int dimen dp_234 0x7f070107 +int dimen dp_235 0x7f070108 +int dimen dp_236 0x7f070109 +int dimen dp_237 0x7f07010a +int dimen dp_238 0x7f07010b +int dimen dp_239 0x7f07010c +int dimen dp_24 0x7f07010d +int dimen dp_240 0x7f07010e +int dimen dp_241 0x7f07010f +int dimen dp_242 0x7f070110 +int dimen dp_243 0x7f070111 +int dimen dp_244 0x7f070112 +int dimen dp_245 0x7f070113 +int dimen dp_246 0x7f070114 +int dimen dp_247 0x7f070115 +int dimen dp_248 0x7f070116 +int dimen dp_249 0x7f070117 +int dimen dp_25 0x7f070118 +int dimen dp_250 0x7f070119 +int dimen dp_251 0x7f07011a +int dimen dp_252 0x7f07011b +int dimen dp_253 0x7f07011c +int dimen dp_254 0x7f07011d +int dimen dp_255 0x7f07011e +int dimen dp_256 0x7f07011f +int dimen dp_257 0x7f070120 +int dimen dp_258 0x7f070121 +int dimen dp_259 0x7f070122 +int dimen dp_26 0x7f070123 +int dimen dp_260 0x7f070124 +int dimen dp_261 0x7f070125 +int dimen dp_262 0x7f070126 +int dimen dp_263 0x7f070127 +int dimen dp_264 0x7f070128 +int dimen dp_265 0x7f070129 +int dimen dp_266 0x7f07012a +int dimen dp_267 0x7f07012b +int dimen dp_268 0x7f07012c +int dimen dp_269 0x7f07012d +int dimen dp_27 0x7f07012e +int dimen dp_270 0x7f07012f +int dimen dp_271 0x7f070130 +int dimen dp_272 0x7f070131 +int dimen dp_273 0x7f070132 +int dimen dp_274 0x7f070133 +int dimen dp_275 0x7f070134 +int dimen dp_276 0x7f070135 +int dimen dp_277 0x7f070136 +int dimen dp_278 0x7f070137 +int dimen dp_279 0x7f070138 +int dimen dp_28 0x7f070139 +int dimen dp_280 0x7f07013a +int dimen dp_281 0x7f07013b +int dimen dp_282 0x7f07013c +int dimen dp_283 0x7f07013d +int dimen dp_284 0x7f07013e +int dimen dp_285 0x7f07013f +int dimen dp_286 0x7f070140 +int dimen dp_287 0x7f070141 +int dimen dp_288 0x7f070142 +int dimen dp_289 0x7f070143 +int dimen dp_29 0x7f070144 +int dimen dp_290 0x7f070145 +int dimen dp_291 0x7f070146 +int dimen dp_292 0x7f070147 +int dimen dp_293 0x7f070148 +int dimen dp_294 0x7f070149 +int dimen dp_295 0x7f07014a +int dimen dp_296 0x7f07014b +int dimen dp_297 0x7f07014c +int dimen dp_298 0x7f07014d +int dimen dp_299 0x7f07014e +int dimen dp_2_5 0x7f07014f +int dimen dp_3 0x7f070150 +int dimen dp_30 0x7f070151 +int dimen dp_300 0x7f070152 +int dimen dp_301 0x7f070153 +int dimen dp_302 0x7f070154 +int dimen dp_303 0x7f070155 +int dimen dp_304 0x7f070156 +int dimen dp_305 0x7f070157 +int dimen dp_306 0x7f070158 +int dimen dp_307 0x7f070159 +int dimen dp_308 0x7f07015a +int dimen dp_309 0x7f07015b +int dimen dp_31 0x7f07015c +int dimen dp_310 0x7f07015d +int dimen dp_311 0x7f07015e +int dimen dp_312 0x7f07015f +int dimen dp_313 0x7f070160 +int dimen dp_314 0x7f070161 +int dimen dp_315 0x7f070162 +int dimen dp_316 0x7f070163 +int dimen dp_317 0x7f070164 +int dimen dp_318 0x7f070165 +int dimen dp_319 0x7f070166 +int dimen dp_32 0x7f070167 +int dimen dp_320 0x7f070168 +int dimen dp_321 0x7f070169 +int dimen dp_322 0x7f07016a +int dimen dp_323 0x7f07016b +int dimen dp_324 0x7f07016c +int dimen dp_325 0x7f07016d +int dimen dp_326 0x7f07016e +int dimen dp_327 0x7f07016f +int dimen dp_328 0x7f070170 +int dimen dp_329 0x7f070171 +int dimen dp_33 0x7f070172 +int dimen dp_330 0x7f070173 +int dimen dp_331 0x7f070174 +int dimen dp_332 0x7f070175 +int dimen dp_333 0x7f070176 +int dimen dp_334 0x7f070177 +int dimen dp_335 0x7f070178 +int dimen dp_336 0x7f070179 +int dimen dp_337 0x7f07017a +int dimen dp_338 0x7f07017b +int dimen dp_339 0x7f07017c +int dimen dp_34 0x7f07017d +int dimen dp_340 0x7f07017e +int dimen dp_341 0x7f07017f +int dimen dp_342 0x7f070180 +int dimen dp_343 0x7f070181 +int dimen dp_344 0x7f070182 +int dimen dp_345 0x7f070183 +int dimen dp_346 0x7f070184 +int dimen dp_347 0x7f070185 +int dimen dp_348 0x7f070186 +int dimen dp_349 0x7f070187 +int dimen dp_35 0x7f070188 +int dimen dp_350 0x7f070189 +int dimen dp_351 0x7f07018a +int dimen dp_352 0x7f07018b +int dimen dp_353 0x7f07018c +int dimen dp_354 0x7f07018d +int dimen dp_355 0x7f07018e +int dimen dp_356 0x7f07018f +int dimen dp_357 0x7f070190 +int dimen dp_358 0x7f070191 +int dimen dp_359 0x7f070192 +int dimen dp_36 0x7f070193 +int dimen dp_366 0x7f070194 +int dimen dp_367 0x7f070195 +int dimen dp_368 0x7f070196 +int dimen dp_369 0x7f070197 +int dimen dp_37 0x7f070198 +int dimen dp_370 0x7f070199 +int dimen dp_371 0x7f07019a +int dimen dp_372 0x7f07019b +int dimen dp_373 0x7f07019c +int dimen dp_374 0x7f07019d +int dimen dp_375 0x7f07019e +int dimen dp_376 0x7f07019f +int dimen dp_377 0x7f0701a0 +int dimen dp_378 0x7f0701a1 +int dimen dp_379 0x7f0701a2 +int dimen dp_38 0x7f0701a3 +int dimen dp_380 0x7f0701a4 +int dimen dp_381 0x7f0701a5 +int dimen dp_382 0x7f0701a6 +int dimen dp_383 0x7f0701a7 +int dimen dp_384 0x7f0701a8 +int dimen dp_385 0x7f0701a9 +int dimen dp_386 0x7f0701aa +int dimen dp_387 0x7f0701ab +int dimen dp_388 0x7f0701ac +int dimen dp_389 0x7f0701ad +int dimen dp_39 0x7f0701ae +int dimen dp_390 0x7f0701af +int dimen dp_391 0x7f0701b0 +int dimen dp_392 0x7f0701b1 +int dimen dp_393 0x7f0701b2 +int dimen dp_394 0x7f0701b3 +int dimen dp_395 0x7f0701b4 +int dimen dp_396 0x7f0701b5 +int dimen dp_397 0x7f0701b6 +int dimen dp_398 0x7f0701b7 +int dimen dp_399 0x7f0701b8 +int dimen dp_3_5 0x7f0701b9 +int dimen dp_4 0x7f0701ba +int dimen dp_40 0x7f0701bb +int dimen dp_400 0x7f0701bc +int dimen dp_401 0x7f0701bd +int dimen dp_402 0x7f0701be +int dimen dp_403 0x7f0701bf +int dimen dp_404 0x7f0701c0 +int dimen dp_405 0x7f0701c1 +int dimen dp_406 0x7f0701c2 +int dimen dp_407 0x7f0701c3 +int dimen dp_408 0x7f0701c4 +int dimen dp_409 0x7f0701c5 +int dimen dp_41 0x7f0701c6 +int dimen dp_410 0x7f0701c7 +int dimen dp_411 0x7f0701c8 +int dimen dp_412 0x7f0701c9 +int dimen dp_413 0x7f0701ca +int dimen dp_414 0x7f0701cb +int dimen dp_415 0x7f0701cc +int dimen dp_416 0x7f0701cd +int dimen dp_417 0x7f0701ce +int dimen dp_418 0x7f0701cf +int dimen dp_419 0x7f0701d0 +int dimen dp_42 0x7f0701d1 +int dimen dp_420 0x7f0701d2 +int dimen dp_421 0x7f0701d3 +int dimen dp_422 0x7f0701d4 +int dimen dp_423 0x7f0701d5 +int dimen dp_424 0x7f0701d6 +int dimen dp_425 0x7f0701d7 +int dimen dp_426 0x7f0701d8 +int dimen dp_427 0x7f0701d9 +int dimen dp_428 0x7f0701da +int dimen dp_429 0x7f0701db +int dimen dp_43 0x7f0701dc +int dimen dp_430 0x7f0701dd +int dimen dp_431 0x7f0701de +int dimen dp_432 0x7f0701df +int dimen dp_433 0x7f0701e0 +int dimen dp_434 0x7f0701e1 +int dimen dp_435 0x7f0701e2 +int dimen dp_436 0x7f0701e3 +int dimen dp_437 0x7f0701e4 +int dimen dp_438 0x7f0701e5 +int dimen dp_439 0x7f0701e6 +int dimen dp_44 0x7f0701e7 +int dimen dp_440 0x7f0701e8 +int dimen dp_441 0x7f0701e9 +int dimen dp_442 0x7f0701ea +int dimen dp_443 0x7f0701eb +int dimen dp_444 0x7f0701ec +int dimen dp_445 0x7f0701ed +int dimen dp_446 0x7f0701ee +int dimen dp_447 0x7f0701ef +int dimen dp_448 0x7f0701f0 +int dimen dp_449 0x7f0701f1 +int dimen dp_45 0x7f0701f2 +int dimen dp_450 0x7f0701f3 +int dimen dp_451 0x7f0701f4 +int dimen dp_452 0x7f0701f5 +int dimen dp_453 0x7f0701f6 +int dimen dp_454 0x7f0701f7 +int dimen dp_455 0x7f0701f8 +int dimen dp_456 0x7f0701f9 +int dimen dp_457 0x7f0701fa +int dimen dp_458 0x7f0701fb +int dimen dp_459 0x7f0701fc +int dimen dp_46 0x7f0701fd +int dimen dp_460 0x7f0701fe +int dimen dp_461 0x7f0701ff +int dimen dp_462 0x7f070200 +int dimen dp_463 0x7f070201 +int dimen dp_464 0x7f070202 +int dimen dp_465 0x7f070203 +int dimen dp_466 0x7f070204 +int dimen dp_467 0x7f070205 +int dimen dp_468 0x7f070206 +int dimen dp_469 0x7f070207 +int dimen dp_47 0x7f070208 +int dimen dp_470 0x7f070209 +int dimen dp_471 0x7f07020a +int dimen dp_472 0x7f07020b +int dimen dp_473 0x7f07020c +int dimen dp_474 0x7f07020d +int dimen dp_475 0x7f07020e +int dimen dp_476 0x7f07020f +int dimen dp_477 0x7f070210 +int dimen dp_478 0x7f070211 +int dimen dp_479 0x7f070212 +int dimen dp_48 0x7f070213 +int dimen dp_480 0x7f070214 +int dimen dp_481 0x7f070215 +int dimen dp_482 0x7f070216 +int dimen dp_483 0x7f070217 +int dimen dp_484 0x7f070218 +int dimen dp_485 0x7f070219 +int dimen dp_486 0x7f07021a +int dimen dp_487 0x7f07021b +int dimen dp_488 0x7f07021c +int dimen dp_489 0x7f07021d +int dimen dp_49 0x7f07021e +int dimen dp_490 0x7f07021f +int dimen dp_491 0x7f070220 +int dimen dp_492 0x7f070221 +int dimen dp_493 0x7f070222 +int dimen dp_494 0x7f070223 +int dimen dp_495 0x7f070224 +int dimen dp_496 0x7f070225 +int dimen dp_497 0x7f070226 +int dimen dp_498 0x7f070227 +int dimen dp_499 0x7f070228 +int dimen dp_4_5 0x7f070229 +int dimen dp_5 0x7f07022a +int dimen dp_50 0x7f07022b +int dimen dp_500 0x7f07022c +int dimen dp_501 0x7f07022d +int dimen dp_502 0x7f07022e +int dimen dp_503 0x7f07022f +int dimen dp_504 0x7f070230 +int dimen dp_505 0x7f070231 +int dimen dp_506 0x7f070232 +int dimen dp_507 0x7f070233 +int dimen dp_508 0x7f070234 +int dimen dp_509 0x7f070235 +int dimen dp_51 0x7f070236 +int dimen dp_510 0x7f070237 +int dimen dp_511 0x7f070238 +int dimen dp_512 0x7f070239 +int dimen dp_513 0x7f07023a +int dimen dp_514 0x7f07023b +int dimen dp_515 0x7f07023c +int dimen dp_516 0x7f07023d +int dimen dp_517 0x7f07023e +int dimen dp_518 0x7f07023f +int dimen dp_519 0x7f070240 +int dimen dp_52 0x7f070241 +int dimen dp_520 0x7f070242 +int dimen dp_521 0x7f070243 +int dimen dp_522 0x7f070244 +int dimen dp_523 0x7f070245 +int dimen dp_524 0x7f070246 +int dimen dp_525 0x7f070247 +int dimen dp_526 0x7f070248 +int dimen dp_527 0x7f070249 +int dimen dp_528 0x7f07024a +int dimen dp_529 0x7f07024b +int dimen dp_53 0x7f07024c +int dimen dp_530 0x7f07024d +int dimen dp_531 0x7f07024e +int dimen dp_532 0x7f07024f +int dimen dp_533 0x7f070250 +int dimen dp_534 0x7f070251 +int dimen dp_535 0x7f070252 +int dimen dp_536 0x7f070253 +int dimen dp_537 0x7f070254 +int dimen dp_538 0x7f070255 +int dimen dp_539 0x7f070256 +int dimen dp_54 0x7f070257 +int dimen dp_540 0x7f070258 +int dimen dp_541 0x7f070259 +int dimen dp_542 0x7f07025a +int dimen dp_543 0x7f07025b +int dimen dp_544 0x7f07025c +int dimen dp_545 0x7f07025d +int dimen dp_546 0x7f07025e +int dimen dp_547 0x7f07025f +int dimen dp_548 0x7f070260 +int dimen dp_549 0x7f070261 +int dimen dp_55 0x7f070262 +int dimen dp_550 0x7f070263 +int dimen dp_551 0x7f070264 +int dimen dp_552 0x7f070265 +int dimen dp_553 0x7f070266 +int dimen dp_554 0x7f070267 +int dimen dp_555 0x7f070268 +int dimen dp_556 0x7f070269 +int dimen dp_557 0x7f07026a +int dimen dp_558 0x7f07026b +int dimen dp_559 0x7f07026c +int dimen dp_56 0x7f07026d +int dimen dp_560 0x7f07026e +int dimen dp_561 0x7f07026f +int dimen dp_562 0x7f070270 +int dimen dp_563 0x7f070271 +int dimen dp_564 0x7f070272 +int dimen dp_565 0x7f070273 +int dimen dp_566 0x7f070274 +int dimen dp_567 0x7f070275 +int dimen dp_568 0x7f070276 +int dimen dp_569 0x7f070277 +int dimen dp_57 0x7f070278 +int dimen dp_570 0x7f070279 +int dimen dp_571 0x7f07027a +int dimen dp_572 0x7f07027b +int dimen dp_573 0x7f07027c +int dimen dp_574 0x7f07027d +int dimen dp_575 0x7f07027e +int dimen dp_576 0x7f07027f +int dimen dp_577 0x7f070280 +int dimen dp_578 0x7f070281 +int dimen dp_579 0x7f070282 +int dimen dp_58 0x7f070283 +int dimen dp_580 0x7f070284 +int dimen dp_581 0x7f070285 +int dimen dp_582 0x7f070286 +int dimen dp_583 0x7f070287 +int dimen dp_584 0x7f070288 +int dimen dp_585 0x7f070289 +int dimen dp_586 0x7f07028a +int dimen dp_587 0x7f07028b +int dimen dp_588 0x7f07028c +int dimen dp_589 0x7f07028d +int dimen dp_59 0x7f07028e +int dimen dp_590 0x7f07028f +int dimen dp_591 0x7f070290 +int dimen dp_592 0x7f070291 +int dimen dp_593 0x7f070292 +int dimen dp_594 0x7f070293 +int dimen dp_595 0x7f070294 +int dimen dp_596 0x7f070295 +int dimen dp_597 0x7f070296 +int dimen dp_598 0x7f070297 +int dimen dp_599 0x7f070298 +int dimen dp_6 0x7f070299 +int dimen dp_60 0x7f07029a +int dimen dp_600 0x7f07029b +int dimen dp_601 0x7f07029c +int dimen dp_602 0x7f07029d +int dimen dp_603 0x7f07029e +int dimen dp_604 0x7f07029f +int dimen dp_605 0x7f0702a0 +int dimen dp_606 0x7f0702a1 +int dimen dp_607 0x7f0702a2 +int dimen dp_608 0x7f0702a3 +int dimen dp_609 0x7f0702a4 +int dimen dp_61 0x7f0702a5 +int dimen dp_610 0x7f0702a6 +int dimen dp_611 0x7f0702a7 +int dimen dp_612 0x7f0702a8 +int dimen dp_613 0x7f0702a9 +int dimen dp_614 0x7f0702aa +int dimen dp_615 0x7f0702ab +int dimen dp_616 0x7f0702ac +int dimen dp_617 0x7f0702ad +int dimen dp_618 0x7f0702ae +int dimen dp_619 0x7f0702af +int dimen dp_62 0x7f0702b0 +int dimen dp_620 0x7f0702b1 +int dimen dp_621 0x7f0702b2 +int dimen dp_622 0x7f0702b3 +int dimen dp_623 0x7f0702b4 +int dimen dp_624 0x7f0702b5 +int dimen dp_625 0x7f0702b6 +int dimen dp_626 0x7f0702b7 +int dimen dp_627 0x7f0702b8 +int dimen dp_628 0x7f0702b9 +int dimen dp_629 0x7f0702ba +int dimen dp_63 0x7f0702bb +int dimen dp_630 0x7f0702bc +int dimen dp_631 0x7f0702bd +int dimen dp_632 0x7f0702be +int dimen dp_633 0x7f0702bf +int dimen dp_634 0x7f0702c0 +int dimen dp_635 0x7f0702c1 +int dimen dp_636 0x7f0702c2 +int dimen dp_637 0x7f0702c3 +int dimen dp_638 0x7f0702c4 +int dimen dp_639 0x7f0702c5 +int dimen dp_64 0x7f0702c6 +int dimen dp_640 0x7f0702c7 +int dimen dp_641 0x7f0702c8 +int dimen dp_642 0x7f0702c9 +int dimen dp_643 0x7f0702ca +int dimen dp_644 0x7f0702cb +int dimen dp_645 0x7f0702cc +int dimen dp_646 0x7f0702cd +int dimen dp_647 0x7f0702ce +int dimen dp_648 0x7f0702cf +int dimen dp_649 0x7f0702d0 +int dimen dp_65 0x7f0702d1 +int dimen dp_650 0x7f0702d2 +int dimen dp_651 0x7f0702d3 +int dimen dp_652 0x7f0702d4 +int dimen dp_653 0x7f0702d5 +int dimen dp_654 0x7f0702d6 +int dimen dp_655 0x7f0702d7 +int dimen dp_656 0x7f0702d8 +int dimen dp_657 0x7f0702d9 +int dimen dp_658 0x7f0702da +int dimen dp_659 0x7f0702db +int dimen dp_66 0x7f0702dc +int dimen dp_660 0x7f0702dd +int dimen dp_661 0x7f0702de +int dimen dp_662 0x7f0702df +int dimen dp_663 0x7f0702e0 +int dimen dp_664 0x7f0702e1 +int dimen dp_665 0x7f0702e2 +int dimen dp_666 0x7f0702e3 +int dimen dp_667 0x7f0702e4 +int dimen dp_668 0x7f0702e5 +int dimen dp_669 0x7f0702e6 +int dimen dp_67 0x7f0702e7 +int dimen dp_670 0x7f0702e8 +int dimen dp_671 0x7f0702e9 +int dimen dp_672 0x7f0702ea +int dimen dp_673 0x7f0702eb +int dimen dp_674 0x7f0702ec +int dimen dp_675 0x7f0702ed +int dimen dp_676 0x7f0702ee +int dimen dp_677 0x7f0702ef +int dimen dp_678 0x7f0702f0 +int dimen dp_679 0x7f0702f1 +int dimen dp_68 0x7f0702f2 +int dimen dp_680 0x7f0702f3 +int dimen dp_681 0x7f0702f4 +int dimen dp_682 0x7f0702f5 +int dimen dp_683 0x7f0702f6 +int dimen dp_684 0x7f0702f7 +int dimen dp_685 0x7f0702f8 +int dimen dp_686 0x7f0702f9 +int dimen dp_687 0x7f0702fa +int dimen dp_688 0x7f0702fb +int dimen dp_689 0x7f0702fc +int dimen dp_69 0x7f0702fd +int dimen dp_690 0x7f0702fe +int dimen dp_691 0x7f0702ff +int dimen dp_692 0x7f070300 +int dimen dp_693 0x7f070301 +int dimen dp_694 0x7f070302 +int dimen dp_695 0x7f070303 +int dimen dp_696 0x7f070304 +int dimen dp_697 0x7f070305 +int dimen dp_698 0x7f070306 +int dimen dp_699 0x7f070307 +int dimen dp_7 0x7f070308 +int dimen dp_70 0x7f070309 +int dimen dp_700 0x7f07030a +int dimen dp_701 0x7f07030b +int dimen dp_702 0x7f07030c +int dimen dp_703 0x7f07030d +int dimen dp_704 0x7f07030e +int dimen dp_705 0x7f07030f +int dimen dp_706 0x7f070310 +int dimen dp_707 0x7f070311 +int dimen dp_708 0x7f070312 +int dimen dp_709 0x7f070313 +int dimen dp_71 0x7f070314 +int dimen dp_710 0x7f070315 +int dimen dp_711 0x7f070316 +int dimen dp_712 0x7f070317 +int dimen dp_713 0x7f070318 +int dimen dp_714 0x7f070319 +int dimen dp_715 0x7f07031a +int dimen dp_716 0x7f07031b +int dimen dp_717 0x7f07031c +int dimen dp_718 0x7f07031d +int dimen dp_719 0x7f07031e +int dimen dp_72 0x7f07031f +int dimen dp_720 0x7f070320 +int dimen dp_721 0x7f070321 +int dimen dp_722 0x7f070322 +int dimen dp_723 0x7f070323 +int dimen dp_724 0x7f070324 +int dimen dp_725 0x7f070325 +int dimen dp_726 0x7f070326 +int dimen dp_727 0x7f070327 +int dimen dp_728 0x7f070328 +int dimen dp_729 0x7f070329 +int dimen dp_73 0x7f07032a +int dimen dp_730 0x7f07032b +int dimen dp_731 0x7f07032c +int dimen dp_732 0x7f07032d +int dimen dp_733 0x7f07032e +int dimen dp_734 0x7f07032f +int dimen dp_735 0x7f070330 +int dimen dp_736 0x7f070331 +int dimen dp_737 0x7f070332 +int dimen dp_738 0x7f070333 +int dimen dp_739 0x7f070334 +int dimen dp_74 0x7f070335 +int dimen dp_740 0x7f070336 +int dimen dp_741 0x7f070337 +int dimen dp_742 0x7f070338 +int dimen dp_743 0x7f070339 +int dimen dp_744 0x7f07033a +int dimen dp_745 0x7f07033b +int dimen dp_746 0x7f07033c +int dimen dp_747 0x7f07033d +int dimen dp_748 0x7f07033e +int dimen dp_749 0x7f07033f +int dimen dp_75 0x7f070340 +int dimen dp_750 0x7f070341 +int dimen dp_751 0x7f070342 +int dimen dp_752 0x7f070343 +int dimen dp_753 0x7f070344 +int dimen dp_754 0x7f070345 +int dimen dp_755 0x7f070346 +int dimen dp_756 0x7f070347 +int dimen dp_757 0x7f070348 +int dimen dp_758 0x7f070349 +int dimen dp_759 0x7f07034a +int dimen dp_76 0x7f07034b +int dimen dp_760 0x7f07034c +int dimen dp_761 0x7f07034d +int dimen dp_762 0x7f07034e +int dimen dp_763 0x7f07034f +int dimen dp_764 0x7f070350 +int dimen dp_765 0x7f070351 +int dimen dp_766 0x7f070352 +int dimen dp_767 0x7f070353 +int dimen dp_768 0x7f070354 +int dimen dp_769 0x7f070355 +int dimen dp_77 0x7f070356 +int dimen dp_770 0x7f070357 +int dimen dp_771 0x7f070358 +int dimen dp_772 0x7f070359 +int dimen dp_773 0x7f07035a +int dimen dp_774 0x7f07035b +int dimen dp_775 0x7f07035c +int dimen dp_776 0x7f07035d +int dimen dp_777 0x7f07035e +int dimen dp_778 0x7f07035f +int dimen dp_779 0x7f070360 +int dimen dp_78 0x7f070361 +int dimen dp_780 0x7f070362 +int dimen dp_781 0x7f070363 +int dimen dp_782 0x7f070364 +int dimen dp_783 0x7f070365 +int dimen dp_784 0x7f070366 +int dimen dp_785 0x7f070367 +int dimen dp_786 0x7f070368 +int dimen dp_787 0x7f070369 +int dimen dp_788 0x7f07036a +int dimen dp_789 0x7f07036b +int dimen dp_79 0x7f07036c +int dimen dp_790 0x7f07036d +int dimen dp_791 0x7f07036e +int dimen dp_792 0x7f07036f +int dimen dp_793 0x7f070370 +int dimen dp_794 0x7f070371 +int dimen dp_795 0x7f070372 +int dimen dp_796 0x7f070373 +int dimen dp_797 0x7f070374 +int dimen dp_798 0x7f070375 +int dimen dp_799 0x7f070376 +int dimen dp_7_5 0x7f070377 +int dimen dp_8 0x7f070378 +int dimen dp_80 0x7f070379 +int dimen dp_800 0x7f07037a +int dimen dp_801 0x7f07037b +int dimen dp_802 0x7f07037c +int dimen dp_803 0x7f07037d +int dimen dp_804 0x7f07037e +int dimen dp_805 0x7f07037f +int dimen dp_806 0x7f070380 +int dimen dp_807 0x7f070381 +int dimen dp_808 0x7f070382 +int dimen dp_809 0x7f070383 +int dimen dp_81 0x7f070384 +int dimen dp_810 0x7f070385 +int dimen dp_811 0x7f070386 +int dimen dp_812 0x7f070387 +int dimen dp_813 0x7f070388 +int dimen dp_814 0x7f070389 +int dimen dp_815 0x7f07038a +int dimen dp_816 0x7f07038b +int dimen dp_817 0x7f07038c +int dimen dp_818 0x7f07038d +int dimen dp_819 0x7f07038e +int dimen dp_82 0x7f07038f +int dimen dp_820 0x7f070390 +int dimen dp_821 0x7f070391 +int dimen dp_822 0x7f070392 +int dimen dp_823 0x7f070393 +int dimen dp_824 0x7f070394 +int dimen dp_825 0x7f070395 +int dimen dp_826 0x7f070396 +int dimen dp_827 0x7f070397 +int dimen dp_828 0x7f070398 +int dimen dp_829 0x7f070399 +int dimen dp_83 0x7f07039a +int dimen dp_830 0x7f07039b +int dimen dp_831 0x7f07039c +int dimen dp_832 0x7f07039d +int dimen dp_833 0x7f07039e +int dimen dp_834 0x7f07039f +int dimen dp_835 0x7f0703a0 +int dimen dp_836 0x7f0703a1 +int dimen dp_837 0x7f0703a2 +int dimen dp_838 0x7f0703a3 +int dimen dp_839 0x7f0703a4 +int dimen dp_84 0x7f0703a5 +int dimen dp_840 0x7f0703a6 +int dimen dp_841 0x7f0703a7 +int dimen dp_842 0x7f0703a8 +int dimen dp_843 0x7f0703a9 +int dimen dp_844 0x7f0703aa +int dimen dp_845 0x7f0703ab +int dimen dp_846 0x7f0703ac +int dimen dp_847 0x7f0703ad +int dimen dp_848 0x7f0703ae +int dimen dp_849 0x7f0703af +int dimen dp_85 0x7f0703b0 +int dimen dp_850 0x7f0703b1 +int dimen dp_851 0x7f0703b2 +int dimen dp_852 0x7f0703b3 +int dimen dp_853 0x7f0703b4 +int dimen dp_854 0x7f0703b5 +int dimen dp_855 0x7f0703b6 +int dimen dp_856 0x7f0703b7 +int dimen dp_857 0x7f0703b8 +int dimen dp_858 0x7f0703b9 +int dimen dp_859 0x7f0703ba +int dimen dp_86 0x7f0703bb +int dimen dp_860 0x7f0703bc +int dimen dp_861 0x7f0703bd +int dimen dp_862 0x7f0703be +int dimen dp_863 0x7f0703bf +int dimen dp_864 0x7f0703c0 +int dimen dp_865 0x7f0703c1 +int dimen dp_866 0x7f0703c2 +int dimen dp_867 0x7f0703c3 +int dimen dp_868 0x7f0703c4 +int dimen dp_869 0x7f0703c5 +int dimen dp_87 0x7f0703c6 +int dimen dp_870 0x7f0703c7 +int dimen dp_871 0x7f0703c8 +int dimen dp_872 0x7f0703c9 +int dimen dp_873 0x7f0703ca +int dimen dp_874 0x7f0703cb +int dimen dp_875 0x7f0703cc +int dimen dp_876 0x7f0703cd +int dimen dp_877 0x7f0703ce +int dimen dp_878 0x7f0703cf +int dimen dp_879 0x7f0703d0 +int dimen dp_88 0x7f0703d1 +int dimen dp_880 0x7f0703d2 +int dimen dp_881 0x7f0703d3 +int dimen dp_882 0x7f0703d4 +int dimen dp_883 0x7f0703d5 +int dimen dp_884 0x7f0703d6 +int dimen dp_885 0x7f0703d7 +int dimen dp_886 0x7f0703d8 +int dimen dp_887 0x7f0703d9 +int dimen dp_888 0x7f0703da +int dimen dp_889 0x7f0703db +int dimen dp_89 0x7f0703dc +int dimen dp_890 0x7f0703dd +int dimen dp_891 0x7f0703de +int dimen dp_892 0x7f0703df +int dimen dp_893 0x7f0703e0 +int dimen dp_894 0x7f0703e1 +int dimen dp_895 0x7f0703e2 +int dimen dp_896 0x7f0703e3 +int dimen dp_897 0x7f0703e4 +int dimen dp_898 0x7f0703e5 +int dimen dp_899 0x7f0703e6 +int dimen dp_9 0x7f0703e7 +int dimen dp_90 0x7f0703e8 +int dimen dp_900 0x7f0703e9 +int dimen dp_901 0x7f0703ea +int dimen dp_902 0x7f0703eb +int dimen dp_903 0x7f0703ec +int dimen dp_904 0x7f0703ed +int dimen dp_905 0x7f0703ee +int dimen dp_906 0x7f0703ef +int dimen dp_907 0x7f0703f0 +int dimen dp_908 0x7f0703f1 +int dimen dp_909 0x7f0703f2 +int dimen dp_91 0x7f0703f3 +int dimen dp_910 0x7f0703f4 +int dimen dp_911 0x7f0703f5 +int dimen dp_912 0x7f0703f6 +int dimen dp_913 0x7f0703f7 +int dimen dp_914 0x7f0703f8 +int dimen dp_915 0x7f0703f9 +int dimen dp_916 0x7f0703fa +int dimen dp_917 0x7f0703fb +int dimen dp_918 0x7f0703fc +int dimen dp_919 0x7f0703fd +int dimen dp_92 0x7f0703fe +int dimen dp_920 0x7f0703ff +int dimen dp_921 0x7f070400 +int dimen dp_922 0x7f070401 +int dimen dp_923 0x7f070402 +int dimen dp_924 0x7f070403 +int dimen dp_925 0x7f070404 +int dimen dp_926 0x7f070405 +int dimen dp_927 0x7f070406 +int dimen dp_928 0x7f070407 +int dimen dp_929 0x7f070408 +int dimen dp_93 0x7f070409 +int dimen dp_930 0x7f07040a +int dimen dp_931 0x7f07040b +int dimen dp_932 0x7f07040c +int dimen dp_933 0x7f07040d +int dimen dp_934 0x7f07040e +int dimen dp_935 0x7f07040f +int dimen dp_936 0x7f070410 +int dimen dp_937 0x7f070411 +int dimen dp_938 0x7f070412 +int dimen dp_939 0x7f070413 +int dimen dp_94 0x7f070414 +int dimen dp_940 0x7f070415 +int dimen dp_941 0x7f070416 +int dimen dp_942 0x7f070417 +int dimen dp_943 0x7f070418 +int dimen dp_944 0x7f070419 +int dimen dp_945 0x7f07041a +int dimen dp_946 0x7f07041b +int dimen dp_947 0x7f07041c +int dimen dp_948 0x7f07041d +int dimen dp_949 0x7f07041e +int dimen dp_95 0x7f07041f +int dimen dp_950 0x7f070420 +int dimen dp_951 0x7f070421 +int dimen dp_952 0x7f070422 +int dimen dp_953 0x7f070423 +int dimen dp_954 0x7f070424 +int dimen dp_955 0x7f070425 +int dimen dp_956 0x7f070426 +int dimen dp_957 0x7f070427 +int dimen dp_958 0x7f070428 +int dimen dp_959 0x7f070429 +int dimen dp_96 0x7f07042a +int dimen dp_960 0x7f07042b +int dimen dp_961 0x7f07042c +int dimen dp_962 0x7f07042d +int dimen dp_963 0x7f07042e +int dimen dp_964 0x7f07042f +int dimen dp_965 0x7f070430 +int dimen dp_966 0x7f070431 +int dimen dp_967 0x7f070432 +int dimen dp_968 0x7f070433 +int dimen dp_969 0x7f070434 +int dimen dp_97 0x7f070435 +int dimen dp_970 0x7f070436 +int dimen dp_971 0x7f070437 +int dimen dp_972 0x7f070438 +int dimen dp_973 0x7f070439 +int dimen dp_974 0x7f07043a +int dimen dp_975 0x7f07043b +int dimen dp_976 0x7f07043c +int dimen dp_977 0x7f07043d +int dimen dp_978 0x7f07043e +int dimen dp_979 0x7f07043f +int dimen dp_98 0x7f070440 +int dimen dp_980 0x7f070441 +int dimen dp_981 0x7f070442 +int dimen dp_982 0x7f070443 +int dimen dp_983 0x7f070444 +int dimen dp_984 0x7f070445 +int dimen dp_985 0x7f070446 +int dimen dp_986 0x7f070447 +int dimen dp_987 0x7f070448 +int dimen dp_988 0x7f070449 +int dimen dp_989 0x7f07044a +int dimen dp_99 0x7f07044b +int dimen dp_990 0x7f07044c +int dimen dp_991 0x7f07044d +int dimen dp_992 0x7f07044e +int dimen dp_993 0x7f07044f +int dimen dp_994 0x7f070450 +int dimen dp_995 0x7f070451 +int dimen dp_996 0x7f070452 +int dimen dp_997 0x7f070453 +int dimen dp_998 0x7f070454 +int dimen dp_999 0x7f070455 +int dimen dp_m_1 0x7f070456 +int dimen dp_m_10 0x7f070457 +int dimen dp_m_12 0x7f070458 +int dimen dp_m_2 0x7f070459 +int dimen dp_m_20 0x7f07045a +int dimen dp_m_30 0x7f07045b +int dimen dp_m_5 0x7f07045c +int dimen dp_m_60 0x7f07045d +int dimen dp_m_8 0x7f07045e +int dimen fastscroll_default_thickness 0x7f07045f +int dimen fastscroll_margin 0x7f070460 +int dimen fastscroll_minimum_range 0x7f070461 +int dimen heart_ratingbar_height 0x7f070462 +int dimen heart_ratingbar_width 0x7f070463 +int dimen highlight_alpha_material_colored 0x7f070464 +int dimen highlight_alpha_material_dark 0x7f070465 +int dimen highlight_alpha_material_light 0x7f070466 +int dimen hint_alpha_material_dark 0x7f070467 +int dimen hint_alpha_material_light 0x7f070468 +int dimen hint_pressed_alpha_material_dark 0x7f070469 +int dimen hint_pressed_alpha_material_light 0x7f07046a +int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f07046b +int dimen item_touch_helper_swipe_escape_max_velocity 0x7f07046c +int dimen item_touch_helper_swipe_escape_velocity 0x7f07046d +int dimen modle_car_panel_call 0x7f07046e +int dimen modle_car_panel_call_margin 0x7f07046f +int dimen modle_car_panel_call_margin_left 0x7f070470 +int dimen module_common_shadow_width 0x7f070471 +int dimen module_common_shadow_width_pos 0x7f070472 +int dimen module_commons_toast_icon_width 0x7f070473 +int dimen module_commons_toast_marginBottom 0x7f070474 +int dimen module_commons_toast_marginLeft 0x7f070475 +int dimen module_commons_toast_marginRight 0x7f070476 +int dimen module_commons_toast_marginTop 0x7f070477 +int dimen module_commons_toast_maxWidth 0x7f070478 +int dimen module_commons_toast_minWidth 0x7f070479 +int dimen module_commons_toast_space_between_icon_and_msg 0x7f07047a +int dimen module_commons_toast_textSize 0x7f07047b +int dimen module_commons_toast_with_left_drawable_marginBottom 0x7f07047c +int dimen module_commons_toast_with_left_drawable_marginLeft 0x7f07047d +int dimen module_commons_toast_with_left_drawable_marginTop 0x7f07047e +int dimen module_commons_toast_y_offset 0x7f07047f +int dimen module_map_amap_my_location_bg_size 0x7f070480 +int dimen module_map_amap_my_location_icon_height 0x7f070481 +int dimen module_map_amap_my_location_icon_width 0x7f070482 +int dimen module_media_back_height 0x7f070483 +int dimen module_media_back_radius 0x7f070484 +int dimen module_media_back_width 0x7f070485 +int dimen module_media_card_control_icon_left_padding 0x7f070486 +int dimen module_media_card_control_icon_margin_bottom 0x7f070487 +int dimen module_media_card_control_icon_size 0x7f070488 +int dimen module_media_card_control_play_icon_margin 0x7f070489 +int dimen module_media_card_control_play_icon_size 0x7f07048a +int dimen module_media_card_height 0x7f07048b +int dimen module_media_card_no_share_anim_height 0x7f07048c +int dimen module_media_card_no_share_anim_img_height 0x7f07048d +int dimen module_media_card_no_share_anim_img_width 0x7f07048e +int dimen module_media_card_no_share_anim_width 0x7f07048f +int dimen module_media_card_no_share_music_bottom_title_margin 0x7f070490 +int dimen module_media_card_no_share_music_bottom_title_size 0x7f070491 +int dimen module_media_card_no_share_music_top_title_margin 0x7f070492 +int dimen module_media_card_no_share_music_top_title_size 0x7f070493 +int dimen module_media_card_no_share_title_margin 0x7f070494 +int dimen module_media_card_progress_bg_drawable_height 0x7f070495 +int dimen module_media_card_progress_bg_drawable_width 0x7f070496 +int dimen module_media_card_progress_height 0x7f070497 +int dimen module_media_card_progress_margin 0x7f070498 +int dimen module_media_card_progress_pop_bg_drawable_height 0x7f070499 +int dimen module_media_card_progress_pop_bg_drawable_width 0x7f07049a +int dimen module_media_card_progress_time_text_margin_bottom 0x7f07049b +int dimen module_media_card_progress_time_text_margin_left 0x7f07049c +int dimen module_media_card_progress_time_text_margin_right 0x7f07049d +int dimen module_media_card_progress_time_text_size 0x7f07049e +int dimen module_media_card_radius 0x7f07049f +int dimen module_media_card_radius_blur 0x7f0704a0 +int dimen module_media_card_share_full_margin_top 0x7f0704a1 +int dimen module_media_card_share_user_text_width_max 0x7f0704a2 +int dimen module_media_card_width 0x7f0704a3 +int dimen module_media_draw_rect_map_bottom 0x7f0704a4 +int dimen module_media_draw_rect_map_left 0x7f0704a5 +int dimen module_media_draw_rect_map_right 0x7f0704a6 +int dimen module_media_draw_rect_map_top 0x7f0704a7 +int dimen module_media_music_state_location 0x7f0704a8 +int dimen module_media_music_state_location_new 0x7f0704a9 +int dimen module_media_music_state_location_x 0x7f0704aa +int dimen module_media_music_state_location_x_new 0x7f0704ab +int dimen module_media_pop_window_anim_img_size 0x7f0704ac +int dimen module_media_pop_window_anim_img_size_new 0x7f0704ad +int dimen module_media_pop_window_control_img_size 0x7f0704ae +int dimen module_media_pop_window_control_margin_right 0x7f0704af +int dimen module_media_pop_window_height 0x7f0704b0 +int dimen module_media_pop_window_height_new 0x7f0704b1 +int dimen module_media_pop_window_inner_height 0x7f0704b2 +int dimen module_media_pop_window_inner_padding 0x7f0704b3 +int dimen module_media_pop_window_pause 0x7f0704b4 +int dimen module_media_pop_window_progress_height 0x7f0704b5 +int dimen module_media_pop_window_radius 0x7f0704b6 +int dimen module_media_pop_window_radius_margin 0x7f0704b7 +int dimen module_media_pop_window_size 0x7f0704b8 +int dimen module_media_pop_window_text_bottom_size 0x7f0704b9 +int dimen module_media_pop_window_text_margin 0x7f0704ba +int dimen module_media_pop_window_text_top_size 0x7f0704bb +int dimen module_media_pop_window_text_width 0x7f0704bc +int dimen module_media_pop_window_width 0x7f0704bd +int dimen module_media_pop_window_width_new 0x7f0704be +int dimen module_media_share_back_top 0x7f0704bf +int dimen module_media_share_fragment_bg_radius 0x7f0704c0 +int dimen module_media_share_fragment_btn_height 0x7f0704c1 +int dimen module_media_share_fragment_btn_size 0x7f0704c2 +int dimen module_media_share_fragment_center_margin_bottom 0x7f0704c3 +int dimen module_media_share_fragment_center_margin_top 0x7f0704c4 +int dimen module_media_share_fragment_center_text_size 0x7f0704c5 +int dimen module_media_share_fragment_height 0x7f0704c6 +int dimen module_media_share_fragment_img_radius 0x7f0704c7 +int dimen module_media_share_fragment_title_height 0x7f0704c8 +int dimen module_media_share_fragment_title_img_right 0x7f0704c9 +int dimen module_media_share_fragment_title_img_size 0x7f0704ca +int dimen module_media_share_fragment_title_padding 0x7f0704cb +int dimen module_media_share_fragment_title_padding_left 0x7f0704cc +int dimen module_media_share_fragment_title_padding_top 0x7f0704cd +int dimen module_media_share_fragment_title_scroll_tv1_size 0x7f0704ce +int dimen module_media_share_fragment_title_scroll_tv2_size 0x7f0704cf +int dimen module_media_share_fragment_tv2_margin_top 0x7f0704d0 +int dimen module_media_share_fragment_width 0x7f0704d1 +int dimen module_media_share_full_screen_back_top 0x7f0704d2 +int dimen module_media_share_full_screen_height 0x7f0704d3 +int dimen module_media_share_full_screen_margin_left_right 0x7f0704d4 +int dimen module_media_share_full_screen_pading 0x7f0704d5 +int dimen module_media_share_full_screen_width 0x7f0704d6 +int dimen module_media_share_media_back_height 0x7f0704d7 +int dimen module_media_share_media_back_margin_left 0x7f0704d8 +int dimen module_media_share_media_back_margin_right 0x7f0704d9 +int dimen module_media_share_media_back_top 0x7f0704da +int dimen module_media_share_media_image_height 0x7f0704db +int dimen module_media_share_media_image_radius 0x7f0704dc +int dimen module_media_share_media_image_width 0x7f0704dd +int dimen module_media_share_media_name_back_left 0x7f0704de +int dimen module_media_share_media_singer_name_size 0x7f0704df +int dimen module_media_share_media_song_name_size 0x7f0704e0 +int dimen module_media_share_share_icon_width 0x7f0704e1 +int dimen module_media_share_user_back_margin_height 0x7f0704e2 +int dimen module_media_share_user_back_margin_left_right 0x7f0704e3 +int dimen module_media_share_user_back_radius 0x7f0704e4 +int dimen module_media_share_user_from_size 0x7f0704e5 +int dimen module_media_share_user_head_image_height 0x7f0704e6 +int dimen module_media_share_user_head_image_left 0x7f0704e7 +int dimen module_media_share_user_head_image_width 0x7f0704e8 +int dimen module_media_share_user_like_back_margin_right 0x7f0704e9 +int dimen module_media_share_user_like_height 0x7f0704ea +int dimen module_media_share_user_like_size 0x7f0704eb +int dimen module_media_share_user_like_width 0x7f0704ec +int dimen module_media_share_user_name_back_margin_left 0x7f0704ed +int dimen module_media_share_user_name_back_margin_right 0x7f0704ee +int dimen module_media_share_user_name_size 0x7f0704ef +int dimen module_media_share_user_of_share_size 0x7f0704f0 +int dimen module_media_toast_share_bg_radius 0x7f0704f1 +int dimen module_media_toast_share_height 0x7f0704f2 +int dimen module_media_toast_share_img_size 0x7f0704f3 +int dimen module_media_toast_share_margin_top 0x7f0704f4 +int dimen module_media_toast_share_text_size 0x7f0704f5 +int dimen module_media_toast_share_width 0x7f0704f6 +int dimen module_media_window_corner 0x7f0704f7 +int dimen module_service_content_minWidth 0x7f0704f8 +int dimen module_service_content_textSize 0x7f0704f9 +int dimen module_service_id_marker_content_paddingRight 0x7f0704fa +int dimen module_service_id_marker_content_paddingRight_widthoutCall 0x7f0704fb +int dimen module_service_marker_anchor_size 0x7f0704fc +int dimen module_service_marker_bounds_bottomMargin 0x7f0704fd +int dimen module_service_marker_bounds_leftMargin 0x7f0704fe +int dimen module_service_marker_bounds_rightMargin 0x7f0704ff +int dimen module_service_marker_bounds_topMargin 0x7f070500 +int dimen module_service_marker_bubble_height 0x7f070501 +int dimen module_service_marker_bubble_icon_height 0x7f070502 +int dimen module_service_marker_bubble_icon_marginBottom 0x7f070503 +int dimen module_service_marker_bubble_icon_vr_height 0x7f070504 +int dimen module_service_marker_bubble_icon_vr_width 0x7f070505 +int dimen module_service_marker_bubble_icon_width 0x7f070506 +int dimen module_service_marker_bubble_vr_height 0x7f070507 +int dimen module_service_marker_bubble_vr_width 0x7f070508 +int dimen module_service_marker_bubble_width 0x7f070509 +int dimen module_service_marker_dot_marginTop 0x7f07050a +int dimen module_service_tag_textSize 0x7f07050b +int dimen module_service_user_header_height 0x7f07050c +int dimen module_service_user_header_width 0x7f07050d +int dimen module_services_dispatch_airport_dialog_affirm_corner 0x7f07050e +int dimen module_services_dispatch_airport_dialog_affirm_height 0x7f07050f +int dimen module_services_dispatch_airport_dialog_affirm_width 0x7f070510 +int dimen module_services_dispatch_airport_dialog_corner 0x7f070511 +int dimen module_services_dispatch_airport_dialog_endloc_content_margin_top 0x7f070512 +int dimen module_services_dispatch_airport_dialog_endloc_margin_top 0x7f070513 +int dimen module_services_dispatch_airport_dialog_first_column_margin_left 0x7f070514 +int dimen module_services_dispatch_airport_dialog_height 0x7f070515 +int dimen module_services_dispatch_airport_dialog_last_column_margin_left 0x7f070516 +int dimen module_services_dispatch_airport_dialog_margin_bottom 0x7f070517 +int dimen module_services_dispatch_airport_dialog_margin_top 0x7f070518 +int dimen module_services_dispatch_airport_dialog_next_level_title_size 0x7f070519 +int dimen module_services_dispatch_airport_dialog_startloc_content_margin_top 0x7f07051a +int dimen module_services_dispatch_airport_dialog_startloc_margin_top 0x7f07051b +int dimen module_services_dispatch_airport_dialog_task_content_margin_top 0x7f07051c +int dimen module_services_dispatch_airport_dialog_task_content_size 0x7f07051d +int dimen module_services_dispatch_airport_dialog_task_margin_top 0x7f07051e +int dimen module_services_dispatch_airport_dialog_title_margin_top 0x7f07051f +int dimen module_services_dispatch_airport_dialog_title_size 0x7f070520 +int dimen module_services_dispatch_airport_dialog_width 0x7f070521 +int dimen module_services_dispatch_cars_dialog_btn_width 0x7f070522 +int dimen module_services_dispatch_cars_dialog_content_margin_top 0x7f070523 +int dimen module_services_dispatch_cars_dialog_content_size 0x7f070524 +int dimen module_services_dispatch_cars_dialog_corner 0x7f070525 +int dimen module_services_dispatch_cars_dialog_height 0x7f070526 +int dimen module_services_dispatch_cars_dialog_line_margin_bottom 0x7f070527 +int dimen module_services_dispatch_cars_dialog_loc_margin_top 0x7f070528 +int dimen module_services_dispatch_cars_dialog_loc_size 0x7f070529 +int dimen module_services_dispatch_cars_dialog_timer_margin 0x7f07052a +int dimen module_services_dispatch_cars_dialog_timer_size 0x7f07052b +int dimen module_services_dispatch_cars_dialog_timer_txt_size 0x7f07052c +int dimen module_services_dispatch_cars_dialog_title_margin_top 0x7f07052d +int dimen module_services_dispatch_cars_dialog_title_size 0x7f07052e +int dimen module_services_dispatch_cars_dialog_width 0x7f07052f +int dimen module_services_empty_tip_marginTop 0x7f070530 +int dimen module_services_empty_tip_textSize 0x7f070531 +int dimen module_services_id_panel_item_avatar_border_width 0x7f070532 +int dimen module_services_id_panel_item_distance_marginLeft 0x7f070533 +int dimen module_services_info_window_height 0x7f070534 +int dimen module_services_info_window_paddingEnd 0x7f070535 +int dimen module_services_info_window_paddingStart 0x7f070536 +int dimen module_services_load_strategy_marginRight 0x7f070537 +int dimen module_services_load_strategy_paddingLeft 0x7f070538 +int dimen module_services_load_strategy_paddingTop 0x7f070539 +int dimen module_services_load_strategy_textSize 0x7f07053a +int dimen module_services_online_car_panel_close_margin_top 0x7f07053b +int dimen module_services_online_car_panel_marginBottom 0x7f07053c +int dimen module_services_online_car_panel_marginRight 0x7f07053d +int dimen module_services_online_car_panel_marginTop 0x7f07053e +int dimen module_services_online_car_panel_paddingBottom 0x7f07053f +int dimen module_services_online_car_panel_paddingLeft 0x7f070540 +int dimen module_services_online_car_panel_recycler_view_margin_top 0x7f070541 +int dimen module_services_online_car_panel_title_margin_top 0x7f070542 +int dimen module_services_online_car_panel_title_text_size 0x7f070543 +int dimen module_services_panel_item_avatar_size 0x7f070544 +int dimen module_services_panel_item_corner 0x7f070545 +int dimen module_services_panel_item_detail_bkg_corner 0x7f070546 +int dimen module_services_panel_item_detail_padding 0x7f070547 +int dimen module_services_panel_item_detail_textSize 0x7f070548 +int dimen module_services_panel_item_distance_tag_marginBottom 0x7f070549 +int dimen module_services_panel_item_distance_textSize 0x7f07054a +int dimen module_services_panel_item_marginBottom 0x7f07054b +int dimen module_services_panel_item_nickname_marginLeft 0x7f07054c +int dimen module_services_panel_item_nickname_marginTop 0x7f07054d +int dimen module_services_panel_item_nickname_textSize 0x7f07054e +int dimen module_services_panel_item_padding 0x7f07054f +int dimen module_services_panel_item_start 0x7f070550 +int dimen module_services_panel_strategy_button_bkg_corner 0x7f070551 +int dimen module_services_panel_strategy_button_marginTop 0x7f070552 +int dimen module_v2n_image_margin_left 0x7f070553 +int dimen module_v2n_tip_height 0x7f070554 +int dimen module_v2n_tip_text_margin_right 0x7f070555 +int dimen module_v2n_tip_text_width 0x7f070556 +int dimen module_v2n_tip_width 0x7f070557 +int dimen module_v2x_brake_image_margin_left 0x7f070558 +int dimen module_v2x_brake_image_margin_right 0x7f070559 +int dimen module_v2x_brake_image_width 0x7f07055a +int dimen module_v2x_brake_tip_height 0x7f07055b +int dimen module_v2x_brake_tip_width 0x7f07055c +int dimen module_v2x_surrounding_item_margin_left 0x7f07055d +int dimen module_v2x_surrounding_list_margin_left 0x7f07055e +int dimen notification_action_icon_size 0x7f07055f +int dimen notification_action_text_size 0x7f070560 +int dimen notification_big_circle_margin 0x7f070561 +int dimen notification_content_margin_start 0x7f070562 +int dimen notification_large_icon_height 0x7f070563 +int dimen notification_large_icon_width 0x7f070564 +int dimen notification_main_column_padding_top 0x7f070565 +int dimen notification_media_narrow_margin 0x7f070566 +int dimen notification_right_icon_size 0x7f070567 +int dimen notification_right_side_padding_top 0x7f070568 +int dimen notification_small_icon_background_padding 0x7f070569 +int dimen notification_small_icon_size_as_large 0x7f07056a +int dimen notification_subtext_size 0x7f07056b +int dimen notification_top_pad 0x7f07056c +int dimen notification_top_pad_large_text 0x7f07056d +int dimen panel_list_item_title_size 0x7f07056e +int dimen ratingbar_padding 0x7f07056f +int dimen share_item_address 0x7f070570 +int dimen sp_10 0x7f070571 +int dimen sp_11 0x7f070572 +int dimen sp_12 0x7f070573 +int dimen sp_13 0x7f070574 +int dimen sp_14 0x7f070575 +int dimen sp_15 0x7f070576 +int dimen sp_16 0x7f070577 +int dimen sp_17 0x7f070578 +int dimen sp_18 0x7f070579 +int dimen sp_19 0x7f07057a +int dimen sp_20 0x7f07057b +int dimen sp_21 0x7f07057c +int dimen sp_22 0x7f07057d +int dimen sp_23 0x7f07057e +int dimen sp_24 0x7f07057f +int dimen sp_25 0x7f070580 +int dimen sp_28 0x7f070581 +int dimen sp_30 0x7f070582 +int dimen sp_32 0x7f070583 +int dimen sp_34 0x7f070584 +int dimen sp_36 0x7f070585 +int dimen sp_38 0x7f070586 +int dimen sp_40 0x7f070587 +int dimen sp_42 0x7f070588 +int dimen sp_48 0x7f070589 +int dimen sp_6 0x7f07058a +int dimen sp_7 0x7f07058b +int dimen sp_8 0x7f07058c +int dimen sp_9 0x7f07058d +int dimen subtitle_corner_radius 0x7f07058e +int dimen subtitle_outline_width 0x7f07058f +int dimen subtitle_shadow_offset 0x7f070590 +int dimen subtitle_shadow_radius 0x7f070591 +int dimen tooltip_corner_radius 0x7f070592 +int dimen tooltip_horizontal_padding 0x7f070593 +int dimen tooltip_margin 0x7f070594 +int dimen tooltip_precise_anchor_extra_offset 0x7f070595 +int dimen tooltip_precise_anchor_threshold 0x7f070596 +int dimen tooltip_vertical_padding 0x7f070597 +int dimen tooltip_y_offset_non_touch 0x7f070598 +int dimen tooltip_y_offset_touch 0x7f070599 +int dimen v2x_panel_loading_top 0x7f07059a +int dimen v2x_share_btn_height 0x7f07059b +int dimen v2x_share_btn_width 0x7f07059c +int drawable abc_ab_share_pack_mtrl_alpha 0x7f080001 +int drawable abc_action_bar_item_background_material 0x7f080002 +int drawable abc_btn_borderless_material 0x7f080003 +int drawable abc_btn_check_material 0x7f080004 +int drawable abc_btn_check_material_anim 0x7f080005 +int drawable abc_btn_check_to_on_mtrl_000 0x7f080006 +int drawable abc_btn_check_to_on_mtrl_015 0x7f080007 +int drawable abc_btn_colored_material 0x7f080008 +int drawable abc_btn_default_mtrl_shape 0x7f080009 +int drawable abc_btn_radio_material 0x7f08000a +int drawable abc_btn_radio_material_anim 0x7f08000b +int drawable abc_btn_radio_to_on_mtrl_000 0x7f08000c +int drawable abc_btn_radio_to_on_mtrl_015 0x7f08000d +int drawable abc_btn_switch_to_on_mtrl_00001 0x7f08000e +int drawable abc_btn_switch_to_on_mtrl_00012 0x7f08000f +int drawable abc_cab_background_internal_bg 0x7f080010 +int drawable abc_cab_background_top_material 0x7f080011 +int drawable abc_cab_background_top_mtrl_alpha 0x7f080012 +int drawable abc_control_background_material 0x7f080013 +int drawable abc_dialog_material_background 0x7f080014 +int drawable abc_edit_text_material 0x7f080015 +int drawable abc_ic_ab_back_material 0x7f080016 +int drawable abc_ic_arrow_drop_right_black_24dp 0x7f080017 +int drawable abc_ic_clear_material 0x7f080018 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f080019 +int drawable abc_ic_go_search_api_material 0x7f08001a +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f08001b +int drawable abc_ic_menu_cut_mtrl_alpha 0x7f08001c +int drawable abc_ic_menu_overflow_material 0x7f08001d +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f08001e +int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f08001f +int drawable abc_ic_menu_share_mtrl_alpha 0x7f080020 +int drawable abc_ic_search_api_material 0x7f080021 +int drawable abc_ic_star_black_16dp 0x7f080022 +int drawable abc_ic_star_black_36dp 0x7f080023 +int drawable abc_ic_star_black_48dp 0x7f080024 +int drawable abc_ic_star_half_black_16dp 0x7f080025 +int drawable abc_ic_star_half_black_36dp 0x7f080026 +int drawable abc_ic_star_half_black_48dp 0x7f080027 +int drawable abc_ic_voice_search_api_material 0x7f080028 +int drawable abc_item_background_holo_dark 0x7f080029 +int drawable abc_item_background_holo_light 0x7f08002a +int drawable abc_list_divider_material 0x7f08002b +int drawable abc_list_divider_mtrl_alpha 0x7f08002c +int drawable abc_list_focused_holo 0x7f08002d +int drawable abc_list_longpressed_holo 0x7f08002e +int drawable abc_list_pressed_holo_dark 0x7f08002f +int drawable abc_list_pressed_holo_light 0x7f080030 +int drawable abc_list_selector_background_transition_holo_dark 0x7f080031 +int drawable abc_list_selector_background_transition_holo_light 0x7f080032 +int drawable abc_list_selector_disabled_holo_dark 0x7f080033 +int drawable abc_list_selector_disabled_holo_light 0x7f080034 +int drawable abc_list_selector_holo_dark 0x7f080035 +int drawable abc_list_selector_holo_light 0x7f080036 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f080037 +int drawable abc_popup_background_mtrl_mult 0x7f080038 +int drawable abc_ratingbar_indicator_material 0x7f080039 +int drawable abc_ratingbar_material 0x7f08003a +int drawable abc_ratingbar_small_material 0x7f08003b +int drawable abc_scrubber_control_off_mtrl_alpha 0x7f08003c +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f08003d +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f08003e +int drawable abc_scrubber_primary_mtrl_alpha 0x7f08003f +int drawable abc_scrubber_track_mtrl_alpha 0x7f080040 +int drawable abc_seekbar_thumb_material 0x7f080041 +int drawable abc_seekbar_tick_mark_material 0x7f080042 +int drawable abc_seekbar_track_material 0x7f080043 +int drawable abc_spinner_mtrl_am_alpha 0x7f080044 +int drawable abc_spinner_textfield_background_material 0x7f080045 +int drawable abc_switch_thumb_material 0x7f080046 +int drawable abc_switch_track_mtrl_alpha 0x7f080047 +int drawable abc_tab_indicator_material 0x7f080048 +int drawable abc_tab_indicator_mtrl_alpha 0x7f080049 +int drawable abc_text_cursor_material 0x7f08004a +int drawable abc_text_select_handle_left_mtrl_dark 0x7f08004b +int drawable abc_text_select_handle_left_mtrl_light 0x7f08004c +int drawable abc_text_select_handle_middle_mtrl_dark 0x7f08004d +int drawable abc_text_select_handle_middle_mtrl_light 0x7f08004e +int drawable abc_text_select_handle_right_mtrl_dark 0x7f08004f +int drawable abc_text_select_handle_right_mtrl_light 0x7f080050 +int drawable abc_textfield_activated_mtrl_alpha 0x7f080051 +int drawable abc_textfield_default_mtrl_alpha 0x7f080052 +int drawable abc_textfield_search_activated_mtrl_alpha 0x7f080053 +int drawable abc_textfield_search_default_mtrl_alpha 0x7f080054 +int drawable abc_textfield_search_material 0x7f080055 +int drawable abc_vector_test 0x7f080056 +int drawable account_adk_btn_gradient 0x7f080057 +int drawable account_adk_btn_gray 0x7f080058 +int drawable account_sdk_bg_10_corner 0x7f080059 +int drawable account_sdk_bg_8_corner 0x7f08005a +int drawable bg_adas_dispatch 0x7f08005b +int drawable bg_adas_dispatch_affirm 0x7f08005c +int drawable bg_map_marker_blue 0x7f08005d +int drawable bg_map_marker_blue_dark 0x7f08005e +int drawable bg_map_marker_blue_info 0x7f08005f +int drawable bg_map_marker_dark_blue_info 0x7f080060 +int drawable bg_map_marker_dark_green_info 0x7f080061 +int drawable bg_map_marker_green 0x7f080062 +int drawable bg_map_marker_green_dark 0x7f080063 +int drawable bg_map_marker_green_info 0x7f080064 +int drawable bg_map_marker_grey_info 0x7f080065 +int drawable bg_map_marker_oragne 0x7f080066 +int drawable bg_map_marker_orange_info 0x7f080067 +int drawable bg_map_marker_purple 0x7f080068 +int drawable bg_map_marker_purple_info 0x7f080069 +int drawable bg_map_marker_red 0x7f08006a +int drawable bg_map_marker_red_info 0x7f08006b +int drawable bg_map_marker_yellow_info 0x7f08006c +int drawable bg_qr_scan_line 0x7f08006d +int drawable bg_qr_scan_success 0x7f08006e +int drawable bg_shape_reverse_triangle_blue 0x7f08006f +int drawable bg_shape_reverse_triangle_dark_blue 0x7f080070 +int drawable bg_shape_reverse_triangle_dark_green 0x7f080071 +int drawable bg_shape_reverse_triangle_green 0x7f080072 +int drawable bg_shape_reverse_triangle_orange 0x7f080073 +int drawable bg_shape_reverse_triangle_purple 0x7f080074 +int drawable bg_shape_reverse_triangle_red 0x7f080075 +int drawable bg_shape_reverse_yellow 0x7f080076 +int drawable bg_waring_limiting_velocity 0x7f080077 +int drawable bg_waring_traffic_light_vr 0x7f080078 +int drawable bg_warning_bg 0x7f080079 +int drawable blue 0x7f08007a +int drawable btn_bg 0x7f08007b +int drawable btn_checkbox_checked_mtrl 0x7f08007c +int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f08007d +int drawable btn_checkbox_unchecked_mtrl 0x7f08007e +int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f08007f +int drawable btn_radio_off_mtrl 0x7f080080 +int drawable btn_radio_off_to_on_mtrl_animation 0x7f080081 +int drawable btn_radio_on_mtrl 0x7f080082 +int drawable btn_radio_on_to_off_mtrl_animation 0x7f080083 +int drawable btn_show_bg 0x7f080084 +int drawable common_marker_bottom_floor 0x7f080085 +int drawable dialog_white_bg 0x7f080086 +int drawable ic_amap_navi_cursor 0x7f080087 +int drawable ic_back 0x7f080088 +int drawable ic_back_true 0x7f080089 +int drawable ic_can_config 0x7f08008a +int drawable ic_can_config_true 0x7f08008b +int drawable ic_minimality 0x7f08008c +int drawable ic_minimality_true 0x7f08008d +int drawable ic_navi_start 0x7f08008e +int drawable ic_navi_target 0x7f08008f +int drawable ic_phone_back 0x7f080090 +int drawable ic_reverse_triangle 0x7f080091 +int drawable ic_search_choice_point 0x7f080092 +int drawable ic_search_poi_location 0x7f080093 +int drawable ic_search_unshadow 0x7f080094 +int drawable icon_common_heart_animation_vr00 0x7f080095 +int drawable icon_common_heart_animation_vr01 0x7f080096 +int drawable icon_common_heart_animation_vr02 0x7f080097 +int drawable icon_default_user_head 0x7f080098 +int drawable icon_heart_choose 0x7f080099 +int drawable icon_heart_second 0x7f08009a +int drawable icon_heart_second_other 0x7f08009b +int drawable icon_heart_unchoose 0x7f08009c +int drawable icon_heart_unchoose_other 0x7f08009d +int drawable icon_map_marker_4s 0x7f08009e +int drawable icon_map_marker_book 0x7f08009f +int drawable icon_map_marker_car_gray 0x7f0800a0 +int drawable icon_map_marker_car_gray_selected 0x7f0800a1 +int drawable icon_map_marker_car_type2 0x7f0800a2 +int drawable icon_map_marker_car_type_110 0x7f0800a3 +int drawable icon_map_marker_car_type_119 0x7f0800a4 +int drawable icon_map_marker_car_type_120 0x7f0800a5 +int drawable icon_map_marker_car_type_bus 0x7f0800a6 +int drawable icon_map_marker_car_type_taxi 0x7f0800a7 +int drawable icon_map_marker_living 0x7f0800a8 +int drawable icon_map_marker_living_white 0x7f0800a9 +int drawable icon_map_marker_location_blue 0x7f0800aa +int drawable icon_map_marker_location_yellow 0x7f0800ab +int drawable icon_map_marker_location_yellow_vr 0x7f0800ac +int drawable icon_map_marker_misic 0x7f0800ad +int drawable icon_map_marker_news 0x7f0800ae +int drawable icon_map_marker_pondingl 0x7f0800af +int drawable icon_map_marker_pondingl2 0x7f0800b0 +int drawable icon_map_marker_pondingl2_white 0x7f0800b1 +int drawable icon_map_marker_refuel 0x7f0800b2 +int drawable icon_map_marker_road_block_off 0x7f0800b3 +int drawable icon_map_marker_road_block_off2 0x7f0800b4 +int drawable icon_map_marker_road_block_off2_white 0x7f0800b5 +int drawable icon_map_marker_road_block_up 0x7f0800b6 +int drawable icon_map_marker_road_block_up2 0x7f0800b7 +int drawable icon_map_marker_road_block_up2_white 0x7f0800b8 +int drawable icon_map_marker_road_check 0x7f0800b9 +int drawable icon_map_marker_road_check2 0x7f0800ba +int drawable icon_map_marker_road_check2_white 0x7f0800bb +int drawable icon_map_marker_road_work 0x7f0800bc +int drawable icon_map_marker_road_work2 0x7f0800bd +int drawable icon_map_marker_road_work2_white 0x7f0800be +int drawable icon_map_marker_shear_news 0x7f0800bf +int drawable icon_map_marker_shop 0x7f0800c0 +int drawable icon_map_marker_shop_discount 0x7f0800c1 +int drawable icon_waring_traffic_light_green_vr 0x7f0800c2 +int drawable icon_waring_traffic_light_red_vr 0x7f0800c3 +int drawable icon_waring_traffic_light_yellow_vr 0x7f0800c4 +int drawable icon_warning_v2x_abnormal_vehicle 0x7f0800c5 +int drawable icon_warning_v2x_accident_prone_road_section 0x7f0800c6 +int drawable icon_warning_v2x_avoid_special_vehicles 0x7f0800c7 +int drawable icon_warning_v2x_ban_astern 0x7f0800c8 +int drawable icon_warning_v2x_blind_area_collision 0x7f0800c9 +int drawable icon_warning_v2x_collision_warning 0x7f0800ca +int drawable icon_warning_v2x_congestion 0x7f0800cb +int drawable icon_warning_v2x_emergency_brake 0x7f0800cc +int drawable icon_warning_v2x_give_way 0x7f0800cd +int drawable icon_warning_v2x_hump_bridge 0x7f0800ce +int drawable icon_warning_v2x_motorcycle_collision 0x7f0800cf +int drawable icon_warning_v2x_no_parking 0x7f0800d0 +int drawable icon_warning_v2x_over_speed 0x7f0800d1 +int drawable icon_warning_v2x_pedestrian_crossing 0x7f0800d2 +int drawable icon_warning_v2x_reverse_overtaking 0x7f0800d3 +int drawable icon_warning_v2x_road_construction 0x7f0800d4 +int drawable icon_warning_v2x_road_dangerous 0x7f0800d5 +int drawable icon_warning_v2x_roundaboutpng 0x7f0800d6 +int drawable icon_warning_v2x_school 0x7f0800d7 +int drawable icon_warning_v2x_special_vehicle_access 0x7f0800d8 +int drawable icon_warning_v2x_test_section 0x7f0800d9 +int drawable icon_warning_v2x_traffic_light_gray 0x7f0800da +int drawable icon_warning_v2x_traffic_light_green 0x7f0800db +int drawable icon_warning_v2x_traffic_light_red 0x7f0800dc +int drawable icon_warning_v2x_traffic_light_yellow 0x7f0800dd +int drawable icon_warning_v2x_traffic_lights_green 0x7f0800de +int drawable icon_warning_v2x_traffic_lights_red 0x7f0800df +int drawable icon_warning_v2x_tramcar 0x7f0800e0 +int drawable icon_warning_v2x_turn_left_sharp 0x7f0800e1 +int drawable icon_warning_v2x_turn_right_sharp 0x7f0800e2 +int drawable icon_warning_v2x_vehicle_control 0x7f0800e3 +int drawable map_api_ic_current_location2 0x7f0800e4 +int drawable map_api_ic_current_location2_cursor 0x7f0800e5 +int drawable module_adas_bg_shape 0x7f0800e6 +int drawable module_adas_left_corner_bg 0x7f0800e7 +int drawable module_adas_right_corner_bg 0x7f0800e8 +int drawable module_adas_timer_bg_shape 0x7f0800e9 +int drawable module_authorize_scrollbar 0x7f0800ea +int drawable module_authorize_selector_blue_corner 0x7f0800eb +int drawable module_authorize_selector_blue_left_corner 0x7f0800ec +int drawable module_authorize_selector_dark_corner 0x7f0800ed +int drawable module_authorize_selector_dark_right_corner 0x7f0800ee +int drawable module_authorize_shape_top_corner 0x7f0800ef +int drawable module_camera_real_time_traffic 0x7f0800f0 +int drawable module_common_bg_vr 0x7f0800f1 +int drawable module_common_close_selector 0x7f0800f2 +int drawable module_common_close_selector_vr 0x7f0800f3 +int drawable module_common_default_user_head 0x7f0800f4 +int drawable module_common_ic_rc_accident3 0x7f0800f5 +int drawable module_common_ic_rc_accident3_white 0x7f0800f6 +int drawable module_common_ic_rc_dark_frog2 0x7f0800f7 +int drawable module_common_ic_rc_dark_frog2_white 0x7f0800f8 +int drawable module_common_ic_rc_freeze2 0x7f0800f9 +int drawable module_common_ic_rc_freeze2_white 0x7f0800fa +int drawable module_common_ic_rc_illegal_park 0x7f0800fb +int drawable module_common_ic_rc_illegal_park_white 0x7f0800fc +int drawable module_common_ic_rc_parking2 0x7f0800fd +int drawable module_common_icon_close 0x7f0800fe +int drawable module_common_icon_close_press 0x7f0800ff +int drawable module_common_icon_close_vr 0x7f080100 +int drawable module_common_icon_like_selected_vr 0x7f080101 +int drawable module_common_icon_like_vr 0x7f080102 +int drawable module_common_icon_map_marker_4s 0x7f080103 +int drawable module_common_icon_map_marker_living 0x7f080104 +int drawable module_common_icon_map_marker_living_white 0x7f080105 +int drawable module_common_icon_map_marker_pondingl2 0x7f080106 +int drawable module_common_icon_map_marker_pondingl2_white 0x7f080107 +int drawable module_common_icon_map_marker_refuel 0x7f080108 +int drawable module_common_icon_map_marker_road_block_off2 0x7f080109 +int drawable module_common_icon_map_marker_road_block_off2_white 0x7f08010a +int drawable module_common_icon_map_marker_road_block_up2 0x7f08010b +int drawable module_common_icon_map_marker_road_block_up2_white 0x7f08010c +int drawable module_common_icon_map_marker_road_check2 0x7f08010d +int drawable module_common_icon_map_marker_road_check2_white 0x7f08010e +int drawable module_common_icon_map_marker_road_work2 0x7f08010f +int drawable module_common_icon_map_marker_road_work2_white 0x7f080110 +int drawable module_common_icon_map_marker_shear_news 0x7f080111 +int drawable module_common_icon_map_marker_shop 0x7f080112 +int drawable module_common_icon_map_marker_shop_discount 0x7f080113 +int drawable module_common_icon_seek_help 0x7f080114 +int drawable module_common_icon_unlike_selected_vr 0x7f080115 +int drawable module_common_icon_unlike_vr 0x7f080116 +int drawable module_common_like_vr 0x7f080117 +int drawable module_common_my_location_bg 0x7f080118 +int drawable module_common_selector_call 0x7f080119 +int drawable module_common_unlike_vr 0x7f08011a +int drawable module_commons_dialog_bg 0x7f08011b +int drawable module_commons_dialog_left_bg 0x7f08011c +int drawable module_commons_dialog_right_bg 0x7f08011d +int drawable module_commons_heart_ratingbar_drawable 0x7f08011e +int drawable module_commons_shape_dlg_round_bkg 0x7f08011f +int drawable module_commons_shape_left_btn_bkg 0x7f080120 +int drawable module_commons_shape_right_btn_bkg 0x7f080121 +int drawable module_commons_toast_bkg 0x7f080122 +int drawable module_dw_common_corner_bkg_light 0x7f080123 +int drawable module_ext_drawable_shadow_bg 0x7f080124 +int drawable module_ext_shadow_bkg 0x7f080125 +int drawable module_ext_shadow_bkg_pressed 0x7f080126 +int drawable module_map_amap_my_location_icon 0x7f080127 +int drawable module_media_blur_default_icon 0x7f080128 +int drawable module_media_bottom_revert_trianle_bg 0x7f080129 +int drawable module_media_card_back 0x7f08012a +int drawable module_media_card_tran_img_bg 0x7f08012b +int drawable module_media_circle_bg 0x7f08012c +int drawable module_media_click_poi_bg_top 0x7f08012d +int drawable module_media_default_music_img 0x7f08012e +int drawable module_media_default_music_img_new 0x7f08012f +int drawable module_media_demo_selector 0x7f080130 +int drawable module_media_full_screen 0x7f080131 +int drawable module_media_full_screen_select 0x7f080132 +int drawable module_media_have_heart 0x7f080133 +int drawable module_media_head_default_img 0x7f080134 +int drawable module_media_icon_map_marker_music 0x7f080135 +int drawable module_media_last_song 0x7f080136 +int drawable module_media_last_song_click 0x7f080137 +int drawable module_media_misic_progress_bar 0x7f080138 +int drawable module_media_music_animal_icon1 0x7f080139 +int drawable module_media_music_animal_icon10 0x7f08013a +int drawable module_media_music_animal_icon11 0x7f08013b +int drawable module_media_music_animal_icon12 0x7f08013c +int drawable module_media_music_animal_icon13 0x7f08013d +int drawable module_media_music_animal_icon14 0x7f08013e +int drawable module_media_music_animal_icon15 0x7f08013f +int drawable module_media_music_animal_icon16 0x7f080140 +int drawable module_media_music_animal_icon17 0x7f080141 +int drawable module_media_music_animal_icon18 0x7f080142 +int drawable module_media_music_animal_icon19 0x7f080143 +int drawable module_media_music_animal_icon2 0x7f080144 +int drawable module_media_music_animal_icon20 0x7f080145 +int drawable module_media_music_animal_icon21 0x7f080146 +int drawable module_media_music_animal_icon22 0x7f080147 +int drawable module_media_music_animal_icon23 0x7f080148 +int drawable module_media_music_animal_icon24 0x7f080149 +int drawable module_media_music_animal_icon25 0x7f08014a +int drawable module_media_music_animal_icon26 0x7f08014b +int drawable module_media_music_animal_icon27 0x7f08014c +int drawable module_media_music_animal_icon28 0x7f08014d +int drawable module_media_music_animal_icon29 0x7f08014e +int drawable module_media_music_animal_icon3 0x7f08014f +int drawable module_media_music_animal_icon30 0x7f080150 +int drawable module_media_music_animal_icon31 0x7f080151 +int drawable module_media_music_animal_icon32 0x7f080152 +int drawable module_media_music_animal_icon33 0x7f080153 +int drawable module_media_music_animal_icon34 0x7f080154 +int drawable module_media_music_animal_icon35 0x7f080155 +int drawable module_media_music_animal_icon36 0x7f080156 +int drawable module_media_music_animal_icon37 0x7f080157 +int drawable module_media_music_animal_icon38 0x7f080158 +int drawable module_media_music_animal_icon39 0x7f080159 +int drawable module_media_music_animal_icon4 0x7f08015a +int drawable module_media_music_animal_icon40 0x7f08015b +int drawable module_media_music_animal_icon41 0x7f08015c +int drawable module_media_music_animal_icon42 0x7f08015d +int drawable module_media_music_animal_icon43 0x7f08015e +int drawable module_media_music_animal_icon44 0x7f08015f +int drawable module_media_music_animal_icon45 0x7f080160 +int drawable module_media_music_animal_icon46 0x7f080161 +int drawable module_media_music_animal_icon47 0x7f080162 +int drawable module_media_music_animal_icon48 0x7f080163 +int drawable module_media_music_animal_icon49 0x7f080164 +int drawable module_media_music_animal_icon5 0x7f080165 +int drawable module_media_music_animal_icon50 0x7f080166 +int drawable module_media_music_animal_icon51 0x7f080167 +int drawable module_media_music_animal_icon52 0x7f080168 +int drawable module_media_music_animal_icon53 0x7f080169 +int drawable module_media_music_animal_icon54 0x7f08016a +int drawable module_media_music_animal_icon55 0x7f08016b +int drawable module_media_music_animal_icon56 0x7f08016c +int drawable module_media_music_animal_icon57 0x7f08016d +int drawable module_media_music_animal_icon58 0x7f08016e +int drawable module_media_music_animal_icon59 0x7f08016f +int drawable module_media_music_animal_icon6 0x7f080170 +int drawable module_media_music_animal_icon60 0x7f080171 +int drawable module_media_music_animal_icon61 0x7f080172 +int drawable module_media_music_animal_icon62 0x7f080173 +int drawable module_media_music_animal_icon63 0x7f080174 +int drawable module_media_music_animal_icon64 0x7f080175 +int drawable module_media_music_animal_icon65 0x7f080176 +int drawable module_media_music_animal_icon66 0x7f080177 +int drawable module_media_music_animal_icon67 0x7f080178 +int drawable module_media_music_animal_icon68 0x7f080179 +int drawable module_media_music_animal_icon69 0x7f08017a +int drawable module_media_music_animal_icon7 0x7f08017b +int drawable module_media_music_animal_icon70 0x7f08017c +int drawable module_media_music_animal_icon71 0x7f08017d +int drawable module_media_music_animal_icon72 0x7f08017e +int drawable module_media_music_animal_icon73 0x7f08017f +int drawable module_media_music_animal_icon74 0x7f080180 +int drawable module_media_music_animal_icon75 0x7f080181 +int drawable module_media_music_animal_icon8 0x7f080182 +int drawable module_media_music_animal_icon9 0x7f080183 +int drawable module_media_next_bg_selector 0x7f080184 +int drawable module_media_next_song 0x7f080185 +int drawable module_media_next_song_click 0x7f080186 +int drawable module_media_no_heart 0x7f080187 +int drawable module_media_no_img_default_icon 0x7f080188 +int drawable module_media_play 0x7f080189 +int drawable module_media_play_bg_selector 0x7f08018a +int drawable module_media_progress_bg 0x7f08018b +int drawable module_media_progress_pop_bg 0x7f08018c +int drawable module_media_share_click 0x7f08018d +int drawable module_media_share_default_icon 0x7f08018e +int drawable module_media_share_default_icon1 0x7f08018f +int drawable module_media_share_default_icon2 0x7f080190 +int drawable module_media_share_default_rect_icon 0x7f080191 +int drawable module_media_share_dialog_bg 0x7f080192 +int drawable module_media_share_dialog_left_btn_bg 0x7f080193 +int drawable module_media_share_dialog_right_btn_bg 0x7f080194 +int drawable module_media_share_dialog_title_bg 0x7f080195 +int drawable module_media_share_fail 0x7f080196 +int drawable module_media_share_normal 0x7f080197 +int drawable module_media_share_success 0x7f080198 +int drawable module_media_share_toast_bg 0x7f080199 +int drawable module_media_suspend 0x7f08019a +int drawable module_media_user_share_music_back 0x7f08019b +int drawable module_media_window_alert_bg 0x7f08019c +int drawable module_media_window_pop_next 0x7f08019d +int drawable module_media_window_pop_pause 0x7f08019e +int drawable module_media_window_pop_pause_new 0x7f08019f +int drawable module_media_window_pop_play 0x7f0801a0 +int drawable module_media_window_pop_play_new 0x7f0801a1 +int drawable module_media_window_progress_bar 0x7f0801a2 +int drawable module_service_dispatch_cars_affirm_bg 0x7f0801a3 +int drawable module_service_dispatch_cars_bg 0x7f0801a4 +int drawable module_service_dispatch_cars_cancel_bg 0x7f0801a5 +int drawable module_service_dispatch_timer_bg 0x7f0801a6 +int drawable module_service_ic_call 0x7f0801a7 +int drawable module_service_ic_car_for_help_0000 0x7f0801a8 +int drawable module_service_ic_car_for_help_0001 0x7f0801a9 +int drawable module_service_ic_car_for_help_0002 0x7f0801aa +int drawable module_service_ic_car_for_help_0003 0x7f0801ab +int drawable module_service_ic_car_for_help_0004 0x7f0801ac +int drawable module_service_ic_car_for_help_0005 0x7f0801ad +int drawable module_service_ic_car_for_help_0006 0x7f0801ae +int drawable module_service_ic_car_for_help_0007 0x7f0801af +int drawable module_service_ic_car_for_help_0008 0x7f0801b0 +int drawable module_service_ic_car_for_help_0009 0x7f0801b1 +int drawable module_service_ic_car_for_help_0010 0x7f0801b2 +int drawable module_service_ic_car_for_help_0011 0x7f0801b3 +int drawable module_service_ic_car_for_help_0012 0x7f0801b4 +int drawable module_service_ic_car_for_help_0013 0x7f0801b5 +int drawable module_service_ic_car_for_help_0014 0x7f0801b6 +int drawable module_service_ic_car_for_help_0015 0x7f0801b7 +int drawable module_service_ic_car_for_help_0016 0x7f0801b8 +int drawable module_service_ic_car_for_help_0017 0x7f0801b9 +int drawable module_service_ic_car_for_help_0018 0x7f0801ba +int drawable module_service_ic_car_for_help_0019 0x7f0801bb +int drawable module_service_ic_car_for_help_0020 0x7f0801bc +int drawable module_service_ic_car_for_help_0021 0x7f0801bd +int drawable module_service_ic_car_for_help_0022 0x7f0801be +int drawable module_service_ic_car_for_help_0023 0x7f0801bf +int drawable module_service_ic_car_for_help_0024 0x7f0801c0 +int drawable module_service_ic_rc_accident 0x7f0801c1 +int drawable module_service_ic_rc_accident2 0x7f0801c2 +int drawable module_service_ic_rc_accident3 0x7f0801c3 +int drawable module_service_ic_rc_accident3_white 0x7f0801c4 +int drawable module_service_ic_rc_dark_frog 0x7f0801c5 +int drawable module_service_ic_rc_dark_frog2 0x7f0801c6 +int drawable module_service_ic_rc_dark_frog2_white 0x7f0801c7 +int drawable module_service_ic_rc_freeze 0x7f0801c8 +int drawable module_service_ic_rc_freeze2 0x7f0801c9 +int drawable module_service_ic_rc_freeze2_white 0x7f0801ca +int drawable module_service_ic_rc_illegal_park 0x7f0801cb +int drawable module_service_ic_rc_illegal_park_white 0x7f0801cc +int drawable module_service_ic_rc_parking 0x7f0801cd +int drawable module_service_ic_rc_parking2 0x7f0801ce +int drawable module_service_ic_rc_road_slippery 0x7f0801cf +int drawable module_service_ic_rc_road_slippery_light 0x7f0801d0 +int drawable module_service_ic_seek_helping 0x7f0801d1 +int drawable module_service_ic_warning_circle_orange_00000 0x7f0801d2 +int drawable module_service_ic_warning_circle_orange_00001 0x7f0801d3 +int drawable module_service_ic_warning_circle_orange_00002 0x7f0801d4 +int drawable module_service_ic_warning_circle_orange_00003 0x7f0801d5 +int drawable module_service_ic_warning_circle_orange_00004 0x7f0801d6 +int drawable module_service_ic_warning_circle_orange_00005 0x7f0801d7 +int drawable module_service_ic_warning_circle_orange_00006 0x7f0801d8 +int drawable module_service_ic_warning_circle_orange_00007 0x7f0801d9 +int drawable module_service_ic_warning_circle_orange_00008 0x7f0801da +int drawable module_service_ic_warning_circle_orange_00009 0x7f0801db +int drawable module_service_ic_warning_circle_orange_00010 0x7f0801dc +int drawable module_service_ic_warning_circle_orange_00011 0x7f0801dd +int drawable module_service_ic_warning_circle_orange_00012 0x7f0801de +int drawable module_service_ic_warning_circle_orange_00013 0x7f0801df +int drawable module_service_ic_warning_circle_orange_00014 0x7f0801e0 +int drawable module_service_ic_warning_circle_orange_00015 0x7f0801e1 +int drawable module_service_ic_warning_circle_orange_00016 0x7f0801e2 +int drawable module_service_ic_warning_circle_orange_00017 0x7f0801e3 +int drawable module_service_ic_warning_circle_orange_00018 0x7f0801e4 +int drawable module_service_ic_warning_circle_orange_00019 0x7f0801e5 +int drawable module_service_ic_warning_circle_orange_00020 0x7f0801e6 +int drawable module_service_ic_warning_circle_orange_00021 0x7f0801e7 +int drawable module_service_ic_warning_circle_orange_00022 0x7f0801e8 +int drawable module_service_ic_warning_circle_orange_00023 0x7f0801e9 +int drawable module_service_ic_warning_circle_orange_00024 0x7f0801ea +int drawable module_service_ic_warning_circle_orange_00025 0x7f0801eb +int drawable module_service_ic_warning_circle_orange_00026 0x7f0801ec +int drawable module_service_ic_warning_circle_orange_00027 0x7f0801ed +int drawable module_service_ic_warning_circle_orange_00028 0x7f0801ee +int drawable module_service_ic_warning_circle_orange_00029 0x7f0801ef +int drawable module_service_ic_warning_circle_orange_00030 0x7f0801f0 +int drawable module_service_ic_warning_circle_orange_00031 0x7f0801f1 +int drawable module_service_ic_warning_circle_orange_00032 0x7f0801f2 +int drawable module_service_ic_warning_circle_orange_00033 0x7f0801f3 +int drawable module_service_ic_warning_circle_orange_00034 0x7f0801f4 +int drawable module_service_ic_warning_circle_orange_00035 0x7f0801f5 +int drawable module_service_ic_warning_circle_orange_00036 0x7f0801f6 +int drawable module_service_ic_warning_circle_orange_00037 0x7f0801f7 +int drawable module_service_ic_warning_circle_orange_00038 0x7f0801f8 +int drawable module_service_ic_warning_circle_orange_00039 0x7f0801f9 +int drawable module_service_ic_warning_circle_orange_00040 0x7f0801fa +int drawable module_service_ic_warning_circle_orange_00041 0x7f0801fb +int drawable module_service_ic_warning_circle_orange_00042 0x7f0801fc +int drawable module_service_ic_warning_circle_orange_00043 0x7f0801fd +int drawable module_service_ic_warning_circle_orange_00044 0x7f0801fe +int drawable module_service_ic_warning_circle_orange_00045 0x7f0801ff +int drawable module_service_ic_warning_circle_orange_00046 0x7f080200 +int drawable module_service_ic_warning_circle_orange_00047 0x7f080201 +int drawable module_service_ic_warning_circle_orange_00048 0x7f080202 +int drawable module_services_driver_info_window_bkg 0x7f080203 +int drawable module_services_driver_type_blue_info 0x7f080204 +int drawable module_services_driver_type_green_info 0x7f080205 +int drawable module_services_driver_type_red_info 0x7f080206 +int drawable module_services_info_window_cursor 0x7f080207 +int drawable module_services_marker_bkg 0x7f080208 +int drawable module_services_marker_vr_bkg 0x7f080209 +int drawable module_services_marker_vr_bkg_checked 0x7f08020a +int drawable module_services_online_car_panel_background 0x7f08020b +int drawable module_services_online_car_panel_empty_icon 0x7f08020c +int drawable module_services_panel_item_bkg 0x7f08020d +int drawable module_services_panel_item_detail_bkg 0x7f08020e +int drawable module_services_panel_strategy_button_bkg 0x7f08020f +int drawable notification_action_background 0x7f080210 +int drawable notification_bg 0x7f080211 +int drawable notification_bg_low 0x7f080212 +int drawable notification_bg_low_normal 0x7f080213 +int drawable notification_bg_low_pressed 0x7f080214 +int drawable notification_bg_normal 0x7f080215 +int drawable notification_bg_normal_pressed 0x7f080216 +int drawable notification_icon_background 0x7f080217 +int drawable notification_template_icon_bg 0x7f080218 +int drawable notification_template_icon_low_bg 0x7f080219 +int drawable notification_tile_bg 0x7f08021a +int drawable notify_panel_notification_icon_bg 0x7f08021b +int drawable obu_state_blue 0x7f08021c +int drawable obu_state_green 0x7f08021d +int drawable obu_state_red 0x7f08021e +int drawable obu_state_yellow 0x7f08021f +int drawable pad_back 0x7f080220 +int drawable pad_car 0x7f080221 +int drawable pad_logo_black 0x7f080222 +int drawable radio_btn_bg 0x7f080223 +int drawable selector_back 0x7f080224 +int drawable selector_call_btn_normal 0x7f080225 +int drawable selector_call_btn_pressed 0x7f080226 +int drawable selector_can 0x7f080227 +int drawable selector_minimality 0x7f080228 +int drawable selector_obu_state 0x7f080229 +int drawable selector_service_car_panel_details 0x7f08022a +int drawable service_car_panel_details_normal 0x7f08022b +int drawable service_car_panel_details_pressed 0x7f08022c +int drawable sr 0x7f08022d +int drawable sy 0x7f08022e +int drawable tooltip_frame_dark 0x7f08022f +int drawable tooltip_frame_light 0x7f080230 +int drawable zxing_scanline 0x7f080231 +int id Full 0x7f0b0001 +int id Half 0x7f0b0002 +int id accessibility_action_clickable_span 0x7f0b0003 +int id accessibility_custom_action_0 0x7f0b0004 +int id accessibility_custom_action_1 0x7f0b0005 +int id accessibility_custom_action_10 0x7f0b0006 +int id accessibility_custom_action_11 0x7f0b0007 +int id accessibility_custom_action_12 0x7f0b0008 +int id accessibility_custom_action_13 0x7f0b0009 +int id accessibility_custom_action_14 0x7f0b000a +int id accessibility_custom_action_15 0x7f0b000b +int id accessibility_custom_action_16 0x7f0b000c +int id accessibility_custom_action_17 0x7f0b000d +int id accessibility_custom_action_18 0x7f0b000e +int id accessibility_custom_action_19 0x7f0b000f +int id accessibility_custom_action_2 0x7f0b0010 +int id accessibility_custom_action_20 0x7f0b0011 +int id accessibility_custom_action_21 0x7f0b0012 +int id accessibility_custom_action_22 0x7f0b0013 +int id accessibility_custom_action_23 0x7f0b0014 +int id accessibility_custom_action_24 0x7f0b0015 +int id accessibility_custom_action_25 0x7f0b0016 +int id accessibility_custom_action_26 0x7f0b0017 +int id accessibility_custom_action_27 0x7f0b0018 +int id accessibility_custom_action_28 0x7f0b0019 +int id accessibility_custom_action_29 0x7f0b001a +int id accessibility_custom_action_3 0x7f0b001b +int id accessibility_custom_action_30 0x7f0b001c +int id accessibility_custom_action_31 0x7f0b001d +int id accessibility_custom_action_4 0x7f0b001e +int id accessibility_custom_action_5 0x7f0b001f +int id accessibility_custom_action_6 0x7f0b0020 +int id accessibility_custom_action_7 0x7f0b0021 +int id accessibility_custom_action_8 0x7f0b0022 +int id accessibility_custom_action_9 0x7f0b0023 +int id account_auth_back 0x7f0b0024 +int id account_auth_cancel_login 0x7f0b0025 +int id account_auth_login 0x7f0b0026 +int id action0 0x7f0b0027 +int id action_bar 0x7f0b0028 +int id action_bar_activity_content 0x7f0b0029 +int id action_bar_container 0x7f0b002a +int id action_bar_root 0x7f0b002b +int id action_bar_spinner 0x7f0b002c +int id action_bar_subtitle 0x7f0b002d +int id action_bar_title 0x7f0b002e +int id action_container 0x7f0b002f +int id action_context_bar 0x7f0b0030 +int id action_divider 0x7f0b0031 +int id action_image 0x7f0b0032 +int id action_menu_divider 0x7f0b0033 +int id action_menu_presenter 0x7f0b0034 +int id action_mode_bar 0x7f0b0035 +int id action_mode_bar_stub 0x7f0b0036 +int id action_mode_close_button 0x7f0b0037 +int id action_text 0x7f0b0038 +int id actions 0x7f0b0039 +int id activity_chooser_view_content 0x7f0b003a +int id add 0x7f0b003b +int id alertTitle 0x7f0b003c +int id async 0x7f0b003d +int id auto_scanner_view 0x7f0b003e +int id bezier_view 0x7f0b003f +int id bg 0x7f0b0040 +int id blocking 0x7f0b0041 +int id bottom 0x7f0b0042 +int id bt_refresh 0x7f0b0043 +int id btnAuthorizeAgree 0x7f0b0044 +int id btnAuthorizeDisAgree 0x7f0b0045 +int id btnAuthorizeLoadingError 0x7f0b0046 +int id btn_back 0x7f0b0047 +int id btn_c 0x7f0b0048 +int id btn_list 0x7f0b0049 +int id btn_maximize 0x7f0b004a +int id btn_minimality 0x7f0b004b +int id buttonPanel 0x7f0b004c +int id can_parent 0x7f0b004d +int id cancel_action 0x7f0b004e +int id center 0x7f0b004f +int id centerCrop 0x7f0b0050 +int id centerInside 0x7f0b0051 +int id checkbox 0x7f0b0052 +int id checked 0x7f0b0053 +int id chronometer 0x7f0b0054 +int id circle 0x7f0b0055 +int id clAuthorizeContainer 0x7f0b0056 +int id clAuthorizeLoading 0x7f0b0057 +int id clAuthorizeTitle 0x7f0b0058 +int id clAuthorizeTopParent 0x7f0b0059 +int id clLoadingAuthorizeContainer 0x7f0b005a +int id clLoadingErrorContainer 0x7f0b005b +int id clMarkerContent 0x7f0b005c +int id clMarkerTopView 0x7f0b005d +int id clamp 0x7f0b005e +int id content 0x7f0b005f +int id contentPanel 0x7f0b0060 +int id custom 0x7f0b0061 +int id customPanel 0x7f0b0062 +int id customRatingBar 0x7f0b0063 +int id decor_content_parent 0x7f0b0064 +int id default_activity_button 0x7f0b0065 +int id dialog_button 0x7f0b0066 +int id edit_query 0x7f0b0067 +int id end 0x7f0b0068 +int id end_padder 0x7f0b0069 +int id expand_activities_button 0x7f0b006a +int id expanded_menu 0x7f0b006b +int id fitBottomStart 0x7f0b006c +int id fitCenter 0x7f0b006d +int id fitEnd 0x7f0b006e +int id fitStart 0x7f0b006f +int id fitXY 0x7f0b0070 +int id focusCrop 0x7f0b0071 +int id forever 0x7f0b0072 +int id full_screen_id 0x7f0b0073 +int id glide_custom_view_target_tag 0x7f0b0074 +int id gone 0x7f0b0075 +int id group_divider 0x7f0b0076 +int id home 0x7f0b0077 +int id horizontal 0x7f0b0078 +int id icon 0x7f0b0079 +int id icon_group 0x7f0b007a +int id image 0x7f0b007b +int id imgViewIcon 0x7f0b007c +int id info 0x7f0b007d +int id invisible 0x7f0b007e +int id ip 0x7f0b007f +int id italic 0x7f0b0080 +int id item_group 0x7f0b0081 +int id item_touch_helper_previous_elevation 0x7f0b0082 +int id ivAuthorizeLoading 0x7f0b0083 +int id ivAuthorizeLoadingError 0x7f0b0084 +int id ivCar 0x7f0b0085 +int id ivIcon 0x7f0b0086 +int id ivReverseTriangle 0x7f0b0087 +int id ivUserHead 0x7f0b0088 +int id iv_back 0x7f0b0089 +int id iv_camera_traffic 0x7f0b008a +int id iv_qr 0x7f0b008b +int id last_music 0x7f0b008c +int id left 0x7f0b008d +int id left_time_progress 0x7f0b008e +int id like_back_id 0x7f0b008f +int id like_id 0x7f0b0090 +int id like_num_id 0x7f0b0091 +int id line1 0x7f0b0092 +int id line3 0x7f0b0093 +int id listMode 0x7f0b0094 +int id list_item 0x7f0b0095 +int id ll_scan_success 0x7f0b0096 +int id loading_imageview 0x7f0b0097 +int id loading_liner_layout 0x7f0b0098 +int id loading_text 0x7f0b0099 +int id local_ip 0x7f0b009a +int id local_ip_view 0x7f0b009b +int id map_amap_id_cursor 0x7f0b009c +int id media_actions 0x7f0b009d +int id media_animal_surface_view 0x7f0b009e +int id media_blur_img 0x7f0b009f +int id media_blur_img_above 0x7f0b00a0 +int id media_card_view 0x7f0b00a1 +int id media_dialog_content 0x7f0b00a2 +int id media_img 0x7f0b00a3 +int id media_name 0x7f0b00a4 +int id media_singer 0x7f0b00a5 +int id message 0x7f0b00a6 +int id mirror 0x7f0b00a7 +int id module_adas_dispatch_remind_affirm 0x7f0b00a8 +int id module_adas_dispatch_remind_cancel 0x7f0b00a9 +int id module_adas_dispatch_remind_loc 0x7f0b00aa +int id module_adas_dispatch_remind_timer 0x7f0b00ab +int id module_commons_marker_car_model 0x7f0b00ac +int id module_commons_toast_left_drawable 0x7f0b00ad +int id module_commons_toast_msg 0x7f0b00ae +int id module_commons_wm_dialog_button_cancel 0x7f0b00af +int id module_commons_wm_dialog_button_ok 0x7f0b00b0 +int id module_commons_wm_dialog_content 0x7f0b00b1 +int id module_map_amap_my_location_bg_iv 0x7f0b00b2 +int id module_map_amap_my_location_iv 0x7f0b00b3 +int id module_media_toast_inner 0x7f0b00b4 +int id module_service_id_call 0x7f0b00b5 +int id module_service_id_content 0x7f0b00b6 +int id module_service_id_marker_content 0x7f0b00b7 +int id module_service_id_tag 0x7f0b00b8 +int id module_service_id_user_header 0x7f0b00b9 +int id module_services_dispatch_dialog_confirm 0x7f0b00ba +int id module_services_dispatch_dialog_end_content 0x7f0b00bb +int id module_services_dispatch_dialog_flight_time 0x7f0b00bc +int id module_services_dispatch_dialog_start_content 0x7f0b00bd +int id module_services_dispatch_dialog_task_content 0x7f0b00be +int id module_services_dispatch_dialog_task_time 0x7f0b00bf +int id module_services_dispatch_dialog_title 0x7f0b00c0 +int id module_services_empty_tip 0x7f0b00c1 +int id module_services_id_20Km_radius 0x7f0b00c2 +int id module_services_id_40Km_radius 0x7f0b00c3 +int id module_services_id_close 0x7f0b00c4 +int id module_services_id_error_container 0x7f0b00c5 +int id module_services_id_load_strategy_container 0x7f0b00c6 +int id module_services_id_loading 0x7f0b00c7 +int id module_services_id_panel_item_avatar 0x7f0b00c8 +int id module_services_id_panel_item_call 0x7f0b00c9 +int id module_services_id_panel_item_detail 0x7f0b00ca +int id module_services_id_panel_item_distance 0x7f0b00cb +int id module_services_id_panel_item_distance_tag 0x7f0b00cc +int id module_services_id_panel_item_nickname 0x7f0b00cd +int id module_services_id_recycler_view 0x7f0b00ce +int id module_services_id_title 0x7f0b00cf +int id module_services_status_iv 0x7f0b00d0 +int id module_services_status_tv 0x7f0b00d1 +int id multiply 0x7f0b00d2 +int id music_progress_bar 0x7f0b00d3 +int id name 0x7f0b00d4 +int id next_music 0x7f0b00d5 +int id no_share_back_id 0x7f0b00d6 +int id no_share_medial_image_id 0x7f0b00d7 +int id no_share_medial_singer_name_id 0x7f0b00d8 +int id no_share_medial_song_name_id 0x7f0b00d9 +int id none 0x7f0b00da +int id normal 0x7f0b00db +int id notification_background 0x7f0b00dc +int id notification_main_column 0x7f0b00dd +int id notification_main_column_container 0x7f0b00de +int id obu_ip_view 0x7f0b00df +int id obu_state 0x7f0b00e0 +int id off 0x7f0b00e1 +int id on 0x7f0b00e2 +int id packed 0x7f0b00e3 +int id parent 0x7f0b00e4 +int id parentPanel 0x7f0b00e5 +int id percent 0x7f0b00e6 +int id play_pause_music 0x7f0b00e7 +int id preview_view 0x7f0b00e8 +int id progress_circular 0x7f0b00e9 +int id progress_horizontal 0x7f0b00ea +int id r_btn 0x7f0b00eb +int id radio 0x7f0b00ec +int id refresh_button 0x7f0b00ed +int id repeat 0x7f0b00ee +int id right 0x7f0b00ef +int id right_all_time_progress 0x7f0b00f0 +int id right_icon 0x7f0b00f1 +int id right_side 0x7f0b00f2 +int id rl_login_fail 0x7f0b00f3 +int id rl_qr_code 0x7f0b00f4 +int id round 0x7f0b00f5 +int id save_obu_ip 0x7f0b00f6 +int id screen 0x7f0b00f7 +int id scrollIndicatorDown 0x7f0b00f8 +int id scrollIndicatorUp 0x7f0b00f9 +int id scrollView 0x7f0b00fa +int id search_badge 0x7f0b00fb +int id search_bar 0x7f0b00fc +int id search_button 0x7f0b00fd +int id search_close_btn 0x7f0b00fe +int id search_edit_frame 0x7f0b00ff +int id search_go_btn 0x7f0b0100 +int id search_mag_icon 0x7f0b0101 +int id search_plate 0x7f0b0102 +int id search_src_text 0x7f0b0103 +int id search_voice_btn 0x7f0b0104 +int id select_dialog_listview 0x7f0b0105 +int id shape_id 0x7f0b0106 +int id share_back_id 0x7f0b0107 +int id share_id 0x7f0b0108 +int id share_medial_image_id 0x7f0b0109 +int id share_medial_singer_name_id 0x7f0b010a +int id share_medial_song_name_id 0x7f0b010b +int id share_user_back_id 0x7f0b010c +int id share_user_heardImage 0x7f0b010d +int id share_user_name 0x7f0b010e +int id shortcut 0x7f0b010f +int id spacer 0x7f0b0110 +int id split_action_bar 0x7f0b0111 +int id spread 0x7f0b0112 +int id spread_inside 0x7f0b0113 +int id src_atop 0x7f0b0114 +int id src_in 0x7f0b0115 +int id src_over 0x7f0b0116 +int id start 0x7f0b0117 +int id status_bar_latest_event_content 0x7f0b0118 +int id submenuarrow 0x7f0b0119 +int id submit_area 0x7f0b011a +int id switch_account 0x7f0b011b +int id tabMode 0x7f0b011c +int id tag_accessibility_actions 0x7f0b011d +int id tag_accessibility_clickable_spans 0x7f0b011e +int id tag_accessibility_heading 0x7f0b011f +int id tag_accessibility_pane_title 0x7f0b0120 +int id tag_screen_reader_focusable 0x7f0b0121 +int id tag_transition_group 0x7f0b0122 +int id tag_unhandled_key_event_manager 0x7f0b0123 +int id tag_unhandled_key_listeners 0x7f0b0124 +int id text 0x7f0b0125 +int id text2 0x7f0b0126 +int id textSpacerNoButtons 0x7f0b0127 +int id textSpacerNoTitle 0x7f0b0128 +int id time 0x7f0b0129 +int id title 0x7f0b012a +int id titleDividerNoCustom 0x7f0b012b +int id title_template 0x7f0b012c +int id top 0x7f0b012d +int id topPanel 0x7f0b012e +int id tvAuthorizeButtonContent 0x7f0b012f +int id tvAuthorizeContent 0x7f0b0130 +int id tvAuthorizeLastContent 0x7f0b0131 +int id tvAuthorizeLoading 0x7f0b0132 +int id tvAuthorizeLoadingError 0x7f0b0133 +int id tvAuthorizeTitle 0x7f0b0134 +int id tvMarkerContent 0x7f0b0135 +int id tv_fail_desc 0x7f0b0136 +int id tv_scan_desc 0x7f0b0137 +int id txtViewContent 0x7f0b0138 +int id txt_cancel 0x7f0b0139 +int id txt_cancle 0x7f0b013a +int id txt_content 0x7f0b013b +int id txt_ok 0x7f0b013c +int id txt_sub_content 0x7f0b013d +int id txt_title 0x7f0b013e +int id unchecked 0x7f0b013f +int id uniform 0x7f0b0140 +int id up 0x7f0b0141 +int id version 0x7f0b0142 +int id vertical 0x7f0b0143 +int id window_circle_bg 0x7f0b0144 +int id window_circle_img 0x7f0b0145 +int id window_circle_img_new 0x7f0b0146 +int id window_current_time 0x7f0b0147 +int id window_divide 0x7f0b0148 +int id window_max_time 0x7f0b0149 +int id window_music_next 0x7f0b014a +int id window_obscuration 0x7f0b014b +int id window_play_pause 0x7f0b014c +int id window_play_pause_new 0x7f0b014d +int id window_progress_bar 0x7f0b014e +int id window_scroll_txt 0x7f0b014f +int id wrap 0x7f0b0150 +int id wrap_content 0x7f0b0151 +int integer abc_config_activityDefaultDur 0x7f0c0001 +int integer abc_config_activityShortDur 0x7f0c0002 +int integer cancel_button_image_alpha 0x7f0c0003 +int integer config_tooltipAnimTime 0x7f0c0004 +int integer status_bar_notification_info_maxnum 0x7f0c0005 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x7f0d0001 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x7f0d0002 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x7f0d0003 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x7f0d0004 +int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x7f0d0005 +int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x7f0d0006 +int interpolator fast_out_slow_in 0x7f0d0007 +int layout abc_action_bar_title_item 0x7f0e0001 +int layout abc_action_bar_up_container 0x7f0e0002 +int layout abc_action_menu_item_layout 0x7f0e0003 +int layout abc_action_menu_layout 0x7f0e0004 +int layout abc_action_mode_bar 0x7f0e0005 +int layout abc_action_mode_close_item_material 0x7f0e0006 +int layout abc_activity_chooser_view 0x7f0e0007 +int layout abc_activity_chooser_view_list_item 0x7f0e0008 +int layout abc_alert_dialog_button_bar_material 0x7f0e0009 +int layout abc_alert_dialog_material 0x7f0e000a +int layout abc_alert_dialog_title_material 0x7f0e000b +int layout abc_cascading_menu_item_layout 0x7f0e000c +int layout abc_dialog_title_material 0x7f0e000d +int layout abc_expanded_menu_layout 0x7f0e000e +int layout abc_list_menu_item_checkbox 0x7f0e000f +int layout abc_list_menu_item_icon 0x7f0e0010 +int layout abc_list_menu_item_layout 0x7f0e0011 +int layout abc_list_menu_item_radio 0x7f0e0012 +int layout abc_popup_menu_header_item_layout 0x7f0e0013 +int layout abc_popup_menu_item_layout 0x7f0e0014 +int layout abc_screen_content_include 0x7f0e0015 +int layout abc_screen_simple 0x7f0e0016 +int layout abc_screen_simple_overlay_action_mode 0x7f0e0017 +int layout abc_screen_toolbar 0x7f0e0018 +int layout abc_search_dropdown_item_icons_2line 0x7f0e0019 +int layout abc_search_view 0x7f0e001a +int layout abc_select_dialog_material 0x7f0e001b +int layout abc_tooltip 0x7f0e001c +int layout activity_auth 0x7f0e001d +int layout activity_scan_qr 0x7f0e001e +int layout custom_dialog 0x7f0e001f +int layout dialog_adas_dispatch_remind 0x7f0e0020 +int layout dialog_can_config 0x7f0e0021 +int layout dialog_cutom_layout 0x7f0e0022 +int layout item 0x7f0e0023 +int layout item_radio_btn 0x7f0e0024 +int layout layout_pad_login 0x7f0e0025 +int layout map_amap_cursor 0x7f0e0026 +int layout modeules_commons_layout_custom_ratingbar 0x7f0e0027 +int layout modudle_camera_layout_info 0x7f0e0028 +int layout modudle_services_marker_info_window_layout 0x7f0e0029 +int layout modudle_services_marker_layout 0x7f0e002a +int layout modudle_services_marker_layout_info 0x7f0e002b +int layout modudle_services_marker_vr_layout 0x7f0e002c +int layout module_authorize_fragment 0x7f0e002d +int layout module_common_bezier_layout 0x7f0e002e +int layout module_common_my_location 0x7f0e002f +int layout module_common_warning_marker_bottom 0x7f0e0030 +int layout module_common_warning_marker_front 0x7f0e0031 +int layout module_commons_layout_car 0x7f0e0032 +int layout module_commons_layout_toast 0x7f0e0033 +int layout module_commons_layout_toast_with_left_drawable 0x7f0e0034 +int layout module_commons_layout_wm_dialog 0x7f0e0035 +int layout module_dialog_adas_dispatch_airport 0x7f0e0036 +int layout module_dialog_adas_dispatch_cars 0x7f0e0037 +int layout module_media_bubble_marker 0x7f0e0038 +int layout module_media_card_fragment_view 0x7f0e0039 +int layout module_media_dialog_cutom_layout 0x7f0e003a +int layout module_media_music_window_alert_layout 0x7f0e003b +int layout module_media_music_window_alert_layout_new 0x7f0e003c +int layout module_media_share_fragment_view 0x7f0e003d +int layout module_media_share_toast_view 0x7f0e003e +int layout module_services_fragment_online_car_panel 0x7f0e003f +int layout module_services_online_car_panel_item 0x7f0e0040 +int layout module_services_status_panel 0x7f0e0041 +int layout network_loading_item 0x7f0e0042 +int layout notification_action 0x7f0e0043 +int layout notification_action_tombstone 0x7f0e0044 +int layout notification_media_action 0x7f0e0045 +int layout notification_media_cancel_action 0x7f0e0046 +int layout notification_template_big_media 0x7f0e0047 +int layout notification_template_big_media_custom 0x7f0e0048 +int layout notification_template_big_media_narrow 0x7f0e0049 +int layout notification_template_big_media_narrow_custom 0x7f0e004a +int layout notification_template_custom_big 0x7f0e004b +int layout notification_template_icon_group 0x7f0e004c +int layout notification_template_lines_media 0x7f0e004d +int layout notification_template_media 0x7f0e004e +int layout notification_template_media_custom 0x7f0e004f +int layout notification_template_part_chronometer 0x7f0e0050 +int layout notification_template_part_time 0x7f0e0051 +int layout select_dialog_item_material 0x7f0e0052 +int layout select_dialog_multichoice_material 0x7f0e0053 +int layout select_dialog_singlechoice_material 0x7f0e0054 +int layout support_simple_spinner_dropdown_item 0x7f0e0055 +int mipmap module_authorize_loading 0x7f100001 +int mipmap module_authorize_loading_error 0x7f100002 +int mipmap module_authorize_title_left_symbol 0x7f100003 +int mipmap module_authorize_title_right_symbol 0x7f100004 +int raw beep 0x7f130001 +int raw daba 0x7f130002 +int raw kache 0x7f130003 +int raw motuoche 0x7f130004 +int raw people 0x7f130005 +int raw shexiangtou 0x7f130006 +int raw special_vehicle 0x7f130007 +int raw stopline 0x7f130008 +int raw tachexiaoche 0x7f130009 +int raw taxi 0x7f13000a +int raw v2x_daolujiebing 0x7f13000b +int raw v2x_daolujishui 0x7f13000c +int raw v2x_daolushigong 0x7f13000d +int raw v2x_guzhangqiuzhu 0x7f13000e +int raw v2x_jiaotongjiancha 0x7f13000f +int raw v2x_nongwu 0x7f130010 +int raw v2x_shigong_warning 0x7f130011 +int raw v2x_shigu 0x7f130012 +int raw v2x_shishilukuang 0x7f130013 +int raw v2x_yongdu 0x7f130014 +int raw ziche 0x7f130015 +int raw zixingche 0x7f130016 +int string abc_action_bar_home_description 0x7f140001 +int string abc_action_bar_up_description 0x7f140002 +int string abc_action_menu_overflow_description 0x7f140003 +int string abc_action_mode_done 0x7f140004 +int string abc_activity_chooser_view_see_all 0x7f140005 +int string abc_activitychooserview_choose_application 0x7f140006 +int string abc_capital_off 0x7f140007 +int string abc_capital_on 0x7f140008 +int string abc_font_family_body_1_material 0x7f140009 +int string abc_font_family_body_2_material 0x7f14000a +int string abc_font_family_button_material 0x7f14000b +int string abc_font_family_caption_material 0x7f14000c +int string abc_font_family_display_1_material 0x7f14000d +int string abc_font_family_display_2_material 0x7f14000e +int string abc_font_family_display_3_material 0x7f14000f +int string abc_font_family_display_4_material 0x7f140010 +int string abc_font_family_headline_material 0x7f140011 +int string abc_font_family_menu_material 0x7f140012 +int string abc_font_family_subhead_material 0x7f140013 +int string abc_font_family_title_material 0x7f140014 +int string abc_menu_alt_shortcut_label 0x7f140015 +int string abc_menu_ctrl_shortcut_label 0x7f140016 +int string abc_menu_delete_shortcut_label 0x7f140017 +int string abc_menu_enter_shortcut_label 0x7f140018 +int string abc_menu_function_shortcut_label 0x7f140019 +int string abc_menu_meta_shortcut_label 0x7f14001a +int string abc_menu_shift_shortcut_label 0x7f14001b +int string abc_menu_space_shortcut_label 0x7f14001c +int string abc_menu_sym_shortcut_label 0x7f14001d +int string abc_prepend_shortcut_label 0x7f14001e +int string abc_search_hint 0x7f14001f +int string abc_searchview_description_clear 0x7f140020 +int string abc_searchview_description_query 0x7f140021 +int string abc_searchview_description_search 0x7f140022 +int string abc_searchview_description_submit 0x7f140023 +int string abc_searchview_description_voice 0x7f140024 +int string abc_shareactionprovider_share_with 0x7f140025 +int string abc_shareactionprovider_share_with_application 0x7f140026 +int string abc_toolbar_collapse_description 0x7f140027 +int string app_name 0x7f140028 +int string media_qq_share_content_from 0x7f140029 +int string media_qq_share_content_share 0x7f14002a +int string module_adas_dispatch_remind_affirm 0x7f14002b +int string module_adas_dispatch_remind_cancel 0x7f14002c +int string module_adas_dispatch_remind_content 0x7f14002d +int string module_adas_dispatch_remind_title 0x7f14002e +int string module_authorize_agreement_agree 0x7f14002f +int string module_authorize_agreement_disagree 0x7f140030 +int string module_authorize_agreement_error 0x7f140031 +int string module_authorize_agreement_loading 0x7f140032 +int string module_authorize_agreement_retry 0x7f140033 +int string module_authorize_agreement_tip 0x7f140034 +int string module_authorize_failed 0x7f140035 +int string module_commons_button_cancel 0x7f140036 +int string module_commons_button_ok 0x7f140037 +int string module_commons_exit_navi_content 0x7f140038 +int string module_media_share_fail 0x7f140039 +int string module_media_share_lan_ren 0x7f14003a +int string module_media_share_le_ting_news 0x7f14003b +int string module_media_share_qq_music 0x7f14003c +int string module_media_share_success 0x7f14003d +int string module_service_app_entrance_text 0x7f14003e +int string module_service_launcher_card_info 0x7f14003f +int string module_service_launcher_card_tips 0x7f140040 +int string module_service_open_app_tip 0x7f140041 +int string module_services_dispatch_cars_affirm 0x7f140042 +int string module_services_dispatch_cars_cancel 0x7f140043 +int string module_services_dispatch_cars_remind_content 0x7f140044 +int string module_services_dispatch_cars_remind_title 0x7f140045 +int string module_services_dispatch_dialog_affirm 0x7f140046 +int string module_services_dispatch_dialog_end_loc 0x7f140047 +int string module_services_dispatch_dialog_flight_info 0x7f140048 +int string module_services_dispatch_dialog_start_loc 0x7f140049 +int string module_services_dispatch_dialog_task_info 0x7f14004a +int string module_services_dispatch_dialog_task_time 0x7f14004b +int string module_services_dispatch_dialog_title 0x7f14004c +int string module_services_error_text 0x7f14004d +int string module_services_online_car_panel_empty_tmpl 0x7f14004e +int string module_services_online_car_panel_title 0x7f14004f +int string module_services_panel_item_call 0x7f140050 +int string module_services_panel_item_detail_text 0x7f140051 +int string module_services_panel_item_distance_tag_text 0x7f140052 +int string module_services_str_20Km_radius 0x7f140053 +int string module_services_str_40Km_radius 0x7f140054 +int string network_resp_error 0x7f140055 +int string search_menu_title 0x7f140056 +int string status_bar_notification_info_overflow 0x7f140057 +int string str_pad_login_sure 0x7f140058 +int style AlertDialog_AppCompat 0x7f150001 +int style AlertDialog_AppCompat_Light 0x7f150002 +int style Animation_AppCompat_Dialog 0x7f150003 +int style Animation_AppCompat_DropDownUp 0x7f150004 +int style Animation_AppCompat_Tooltip 0x7f150005 +int style AppTheme 0x7f150006 +int style BaseFloatDialogStyle 0x7f150007 +int style Base_AlertDialog_AppCompat 0x7f150008 +int style Base_AlertDialog_AppCompat_Light 0x7f150009 +int style Base_Animation_AppCompat_Dialog 0x7f15000a +int style Base_Animation_AppCompat_DropDownUp 0x7f15000b +int style Base_Animation_AppCompat_Tooltip 0x7f15000c +int style Base_DialogWindowTitleBackground_AppCompat 0x7f15000d +int style Base_DialogWindowTitle_AppCompat 0x7f15000e +int style Base_TextAppearance_AppCompat 0x7f15000f +int style Base_TextAppearance_AppCompat_Body1 0x7f150010 +int style Base_TextAppearance_AppCompat_Body2 0x7f150011 +int style Base_TextAppearance_AppCompat_Button 0x7f150012 +int style Base_TextAppearance_AppCompat_Caption 0x7f150013 +int style Base_TextAppearance_AppCompat_Display1 0x7f150014 +int style Base_TextAppearance_AppCompat_Display2 0x7f150015 +int style Base_TextAppearance_AppCompat_Display3 0x7f150016 +int style Base_TextAppearance_AppCompat_Display4 0x7f150017 +int style Base_TextAppearance_AppCompat_Headline 0x7f150018 +int style Base_TextAppearance_AppCompat_Inverse 0x7f150019 +int style Base_TextAppearance_AppCompat_Large 0x7f15001a +int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f15001b +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f15001c +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f15001d +int style Base_TextAppearance_AppCompat_Medium 0x7f15001e +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f15001f +int style Base_TextAppearance_AppCompat_Menu 0x7f150020 +int style Base_TextAppearance_AppCompat_SearchResult 0x7f150021 +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f150022 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f150023 +int style Base_TextAppearance_AppCompat_Small 0x7f150024 +int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f150025 +int style Base_TextAppearance_AppCompat_Subhead 0x7f150026 +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f150027 +int style Base_TextAppearance_AppCompat_Title 0x7f150028 +int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f150029 +int style Base_TextAppearance_AppCompat_Tooltip 0x7f15002a +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f15002b +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f15002c +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f15002d +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f15002e +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f15002f +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f150030 +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f150031 +int style Base_TextAppearance_AppCompat_Widget_Button 0x7f150032 +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150033 +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f150034 +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150035 +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f150036 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f150037 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f150038 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f150039 +int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f15003a +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f15003b +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f15003c +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f15003d +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f15003e +int style Base_ThemeOverlay_AppCompat 0x7f15003f +int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f150040 +int style Base_ThemeOverlay_AppCompat_Dark 0x7f150041 +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150042 +int style Base_ThemeOverlay_AppCompat_Dialog 0x7f150043 +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f150044 +int style Base_ThemeOverlay_AppCompat_Light 0x7f150045 +int style Base_Theme_AppCompat 0x7f150046 +int style Base_Theme_AppCompat_CompactMenu 0x7f150047 +int style Base_Theme_AppCompat_Dialog 0x7f150048 +int style Base_Theme_AppCompat_DialogWhenLarge 0x7f150049 +int style Base_Theme_AppCompat_Dialog_Alert 0x7f15004a +int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f15004b +int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f15004c +int style Base_Theme_AppCompat_Light 0x7f15004d +int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f15004e +int style Base_Theme_AppCompat_Light_Dialog 0x7f15004f +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f150050 +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f150051 +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f150052 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f150053 +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f150054 +int style Base_V21_Theme_AppCompat 0x7f150055 +int style Base_V21_Theme_AppCompat_Dialog 0x7f150056 +int style Base_V21_Theme_AppCompat_Light 0x7f150057 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f150058 +int style Base_V22_Theme_AppCompat 0x7f150059 +int style Base_V22_Theme_AppCompat_Light 0x7f15005a +int style Base_V23_Theme_AppCompat 0x7f15005b +int style Base_V23_Theme_AppCompat_Light 0x7f15005c +int style Base_V26_Theme_AppCompat 0x7f15005d +int style Base_V26_Theme_AppCompat_Light 0x7f15005e +int style Base_V26_Widget_AppCompat_Toolbar 0x7f15005f +int style Base_V28_Theme_AppCompat 0x7f150060 +int style Base_V28_Theme_AppCompat_Light 0x7f150061 +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f150062 +int style Base_V7_Theme_AppCompat 0x7f150063 +int style Base_V7_Theme_AppCompat_Dialog 0x7f150064 +int style Base_V7_Theme_AppCompat_Light 0x7f150065 +int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f150066 +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f150067 +int style Base_V7_Widget_AppCompat_EditText 0x7f150068 +int style Base_V7_Widget_AppCompat_Toolbar 0x7f150069 +int style Base_Widget_AppCompat_ActionBar 0x7f15006a +int style Base_Widget_AppCompat_ActionBar_Solid 0x7f15006b +int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f15006c +int style Base_Widget_AppCompat_ActionBar_TabText 0x7f15006d +int style Base_Widget_AppCompat_ActionBar_TabView 0x7f15006e +int style Base_Widget_AppCompat_ActionButton 0x7f15006f +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f150070 +int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f150071 +int style Base_Widget_AppCompat_ActionMode 0x7f150072 +int style Base_Widget_AppCompat_ActivityChooserView 0x7f150073 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f150074 +int style Base_Widget_AppCompat_Button 0x7f150075 +int style Base_Widget_AppCompat_ButtonBar 0x7f150076 +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f150077 +int style Base_Widget_AppCompat_Button_Borderless 0x7f150078 +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f150079 +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f15007a +int style Base_Widget_AppCompat_Button_Colored 0x7f15007b +int style Base_Widget_AppCompat_Button_Small 0x7f15007c +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f15007d +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f15007e +int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f15007f +int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f150080 +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f150081 +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f150082 +int style Base_Widget_AppCompat_EditText 0x7f150083 +int style Base_Widget_AppCompat_ImageButton 0x7f150084 +int style Base_Widget_AppCompat_Light_ActionBar 0x7f150085 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f150086 +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f150087 +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f150088 +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f150089 +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f15008a +int style Base_Widget_AppCompat_Light_PopupMenu 0x7f15008b +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f15008c +int style Base_Widget_AppCompat_ListMenuView 0x7f15008d +int style Base_Widget_AppCompat_ListPopupWindow 0x7f15008e +int style Base_Widget_AppCompat_ListView 0x7f15008f +int style Base_Widget_AppCompat_ListView_DropDown 0x7f150090 +int style Base_Widget_AppCompat_ListView_Menu 0x7f150091 +int style Base_Widget_AppCompat_PopupMenu 0x7f150092 +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f150093 +int style Base_Widget_AppCompat_PopupWindow 0x7f150094 +int style Base_Widget_AppCompat_ProgressBar 0x7f150095 +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f150096 +int style Base_Widget_AppCompat_RatingBar 0x7f150097 +int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f150098 +int style Base_Widget_AppCompat_RatingBar_Small 0x7f150099 +int style Base_Widget_AppCompat_SearchView 0x7f15009a +int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f15009b +int style Base_Widget_AppCompat_SeekBar 0x7f15009c +int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f15009d +int style Base_Widget_AppCompat_Spinner 0x7f15009e +int style Base_Widget_AppCompat_Spinner_Underlined 0x7f15009f +int style Base_Widget_AppCompat_TextView 0x7f1500a0 +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f1500a1 +int style Base_Widget_AppCompat_Toolbar 0x7f1500a2 +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f1500a3 +int style DialogTransparentStyle 0x7f1500a4 +int style Platform_AppCompat 0x7f1500a5 +int style Platform_AppCompat_Light 0x7f1500a6 +int style Platform_ThemeOverlay_AppCompat 0x7f1500a7 +int style Platform_ThemeOverlay_AppCompat_Dark 0x7f1500a8 +int style Platform_ThemeOverlay_AppCompat_Light 0x7f1500a9 +int style Platform_V21_AppCompat 0x7f1500aa +int style Platform_V21_AppCompat_Light 0x7f1500ab +int style Platform_V25_AppCompat 0x7f1500ac +int style Platform_V25_AppCompat_Light 0x7f1500ad +int style Platform_Widget_AppCompat_Spinner 0x7f1500ae +int style RadioBtnStyle 0x7f1500af +int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f1500b0 +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f1500b1 +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f1500b2 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f1500b3 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f1500b4 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f1500b5 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f1500b6 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f1500b7 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f1500b8 +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f1500b9 +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f1500ba +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f1500bb +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f1500bc +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f1500bd +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f1500be +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f1500bf +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f1500c0 +int style TextAppearance_AppCompat 0x7f1500c1 +int style TextAppearance_AppCompat_Body1 0x7f1500c2 +int style TextAppearance_AppCompat_Body2 0x7f1500c3 +int style TextAppearance_AppCompat_Button 0x7f1500c4 +int style TextAppearance_AppCompat_Caption 0x7f1500c5 +int style TextAppearance_AppCompat_Display1 0x7f1500c6 +int style TextAppearance_AppCompat_Display2 0x7f1500c7 +int style TextAppearance_AppCompat_Display3 0x7f1500c8 +int style TextAppearance_AppCompat_Display4 0x7f1500c9 +int style TextAppearance_AppCompat_Headline 0x7f1500ca +int style TextAppearance_AppCompat_Inverse 0x7f1500cb +int style TextAppearance_AppCompat_Large 0x7f1500cc +int style TextAppearance_AppCompat_Large_Inverse 0x7f1500cd +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f1500ce +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f1500cf +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f1500d0 +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f1500d1 +int style TextAppearance_AppCompat_Medium 0x7f1500d2 +int style TextAppearance_AppCompat_Medium_Inverse 0x7f1500d3 +int style TextAppearance_AppCompat_Menu 0x7f1500d4 +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f1500d5 +int style TextAppearance_AppCompat_SearchResult_Title 0x7f1500d6 +int style TextAppearance_AppCompat_Small 0x7f1500d7 +int style TextAppearance_AppCompat_Small_Inverse 0x7f1500d8 +int style TextAppearance_AppCompat_Subhead 0x7f1500d9 +int style TextAppearance_AppCompat_Subhead_Inverse 0x7f1500da +int style TextAppearance_AppCompat_Title 0x7f1500db +int style TextAppearance_AppCompat_Title_Inverse 0x7f1500dc +int style TextAppearance_AppCompat_Tooltip 0x7f1500dd +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f1500de +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f1500df +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f1500e0 +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f1500e1 +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f1500e2 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f1500e3 +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f1500e4 +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f1500e5 +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f1500e6 +int style TextAppearance_AppCompat_Widget_Button 0x7f1500e7 +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f1500e8 +int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f1500e9 +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f1500ea +int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f1500eb +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f1500ec +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f1500ed +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f1500ee +int style TextAppearance_AppCompat_Widget_Switch 0x7f1500ef +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f1500f0 +int style TextAppearance_Compat_Notification 0x7f1500f1 +int style TextAppearance_Compat_Notification_Info 0x7f1500f2 +int style TextAppearance_Compat_Notification_Info_Media 0x7f1500f3 +int style TextAppearance_Compat_Notification_Line2 0x7f1500f4 +int style TextAppearance_Compat_Notification_Line2_Media 0x7f1500f5 +int style TextAppearance_Compat_Notification_Media 0x7f1500f6 +int style TextAppearance_Compat_Notification_Time 0x7f1500f7 +int style TextAppearance_Compat_Notification_Time_Media 0x7f1500f8 +int style TextAppearance_Compat_Notification_Title 0x7f1500f9 +int style TextAppearance_Compat_Notification_Title_Media 0x7f1500fa +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f1500fb +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f1500fc +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f1500fd +int style ThemeOverlay_AppCompat 0x7f1500fe +int style ThemeOverlay_AppCompat_ActionBar 0x7f1500ff +int style ThemeOverlay_AppCompat_Dark 0x7f150100 +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150101 +int style ThemeOverlay_AppCompat_DayNight 0x7f150102 +int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x7f150103 +int style ThemeOverlay_AppCompat_Dialog 0x7f150104 +int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f150105 +int style ThemeOverlay_AppCompat_Light 0x7f150106 +int style Theme_AppCompat 0x7f150107 +int style Theme_AppCompat_CompactMenu 0x7f150108 +int style Theme_AppCompat_DayNight 0x7f150109 +int style Theme_AppCompat_DayNight_DarkActionBar 0x7f15010a +int style Theme_AppCompat_DayNight_Dialog 0x7f15010b +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f15010c +int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f15010d +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f15010e +int style Theme_AppCompat_DayNight_NoActionBar 0x7f15010f +int style Theme_AppCompat_Dialog 0x7f150110 +int style Theme_AppCompat_DialogWhenLarge 0x7f150111 +int style Theme_AppCompat_Dialog_Alert 0x7f150112 +int style Theme_AppCompat_Dialog_MinWidth 0x7f150113 +int style Theme_AppCompat_Light 0x7f150114 +int style Theme_AppCompat_Light_DarkActionBar 0x7f150115 +int style Theme_AppCompat_Light_Dialog 0x7f150116 +int style Theme_AppCompat_Light_DialogWhenLarge 0x7f150117 +int style Theme_AppCompat_Light_Dialog_Alert 0x7f150118 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f150119 +int style Theme_AppCompat_Light_NoActionBar 0x7f15011a +int style Theme_AppCompat_NoActionBar 0x7f15011b +int style Theme_AppMain 0x7f15011c +int style Widget_AppCompat_ActionBar 0x7f15011d +int style Widget_AppCompat_ActionBar_Solid 0x7f15011e +int style Widget_AppCompat_ActionBar_TabBar 0x7f15011f +int style Widget_AppCompat_ActionBar_TabText 0x7f150120 +int style Widget_AppCompat_ActionBar_TabView 0x7f150121 +int style Widget_AppCompat_ActionButton 0x7f150122 +int style Widget_AppCompat_ActionButton_CloseMode 0x7f150123 +int style Widget_AppCompat_ActionButton_Overflow 0x7f150124 +int style Widget_AppCompat_ActionMode 0x7f150125 +int style Widget_AppCompat_ActivityChooserView 0x7f150126 +int style Widget_AppCompat_AutoCompleteTextView 0x7f150127 +int style Widget_AppCompat_Button 0x7f150128 +int style Widget_AppCompat_ButtonBar 0x7f150129 +int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f15012a +int style Widget_AppCompat_Button_Borderless 0x7f15012b +int style Widget_AppCompat_Button_Borderless_Colored 0x7f15012c +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f15012d +int style Widget_AppCompat_Button_Colored 0x7f15012e +int style Widget_AppCompat_Button_Small 0x7f15012f +int style Widget_AppCompat_CompoundButton_CheckBox 0x7f150130 +int style Widget_AppCompat_CompoundButton_RadioButton 0x7f150131 +int style Widget_AppCompat_CompoundButton_Switch 0x7f150132 +int style Widget_AppCompat_DrawerArrowToggle 0x7f150133 +int style Widget_AppCompat_DropDownItem_Spinner 0x7f150134 +int style Widget_AppCompat_EditText 0x7f150135 +int style Widget_AppCompat_ImageButton 0x7f150136 +int style Widget_AppCompat_Light_ActionBar 0x7f150137 +int style Widget_AppCompat_Light_ActionBar_Solid 0x7f150138 +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f150139 +int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f15013a +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f15013b +int style Widget_AppCompat_Light_ActionBar_TabText 0x7f15013c +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f15013d +int style Widget_AppCompat_Light_ActionBar_TabView 0x7f15013e +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f15013f +int style Widget_AppCompat_Light_ActionButton 0x7f150140 +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f150141 +int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f150142 +int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f150143 +int style Widget_AppCompat_Light_ActivityChooserView 0x7f150144 +int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f150145 +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f150146 +int style Widget_AppCompat_Light_ListPopupWindow 0x7f150147 +int style Widget_AppCompat_Light_ListView_DropDown 0x7f150148 +int style Widget_AppCompat_Light_PopupMenu 0x7f150149 +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f15014a +int style Widget_AppCompat_Light_SearchView 0x7f15014b +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f15014c +int style Widget_AppCompat_ListMenuView 0x7f15014d +int style Widget_AppCompat_ListPopupWindow 0x7f15014e +int style Widget_AppCompat_ListView 0x7f15014f +int style Widget_AppCompat_ListView_DropDown 0x7f150150 +int style Widget_AppCompat_ListView_Menu 0x7f150151 +int style Widget_AppCompat_PopupMenu 0x7f150152 +int style Widget_AppCompat_PopupMenu_Overflow 0x7f150153 +int style Widget_AppCompat_PopupWindow 0x7f150154 +int style Widget_AppCompat_ProgressBar 0x7f150155 +int style Widget_AppCompat_ProgressBar_Horizontal 0x7f150156 +int style Widget_AppCompat_RatingBar 0x7f150157 +int style Widget_AppCompat_RatingBar_Indicator 0x7f150158 +int style Widget_AppCompat_RatingBar_Small 0x7f150159 +int style Widget_AppCompat_SearchView 0x7f15015a +int style Widget_AppCompat_SearchView_ActionBar 0x7f15015b +int style Widget_AppCompat_SeekBar 0x7f15015c +int style Widget_AppCompat_SeekBar_Discrete 0x7f15015d +int style Widget_AppCompat_Spinner 0x7f15015e +int style Widget_AppCompat_Spinner_DropDown 0x7f15015f +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f150160 +int style Widget_AppCompat_Spinner_Underlined 0x7f150161 +int style Widget_AppCompat_TextView 0x7f150162 +int style Widget_AppCompat_TextView_SpinnerItem 0x7f150163 +int style Widget_AppCompat_Toolbar 0x7f150164 +int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f150165 +int style Widget_Compat_NotificationActionContainer 0x7f150166 +int style Widget_Compat_NotificationActionText 0x7f150167 +int style Widget_Support_CoordinatorLayout 0x7f150168 +int style customHeartHeartRatingBarStyle 0x7f150169 +int[] styleable ActionBar { 0x7f040036, 0x7f040038, 0x7f040039, 0x7f04006c, 0x7f04006d, 0x7f04006e, 0x7f04006f, 0x7f040070, 0x7f040071, 0x7f040074, 0x7f040079, 0x7f04007a, 0x7f040096, 0x7f0400af, 0x7f0400b0, 0x7f0400b1, 0x7f0400b2, 0x7f0400b3, 0x7f0400b8, 0x7f0400bb, 0x7f040108, 0x7f04011e, 0x7f04012c, 0x7f040133, 0x7f040134, 0x7f040175, 0x7f040178, 0x7f040195, 0x7f04019e } +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionBarLayout { 0x10100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x7f040036, 0x7f040038, 0x7f040059, 0x7f0400af, 0x7f040178, 0x7f04019e } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x7f040098, 0x7f0400b9 } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable AlertDialog { 0x10100f2, 0x7f040049, 0x7f04004a, 0x7f0400fd, 0x7f0400fe, 0x7f04011b, 0x7f040167, 0x7f040168 } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable AnimatedStateListDrawableCompat_android_constantSize 0 +int styleable AnimatedStateListDrawableCompat_android_dither 1 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 +int styleable AnimatedStateListDrawableCompat_android_visible 5 +int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } +int styleable AnimatedStateListDrawableItem_android_drawable 0 +int styleable AnimatedStateListDrawableItem_android_id 1 +int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_fromId 1 +int styleable AnimatedStateListDrawableTransition_android_reversible 2 +int styleable AnimatedStateListDrawableTransition_android_toId 3 +int[] styleable AppCompatImageView { 0x1010119, 0x7f04016e, 0x7f040193, 0x7f040194 } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x1010142, 0x7f040190, 0x7f040191, 0x7f040192 } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } +int styleable AppCompatTextHelper_android_drawableBottom 0 +int styleable AppCompatTextHelper_android_drawableEnd 1 +int styleable AppCompatTextHelper_android_drawableLeft 2 +int styleable AppCompatTextHelper_android_drawableRight 3 +int styleable AppCompatTextHelper_android_drawableStart 4 +int styleable AppCompatTextHelper_android_drawableTop 5 +int styleable AppCompatTextHelper_android_textAppearance 6 +int[] styleable AppCompatTextView { 0x1010034, 0x7f040031, 0x7f040032, 0x7f040033, 0x7f040034, 0x7f040035, 0x7f04007e, 0x7f04007f, 0x7f040080, 0x7f040081, 0x7f040083, 0x7f040084, 0x7f040085, 0x7f040086, 0x7f0400a1, 0x7f0400a3, 0x7f0400ab, 0x7f0400bd, 0x7f0400f8, 0x7f04017e, 0x7f04018a } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_drawableBottomCompat 6 +int styleable AppCompatTextView_drawableEndCompat 7 +int styleable AppCompatTextView_drawableLeftCompat 8 +int styleable AppCompatTextView_drawableRightCompat 9 +int styleable AppCompatTextView_drawableStartCompat 10 +int styleable AppCompatTextView_drawableTint 11 +int styleable AppCompatTextView_drawableTintMode 12 +int styleable AppCompatTextView_drawableTopCompat 13 +int styleable AppCompatTextView_firstBaselineToTopHeight 14 +int styleable AppCompatTextView_fontFamily 15 +int styleable AppCompatTextView_fontVariationSettings 16 +int styleable AppCompatTextView_lastBaselineToBottomHeight 17 +int styleable AppCompatTextView_lineHeight 18 +int styleable AppCompatTextView_textAllCaps 19 +int styleable AppCompatTextView_textLocale 20 +int[] styleable AppCompatTheme { 0x7f040002, 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000d, 0x7f04000e, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040020, 0x7f040023, 0x7f040027, 0x7f040028, 0x7f040029, 0x7f04002a, 0x10100ae, 0x1010057, 0x7f040030, 0x7f04003f, 0x7f040042, 0x7f040043, 0x7f040044, 0x7f040045, 0x7f040046, 0x7f04004b, 0x7f04004c, 0x7f040050, 0x7f040051, 0x7f04005d, 0x7f04005e, 0x7f04005f, 0x7f040060, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f040064, 0x7f040065, 0x7f040066, 0x7f040072, 0x7f040076, 0x7f040077, 0x7f040078, 0x7f04007b, 0x7f04007d, 0x7f040088, 0x7f040089, 0x7f04008b, 0x7f04008c, 0x7f04008d, 0x7f0400b1, 0x7f0400b7, 0x7f0400f9, 0x7f0400fa, 0x7f0400fb, 0x7f0400fc, 0x7f0400ff, 0x7f040100, 0x7f040101, 0x7f040102, 0x7f040103, 0x7f040104, 0x7f040105, 0x7f040106, 0x7f040107, 0x7f040126, 0x7f040127, 0x7f040128, 0x7f04012b, 0x7f04012d, 0x7f040137, 0x7f040139, 0x7f04013a, 0x7f04013b, 0x7f04015f, 0x7f040160, 0x7f040161, 0x7f040162, 0x7f04016b, 0x7f04016c, 0x7f04017c, 0x7f04017f, 0x7f040180, 0x7f040181, 0x7f040182, 0x7f040183, 0x7f040184, 0x7f040185, 0x7f040186, 0x7f040188, 0x7f040189, 0x7f04019f, 0x7f0401a0, 0x7f0401a1, 0x7f0401a2, 0x7f0401ae, 0x7f0401b0, 0x7f0401b1, 0x7f0401b2, 0x7f0401b3, 0x7f0401b4, 0x7f0401b5, 0x7f0401b6, 0x7f0401b7, 0x7f0401b8, 0x7f0401b9 } +int styleable AppCompatTheme_actionBarDivider 0 +int styleable AppCompatTheme_actionBarItemBackground 1 +int styleable AppCompatTheme_actionBarPopupTheme 2 +int styleable AppCompatTheme_actionBarSize 3 +int styleable AppCompatTheme_actionBarSplitStyle 4 +int styleable AppCompatTheme_actionBarStyle 5 +int styleable AppCompatTheme_actionBarTabBarStyle 6 +int styleable AppCompatTheme_actionBarTabStyle 7 +int styleable AppCompatTheme_actionBarTabTextStyle 8 +int styleable AppCompatTheme_actionBarTheme 9 +int styleable AppCompatTheme_actionBarWidgetTheme 10 +int styleable AppCompatTheme_actionButtonStyle 11 +int styleable AppCompatTheme_actionDropDownStyle 12 +int styleable AppCompatTheme_actionMenuTextAppearance 13 +int styleable AppCompatTheme_actionMenuTextColor 14 +int styleable AppCompatTheme_actionModeBackground 15 +int styleable AppCompatTheme_actionModeCloseButtonStyle 16 +int styleable AppCompatTheme_actionModeCloseDrawable 17 +int styleable AppCompatTheme_actionModeCopyDrawable 18 +int styleable AppCompatTheme_actionModeCutDrawable 19 +int styleable AppCompatTheme_actionModeFindDrawable 20 +int styleable AppCompatTheme_actionModePasteDrawable 21 +int styleable AppCompatTheme_actionModePopupWindowStyle 22 +int styleable AppCompatTheme_actionModeSelectAllDrawable 23 +int styleable AppCompatTheme_actionModeShareDrawable 24 +int styleable AppCompatTheme_actionModeSplitBackground 25 +int styleable AppCompatTheme_actionModeStyle 26 +int styleable AppCompatTheme_actionModeWebSearchDrawable 27 +int styleable AppCompatTheme_actionOverflowButtonStyle 28 +int styleable AppCompatTheme_actionOverflowMenuStyle 29 +int styleable AppCompatTheme_activityChooserViewStyle 30 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 31 +int styleable AppCompatTheme_alertDialogCenterButtons 32 +int styleable AppCompatTheme_alertDialogStyle 33 +int styleable AppCompatTheme_alertDialogTheme 34 +int styleable AppCompatTheme_android_windowAnimationStyle 35 +int styleable AppCompatTheme_android_windowIsFloating 36 +int styleable AppCompatTheme_autoCompleteTextViewStyle 37 +int styleable AppCompatTheme_borderlessButtonStyle 38 +int styleable AppCompatTheme_buttonBarButtonStyle 39 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42 +int styleable AppCompatTheme_buttonBarStyle 43 +int styleable AppCompatTheme_buttonStyle 44 +int styleable AppCompatTheme_buttonStyleSmall 45 +int styleable AppCompatTheme_checkboxStyle 46 +int styleable AppCompatTheme_checkedTextViewStyle 47 +int styleable AppCompatTheme_colorAccent 48 +int styleable AppCompatTheme_colorBackgroundFloating 49 +int styleable AppCompatTheme_colorButtonNormal 50 +int styleable AppCompatTheme_colorControlActivated 51 +int styleable AppCompatTheme_colorControlHighlight 52 +int styleable AppCompatTheme_colorControlNormal 53 +int styleable AppCompatTheme_colorError 54 +int styleable AppCompatTheme_colorPrimary 55 +int styleable AppCompatTheme_colorPrimaryDark 56 +int styleable AppCompatTheme_colorSwitchThumbNormal 57 +int styleable AppCompatTheme_controlBackground 58 +int styleable AppCompatTheme_dialogCornerRadius 59 +int styleable AppCompatTheme_dialogPreferredPadding 60 +int styleable AppCompatTheme_dialogTheme 61 +int styleable AppCompatTheme_dividerHorizontal 62 +int styleable AppCompatTheme_dividerVertical 63 +int styleable AppCompatTheme_dropDownListViewStyle 64 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 65 +int styleable AppCompatTheme_editTextBackground 66 +int styleable AppCompatTheme_editTextColor 67 +int styleable AppCompatTheme_editTextStyle 68 +int styleable AppCompatTheme_homeAsUpIndicator 69 +int styleable AppCompatTheme_imageButtonStyle 70 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 71 +int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 72 +int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 73 +int styleable AppCompatTheme_listDividerAlertDialog 74 +int styleable AppCompatTheme_listMenuViewStyle 75 +int styleable AppCompatTheme_listPopupWindowStyle 76 +int styleable AppCompatTheme_listPreferredItemHeight 77 +int styleable AppCompatTheme_listPreferredItemHeightLarge 78 +int styleable AppCompatTheme_listPreferredItemHeightSmall 79 +int styleable AppCompatTheme_listPreferredItemPaddingEnd 80 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 81 +int styleable AppCompatTheme_listPreferredItemPaddingRight 82 +int styleable AppCompatTheme_listPreferredItemPaddingStart 83 +int styleable AppCompatTheme_panelBackground 84 +int styleable AppCompatTheme_panelMenuListTheme 85 +int styleable AppCompatTheme_panelMenuListWidth 86 +int styleable AppCompatTheme_popupMenuStyle 87 +int styleable AppCompatTheme_popupWindowStyle 88 +int styleable AppCompatTheme_radioButtonStyle 89 +int styleable AppCompatTheme_ratingBarStyle 90 +int styleable AppCompatTheme_ratingBarStyleIndicator 91 +int styleable AppCompatTheme_ratingBarStyleSmall 92 +int styleable AppCompatTheme_searchViewStyle 93 +int styleable AppCompatTheme_seekBarStyle 94 +int styleable AppCompatTheme_selectableItemBackground 95 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 96 +int styleable AppCompatTheme_spinnerDropDownItemStyle 97 +int styleable AppCompatTheme_spinnerStyle 98 +int styleable AppCompatTheme_switchStyle 99 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 100 +int styleable AppCompatTheme_textAppearanceListItem 101 +int styleable AppCompatTheme_textAppearanceListItemSecondary 102 +int styleable AppCompatTheme_textAppearanceListItemSmall 103 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 104 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 105 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 106 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 107 +int styleable AppCompatTheme_textColorAlertDialogListItem 108 +int styleable AppCompatTheme_textColorSearchUrl 109 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 110 +int styleable AppCompatTheme_toolbarStyle 111 +int styleable AppCompatTheme_tooltipForegroundColor 112 +int styleable AppCompatTheme_tooltipFrameBackground 113 +int styleable AppCompatTheme_viewInflaterClass 114 +int styleable AppCompatTheme_windowActionBar 115 +int styleable AppCompatTheme_windowActionBarOverlay 116 +int styleable AppCompatTheme_windowActionModeOverlay 117 +int styleable AppCompatTheme_windowFixedHeightMajor 118 +int styleable AppCompatTheme_windowFixedHeightMinor 119 +int styleable AppCompatTheme_windowFixedWidthMajor 120 +int styleable AppCompatTheme_windowFixedWidthMinor 121 +int styleable AppCompatTheme_windowMinWidthMajor 122 +int styleable AppCompatTheme_windowMinWidthMinor 123 +int styleable AppCompatTheme_windowNoTitle 124 +int[] styleable AutoScannerView { 0x7f040040, 0x7f040041, 0x7f04010a, 0x7f04015c, 0x7f040165, 0x7f0401a4, 0x7f0401a5, 0x7f0401a9, 0x7f0401aa, 0x7f0401ab } +int styleable AutoScannerView_btmText 0 +int styleable AutoScannerView_btmTextSize 1 +int styleable AutoScannerView_maskColor 2 +int styleable AutoScannerView_scanline 3 +int styleable AutoScannerView_showRectLine 4 +int styleable AutoScannerView_topText 5 +int styleable AutoScannerView_topTextSize 6 +int styleable AutoScannerView_triAngleColor 7 +int styleable AutoScannerView_triAngleLength 8 +int styleable AutoScannerView_triAngleWidth 9 +int[] styleable ButtonBarLayout { 0x7f04002b } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable ColorStateListItem { 0x7f04002c, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable CompoundButton { 0x1010107, 0x7f040047, 0x7f04004d, 0x7f04004e } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonCompat 1 +int styleable CompoundButton_buttonTint 2 +int styleable CompoundButton_buttonTintMode 3 +int[] styleable ConstraintLayout_Layout { 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x7f04003d, 0x7f04003e, 0x7f04004f, 0x7f040068, 0x7f040069, 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400c6, 0x7f0400c7, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400cb, 0x7f0400cc, 0x7f0400cd, 0x7f0400ce, 0x7f0400cf, 0x7f0400d0, 0x7f0400d1, 0x7f0400d2, 0x7f0400d3, 0x7f0400d4, 0x7f0400d5, 0x7f0400d6, 0x7f0400d7, 0x7f0400d8, 0x7f0400d9, 0x7f0400da, 0x7f0400db, 0x7f0400dc, 0x7f0400dd, 0x7f0400de, 0x7f0400df, 0x7f0400e0, 0x7f0400e1, 0x7f0400e2, 0x7f0400e3, 0x7f0400e4, 0x7f0400e5, 0x7f0400e6, 0x7f0400e7, 0x7f0400e8, 0x7f0400e9, 0x7f0400ea, 0x7f0400eb, 0x7f0400ed, 0x7f0400ee, 0x7f0400ef, 0x7f0400f0, 0x7f0400f1, 0x7f0400f2, 0x7f0400f3, 0x7f0400f4, 0x7f0400f7 } +int styleable ConstraintLayout_Layout_android_maxHeight 0 +int styleable ConstraintLayout_Layout_android_maxWidth 1 +int styleable ConstraintLayout_Layout_android_minHeight 2 +int styleable ConstraintLayout_Layout_android_minWidth 3 +int styleable ConstraintLayout_Layout_android_orientation 4 +int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 5 +int styleable ConstraintLayout_Layout_barrierDirection 6 +int styleable ConstraintLayout_Layout_chainUseRtl 7 +int styleable ConstraintLayout_Layout_constraintSet 8 +int styleable ConstraintLayout_Layout_constraint_referenced_ids 9 +int styleable ConstraintLayout_Layout_layout_constrainedHeight 10 +int styleable ConstraintLayout_Layout_layout_constrainedWidth 11 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 12 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 13 +int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 14 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 15 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 16 +int styleable ConstraintLayout_Layout_layout_constraintCircle 17 +int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 18 +int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 19 +int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 20 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 21 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 22 +int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 23 +int styleable ConstraintLayout_Layout_layout_constraintGuide_end 24 +int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 25 +int styleable ConstraintLayout_Layout_layout_constraintHeight_default 26 +int styleable ConstraintLayout_Layout_layout_constraintHeight_max 27 +int styleable ConstraintLayout_Layout_layout_constraintHeight_min 28 +int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 29 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 30 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 31 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 32 +int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 33 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 34 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 35 +int styleable ConstraintLayout_Layout_layout_constraintRight_creator 36 +int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 37 +int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 38 +int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 39 +int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 40 +int styleable ConstraintLayout_Layout_layout_constraintTop_creator 41 +int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 42 +int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 43 +int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 44 +int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 45 +int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 46 +int styleable ConstraintLayout_Layout_layout_constraintWidth_default 47 +int styleable ConstraintLayout_Layout_layout_constraintWidth_max 48 +int styleable ConstraintLayout_Layout_layout_constraintWidth_min 49 +int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 50 +int styleable ConstraintLayout_Layout_layout_editor_absoluteX 51 +int styleable ConstraintLayout_Layout_layout_editor_absoluteY 52 +int styleable ConstraintLayout_Layout_layout_goneMarginBottom 53 +int styleable ConstraintLayout_Layout_layout_goneMarginEnd 54 +int styleable ConstraintLayout_Layout_layout_goneMarginLeft 55 +int styleable ConstraintLayout_Layout_layout_goneMarginRight 56 +int styleable ConstraintLayout_Layout_layout_goneMarginStart 57 +int styleable ConstraintLayout_Layout_layout_goneMarginTop 58 +int styleable ConstraintLayout_Layout_layout_optimizationLevel 59 +int[] styleable ConstraintLayout_placeholder { 0x7f04006a, 0x7f040097 } +int styleable ConstraintLayout_placeholder_content 0 +int styleable ConstraintLayout_placeholder_emptyVisibility 1 +int[] styleable ConstraintSet { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x7f04003d, 0x7f04003e, 0x7f04004f, 0x7f040069, 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400c6, 0x7f0400c7, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400cb, 0x7f0400cc, 0x7f0400cd, 0x7f0400ce, 0x7f0400cf, 0x7f0400d0, 0x7f0400d1, 0x7f0400d2, 0x7f0400d3, 0x7f0400d4, 0x7f0400d5, 0x7f0400d6, 0x7f0400d7, 0x7f0400d8, 0x7f0400d9, 0x7f0400da, 0x7f0400db, 0x7f0400dc, 0x7f0400dd, 0x7f0400de, 0x7f0400df, 0x7f0400e0, 0x7f0400e1, 0x7f0400e2, 0x7f0400e3, 0x7f0400e4, 0x7f0400e5, 0x7f0400e6, 0x7f0400e7, 0x7f0400e8, 0x7f0400e9, 0x7f0400ea, 0x7f0400eb, 0x7f0400ed, 0x7f0400ee, 0x7f0400ef, 0x7f0400f0, 0x7f0400f1, 0x7f0400f2, 0x7f0400f3, 0x7f0400f4 } +int styleable ConstraintSet_android_alpha 0 +int styleable ConstraintSet_android_elevation 1 +int styleable ConstraintSet_android_id 2 +int styleable ConstraintSet_android_layout_height 3 +int styleable ConstraintSet_android_layout_marginBottom 4 +int styleable ConstraintSet_android_layout_marginEnd 5 +int styleable ConstraintSet_android_layout_marginLeft 6 +int styleable ConstraintSet_android_layout_marginRight 7 +int styleable ConstraintSet_android_layout_marginStart 8 +int styleable ConstraintSet_android_layout_marginTop 9 +int styleable ConstraintSet_android_layout_width 10 +int styleable ConstraintSet_android_maxHeight 11 +int styleable ConstraintSet_android_maxWidth 12 +int styleable ConstraintSet_android_minHeight 13 +int styleable ConstraintSet_android_minWidth 14 +int styleable ConstraintSet_android_orientation 15 +int styleable ConstraintSet_android_rotation 16 +int styleable ConstraintSet_android_rotationX 17 +int styleable ConstraintSet_android_rotationY 18 +int styleable ConstraintSet_android_scaleX 19 +int styleable ConstraintSet_android_scaleY 20 +int styleable ConstraintSet_android_transformPivotX 21 +int styleable ConstraintSet_android_transformPivotY 22 +int styleable ConstraintSet_android_translationX 23 +int styleable ConstraintSet_android_translationY 24 +int styleable ConstraintSet_android_translationZ 25 +int styleable ConstraintSet_android_visibility 26 +int styleable ConstraintSet_barrierAllowsGoneWidgets 27 +int styleable ConstraintSet_barrierDirection 28 +int styleable ConstraintSet_chainUseRtl 29 +int styleable ConstraintSet_constraint_referenced_ids 30 +int styleable ConstraintSet_layout_constrainedHeight 31 +int styleable ConstraintSet_layout_constrainedWidth 32 +int styleable ConstraintSet_layout_constraintBaseline_creator 33 +int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 34 +int styleable ConstraintSet_layout_constraintBottom_creator 35 +int styleable ConstraintSet_layout_constraintBottom_toBottomOf 36 +int styleable ConstraintSet_layout_constraintBottom_toTopOf 37 +int styleable ConstraintSet_layout_constraintCircle 38 +int styleable ConstraintSet_layout_constraintCircleAngle 39 +int styleable ConstraintSet_layout_constraintCircleRadius 40 +int styleable ConstraintSet_layout_constraintDimensionRatio 41 +int styleable ConstraintSet_layout_constraintEnd_toEndOf 42 +int styleable ConstraintSet_layout_constraintEnd_toStartOf 43 +int styleable ConstraintSet_layout_constraintGuide_begin 44 +int styleable ConstraintSet_layout_constraintGuide_end 45 +int styleable ConstraintSet_layout_constraintGuide_percent 46 +int styleable ConstraintSet_layout_constraintHeight_default 47 +int styleable ConstraintSet_layout_constraintHeight_max 48 +int styleable ConstraintSet_layout_constraintHeight_min 49 +int styleable ConstraintSet_layout_constraintHeight_percent 50 +int styleable ConstraintSet_layout_constraintHorizontal_bias 51 +int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 52 +int styleable ConstraintSet_layout_constraintHorizontal_weight 53 +int styleable ConstraintSet_layout_constraintLeft_creator 54 +int styleable ConstraintSet_layout_constraintLeft_toLeftOf 55 +int styleable ConstraintSet_layout_constraintLeft_toRightOf 56 +int styleable ConstraintSet_layout_constraintRight_creator 57 +int styleable ConstraintSet_layout_constraintRight_toLeftOf 58 +int styleable ConstraintSet_layout_constraintRight_toRightOf 59 +int styleable ConstraintSet_layout_constraintStart_toEndOf 60 +int styleable ConstraintSet_layout_constraintStart_toStartOf 61 +int styleable ConstraintSet_layout_constraintTop_creator 62 +int styleable ConstraintSet_layout_constraintTop_toBottomOf 63 +int styleable ConstraintSet_layout_constraintTop_toTopOf 64 +int styleable ConstraintSet_layout_constraintVertical_bias 65 +int styleable ConstraintSet_layout_constraintVertical_chainStyle 66 +int styleable ConstraintSet_layout_constraintVertical_weight 67 +int styleable ConstraintSet_layout_constraintWidth_default 68 +int styleable ConstraintSet_layout_constraintWidth_max 69 +int styleable ConstraintSet_layout_constraintWidth_min 70 +int styleable ConstraintSet_layout_constraintWidth_percent 71 +int styleable ConstraintSet_layout_editor_absoluteX 72 +int styleable ConstraintSet_layout_editor_absoluteY 73 +int styleable ConstraintSet_layout_goneMarginBottom 74 +int styleable ConstraintSet_layout_goneMarginEnd 75 +int styleable ConstraintSet_layout_goneMarginLeft 76 +int styleable ConstraintSet_layout_goneMarginRight 77 +int styleable ConstraintSet_layout_goneMarginStart 78 +int styleable ConstraintSet_layout_goneMarginTop 79 +int[] styleable CoordinatorLayout { 0x7f0400bc, 0x7f040171 } +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x7f0400c0, 0x7f0400c1, 0x7f0400c2, 0x7f0400ec, 0x7f0400f5, 0x7f0400f6 } +int styleable CoordinatorLayout_Layout_android_layout_gravity 0 +int styleable CoordinatorLayout_Layout_layout_anchor 1 +int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 +int styleable CoordinatorLayout_Layout_layout_behavior 3 +int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 +int styleable CoordinatorLayout_Layout_layout_insetEdge 5 +int styleable CoordinatorLayout_Layout_layout_keyline 6 +int[] styleable CustomCircleImageView { 0x7f040053, 0x7f040054, 0x7f040055, 0x7f040056 } +int styleable CustomCircleImageView_civ_border_color 0 +int styleable CustomCircleImageView_civ_border_overlay 1 +int styleable CustomCircleImageView_civ_border_width 2 +int styleable CustomCircleImageView_civ_fill_color 3 +int[] styleable CustomRatingBar { 0x7f040001, 0x7f040057, 0x7f04008e, 0x7f04008f, 0x7f040090, 0x7f040091, 0x7f040092, 0x7f040093, 0x7f040094, 0x7f040095, 0x7f040172 } +int styleable CustomRatingBar_OtherHeartImg 0 +int styleable CustomRatingBar_clickable 1 +int styleable CustomRatingBar_elenmentCount 2 +int styleable CustomRatingBar_elenmentEmpty 3 +int styleable CustomRatingBar_elenmentFill 4 +int styleable CustomRatingBar_elenmentHarf 5 +int styleable CustomRatingBar_elenmentHeight 6 +int styleable CustomRatingBar_elenmentPadding 7 +int styleable CustomRatingBar_elenmentStep 8 +int styleable CustomRatingBar_elenmentWidth 9 +int styleable CustomRatingBar_stepSize 10 +int[] styleable DiscreteScrollView { 0x7f04008a } +int styleable DiscreteScrollView_dsv_orientation 0 +int[] styleable DrawerArrowToggle { 0x7f04002e, 0x7f04002f, 0x7f04003c, 0x7f04005c, 0x7f040082, 0x7f0400ad, 0x7f04016a, 0x7f04018c } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable FontFamily { 0x7f0400a4, 0x7f0400a5, 0x7f0400a6, 0x7f0400a7, 0x7f0400a8, 0x7f0400a9 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f0400a2, 0x7f0400aa, 0x7f0400ab, 0x7f0400ac, 0x7f0401ac } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable GenericDraweeHierarchy { 0x7f040025, 0x7f040037, 0x7f040099, 0x7f04009a, 0x7f04009b, 0x7f040121, 0x7f040129, 0x7f04012a, 0x7f04012f, 0x7f040130, 0x7f040131, 0x7f040132, 0x7f04013d, 0x7f04013e, 0x7f04014d, 0x7f04014e, 0x7f04014f, 0x7f040150, 0x7f040151, 0x7f040153, 0x7f040154, 0x7f040155, 0x7f040156, 0x7f040157, 0x7f040158, 0x7f040159, 0x7f04015a, 0x7f04015b, 0x7f0401ad } +int styleable GenericDraweeHierarchy_actualImageScaleType 0 +int styleable GenericDraweeHierarchy_backgroundImage 1 +int styleable GenericDraweeHierarchy_fadeDuration 2 +int styleable GenericDraweeHierarchy_failureImage 3 +int styleable GenericDraweeHierarchy_failureImageScaleType 4 +int styleable GenericDraweeHierarchy_overlayImage 5 +int styleable GenericDraweeHierarchy_placeholderImage 6 +int styleable GenericDraweeHierarchy_placeholderImageScaleType 7 +int styleable GenericDraweeHierarchy_pressedStateOverlayImage 8 +int styleable GenericDraweeHierarchy_progressBarAutoRotateInterval 9 +int styleable GenericDraweeHierarchy_progressBarImage 10 +int styleable GenericDraweeHierarchy_progressBarImageScaleType 11 +int styleable GenericDraweeHierarchy_retryImage 12 +int styleable GenericDraweeHierarchy_retryImageScaleType 13 +int styleable GenericDraweeHierarchy_roundAsCircle 14 +int styleable GenericDraweeHierarchy_roundBottomEnd 15 +int styleable GenericDraweeHierarchy_roundBottomLeft 16 +int styleable GenericDraweeHierarchy_roundBottomRight 17 +int styleable GenericDraweeHierarchy_roundBottomStart 18 +int styleable GenericDraweeHierarchy_roundTopEnd 19 +int styleable GenericDraweeHierarchy_roundTopLeft 20 +int styleable GenericDraweeHierarchy_roundTopRight 21 +int styleable GenericDraweeHierarchy_roundTopStart 22 +int styleable GenericDraweeHierarchy_roundWithOverlayColor 23 +int styleable GenericDraweeHierarchy_roundedCornerRadius 24 +int styleable GenericDraweeHierarchy_roundingBorderColor 25 +int styleable GenericDraweeHierarchy_roundingBorderPadding 26 +int styleable GenericDraweeHierarchy_roundingBorderWidth 27 +int styleable GenericDraweeHierarchy_viewAspectRatio 28 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int[] styleable LinearConstraintLayout { 0x10100c4 } +int styleable LinearConstraintLayout_android_orientation 0 +int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x7f04007a, 0x7f04007c, 0x7f04010c, 0x7f040164 } +int styleable LinearLayoutCompat_android_baselineAligned 0 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 +int styleable LinearLayoutCompat_android_gravity 2 +int styleable LinearLayoutCompat_android_orientation 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_height 1 +int styleable LinearLayoutCompat_Layout_android_layout_weight 2 +int styleable LinearLayoutCompat_Layout_android_layout_width 3 +int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MediaCircleImageView2 { 0x7f040053, 0x7f040054, 0x7f040055, 0x7f040056 } +int styleable MediaCircleImageView2_civ_border_color 0 +int styleable MediaCircleImageView2_civ_border_overlay 1 +int styleable MediaCircleImageView2_civ_border_width 2 +int styleable MediaCircleImageView2_civ_fill_color 3 +int[] styleable MediaRoundedImageView { 0x101011d, 0x7f040141, 0x7f040142, 0x7f040143, 0x7f040144, 0x7f040145, 0x7f040146, 0x7f040147, 0x7f040148, 0x7f040149, 0x7f04014a, 0x7f04014b, 0x7f04014c } +int styleable MediaRoundedImageView_android_scaleType 0 +int styleable MediaRoundedImageView_riv_border_color 1 +int styleable MediaRoundedImageView_riv_border_width 2 +int styleable MediaRoundedImageView_riv_corner_radius 3 +int styleable MediaRoundedImageView_riv_corner_radius_bottom_left 4 +int styleable MediaRoundedImageView_riv_corner_radius_bottom_right 5 +int styleable MediaRoundedImageView_riv_corner_radius_top_left 6 +int styleable MediaRoundedImageView_riv_corner_radius_top_right 7 +int styleable MediaRoundedImageView_riv_mutate_background 8 +int styleable MediaRoundedImageView_riv_oval 9 +int styleable MediaRoundedImageView_riv_tile_mode 10 +int styleable MediaRoundedImageView_riv_tile_mode_x 11 +int styleable MediaRoundedImageView_riv_tile_mode_y 12 +int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } +int styleable MenuGroup_android_checkableBehavior 0 +int styleable MenuGroup_android_enabled 1 +int styleable MenuGroup_android_id 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_visible 5 +int[] styleable MenuItem { 0x7f04000f, 0x7f040021, 0x7f040022, 0x7f04002d, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x7f04006b, 0x7f0400b4, 0x7f0400b5, 0x7f04011f, 0x7f040163, 0x7f0401a3 } +int styleable MenuItem_actionLayout 0 +int styleable MenuItem_actionProviderClass 1 +int styleable MenuItem_actionViewClass 2 +int styleable MenuItem_alphabeticModifiers 3 +int styleable MenuItem_android_alphabeticShortcut 4 +int styleable MenuItem_android_checkable 5 +int styleable MenuItem_android_checked 6 +int styleable MenuItem_android_enabled 7 +int styleable MenuItem_android_icon 8 +int styleable MenuItem_android_id 9 +int styleable MenuItem_android_menuCategory 10 +int styleable MenuItem_android_numericShortcut 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_android_orderInCategory 13 +int styleable MenuItem_android_title 14 +int styleable MenuItem_android_titleCondensed 15 +int styleable MenuItem_android_visible 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x7f04012e, 0x7f040173 } +int styleable MenuView_android_headerBackground 0 +int styleable MenuView_android_horizontalDivider 1 +int styleable MenuView_android_itemBackground 2 +int styleable MenuView_android_itemIconDisabledAlpha 3 +int styleable MenuView_android_itemTextAppearance 4 +int styleable MenuView_android_verticalDivider 5 +int styleable MenuView_android_windowAnimationStyle 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable MogoImageView { 0x7f04010e, 0x7f04010f, 0x7f040110, 0x7f040111, 0x7f040112, 0x7f040113, 0x7f040114, 0x7f040115, 0x7f040116, 0x7f040117, 0x7f040118, 0x7f040119, 0x7f04011a } +int styleable MogoImageView_miv_blurRadius 0 +int styleable MogoImageView_miv_borderColor 1 +int styleable MogoImageView_miv_bottomLeftRadius 2 +int styleable MogoImageView_miv_bottomRightRadius 3 +int styleable MogoImageView_miv_failureHolder 4 +int styleable MogoImageView_miv_isBlur 5 +int styleable MogoImageView_miv_overlayImageId 6 +int styleable MogoImageView_miv_placeHolder 7 +int styleable MogoImageView_miv_radius 8 +int styleable MogoImageView_miv_shape 9 +int styleable MogoImageView_miv_shapeBorderWidth 10 +int styleable MogoImageView_miv_topLeftRadius 11 +int styleable MogoImageView_miv_topRightRadius 12 +int[] styleable MogoSkinBackgroundHelper { 0x10100d4 } +int styleable MogoSkinBackgroundHelper_android_background 0 +int[] styleable MogoSkinCompatImageView { 0x1010119, 0x1010121, 0x7f04016e, 0x7f040193 } +int styleable MogoSkinCompatImageView_android_src 0 +int styleable MogoSkinCompatImageView_android_tint 1 +int styleable MogoSkinCompatImageView_srcCompat 2 +int styleable MogoSkinCompatImageView_tint 3 +int[] styleable MogoSkinCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } +int styleable MogoSkinCompatTextHelper_android_drawableBottom 0 +int styleable MogoSkinCompatTextHelper_android_drawableEnd 1 +int styleable MogoSkinCompatTextHelper_android_drawableLeft 2 +int styleable MogoSkinCompatTextHelper_android_drawableRight 3 +int styleable MogoSkinCompatTextHelper_android_drawableStart 4 +int styleable MogoSkinCompatTextHelper_android_drawableTop 5 +int styleable MogoSkinCompatTextHelper_android_textAppearance 6 +int[] styleable MogoSkinTextAppearance { 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x1010095, 0x1010097, 0x1010096, 0x7f04017e } +int styleable MogoSkinTextAppearance_android_shadowColor 0 +int styleable MogoSkinTextAppearance_android_shadowDx 1 +int styleable MogoSkinTextAppearance_android_shadowDy 2 +int styleable MogoSkinTextAppearance_android_shadowRadius 3 +int styleable MogoSkinTextAppearance_android_textColor 4 +int styleable MogoSkinTextAppearance_android_textColorHint 5 +int styleable MogoSkinTextAppearance_android_textSize 6 +int styleable MogoSkinTextAppearance_android_textStyle 7 +int styleable MogoSkinTextAppearance_android_typeface 8 +int styleable MogoSkinTextAppearance_textAllCaps 9 +int[] styleable PercentageRing { 0x7f040052, 0x7f040138, 0x7f040140, 0x7f040187 } +int styleable PercentageRing_circleBackground 0 +int styleable PercentageRing_radius 1 +int styleable PercentageRing_ringColor 2 +int styleable PercentageRing_textColor 3 +int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x7f040120 } +int styleable PopupWindow_android_popupAnimationStyle 0 +int styleable PopupWindow_android_popupBackground 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x7f040170 } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable RecycleListView { 0x7f040122, 0x7f040125 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable RecyclerView { 0x10100eb, 0x10100f1, 0x10100c4, 0x7f04009c, 0x7f04009d, 0x7f04009e, 0x7f04009f, 0x7f0400a0, 0x7f0400bf, 0x7f04013f, 0x7f040169, 0x7f04016f } +int styleable RecyclerView_android_clipToPadding 0 +int styleable RecyclerView_android_descendantFocusability 1 +int styleable RecyclerView_android_orientation 2 +int styleable RecyclerView_fastScrollEnabled 3 +int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4 +int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5 +int styleable RecyclerView_fastScrollVerticalThumbDrawable 6 +int styleable RecyclerView_fastScrollVerticalTrackDrawable 7 +int styleable RecyclerView_layoutManager 8 +int styleable RecyclerView_reverseLayout 9 +int styleable RecyclerView_spanCount 10 +int styleable RecyclerView_stackFromEnd 11 +int[] styleable RoundLayout { 0x7f040152 } +int styleable RoundLayout_roundLayoutRadius 0 +int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x7f040058, 0x7f040067, 0x7f040075, 0x7f0400ae, 0x7f0400b6, 0x7f0400be, 0x7f040135, 0x7f040136, 0x7f04015d, 0x7f04015e, 0x7f040174, 0x7f040179, 0x7f0401af } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_imeOptions 1 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_maxWidth 3 +int styleable SearchView_closeIcon 4 +int styleable SearchView_commitIcon 5 +int styleable SearchView_defaultQueryHint 6 +int styleable SearchView_goIcon 7 +int styleable SearchView_iconifiedByDefault 8 +int styleable SearchView_layout 9 +int styleable SearchView_queryBackground 10 +int styleable SearchView_queryHint 11 +int styleable SearchView_searchHintIcon 12 +int styleable SearchView_searchIcon 13 +int styleable SearchView_submitBackground 14 +int styleable SearchView_suggestionRowLayout 15 +int styleable SearchView_voiceIcon 16 +int[] styleable SimpleDraweeView { 0x7f040024, 0x7f040025, 0x7f040026, 0x7f040037, 0x7f040099, 0x7f04009a, 0x7f04009b, 0x7f040121, 0x7f040129, 0x7f04012a, 0x7f04012f, 0x7f040130, 0x7f040131, 0x7f040132, 0x7f04013d, 0x7f04013e, 0x7f04014d, 0x7f04014e, 0x7f04014f, 0x7f040150, 0x7f040151, 0x7f040153, 0x7f040154, 0x7f040155, 0x7f040156, 0x7f040157, 0x7f040158, 0x7f040159, 0x7f04015a, 0x7f04015b, 0x7f0401ad } +int styleable SimpleDraweeView_actualImageResource 0 +int styleable SimpleDraweeView_actualImageScaleType 1 +int styleable SimpleDraweeView_actualImageUri 2 +int styleable SimpleDraweeView_backgroundImage 3 +int styleable SimpleDraweeView_fadeDuration 4 +int styleable SimpleDraweeView_failureImage 5 +int styleable SimpleDraweeView_failureImageScaleType 6 +int styleable SimpleDraweeView_overlayImage 7 +int styleable SimpleDraweeView_placeholderImage 8 +int styleable SimpleDraweeView_placeholderImageScaleType 9 +int styleable SimpleDraweeView_pressedStateOverlayImage 10 +int styleable SimpleDraweeView_progressBarAutoRotateInterval 11 +int styleable SimpleDraweeView_progressBarImage 12 +int styleable SimpleDraweeView_progressBarImageScaleType 13 +int styleable SimpleDraweeView_retryImage 14 +int styleable SimpleDraweeView_retryImageScaleType 15 +int styleable SimpleDraweeView_roundAsCircle 16 +int styleable SimpleDraweeView_roundBottomEnd 17 +int styleable SimpleDraweeView_roundBottomLeft 18 +int styleable SimpleDraweeView_roundBottomRight 19 +int styleable SimpleDraweeView_roundBottomStart 20 +int styleable SimpleDraweeView_roundTopEnd 21 +int styleable SimpleDraweeView_roundTopLeft 22 +int styleable SimpleDraweeView_roundTopRight 23 +int styleable SimpleDraweeView_roundTopStart 24 +int styleable SimpleDraweeView_roundWithOverlayColor 25 +int styleable SimpleDraweeView_roundedCornerRadius 26 +int styleable SimpleDraweeView_roundingBorderColor 27 +int styleable SimpleDraweeView_roundingBorderPadding 28 +int styleable SimpleDraweeView_roundingBorderWidth 29 +int styleable SimpleDraweeView_viewAspectRatio 30 +int[] styleable SkinCompatProgressBar { 0x101013b, 0x101013c } +int styleable SkinCompatProgressBar_android_indeterminateDrawable 0 +int styleable SkinCompatProgressBar_android_progressDrawable 1 +int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x7f04012c } +int styleable Spinner_android_dropDownWidth 0 +int styleable Spinner_android_entries 1 +int styleable Spinner_android_popupBackground 2 +int styleable Spinner_android_prompt 3 +int styleable Spinner_popupTheme 4 +int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable StateListDrawable_android_constantSize 0 +int styleable StateListDrawable_android_dither 1 +int styleable StateListDrawable_android_enterFadeDuration 2 +int styleable StateListDrawable_android_exitFadeDuration 3 +int styleable StateListDrawable_android_variablePadding 4 +int styleable StateListDrawable_android_visible 5 +int[] styleable StateListDrawableItem { 0x1010199 } +int styleable StateListDrawableItem_android_drawable 0 +int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x7f040166, 0x7f04016d, 0x7f04017a, 0x7f04017b, 0x7f04017d, 0x7f04018d, 0x7f04018e, 0x7f04018f, 0x7f0401a6, 0x7f0401a7, 0x7f0401a8 } +int styleable SwitchCompat_android_textOff 0 +int styleable SwitchCompat_android_textOn 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x7f0400a3, 0x7f0400ab, 0x7f04017e, 0x7f04018a } +int styleable TextAppearance_android_fontFamily 0 +int styleable TextAppearance_android_shadowColor 1 +int styleable TextAppearance_android_shadowDx 2 +int styleable TextAppearance_android_shadowDy 3 +int styleable TextAppearance_android_shadowRadius 4 +int styleable TextAppearance_android_textColor 5 +int styleable TextAppearance_android_textColorHint 6 +int styleable TextAppearance_android_textColorLink 7 +int styleable TextAppearance_android_textFontWeight 8 +int styleable TextAppearance_android_textSize 9 +int styleable TextAppearance_android_textStyle 10 +int styleable TextAppearance_android_typeface 11 +int styleable TextAppearance_fontFamily 12 +int styleable TextAppearance_fontVariationSettings 13 +int styleable TextAppearance_textAllCaps 14 +int styleable TextAppearance_textLocale 15 +int[] styleable Toolbar { 0x10100af, 0x1010140, 0x7f040048, 0x7f04005a, 0x7f04005b, 0x7f04006c, 0x7f04006d, 0x7f04006e, 0x7f04006f, 0x7f040070, 0x7f040071, 0x7f040108, 0x7f040109, 0x7f04010b, 0x7f04010d, 0x7f04011c, 0x7f04011d, 0x7f04012c, 0x7f040175, 0x7f040176, 0x7f040177, 0x7f040195, 0x7f040196, 0x7f040197, 0x7f040198, 0x7f040199, 0x7f04019a, 0x7f04019b, 0x7f04019c, 0x7f04019d } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_menu 14 +int styleable Toolbar_navigationContentDescription 15 +int styleable Toolbar_navigationIcon 16 +int styleable Toolbar_popupTheme 17 +int styleable Toolbar_subtitle 18 +int styleable Toolbar_subtitleTextAppearance 19 +int styleable Toolbar_subtitleTextColor 20 +int styleable Toolbar_title 21 +int styleable Toolbar_titleMargin 22 +int styleable Toolbar_titleMarginBottom 23 +int styleable Toolbar_titleMarginEnd 24 +int styleable Toolbar_titleMarginStart 25 +int styleable Toolbar_titleMarginTop 26 +int styleable Toolbar_titleMargins 27 +int styleable Toolbar_titleTextAppearance 28 +int styleable Toolbar_titleTextColor 29 +int[] styleable View { 0x10100da, 0x1010000, 0x7f040123, 0x7f040124, 0x7f04018b } +int styleable View_android_focusable 0 +int styleable View_android_theme 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x10100d4, 0x7f04003a, 0x7f04003b } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_inflatedId 1 +int styleable ViewStubCompat_android_layout 2 diff --git a/modules/mogo-module-media/build/outputs/logs/manifest-merger-debug-report.txt b/modules/mogo-module-media/build/outputs/logs/manifest-merger-debug-report.txt new file mode 100644 index 0000000000..00d8c5b27e --- /dev/null +++ b/modules/mogo-module-media/build/outputs/logs/manifest-merger-debug-report.txt @@ -0,0 +1,89 @@ +-- Merging decision tree log --- +manifest +ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:2:1-23:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:2:1-23:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:2:1-23:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:2:1-23:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:2:1-23:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:2:1-23:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:2:1-23:12 + package + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:3:5-36 + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml + android:versionName + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:2:1-23:12 + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml + android:versionCode + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:2:1-23:12 + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml + xmlns:android + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:2:11-69 +uses-permission#android.permission.WRITE_EXTERNAL_STORAGE +ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:4:5-81 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:4:22-78 +uses-permission#android.permission.WAKE_LOCK +ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:5:5-68 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:5:22-65 +uses-permission#android.permission.READ_EXTERNAL_STORAGE +ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:6:5-80 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:6:22-77 +uses-permission#android.permission.INTERNET +ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:7:5-67 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:7:22-64 +uses-permission#android.permission.ACTION_MANAGE_OVERLAY_PERMISSION +ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:8:5-91 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:8:22-88 +uses-permission#android.permission.TYPE_APPLICATION_OVERLAY +ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:9:5-83 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:9:22-80 +uses-permission#android.permission.SYSTEM_ALERT_WINDOW +ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:10:5-77 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:10:22-75 +uses-permission#com.tencent.wecarflow.PLAY_CONTROL +ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:11:5-74 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:11:22-71 +application +ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:13:5-21:19 +receiver#com.mogo.module.media.receiver.MediaSpeechReceiver +ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:14:6-20:20 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:14:16-60 +intent-filter#action:name:com.speech.adapter.send+action:name:com.zhidao.mediacenter.voiceltnews+action:name:com.zhidao.speech.awake.notify +ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:15:13-19:29 +action#com.speech.adapter.send +ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:16:17-66 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:16:25-63 +action#com.zhidao.speech.awake.notify +ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:17:17-73 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:17:25-70 +action#com.zhidao.mediacenter.voiceltnews +ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:18:17-77 + android:name + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml:18:25-74 +uses-sdk +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml reason: use-sdk injection requested +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml + android:targetSdkVersion + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml + android:minSdkVersion + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-media/src/main/AndroidManifest.xml diff --git a/modules/mogo-module-service/src/main/assets/heng_0327.csv b/modules/mogo-module-service/src/main/assets/heng_0327.csv deleted file mode 100644 index 7791181839..0000000000 --- a/modules/mogo-module-service/src/main/assets/heng_0327.csv +++ /dev/null @@ -1,31501 +0,0 @@ -1616812283935 ,112.5729738,26.89461385,64.0457077,170.9523756,171.8343735,4.9374275,0.044676626,1620000000000 ,1620000000000 ,1620000000000 ,1616812283920 -1616812283946 ,112.5729739,26.89461341,64.0473938,170.878391,171.7355493,4.934639,0.044656668,1620000000000 ,1620000000000 ,1620000000000 ,1616812283930 -1616812283962 ,112.572974,26.89461297,64.0490799,170.8024939,171.6570434,4.930738,0.044624604,1620000000000 ,1620000000000 ,1620000000000 ,1616812283940 -1616812283966 ,112.572974,26.89461253,64.05078888,170.7277443,171.5828302,4.926352,0.044588894,1620000000000 ,1620000000000 ,1620000000000 ,1616812283950 -1616812283976 ,112.5729741,26.89461209,64.05255127,170.6516014,171.5106565,4.9223485,0.044555994,1620000000000 ,1620000000000 ,1620000000000 ,1616812283960 -1616812283987 ,112.5729742,26.89461165,64.05436707,170.5759502,171.4299832,4.9189553,0.044526346,1620000000000 ,1620000000000 ,1620000000000 ,1616812283970 -1616812283998 ,112.5729742,26.89461121,64.05623627,170.5008727,171.348325,4.9157524,0.044501084,1620000000000 ,1620000000000 ,1620000000000 ,1616812283980 -1616812284006 ,112.5729743,26.89461077,64.05817413,170.4263417,171.2693668,4.9121003,0.044472063,1620000000000 ,1620000000000 ,1620000000000 ,1616812283990 -1616812284022 ,112.5729744,26.89461033,64.06012726,170.35192,171.1872421,4.9100075,0.044452694,1620000000000 ,1620000000000 ,1620000000000 ,1616812284000 -1616812284030 ,112.5729744,26.89460989,64.0620575,170.2775802,171.1162409,4.908508,0.044440961,1620000000000 ,1620000000000 ,1620000000000 ,1616812284010 -1616812284036 ,112.5729745,26.89460945,64.06394196,170.2036776,171.0475254,4.9064064,0.044426422,1620000000000 ,1620000000000 ,1620000000000 ,1616812284020 -1616812284046 ,112.5729746,26.89460901,64.0658493,170.1278078,170.965589,4.901954,0.044397468,1620000000000 ,1620000000000 ,1620000000000 ,1616812284030 -1616812284057 ,112.5729746,26.89460857,64.06782532,170.0524572,170.8856124,4.89729,0.044358368,1620000000000 ,1620000000000 ,1620000000000 ,1616812284040 -1616812284067 ,112.5729747,26.89460813,64.06987762,169.9779261,170.8209378,4.8933997,0.044325511,1620000000000 ,1620000000000 ,1620000000000 ,1616812284050 -1616812284077 ,112.5729748,26.8946077,64.07198334,169.9041874,170.7591427,4.889136,0.044289874,1620000000000 ,1620000000000 ,1620000000000 ,1616812284060 -1616812284087 ,112.5729749,26.89460726,64.0741272,169.8277166,170.6879533,4.885297,0.044259959,1620000000000 ,1620000000000 ,1620000000000 ,1616812284070 -1616812284097 ,112.5729749,26.89460682,64.07630157,169.7505355,170.6189994,4.88176,0.044232385,1620000000000 ,1620000000000 ,1620000000000 ,1616812284080 -1616812284109 ,112.572975,26.89460639,64.0785141,169.6758132,170.5433287,4.8790374,0.044209147,1620000000000 ,1620000000000 ,1620000000000 ,1616812284090 -1616812284117 ,112.5729751,26.89460595,64.08075714,169.603823,170.4553884,4.877562,0.044198371,1620000000000 ,1620000000000 ,1620000000000 ,1616812284100 -1616812284130 ,112.5729752,26.89460552,64.08301544,169.5291008,170.380684,4.875707,0.044187409,1620000000000 ,1620000000000 ,1620000000000 ,1616812284110 -1616812284139 ,112.5729752,26.89460508,64.08531189,169.453996,170.2942931,4.8726068,0.044168782,1620000000000 ,1620000000000 ,1620000000000 ,1616812284120 -1616812284148 ,112.5729753,26.89460465,64.08763123,169.3798748,170.2038445,4.868771,0.044137574,1620000000000 ,1620000000000 ,1620000000000 ,1616812284130 -1616812284159 ,112.5729754,26.89460421,64.08995056,169.3050432,170.1333381,4.8672185,0.044122207,1620000000000 ,1620000000000 ,1620000000000 ,1616812284140 -1616812284169 ,112.5729755,26.89460378,64.09220886,169.2313045,170.0360181,4.8664565,0.044117793,1620000000000 ,1620000000000 ,1620000000000 ,1616812284150 -1616812284177 ,112.5729755,26.89460334,64.0943985,169.156391,169.9428372,4.8661065,0.044118302,1620000000000 ,1620000000000 ,1620000000000 ,1616812284160 -1616812284200 ,112.5729756,26.89460291,64.0965271,169.0815048,169.8463644,4.8644514,0.044109721,1620000000000 ,1620000000000 ,1620000000000 ,1616812284170 -1616812284204 ,112.5729757,26.89460247,64.09861755,169.0076841,169.7441698,4.863559,0.044101674,1620000000000 ,1620000000000 ,1620000000000 ,1616812284180 -1616812284208 ,112.5729758,26.89460204,64.10066223,168.9362403,169.6719128,4.8646145,0.044111117,1620000000000 ,1620000000000 ,1620000000000 ,1616812284190 -1616812284218 ,112.5729758,26.89460161,64.10198975,168.8870357,169.3501675,4.8666787,0.043682982,1620000000000 ,1620000000000 ,1620000000000 ,1616812284200 -1616812284229 ,112.5729759,26.89460119,64.10250854,168.8162202,169.0595362,4.867554,0.04324978,1620000000000 ,1620000000000 ,1620000000000 ,1616812284210 -1616812284238 ,112.572976,26.89460076,64.10293579,168.7440935,168.9697717,4.868199,0.043259381,1620000000000 ,1620000000000 ,1620000000000 ,1616812284220 -1616812284248 ,112.5729761,26.89460034,64.10330963,168.6723491,168.8781716,4.8686414,0.043268123,1620000000000 ,1620000000000 ,1620000000000 ,1616812284230 -1616812284259 ,112.5729762,26.89459991,64.10364532,168.6015884,168.8087525,4.8675666,0.043263346,1620000000000 ,1620000000000 ,1620000000000 ,1616812284240 -1616812284269 ,112.5729763,26.89459949,64.10394287,168.5329313,168.7228666,4.8673344,0.04326252,1620000000000 ,1620000000000 ,1620000000000 ,1616812284250 -1616812284278 ,112.5729764,26.89459906,64.1042099,168.461952,168.6675902,4.8673515,0.043265843,1620000000000 ,1620000000000 ,1620000000000 ,1616812284260 -1616812284289 ,112.5729764,26.89459864,64.10443878,168.3904536,168.5939417,4.868938,0.043279373,1620000000000 ,1620000000000 ,1620000000000 ,1616812284270 -1616812284299 ,112.5729765,26.89459822,64.10457611,168.320813,168.4951212,4.8711257,0.043299095,1620000000000 ,1620000000000 ,1620000000000 ,1616812284280 -1616812284309 ,112.5729766,26.89459779,64.104599,168.2490413,168.3992782,4.874077,0.043326824,1620000000000 ,1620000000000 ,1620000000000 ,1616812284290 -1616812284321 ,112.5729767,26.89459737,64.10447693,168.1799198,168.2858317,4.876469,0.04335038,1620000000000 ,1620000000000 ,1620000000000 ,1616812284300 -1616812284331 ,112.5729768,26.89459694,64.10421753,168.1086946,168.1663387,4.878134,0.043367168,1620000000000 ,1620000000000 ,1620000000000 ,1616812284310 -1616812284341 ,112.5729769,26.89459652,64.10382843,168.0392726,168.0608004,4.879757,0.043382559,1620000000000 ,1620000000000 ,1620000000000 ,1616812284320 -1616812284349 ,112.572977,26.89459609,64.103302,167.970315,167.9355786,4.8822527,0.043404914,1620000000000 ,1620000000000 ,1620000000000 ,1616812284330 -1616812284360 ,112.5729771,26.89459567,64.1026535,167.9015486,167.7948032,4.8836017,0.043420036,1620000000000 ,1620000000000 ,1620000000000 ,1616812284340 -1616812284369 ,112.5729772,26.89459525,64.10189056,167.8324818,167.6676134,4.8851323,0.043435462,1620000000000 ,1620000000000 ,1620000000000 ,1616812284350 -1616812284380 ,112.5729772,26.89459482,64.10103607,167.763852,167.5408851,4.887104,0.043453732,1620000000000 ,1620000000000 ,1620000000000 ,1616812284360 -1616812284393 ,112.5729773,26.8945944,64.10009003,167.6941295,167.4126819,4.890255,0.043479527,1620000000000 ,1620000000000 ,1620000000000 ,1616812284370 -1616812284401 ,112.5729774,26.89459397,64.0990448,167.6288602,167.2865313,4.893168,0.04350808,1620000000000 ,1620000000000 ,1620000000000 ,1616812284380 -1616812284411 ,112.5729775,26.89459355,64.09791565,167.5605036,167.1554305,4.89668,0.043542678,1620000000000 ,1620000000000 ,1620000000000 ,1616812284390 -1616812284420 ,112.5729776,26.89459312,64.09671021,167.4940869,167.0342225,4.8994126,0.043571009,1620000000000 ,1620000000000 ,1620000000000 ,1616812284400 -1616812284432 ,112.5729777,26.8945927,64.09547424,167.427916,166.9235819,4.9022217,0.04359774,1620000000000 ,1620000000000 ,1620000000000 ,1616812284410 -1616812284440 ,112.5729778,26.89459227,64.09422302,167.3614173,166.8318333,4.9042697,0.04362382,1620000000000 ,1620000000000 ,1620000000000 ,1616812284420 -1616812284451 ,112.5729779,26.89459185,64.09296417,167.2948093,166.7544502,4.905813,0.043641278,1620000000000 ,1620000000000 ,1620000000000 ,1616812284430 -1616812284462 ,112.572978,26.89459142,64.09170532,167.2312885,166.6666736,4.907551,0.043660989,1620000000000 ,1620000000000 ,1620000000000 ,1616812284440 -1616812284472 ,112.5729781,26.89459099,64.09107971,167.1670301,166.8333446,4.9110513,0.04412576,1620000000000 ,1620000000000 ,1620000000000 ,1616812284450 -1616812284481 ,112.5729782,26.89459056,64.09107971,167.1007226,167.0030707,4.91548,0.044606978,1620000000000 ,1620000000000 ,1620000000000 ,1616812284460 -1616812284491 ,112.5729783,26.89459012,64.09104919,167.0357539,166.9283529,4.921934,0.044661924,1620000000000 ,1620000000000 ,1620000000000 ,1616812284470 -1616812284503 ,112.5729784,26.89458969,64.0909729,166.9721511,166.857218,4.9297705,0.044732044,1620000000000 ,1620000000000 ,1620000000000 ,1616812284480 -1616812284513 ,112.5729785,26.89458925,64.09085083,166.9087397,166.7782712,4.9380975,0.044806128,1620000000000 ,1620000000000 ,1620000000000 ,1616812284490 -1616812284522 ,112.5729786,26.89458882,64.09072113,166.8466123,166.6875982,4.9459476,0.044884971,1620000000000 ,1620000000000 ,1620000000000 ,1616812284500 -1616812284534 ,112.5729787,26.89458838,64.09057617,166.7845668,166.6090602,4.95214,0.044946474,1620000000000 ,1620000000000 ,1620000000000 ,1616812284510 -1616812284543 ,112.5729788,26.89458794,64.0904007,166.7254993,166.5535802,4.957934,0.045001048,1620000000000 ,1620000000000 ,1620000000000 ,1616812284520 -1616812284556 ,112.572979,26.8945875,64.09020996,166.6637818,166.4983984,4.964482,0.045059226,1620000000000 ,1620000000000 ,1620000000000 ,1616812284530 -1616812284563 ,112.5729791,26.89458706,64.09003448,166.6034575,166.4390475,4.9724345,0.04513151,1620000000000 ,1620000000000 ,1620000000000 ,1616812284540 -1616812284572 ,112.5729792,26.89458663,64.08987427,166.5424503,166.3520865,4.9817495,0.045217465,1620000000000 ,1620000000000 ,1620000000000 ,1616812284550 -1616812284582 ,112.5729793,26.89458618,64.08969879,166.4832189,166.2737985,4.9910626,0.045304016,1620000000000 ,1620000000000 ,1620000000000 ,1616812284560 -1616812284593 ,112.5729794,26.89458574,64.0894928,166.4248617,166.20989,5.0004454,0.045391845,1620000000000 ,1620000000000 ,1620000000000 ,1616812284570 -1616812284603 ,112.5729795,26.8945853,64.08927917,166.3696738,166.133812,5.0089526,0.045472399,1620000000000 ,1620000000000 ,1620000000000 ,1616812284580 -1616812284614 ,112.5729796,26.89458486,64.08909607,166.3122456,166.0423579,5.017194,0.045555136,1620000000000 ,1620000000000 ,1620000000000 ,1616812284590 -1616812284622 ,112.5729797,26.89458442,64.08895111,166.2575221,165.9500175,5.0248694,0.045627702,1620000000000 ,1620000000000 ,1620000000000 ,1616812284600 -1616812284636 ,112.5729798,26.89458397,64.08883667,166.2035636,165.867394,5.0322814,0.0457007,1620000000000 ,1620000000000 ,1620000000000 ,1616812284610 -1616812284644 ,112.5729799,26.89458353,64.08874512,166.1530475,165.7891671,5.0407033,0.045779219,1620000000000 ,1620000000000 ,1620000000000 ,1616812284620 -1616812284655 ,112.57298,26.89458309,64.08866119,166.1034877,165.7191465,5.050511,0.045866491,1620000000000 ,1620000000000 ,1620000000000 ,1616812284630 -1616812284667 ,112.5729802,26.89458264,64.0885849,166.0559496,165.6390744,5.0609455,0.045964206,1620000000000 ,1620000000000 ,1620000000000 ,1616812284640 -1616812284676 ,112.5729803,26.8945822,64.08852386,166.0088213,165.5585289,5.0713334,0.046062965,1620000000000 ,1620000000000 ,1620000000000 ,1616812284660 -1616812284685 ,112.5729805,26.8945813,64.08842468,165.9180344,165.4642558,5.0916133,0.092413081,1620000000000 ,1620000000000 ,1620000000000 ,1616812284670 -1616812284694 ,112.5729806,26.89458085,64.08837891,165.8739114,165.4083654,5.100714,0.046338983,1620000000000 ,1620000000000 ,1620000000000 ,1616812284680 -1616812284706 ,112.5729806,26.89458085,64.08837891,165.8739114,-400,5.100714,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812284690 -1616812284715 ,112.5729809,26.89457995,64.08831787,165.7890804,165.3624669,5.1220193,0.092966733,1620000000000 ,1620000000000 ,1620000000000 ,1616812284700 -1616812284723 ,112.572981,26.8945795,64.08827972,165.7488916,165.3246219,5.1324377,0.046629878,1620000000000 ,1620000000000 ,1620000000000 ,1616812284710 -1616812284735 ,112.5729811,26.89457905,64.08823395,165.7055335,165.3100514,5.1428537,0.046724063,1620000000000 ,1620000000000 ,1620000000000 ,1616812284720 -1616812284746 ,112.5729812,26.8945786,64.0881958,165.663924,165.3135131,5.153356,0.046822045,1620000000000 ,1620000000000 ,1620000000000 ,1616812284730 -1616812284756 ,112.5729813,26.89457814,64.08815765,165.6220686,165.3091555,5.1655173,0.046929141,1620000000000 ,1620000000000 ,1620000000000 ,1616812284740 -1616812284768 ,112.5729815,26.89457769,64.08811951,165.5793116,165.3058142,5.17677,0.047036006,1620000000000 ,1620000000000 ,1620000000000 ,1616812284750 -1616812284782 ,112.5729816,26.89457723,64.08808136,165.5379207,165.2956284,5.186624,0.047128396,1620000000000 ,1620000000000 ,1620000000000 ,1616812284760 -1616812284786 ,112.5729817,26.89457678,64.08805084,165.4962019,165.2668459,5.1963067,0.047219617,1620000000000 ,1620000000000 ,1620000000000 ,1616812284770 -1616812284797 ,112.5729818,26.89457632,64.08798218,165.4561497,165.2363061,5.207017,0.047312753,1620000000000 ,1620000000000 ,1620000000000 ,1616812284780 -1616812284810 ,112.5729819,26.89457586,64.08787537,165.4160701,165.206631,5.2189183,0.047419751,1620000000000 ,1620000000000 ,1620000000000 ,1616812284790 -1616812284817 ,112.5729821,26.8945754,64.08774567,165.377302,165.150528,5.2310457,0.047532294,1620000000000 ,1620000000000 ,1620000000000 ,1616812284800 -1616812284831 ,112.5729822,26.89457494,64.0876236,165.3383426,165.0809376,5.24187,0.047634817,1620000000000 ,1620000000000 ,1620000000000 ,1616812284810 -1616812284836 ,112.5729823,26.89457448,64.08750916,165.3006399,165.0034687,5.2540145,0.04774445,1620000000000 ,1620000000000 ,1620000000000 ,1616812284820 -1616812284845 ,112.5729824,26.89457402,64.0873642,165.264276,164.9466883,5.2654366,0.047852955,1620000000000 ,1620000000000 ,1620000000000 ,1616812284830 -1616812284855 ,112.5729826,26.89457355,64.0871582,165.2290322,164.8788725,5.277837,0.0479619,1620000000000 ,1620000000000 ,1620000000000 ,1616812284840 -1616812284867 ,112.5729827,26.89457309,64.08686066,165.1943622,164.7956176,5.2889047,0.048067133,1620000000000 ,1620000000000 ,1620000000000 ,1616812284850 -1616812284875 ,112.5729828,26.89457262,64.08649445,165.1620417,164.7080186,5.299375,0.048165528,1620000000000 ,1620000000000 ,1620000000000 ,1616812284860 -1616812284886 ,112.5729829,26.89457216,64.0860672,165.1315791,164.6283417,5.3087215,0.048250458,1620000000000 ,1620000000000 ,1620000000000 ,1616812284870 -1616812284897 ,112.5729831,26.89457169,64.08560944,165.1009525,164.550344,5.3202405,0.048352747,1620000000000 ,1620000000000 ,1620000000000 ,1616812284880 -1616812284906 ,112.5729832,26.89457123,64.08512115,165.0719925,164.4723388,5.3307495,0.048451833,1620000000000 ,1620000000000 ,1620000000000 ,1616812284890 -1616812284916 ,112.5729833,26.89457076,64.0845871,165.0438248,164.4088435,5.3427043,0.048559058,1620000000000 ,1620000000000 ,1620000000000 ,1616812284900 -1616812284927 ,112.5729835,26.89457029,64.08401489,165.017351,164.3350861,5.352933,0.048656685,1620000000000 ,1620000000000 ,1620000000000 ,1616812284910 -1616812284938 ,112.5729836,26.89456982,64.08338928,164.9914509,164.2736284,5.364364,0.048758683,1620000000000 ,1620000000000 ,1620000000000 ,1616812284920 -1616812284948 ,112.5729837,26.89456935,64.08269501,164.9651957,164.1974039,5.3769984,0.048868988,1620000000000 ,1620000000000 ,1620000000000 ,1616812284930 -1616812284961 ,112.5729839,26.89456888,64.08192444,164.9398147,164.1361141,5.3895473,0.048984774,1620000000000 ,1620000000000 ,1620000000000 ,1616812284940 -1616812284969 ,112.572984,26.89456841,64.08109283,164.9164828,164.0890833,5.4003205,0.049086269,1620000000000 ,1620000000000 ,1620000000000 ,1616812284950 -1616812284979 ,112.5729841,26.89456793,64.08023071,164.8924678,164.0360719,5.410117,0.049180948,1620000000000 ,1620000000000 ,1620000000000 ,1616812284960 -1616812284992 ,112.5729843,26.89456746,64.07938385,164.8692725,163.99013,5.4206247,0.049272067,1620000000000 ,1620000000000 ,1620000000000 ,1616812284970 -1616812284998 ,112.5729844,26.89456699,64.0785141,164.8477437,163.95275,5.4330153,0.049383177,1620000000000 ,1620000000000 ,1620000000000 ,1616812284980 -1616812285007 ,112.5729845,26.89456651,64.07759094,164.8263243,163.930862,5.445922,0.049498665,1620000000000 ,1620000000000 ,1620000000000 ,1616812284990 -1616812285018 ,112.5729847,26.89456603,64.07661438,164.800916,163.9092695,5.458574,0.049614338,1620000000000 ,1620000000000 ,1620000000000 ,1616812285000 -1616812285027 ,112.5729848,26.89456556,64.07559204,164.7770649,163.8765794,5.4721594,0.049735121,1620000000000 ,1620000000000 ,1620000000000 ,1616812285010 -1616812285038 ,112.5729849,26.89456508,64.07453156,164.7529407,163.8564242,5.4822726,0.049836995,1620000000000 ,1620000000000 ,1620000000000 ,1616812285020 -1616812285048 ,112.5729851,26.8945646,64.07343292,164.7296088,163.8163286,5.492652,0.049927279,1620000000000 ,1620000000000 ,1620000000000 ,1616812285030 -1616812285057 ,112.5729852,26.89456412,64.0723114,164.7055392,163.7950102,5.5039754,0.050031135,1620000000000 ,1620000000000 ,1620000000000 ,1616812285040 -1616812285068 ,112.5729854,26.89456364,64.07116699,164.6808959,163.774826,5.5163107,0.050140336,1620000000000 ,1620000000000 ,1620000000000 ,1616812285050 -1616812285080 ,112.5729855,26.89456315,64.07000732,164.6574273,163.7421146,5.5283494,0.050250333,1620000000000 ,1620000000000 ,1620000000000 ,1616812285060 -1616812285089 ,112.5729856,26.89456267,64.0688324,164.6335217,163.7044076,5.5394945,0.050354418,1620000000000 ,1620000000000 ,1620000000000 ,1616812285070 -1616812285099 ,112.5729858,26.89456219,64.06769562,164.6092609,163.6634555,5.5485783,0.05044768,1620000000000 ,1620000000000 ,1620000000000 ,1616812285080 -1616812285109 ,112.5729859,26.8945617,64.06660461,164.5850273,163.6217857,5.5585685,0.050537888,1620000000000 ,1620000000000 ,1620000000000 ,1616812285090 -1616812285118 ,112.5729861,26.89456122,64.06557465,164.5607938,163.5890996,5.5691037,0.050633583,1620000000000 ,1620000000000 ,1620000000000 ,1616812285100 -1616812285127 ,112.5729862,26.89456073,64.06459045,164.5345386,163.5629171,5.5802956,0.050738503,1620000000000 ,1620000000000 ,1620000000000 ,1616812285110 -1616812285138 ,112.5729864,26.89456024,64.06365204,164.5071632,163.5418504,5.591092,0.050840178,1620000000000 ,1620000000000 ,1620000000000 ,1616812285120 -1616812285148 ,112.5729865,26.89455975,64.06278992,164.4819461,163.501779,5.6006327,0.050936066,1620000000000 ,1620000000000 ,1620000000000 ,1616812285130 -1616812285157 ,112.5729867,26.89455926,64.06201935,164.4572755,163.4393391,5.609411,0.05101858,1620000000000 ,1620000000000 ,1620000000000 ,1616812285140 -1616812285169 ,112.5729868,26.89455877,64.06131744,164.4325502,163.4125969,5.6195917,0.051114035,1620000000000 ,1620000000000 ,1620000000000 ,1616812285150 -1616812285179 ,112.5729869,26.89455828,64.06066132,164.4080981,163.3938035,5.6307154,0.051214074,1620000000000 ,1620000000000 ,1620000000000 ,1616812285160 -1616812285189 ,112.5729871,26.89455779,64.06006622,164.3832909,163.37431,5.640326,0.051308218,1620000000000 ,1620000000000 ,1620000000000 ,1616812285170 -1616812285198 ,112.5729872,26.8945573,64.05953217,164.3606693,163.3582073,5.65062,0.051402153,1620000000000 ,1620000000000 ,1620000000000 ,1616812285180 -1616812285210 ,112.5729874,26.89455681,64.05905914,164.3353429,163.3373705,5.661123,0.051503185,1620000000000 ,1620000000000 ,1620000000000 ,1616812285190 -1616812285219 ,112.5729875,26.89455631,64.05895233,164.2883786,162.6579225,5.7043443,0.052271385,1620000000000 ,1620000000000 ,1620000000000 ,1616812285200 -1616812285228 ,112.5729877,26.8945558,64.05940247,164.2644456,161.6843371,5.7138658,0.053369318,1620000000000 ,1620000000000 ,1620000000000 ,1616812285210 -1616812285239 ,112.5729879,26.89455529,64.05990601,164.2397203,161.686417,5.7246637,0.053467587,1620000000000 ,1620000000000 ,1620000000000 ,1616812285220 -1616812285249 ,112.572988,26.89455478,64.06045532,164.2159786,161.6632028,5.735579,0.053568467,1620000000000 ,1620000000000 ,1620000000000 ,1616812285230 -1616812285258 ,112.5729882,26.89455428,64.06100464,164.1934663,161.6286355,5.74723,0.053679168,1620000000000 ,1620000000000 ,1620000000000 ,1616812285240 -1616812285269 ,112.5729884,26.89455376,64.06153107,164.1699158,161.6056762,5.7576694,0.05377615,1620000000000 ,1620000000000 ,1620000000000 ,1616812285250 -1616812285279 ,112.5729886,26.89455325,64.0620575,164.149234,161.5829555,5.766825,0.053865893,1620000000000 ,1620000000000 ,1620000000000 ,1616812285260 -1616812285289 ,112.5729887,26.89455274,64.0626297,164.1297816,161.5516611,5.776582,0.053951522,1620000000000 ,1620000000000 ,1620000000000 ,1616812285270 -1616812285299 ,112.5729889,26.89455223,64.06323242,164.110739,161.4949083,5.787195,0.054058086,1620000000000 ,1620000000000 ,1620000000000 ,1616812285280 -1616812285310 ,112.5729891,26.89455172,64.06385803,164.0911773,161.4266478,5.796298,0.054144739,1620000000000 ,1620000000000 ,1620000000000 ,1616812285290 -1616812285320 ,112.5729892,26.8945512,64.0644989,164.0750308,161.3853241,5.8062,0.05424009,1620000000000 ,1620000000000 ,1620000000000 ,1616812285300 -1616812285330 ,112.5729894,26.89455069,64.06513214,164.0597585,161.3430337,5.817244,0.054340285,1620000000000 ,1620000000000 ,1620000000000 ,1616812285310 -1616812285339 ,112.5729896,26.89455017,64.06572723,164.0467538,161.2885486,5.828436,0.054445034,1620000000000 ,1620000000000 ,1620000000000 ,1616812285320 -1616812285349 ,112.5729898,26.89454965,64.06632996,164.0345141,161.2400054,5.839091,0.054549009,1620000000000 ,1620000000000 ,1620000000000 ,1616812285330 -1616812285359 ,112.5729899,26.89454914,64.06697845,164.0220831,161.1936459,5.8466206,0.054629192,1620000000000 ,1620000000000 ,1620000000000 ,1616812285340 -1616812285369 ,112.5729901,26.89454862,64.06769562,164.0098981,161.1397044,5.8563385,0.054718579,1620000000000 ,1620000000000 ,1620000000000 ,1616812285350 -1616812285380 ,112.5729903,26.8945481,64.06843567,164.000691,161.1067654,5.8665624,0.054815931,1620000000000 ,1620000000000 ,1620000000000 ,1616812285360 -1616812285391 ,112.5729905,26.89454758,64.06916809,163.9916751,161.080035,5.875902,0.054903985,1620000000000 ,1620000000000 ,1620000000000 ,1616812285370 -1616812285401 ,112.5729907,26.89454706,64.06991577,163.9852548,161.0378665,5.8851357,0.05499191,1620000000000 ,1620000000000 ,1620000000000 ,1616812285380 -1616812285410 ,112.5729908,26.89454654,64.07068634,163.9793535,160.9866632,5.894182,0.055082296,1620000000000 ,1620000000000 ,1620000000000 ,1616812285390 -1616812285422 ,112.572991,26.89454602,64.07147217,163.973097,160.949514,5.905083,0.055179209,1620000000000 ,1620000000000 ,1620000000000 ,1616812285400 -1616812285433 ,112.5729912,26.8945455,64.07226563,163.9661302,160.9308021,5.916883,0.055287817,1620000000000 ,1620000000000 ,1620000000000 ,1616812285410 -1616812285440 ,112.5729914,26.89454497,64.07302856,163.9590815,160.9207096,5.9274125,0.055389175,1620000000000 ,1620000000000 ,1620000000000 ,1616812285420 -1616812285450 ,112.5729916,26.89454445,64.07377625,163.9514317,160.8968816,5.9366,0.055478626,1620000000000 ,1620000000000 ,1620000000000 ,1616812285430 -1616812285462 ,112.5729917,26.89454392,64.07448578,163.9439731,160.8688817,5.9452887,0.05555962,1620000000000 ,1620000000000 ,1620000000000 ,1616812285440 -1616812285475 ,112.5729919,26.8945434,64.07484436,163.9398477,161.4395486,5.9538636,0.054945929,1620000000000 ,1620000000000 ,1620000000000 ,1616812285450 -1616812285482 ,112.5729921,26.89454289,64.07481384,163.9358862,162.0333972,5.963795,0.054346831,1620000000000 ,1620000000000 ,1620000000000 ,1616812285460 -1616812285491 ,112.5729923,26.89454237,64.07472992,163.9326896,162.0022881,5.974737,0.054444579,1620000000000 ,1620000000000 ,1620000000000 ,1616812285470 -1616812285501 ,112.5729924,26.89454185,64.07460022,163.9299849,161.9581431,5.984673,0.054542296,1620000000000 ,1620000000000 ,1620000000000 ,1616812285480 -1616812285512 ,112.5729926,26.89454133,64.07443237,163.9273894,161.9363234,5.9927745,0.054617395,1620000000000 ,1620000000000 ,1620000000000 ,1616812285490 -1616812285521 ,112.5729928,26.89454081,64.07424164,163.9245207,161.9261797,6.000315,0.054687497,1620000000000 ,1620000000000 ,1620000000000 ,1616812285500 -1616812285531 ,112.5729929,26.89454029,64.07403564,163.9215428,161.9128812,6.010207,0.054774512,1620000000000 ,1620000000000 ,1620000000000 ,1616812285510 -1616812285542 ,112.5729931,26.89453977,64.07385254,163.9185921,161.9033589,6.0202436,0.054870183,1620000000000 ,1620000000000 ,1620000000000 ,1616812285520 -1616812285551 ,112.5729933,26.89453925,64.07368469,163.9171441,161.8794952,6.0292025,0.054957148,1620000000000 ,1620000000000 ,1620000000000 ,1616812285530 -1616812285561 ,112.5729934,26.89453872,64.07350159,163.9172261,161.8816637,6.0367785,0.055027037,1620000000000 ,1620000000000 ,1620000000000 ,1616812285540 -1616812285572 ,112.5729936,26.8945382,64.07328796,163.915177,161.9133869,6.045393,0.05510203,1620000000000 ,1620000000000 ,1620000000000 ,1616812285550 -1616812285584 ,112.5729938,26.89453768,64.07302856,163.9146853,161.9401658,6.054863,0.055182398,1620000000000 ,1620000000000 ,1620000000000 ,1616812285560 -1616812285592 ,112.572994,26.89453715,64.07273865,163.9114614,161.9673799,6.0635843,0.055264422,1620000000000 ,1620000000000 ,1620000000000 ,1616812285570 -1616812285602 ,112.5729941,26.89453662,64.07245636,163.9103413,161.9934729,6.0703444,0.055331378,1620000000000 ,1620000000000 ,1620000000000 ,1616812285580 -1616812285612 ,112.5729943,26.8945361,64.07221222,163.9068169,162.0236428,6.0745783,0.055374218,1620000000000 ,1620000000000 ,1620000000000 ,1616812285590 -1616812285622 ,112.5729945,26.89453557,64.07197571,163.9041941,162.0709794,6.079775,0.055416155,1620000000000 ,1620000000000 ,1620000000000 ,1616812285600 -1616812285633 ,112.5729946,26.89453504,64.07172394,163.8991124,162.1193156,6.0862556,0.055469851,1620000000000 ,1620000000000 ,1620000000000 ,1616812285610 -1616812285642 ,112.5729948,26.89453451,64.07150269,163.8950143,162.1643153,6.09225,0.055526421,1620000000000 ,1620000000000 ,1620000000000 ,1616812285620 -1616812285656 ,112.572995,26.89453398,64.07132721,163.8893043,162.2108658,6.0978465,0.05557858,1620000000000 ,1620000000000 ,1620000000000 ,1616812285630 -1616812285663 ,112.5729951,26.89453345,64.07122803,163.8821736,162.2440093,6.1036983,0.055633688,1620000000000 ,1620000000000 ,1620000000000 ,1616812285640 -1616812285673 ,112.5729953,26.89453292,64.07118225,163.8768733,162.2772607,6.1084,0.055679795,1620000000000 ,1620000000000 ,1620000000000 ,1616812285650 -1616812285682 ,112.5729955,26.89453239,64.07115173,163.8726113,162.3157488,6.1124845,0.055718755,1620000000000 ,1620000000000 ,1620000000000 ,1616812285660 -1616812285692 ,112.5729957,26.89453186,64.07110596,163.8672018,162.349199,6.116575,0.055755049,1620000000000 ,1620000000000 ,1620000000000 ,1616812285670 -1616812285703 ,112.5729958,26.89453133,64.07108307,163.8625846,162.3661543,6.121156,0.0557953,1620000000000 ,1620000000000 ,1620000000000 ,1616812285680 -1616812285714 ,112.572996,26.8945308,64.07106781,163.8554265,162.3634218,6.127674,0.055853121,1620000000000 ,1620000000000 ,1620000000000 ,1616812285690 -1616812285723 ,112.5729962,26.89453026,64.07104492,163.8510279,162.3568744,6.132561,0.055903468,1620000000000 ,1620000000000 ,1620000000000 ,1616812285700 -1616812285732 ,112.5729963,26.89452973,64.07098389,163.8466839,162.3691099,6.136751,0.055940969,1620000000000 ,1620000000000 ,1620000000000 ,1616812285710 -1616812285744 ,112.5729965,26.8945292,64.0708847,163.8409465,162.3623397,6.142193,0.055986562,1620000000000 ,1620000000000 ,1620000000000 ,1616812285720 -1616812285753 ,112.5729967,26.89452866,64.070755,163.8373675,162.3405887,6.1491075,0.056047544,1620000000000 ,1620000000000 ,1620000000000 ,1616812285730 -1616812285763 ,112.5729968,26.89452813,64.07060242,163.835619,162.3189421,6.1560965,0.056113912,1620000000000 ,1620000000000 ,1620000000000 ,1616812285740 -1616812285773 ,112.572997,26.89452759,64.07041168,163.8354277,162.3127845,6.1615486,0.056166841,1620000000000 ,1620000000000 ,1620000000000 ,1616812285760 -1616812285783 ,112.5729972,26.89452706,64.07021332,163.834772,162.3016718,6.1674967,0.056218933,1620000000000 ,1620000000000 ,1620000000000 ,1616812285770 -1616812285795 ,112.5729974,26.89452652,64.06999207,163.8375041,162.2791086,6.173145,0.056275072,1620000000000 ,1620000000000 ,1620000000000 ,1616812285780 -1616812285803 ,112.5729975,26.89452599,64.06972504,163.842012,162.2640883,6.1787624,0.056325522,1620000000000 ,1620000000000 ,1620000000000 ,1616812285780 -1616812285814 ,112.5729979,26.89452491,64.06903076,163.8500717,162.220086,6.1903987,0.112803905,1620000000000 ,1620000000000 ,1620000000000 ,1616812285800 -1616812285831 ,112.5729979,26.89452491,64.06903076,163.8500717,-400,6.1903987,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812285810 -1616812285836 ,112.5729982,26.89452384,64.06816101,163.8638413,162.12297,6.202914,0.113044527,1620000000000 ,1620000000000 ,1620000000000 ,1616812285820 -1616812285847 ,112.5729984,26.8945233,64.06761932,163.8727752,162.0523057,6.2083983,0.056599535,1620000000000 ,1620000000000 ,1620000000000 ,1616812285830 -1616812285855 ,112.5729984,26.8945233,64.06761932,163.8727752,-400,6.2083983,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812285840 -1616812285866 ,112.5729986,26.89452276,64.06698608,163.8854247,161.9746101,6.2141747,0.056651739,1620000000000 ,1620000000000 ,1620000000000 ,1616812285840 -1616812285874 ,112.5729989,26.89452168,64.06523895,163.9156688,161.8882731,6.2292404,0.113488603,1620000000000 ,1620000000000 ,1620000000000 ,1616812285860 -1616812285885 ,112.5729991,26.89452114,64.06408691,163.9342742,161.8301216,6.2355523,0.056831832,1620000000000 ,1620000000000 ,1620000000000 ,1616812285870 -1616812285895 ,112.5729991,26.89452114,64.06408691,163.9342742,-400,6.2355523,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812285880 -1616812285906 ,112.5729995,26.89452006,64.06149292,163.9733156,161.7818523,6.2466335,0.113814661,1620000000000 ,1620000000000 ,1620000000000 ,1616812285890 -1616812285915 ,112.5729996,26.89451952,64.06018066,163.9950629,161.7277018,6.2505035,0.056972759,1620000000000 ,1620000000000 ,1620000000000 ,1616812285900 -1616812285925 ,112.5729998,26.89451898,64.05886078,164.0182309,161.716915,6.255267,0.057012464,1620000000000 ,1620000000000 ,1620000000000 ,1616812285910 -1616812285935 ,112.573,26.89451843,64.05748749,164.0424098,161.7249043,6.261761,0.057067548,1620000000000 ,1620000000000 ,1620000000000 ,1616812285920 -1616812285945 ,112.5730002,26.89451789,64.05600739,164.068064,161.7588198,6.2680836,0.057118328,1620000000000 ,1620000000000 ,1620000000000 ,1616812285930 -1616812285954 ,112.5730003,26.89451735,64.05446625,164.0931718,161.7985454,6.27409,0.057167587,1620000000000 ,1620000000000 ,1620000000000 ,1616812285940 -1616812285965 ,112.5730005,26.89451681,64.052948,164.1176512,161.8046701,6.2780924,0.057210418,1620000000000 ,1620000000000 ,1620000000000 ,1616812285950 -1616812285976 ,112.5730007,26.89451626,64.05148315,164.1457096,161.8209774,6.2805614,0.057237359,1620000000000 ,1620000000000 ,1620000000000 ,1616812285960 -1616812285986 ,112.5730009,26.89451572,64.05007172,164.1739319,161.8778175,6.284009,0.057264482,1620000000000 ,1620000000000 ,1620000000000 ,1616812285970 -1616812285995 ,112.5730011,26.89451517,64.04867554,164.201963,161.9298956,6.2885695,0.05730117,1620000000000 ,1620000000000 ,1620000000000 ,1616812285980 -1616812286007 ,112.5730011,26.89451517,64.04867554,164.201963,-400,6.2885695,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812285990 -1616812286020 ,112.5730014,26.89451408,64.04592133,164.2655657,161.9851962,6.3010154,0.114748292,1620000000000 ,1620000000000 ,1620000000000 ,1616812286000 -1616812286027 ,112.5730016,26.89451354,64.04454803,164.2995254,162.0577834,6.304062,0.057440404,1620000000000 ,1620000000000 ,1620000000000 ,1616812286010 -1616812286036 ,112.5730018,26.89451299,64.04320526,164.3321464,162.1399569,6.3059444,0.057454694,1620000000000 ,1620000000000 ,1620000000000 ,1616812286020 -1616812286048 ,112.5730019,26.89451244,64.04193115,164.3668165,162.220439,6.3088703,0.057475225,1620000000000 ,1620000000000 ,1620000000000 ,1616812286030 -1616812286057 ,112.5730021,26.89451189,64.04072571,164.4018143,162.2881529,6.3136272,0.057516028,1620000000000 ,1620000000000 ,1620000000000 ,1616812286040 -1616812286066 ,112.5730023,26.89451134,64.03959656,164.4339162,162.35637,6.317891,0.057554927,1620000000000 ,1620000000000 ,1620000000000 ,1616812286050 -1616812286079 ,112.5730025,26.8945108,64.03850555,164.4674934,162.4108853,6.3216615,0.05758747,1620000000000 ,1620000000000 ,1620000000000 ,1616812286060 -1616812286088 ,112.5730026,26.89451025,64.03743744,164.5018903,162.4559591,6.3261595,0.057625881,1620000000000 ,1620000000000 ,1620000000000 ,1616812286070 -1616812286098 ,112.5730028,26.8945097,64.03636169,164.5386913,162.504354,6.332242,0.05767536,1620000000000 ,1620000000000 ,1620000000000 ,1616812286080 -1616812286109 ,112.573003,26.89450915,64.0352478,164.5766399,162.557049,6.33806,0.057723862,1620000000000 ,1620000000000 ,1620000000000 ,1616812286090 -1616812286117 ,112.5730032,26.89450859,64.03411102,164.6151621,162.6023299,6.3408055,0.057752333,1620000000000 ,1620000000000 ,1620000000000 ,1616812286100 -1616812286127 ,112.5730033,26.89450804,64.03295135,164.6568809,162.6390307,6.342922,0.057770694,1620000000000 ,1620000000000 ,1620000000000 ,1616812286110 -1616812286138 ,112.5730035,26.89450749,64.03179932,164.6992281,162.6863242,6.3446603,0.057784628,1620000000000 ,1620000000000 ,1620000000000 ,1616812286120 -1616812286146 ,112.5730037,26.89450694,64.03064728,164.7429413,162.7428302,6.3474646,0.057802595,1620000000000 ,1620000000000 ,1620000000000 ,1616812286130 -1616812286157 ,112.5730038,26.89450639,64.02950287,164.7873102,162.8077376,6.351378,0.057831778,1620000000000 ,1620000000000 ,1620000000000 ,1616812286140 -1616812286167 ,112.573004,26.89450583,64.02840424,164.8319797,162.8701141,6.3560705,0.057873337,1620000000000 ,1620000000000 ,1620000000000 ,1616812286150 -1616812286176 ,112.5730042,26.89450528,64.02735901,164.8756109,162.9319571,6.3613,0.057918757,1620000000000 ,1620000000000 ,1620000000000 ,1616812286160 -1616812286187 ,112.5730044,26.89450473,64.02633667,164.9202803,163.0063291,6.3660054,0.057959244,1620000000000 ,1620000000000 ,1620000000000 ,1616812286170 -1616812286197 ,112.5730045,26.89450417,64.02529907,164.9647859,163.0707518,6.3689404,0.057986484,1620000000000 ,1620000000000 ,1620000000000 ,1616812286180 -1616812286208 ,112.5730047,26.89450362,64.0242157,165.0107394,163.1283828,6.371537,0.058004329,1620000000000 ,1620000000000 ,1620000000000 ,1616812286190 -1616812286217 ,112.5730049,26.89450306,64.02368164,165.0653262,162.4901108,6.3994308,0.058513438,1620000000000 ,1620000000000 ,1620000000000 ,1616812286200 -1616812286228 ,112.5730051,26.8945025,64.02402496,165.1131649,161.6245218,6.402436,0.059292531,1620000000000 ,1620000000000 ,1620000000000 ,1616812286210 -1616812286238 ,112.5730052,26.89450193,64.02433777,165.162151,161.6709331,6.4054685,0.059316555,1620000000000 ,1620000000000 ,1620000000000 ,1616812286220 -1616812286251 ,112.5730054,26.89450137,64.02462006,165.2105361,161.7079162,6.4089103,0.059341164,1620000000000 ,1620000000000 ,1620000000000 ,1616812286230 -1616812286258 ,112.5730056,26.8945008,64.02485657,165.2579103,161.7476287,6.4133997,0.059374528,1620000000000 ,1620000000000 ,1620000000000 ,1616812286240 -1616812286268 ,112.5730058,26.89450024,64.02505493,165.3054211,161.7889525,6.4177275,0.059410907,1620000000000 ,1620000000000 ,1620000000000 ,1616812286250 -1616812286279 ,112.573006,26.89449968,64.02524567,165.3517024,161.81704,6.420432,0.059438038,1620000000000 ,1620000000000 ,1620000000000 ,1616812286260 -1616812286288 ,112.5730062,26.89449911,64.02546692,165.3999509,161.8431895,6.421912,0.059452614,1620000000000 ,1620000000000 ,1620000000000 ,1616812286270 -1616812286298 ,112.5730064,26.89449855,64.02577209,165.4491009,161.8715048,6.4226584,0.059462526,1620000000000 ,1620000000000 ,1620000000000 ,1616812286280 -1616812286310 ,112.5730065,26.89449798,64.02615356,165.5008191,161.9038457,6.423253,0.059471764,1620000000000 ,1620000000000 ,1620000000000 ,1616812286290 -1616812286320 ,112.5730067,26.89449742,64.02657318,165.5530837,161.943622,6.42411,0.059475708,1620000000000 ,1620000000000 ,1620000000000 ,1616812286300 -1616812286329 ,112.5730069,26.89449685,64.02696991,165.603873,161.991314,6.4262486,0.059487888,1620000000000 ,1620000000000 ,1620000000000 ,1616812286310 -1616812286338 ,112.5730071,26.89449628,64.02736664,165.6557551,162.0558101,6.429395,0.059510057,1620000000000 ,1620000000000 ,1620000000000 ,1616812286320 -1616812286349 ,112.5730073,26.89449572,64.02780151,165.7076646,162.1262847,6.4341483,0.059545732,1620000000000 ,1620000000000 ,1620000000000 ,1616812286330 -1616812286358 ,112.5730075,26.89449515,64.02825165,165.7592188,162.198901,6.439419,0.059588525,1620000000000 ,1620000000000 ,1620000000000 ,1616812286340 -1616812286369 ,112.5730076,26.89449458,64.02870178,165.8121118,162.273286,6.4429774,0.059619604,1620000000000 ,1620000000000 ,1620000000000 ,1616812286350 -1616812286379 ,112.5730078,26.89449401,64.02915192,165.8650868,162.3410759,6.4442773,0.059632148,1620000000000 ,1620000000000 ,1620000000000 ,1616812286360 -1616812286389 ,112.573008,26.89449344,64.02962494,165.9163405,162.4159208,6.4452634,0.059637003,1620000000000 ,1620000000000 ,1620000000000 ,1616812286370 -1616812286400 ,112.5730082,26.89449288,64.03010559,165.967321,162.4992236,6.447164,0.059643859,1620000000000 ,1620000000000 ,1620000000000 ,1616812286380 -1616812286408 ,112.5730084,26.89449231,64.0305481,166.0198315,162.6037892,6.4508147,0.059663635,1620000000000 ,1620000000000 ,1620000000000 ,1616812286390 -1616812286419 ,112.5730085,26.89449174,64.03093719,166.0714404,162.7185523,6.4552073,0.059692215,1620000000000 ,1620000000000 ,1620000000000 ,1616812286400 -1616812286430 ,112.5730087,26.89449117,64.03134155,166.1233225,162.8095867,6.4575524,0.059712785,1620000000000 ,1620000000000 ,1620000000000 ,1616812286410 -1616812286439 ,112.5730089,26.8944906,64.03177643,166.1764341,162.8794522,6.460645,0.059733319,1620000000000 ,1620000000000 ,1620000000000 ,1616812286420 -1616812286449 ,112.5730091,26.89449002,64.03222656,166.2302287,162.9680129,6.46374,0.059757462,1620000000000 ,1620000000000 ,1620000000000 ,1616812286430 -1616812286460 ,112.5730092,26.89448945,64.03264618,166.2848702,163.065123,6.4657683,0.059769165,1620000000000 ,1620000000000 ,1620000000000 ,1616812286440 -1616812286471 ,112.5730094,26.89448888,64.03246307,166.3393478,163.8358142,6.4683247,0.059306265,1620000000000 ,1620000000000 ,1620000000000 ,1616812286450 -1616812286480 ,112.5730096,26.89448832,64.0317688,166.3932243,164.577927,6.4695005,0.058851935,1620000000000 ,1620000000000 ,1620000000000 ,1616812286460 -1616812286491 ,112.5730097,26.89448775,64.03112793,166.4469916,164.6036102,6.472274,0.058873931,1620000000000 ,1620000000000 ,1620000000000 ,1616812286470 -1616812286499 ,112.5730099,26.89448718,64.03044891,166.5019882,164.6497383,6.4768686,0.058908982,1620000000000 ,1620000000000 ,1620000000000 ,1616812286480 -1616812286510 ,112.57301,26.89448661,64.02967834,166.5581051,164.7195688,6.4808545,0.058939212,1620000000000 ,1620000000000 ,1620000000000 ,1616812286490 -1616812286521 ,112.5730102,26.89448604,64.02881622,166.6153421,164.790825,6.485066,0.058969992,1620000000000 ,1620000000000 ,1620000000000 ,1616812286500 -1616812286531 ,112.5730103,26.89448547,64.02792358,166.6718414,164.8185543,6.4871726,0.058992582,1620000000000 ,1620000000000 ,1620000000000 ,1616812286510 -1616812286545 ,112.5730105,26.8944849,64.02703857,166.7297887,164.8438896,6.488752,0.059005537,1620000000000 ,1620000000000 ,1620000000000 ,1616812286520 -1616812286550 ,112.5730106,26.89448433,64.02619171,166.7860148,164.9056189,6.4909883,0.059022819,1620000000000 ,1620000000000 ,1620000000000 ,1616812286530 -1616812286560 ,112.5730108,26.89448376,64.02539825,166.8466123,164.9888253,6.493759,0.059047737,1620000000000 ,1620000000000 ,1620000000000 ,1616812286540 -1616812286569 ,112.5730109,26.89448319,64.02467346,166.9045596,165.0548527,6.496558,0.059076167,1620000000000 ,1620000000000 ,1620000000000 ,1616812286550 -1616812286580 ,112.5730111,26.89448262,64.0240097,166.9635997,165.0912162,6.498572,0.059093645,1620000000000 ,1620000000000 ,1620000000000 ,1616812286560 -1616812286592 ,112.5730113,26.89448205,64.02333069,167.0219022,165.1257447,6.501263,0.059117112,1620000000000 ,1620000000000 ,1620000000000 ,1616812286570 -1616812286601 ,112.5730114,26.89448148,64.0225296,167.0812702,165.156739,6.505602,0.059144805,1620000000000 ,1620000000000 ,1620000000000 ,1616812286580 -1616812286611 ,112.5730116,26.89448091,64.02158356,167.1373871,165.2089134,6.510415,0.059179145,1620000000000 ,1620000000000 ,1620000000000 ,1616812286590 -1616812286621 ,112.5730117,26.89448033,64.02056122,167.1937771,165.2543412,6.513332,0.059202828,1620000000000 ,1620000000000 ,1620000000000 ,1616812286600 -1616812286631 ,112.5730119,26.89447976,64.01951599,167.2506589,165.2726563,6.515602,0.059223299,1620000000000 ,1620000000000 ,1620000000000 ,1616812286610 -1616812286642 ,112.573012,26.89447919,64.01844788,167.3088795,165.2838173,6.517308,0.059239346,1620000000000 ,1620000000000 ,1620000000000 ,1616812286620 -1616812286652 ,112.5730122,26.89447861,64.01734924,167.3683021,165.2985328,6.5203304,0.059260398,1620000000000 ,1620000000000 ,1620000000000 ,1616812286630 -1616812286662 ,112.5730123,26.89447804,64.01621246,167.4267139,165.3134851,6.525354,0.059299179,1620000000000 ,1620000000000 ,1620000000000 ,1616812286640 -1616812286671 ,112.5730125,26.89447747,64.01498413,167.4854262,165.3356016,6.53182,0.059350097,1620000000000 ,1620000000000 ,1620000000000 ,1616812286650 -1616812286681 ,112.5730126,26.89447689,64.01364899,167.5443297,165.3764499,6.5375037,0.059396443,1620000000000 ,1620000000000 ,1620000000000 ,1616812286660 -1616812286692 ,112.5730128,26.89447632,64.01226807,167.6022497,165.409811,6.540596,0.059426923,1620000000000 ,1620000000000 ,1620000000000 ,1616812286670 -1616812286702 ,112.5730129,26.89447574,64.01093292,167.658913,165.4308487,6.544158,0.059458612,1620000000000 ,1620000000000 ,1620000000000 ,1616812286680 -1616812286716 ,112.5730131,26.89447517,64.00964355,167.7163685,165.465266,6.5485425,0.059497167,1620000000000 ,1620000000000 ,1620000000000 ,1616812286690 -1616812286722 ,112.5730132,26.89447459,64.0083313,167.7735236,165.5147316,6.553169,0.059535379,1620000000000 ,1620000000000 ,1620000000000 ,1616812286700 -1616812286732 ,112.5730134,26.89447401,64.0069809,167.8293945,165.5774782,6.556461,0.059563614,1620000000000 ,1620000000000 ,1620000000000 ,1616812286710 -1616812286741 ,112.5730135,26.89447343,64.00564575,167.8842,165.6268613,6.5589366,0.059586267,1620000000000 ,1620000000000 ,1620000000000 ,1616812286720 -1616812286752 ,112.5730136,26.89447286,64.00437927,167.9379399,165.6731747,6.5636077,0.059621986,1620000000000 ,1620000000000 ,1620000000000 ,1616812286730 -1616812286761 ,112.5730138,26.89447228,64.00313568,167.9918711,165.7410841,6.5700474,0.059675821,1620000000000 ,1620000000000 ,1620000000000 ,1616812286740 -1616812286773 ,112.5730139,26.8944717,64.00184631,168.0475781,165.8300539,6.576979,0.059730524,1620000000000 ,1620000000000 ,1620000000000 ,1616812286750 -1616812286784 ,112.5730141,26.89447112,64.00045013,168.0993509,165.9187741,6.5830255,0.059779041,1620000000000 ,1620000000000 ,1620000000000 ,1616812286760 -1616812286793 ,112.5730142,26.89447054,63.99900055,168.148337,166.000549,6.586884,0.059810107,1620000000000 ,1620000000000 ,1620000000000 ,1616812286770 -1616812286802 ,112.5730144,26.89446996,63.99753571,168.1947277,166.0885445,6.5908256,0.059839269,1620000000000 ,1620000000000 ,1620000000000 ,1616812286780 -1616812286820 ,112.5730145,26.89446938,63.99605179,168.2402987,166.1896211,6.5947924,0.059869777,1620000000000 ,1620000000000 ,1620000000000 ,1616812286790 -1616812286823 ,112.5730147,26.89446879,63.99452972,168.287345,166.3108948,6.6005907,0.059906744,1620000000000 ,1620000000000 ,1620000000000 ,1616812286800 -1616812286832 ,112.5730148,26.89446821,63.99298859,168.3310856,166.4281991,6.605653,0.059949077,1620000000000 ,1620000000000 ,1620000000000 ,1616812286810 -1616812286844 ,112.5730149,26.89446763,63.99145889,168.371411,166.5137836,6.6118875,0.0599964,1620000000000 ,1620000000000 ,1620000000000 ,1616812286820 -1616812286852 ,112.5730151,26.89446704,63.98991776,168.4092503,166.5977617,6.6186743,0.060054854,1620000000000 ,1620000000000 ,1620000000000 ,1616812286830 -1616812286863 ,112.5730152,26.89446646,63.98833084,168.4441389,166.6879398,6.625032,0.060103313,1620000000000 ,1620000000000 ,1620000000000 ,1616812286840 -1616812286873 ,112.5730154,26.89446587,63.98674774,168.4794646,166.8100018,6.629142,0.060140869,1620000000000 ,1620000000000 ,1620000000000 ,1616812286850 -1616812286883 ,112.5730155,26.89446529,63.98524094,168.5130418,166.8996774,6.632978,0.06017461,1620000000000 ,1620000000000 ,1620000000000 ,1616812286860 -1616812286894 ,112.5730156,26.8944647,63.98383713,168.5440782,166.957355,6.6374145,0.060215105,1620000000000 ,1620000000000 ,1620000000000 ,1616812286880 -1616812286903 ,112.5730158,26.89446411,63.98247147,168.5754424,167.0019387,6.642067,0.0602553,1620000000000 ,1620000000000 ,1620000000000 ,1616812286880 -1616812286914 ,112.5730159,26.89446353,63.98106766,168.605386,167.0575994,6.6490216,0.060306859,1620000000000 ,1620000000000 ,1620000000000 ,1616812286890 -1616812286924 ,112.573016,26.89446294,63.9796257,168.630767,167.1281221,6.655629,0.060365107,1620000000000 ,1620000000000 ,1620000000000 ,1616812286910 -1616812286934 ,112.5730162,26.89446235,63.97818375,168.6578145,167.1802331,6.6624975,0.060421995,1620000000000 ,1620000000000 ,1620000000000 ,1616812286920 -1616812286943 ,112.5730164,26.89446117,63.97539139,168.7113085,167.2385835,6.671493,0.120985324,1620000000000 ,1620000000000 ,1620000000000 ,1616812286930 -1616812286962 ,112.5730164,26.89446117,63.97539139,168.7113085,-400,6.671493,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812286940 -1616812286968 ,112.5730167,26.89445999,63.97268295,168.7656495,167.2683581,6.682478,0.121145624,1620000000000 ,1620000000000 ,1620000000000 ,1616812286950 -1616812286974 ,112.5730168,26.8944594,63.97128677,168.7926698,167.3044716,6.690232,0.060664849,1620000000000 ,1620000000000 ,1620000000000 ,1616812286960 -1616812286988 ,112.5730168,26.8944594,63.97128677,168.7926698,-400,6.690232,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812286970 -1616812287001 ,112.5730171,26.89445821,63.96843338,168.8438142,167.3276999,6.706411,0.121553201,1620000000000 ,1620000000000 ,1620000000000 ,1616812286980 -1616812287004 ,112.5730171,26.89445821,63.96843338,168.8438142,-400,6.706411,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812286980 -1616812287016 ,112.5730174,26.89445702,63.9658165,168.8951499,167.3331054,6.715211,0.121773135,1620000000000 ,1620000000000 ,1620000000000 ,1616812287000 -1616812287025 ,112.5730175,26.89445643,63.96459198,168.9213505,167.3471125,6.7193613,0.060943151,1620000000000 ,1620000000000 ,1620000000000 ,1616812287010 -1616812287035 ,112.5730176,26.89445583,63.96337128,168.944983,167.3517256,6.725474,0.060993027,1620000000000 ,1620000000000 ,1620000000000 ,1616812287020 -1616812287046 ,112.5730178,26.89445524,63.96217728,168.9711563,167.3657692,6.732395,0.061056692,1620000000000 ,1620000000000 ,1620000000000 ,1616812287030 -1616812287054 ,112.5730179,26.89445464,63.96101761,168.9946794,167.3649362,6.740513,0.061128067,1620000000000 ,1620000000000 ,1620000000000 ,1616812287040 -1616812287070 ,112.573018,26.89445404,63.95988846,169.0199511,167.3525753,6.7490144,0.061206465,1620000000000 ,1620000000000 ,1620000000000 ,1616812287050 -1616812287078 ,112.5730182,26.89445344,63.95877075,169.0478456,167.3397395,6.755789,0.061273304,1620000000000 ,1620000000000 ,1620000000000 ,1616812287060 -1616812287087 ,112.5730183,26.89445285,63.95768356,169.0757128,167.3221746,6.7602954,0.061323905,1620000000000 ,1620000000000 ,1620000000000 ,1616812287070 -1616812287100 ,112.5730184,26.89445225,63.95663071,169.102132,167.2949178,6.764384,0.061362434,1620000000000 ,1620000000000 ,1620000000000 ,1616812287080 -1616812287106 ,112.5730186,26.89445165,63.95555878,169.1311466,167.2858032,6.771044,0.061415756,1620000000000 ,1620000000000 ,1620000000000 ,1616812287090 -1616812287117 ,112.5730187,26.89445105,63.95441437,169.1576751,167.3097371,6.777696,0.061473227,1620000000000 ,1620000000000 ,1620000000000 ,1616812287100 -1616812287126 ,112.5730188,26.89445045,63.95321274,169.185952,167.3312788,6.7840266,0.061527716,1620000000000 ,1620000000000 ,1620000000000 ,1616812287110 -1616812287136 ,112.573019,26.89444985,63.95204163,169.2123439,167.3396784,6.7908626,0.061589021,1620000000000 ,1620000000000 ,1620000000000 ,1616812287120 -1616812287147 ,112.5730191,26.89444925,63.95094681,169.2371785,167.3472113,6.7984657,0.061660389,1620000000000 ,1620000000000 ,1620000000000 ,1616812287130 -1616812287155 ,112.5730193,26.89444864,63.94987106,169.2652915,167.3756968,6.80668,0.061732291,1620000000000 ,1620000000000 ,1620000000000 ,1616812287140 -1616812287166 ,112.5730194,26.89444804,63.94874954,169.2936505,167.4366366,6.8140163,0.061796423,1620000000000 ,1620000000000 ,1620000000000 ,1616812287150 -1616812287176 ,112.5730195,26.89444744,63.94760513,169.3199057,167.5057534,6.819436,0.061846752,1620000000000 ,1620000000000 ,1620000000000 ,1616812287160 -1616812287186 ,112.5730197,26.89444683,63.94652939,169.3481007,167.5380375,6.8239894,0.061890664,1620000000000 ,1620000000000 ,1620000000000 ,1616812287170 -1616812287197 ,112.5730198,26.89444623,63.94555283,169.3775525,167.5699697,6.8282847,0.061933234,1620000000000 ,1620000000000 ,1620000000000 ,1616812287180 -1616812287206 ,112.5730199,26.89444562,63.94467926,169.4089714,167.6128615,6.831508,0.061968744,1620000000000 ,1620000000000 ,1620000000000 ,1616812287190 -1616812287218 ,112.5730201,26.89444502,63.94496918,169.418561,167.7396702,6.8099594,0.061612669,1620000000000 ,1620000000000 ,1620000000000 ,1616812287200 -1616812287226 ,112.5730202,26.89444442,63.94665909,169.4516737,168.1363614,6.8152304,0.061042811,1620000000000 ,1620000000000 ,1620000000000 ,1616812287210 -1616812287236 ,112.5730203,26.89444382,63.94836426,169.4850051,168.1918046,6.822632,0.061103585,1620000000000 ,1620000000000 ,1620000000000 ,1616812287220 -1616812287246 ,112.5730204,26.89444323,63.95006943,169.5181451,168.2555051,6.830419,0.061174051,1620000000000 ,1620000000000 ,1620000000000 ,1616812287230 -1616812287257 ,112.5730205,26.89444263,63.95182419,169.5500011,168.3014332,6.8359904,0.061228852,1620000000000 ,1620000000000 ,1620000000000 ,1616812287240 -1616812287266 ,112.5730207,26.89444203,63.9536705,169.58295,168.3280419,6.8405857,0.061276904,1620000000000 ,1620000000000 ,1620000000000 ,1616812287250 -1616812287276 ,112.5730208,26.89444143,63.95559311,169.6179479,168.3545016,6.844691,0.061317774,1620000000000 ,1620000000000 ,1620000000000 ,1616812287260 -1616812287286 ,112.5730209,26.89444082,63.95753098,169.655951,168.3882571,6.849179,0.061358088,1620000000000 ,1620000000000 ,1620000000000 ,1616812287270 -1616812287297 ,112.573021,26.89444022,63.95941544,169.6956208,168.4274094,6.854708,0.061401672,1620000000000 ,1620000000000 ,1620000000000 ,1616812287280 -1616812287308 ,112.5730212,26.89443962,63.96123505,169.7353451,168.4791837,6.8623962,0.06146313,1620000000000 ,1620000000000 ,1620000000000 ,1616812287290 -1616812287318 ,112.5730213,26.89443902,63.96302795,169.776299,168.5254099,6.869596,0.061525725,1620000000000 ,1620000000000 ,1620000000000 ,1616812287300 -1616812287330 ,112.5730214,26.89443841,63.96481323,169.818892,168.5648981,6.8760824,0.061585021,1620000000000 ,1620000000000 ,1620000000000 ,1616812287310 -1616812287338 ,112.5730215,26.89443781,63.96660614,169.8626872,168.6105338,6.881615,0.061637739,1620000000000 ,1620000000000 ,1620000000000 ,1616812287320 -1616812287348 ,112.5730217,26.8944372,63.96841049,169.9064824,168.6548163,6.886773,0.06168231,1620000000000 ,1620000000000 ,1620000000000 ,1616812287330 -1616812287361 ,112.5730218,26.8944366,63.97020721,169.9509879,168.7115326,6.8929863,0.06173431,1620000000000 ,1620000000000 ,1620000000000 ,1616812287340 -1616812287371 ,112.5730219,26.89443599,63.97193909,169.9959578,168.7533847,6.899299,0.061786805,1620000000000 ,1620000000000 ,1620000000000 ,1616812287350 -1616812287378 ,112.573022,26.89443539,63.97357178,170.0424578,168.8074774,6.906411,0.061841659,1620000000000 ,1620000000000 ,1620000000000 ,1616812287360 -1616812287387 ,112.5730221,26.89443478,63.97512817,170.0863076,168.8679644,6.9130473,0.061897627,1620000000000 ,1620000000000 ,1620000000000 ,1616812287370 -1616812287398 ,112.5730223,26.89443417,63.97665024,170.1331354,168.9196791,6.919845,0.061955499,1620000000000 ,1620000000000 ,1620000000000 ,1616812287380 -1616812287408 ,112.5730224,26.89443356,63.97815323,170.182504,168.9597401,6.926815,0.062014049,1620000000000 ,1620000000000 ,1620000000000 ,1616812287390 -1616812287418 ,112.5730225,26.89443295,63.97963333,170.232419,169.0033693,6.9333434,0.062071794,1620000000000 ,1620000000000 ,1620000000000 ,1616812287400 -1616812287428 ,112.5730226,26.89443234,63.98110962,170.282334,169.0349619,6.939976,0.062130483,1620000000000 ,1620000000000 ,1620000000000 ,1616812287410 -1616812287438 ,112.5730227,26.89443173,63.9825592,170.3340522,169.0668656,6.946732,0.06218812,1620000000000 ,1620000000000 ,1620000000000 ,1616812287420 -1616812287449 ,112.5730228,26.89443112,63.98396301,170.3871638,169.1075672,6.953914,0.062247874,1620000000000 ,1620000000000 ,1620000000000 ,1616812287430 -1616812287460 ,112.573023,26.89443051,63.9853096,170.4418599,169.1468506,6.960694,0.062305771,1620000000000 ,1620000000000 ,1620000000000 ,1616812287440 -1616812287471 ,112.5730231,26.89442989,63.98553467,170.495873,169.1034919,6.9679976,0.062750781,1620000000000 ,1620000000000 ,1620000000000 ,1616812287450 -1616812287480 ,112.5730232,26.89442927,63.98465729,170.5519626,169.0555894,6.976165,0.063203243,1620000000000 ,1620000000000 ,1620000000000 ,1616812287460 -1616812287489 ,112.5730233,26.89442865,63.98374176,170.6083253,169.0856164,6.984191,0.063273932,1620000000000 ,1620000000000 ,1620000000000 ,1616812287470 -1616812287499 ,112.5730234,26.89442803,63.98280716,170.6641143,169.1314284,6.9918265,0.063340221,1620000000000 ,1620000000000 ,1620000000000 ,1616812287480 -1616812287509 ,112.5730236,26.89442741,63.98187637,170.7220616,169.1880111,6.9985843,0.063401724,1620000000000 ,1620000000000 ,1620000000000 ,1616812287490 -1616812287519 ,112.5730237,26.89442678,63.9809761,170.7815662,169.24492,7.0036755,0.063449359,1620000000000 ,1620000000000 ,1620000000000 ,1616812287500 -1616812287529 ,112.5730238,26.89442616,63.98009491,170.8410981,169.3074719,7.009158,0.063494488,1620000000000 ,1620000000000 ,1620000000000 ,1616812287510 -1616812287540 ,112.5730239,26.89442554,63.97921371,170.9033075,169.36529,7.016346,0.06355298,1620000000000 ,1620000000000 ,1620000000000 ,1616812287520 -1616812287551 ,112.573024,26.89442491,63.97828293,170.9674293,169.4254979,7.024361,0.063617794,1620000000000 ,1620000000000 ,1620000000000 ,1616812287530 -1616812287559 ,112.5730241,26.89442428,63.97723389,171.0285732,169.5066359,7.0338535,0.063692869,1620000000000 ,1620000000000 ,1620000000000 ,1616812287540 -1616812287570 ,112.5730243,26.89442366,63.97606659,171.0887881,169.6049293,7.0456223,0.063782973,1620000000000 ,1620000000000 ,1620000000000 ,1616812287550 -1616812287579 ,112.5730244,26.89442303,63.97486496,171.1457246,169.6931283,7.0545382,0.063870796,1620000000000 ,1620000000000 ,1620000000000 ,1616812287560 -1616812287591 ,112.5730245,26.8944224,63.97370148,171.2036719,169.7743691,7.0595994,0.063917746,1620000000000 ,1620000000000 ,1620000000000 ,1616812287570 -1616812287600 ,112.5730246,26.89442177,63.97262573,171.2651163,169.8493911,7.070528,0.063998558,1620000000000 ,1620000000000 ,1620000000000 ,1616812287580 -1616812287611 ,112.5730247,26.89442114,63.97161484,171.3299211,169.9289624,7.076321,0.064077211,1620000000000 ,1620000000000 ,1620000000000 ,1616812287590 -1616812287622 ,112.5730248,26.89442051,63.97067261,171.3933053,170.0188465,7.07672,0.064081575,1620000000000 ,1620000000000 ,1620000000000 ,1616812287600 -1616812287633 ,112.5730249,26.89441988,63.96975708,171.4580281,170.0721434,7.0795946,0.064101404,1620000000000 ,1620000000000 ,1620000000000 ,1616812287610 -1616812287641 ,112.573025,26.89441924,63.968853,171.5226144,170.1654017,7.0841074,0.06413606,1620000000000 ,1620000000000 ,1620000000000 ,1616812287620 -1616812287651 ,112.5730252,26.89441861,63.9679451,171.5842774,170.3004421,7.0929375,0.064197146,1620000000000 ,1620000000000 ,1620000000000 ,1616812287630 -1616812287660 ,112.5730253,26.89441798,63.96713257,171.6474703,170.3926974,7.1009665,0.064275691,1620000000000 ,1620000000000 ,1620000000000 ,1616812287640 -1616812287672 ,112.5730254,26.89441734,63.96647263,171.7098709,170.4417427,7.106288,0.064333405,1620000000000 ,1620000000000 ,1620000000000 ,1616812287650 -1616812287682 ,112.5730255,26.89441671,63.96595001,171.7723534,170.4923059,7.1145587,0.064405451,1620000000000 ,1620000000000 ,1620000000000 ,1616812287660 -1616812287690 ,112.5730256,26.89441607,63.96549606,171.8372676,170.5413523,7.117524,0.064447251,1620000000000 ,1620000000000 ,1620000000000 ,1616812287670 -1616812287702 ,112.5730257,26.89441544,63.96508789,171.9035477,170.617153,7.119662,0.064465404,1620000000000 ,1620000000000 ,1620000000000 ,1616812287680 -1616812287714 ,112.5730258,26.8944148,63.9647522,171.9706475,170.7138077,7.1234684,0.064496309,1620000000000 ,1620000000000 ,1620000000000 ,1616812287690 -1616812287722 ,112.5730259,26.89441416,63.96448517,172.0392499,170.8104495,7.129713,0.064546302,1620000000000 ,1620000000000 ,1620000000000 ,1616812287700 -1616812287732 ,112.573026,26.89441352,63.96426392,172.1069507,170.8916053,7.1374598,0.064612837,1620000000000 ,1620000000000 ,1620000000000 ,1616812287710 -1616812287741 ,112.5730261,26.89441289,63.96405792,172.1746789,170.9639219,7.145109,0.064682094,1620000000000 ,1620000000000 ,1620000000000 ,1616812287720 -1616812287753 ,112.5730262,26.89441225,63.96386719,172.24462,171.0421005,7.1507664,0.06473774,1620000000000 ,1620000000000 ,1620000000000 ,1616812287730 -1616812287761 ,112.5730263,26.89441161,63.96372986,172.3136323,171.1109897,7.154619,0.06477324,1620000000000 ,1620000000000 ,1620000000000 ,1616812287740 -1616812287771 ,112.5730264,26.89441097,63.96370316,172.3826991,171.1664491,7.157971,0.064808957,1620000000000 ,1620000000000 ,1620000000000 ,1616812287750 -1616812287781 ,112.5730265,26.89441032,63.96379852,172.4524764,171.2272881,7.1622005,0.064847747,1620000000000 ,1620000000000 ,1620000000000 ,1616812287760 -1616812287793 ,112.5730266,26.89440968,63.96397781,172.5210788,171.2976951,7.170264,0.064913034,1620000000000 ,1620000000000 ,1620000000000 ,1616812287770 -1616812287802 ,112.5730267,26.89440904,63.96419144,172.5893807,171.3609885,7.178512,0.064989906,1620000000000 ,1620000000000 ,1620000000000 ,1616812287780 -1616812287811 ,112.5730268,26.8944084,63.96439743,172.6588574,171.4287088,7.184836,0.06504861,1620000000000 ,1620000000000 ,1620000000000 ,1616812287790 -1616812287822 ,112.5730269,26.89440775,63.96461868,172.7291537,171.5055293,7.1915836,0.065109623,1620000000000 ,1620000000000 ,1620000000000 ,1616812287800 -1616812287833 ,112.573027,26.89440711,63.96485138,172.799286,171.5650022,7.1964116,0.065156906,1620000000000 ,1620000000000 ,1620000000000 ,1616812287810 -1616812287842 ,112.5730271,26.89440646,63.96509171,172.8702107,171.6232026,7.202227,0.065205521,1620000000000 ,1620000000000 ,1620000000000 ,1616812287820 -1616812287851 ,112.5730272,26.89440582,63.96530914,172.9425288,171.6879759,7.207998,0.065256534,1620000000000 ,1620000000000 ,1620000000000 ,1616812287830 -1616812287864 ,112.5730273,26.89440517,63.96548462,173.015202,171.7602767,7.2142057,0.065307646,1620000000000 ,1620000000000 ,1620000000000 ,1616812287840 -1616812287875 ,112.5730274,26.89440452,63.96560669,173.0853617,171.8442648,7.220066,0.065357626,1620000000000 ,1620000000000 ,1620000000000 ,1616812287850 -1616812287883 ,112.5730274,26.89440388,63.96567154,173.1559312,171.9144067,7.227145,0.065413523,1620000000000 ,1620000000000 ,1620000000000 ,1616812287860 -1616812287893 ,112.5730275,26.89440323,63.9656868,173.2274296,171.9811222,7.234308,0.065475836,1620000000000 ,1620000000000 ,1620000000000 ,1616812287870 -1616812287903 ,112.5730276,26.89440258,63.96567535,173.2969336,172.0451156,7.240358,0.065530528,1620000000000 ,1620000000000 ,1620000000000 ,1616812287880 -1616812287914 ,112.5730277,26.89440193,63.96567535,173.3647984,172.108271,7.2469444,0.065587068,1620000000000 ,1620000000000 ,1620000000000 ,1616812287890 -1616812287923 ,112.5730278,26.89440128,63.96569824,173.4349034,172.1841266,7.252935,0.065643528,1620000000000 ,1620000000000 ,1620000000000 ,1616812287900 -1616812287932 ,112.5730279,26.89440063,63.96572876,173.5066204,172.2484334,7.2581286,0.065690605,1620000000000 ,1620000000000 ,1620000000000 ,1616812287910 -1616812287943 ,112.573028,26.89439998,63.96575928,173.5782828,172.2988066,7.2622204,0.06572863,1620000000000 ,1620000000000 ,1620000000000 ,1616812287920 -1616812287953 ,112.5730281,26.89439933,63.96574402,173.6492621,172.3659812,7.268598,0.065776685,1620000000000 ,1620000000000 ,1620000000000 ,1616812287930 -1616812287967 ,112.5730282,26.89439867,63.96555328,173.7255143,172.4154867,7.2745075,0.06582187,1620000000000 ,1620000000000 ,1620000000000 ,1616812287950 -1616812287974 ,112.5730282,26.89439802,63.96502686,173.7975592,172.4280746,7.2906103,0.065930225,1620000000000 ,1620000000000 ,1620000000000 ,1616812287960 -1616812287985 ,112.5730283,26.89439736,63.96414948,173.8646316,172.5540115,7.295283,0.065983592,1620000000000 ,1620000000000 ,1620000000000 ,1616812287970 -1616812287995 ,112.5730284,26.89439671,63.96311951,173.9326057,172.7195738,7.3044586,0.066035841,1620000000000 ,1620000000000 ,1620000000000 ,1616812287970 -1616812288004 ,112.5730285,26.89439605,63.96207047,174.0031752,172.7278635,7.311599,0.066109477,1620000000000 ,1620000000000 ,1620000000000 ,1616812287980 -1616812288016 ,112.5730287,26.89439474,63.96050644,174.1410904,172.7798134,7.320146,0.132371382,1620000000000 ,1620000000000 ,1620000000000 ,1616812288000 -1616812288026 ,112.5730287,26.89439408,63.95988464,174.2101026,172.8990988,7.3225174,0.066229339,1620000000000 ,1620000000000 ,1620000000000 ,1616812288010 -1616812288038 ,112.5730288,26.89439343,63.95913696,174.2783772,173.0075239,7.330386,0.066274567,1620000000000 ,1620000000000 ,1620000000000 ,1616812288020 -1616812288044 ,112.5730289,26.89439277,63.95814514,174.3465151,173.1187832,7.3405204,0.066349753,1620000000000 ,1620000000000 ,1620000000000 ,1616812288030 -1616812288055 ,112.573029,26.89439211,63.95702744,174.4124401,173.2190981,7.3500752,0.066431545,1620000000000 ,1620000000000 ,1620000000000 ,1616812288040 -1616812288065 ,112.5730291,26.89439145,63.95599747,174.4782285,173.2686397,7.3539443,0.066483105,1620000000000 ,1620000000000 ,1620000000000 ,1616812288050 -1616812288075 ,112.5730291,26.89439079,63.9551506,174.5433885,173.3009596,7.3563085,0.066510258,1620000000000 ,1620000000000 ,1620000000000 ,1616812288060 -1616812288088 ,112.5730292,26.89439013,63.95443726,174.6107069,173.3897087,7.360478,0.066546759,1620000000000 ,1620000000000 ,1620000000000 ,1616812288070 -1616812288096 ,112.5730293,26.89438946,63.95373535,174.6819594,173.5019005,7.367156,0.066594835,1620000000000 ,1620000000000 ,1620000000000 ,1616812288080 -1616812288108 ,112.5730294,26.8943888,63.95300293,174.7491411,173.5872946,7.3750377,0.066659784,1620000000000 ,1620000000000 ,1620000000000 ,1616812288090 -1616812288116 ,112.5730294,26.89438814,63.95226669,174.8159131,173.6551363,7.3808064,0.066718944,1620000000000 ,1620000000000 ,1620000000000 ,1616812288100 -1616812288130 ,112.5730295,26.89438747,63.95155334,174.881838,173.7184665,7.387496,0.066773888,1620000000000 ,1620000000000 ,1620000000000 ,1616812288110 -1616812288136 ,112.5730296,26.89438681,63.95088196,174.9489105,173.8119304,7.394176,0.066834517,1620000000000 ,1620000000000 ,1620000000000 ,1616812288120 -1616812288145 ,112.5730297,26.89438615,63.95026779,175.0171851,173.9177046,7.4008255,0.066891965,1620000000000 ,1620000000000 ,1620000000000 ,1616812288130 -1616812288158 ,112.5730297,26.89438548,63.94971848,175.0840663,174.0110985,7.40833,0.066959656,1620000000000 ,1620000000000 ,1620000000000 ,1616812288140 -1616812288165 ,112.5730298,26.89438481,63.94923401,175.1489804,174.088063,7.4118557,0.067000078,1620000000000 ,1620000000000 ,1620000000000 ,1616812288150 -1616812288176 ,112.5730299,26.89438415,63.94878006,175.2157797,174.1606572,7.4169164,0.067040346,1620000000000 ,1620000000000 ,1620000000000 ,1616812288160 -1616812288186 ,112.5730299,26.89438348,63.94836044,175.2827975,174.2757042,7.4223127,0.067088888,1620000000000 ,1620000000000 ,1620000000000 ,1616812288170 -1616812288198 ,112.57303,26.89438281,63.94796753,175.3517004,174.3948101,7.427758,0.067133345,1620000000000 ,1620000000000 ,1620000000000 ,1616812288180 -1616812288206 ,112.5730301,26.89438214,63.94762039,175.4205214,174.4937115,7.4338965,0.06718872,1620000000000 ,1620000000000 ,1620000000000 ,1616812288190 -1616812288219 ,112.5730301,26.89438147,63.94863129,175.5110897,175.3764235,7.441495,0.067385534,1620000000000 ,1620000000000 ,1620000000000 ,1616812288200 -1616812288232 ,112.5730302,26.89438079,63.95127106,175.575594,176.756428,7.4495196,0.067637287,1620000000000 ,1620000000000 ,1620000000000 ,1616812288210 -1616812288238 ,112.5730302,26.89438012,63.95394516,175.6433222,176.8574965,7.455918,0.067702823,1620000000000 ,1620000000000 ,1620000000000 ,1616812288220 -1616812288247 ,112.5730302,26.89437944,63.95661545,175.7109137,176.9600672,7.462577,0.067765091,1620000000000 ,1620000000000 ,1620000000000 ,1616812288230 -1616812288257 ,112.5730303,26.89437876,63.95933914,175.7773851,177.0492084,7.466646,0.067813401,1620000000000 ,1620000000000 ,1620000000000 ,1616812288240 -1616812288268 ,112.5730303,26.89437809,63.96212387,175.8428183,177.1046004,7.469933,0.067844455,1620000000000 ,1620000000000 ,1620000000000 ,1616812288250 -1616812288279 ,112.5730303,26.89437741,63.96492767,175.9076778,177.1571177,7.4765863,0.067899691,1620000000000 ,1620000000000 ,1620000000000 ,1616812288260 -1616812288286 ,112.5730304,26.89437673,63.96770859,175.9721548,177.2277266,7.484871,0.06797331,1620000000000 ,1620000000000 ,1620000000000 ,1616812288270 -1616812288296 ,112.5730304,26.89437605,63.97045517,176.0363313,177.3028544,7.492911,0.068047243,1620000000000 ,1620000000000 ,1620000000000 ,1616812288280 -1616812288306 ,112.5730304,26.89437537,63.97319031,176.1014093,177.3650936,7.4984345,0.068103938,1620000000000 ,1620000000000 ,1620000000000 ,1616812288290 -1616812288319 ,112.5730305,26.89437469,63.97594833,176.1666239,177.4163092,7.503109,0.068149359,1620000000000 ,1620000000000 ,1620000000000 ,1616812288300 -1616812288327 ,112.5730305,26.89437401,63.97878265,176.2325216,177.4368398,7.5090456,0.068202379,1620000000000 ,1620000000000 ,1620000000000 ,1616812288310 -1616812288337 ,112.5730305,26.89437333,63.98165131,176.2972172,177.4781733,7.5166564,0.068270542,1620000000000 ,1620000000000 ,1620000000000 ,1616812288320 -1616812288350 ,112.5730305,26.89437264,63.98449326,176.3636066,177.5387428,7.5244384,0.06834275,1620000000000 ,1620000000000 ,1620000000000 ,1616812288330 -1616812288360 ,112.5730306,26.89437196,63.98727036,176.4291218,177.5943992,7.5296903,0.068396372,1620000000000 ,1620000000000 ,1620000000000 ,1616812288340 -1616812288369 ,112.5730306,26.89437128,63.99004745,176.494473,177.6440616,7.5342093,0.068437665,1620000000000 ,1620000000000 ,1620000000000 ,1616812288350 -1616812288378 ,112.5730306,26.89437059,63.99284744,176.5609717,177.6814208,7.5400653,0.068490366,1620000000000 ,1620000000000 ,1620000000000 ,1616812288360 -1616812288390 ,112.5730307,26.89436991,63.99562073,176.6274431,177.7352386,7.5467134,0.0685506,1620000000000 ,1620000000000 ,1620000000000 ,1616812288370 -1616812288399 ,112.5730307,26.89436922,63.99834061,176.6924392,177.7942886,7.5538616,0.068612311,1620000000000 ,1620000000000 ,1620000000000 ,1616812288380 -1616812288411 ,112.5730307,26.89436853,64.00104523,176.7586101,177.8444156,7.5623317,0.068686291,1620000000000 ,1620000000000 ,1620000000000 ,1616812288390 -1616812288419 ,112.5730307,26.89436785,64.00380707,176.8209287,177.8901043,7.56815,0.068750768,1620000000000 ,1620000000000 ,1620000000000 ,1616812288400 -1616812288430 ,112.5730308,26.89436716,64.00659943,176.8828103,177.9565897,7.5739813,0.068804877,1620000000000 ,1620000000000 ,1620000000000 ,1616812288410 -1616812288440 ,112.5730308,26.89436647,64.00938416,176.9461398,178.0294255,7.5801215,0.068861342,1620000000000 ,1620000000000 ,1620000000000 ,1616812288420 -1616812288450 ,112.5730308,26.89436578,64.01210785,177.0091688,178.1015229,7.5867677,0.068919779,1620000000000 ,1620000000000 ,1620000000000 ,1616812288430 -1616812288458 ,112.5730308,26.89436509,64.01477814,177.0721158,178.1681228,7.5939145,0.06898422,1620000000000 ,1620000000000 ,1620000000000 ,1616812288440 -1616812288468 ,112.5730309,26.89436441,64.0161438,177.1334509,177.4559126,7.599912,0.068855205,1620000000000 ,1620000000000 ,1620000000000 ,1616812288450 -1616812288482 ,112.5730309,26.89436372,64.01623535,177.195387,176.7483331,7.60488,0.068728555,1620000000000 ,1620000000000 ,1620000000000 ,1616812288460 -1616812288490 ,112.5730309,26.89436303,64.01634979,177.2545092,176.8249762,7.6099057,0.068773657,1620000000000 ,1620000000000 ,1620000000000 ,1616812288470 -1616812288501 ,112.573031,26.89436235,64.01651001,177.3147787,176.9162277,7.615915,0.06882723,1620000000000 ,1620000000000 ,1620000000000 ,1616812288480 -1616812288511 ,112.573031,26.89436166,64.01668549,177.373573,176.9939374,7.6215935,0.068880052,1620000000000 ,1620000000000 ,1620000000000 ,1616812288490 -1616812288518 ,112.573031,26.89436097,64.01679993,177.4335148,177.053858,7.6289177,0.068939198,1620000000000 ,1620000000000 ,1620000000000 ,1616812288500 -1616812288529 ,112.5730311,26.89436028,64.01682281,177.4925822,177.1359511,7.6369343,0.069007936,1620000000000 ,1620000000000 ,1620000000000 ,1616812288510 -1616812288540 ,112.5730311,26.89435959,64.01673126,177.548016,177.2325118,7.6438193,0.069066197,1620000000000 ,1620000000000 ,1620000000000 ,1616812288520 -1616812288550 ,112.5730311,26.8943589,64.01657867,177.6039416,177.3493951,7.6486206,0.069112174,1620000000000 ,1620000000000 ,1620000000000 ,1616812288530 -1616812288560 ,112.5730312,26.89435821,64.01641846,177.6586924,177.4433254,7.652976,0.069150145,1620000000000 ,1620000000000 ,1620000000000 ,1616812288540 -1616812288569 ,112.5730312,26.89435752,64.01628876,177.7139077,177.524383,7.658969,0.069202165,1620000000000 ,1620000000000 ,1620000000000 ,1616812288550 -1616812288579 ,112.5730312,26.89435683,64.01617432,177.7659537,177.5998653,7.6646543,0.069253698,1620000000000 ,1620000000000 ,1620000000000 ,1616812288560 -1616812288591 ,112.5730313,26.89435613,64.01602173,177.8163059,177.6685309,7.671678,0.069310771,1620000000000 ,1620000000000 ,1620000000000 ,1616812288570 -1616812288602 ,112.5730313,26.89435544,64.01580048,177.8661936,177.7332669,7.6793914,0.0693784,1620000000000 ,1620000000000 ,1620000000000 ,1616812288580 -1616812288610 ,112.5730313,26.89435475,64.01552582,177.9157261,177.7977734,7.6867785,0.069442787,1620000000000 ,1620000000000 ,1620000000000 ,1616812288590 -1616812288620 ,112.5730313,26.89435405,64.01525116,177.9656138,177.8667489,7.6933646,0.069505903,1620000000000 ,1620000000000 ,1620000000000 ,1616812288600 -1616812288631 ,112.5730314,26.89435336,64.01499176,178.015802,177.8977301,7.6965995,0.069541387,1620000000000 ,1620000000000 ,1620000000000 ,1616812288610 -1616812288641 ,112.5730314,26.89435266,64.01473236,178.0645969,177.9381612,7.7021422,0.069586089,1620000000000 ,1620000000000 ,1620000000000 ,1616812288620 -1616812288651 ,112.5730314,26.89435196,64.01441193,178.1130093,177.9858659,7.7088165,0.069638945,1620000000000 ,1620000000000 ,1620000000000 ,1616812288630 -1616812288660 ,112.5730314,26.89435127,64.01398468,178.1624599,178.0632866,7.717794,0.069709889,1620000000000 ,1620000000000 ,1620000000000 ,1616812288640 -1616812288670 ,112.5730315,26.89435057,64.01352692,178.2105444,178.1173974,7.7258806,0.06978496,1620000000000 ,1620000000000 ,1620000000000 ,1616812288650 -1616812288685 ,112.5730315,26.89434987,64.01309967,178.2558422,178.1357758,7.7330728,0.069853685,1620000000000 ,1620000000000 ,1620000000000 ,1616812288660 -1616812288690 ,112.5730315,26.89434917,64.01271057,178.3029432,178.1808394,7.738219,0.069905568,1620000000000 ,1620000000000 ,1620000000000 ,1616812288670 -1616812288703 ,112.5730315,26.89434847,64.01230621,178.3495524,178.2461066,7.743601,0.069950623,1620000000000 ,1620000000000 ,1620000000000 ,1616812288680 -1616812288711 ,112.5730316,26.89434777,64.01184082,178.3966534,178.3124561,7.7491937,0.069998339,1620000000000 ,1620000000000 ,1620000000000 ,1616812288690 -1616812288721 ,112.5730316,26.89434707,64.01136017,178.44176,178.3505548,7.755993,0.070056663,1620000000000 ,1620000000000 ,1620000000000 ,1616812288700 -1616812288731 ,112.5730316,26.89434637,64.01087952,178.4825772,178.3875621,7.76289,0.070119473,1620000000000 ,1620000000000 ,1620000000000 ,1616812288710 -1616812288742 ,112.5730316,26.89434567,64.01041412,178.5236129,178.4494422,7.7697434,0.070181802,1620000000000 ,1620000000000 ,1620000000000 ,1616812288720 -1616812288752 ,112.5730316,26.89434497,64.00993347,178.5665339,178.516472,7.776486,0.070240481,1620000000000 ,1620000000000 ,1620000000000 ,1616812288730 -1616812288761 ,112.5730316,26.89434427,64.00943756,178.6073784,178.5750454,7.7829733,0.070299925,1620000000000 ,1620000000000 ,1620000000000 ,1616812288740 -1616812288770 ,112.5730317,26.89434356,64.00894165,178.649589,178.601829,7.787728,0.070346283,1620000000000 ,1620000000000 ,1620000000000 ,1616812288750 -1616812288785 ,112.5730317,26.89434286,64.00843048,178.6899417,178.6198336,7.7928724,0.070390641,1620000000000 ,1620000000000 ,1620000000000 ,1616812288760 -1616812288792 ,112.5730317,26.89434216,64.00788879,178.7289831,178.6617397,7.799139,0.070440915,1620000000000 ,1620000000000 ,1620000000000 ,1616812288770 -1616812288801 ,112.5730317,26.89434145,64.00730133,178.7669043,178.7314379,7.8070164,0.070507066,1620000000000 ,1620000000000 ,1620000000000 ,1616812288780 -1616812288812 ,112.5730317,26.89434075,64.00669098,178.8048801,178.7867141,7.8162584,0.070587053,1620000000000 ,1620000000000 ,1620000000000 ,1616812288790 -1616812288821 ,112.5730317,26.89434004,64.00611877,178.8417085,178.8151244,7.8234515,0.070658541,1620000000000 ,1620000000000 ,1620000000000 ,1616812288800 -1616812288832 ,112.5730318,26.89433933,64.00561523,178.8774987,178.8188827,7.8288836,0.070714989,1620000000000 ,1620000000000 ,1620000000000 ,1616812288810 -1616812288842 ,112.5730318,26.89433862,64.00513458,178.9118955,178.84321,7.8334513,0.070758969,1620000000000 ,1620000000000 ,1620000000000 ,1616812288820 -1616812288852 ,112.5730318,26.89433792,64.00463867,178.9472759,178.8995557,7.838158,0.07079849,1620000000000 ,1620000000000 ,1620000000000 ,1616812288830 -1616812288862 ,112.5730318,26.89433721,64.00408936,178.9819733,178.9526617,7.8439646,0.070846598,1620000000000 ,1620000000000 ,1620000000000 ,1616812288840 -1616812288871 ,112.5730318,26.8943365,64.00354004,179.0165067,179.0036052,7.851355,0.070909081,1620000000000 ,1620000000000 ,1620000000000 ,1616812288850 -1616812288882 ,112.5730318,26.89433579,64.00299835,179.049155,179.0483017,7.86071,0.070990167,1620000000000 ,1620000000000 ,1620000000000 ,1616812288860 -1616812288898 ,112.5730318,26.89433508,64.00244141,179.0817487,179.1040434,7.8689666,0.071066287,1620000000000 ,1620000000000 ,1620000000000 ,1616812288870 -1616812288903 ,112.5730318,26.89433437,64.00186157,179.114315,179.1630013,7.8760386,0.071131981,1620000000000 ,1620000000000 ,1620000000000 ,1616812288880 -1616812288913 ,112.5730319,26.89433366,64.00131989,179.1430838,179.2139288,7.8801904,0.071178989,1620000000000 ,1620000000000 ,1620000000000 ,1616812288890 -1616812288922 ,112.5730319,26.89433294,64.00088501,179.1716067,179.2464018,7.8842726,0.071218337,1620000000000 ,1620000000000 ,1620000000000 ,1616812288900 -1616812288935 ,112.5730319,26.89433223,64.00047302,179.1987635,179.2685583,7.8911676,0.071274129,1620000000000 ,1620000000000 ,1620000000000 ,1616812288910 -1616812288944 ,112.5730319,26.89433152,64,179.2264941,179.3100301,7.899247,0.071343305,1620000000000 ,1620000000000 ,1620000000000 ,1616812288920 -1616812288953 ,112.5730319,26.8943308,63.99945068,179.2537875,179.3479269,7.9081826,0.071419533,1620000000000 ,1620000000000 ,1620000000000 ,1616812288930 -1616812288963 ,112.5730319,26.89433009,63.99888992,179.278704,179.3706109,7.9150925,0.071485777,1620000000000 ,1620000000000 ,1620000000000 ,1616812288940 -1616812288973 ,112.5730319,26.89432937,63.99837875,179.3038938,179.3849127,7.9213567,0.071547567,1620000000000 ,1620000000000 ,1620000000000 ,1616812288950 -1616812288983 ,112.5730319,26.89432866,63.99791718,179.3295479,179.4115027,7.927061,0.071602063,1620000000000 ,1620000000000 ,1620000000000 ,1616812288960 -1616812288994 ,112.5730319,26.89432794,63.99751663,179.3553114,179.4488946,7.9327574,0.0716546,1620000000000 ,1620000000000 ,1620000000000 ,1616812288970 -1616812289003 ,112.5730319,26.89432722,63.99715042,179.3810476,179.4739252,7.9395037,0.071715401,1620000000000 ,1620000000000 ,1620000000000 ,1616812288980 -1616812289014 ,112.5730319,26.89432651,63.99677658,179.4058002,179.483544,7.94666,0.071780008,1620000000000 ,1620000000000 ,1620000000000 ,1616812289000 -1616812289024 ,112.5730319,26.89432579,63.99632645,179.4314544,179.4864936,7.9560895,0.071854565,1620000000000 ,1620000000000 ,1620000000000 ,1616812289010 -1616812289035 ,112.5730319,26.89432507,63.99576569,179.4572725,179.5112634,7.9646053,0.07193059,1620000000000 ,1620000000000 ,1620000000000 ,1616812289020 -1616812289047 ,112.5730319,26.89432435,63.99513245,179.4806591,179.5391121,7.9714775,0.07199321,1620000000000 ,1620000000000 ,1620000000000 ,1616812289030 -1616812289055 ,112.573032,26.89432291,63.9940834,179.5247001,179.5869088,7.9808183,0.144142105,1620000000000 ,1620000000000 ,1620000000000 ,1616812289040 -1616812289068 ,112.573032,26.89432291,63.9940834,179.5247001,-400,7.9808183,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812289050 -1616812289077 ,112.573032,26.89432219,63.99368286,179.5501357,179.6182409,7.9871893,0.072145595,1620000000000 ,1620000000000 ,1620000000000 ,1616812289060 -1616812289086 ,112.573032,26.89432146,63.99325943,179.5745878,179.6437863,7.9939713,0.07220651,1620000000000 ,1620000000000 ,1620000000000 ,1616812289070 -1616812289102 ,112.573032,26.89432002,63.99219513,179.6157602,179.6987928,8.011972,0.144640281,1620000000000 ,1620000000000 ,1620000000000 ,1616812289080 -1616812289110 ,112.573032,26.89432002,63.99219513,179.6157602,-400,8.011972,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812289090 -1616812289116 ,112.573032,26.89431857,63.99111176,179.656031,179.7471275,8.025663,0.144921021,1620000000000 ,1620000000000 ,1620000000000 ,1616812289100 -1616812289126 ,112.573032,26.89431784,63.99071121,179.6791444,179.7571777,8.030514,0.072541466,1620000000000 ,1620000000000 ,1620000000000 ,1616812289110 -1616812289138 ,112.573032,26.89431712,63.99039459,179.7012195,179.7529303,8.037124,0.072603736,1620000000000 ,1620000000000 ,1620000000000 ,1616812289120 -1616812289145 ,112.573032,26.89431639,63.99005127,179.7234586,179.7580433,8.043743,0.072661325,1620000000000 ,1620000000000 ,1620000000000 ,1616812289130 -1616812289155 ,112.573032,26.89431566,63.9895668,179.7463261,179.7823639,8.0529,0.072732638,1620000000000 ,1620000000000 ,1620000000000 ,1616812289140 -1616812289165 ,112.573032,26.89431493,63.98892212,179.7655053,179.8298278,8.060856,0.072800174,1620000000000 ,1620000000000 ,1620000000000 ,1616812289150 -1616812289175 ,112.573032,26.89431421,63.98820496,179.7831818,179.8648253,8.068431,0.072867278,1620000000000 ,1620000000000 ,1620000000000 ,1616812289160 -1616812289185 ,112.573032,26.89431348,63.98752594,179.8003392,179.8838719,8.074271,0.072922945,1620000000000 ,1620000000000 ,1620000000000 ,1616812289170 -1616812289196 ,112.573032,26.89431275,63.98690033,179.8163219,179.9143958,8.081503,0.072986314,1620000000000 ,1620000000000 ,1620000000000 ,1616812289180 -1616812289207 ,112.573032,26.89431202,63.98630905,179.8319767,179.9471569,8.089835,0.073063112,1620000000000 ,1620000000000 ,1620000000000 ,1616812289190 -1616812289217 ,112.573032,26.89431128,63.98609161,179.8702257,180.7411058,8.108111,0.073408457,1620000000000 ,1620000000000 ,1620000000000 ,1616812289200 -1616812289227 ,112.573032,26.89431054,63.98624802,179.887028,181.8999914,8.115107,0.07385999,1620000000000 ,1620000000000 ,1620000000000 ,1616812289210 -1616812289237 ,112.5730319,26.8943098,63.98637009,179.9021637,181.9122099,8.1222925,0.07392342,1620000000000 ,1620000000000 ,1620000000000 ,1616812289220 -1616812289248 ,112.5730319,26.89430907,63.98647308,179.9166164,181.9345635,8.128259,0.073980274,1620000000000 ,1620000000000 ,1620000000000 ,1616812289230 -1616812289257 ,112.5730319,26.89430833,63.98660278,179.9312876,181.9515572,8.13444,0.074034415,1620000000000 ,1620000000000 ,1620000000000 ,1616812289240 -1616812289268 ,112.5730319,26.89430758,63.98675537,179.943418,181.9677551,8.141748,0.074103422,1620000000000 ,1620000000000 ,1620000000000 ,1616812289250 -1616812289277 ,112.5730318,26.89430684,63.98689651,179.9560402,181.9772756,8.148144,0.074160855,1620000000000 ,1620000000000 ,1620000000000 ,1616812289260 -1616812289288 ,112.5730318,26.8943061,63.98701477,179.9662855,181.9895931,8.155155,0.074222117,1620000000000 ,1620000000000 ,1620000000000 ,1616812289270 -1616812289297 ,112.5730318,26.89430536,63.98712921,179.9735255,181.9946628,8.159527,0.074268188,1620000000000 ,1620000000000 ,1620000000000 ,1616812289280 -1616812289308 ,112.5730318,26.89430462,63.98723602,179.9850822,181.9765608,8.166322,0.074321817,1620000000000 ,1620000000000 ,1620000000000 ,1616812289290 -1616812289321 ,112.5730317,26.89430387,63.98732376,179.9944805,181.9475192,8.174026,0.074386904,1620000000000 ,1620000000000 ,1620000000000 ,1616812289300 -1616812289328 ,112.5730317,26.89430313,63.98740387,180.0035783,181.9306986,8.181919,0.07445614,1620000000000 ,1620000000000 ,1620000000000 ,1616812289310 -1616812289337 ,112.5730317,26.89430238,63.98749161,180.0106544,181.9307053,8.190227,0.074531342,1620000000000 ,1620000000000 ,1620000000000 ,1616812289320 -1616812289350 ,112.5730317,26.89430164,63.98754883,180.0208177,181.9266123,8.19824,0.074603177,1620000000000 ,1620000000000 ,1620000000000 ,1616812289330 -1616812289358 ,112.5730316,26.89430089,63.98753738,180.0299429,181.9275929,8.205104,0.074663847,1620000000000 ,1620000000000 ,1620000000000 ,1616812289340 -1616812289367 ,112.5730316,26.89430015,63.9874649,180.0399969,181.9365158,8.21096,0.074717608,1620000000000 ,1620000000000 ,1620000000000 ,1616812289350 -1616812289385 ,112.5730316,26.8942994,63.9873848,180.0502149,181.9389371,8.215696,0.074762651,1620000000000 ,1620000000000 ,1620000000000 ,1616812289360 -1616812289389 ,112.5730316,26.89429865,63.98734283,180.0581652,181.9571023,8.220945,0.07480718,1620000000000 ,1620000000000 ,1620000000000 ,1616812289370 -1616812289399 ,112.5730316,26.89429865,63.98734283,180.0581652,-400,8.220945,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812289380 -1616812289408 ,112.5730315,26.89429715,63.98738098,180.0777269,182.0004808,8.23507,0.149818353,1620000000000 ,1620000000000 ,1620000000000 ,1616812289390 -1616812289419 ,112.5730315,26.8942964,63.98747253,180.0849942,182.0310645,8.24131,0.074999282,1620000000000 ,1620000000000 ,1620000000000 ,1616812289400 -1616812289429 ,112.5730315,26.89429565,63.9875946,180.0910048,182.0489452,8.248935,0.075068371,1620000000000 ,1620000000000 ,1620000000000 ,1616812289410 -1616812289438 ,112.5730314,26.8942949,63.98771667,180.0976164,182.0673114,8.256183,0.075134196,1620000000000 ,1620000000000 ,1620000000000 ,1616812289420 -1616812289454 ,112.5730314,26.89429415,63.98779297,180.1008676,182.0900975,8.265274,0.075211909,1620000000000 ,1620000000000 ,1620000000000 ,1616812289430 -1616812289464 ,112.5730314,26.8942934,63.98785019,180.1047471,182.1118436,8.274363,0.075296635,1620000000000 ,1620000000000 ,1620000000000 ,1616812289440 -1616812289472 ,112.5730314,26.89429265,63.98753357,180.1081622,181.3736386,8.2813425,0.075070348,1620000000000 ,1620000000000 ,1620000000000 ,1616812289450 -1616812289479 ,112.5730313,26.8942919,63.98685455,180.1140362,180.6211005,8.286633,0.074844931,1620000000000 ,1620000000000 ,1620000000000 ,1616812289460 -1616812289491 ,112.5730313,26.89429115,63.9862175,180.1188446,180.6142562,8.292109,0.074893198,1620000000000 ,1620000000000 ,1620000000000 ,1616812289470 -1616812289500 ,112.5730313,26.8942904,63.98564148,180.1246366,180.6146689,8.299322,0.074957888,1620000000000 ,1620000000000 ,1620000000000 ,1616812289480 -1616812289509 ,112.5730313,26.89428965,63.98509216,180.1309204,180.6221055,8.307128,0.075028465,1620000000000 ,1620000000000 ,1620000000000 ,1616812289490 -1616812289520 ,112.5730313,26.8942889,63.98455429,180.1403734,180.6419572,8.313393,0.07509002,1620000000000 ,1620000000000 ,1620000000000 ,1616812289500 -1616812289533 ,112.5730313,26.89428815,63.98403549,180.1491706,180.6580581,8.318792,0.075141397,1620000000000 ,1620000000000 ,1620000000000 ,1616812289510 -1616812289540 ,112.5730313,26.8942874,63.98352814,180.1553725,180.6576456,8.3272295,0.075210437,1620000000000 ,1620000000000 ,1620000000000 ,1616812289520 -1616812289550 ,112.5730313,26.89428664,63.98299789,180.1612737,180.6562656,8.336045,0.075288934,1620000000000 ,1620000000000 ,1620000000000 ,1616812289530 -1616812289559 ,112.5730313,26.89428589,63.98241425,180.1640878,180.6714036,8.345022,0.075367914,1620000000000 ,1620000000000 ,1620000000000 ,1616812289540 -1616812289570 ,112.5730313,26.89428514,63.98178101,180.1662734,180.7011845,8.352534,0.075436946,1620000000000 ,1620000000000 ,1620000000000 ,1616812289550 -1616812289579 ,112.5730313,26.89428438,63.98113251,180.1696339,180.7185846,8.358905,0.075498836,1620000000000 ,1620000000000 ,1620000000000 ,1616812289560 -1616812289590 ,112.5730313,26.89428363,63.98052597,180.1754805,180.6956677,8.362631,0.075538997,1620000000000 ,1620000000000 ,1620000000000 ,1616812289570 -1616812289600 ,112.5730312,26.89428287,63.98000717,180.1826659,180.6519265,8.3671,0.075579316,1620000000000 ,1620000000000 ,1620000000000 ,1616812289580 -1616812289610 ,112.5730312,26.89428211,63.97952652,180.1911627,180.6325745,8.375059,0.075643824,1620000000000 ,1620000000000 ,1620000000000 ,1616812289590 -1616812289620 ,112.5730312,26.89428136,63.97898865,180.1999053,180.6276798,8.383734,0.075720236,1620000000000 ,1620000000000 ,1620000000000 ,1616812289600 -1616812289631 ,112.5730312,26.8942806,63.97839737,180.208484,180.646188,8.391167,0.075786893,1620000000000 ,1620000000000 ,1620000000000 ,1616812289610 -1616812289640 ,112.5730312,26.89427984,63.97788239,180.2155054,180.6367802,8.39618,0.075844193,1620000000000 ,1620000000000 ,1620000000000 ,1616812289620 -1616812289652 ,112.5730312,26.89427908,63.97750092,180.2247125,180.5935574,8.401516,0.075892671,1620000000000 ,1620000000000 ,1620000000000 ,1616812289630 -1616812289661 ,112.5730312,26.89427832,63.97716904,180.2321984,180.5835212,8.409843,0.075964692,1620000000000 ,1620000000000 ,1620000000000 ,1616812289640 -1616812289671 ,112.5730312,26.89427756,63.97676849,180.2407771,180.6087508,8.417669,0.076032211,1620000000000 ,1620000000000 ,1620000000000 ,1616812289650 -1616812289682 ,112.5730312,26.8942768,63.9762764,180.2481264,180.6494515,8.425827,0.076104288,1620000000000 ,1620000000000 ,1620000000000 ,1616812289660 -1616812289691 ,112.5730312,26.89427604,63.97574997,180.2561861,180.6578539,8.432798,0.076166775,1620000000000 ,1620000000000 ,1620000000000 ,1616812289670 -1616812289702 ,112.5730312,26.89427528,63.97520065,180.2623059,180.650573,8.43929,0.07622642,1620000000000 ,1620000000000 ,1620000000000 ,1616812289680 -1616812289712 ,112.5730312,26.89427451,63.97460556,180.2691361,180.6606735,8.446234,0.076282453,1620000000000 ,1620000000000 ,1620000000000 ,1616812289690 -1616812289722 ,112.5730311,26.89427375,63.97393799,180.2756931,180.6928985,8.454116,0.076352291,1620000000000 ,1620000000000 ,1620000000000 ,1616812289700 -1616812289732 ,112.5730311,26.89427299,63.97323608,180.2811845,180.7175931,8.460946,0.076410587,1620000000000 ,1620000000000 ,1620000000000 ,1616812289710 -1616812289742 ,112.5730311,26.89427222,63.97258377,180.2862116,180.7326476,8.469556,0.076489304,1620000000000 ,1620000000000 ,1620000000000 ,1616812289720 -1616812289752 ,112.5730311,26.89427146,63.97199631,180.2906375,180.726865,8.475602,0.076550782,1620000000000 ,1620000000000 ,1620000000000 ,1616812289730 -1616812289761 ,112.5730311,26.89427069,63.97143555,180.2944351,180.7288269,8.482015,0.076609281,1620000000000 ,1620000000000 ,1620000000000 ,1616812289740 -1616812289772 ,112.5730311,26.89426992,63.97085571,180.2980961,180.7499191,8.488675,0.076665329,1620000000000 ,1620000000000 ,1620000000000 ,1616812289750 -1616812289782 ,112.5730311,26.89426916,63.97024155,180.3018664,180.7685884,8.495872,0.076728361,1620000000000 ,1620000000000 ,1620000000000 ,1616812289760 -1616812289792 ,112.5730311,26.89426839,63.96960831,180.3033963,180.7705513,8.502588,0.07678885,1620000000000 ,1620000000000 ,1620000000000 ,1616812289770 -1616812289801 ,112.5730311,26.89426762,63.96895599,180.304899,180.7691632,8.5116625,0.076864218,1620000000000 ,1620000000000 ,1620000000000 ,1616812289780 -1616812289812 ,112.5730311,26.89426685,63.96827316,180.3029045,180.7756715,8.520525,0.076942699,1620000000000 ,1620000000000 ,1620000000000 ,1616812289790 -1616812289822 ,112.573031,26.89426608,63.96754074,180.3035056,180.791047,8.5282545,0.077012157,1620000000000 ,1620000000000 ,1620000000000 ,1616812289800 -1616812289832 ,112.573031,26.89426531,63.96676254,180.3050629,180.8035054,8.535246,0.077075435,1620000000000 ,1620000000000 ,1620000000000 ,1616812289810 -1616812289841 ,112.573031,26.89426454,63.96600342,180.3051995,180.8009075,8.541018,0.077129727,1620000000000 ,1620000000000 ,1620000000000 ,1616812289820 -1616812289852 ,112.573031,26.89426377,63.96529007,180.3071666,180.7863414,8.546981,0.077181694,1620000000000 ,1620000000000 ,1620000000000 ,1616812289830 -1616812289862 ,112.573031,26.89426299,63.96458054,180.3070573,180.7807796,8.55466,0.07724725,1620000000000 ,1620000000000 ,1620000000000 ,1616812289840 -1616812289872 ,112.573031,26.89426222,63.9638176,180.3106636,180.7987188,8.562704,0.077315988,1620000000000 ,1620000000000 ,1620000000000 ,1616812289850 -1616812289884 ,112.573031,26.89426145,63.9630127,180.3121116,180.8214337,8.570982,0.077389717,1620000000000 ,1620000000000 ,1620000000000 ,1616812289860 -1616812289894 ,112.573031,26.89426067,63.96223831,180.3097074,180.8160816,8.577581,0.077454126,1620000000000 ,1620000000000 ,1620000000000 ,1616812289870 -1616812289902 ,112.573031,26.8942599,63.96151352,180.3108002,180.8100167,8.584514,0.077516529,1620000000000 ,1620000000000 ,1620000000000 ,1616812289880 -1616812289914 ,112.5730309,26.89425912,63.96080399,180.309243,180.8185007,8.591459,0.07757788,1620000000000 ,1620000000000 ,1620000000000 ,1616812289890 -1616812289922 ,112.5730309,26.89425835,63.96007919,180.3076857,180.8402826,8.598206,0.077639486,1620000000000 ,1620000000000 ,1620000000000 ,1616812289900 -1616812289935 ,112.5730309,26.89425757,63.95936966,180.3082048,180.851182,8.604245,0.077695744,1620000000000 ,1620000000000 ,1620000000000 ,1616812289910 -1616812289943 ,112.5730309,26.89425679,63.95871353,180.3079042,180.8458488,8.610956,0.077756056,1620000000000 ,1620000000000 ,1620000000000 ,1616812289920 -1616812289954 ,112.5730309,26.89425601,63.95814514,180.3058552,180.8362954,8.616291,0.077809341,1620000000000 ,1620000000000 ,1620000000000 ,1616812289930 -1616812289963 ,112.5730309,26.89425524,63.95763779,180.3046531,180.8322307,8.622974,0.077868717,1620000000000 ,1620000000000 ,1620000000000 ,1616812289940 -1616812289972 ,112.5730309,26.89425446,63.95716858,180.3036968,180.8335242,8.630015,0.077933205,1620000000000 ,1620000000000 ,1620000000000 ,1616812289950 -1616812289983 ,112.5730309,26.89425368,63.95672607,180.3053634,180.818925,8.637603,0.077999642,1620000000000 ,1620000000000 ,1620000000000 ,1616812289960 -1616812289994 ,112.5730309,26.8942529,63.95632172,180.3064016,180.8025784,8.645491,0.078072272,1620000000000 ,1620000000000 ,1620000000000 ,1616812289970 -1616812290004 ,112.5730308,26.89425211,63.95596313,180.3062923,180.7926779,8.653617,0.078147587,1620000000000 ,1620000000000 ,1620000000000 ,1616812289980 -1616812290014 ,112.5730308,26.89425055,63.9553299,180.3072485,180.7808935,8.664457,0.156461786,1620000000000 ,1620000000000 ,1620000000000 ,1616812290000 -1616812290024 ,112.5730308,26.89424977,63.95510101,180.308478,180.772222,8.667783,0.078291029,1620000000000 ,1620000000000 ,1620000000000 ,1616812290010 -1616812290036 ,112.5730308,26.89424977,63.95510101,180.308478,-400,8.667783,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812290020 -1616812290044 ,112.5730308,26.8942482,63.95492935,180.3101172,180.7584122,8.680633,0.156745793,1620000000000 ,1620000000000 ,1620000000000 ,1616812290030 -1616812290054 ,112.5730308,26.89424741,63.95493698,180.3123029,180.7505701,8.688524,0.078476581,1620000000000 ,1620000000000 ,1620000000000 ,1616812290040 -1616812290066 ,112.5730308,26.89424663,63.9549675,180.3151716,180.7613678,8.695319,0.078543405,1620000000000 ,1620000000000 ,1620000000000 ,1616812290050 -1616812290074 ,112.5730308,26.89424584,63.95503235,180.3153082,180.7544711,8.700962,0.078599556,1620000000000 ,1620000000000 ,1620000000000 ,1616812290060 -1616812290086 ,112.5730307,26.89424506,63.95516586,180.3172479,180.7322536,8.706724,0.078652426,1620000000000 ,1620000000000 ,1620000000000 ,1616812290070 -1616812290095 ,112.5730307,26.89424427,63.95535278,180.31998,180.7272179,8.712009,0.078704721,1620000000000 ,1620000000000 ,1620000000000 ,1616812290080 -1616812290105 ,112.5730307,26.89424348,63.95556259,180.3230673,180.7253136,8.716968,0.078751149,1620000000000 ,1620000000000 ,1620000000000 ,1616812290090 -1616812290119 ,112.5730307,26.89424269,63.95579147,180.3242967,180.7174153,8.721623,0.078797751,1620000000000 ,1620000000000 ,1620000000000 ,1616812290100 -1616812290125 ,112.5730307,26.89424191,63.95601654,180.3279304,180.695728,8.727462,0.078846393,1620000000000 ,1620000000000 ,1620000000000 ,1616812290110 -1616812290136 ,112.5730307,26.89424112,63.95619583,180.3297882,180.6839683,8.736112,0.07891673,1620000000000 ,1620000000000 ,1620000000000 ,1616812290120 -1616812290145 ,112.5730307,26.89424033,63.9563179,180.3330667,180.6914418,8.744283,0.078990923,1620000000000 ,1620000000000 ,1620000000000 ,1616812290130 -1616812290159 ,112.5730307,26.89423954,63.95638657,180.3356348,180.7064843,8.751745,0.079060048,1620000000000 ,1620000000000 ,1620000000000 ,1616812290140 -1616812290166 ,112.5730307,26.89423875,63.95643616,180.3369735,180.7132832,8.757952,0.079118248,1620000000000 ,1620000000000 ,1620000000000 ,1616812290150 -1616812290175 ,112.5730307,26.89423795,63.95648193,180.3389953,180.7076024,8.76337,0.079168955,1620000000000 ,1620000000000 ,1620000000000 ,1616812290160 -1616812290186 ,112.5730307,26.89423716,63.95653534,180.3408258,180.7023004,8.769603,0.079223659,1620000000000 ,1620000000000 ,1620000000000 ,1616812290170 -1616812290197 ,112.5730306,26.89423637,63.95655823,180.3426836,180.7085796,8.776625,0.079285464,1620000000000 ,1620000000000 ,1620000000000 ,1616812290180 -1616812290205 ,112.5730306,26.89423558,63.95653915,180.3442135,180.7167837,8.784681,0.079353488,1620000000000 ,1620000000000 ,1620000000000 ,1616812290190 -1616812290215 ,112.5730306,26.89423478,63.9557724,180.3229853,180.8353967,8.796639,0.079688509,1620000000000 ,1620000000000 ,1620000000000 ,1616812290200 -1616812290226 ,112.5730306,26.89423398,63.9541626,180.3261818,180.9767586,8.801242,0.080052842,1620000000000 ,1620000000000 ,1620000000000 ,1616812290210 -1616812290239 ,112.5730306,26.89423318,63.9525795,180.3265643,180.9646617,8.807575,0.080108867,1620000000000 ,1620000000000 ,1620000000000 ,1616812290220 -1616812290248 ,112.5730306,26.89423238,63.95093918,180.3282036,180.9613079,8.812911,0.080156664,1620000000000 ,1620000000000 ,1620000000000 ,1616812290230 -1616812290258 ,112.5730306,26.89423157,63.94919968,180.3303619,180.9717493,8.819114,0.080207886,1620000000000 ,1620000000000 ,1620000000000 ,1616812290240 -1616812290272 ,112.5730306,26.89423077,63.94739914,180.3312635,180.9849373,8.824598,0.08025605,1620000000000 ,1620000000000 ,1620000000000 ,1616812290250 -1616812290280 ,112.5730305,26.89422997,63.94562149,180.331564,180.9880541,8.829377,0.080302391,1620000000000 ,1620000000000 ,1620000000000 ,1616812290260 -1616812290287 ,112.5730305,26.89422917,63.9438591,180.3326295,180.9842885,8.835861,0.080356018,1620000000000 ,1620000000000 ,1620000000000 ,1616812290270 -1616812290299 ,112.5730305,26.89422836,63.94208145,180.3327661,180.9849195,8.842901,0.080417554,1620000000000 ,1620000000000 ,1620000000000 ,1616812290280 -1616812290308 ,112.5730305,26.89422756,63.94022751,180.3314274,180.9875485,8.85088,0.080484161,1620000000000 ,1620000000000 ,1620000000000 ,1616812290290 -1616812290318 ,112.5730305,26.89422675,63.93829727,180.3297062,180.9928961,8.859652,0.080560905,1620000000000 ,1620000000000 ,1620000000000 ,1616812290300 -1616812290326 ,112.5730305,26.89422594,63.93629837,180.3280123,180.993202,8.868041,0.080633166,1620000000000 ,1620000000000 ,1620000000000 ,1616812290310 -1616812290337 ,112.5730305,26.89422514,63.93426514,180.3267009,180.9916199,8.873648,0.080687322,1620000000000 ,1620000000000 ,1620000000000 ,1616812290320 -1616812290348 ,112.5730304,26.89422433,63.93222427,180.3270288,180.9799808,8.878523,0.080733552,1620000000000 ,1620000000000 ,1620000000000 ,1616812290330 -1616812290357 ,112.5730304,26.89422352,63.93017197,180.3278484,180.9677746,8.884092,0.080781443,1620000000000 ,1620000000000 ,1620000000000 ,1616812290340 -1616812290367 ,112.5730304,26.89422271,63.9280777,180.3286953,180.960413,8.891833,0.080841182,1620000000000 ,1620000000000 ,1620000000000 ,1616812290350 -1616812290376 ,112.5730304,26.89422191,63.92590714,180.3288046,180.9722647,8.899777,0.080908562,1620000000000 ,1620000000000 ,1620000000000 ,1616812290360 -1616812290388 ,112.5730304,26.8942211,63.92366791,180.3293237,180.9847953,8.908454,0.080984898,1620000000000 ,1620000000000 ,1620000000000 ,1616812290370 -1616812290397 ,112.5730304,26.89422029,63.92139435,180.3282036,180.9807231,8.914918,0.0810459,1620000000000 ,1620000000000 ,1620000000000 ,1616812290380 -1616812290407 ,112.5730304,26.89421947,63.91911697,180.3261818,180.9721636,8.92149,0.081103002,1620000000000 ,1620000000000 ,1620000000000 ,1616812290390 -1616812290417 ,112.5730303,26.89421866,63.91685867,180.3245426,180.9648632,8.927287,0.081157918,1620000000000 ,1620000000000 ,1620000000000 ,1616812290400 -1616812290430 ,112.5730303,26.89421785,63.9145813,180.3251163,180.9671018,8.933941,0.081214241,1620000000000 ,1620000000000 ,1620000000000 ,1616812290410 -1616812290438 ,112.5730303,26.89421704,63.91230011,180.325007,180.9751963,8.941142,0.081277812,1620000000000 ,1620000000000 ,1620000000000 ,1616812290420 -1616812290448 ,112.5730303,26.89421623,63.91004181,180.3239962,180.9827939,8.947157,0.081337381,1620000000000 ,1620000000000 ,1620000000000 ,1616812290430 -1616812290458 ,112.5730303,26.89421541,63.90784073,180.3234224,180.976659,8.953673,0.081396464,1620000000000 ,1620000000000 ,1620000000000 ,1616812290440 -1616812290470 ,112.5730303,26.8942146,63.90641785,180.3265916,180.8718649,8.959065,0.08117674,1620000000000 ,1620000000000 ,1620000000000 ,1616812290450 -1616812290478 ,112.5730303,26.89421379,63.90574265,180.3298701,180.7728586,8.965732,0.080959886,1620000000000 ,1620000000000 ,1620000000000 ,1616812290460 -1616812290487 ,112.5730303,26.89421298,63.90507126,180.3346239,180.7915618,8.971523,0.081017769,1620000000000 ,1620000000000 ,1620000000000 ,1616812290470 -1616812290498 ,112.5730302,26.89421217,63.90443039,180.3369735,180.7968679,8.979016,0.081079158,1620000000000 ,1620000000000 ,1620000000000 ,1616812290480 -1616812290510 ,112.5730302,26.89421136,63.90383148,180.338886,180.8023326,8.986659,0.081152916,1620000000000 ,1620000000000 ,1620000000000 ,1616812290490 -1616812290518 ,112.5730302,26.89421055,63.90323639,180.3406345,180.8093023,8.994764,0.081222947,1620000000000 ,1620000000000 ,1620000000000 ,1616812290500 -1616812290528 ,112.5730302,26.89420973,63.90262604,180.340935,180.8328353,9.002322,0.08129442,1620000000000 ,1620000000000 ,1620000000000 ,1616812290510 -1616812290539 ,112.5730302,26.89420892,63.90203857,180.3426016,180.8533374,9.008495,0.081354467,1620000000000 ,1620000000000 ,1620000000000 ,1616812290520 -1616812290552 ,112.5730302,26.89420811,63.90152359,180.3426836,180.8552823,9.013358,0.081404253,1620000000000 ,1620000000000 ,1620000000000 ,1616812290530 -1616812290562 ,112.5730302,26.89420729,63.90112686,180.3449239,180.8400667,9.019036,0.081458393,1620000000000 ,1620000000000 ,1620000000000 ,1616812290540 -1616812290569 ,112.5730302,26.89420648,63.90083313,180.3481477,180.8209814,9.023969,0.081508557,1620000000000 ,1620000000000 ,1620000000000 ,1616812290550 -1616812290579 ,112.5730302,26.89420566,63.90058899,180.3519726,180.8124465,9.03124,0.081570695,1620000000000 ,1620000000000 ,1620000000000 ,1616812290560 -1616812290591 ,112.5730301,26.89420484,63.900383,180.3576553,180.8089212,9.036656,0.081628014,1620000000000 ,1620000000000 ,1620000000000 ,1616812290570 -1616812290600 ,112.5730301,26.89420403,63.90021515,180.3627643,180.7918083,9.042553,0.081680201,1620000000000 ,1620000000000 ,1620000000000 ,1616812290580 -1616812290610 ,112.5730301,26.89420321,63.9001236,180.3688842,180.76074,9.047711,0.081733061,1620000000000 ,1620000000000 ,1620000000000 ,1616812290590 -1616812290619 ,112.5730301,26.89420239,63.90008545,180.3779547,180.7301806,9.053713,0.081786533,1620000000000 ,1620000000000 ,1620000000000 ,1616812290600 -1616812290631 ,112.5730301,26.89420157,63.90006256,180.3841292,180.7101019,9.060251,0.081846957,1620000000000 ,1620000000000 ,1620000000000 ,1616812290610 -1616812290640 ,112.5730301,26.89420076,63.89998627,180.3922707,180.7132138,9.067322,0.081907931,1620000000000 ,1620000000000 ,1620000000000 ,1616812290620 -1616812290650 ,112.5730301,26.89419994,63.8998642,180.4002211,180.7160746,9.073883,0.081966189,1620000000000 ,1620000000000 ,1620000000000 ,1616812290630 -1616812290660 ,112.5730301,26.89419912,63.89972305,180.4085812,180.7193447,9.080298,0.082025993,1620000000000 ,1620000000000 ,1620000000000 ,1616812290640 -1616812290670 ,112.5730301,26.89419829,63.89958572,180.4155207,180.7150394,9.086621,0.082084388,1620000000000 ,1620000000000 ,1620000000000 ,1616812290650 -1616812290680 ,112.57303,26.89419747,63.89943314,180.4243726,180.7092278,9.092165,0.082136561,1620000000000 ,1620000000000 ,1620000000000 ,1616812290660 -1616812290690 ,112.57303,26.89419665,63.8992424,180.4337436,180.7189392,9.098275,0.082187201,1620000000000 ,1620000000000 ,1620000000000 ,1616812290670 -1616812290702 ,112.57303,26.89419583,63.89899826,180.443825,180.7356019,9.1073675,0.08226027,1620000000000 ,1620000000000 ,1620000000000 ,1616812290680 -1616812290717 ,112.57303,26.89419501,63.89868546,180.4533873,180.7489485,9.115496,0.082337151,1620000000000 ,1620000000000 ,1620000000000 ,1616812290690 -1616812290722 ,112.57303,26.89419418,63.89831161,180.4623212,180.7722466,9.122798,0.082401698,1620000000000 ,1620000000000 ,1620000000000 ,1616812290700 -1616812290732 ,112.57303,26.89419336,63.89791107,180.469124,180.7800744,9.129786,0.082464302,1620000000000 ,1620000000000 ,1620000000000 ,1616812290710 -1616812290750 ,112.57303,26.89419253,63.89749908,180.4757083,180.7996167,9.136303,0.082522799,1620000000000 ,1620000000000 ,1620000000000 ,1616812290720 -1616812290753 ,112.57303,26.89419171,63.89702988,180.4827844,180.8245436,9.144536,0.082592094,1620000000000 ,1620000000000 ,1620000000000 ,1616812290730 -1616812290765 ,112.57303,26.89419088,63.89645767,180.4892048,180.8556495,9.151771,0.082657622,1620000000000 ,1620000000000 ,1620000000000 ,1616812290740 -1616812290771 ,112.5730299,26.89419005,63.89580917,180.4960077,180.8837296,9.159297,0.08271835,1620000000000 ,1620000000000 ,1620000000000 ,1616812290750 -1616812290783 ,112.5730299,26.89418922,63.89514923,180.5000784,180.9026896,9.167231,0.082792005,1620000000000 ,1620000000000 ,1620000000000 ,1616812290760 -1616812290791 ,112.5730299,26.8941884,63.89448166,180.5041766,180.9171059,9.174783,0.082858857,1620000000000 ,1620000000000 ,1620000000000 ,1616812290770 -1616812290801 ,112.5730299,26.89418757,63.89378738,180.5089577,180.9408009,9.181958,0.082924644,1620000000000 ,1620000000000 ,1620000000000 ,1616812290780 -1616812290811 ,112.5730299,26.89418674,63.89305115,180.5120723,180.9667754,9.187784,0.082978196,1620000000000 ,1620000000000 ,1620000000000 ,1616812290790 -1616812290820 ,112.5730299,26.89418591,63.89229965,180.5149956,180.976302,9.194247,0.083033558,1620000000000 ,1620000000000 ,1620000000000 ,1616812290800 -1616812290832 ,112.5730299,26.89418508,63.89154434,180.5181101,180.9733805,9.200594,0.083091185,1620000000000 ,1620000000000 ,1620000000000 ,1616812290810 -1616812290841 ,112.5730298,26.89418425,63.89080048,180.5208149,180.9712097,9.207656,0.083153139,1620000000000 ,1620000000000 ,1620000000000 ,1616812290820 -1616812290851 ,112.5730298,26.89418341,63.89006042,180.524995,180.9720721,9.215199,0.083220856,1620000000000 ,1620000000000 ,1620000000000 ,1616812290830 -1616812290862 ,112.5730298,26.89418258,63.88930511,180.5275358,180.9680043,9.223163,0.08328967,1620000000000 ,1620000000000 ,1620000000000 ,1616812290840 -1616812290871 ,112.5730298,26.89418175,63.88853836,180.5296395,180.9599212,9.2302,0.08335739,1620000000000 ,1620000000000 ,1620000000000 ,1616812290850 -1616812290883 ,112.5730298,26.89418091,63.88775635,180.5325628,180.9407297,9.2366705,0.083415629,1620000000000 ,1620000000000 ,1620000000000 ,1616812290860 -1616812290893 ,112.5730298,26.89418008,63.88694763,180.5358686,180.9249214,9.243003,0.083470668,1620000000000 ,1620000000000 ,1620000000000 ,1616812290870 -1616812290904 ,112.5730298,26.89417924,63.88610077,180.5397209,180.916234,9.24979,0.08352984,1620000000000 ,1620000000000 ,1620000000000 ,1616812290880 -1616812290916 ,112.5730298,26.89417841,63.8852272,180.5425622,180.9146693,9.256855,0.083591714,1620000000000 ,1620000000000 ,1620000000000 ,1616812290890 -1616812290923 ,112.5730297,26.89417757,63.88436508,180.5474526,180.9122891,9.263993,0.083656006,1620000000000 ,1620000000000 ,1620000000000 ,1616812290900 -1616812290934 ,112.5730297,26.89417673,63.88354111,180.5521791,180.914669,9.270091,0.083714325,1620000000000 ,1620000000000 ,1620000000000 ,1616812290910 -1616812290943 ,112.5730297,26.8941759,63.88275909,180.556168,180.9187838,9.275531,0.0837705,1620000000000 ,1620000000000 ,1620000000000 ,1616812290920 -1616812290953 ,112.5730297,26.89417506,63.88201904,180.5606486,180.934093,9.283371,0.083833034,1620000000000 ,1620000000000 ,1620000000000 ,1616812290930 -1616812290962 ,112.5730297,26.89417422,63.88133621,180.5626703,180.9461842,9.291958,0.083914824,1620000000000 ,1620000000000 ,1620000000000 ,1616812290940 -1616812290973 ,112.5730297,26.89417338,63.88070297,180.5665772,180.9556592,9.298652,0.083982758,1620000000000 ,1620000000000 ,1620000000000 ,1616812290950 -1616812290985 ,112.5730297,26.89417254,63.8801384,180.5685443,180.9730528,9.301917,0.084025597,1620000000000 ,1620000000000 ,1620000000000 ,1616812290960 -1616812290994 ,112.5730296,26.8941717,63.87963104,180.5701835,180.9627686,9.304834,0.084053973,1620000000000 ,1620000000000 ,1620000000000 ,1616812290970 -1616812291002 ,112.5730296,26.89417086,63.87917328,180.57338,180.9740907,9.309262,0.084093565,1620000000000 ,1620000000000 ,1620000000000 ,1616812290980 -1616812291016 ,112.5730296,26.89417002,63.87873077,180.5755384,180.9814118,9.318717,0.084169547,1620000000000 ,1620000000000 ,1620000000000 ,1616812291000 -1616812291024 ,112.5730296,26.89416917,63.87826538,180.578489,180.9785942,9.325966,0.084238875,1620000000000 ,1620000000000 ,1620000000000 ,1616812291000 -1616812291034 ,112.5730296,26.89416833,63.87775421,180.5818222,180.9984325,9.33454,0.084312234,1620000000000 ,1620000000000 ,1620000000000 ,1616812291020 -1616812291044 ,112.5730296,26.89416749,63.87720871,180.5820407,181.0117037,9.3413515,0.084379667,1620000000000 ,1620000000000 ,1620000000000 ,1616812291030 -1616812291054 ,112.5730296,26.89416664,63.87664795,180.5819314,181.0181983,9.345887,0.08442458,1620000000000 ,1620000000000 ,1620000000000 ,1616812291040 -1616812291065 ,112.5730295,26.89416495,63.87551117,180.5794726,181.026394,9.359872,0.169016373,1620000000000 ,1620000000000 ,1620000000000 ,1616812291050 -1616812291073 ,112.5730295,26.89416495,63.87551117,180.5794726,-400,9.359872,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812291060 -1616812291087 ,112.5730295,26.89416411,63.87490082,180.5793086,181.0287761,9.368456,0.084617538,1620000000000 ,1620000000000 ,1620000000000 ,1616812291070 -1616812291094 ,112.5730295,26.89416241,63.87351608,180.576358,181.0472893,9.382538,0.169442187,1620000000000 ,1620000000000 ,1620000000000 ,1616812291080 -1616812291113 ,112.5730295,26.89416241,63.87351608,180.576358,-400,9.382538,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812291080 -1616812291118 ,112.5730295,26.89416157,63.87282562,180.5739538,181.0458022,9.386987,0.084792614,1620000000000 ,1620000000000 ,1620000000000 ,1616812291100 -1616812291125 ,112.5730294,26.89415987,63.87143326,180.5703201,181.0308425,9.398782,0.169740108,1620000000000 ,1620000000000 ,1620000000000 ,1616812291110 -1616812291135 ,112.5730294,26.89415902,63.87068939,180.569118,181.0149534,9.405633,0.084949828,1620000000000 ,1620000000000 ,1620000000000 ,1616812291120 -1616812291144 ,112.5730294,26.89415817,63.86992645,180.5686262,181.0082825,9.41273,0.085014657,1620000000000 ,1620000000000 ,1620000000000 ,1616812291130 -1616812291154 ,112.5730294,26.89415732,63.86911392,180.5680798,180.9931793,9.419919,0.085074849,1620000000000 ,1620000000000 ,1620000000000 ,1616812291140 -1616812291166 ,112.5730294,26.89415647,63.86824799,180.5666865,180.9857847,9.426899,0.085135822,1620000000000 ,1620000000000 ,1620000000000 ,1616812291150 -1616812291175 ,112.5730294,26.89415562,63.86732483,180.5655936,180.9791634,9.433792,0.085194144,1620000000000 ,1620000000000 ,1620000000000 ,1616812291160 -1616812291184 ,112.5730293,26.89415476,63.86635971,180.5629162,180.9698425,9.441162,0.0852573,1620000000000 ,1620000000000 ,1620000000000 ,1616812291170 -1616812291194 ,112.5730293,26.89415391,63.86534882,180.56196,180.9734978,9.446615,0.085310087,1620000000000 ,1620000000000 ,1620000000000 ,1616812291180 -1616812291205 ,112.5730293,26.89415306,63.86433029,180.5604846,180.9713188,9.453125,0.085364801,1620000000000 ,1620000000000 ,1620000000000 ,1616812291190 -1616812291215 ,112.5730293,26.8941522,63.86244965,180.5693092,181.1428521,9.493698,0.085898707,1620000000000 ,1620000000000 ,1620000000000 ,1616812291200 -1616812291227 ,112.5730293,26.89415133,63.85957336,180.566987,181.4209896,9.49843,0.086755795,1620000000000 ,1620000000000 ,1620000000000 ,1616812291210 -1616812291237 ,112.5730293,26.89415046,63.85665512,180.5672875,181.4234794,9.503456,0.086806878,1620000000000 ,1620000000000 ,1620000000000 ,1616812291220 -1616812291245 ,112.5730292,26.89414959,63.85356522,180.5670963,181.3985151,9.511634,0.086854284,1620000000000 ,1620000000000 ,1620000000000 ,1616812291230 -1616812291255 ,112.5730292,26.89414873,63.85026932,180.5651565,181.4406619,9.520204,0.08692676,1620000000000 ,1620000000000 ,1620000000000 ,1616812291240 -1616812291265 ,112.5730292,26.89414786,63.84691238,180.5582443,181.4299305,9.529694,0.087004567,1620000000000 ,1620000000000 ,1620000000000 ,1616812291250 -1616812291280 ,112.5730292,26.89414698,63.84365463,180.5513049,181.3794829,9.538205,0.087085441,1620000000000 ,1620000000000 ,1620000000000 ,1616812291260 -1616812291285 ,112.5730291,26.89414611,63.84056091,180.5434911,181.3918863,9.542933,0.087149023,1620000000000 ,1620000000000 ,1620000000000 ,1616812291270 -1616812291295 ,112.5730291,26.89414524,63.83755112,180.5388193,181.3847753,9.543079,0.087160898,1620000000000 ,1620000000000 ,1620000000000 ,1616812291280 -1616812291312 ,112.5730291,26.89414437,63.83456421,180.5373166,181.384533,9.544715,0.087169206,1620000000000 ,1620000000000 ,1620000000000 ,1616812291290 -1616812291318 ,112.5730291,26.8941435,63.83162308,180.5348304,181.3565895,9.551725,0.087218144,1620000000000 ,1620000000000 ,1620000000000 ,1616812291300 -1616812291325 ,112.5730291,26.89414263,63.82865906,180.5303498,181.3197171,9.56375,0.08731485,1620000000000 ,1620000000000 ,1620000000000 ,1616812291310 -1616812291336 ,112.573029,26.89414175,63.82566071,180.527044,181.3250791,9.573109,0.087408046,1620000000000 ,1620000000000 ,1620000000000 ,1616812291320 -1616812291346 ,112.573029,26.89414088,63.82268524,180.5233831,181.340919,9.57791,0.087460769,1620000000000 ,1620000000000 ,1620000000000 ,1616812291330 -1616812291356 ,112.573029,26.89414,63.81985855,180.5194489,181.3351013,9.5791025,0.087485615,1620000000000 ,1620000000000 ,1620000000000 ,1616812291340 -1616812291366 ,112.573029,26.89413913,63.81724167,180.5149956,181.3060463,9.58162,0.087506839,1620000000000 ,1620000000000 ,1620000000000 ,1616812291350 -1616812291377 ,112.573029,26.89413825,63.81470871,180.5111434,181.2813159,9.588503,0.087564273,1620000000000 ,1620000000000 ,1620000000000 ,1616812291360 -1616812291387 ,112.5730289,26.89413738,63.81214523,180.5089304,181.2766273,9.59649,0.087632588,1620000000000 ,1620000000000 ,1620000000000 ,1616812291370 -1616812291397 ,112.5730289,26.8941365,63.80953598,180.5050781,181.2893781,9.602842,0.08769354,1620000000000 ,1620000000000 ,1620000000000 ,1616812291380 -1616812291407 ,112.5730289,26.89413562,63.80696869,180.5006795,181.2915864,9.608608,0.087748903,1620000000000 ,1620000000000 ,1620000000000 ,1616812291390 -1616812291418 ,112.5730289,26.89413474,63.8045311,180.495352,181.2881409,9.613573,0.087798671,1620000000000 ,1620000000000 ,1620000000000 ,1616812291400 -1616812291429 ,112.5730289,26.89413387,63.80219269,180.4899698,181.2837551,9.619886,0.087858116,1620000000000 ,1620000000000 ,1620000000000 ,1616812291410 -1616812291437 ,112.5730288,26.89413299,63.79989243,180.4854072,181.2914698,9.625207,0.087910295,1620000000000 ,1620000000000 ,1620000000000 ,1616812291420 -1616812291448 ,112.5730288,26.89413211,63.79759979,180.4806807,181.2976963,9.629546,0.087954095,1620000000000 ,1620000000000 ,1620000000000 ,1616812291430 -1616812291457 ,112.5730288,26.89413123,63.79533768,180.477129,181.2946317,9.633874,0.087992564,1620000000000 ,1620000000000 ,1620000000000 ,1616812291440 -1616812291469 ,112.5730288,26.89413035,63.79402161,180.4752985,181.1164711,9.6385,0.087546769,1620000000000 ,1620000000000 ,1620000000000 ,1616812291450 -1616812291478 ,112.5730288,26.89412948,63.79362869,180.4737686,180.9419231,9.64373,0.08710072,1620000000000 ,1620000000000 ,1620000000000 ,1616812291460 -1616812291489 ,112.5730288,26.89412861,63.79324341,180.4723479,180.9620556,9.649562,0.087156189,1620000000000 ,1620000000000 ,1620000000000 ,1616812291470 -1616812291498 ,112.5730287,26.89412774,63.7929039,180.4689601,180.9687958,9.655155,0.087207636,1620000000000 ,1620000000000 ,1620000000000 ,1616812291480 -1616812291510 ,112.5730287,26.89412687,63.7926445,180.465545,180.9746278,9.660433,0.087262158,1620000000000 ,1620000000000 ,1620000000000 ,1616812291490 -1616812291519 ,112.5730287,26.89412599,63.79244614,180.4622665,180.9686806,9.665432,0.087311572,1620000000000 ,1620000000000 ,1620000000000 ,1616812291500 -1616812291529 ,112.5730287,26.89412512,63.79229355,180.4614742,180.9519716,9.66847,0.087347323,1620000000000 ,1620000000000 ,1620000000000 ,1616812291510 -1616812291539 ,112.5730287,26.89412425,63.79222488,180.4582777,180.9410749,9.671272,0.087378565,1620000000000 ,1620000000000 ,1620000000000 ,1616812291520 -1616812291550 ,112.5730287,26.89412337,63.79223633,180.456174,180.9242212,9.67669,0.087425108,1620000000000 ,1620000000000 ,1620000000000 ,1616812291530 -1616812291561 ,112.5730287,26.8941225,63.79225159,180.4565565,180.916823,9.682508,0.087479072,1620000000000 ,1620000000000 ,1620000000000 ,1616812291540 -1616812291569 ,112.5730286,26.89412162,63.79221725,180.4569117,180.9185312,9.690556,0.087548654,1620000000000 ,1620000000000 ,1620000000000 ,1616812291550 -1616812291579 ,112.5730286,26.89412075,63.79211044,180.4542069,180.9119932,9.696899,0.087607223,1620000000000 ,1620000000000 ,1620000000000 ,1616812291560 -1616812291593 ,112.5730286,26.89411987,63.79193115,180.4542342,180.8935789,9.70285,0.087660321,1620000000000 ,1620000000000 ,1620000000000 ,1616812291570 -1616812291600 ,112.5730286,26.89411899,63.79168701,180.4519939,180.8877622,9.708261,0.087708527,1620000000000 ,1620000000000 ,1620000000000 ,1616812291580 -1616812291611 ,112.5730286,26.89411812,63.79140854,180.4521578,180.8873673,9.713143,0.087756274,1620000000000 ,1620000000000 ,1620000000000 ,1616812291590 -1616812291620 ,112.5730286,26.89411724,63.79109192,180.4544255,180.8787204,9.718139,0.087799307,1620000000000 ,1620000000000 ,1620000000000 ,1616812291600 -1616812291630 ,112.5730286,26.89411636,63.79071045,180.4580864,180.8698341,9.723818,0.087846413,1620000000000 ,1620000000000 ,1620000000000 ,1616812291610 -1616812291639 ,112.5730285,26.89411548,63.79021454,180.4599169,180.8548868,9.730305,0.087900307,1620000000000 ,1620000000000 ,1620000000000 ,1616812291620 -1616812291650 ,112.5730285,26.8941146,63.78959274,180.4611737,180.8485908,9.735431,0.087946381,1620000000000 ,1620000000000 ,1620000000000 ,1616812291630 -1616812291661 ,112.5730285,26.89411372,63.78890991,180.4601628,180.8549409,9.739057,0.087979603,1620000000000 ,1620000000000 ,1620000000000 ,1616812291640 -1616812291670 ,112.5730285,26.89411284,63.78821564,180.4590973,180.8758548,9.742101,0.08800883,1620000000000 ,1620000000000 ,1620000000000 ,1616812291650 -1616812291680 ,112.5730285,26.89411196,63.78755188,180.4598896,180.8851737,9.744031,0.088031953,1620000000000 ,1620000000000 ,1620000000000 ,1616812291660 -1616812291690 ,112.5730285,26.89411108,63.78693008,180.4611464,180.8764605,9.746312,0.088053731,1620000000000 ,1620000000000 ,1620000000000 ,1616812291670 -1616812291705 ,112.5730285,26.8941102,63.78630829,180.462731,180.8587015,9.750452,0.088085138,1620000000000 ,1620000000000 ,1620000000000 ,1616812291680 -1616812291714 ,112.5730285,26.89410932,63.78555298,180.4639877,180.8539332,9.757719,0.088138813,1620000000000 ,1620000000000 ,1620000000000 ,1616812291690 -1616812291724 ,112.5730284,26.89410844,63.78459549,180.464862,180.8702377,9.764228,0.08819182,1620000000000 ,1620000000000 ,1620000000000 ,1616812291700 -1616812291732 ,112.5730284,26.89410755,63.78347778,180.4628129,180.8952196,9.769694,0.088238049,1620000000000 ,1620000000000 ,1620000000000 ,1616812291710 -1616812291742 ,112.5730284,26.89410667,63.78227615,180.4622938,180.9025063,9.773494,0.088269659,1620000000000 ,1620000000000 ,1620000000000 ,1616812291720 -1616812291751 ,112.5730284,26.89410579,63.78104401,180.4627583,180.9046777,9.776788,0.088299924,1620000000000 ,1620000000000 ,1620000000000 ,1616812291730 -1616812291761 ,112.5730284,26.89410491,63.77978897,180.4622665,180.9098161,9.780421,0.088329663,1620000000000 ,1620000000000 ,1620000000000 ,1616812291740 -1616812291772 ,112.5730284,26.89410402,63.77848053,180.463414,180.9220396,9.785171,0.088367031,1620000000000 ,1620000000000 ,1620000000000 ,1616812291750 -1616812291782 ,112.5730284,26.89410314,63.77711868,180.464179,180.9345846,9.7926235,0.088424608,1620000000000 ,1620000000000 ,1620000000000 ,1616812291760 -1616812291792 ,112.5730283,26.89410225,63.77570343,180.4633047,180.9455593,9.79882,0.088481185,1620000000000 ,1620000000000 ,1620000000000 ,1616812291770 -1616812291802 ,112.5730283,26.89410137,63.7742424,180.4619933,180.9570276,9.805393,0.08853804,1620000000000 ,1620000000000 ,1620000000000 ,1616812291780 -1616812291812 ,112.5730283,26.89410048,63.77276611,180.4619933,180.9634285,9.810283,0.088585427,1620000000000 ,1620000000000 ,1620000000000 ,1616812291790 -1616812291822 ,112.5730283,26.8940996,63.7713089,180.4623758,180.9568793,9.814012,0.088623068,1620000000000 ,1620000000000 ,1620000000000 ,1616812291800 -1616812291832 ,112.5730283,26.89409871,63.76986694,180.4628949,180.9533896,9.817084,0.0886491,1620000000000 ,1620000000000 ,1620000000000 ,1616812291810 -1616812291842 ,112.5730283,26.89409782,63.7684288,180.4632501,180.9591566,9.821617,0.088688319,1620000000000 ,1620000000000 ,1620000000000 ,1616812291820 -1616812291851 ,112.5730283,26.89409694,63.76697922,180.4651079,180.9643616,9.825454,0.088722202,1620000000000 ,1620000000000 ,1620000000000 ,1616812291830 -1616812291861 ,112.5730282,26.89409605,63.76551437,180.4680312,180.9701143,9.829608,0.088759846,1620000000000 ,1620000000000 ,1620000000000 ,1616812291840 -1616812291873 ,112.5730282,26.89409516,63.76404572,180.4695338,180.9719886,9.834662,0.088800562,1620000000000 ,1620000000000 ,1620000000000 ,1616812291850 -1616812291884 ,112.5730282,26.89409427,63.76257706,180.4734134,180.9672015,9.839908,0.08884806,1620000000000 ,1620000000000 ,1620000000000 ,1616812291860 -1616812291895 ,112.5730282,26.89409338,63.76109314,180.474916,180.967765,9.844892,0.088892161,1620000000000 ,1620000000000 ,1620000000000 ,1616812291870 -1616812291904 ,112.5730282,26.89409249,63.75960922,180.4753805,180.9772883,9.8481045,0.088926531,1620000000000 ,1620000000000 ,1620000000000 ,1616812291880 -1616812291915 ,112.5730282,26.8940916,63.75817871,180.477129,180.9845043,9.851586,0.088956312,1620000000000 ,1620000000000 ,1620000000000 ,1616812291890 -1616812291923 ,112.5730281,26.89409072,63.75683594,180.4818828,180.9901994,9.854922,0.088992726,1620000000000 ,1620000000000 ,1620000000000 ,1616812291900 -1616812291936 ,112.5730281,26.89408983,63.75558853,180.4866366,180.9827382,9.856414,0.089015741,1620000000000 ,1620000000000 ,1620000000000 ,1616812291910 -1616812291943 ,112.5730281,26.89408893,63.75444031,180.4918003,180.9673566,9.857896,0.089031032,1620000000000 ,1620000000000 ,1620000000000 ,1616812291920 -1616812291954 ,112.5730281,26.89408804,63.75335693,180.4981114,180.9679704,9.860723,0.089056007,1620000000000 ,1620000000000 ,1620000000000 ,1616812291930 -1616812291962 ,112.5730281,26.89408715,63.75230026,180.5067994,180.9766748,9.8654585,0.08909669,1620000000000 ,1620000000000 ,1620000000000 ,1616812291940 -1616812291973 ,112.5730281,26.89408626,63.75127792,180.5141486,180.9890185,9.869503,0.089137512,1620000000000 ,1620000000000 ,1620000000000 ,1616812291950 -1616812291984 ,112.5730281,26.89408537,63.75033188,180.5196948,180.9985941,9.873051,0.089173192,1620000000000 ,1620000000000 ,1620000000000 ,1616812291970 -1616812291994 ,112.573028,26.89408448,63.74947357,180.5244486,181.0016727,9.875751,0.089204391,1620000000000 ,1620000000000 ,1620000000000 ,1616812291980 -1616812292004 ,112.573028,26.89408359,63.7486763,180.5316612,181.0042427,9.878144,0.089229677,1620000000000 ,1620000000000 ,1620000000000 ,1616812291980 -1616812292013 ,112.573028,26.89408269,63.74795151,180.5393657,181.0160472,9.880158,0.089251686,1620000000000 ,1620000000000 ,1620000000000 ,1616812291990 -1616812292027 ,112.573028,26.8940818,63.74731445,180.546032,181.0177438,9.882187,0.089274205,1620000000000 ,1620000000000 ,1620000000000 ,1616812292010 -1616812292036 ,112.573028,26.89408002,63.74620438,180.5690634,181.021081,9.8887415,0.178638537,1620000000000 ,1620000000000 ,1620000000000 ,1616812292020 -1616812292045 ,112.573028,26.89408002,63.74620438,180.5690634,-400,9.8887415,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812292030 -1616812292056 ,112.5730279,26.89407823,63.745121,180.5944717,181.0285,9.894723,0.17876905,1620000000000 ,1620000000000 ,1620000000000 ,1616812292040 -1616812292065 ,112.5730279,26.89407733,63.74454117,180.6064108,181.0340491,9.898318,0.089424076,1620000000000 ,1620000000000 ,1620000000000 ,1616812292050 -1616812292074 ,112.5730279,26.89407644,63.7439003,180.6206723,181.0417278,9.901525,0.089450966,1620000000000 ,1620000000000 ,1620000000000 ,1616812292060 -1616812292084 ,112.5730279,26.89407555,63.74317932,180.6340594,181.0531647,9.904052,0.089472644,1620000000000 ,1620000000000 ,1620000000000 ,1616812292070 -1616812292093 ,112.5730279,26.89407465,63.74240494,180.6481569,181.0611009,9.907209,0.089496635,1620000000000 ,1620000000000 ,1620000000000 ,1616812292080 -1616812292107 ,112.5730279,26.89407465,63.74240494,180.6481569,-400,9.907209,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812292090 -1616812292117 ,112.5730278,26.89407376,63.74160385,180.6628282,181.0582574,9.910175,0.089523486,1620000000000 ,1620000000000 ,1620000000000 ,1616812292090 -1616812292127 ,112.5730278,26.89407196,63.73990631,180.6919521,181.0770305,9.918378,0.179144525,1620000000000 ,1620000000000 ,1620000000000 ,1616812292110 -1616812292147 ,112.5730278,26.89407107,63.73899078,180.7083719,181.10642,9.92153,0.08962172,1620000000000 ,1620000000000 ,1620000000000 ,1616812292120 -1616812292149 ,112.5730278,26.89407107,63.73899078,180.7242453,-400,9.924211,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812292130 -1616812292162 ,112.5730278,26.89406928,63.73707962,180.7437796,181.1262989,9.926665,0.179315717,1620000000000 ,1620000000000 ,1620000000000 ,1616812292140 -1616812292170 ,112.5730277,26.89406838,63.73608398,180.7612922,181.146921,9.928105,0.089680295,1620000000000 ,1620000000000 ,1620000000000 ,1616812292150 -1616812292178 ,112.5730277,26.89406748,63.73504257,180.7824111,181.1769172,9.930471,0.089698167,1620000000000 ,1620000000000 ,1620000000000 ,1616812292160 -1616812292190 ,112.5730277,26.89406658,63.7339592,180.8011805,181.2042095,9.933464,0.089723531,1620000000000 ,1620000000000 ,1620000000000 ,1616812292170 -1616812292198 ,112.5730277,26.89406569,63.73284149,180.8176549,181.2243884,9.936591,0.089747394,1620000000000 ,1620000000000 ,1620000000000 ,1616812292180 -1616812292208 ,112.5730277,26.89406479,63.73170471,180.8333097,181.2386752,9.941667,0.089788939,1620000000000 ,1620000000000 ,1620000000000 ,1616812292190 -1616812292218 ,112.5730276,26.89406389,63.72951889,180.8703293,181.3166488,9.921023,0.089541645,1620000000000 ,1620000000000 ,1620000000000 ,1616812292200 -1616812292228 ,112.5730276,26.894063,63.72615051,180.8878693,181.4643359,9.923833,0.089065144,1620000000000 ,1620000000000 ,1620000000000 ,1616812292210 -1616812292239 ,112.5730276,26.89406211,63.72279358,180.9054912,181.4875337,9.924426,0.089076646,1620000000000 ,1620000000000 ,1620000000000 ,1616812292220 -1616812292250 ,112.5730276,26.89406122,63.71947861,180.9240966,181.5049118,9.925667,0.089085719,1620000000000 ,1620000000000 ,1620000000000 ,1616812292230 -1616812292258 ,112.5730276,26.89406033,63.71617889,180.9410081,181.5155841,9.928497,0.089108571,1620000000000 ,1620000000000 ,1620000000000 ,1616812292240 -1616812292268 ,112.5730275,26.89405944,63.71282196,180.9599141,181.5399501,9.932577,0.08914174,1620000000000 ,1620000000000 ,1620000000000 ,1616812292250 -1616812292278 ,112.5730275,26.89405855,63.70938873,180.9781644,181.5836197,9.9359665,0.089171303,1620000000000 ,1620000000000 ,1620000000000 ,1616812292260 -1616812292289 ,112.5730275,26.89405766,63.70591736,180.9937645,181.616579,9.93867,0.089192963,1620000000000 ,1620000000000 ,1620000000000 ,1616812292270 -1616812292299 ,112.5730275,26.89405677,63.70245361,181.0084904,181.6293426,9.941278,0.089218495,1620000000000 ,1620000000000 ,1620000000000 ,1616812292280 -1616812292311 ,112.5730274,26.89405587,63.69900513,181.025402,181.6423764,9.944012,0.089243237,1620000000000 ,1620000000000 ,1620000000000 ,1616812292290 -1616812292319 ,112.5730274,26.89405498,63.69553757,181.0396634,181.6639129,9.946697,0.089266711,1620000000000 ,1620000000000 ,1620000000000 ,1616812292300 -1616812292329 ,112.5730274,26.89405409,63.69206238,181.0537609,181.6930361,9.948009,0.089280451,1620000000000 ,1620000000000 ,1620000000000 ,1616812292310 -1616812292339 ,112.5730274,26.8940532,63.68862534,181.0682409,181.7140499,9.94986,0.08929852,1620000000000 ,1620000000000 ,1620000000000 ,1616812292320 -1616812292350 ,112.5730273,26.8940523,63.68525314,181.0812729,181.7255025,9.951658,0.089318256,1620000000000 ,1620000000000 ,1620000000000 ,1616812292330 -1616812292359 ,112.5730273,26.89405141,63.68193436,181.0961354,181.7394218,9.953775,0.089337723,1620000000000 ,1620000000000 ,1620000000000 ,1616812292340 -1616812292369 ,112.5730273,26.89405052,63.67861938,181.1108066,181.7687389,9.956528,0.089363688,1620000000000 ,1620000000000 ,1620000000000 ,1616812292350 -1616812292379 ,112.5730272,26.89404962,63.67530441,181.1252866,181.8039344,9.962788,0.089407589,1620000000000 ,1620000000000 ,1620000000000 ,1616812292360 -1616812292390 ,112.5730272,26.89404873,63.67201233,181.1365974,181.8273258,9.966946,0.089464519,1620000000000 ,1620000000000 ,1620000000000 ,1616812292370 -1616812292401 ,112.5730272,26.89404784,63.66874313,181.1469247,181.8375579,9.964179,0.089449006,1620000000000 ,1620000000000 ,1620000000000 ,1616812292380 -1616812292410 ,112.5730272,26.89404694,63.66546249,181.1575251,181.8352773,9.964395,0.089442132,1620000000000 ,1620000000000 ,1620000000000 ,1616812292390 -1616812292420 ,112.5730271,26.89404605,63.66214371,181.1679343,181.8650022,9.96696,0.089457081,1620000000000 ,1620000000000 ,1620000000000 ,1616812292400 -1616812292430 ,112.5730271,26.89404515,63.65882111,181.1779611,181.8847672,9.969536,0.089480722,1620000000000 ,1620000000000 ,1620000000000 ,1616812292410 -1616812292441 ,112.5730271,26.89404426,63.65558243,181.1877419,181.8850244,9.972562,0.089514915,1620000000000 ,1620000000000 ,1620000000000 ,1616812292420 -1616812292452 ,112.573027,26.89404336,63.65245056,181.1974681,181.8875241,9.974797,0.089538663,1620000000000 ,1620000000000 ,1620000000000 ,1616812292430 -1616812292461 ,112.573027,26.89404247,63.64938354,181.2050633,181.8895941,9.978303,0.089569903,1620000000000 ,1620000000000 ,1620000000000 ,1616812292440 -1616812292472 ,112.573027,26.89404157,63.64735794,181.2148441,181.8409961,9.981291,0.089880065,1620000000000 ,1620000000000 ,1620000000000 ,1616812292450 -1616812292481 ,112.573027,26.89404067,63.6463356,181.2231496,181.8021372,9.983276,0.090182726,1620000000000 ,1620000000000 ,1620000000000 ,1616812292460 -1616812292491 ,112.5730269,26.89403977,63.64530563,181.2306082,181.8174976,9.985029,0.090196681,1620000000000 ,1620000000000 ,1620000000000 ,1616812292470 -1616812292500 ,112.5730269,26.89403887,63.64428329,181.2349795,181.8266108,9.985755,0.090205675,1620000000000 ,1620000000000 ,1620000000000 ,1616812292480 -1616812292512 ,112.5730269,26.89403796,63.64324951,181.2399792,181.8383299,9.987662,0.090219999,1620000000000 ,1620000000000 ,1620000000000 ,1616812292490 -1616812292521 ,112.5730268,26.89403706,63.64219284,181.2453887,181.8579525,9.9900465,0.090240401,1620000000000 ,1620000000000 ,1620000000000 ,1616812292500 -1616812292532 ,112.5730268,26.89403616,63.6411171,181.25129,181.8681721,9.992978,0.090263181,1620000000000 ,1620000000000 ,1620000000000 ,1616812292510 -1616812292542 ,112.5730268,26.89403526,63.64006042,181.2566995,181.8710811,9.997537,0.090304261,1620000000000 ,1620000000000 ,1620000000000 ,1616812292520 -1616812292554 ,112.5730267,26.89403436,63.63901138,181.2630652,181.8706953,10.00141,0.090340076,1620000000000 ,1620000000000 ,1620000000000 ,1616812292530 -1616812292561 ,112.5730267,26.89403345,63.63794327,181.2680103,181.8796437,10.006496,0.090382829,1620000000000 ,1620000000000 ,1620000000000 ,1616812292540 -1616812292571 ,112.5730267,26.89403255,63.63683701,181.2712068,181.8981421,10.008803,0.09040956,1620000000000 ,1620000000000 ,1620000000000 ,1616812292550 -1616812292581 ,112.5730267,26.89403164,63.63570404,181.2742121,181.9074098,10.010949,0.090427791,1620000000000 ,1620000000000 ,1620000000000 ,1616812292560 -1616812292593 ,112.5730266,26.89403074,63.63458633,181.2780643,181.9051555,10.013049,0.090448189,1620000000000 ,1620000000000 ,1620000000000 ,1616812292570 -1616812292602 ,112.5730266,26.89402984,63.63349152,181.2791571,181.9075477,10.01564,0.090469154,1620000000000 ,1620000000000 ,1620000000000 ,1616812292580 -1616812292612 ,112.5730266,26.89402893,63.63241959,181.2807691,181.9215948,10.019592,0.090503688,1620000000000 ,1620000000000 ,1620000000000 ,1616812292590 -1616812292622 ,112.5730265,26.89402803,63.63135147,181.2841842,181.9294609,10.0229645,0.090537726,1620000000000 ,1620000000000 ,1620000000000 ,1616812292600 -1616812292633 ,112.5730265,26.89402712,63.63027954,181.2853863,181.9266715,10.025405,0.090562914,1620000000000 ,1620000000000 ,1620000000000 ,1616812292610 -1616812292642 ,112.5730265,26.89402622,63.62919998,181.2889107,181.9045943,10.025512,0.090565733,1620000000000 ,1620000000000 ,1620000000000 ,1616812292620 -1616812292652 ,112.5730264,26.89402531,63.62801743,181.2908504,181.8794001,10.03543,0.0906219,1620000000000 ,1620000000000 ,1620000000000 ,1616812292630 -1616812292662 ,112.5730264,26.89402441,63.62665558,181.2953857,181.9197649,10.033957,0.090633616,1620000000000 ,1620000000000 ,1620000000000 ,1616812292640 -1616812292672 ,112.5730264,26.8940235,63.62514496,181.2979538,181.9473891,10.043206,0.09068347,1620000000000 ,1620000000000 ,1620000000000 ,1616812292650 -1616812292682 ,112.5730264,26.89402259,63.62368774,181.297626,181.9247473,10.045654,0.090730045,1620000000000 ,1620000000000 ,1620000000000 ,1616812292660 -1616812292693 ,112.5730263,26.89402169,63.62244415,181.294648,181.8798924,10.045075,0.090729823,1620000000000 ,1620000000000 ,1620000000000 ,1616812292670 -1616812292702 ,112.5730263,26.89402078,63.62128448,181.2923531,181.8808393,10.044299,0.090737333,1620000000000 ,1620000000000 ,1620000000000 ,1616812292680 -1616812292713 ,112.5730263,26.89401987,63.62009048,181.2904953,181.8972803,10.043157,0.090717804,1620000000000 ,1620000000000 ,1620000000000 ,1616812292690 -1616812292727 ,112.5730262,26.89401896,63.61881638,181.2903313,181.9080419,10.049574,0.090754486,1620000000000 ,1620000000000 ,1620000000000 ,1616812292700 -1616812292734 ,112.5730262,26.89401806,63.6174736,181.2907138,181.8993203,10.057707,0.090824498,1620000000000 ,1620000000000 ,1620000000000 ,1616812292710 -1616812292744 ,112.5730262,26.89401715,63.61608505,181.2897576,181.8795886,10.063276,0.090881051,1620000000000 ,1620000000000 ,1620000000000 ,1616812292720 -1616812292757 ,112.5730261,26.89401624,63.61475372,181.2870255,181.8731722,10.060943,0.090879834,1620000000000 ,1620000000000 ,1620000000000 ,1616812292740 -1616812292764 ,112.5730261,26.89401533,63.61352158,181.2830367,181.8634733,10.058622,0.090856875,1620000000000 ,1620000000000 ,1620000000000 ,1616812292750 -1616812292773 ,112.5730261,26.89401442,63.61235809,181.2802227,181.8668459,10.062474,0.090881898,1620000000000 ,1620000000000 ,1620000000000 ,1616812292760 -1616812292784 ,112.573026,26.89401261,63.6099472,181.2755508,181.8716424,10.072061,0.181896732,1620000000000 ,1620000000000 ,1620000000000 ,1616812292770 -1616812292793 ,112.573026,26.8940117,63.60876083,181.270032,181.8545192,10.074012,0.090992978,1620000000000 ,1620000000000 ,1620000000000 ,1616812292780 -1616812292804 ,112.573026,26.8940117,63.60876083,181.270032,-400,10.074012,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812292790 -1616812292815 ,112.5730259,26.89400988,63.60655594,181.2597321,181.8516726,10.077282,0.182023744,1620000000000 ,1620000000000 ,1620000000000 ,1616812292800 -1616812292826 ,112.5730259,26.89400897,63.60549545,181.2538581,181.8727964,10.079362,0.091046255,1620000000000 ,1620000000000 ,1620000000000 ,1616812292810 -1616812292834 ,112.5730259,26.89400806,63.60447311,181.2479022,181.8839577,10.08268,0.091073582,1620000000000 ,1620000000000 ,1620000000000 ,1616812292820 -1616812292844 ,112.5730258,26.89400715,63.60349655,181.2426293,181.8674247,10.084807,0.091099564,1620000000000 ,1620000000000 ,1620000000000 ,1616812292830 -1616812292856 ,112.5730258,26.89400624,63.60253143,181.2361543,181.8558003,10.0872755,0.091119758,1620000000000 ,1620000000000 ,1620000000000 ,1616812292840 -1616812292865 ,112.5730258,26.89400532,63.60152817,181.2285045,181.8520844,10.091066,0.091150461,1620000000000 ,1620000000000 ,1620000000000 ,1616812292850 -1616812292875 ,112.5730258,26.89400441,63.60045624,181.2198984,181.8583687,10.095122,0.091184009,1620000000000 ,1620000000000 ,1620000000000 ,1616812292860 -1616812292885 ,112.5730257,26.8940035,63.59937286,181.2102542,181.8592063,10.0980015,0.091211187,1620000000000 ,1620000000000 ,1620000000000 ,1616812292870 -1616812292895 ,112.5730257,26.89400259,63.59830475,181.200528,181.8538417,10.100942,0.091238749,1620000000000 ,1620000000000 ,1620000000000 ,1616812292880 -1616812292905 ,112.5730257,26.89400168,63.59725189,181.1923045,181.8440913,10.102838,0.091260529,1620000000000 ,1620000000000 ,1620000000000 ,1616812292890 -1616812292916 ,112.5730256,26.89400077,63.59619141,181.1849279,181.8305408,10.104469,0.091272099,1620000000000 ,1620000000000 ,1620000000000 ,1616812292900 -1616812292926 ,112.5730256,26.89399985,63.59510422,181.17583,181.8207348,10.106975,0.09129248,1620000000000 ,1620000000000 ,1620000000000 ,1616812292910 -1616812292936 ,112.5730256,26.89399894,63.59397507,181.1660219,181.8135426,10.110351,0.091317537,1620000000000 ,1620000000000 ,1620000000000 ,1616812292920 -1616812292950 ,112.5730256,26.89399803,63.59279251,181.1553122,181.81319,10.1144905,0.091352127,1620000000000 ,1620000000000 ,1620000000000 ,1616812292930 -1616812292956 ,112.5730255,26.89399711,63.5915947,181.1453128,181.8144218,10.11797,0.091384025,1620000000000 ,1620000000000 ,1620000000000 ,1616812292940 -1616812292965 ,112.5730255,26.8939962,63.59040451,181.134685,181.8052232,10.1200285,0.091405854,1620000000000 ,1620000000000 ,1620000000000 ,1616812292950 -1616812292975 ,112.5730255,26.89399529,63.58921814,181.1253413,181.7897929,10.122166,0.09142368,1620000000000 ,1620000000000 ,1620000000000 ,1616812292960 -1616812292986 ,112.5730254,26.89399437,63.58803558,181.1148774,181.7705544,10.124666,0.09144347,1620000000000 ,1620000000000 ,1620000000000 ,1616812292970 -1616812292996 ,112.5730254,26.89399346,63.58686066,181.1047141,181.7592471,10.1270685,0.091467581,1620000000000 ,1620000000000 ,1620000000000 ,1616812292980 -1616812293005 ,112.5730254,26.89399254,63.58568954,181.0958622,181.7527412,10.129278,0.091486546,1620000000000 ,1620000000000 ,1620000000000 ,1616812292990 -1616812293017 ,112.5730254,26.89399163,63.58451843,181.0867097,181.7421546,10.13106,0.091504803,1620000000000 ,1620000000000 ,1620000000000 ,1616812293000 -1616812293027 ,112.5730253,26.89399071,63.58335114,181.0779398,181.7173736,10.132207,0.091514951,1620000000000 ,1620000000000 ,1620000000000 ,1616812293010 -1616812293036 ,112.5730253,26.8939898,63.58217239,181.0681863,181.6998315,10.1349,0.09153372,1620000000000 ,1620000000000 ,1620000000000 ,1616812293020 -1616812293047 ,112.5730253,26.89398888,63.58096695,181.0565749,181.6924885,10.138909,0.091566645,1620000000000 ,1620000000000 ,1620000000000 ,1616812293030 -1616812293057 ,112.5730252,26.89398797,63.57971191,181.048488,181.6837102,10.141881,0.091592794,1620000000000 ,1620000000000 ,1620000000000 ,1616812293040 -1616812293069 ,112.5730252,26.89398705,63.57846069,181.0399366,181.6800185,10.144226,0.091615869,1620000000000 ,1620000000000 ,1620000000000 ,1616812293050 -1616812293079 ,112.5730252,26.89398614,63.57727814,181.0299099,181.6571167,10.144881,0.091627175,1620000000000 ,1620000000000 ,1620000000000 ,1616812293060 -1616812293090 ,112.5730252,26.89398522,63.57619095,181.0201017,181.6276674,10.145851,0.09163777,1620000000000 ,1620000000000 ,1620000000000 ,1616812293070 -1616812293100 ,112.5730251,26.8939843,63.57517624,181.0101023,181.6055785,10.148561,0.091660712,1620000000000 ,1620000000000 ,1620000000000 ,1616812293080 -1616812293112 ,112.5730251,26.89398339,63.57417297,181.003518,181.5974504,10.151396,0.091687096,1620000000000 ,1620000000000 ,1620000000000 ,1616812293090 -1616812293121 ,112.5730251,26.89398247,63.57316971,180.9946661,181.586617,10.154484,0.091714222,1620000000000 ,1620000000000 ,1620000000000 ,1616812293100 -1616812293129 ,112.5730251,26.89398155,63.57220078,180.9835739,181.5686539,10.155844,0.091734207,1620000000000 ,1620000000000 ,1620000000000 ,1616812293110 -1616812293138 ,112.573025,26.89398064,63.57129288,180.9755962,181.5467732,10.156826,0.091744778,1620000000000 ,1620000000000 ,1620000000000 ,1616812293120 -1616812293149 ,112.573025,26.89397972,63.57040024,180.9657607,181.5255764,10.157904,0.091755214,1620000000000 ,1620000000000 ,1620000000000 ,1616812293130 -1616812293158 ,112.573025,26.8939788,63.56949997,180.9574006,181.5135938,10.1600485,0.091769821,1620000000000 ,1620000000000 ,1620000000000 ,1616812293140 -1616812293168 ,112.573025,26.89397789,63.56861877,180.9467182,181.4987576,10.161615,0.091788507,1620000000000 ,1620000000000 ,1620000000000 ,1616812293150 -1616812293178 ,112.5730249,26.89397697,63.56780624,180.9365002,181.4793804,10.163477,0.09180655,1620000000000 ,1620000000000 ,1620000000000 ,1616812293160 -1616812293188 ,112.5730249,26.89397605,63.56705093,180.9271838,181.465235,10.166363,0.091832685,1620000000000 ,1620000000000 ,1620000000000 ,1616812293170 -1616812293199 ,112.5730249,26.89397513,63.56630707,180.9170205,181.4536185,10.167932,0.091851307,1620000000000 ,1620000000000 ,1620000000000 ,1616812293180 -1616812293208 ,112.5730249,26.89397421,63.56554794,180.9073763,181.4421207,10.168712,0.091860538,1620000000000 ,1620000000000 ,1620000000000 ,1616812293190 -1616812293218 ,112.5730249,26.89397329,63.56438065,180.9141518,181.429489,10.167568,0.091913888,1620000000000 ,1620000000000 ,1620000000000 ,1616812293200 -1616812293228 ,112.5730248,26.89397237,63.56267929,180.904371,181.4428185,10.169863,0.091950609,1620000000000 ,1620000000000 ,1620000000000 ,1616812293210 -1616812293239 ,112.5730248,26.89397146,63.56093979,180.8945902,181.4342405,10.17286,0.091975432,1620000000000 ,1620000000000 ,1620000000000 ,1616812293220 -1616812293248 ,112.5730248,26.89397054,63.55913925,180.88776,181.4393723,10.175281,0.09199805,1620000000000 ,1620000000000 ,1620000000000 ,1616812293230 -1616812293259 ,112.5730248,26.89396962,63.5573082,180.8781431,181.434075,10.175772,0.092005691,1620000000000 ,1620000000000 ,1620000000000 ,1616812293240 -1616812293270 ,112.5730247,26.8939687,63.55547714,180.8672967,181.4175283,10.176948,0.092013999,1620000000000 ,1620000000000 ,1620000000000 ,1616812293250 -1616812293278 ,112.5730247,26.89396778,63.55364609,180.8552483,181.4072294,10.1786995,0.092028589,1620000000000 ,1620000000000 ,1620000000000 ,1616812293260 -1616812293288 ,112.5730247,26.89396686,63.55181503,180.8443473,181.4117088,10.181118,0.092049621,1620000000000 ,1620000000000 ,1620000000000 ,1616812293270 -1616812293301 ,112.5730247,26.89396594,63.55002975,180.8316705,181.4156681,10.182354,0.0920677,1620000000000 ,1620000000000 ,1620000000000 ,1616812293280 -1616812293313 ,112.5730246,26.89396501,63.5483284,180.820469,181.4075438,10.18249,0.092075956,1620000000000 ,1620000000000 ,1620000000000 ,1616812293290 -1616812293319 ,112.5730246,26.89396409,63.54668808,180.8068632,181.3938157,10.1824045,0.092077634,1620000000000 ,1620000000000 ,1620000000000 ,1616812293300 -1616812293329 ,112.5730246,26.89396317,63.54504013,180.7950333,181.3840699,10.183676,0.092087694,1620000000000 ,1620000000000 ,1620000000000 ,1616812293310 -1616812293339 ,112.5730246,26.89396225,63.54333115,180.7832034,181.384718,10.186392,0.09210658,1620000000000 ,1620000000000 ,1620000000000 ,1616812293320 -1616812293349 ,112.5730246,26.89396133,63.54156494,180.7709637,181.3812405,10.189057,0.092129909,1620000000000 ,1620000000000 ,1620000000000 ,1616812293330 -1616812293360 ,112.5730245,26.89396041,63.53977203,180.7564564,181.3634383,10.190569,0.092146187,1620000000000 ,1620000000000 ,1620000000000 ,1616812293340 -1616812293370 ,112.5730245,26.89395949,63.53792191,180.7442714,181.3437852,10.191833,0.092154389,1620000000000 ,1620000000000 ,1620000000000 ,1616812293350 -1616812293381 ,112.5730245,26.89395857,63.53598785,180.7316765,181.325522,10.193733,0.092165749,1620000000000 ,1620000000000 ,1620000000000 ,1616812293360 -1616812293392 ,112.5730245,26.89395765,63.53395844,180.7203384,181.3080813,10.196346,0.092184779,1620000000000 ,1620000000000 ,1620000000000 ,1616812293370 -1616812293402 ,112.5730245,26.89395672,63.5318718,180.7065141,181.2878835,10.197475,0.092195004,1620000000000 ,1620000000000 ,1620000000000 ,1616812293380 -1616812293411 ,112.5730244,26.8939558,63.52978897,180.6945476,181.2671986,10.198317,0.092202191,1620000000000 ,1620000000000 ,1620000000000 ,1616812293390 -1616812293420 ,112.5730244,26.89395488,63.52774048,180.6810511,181.258216,10.199061,0.092213677,1620000000000 ,1620000000000 ,1620000000000 ,1616812293400 -1616812293430 ,112.5730244,26.89395396,63.52571106,180.6693032,181.2397235,10.1999235,0.092220139,1620000000000 ,1620000000000 ,1620000000000 ,1616812293410 -1616812293441 ,112.5730244,26.89395304,63.52365494,180.6573367,181.2156841,10.201521,0.092231341,1620000000000 ,1620000000000 ,1620000000000 ,1616812293420 -1616812293450 ,112.5730244,26.89395211,63.52151108,180.6456161,181.1891182,10.20474,0.09225195,1620000000000 ,1620000000000 ,1620000000000 ,1616812293430 -1616812293460 ,112.5730243,26.89395119,63.51927185,180.6334037,181.174368,10.208013,0.09227771,1620000000000 ,1620000000000 ,1620000000000 ,1616812293440 -1616812293471 ,112.5730243,26.89395027,63.51742935,180.6203717,181.1627309,10.209222,0.092250741,1620000000000 ,1620000000000 ,1620000000000 ,1616812293450 -1616812293480 ,112.5730243,26.89394935,63.51604843,180.6076403,181.1445495,10.209183,0.092209709,1620000000000 ,1620000000000 ,1620000000000 ,1616812293460 -1616812293491 ,112.5730243,26.89394843,63.51470566,180.5978048,181.120018,10.208823,0.092207613,1620000000000 ,1620000000000 ,1620000000000 ,1616812293470 -1616812293503 ,112.5730243,26.8939475,63.51334381,180.5869585,181.0923505,10.210479,0.092215555,1620000000000 ,1620000000000 ,1620000000000 ,1616812293480 -1616812293513 ,112.5730242,26.89394658,63.51190186,180.5761668,181.0877035,10.214154,0.092242889,1620000000000 ,1620000000000 ,1620000000000 ,1616812293490 -1616812293521 ,112.5730242,26.89394566,63.51039505,180.5630801,181.0985099,10.218035,0.092271998,1620000000000 ,1620000000000 ,1620000000000 ,1616812293500 -1616812293532 ,112.5730242,26.89394474,63.50888443,180.5510317,181.0995489,10.219005,0.092292493,1620000000000 ,1620000000000 ,1620000000000 ,1616812293510 -1616812293543 ,112.5730242,26.89394381,63.50745773,180.5405678,181.0816062,10.217464,0.092287937,1620000000000 ,1620000000000 ,1620000000000 ,1616812293520 -1616812293552 ,112.5730242,26.89394289,63.5061264,180.5281915,181.0587042,10.215934,0.092274766,1620000000000 ,1620000000000 ,1620000000000 ,1616812293530 -1616812293561 ,112.5730242,26.89394197,63.50480652,180.5170446,181.0471879,10.216257,0.092275313,1620000000000 ,1620000000000 ,1620000000000 ,1616812293540 -1616812293572 ,112.5730241,26.89394105,63.50339508,180.5058431,181.0464056,10.218607,0.092288418,1620000000000 ,1620000000000 ,1620000000000 ,1616812293550 -1616812293584 ,112.5730241,26.89394012,63.50191116,180.4930843,181.0528593,10.221401,0.092310941,1620000000000 ,1620000000000 ,1620000000000 ,1616812293560 -1616812293593 ,112.5730241,26.8939392,63.50044632,180.4805441,181.0358523,10.221991,0.09232188,1620000000000 ,1620000000000 ,1620000000000 ,1616812293570 -1616812293603 ,112.5730241,26.89393828,63.49907684,180.4656816,181.0130512,10.220824,0.092319576,1620000000000 ,1620000000000 ,1620000000000 ,1616812293580 -1616812293612 ,112.5730241,26.89393735,63.49779129,180.4527316,180.9880011,10.2212305,0.092323155,1620000000000 ,1620000000000 ,1620000000000 ,1616812293590 -1616812293622 ,112.5730241,26.89393643,63.49651337,180.441011,180.9753334,10.221763,0.092329124,1620000000000 ,1620000000000 ,1620000000000 ,1616812293600 -1616812293632 ,112.573024,26.89393551,63.49519348,180.427979,180.9653088,10.22276,0.092335098,1620000000000 ,1620000000000 ,1620000000000 ,1616812293610 -1616812293642 ,112.573024,26.89393458,63.49383926,180.4143732,180.943841,10.223317,0.092341285,1620000000000 ,1620000000000 ,1620000000000 ,1616812293620 -1616812293654 ,112.573024,26.89393366,63.49248505,180.4039367,180.9188348,10.223209,0.09234172,1620000000000 ,1620000000000 ,1620000000000 ,1616812293630 -1616812293662 ,112.573024,26.89393274,63.49112701,180.391779,180.8942413,10.222738,0.092337097,1620000000000 ,1620000000000 ,1620000000000 ,1616812293640 -1616812293674 ,112.573024,26.89393181,63.4897995,180.3814244,180.880887,10.223357,0.092342062,1620000000000 ,1620000000000 ,1620000000000 ,1616812293650 -1616812293682 ,112.573024,26.89393089,63.48853302,180.3705234,180.8655638,10.225248,0.09236014,1620000000000 ,1620000000000 ,1620000000000 ,1616812293660 -1616812293692 ,112.573024,26.89392997,63.4873085,180.357027,180.8491346,10.226888,0.092377233,1620000000000 ,1620000000000 ,1620000000000 ,1616812293670 -1616812293703 ,112.5730239,26.89392904,63.48604965,180.3452244,180.8282796,10.228294,0.092389657,1620000000000 ,1620000000000 ,1620000000000 ,1616812293680 -1616812293713 ,112.5730239,26.89392812,63.48474121,180.3334765,180.8155629,10.228822,0.092395966,1620000000000 ,1620000000000 ,1620000000000 ,1616812293690 -1616812293722 ,112.5730239,26.8939272,63.48342896,180.3194609,180.7972466,10.229213,0.092398806,1620000000000 ,1620000000000 ,1620000000000 ,1616812293700 -1616812293733 ,112.5730239,26.89392627,63.48212051,180.3064289,180.7768308,10.228539,0.092395234,1620000000000 ,1620000000000 ,1620000000000 ,1616812293710 -1616812293744 ,112.5730239,26.89392535,63.48078918,180.2945717,180.7656968,10.231243,0.092409304,1620000000000 ,1620000000000 ,1620000000000 ,1616812293720 -1616812293754 ,112.5730239,26.89392442,63.47940063,180.2827145,180.7639648,10.234296,0.092437821,1620000000000 ,1620000000000 ,1620000000000 ,1616812293730 -1616812293763 ,112.5730239,26.8939235,63.47795868,180.2713218,180.7561725,10.233464,0.092436072,1620000000000 ,1620000000000 ,1620000000000 ,1616812293750 -1616812293773 ,112.5730239,26.89392257,63.47648621,180.2600383,180.7340425,10.233808,0.092434335,1620000000000 ,1620000000000 ,1620000000000 ,1616812293760 -1616812293784 ,112.5730238,26.89392165,63.47497559,180.24911,180.737147,10.235239,0.092440844,1620000000000 ,1620000000000 ,1620000000000 ,1616812293770 -1616812293793 ,112.5730238,26.89392073,63.47339249,180.2391652,180.7300243,10.236851,0.092453213,1620000000000 ,1620000000000 ,1620000000000 ,1616812293780 -1616812293805 ,112.5730238,26.8939198,63.47172165,180.2264611,180.723373,10.238523,0.092464896,1620000000000 ,1620000000000 ,1620000000000 ,1616812293780 -1616812293814 ,112.5730238,26.89391795,63.4683342,180.2035936,180.7079805,10.238504,0.184937906,1620000000000 ,1620000000000 ,1620000000000 ,1616812293800 -1616812293824 ,112.5730238,26.89391795,63.4683342,180.2035936,-400,10.238504,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812293810 -1616812293834 ,112.5730238,26.89391703,63.46673965,180.1923374,180.6813231,10.237958,0.09246684,1620000000000 ,1620000000000 ,1620000000000 ,1616812293820 -1616812293844 ,112.5730238,26.89391518,63.46363831,180.1741691,180.6768836,10.237614,0.184933051,1620000000000 ,1620000000000 ,1620000000000 ,1616812293830 -1616812293856 ,112.5730238,26.89391425,63.46200943,180.1646069,180.6631103,10.238304,0.092464731,1620000000000 ,1620000000000 ,1620000000000 ,1616812293840 -1616812293864 ,112.5730237,26.89391333,63.46030807,180.1536239,180.6482944,10.240545,0.092479456,1620000000000 ,1620000000000 ,1620000000000 ,1616812293850 -1616812293876 ,112.5730237,26.8939124,63.45859146,180.141193,180.6371047,10.241047,0.092484114,1620000000000 ,1620000000000 ,1620000000000 ,1616812293860 -1616812293884 ,112.5730237,26.89391148,63.45689011,180.1297456,180.6249749,10.241284,0.092486702,1620000000000 ,1620000000000 ,1620000000000 ,1616812293870 -1616812293894 ,112.5730237,26.89391055,63.45521545,180.1218772,180.6173591,10.24146,0.092491607,1620000000000 ,1620000000000 ,1620000000000 ,1616812293880 -1616812293905 ,112.5730237,26.89391055,63.45521545,180.1218772,-400,10.24146,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812293890 -1616812293915 ,112.5730237,26.8939087,63.45204926,180.1056487,180.5679248,10.237725,0.184943207,1620000000000 ,1620000000000 ,1620000000000 ,1616812293900 -1616812293924 ,112.5730237,26.89390778,63.45056534,180.0991737,180.5161077,10.238968,0.09246888,1620000000000 ,1620000000000 ,1620000000000 ,1616812293910 -1616812293936 ,112.5730237,26.89390686,63.4490242,180.0952395,180.5098377,10.241513,0.092487151,1620000000000 ,1620000000000 ,1620000000000 ,1616812293920 -1616812293945 ,112.5730237,26.89390593,63.44736862,180.0912506,180.5150741,10.242916,0.092497156,1620000000000 ,1620000000000 ,1620000000000 ,1616812293930 -1616812293955 ,112.5730237,26.89390501,63.44566727,180.0871252,180.4975094,10.241574,0.092488484,1620000000000 ,1620000000000 ,1620000000000 ,1616812293940 -1616812293967 ,112.5730237,26.89390408,63.44402695,180.0786011,180.4595824,10.240634,0.092477718,1620000000000 ,1620000000000 ,1620000000000 ,1616812293950 -1616812293982 ,112.5730236,26.89390316,63.44244003,180.0738473,180.4443918,10.24167,0.092482786,1620000000000 ,1620000000000 ,1620000000000 ,1616812293960 -1616812293985 ,112.5730236,26.89390223,63.4408226,180.07229,180.4461591,10.241154,0.092479988,1620000000000 ,1620000000000 ,1620000000000 ,1616812293970 -1616812294009 ,112.5730236,26.89390131,63.43916321,180.0690935,-400,10.243902,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812293980 -1616812293997 ,112.5730236,26.89390131,63.43916321,180.0690935,180.4545245,10.243902,0.092493039,1620000000000 ,1620000000000 ,1620000000000 ,1616812293980 -1616812294018 ,112.5730236,26.89389946,63.43579483,180.0652959,180.4440326,10.24448,0.184963928,1620000000000 ,1620000000000 ,1620000000000 ,1616812294000 -1616812294026 ,112.5730236,26.89389853,63.43405151,180.0610612,180.4258264,10.245531,0.092508175,1620000000000 ,1620000000000 ,1620000000000 ,1616812294010 -1616812294037 ,112.5730236,26.89389761,63.43232727,180.0555971,180.4303634,10.2464905,0.092509956,1620000000000 ,1620000000000 ,1620000000000 ,1616812294020 -1616812294046 ,112.5730236,26.89389668,63.43068314,180.0536026,180.4471471,10.244624,0.092507096,1620000000000 ,1620000000000 ,1620000000000 ,1616812294030 -1616812294057 ,112.5730236,26.89389576,63.42908478,180.0517722,180.4501188,10.242323,0.092484449,1620000000000 ,1620000000000 ,1620000000000 ,1616812294040 -1616812294067 ,112.5730236,26.89389483,63.4275856,180.050734,180.4333197,10.241544,0.092474475,1620000000000 ,1620000000000 ,1620000000000 ,1616812294050 -1616812294077 ,112.5730236,26.89389391,63.42616653,180.0492313,180.4219294,10.243226,0.092486069,1620000000000 ,1620000000000 ,1620000000000 ,1616812294060 -1616812294088 ,112.5730236,26.89389298,63.42473984,180.0479199,180.4275462,10.246784,0.092515036,1620000000000 ,1620000000000 ,1620000000000 ,1616812294070 -1616812294098 ,112.5730236,26.89389206,63.42327499,180.0474008,180.4405996,10.247384,0.092526249,1620000000000 ,1620000000000 ,1620000000000 ,1616812294080 -1616812294110 ,112.5730236,26.89389113,63.42188263,180.0441497,180.4380265,10.243519,0.092500581,1620000000000 ,1620000000000 ,1620000000000 ,1616812294090 -1616812294119 ,112.5730235,26.89389021,63.42068863,180.041882,180.4166202,10.240405,0.092476396,1620000000000 ,1620000000000 ,1620000000000 ,1616812294100 -1616812294128 ,112.5730235,26.89388928,63.41965103,180.0404887,180.3985636,10.240447,0.092474034,1620000000000 ,1620000000000 ,1620000000000 ,1616812294110 -1616812294138 ,112.5730235,26.89388836,63.41864777,180.0401062,180.3940267,10.241786,0.092483876,1620000000000 ,1620000000000 ,1620000000000 ,1616812294120 -1616812294150 ,112.5730235,26.89388743,63.41766357,180.0401881,180.3999438,10.242513,0.092493694,1620000000000 ,1620000000000 ,1620000000000 ,1616812294130 -1616812294160 ,112.5730235,26.89388651,63.41676712,180.0380298,180.3892367,10.24275,0.092499283,1620000000000 ,1620000000000 ,1620000000000 ,1616812294140 -1616812294168 ,112.5730235,26.89388558,63.41599274,180.0390407,180.3733903,10.243531,0.092510146,1620000000000 ,1620000000000 ,1620000000000 ,1616812294150 -1616812294178 ,112.5730235,26.89388466,63.4152832,180.0417728,180.3759582,10.243045,0.092508945,1620000000000 ,1620000000000 ,1620000000000 ,1616812294160 -1616812294189 ,112.5730235,26.89388373,63.414608,180.0425924,180.3856666,10.2429495,0.09250914,1620000000000 ,1620000000000 ,1620000000000 ,1616812294170 -1616812294198 ,112.5730235,26.89388281,63.41400146,180.0444775,180.3930472,10.240949,0.092497867,1620000000000 ,1620000000000 ,1620000000000 ,1616812294180 -1616812294208 ,112.5730235,26.89388188,63.41350937,180.0475648,180.4003046,10.23885,0.092484979,1620000000000 ,1620000000000 ,1620000000000 ,1616812294190 -1616812294218 ,112.5730235,26.89388095,63.41280746,180.0321012,180.3362651,10.27259,0.092970938,1620000000000 ,1620000000000 ,1620000000000 ,1616812294200 -1616812294228 ,112.5730235,26.89388002,63.41168213,180.0328115,180.2287751,10.272486,0.093772673,1620000000000 ,1620000000000 ,1620000000000 ,1616812294210 -1616812294238 ,112.5730235,26.89387908,63.41061401,180.0349972,180.2563133,10.273816,0.093785672,1620000000000 ,1620000000000 ,1620000000000 ,1616812294220 -1616812294249 ,112.5730235,26.89387814,63.40958405,180.0366638,180.2729816,10.274317,0.093794028,1620000000000 ,1620000000000 ,1620000000000 ,1616812294230 -1616812294259 ,112.5730235,26.8938772,63.40856171,180.0370189,180.2771018,10.275424,0.093805126,1620000000000 ,1620000000000 ,1620000000000 ,1616812294240 -1616812294269 ,112.5730235,26.89387626,63.40757751,180.0339863,180.2864195,10.27427,0.093802375,1620000000000 ,1620000000000 ,1620000000000 ,1616812294250 -1616812294278 ,112.5730235,26.89387533,63.40662766,180.0347786,180.294971,10.27401,0.093799997,1620000000000 ,1620000000000 ,1620000000000 ,1616812294260 -1616812294288 ,112.5730235,26.89387439,63.40572739,180.034642,180.3057553,10.272154,0.093792116,1620000000000 ,1620000000000 ,1620000000000 ,1616812294270 -1616812294298 ,112.5730235,26.89387345,63.40486145,180.036254,180.3087371,10.271672,0.093786121,1620000000000 ,1620000000000 ,1620000000000 ,1616812294280 -1616812294309 ,112.5730234,26.89387251,63.40399933,180.038303,180.3016374,10.271503,0.093786039,1620000000000 ,1620000000000 ,1620000000000 ,1616812294290 -1616812294321 ,112.5730234,26.89387157,63.40309143,180.0425651,180.2919673,10.271445,0.093783615,1620000000000 ,1620000000000 ,1620000000000 ,1616812294300 -1616812294329 ,112.5730234,26.89387064,63.4021225,180.0458435,180.2911654,10.272477,0.093789388,1620000000000 ,1620000000000 ,1620000000000 ,1616812294310 -1616812294340 ,112.5730234,26.8938697,63.40110779,180.0505154,180.2879882,10.27263,0.093793564,1620000000000 ,1620000000000 ,1620000000000 ,1616812294320 -1616812294350 ,112.5730234,26.89386876,63.40008926,180.0521273,180.2796985,10.273494,0.093798533,1620000000000 ,1620000000000 ,1620000000000 ,1616812294330 -1616812294359 ,112.5730234,26.89386782,63.39907074,180.0563894,180.2664403,10.273962,0.093807206,1620000000000 ,1620000000000 ,1620000000000 ,1616812294340 -1616812294370 ,112.5730234,26.89386688,63.39802933,180.0618535,180.2534155,10.272864,0.093801346,1620000000000 ,1620000000000 ,1620000000000 ,1616812294350 -1616812294379 ,112.5730234,26.89386595,63.39696503,180.067263,180.2451389,10.271997,0.093792666,1620000000000 ,1620000000000 ,1620000000000 ,1616812294360 -1616812294390 ,112.5730234,26.89386501,63.39586639,180.0739566,180.2416699,10.271689,0.093787628,1620000000000 ,1620000000000 ,1620000000000 ,1616812294370 -1616812294400 ,112.5730234,26.89386407,63.39471817,180.0817977,180.2382311,10.272038,0.093789662,1620000000000 ,1620000000000 ,1620000000000 ,1616812294380 -1616812294410 ,112.5730234,26.89386313,63.39348221,180.0894748,180.2394945,10.273268,0.093794664,1620000000000 ,1620000000000 ,1620000000000 ,1616812294390 -1616812294420 ,112.5730234,26.89386219,63.39213562,180.0967148,180.2564625,10.275517,0.093809874,1620000000000 ,1620000000000 ,1620000000000 ,1616812294400 -1616812294431 ,112.5730234,26.89386126,63.39067459,180.1029166,180.2632764,10.276106,0.093813736,1620000000000 ,1620000000000 ,1620000000000 ,1616812294410 -1616812294440 ,112.5730234,26.89386032,63.38910294,180.106441,180.2743682,10.277698,0.093822719,1620000000000 ,1620000000000 ,1620000000000 ,1616812294420 -1616812294451 ,112.5730234,26.89385938,63.38744354,180.112233,180.2961297,10.278458,0.093827531,1620000000000 ,1620000000000 ,1620000000000 ,1616812294430 -1616812294463 ,112.5730234,26.89385844,63.38568115,180.1181343,180.3088245,10.278398,0.093822338,1620000000000 ,1620000000000 ,1620000000000 ,1616812294440 -1616812294471 ,112.5730234,26.89385751,63.38415909,180.1247459,180.4007127,10.278708,0.093330567,1620000000000 ,1620000000000 ,1620000000000 ,1616812294450 -1616812294480 ,112.5730234,26.89385658,63.38291931,180.1305106,180.4892223,10.279016,0.09283568,1620000000000 ,1620000000000 ,1620000000000 ,1616812294460 -1616812294490 ,112.5730234,26.89385565,63.3816452,180.1378052,180.5023362,10.279287,0.092838009,1620000000000 ,1620000000000 ,1620000000000 ,1616812294470 -1616812294501 ,112.5730233,26.89385472,63.3803215,180.1448266,180.5194799,10.280012,0.092839499,1620000000000 ,1620000000000 ,1620000000000 ,1616812294480 -1616812294512 ,112.5730233,26.8938538,63.37895966,180.1524218,180.5434142,10.281195,0.092850685,1620000000000 ,1620000000000 ,1620000000000 ,1616812294490 -1616812294523 ,112.5730233,26.89385287,63.37758255,180.157722,180.5575693,10.281237,0.092851682,1620000000000 ,1620000000000 ,1620000000000 ,1616812294500 -1616812294533 ,112.5730233,26.89385194,63.37618256,180.1634048,180.5597134,10.282238,0.092857366,1620000000000 ,1620000000000 ,1620000000000 ,1616812294510 -1616812294547 ,112.5730233,26.89385101,63.3747139,180.1684591,180.567386,10.282585,0.092859978,1620000000000 ,1620000000000 ,1620000000000 ,1616812294520 -1616812294552 ,112.5730233,26.89385008,63.37314987,180.1732129,180.5808901,10.282847,0.092857413,1620000000000 ,1620000000000 ,1620000000000 ,1616812294530 -1616812294562 ,112.5730233,26.89384915,63.37154388,180.1762728,180.5977723,10.283123,0.092858476,1620000000000 ,1620000000000 ,1620000000000 ,1616812294540 -1616812294572 ,112.5730233,26.89384822,63.3699646,180.1808081,180.5995838,10.283072,0.092858783,1620000000000 ,1620000000000 ,1620000000000 ,1616812294550 -1616812294583 ,112.5730233,26.8938473,63.36843491,180.1853707,180.6017043,10.282834,0.092860916,1620000000000 ,1620000000000 ,1620000000000 ,1616812294560 -1616812294593 ,112.5730233,26.89384637,63.3669548,180.1920369,180.6054477,10.282699,0.092861313,1620000000000 ,1620000000000 ,1620000000000 ,1616812294570 -1616812294602 ,112.5730233,26.89384544,63.36548996,180.1967361,180.6063602,10.2815,0.092852631,1620000000000 ,1620000000000 ,1620000000000 ,1616812294580 -1616812294612 ,112.5730232,26.89384451,63.36402893,180.2036209,180.6118534,10.282009,0.092853699,1620000000000 ,1620000000000 ,1620000000000 ,1616812294590 -1616812294622 ,112.5730232,26.89384358,63.3625679,180.2064623,180.6171112,10.281731,0.092855583,1620000000000 ,1620000000000 ,1620000000000 ,1616812294600 -1616812294634 ,112.5730232,26.89384265,63.36114883,180.2125275,180.6209008,10.283002,0.092859715,1620000000000 ,1620000000000 ,1620000000000 ,1616812294610 -1616812294643 ,112.5730232,26.89384172,63.35977936,180.2156147,180.626814,10.286355,0.092896168,1620000000000 ,1620000000000 ,1620000000000 ,1616812294620 -1616812294653 ,112.5730232,26.8938408,63.35841751,180.2218985,180.6447375,10.283056,0.09288012,1620000000000 ,1620000000000 ,1620000000000 ,1616812294630 -1616812294662 ,112.5730232,26.89383987,63.35704422,180.2283189,180.6528019,10.281345,0.09285922,1620000000000 ,1620000000000 ,1620000000000 ,1616812294640 -1616812294672 ,112.5730232,26.89383894,63.35570908,180.2355042,180.6551609,10.278203,0.092834582,1620000000000 ,1620000000000 ,1620000000000 ,1616812294650 -1616812294682 ,112.5730232,26.89383801,63.35441589,180.2430721,180.6434617,10.277285,0.092820804,1620000000000 ,1620000000000 ,1620000000000 ,1616812294660 -1616812294692 ,112.5730232,26.89383708,63.3531189,180.2490553,180.6447225,10.281316,0.09284832,1620000000000 ,1620000000000 ,1620000000000 ,1616812294670 -1616812294705 ,112.5730232,26.89383615,63.35176468,180.2543829,180.6746706,10.285226,0.092882888,1620000000000 ,1620000000000 ,1620000000000 ,1616812294680 -1616812294714 ,112.5730231,26.89383522,63.35037613,180.2594372,180.6991225,10.287017,0.092903085,1620000000000 ,1620000000000 ,1620000000000 ,1616812294690 -1616812294723 ,112.5730231,26.8938343,63.34902573,180.2648741,180.7037205,10.285702,0.092901585,1620000000000 ,1620000000000 ,1620000000000 ,1616812294700 -1616812294733 ,112.5730231,26.89383337,63.34774017,180.2705568,180.7083954,10.282954,0.092883582,1620000000000 ,1620000000000 ,1620000000000 ,1616812294710 -1616812294743 ,112.5730231,26.89383244,63.34651947,180.2767039,180.7290092,10.280101,0.092860052,1620000000000 ,1620000000000 ,1620000000000 ,1616812294720 -1616812294754 ,112.5730231,26.89383151,63.34531403,180.2832882,180.7495709,10.279516,0.092848302,1620000000000 ,1620000000000 ,1620000000000 ,1616812294730 -1616812294763 ,112.5730231,26.89383058,63.34408188,180.2894627,180.7667582,10.281401,0.092862484,1620000000000 ,1620000000000 ,1620000000000 ,1616812294740 -1616812294776 ,112.5730231,26.89382965,63.34282303,180.2915391,180.7779781,10.283841,0.092882341,1620000000000 ,1620000000000 ,1620000000000 ,1616812294750 -1616812294783 ,112.5730231,26.89382872,63.34152603,180.2969213,180.7850609,10.286365,0.092903195,1620000000000 ,1620000000000 ,1620000000000 ,1616812294760 -1616812294794 ,112.573023,26.89382779,63.34018707,180.3008555,180.795097,10.2884,0.092920085,1620000000000 ,1620000000000 ,1620000000000 ,1616812294770 -1616812294803 ,112.573023,26.89382686,63.33881378,180.3068114,180.7958749,10.288323,0.09292595,1620000000000 ,1620000000000 ,1620000000000 ,1616812294780 -1616812294813 ,112.573023,26.89382594,63.33746338,180.3114559,180.7912787,10.286254,0.092912982,1620000000000 ,1620000000000 ,1620000000000 ,1616812294790 -1616812294823 ,112.573023,26.89382501,63.33614731,180.315035,180.7763071,10.28341,0.092888324,1620000000000 ,1620000000000 ,1620000000000 ,1616812294800 -1616812294834 ,112.573023,26.89382408,63.33482742,180.319379,180.7722422,10.283303,0.092880941,1620000000000 ,1620000000000 ,1620000000000 ,1616812294820 -1616812294843 ,112.573023,26.89382315,63.33346558,180.3247612,180.7841739,10.285196,0.092893234,1620000000000 ,1620000000000 ,1620000000000 ,1616812294830 -1616812294854 ,112.573023,26.89382222,63.3320694,180.3301433,180.7927271,10.287513,0.09291241,1620000000000 ,1620000000000 ,1620000000000 ,1616812294840 -1616812294863 ,112.573023,26.89382129,63.33068466,180.3335038,180.7944203,10.288275,0.09292461,1620000000000 ,1620000000000 ,1620000000000 ,1616812294850 -1616812294874 ,112.5730229,26.89382036,63.32936096,180.3377385,180.7860876,10.2875,0.092923259,1620000000000 ,1620000000000 ,1620000000000 ,1616812294860 -1616812294884 ,112.5730229,26.8938185,63.32675552,180.3477652,180.7786778,10.288654,0.185832734,1620000000000 ,1620000000000 ,1620000000000 ,1616812294870 -1616812294894 ,112.5730229,26.89381757,63.32529068,180.3521912,180.7923475,10.287347,0.092926704,1620000000000 ,1620000000000 ,1620000000000 ,1616812294880 -1616812294915 ,112.5730229,26.89381757,63.32529068,180.3521912,-400,10.287347,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812294880 -1616812294921 ,112.5730229,26.89381572,63.32210922,180.3580925,180.8134283,10.29132,0.185855896,1620000000000 ,1620000000000 ,1620000000000 ,1616812294900 -1616812294924 ,112.5730229,26.89381479,63.32069397,180.3604147,180.8003071,10.287931,0.092927893,1620000000000 ,1620000000000 ,1620000000000 ,1616812294910 -1616812294935 ,112.5730228,26.89381386,63.31932449,180.3647041,180.8092975,10.2883005,0.092934447,1620000000000 ,1620000000000 ,1620000000000 ,1616812294920 -1616812294944 ,112.5730228,26.89381293,63.31789398,180.3676274,180.8401338,10.284015,0.0928995,1620000000000 ,1620000000000 ,1620000000000 ,1616812294930 -1616812294955 ,112.5730228,26.893812,63.31641388,180.3681192,180.8440117,10.283965,0.092882221,1620000000000 ,1620000000000 ,1620000000000 ,1616812294940 -1616812294965 ,112.5730228,26.89381107,63.31488037,180.3691027,180.8418141,10.288342,0.092911985,1620000000000 ,1620000000000 ,1620000000000 ,1616812294950 -1616812294978 ,112.5730228,26.89381107,63.31488037,180.3691027,-400,10.288342,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812294960 -1616812294985 ,112.5730228,26.89380921,63.31154633,180.3743756,180.8513109,10.290736,0.185891732,1620000000000 ,1620000000000 ,1620000000000 ,1616812294970 -1616812294995 ,112.5730228,26.89380828,63.30994797,180.3748947,180.8635355,10.282927,0.092890022,1620000000000 ,1620000000000 ,1620000000000 ,1616812294980 -1616812295006 ,112.5730228,26.89380828,63.30994797,180.3748947,-400,10.282927,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812294980 -1616812295015 ,112.5730227,26.89380643,63.30718231,180.3794573,180.8536573,10.28194,0.185728684,1620000000000 ,1620000000000 ,1620000000000 ,1616812295000 -1616812295025 ,112.5730227,26.8938055,63.30567932,180.3828724,180.8620295,10.2849865,0.092888502,1620000000000 ,1620000000000 ,1620000000000 ,1616812295010 -1616812295037 ,112.5730227,26.89380457,63.30397797,180.3852493,180.8773373,10.286367,0.092897089,1620000000000 ,1620000000000 ,1620000000000 ,1616812295020 -1616812295046 ,112.5730227,26.89380364,63.30219269,180.3855772,180.8716116,10.285943,0.092891658,1620000000000 ,1620000000000 ,1620000000000 ,1616812295030 -1616812295057 ,112.5730227,26.89380271,63.30044556,180.3867246,180.861194,10.2848835,0.092884632,1620000000000 ,1620000000000 ,1620000000000 ,1616812295040 -1616812295066 ,112.5730227,26.89380178,63.2987442,180.3874076,180.8611571,10.283783,0.092875471,1620000000000 ,1620000000000 ,1620000000000 ,1616812295050 -1616812295076 ,112.5730227,26.89380085,63.29704666,180.3883366,180.8670988,10.283666,0.092874278,1620000000000 ,1620000000000 ,1620000000000 ,1616812295060 -1616812295087 ,112.5730226,26.89379993,63.29536819,180.3898938,180.8688731,10.282453,0.092867654,1620000000000 ,1620000000000 ,1620000000000 ,1616812295070 -1616812295096 ,112.5730226,26.893799,63.2937355,180.3913145,180.8527584,10.2817955,0.092858095,1620000000000 ,1620000000000 ,1620000000000 ,1616812295080 -1616812295107 ,112.5730226,26.89379807,63.29210281,180.3936641,180.841201,10.283188,0.092866732,1620000000000 ,1620000000000 ,1620000000000 ,1616812295090 -1616812295118 ,112.5730226,26.89379714,63.29039764,180.3957678,180.8378134,10.285328,0.092881928,1620000000000 ,1620000000000 ,1620000000000 ,1616812295100 -1616812295127 ,112.5730226,26.89379621,63.28862762,180.397407,180.8466599,10.286324,0.092891299,1620000000000 ,1620000000000 ,1620000000000 ,1616812295110 -1616812295142 ,112.5730226,26.89379528,63.28686523,180.3986092,180.842235,10.28318,0.092872799,1620000000000 ,1620000000000 ,1620000000000 ,1616812295120 -1616812295147 ,112.5730226,26.89379435,63.28513718,180.4006309,180.836323,10.280439,0.092846877,1620000000000 ,1620000000000 ,1620000000000 ,1616812295130 -1616812295158 ,112.5730225,26.89379343,63.28342056,180.406095,180.8342255,10.279871,0.092836878,1620000000000 ,1620000000000 ,1620000000000 ,1616812295140 -1616812295167 ,112.5730225,26.8937925,63.28166962,180.4112313,180.8377412,10.279968,0.092832485,1620000000000 ,1620000000000 ,1620000000000 ,1616812295150 -1616812295177 ,112.5730225,26.89379157,63.27986908,180.417078,180.8405168,10.279941,0.092832859,1620000000000 ,1620000000000 ,1620000000000 ,1616812295160 -1616812295188 ,112.5730225,26.89379064,63.27805328,180.4180615,180.847065,10.279864,0.092831409,1620000000000 ,1620000000000 ,1620000000000 ,1616812295170 -1616812295196 ,112.5730225,26.89378971,63.27627563,180.4188812,180.8535955,10.278766,0.092824655,1620000000000 ,1620000000000 ,1620000000000 ,1616812295180 -1616812295207 ,112.5730225,26.89378879,63.27453613,180.4201379,180.8651369,10.277306,0.092813629,1620000000000 ,1620000000000 ,1620000000000 ,1616812295190 -1616812295219 ,112.5730225,26.89378785,63.2728653,180.4049203,181.0028082,10.301001,0.093126041,1620000000000 ,1620000000000 ,1620000000000 ,1616812295200 -1616812295227 ,112.5730224,26.89378692,63.27123642,180.4048929,181.235683,10.297426,0.093667071,1620000000000 ,1620000000000 ,1620000000000 ,1616812295210 -1616812295237 ,112.5730224,26.89378598,63.26968002,180.4069693,181.2294646,10.294342,0.093640511,1620000000000 ,1620000000000 ,1620000000000 ,1616812295220 -1616812295247 ,112.5730224,26.89378505,63.26818466,180.4083353,181.230305,10.29355,0.0936295,1620000000000 ,1620000000000 ,1620000000000 ,1616812295230 -1616812295257 ,112.5730224,26.89378411,63.26669312,180.4114772,181.2456065,10.293707,0.093633325,1620000000000 ,1620000000000 ,1620000000000 ,1616812295240 -1616812295267 ,112.5730224,26.89378317,63.26520157,180.4145918,181.2570267,10.292139,0.093622201,1620000000000 ,1620000000000 ,1620000000000 ,1616812295250 -1616812295278 ,112.5730223,26.89378224,63.26374817,180.4167501,181.2550784,10.290448,0.093609266,1620000000000 ,1620000000000 ,1620000000000 ,1616812295260 -1616812295288 ,112.5730223,26.8937813,63.26235962,180.4160398,181.2378594,10.289201,0.09360023,1620000000000 ,1620000000000 ,1620000000000 ,1616812295270 -1616812295297 ,112.5730223,26.89378037,63.26100922,180.4168594,181.2341014,10.288773,0.093596806,1620000000000 ,1620000000000 ,1620000000000 ,1616812295280 -1616812295308 ,112.5730223,26.89377943,63.25967026,180.4168048,181.2377648,10.288372,0.093594032,1620000000000 ,1620000000000 ,1620000000000 ,1616812295290 -1616812295318 ,112.5730223,26.89377849,63.25835037,180.4185533,181.236004,10.287143,0.093587211,1620000000000 ,1620000000000 ,1620000000000 ,1616812295300 -1616812295328 ,112.5730222,26.89377756,63.25709915,180.4216132,181.2233904,10.285534,0.093578679,1620000000000 ,1620000000000 ,1620000000000 ,1616812295310 -1616812295338 ,112.5730222,26.89377662,63.25590515,180.4248371,181.210136,10.28417,0.093567439,1620000000000 ,1620000000000 ,1620000000000 ,1616812295320 -1616812295348 ,112.5730222,26.89377569,63.254673,180.428744,181.2057499,10.284067,0.093560701,1620000000000 ,1620000000000 ,1620000000000 ,1616812295330 -1616812295358 ,112.5730222,26.89377475,63.25333023,180.4333065,181.2111633,10.285127,0.093565467,1620000000000 ,1620000000000 ,1620000000000 ,1616812295340 -1616812295368 ,112.5730222,26.89377382,63.25187302,180.435902,181.2304557,10.285414,0.093564695,1620000000000 ,1620000000000 ,1620000000000 ,1616812295350 -1616812295378 ,112.5730221,26.89377288,63.25038147,180.4378964,181.2389513,10.284984,0.093561062,1620000000000 ,1620000000000 ,1620000000000 ,1616812295360 -1616812295389 ,112.5730221,26.89377195,63.24888229,180.441011,181.2431556,10.283375,0.093549475,1620000000000 ,1620000000000 ,1620000000000 ,1616812295370 -1616812295398 ,112.5730221,26.89377101,63.2473793,180.4436884,181.2518881,10.281375,0.093531212,1620000000000 ,1620000000000 ,1620000000000 ,1616812295380 -1616812295409 ,112.5730221,26.89377008,63.2458725,180.4455735,181.2634724,10.278973,0.093510913,1620000000000 ,1620000000000 ,1620000000000 ,1616812295390 -1616812295426 ,112.5730221,26.89376914,63.24437332,180.4458194,181.275711,10.27704,0.093492389,1620000000000 ,1620000000000 ,1620000000000 ,1616812295400 -1616812295430 ,112.573022,26.89376821,63.24283981,180.4467483,181.2789617,10.27607,0.093479937,1620000000000 ,1620000000000 ,1620000000000 ,1616812295410 -1616812295439 ,112.573022,26.89376727,63.24124527,180.4475406,181.2812822,10.275498,0.09347215,1620000000000 ,1620000000000 ,1620000000000 ,1616812295420 -1616812295450 ,112.573022,26.89376634,63.23959351,180.4477319,181.2864182,10.274397,0.09346015,1620000000000 ,1620000000000 ,1620000000000 ,1616812295430 -1616812295462 ,112.573022,26.8937654,63.23789978,180.449535,181.2855577,10.273527,0.093450106,1620000000000 ,1620000000000 ,1620000000000 ,1616812295440 -1616812295471 ,112.573022,26.89376447,63.23609161,180.4506279,181.1542849,10.273468,0.093112882,1620000000000 ,1620000000000 ,1620000000000 ,1616812295450 -1616812295483 ,112.5730219,26.89376355,63.2341423,180.4516934,181.0256126,10.27287,0.092773515,1620000000000 ,1620000000000 ,1620000000000 ,1616812295460 -1616812295495 ,112.5730219,26.89376262,63.23213196,180.4535785,181.023908,10.2709255,0.092754983,1620000000000 ,1620000000000 ,1620000000000 ,1616812295470 -1616812295504 ,112.5730219,26.89376169,63.23012543,180.4558735,181.0259257,10.268941,0.092736234,1620000000000 ,1620000000000 ,1620000000000 ,1616812295480 -1616812295516 ,112.5730219,26.89376076,63.22816086,180.45754,181.0313414,10.267788,0.092726116,1620000000000 ,1620000000000 ,1620000000000 ,1616812295490 -1616812295520 ,112.5730219,26.89375984,63.22622299,180.4592339,181.0399712,10.266521,0.092716692,1620000000000 ,1620000000000 ,1620000000000 ,1616812295500 -1616812295530 ,112.5730219,26.89375891,63.22429657,180.461201,181.0406346,10.26356,0.092695228,1620000000000 ,1620000000000 ,1620000000000 ,1616812295510 -1616812295540 ,112.5730218,26.89375798,63.22240067,180.461283,181.0355834,10.259899,0.092663588,1620000000000 ,1620000000000 ,1620000000000 ,1616812295520 -1616812295552 ,112.5730218,26.89375706,63.22055435,180.4617201,181.0364203,10.256184,0.092633085,1620000000000 ,1620000000000 ,1620000000000 ,1616812295530 -1616812295561 ,112.5730218,26.89375613,63.21874619,180.4648074,181.046868,10.253172,0.092605374,1620000000000 ,1620000000000 ,1620000000000 ,1616812295540 -1616812295571 ,112.5730218,26.89375521,63.21694946,180.4662827,181.0583746,10.250845,0.092583539,1620000000000 ,1620000000000 ,1620000000000 ,1616812295550 -1616812295581 ,112.5730218,26.89375428,63.21515274,180.4695612,181.0669923,10.249794,0.092571384,1620000000000 ,1620000000000 ,1620000000000 ,1616812295560 -1616812295591 ,112.5730218,26.89375335,63.2133255,180.4690147,181.0697412,10.248669,0.092559449,1620000000000 ,1620000000000 ,1620000000000 ,1616812295570 -1616812295601 ,112.5730217,26.89375243,63.21144104,180.4703808,181.0744346,10.246983,0.092543801,1620000000000 ,1620000000000 ,1620000000000 ,1616812295580 -1616812295611 ,112.5730217,26.8937515,63.20952606,180.4700529,181.0825271,10.243701,0.092515202,1620000000000 ,1620000000000 ,1620000000000 ,1616812295590 -1616812295621 ,112.5730217,26.89375058,63.2076416,180.4717468,181.0891522,10.23962,0.092482059,1620000000000 ,1620000000000 ,1620000000000 ,1616812295600 -1616812295634 ,112.5730217,26.89374966,63.20583725,180.4716922,181.0849918,10.236082,0.092450964,1620000000000 ,1620000000000 ,1620000000000 ,1616812295610 -1616812295642 ,112.5730217,26.89374873,63.20409393,180.4712824,181.0809915,10.233286,0.092426503,1620000000000 ,1620000000000 ,1620000000000 ,1616812295620 -1616812295652 ,112.5730216,26.89374781,63.20236588,180.4734407,181.0829937,10.232489,0.092414297,1620000000000 ,1620000000000 ,1620000000000 ,1616812295630 -1616812295662 ,112.5730216,26.89374688,63.20061874,180.4748341,181.082287,10.231354,0.092405418,1620000000000 ,1620000000000 ,1620000000000 ,1616812295640 -1616812295673 ,112.5730216,26.89374596,63.19887543,180.4758176,181.0890103,10.229046,0.092386655,1620000000000 ,1620000000000 ,1620000000000 ,1616812295650 -1616812295683 ,112.5730216,26.89374504,63.19717789,180.4779213,181.0899933,10.225386,0.092359606,1620000000000 ,1620000000000 ,1620000000000 ,1616812295660 -1616812295692 ,112.5730216,26.89374411,63.19551849,180.4796152,181.0821554,10.22193,0.09232831,1620000000000 ,1620000000000 ,1620000000000 ,1616812295670 -1616812295702 ,112.5730216,26.89374319,63.19384766,180.4821287,181.0778989,10.2203045,0.092307675,1620000000000 ,1620000000000 ,1620000000000 ,1616812295680 -1616812295712 ,112.5730215,26.89374227,63.19212723,180.4839046,181.0791452,10.218825,0.092291778,1620000000000 ,1620000000000 ,1620000000000 ,1616812295690 -1616812295724 ,112.5730215,26.89374134,63.19036102,180.4833308,181.0887598,10.217191,0.092275906,1620000000000 ,1620000000000 ,1620000000000 ,1616812295700 -1616812295735 ,112.5730215,26.89374042,63.18859863,180.4836314,181.1010477,10.2143345,0.092251403,1620000000000 ,1620000000000 ,1620000000000 ,1616812295710 -1616812295748 ,112.5730215,26.8937395,63.18687439,180.481473,181.1101381,10.210957,0.092223715,1620000000000 ,1620000000000 ,1620000000000 ,1616812295720 -1616812295753 ,112.5730215,26.89373858,63.18517303,180.4818009,181.1202548,10.207928,0.092196772,1620000000000 ,1620000000000 ,1620000000000 ,1616812295730 -1616812295764 ,112.5730215,26.89373766,63.18347549,180.4828117,181.1213564,10.205433,0.09217273,1620000000000 ,1620000000000 ,1620000000000 ,1616812295740 -1616812295772 ,112.5730214,26.89373674,63.18174362,180.4834674,181.1162211,10.203834,0.092153635,1620000000000 ,1620000000000 ,1620000000000 ,1616812295750 -1616812295785 ,112.5730214,26.89373581,63.17996979,180.4832489,181.1272942,10.2036705,0.092146184,1620000000000 ,1620000000000 ,1620000000000 ,1616812295760 -1616812295796 ,112.5730214,26.89373489,63.17818832,180.4834674,181.143105,10.202407,0.092137871,1620000000000 ,1620000000000 ,1620000000000 ,1616812295770 -1616812295805 ,112.5730214,26.89373397,63.17643738,180.484451,181.1503179,10.199943,0.092119078,1620000000000 ,1620000000000 ,1620000000000 ,1616812295780 -1616812295814 ,112.5730214,26.89373305,63.17475891,180.4843144,181.1576921,10.196349,0.092093314,1620000000000 ,1620000000000 ,1620000000000 ,1616812295790 -1616812295823 ,112.5730213,26.89373213,63.17316437,180.4861722,181.1530423,10.191643,0.092055543,1620000000000 ,1620000000000 ,1620000000000 ,1616812295800 -1616812295834 ,112.5730213,26.89373121,63.17160416,180.4871011,181.1549077,10.188123,0.092021306,1620000000000 ,1620000000000 ,1620000000000 ,1616812295820 -1616812295844 ,112.5730213,26.89373029,63.17003632,180.4874563,181.1686217,10.185716,0.091996079,1620000000000 ,1620000000000 ,1620000000000 ,1616812295830 -1616812295853 ,112.5730213,26.89372937,63.16843414,180.4892048,181.1722073,10.184143,0.091977985,1620000000000 ,1620000000000 ,1620000000000 ,1616812295840 -1616812295874 ,112.5730212,26.89372753,63.16530991,180.48803,181.1846344,10.179082,0.183896075,1620000000000 ,1620000000000 ,1620000000000 ,1616812295850 -1616812295876 ,112.5730212,26.89372753,63.16530991,180.48803,-400,10.179082,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812295860 -1616812295883 ,112.5730212,26.8937257,63.16239166,180.4875929,181.199797,10.172661,0.183798885,1620000000000 ,1620000000000 ,1620000000000 ,1616812295870 -1616812295894 ,112.5730212,26.89372478,63.16098022,180.4883305,181.2033895,10.168882,0.091854009,1620000000000 ,1620000000000 ,1620000000000 ,1616812295880 -1616812295904 ,112.5730212,26.89372478,63.16098022,180.4883305,-400,10.168882,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812295880 -1616812295913 ,112.5730212,26.89372294,63.1581192,180.4907347,181.2006288,10.162862,0.183618799,1620000000000 ,1620000000000 ,1620000000000 ,1616812295900 -1616812295925 ,112.5730211,26.89372202,63.15666962,180.4913358,181.1945195,10.160168,0.091768616,1620000000000 ,1620000000000 ,1620000000000 ,1616812295910 -1616812295935 ,112.5730211,26.89372111,63.15524673,180.4930297,181.19457,10.157006,0.091744625,1620000000000 ,1620000000000 ,1620000000000 ,1616812295920 -1616812295945 ,112.5730211,26.89372019,63.15385818,180.4946689,181.1933928,10.153539,0.091711682,1620000000000 ,1620000000000 ,1620000000000 ,1616812295930 -1616812295954 ,112.5730211,26.89371927,63.15250015,180.4964994,181.1951615,10.150201,0.091684582,1620000000000 ,1620000000000 ,1620000000000 ,1616812295940 -1616812295965 ,112.5730211,26.89371836,63.15117645,180.4979747,181.1908528,10.146913,0.091655021,1620000000000 ,1620000000000 ,1620000000000 ,1616812295950 -1616812295974 ,112.573021,26.89371744,63.14987564,180.4990403,181.1878889,10.14498,0.091634435,1620000000000 ,1620000000000 ,1620000000000 ,1616812295960 -1616812295985 ,112.573021,26.89371652,63.14859009,180.4999692,181.187829,10.143783,0.091622806,1620000000000 ,1620000000000 ,1620000000000 ,1616812295970 -1616812295998 ,112.573021,26.89371561,63.14730835,180.5003517,181.188766,10.140645,0.091599848,1620000000000 ,1620000000000 ,1620000000000 ,1616812295980 -1616812296006 ,112.573021,26.89371561,63.14730835,180.5003517,-400,10.140645,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812295980 -1616812296016 ,112.573021,26.89371378,63.14491272,180.4998326,181.1990023,10.131769,0.183092215,1620000000000 ,1620000000000 ,1620000000000 ,1616812296000 -1616812296025 ,112.5730209,26.89371286,63.14379501,180.5002697,181.1852298,10.127879,0.091491257,1620000000000 ,1620000000000 ,1620000000000 ,1616812296010 -1616812296036 ,112.5730209,26.89371195,63.1426506,180.5026466,181.186432,10.125309,0.091463696,1620000000000 ,1620000000000 ,1620000000000 ,1616812296020 -1616812296045 ,112.5730209,26.89371104,63.14143753,180.5048596,181.1991842,10.12385,0.091444358,1620000000000 ,1620000000000 ,1620000000000 ,1616812296030 -1616812296055 ,112.5730209,26.89371012,63.14017105,180.506854,181.2111492,10.122642,0.091430926,1620000000000 ,1620000000000 ,1620000000000 ,1616812296040 -1616812296065 ,112.5730209,26.89370921,63.13893509,180.5066901,181.2145772,10.120067,0.091412655,1620000000000 ,1620000000000 ,1620000000000 ,1616812296050 -1616812296075 ,112.5730208,26.89370829,63.13775253,180.5070452,181.2034192,10.116507,0.091383846,1620000000000 ,1620000000000 ,1620000000000 ,1616812296060 -1616812296086 ,112.5730208,26.89370738,63.13658905,180.5047776,181.2064866,10.112358,0.091348893,1620000000000 ,1620000000000 ,1620000000000 ,1616812296070 -1616812296095 ,112.5730208,26.89370647,63.13539124,180.5017723,181.2122057,10.109343,0.091315981,1620000000000 ,1620000000000 ,1620000000000 ,1616812296080 -1616812296107 ,112.5730208,26.89370555,63.13414764,180.4983572,181.2190873,10.106269,0.091287856,1620000000000 ,1620000000000 ,1620000000000 ,1616812296090 -1616812296116 ,112.5730208,26.89370464,63.13289261,180.4946416,181.2223177,10.102948,0.091257817,1620000000000 ,1620000000000 ,1620000000000 ,1616812296100 -1616812296125 ,112.5730207,26.89370373,63.13167953,180.4928931,181.2174061,10.099426,0.091228498,1620000000000 ,1620000000000 ,1620000000000 ,1616812296110 -1616812296137 ,112.5730207,26.89370282,63.13051605,180.4907347,181.2160312,10.09574,0.091196228,1620000000000 ,1620000000000 ,1620000000000 ,1616812296120 -1616812296147 ,112.5730207,26.89370191,63.12934494,180.4889589,181.2199341,10.09369,0.091173777,1620000000000 ,1620000000000 ,1620000000000 ,1616812296130 -1616812296156 ,112.5730207,26.893701,63.12812424,180.4867732,181.2250172,10.091605,0.091153595,1620000000000 ,1620000000000 ,1620000000000 ,1616812296140 -1616812296166 ,112.5730207,26.89370008,63.12686539,180.4808993,181.2229395,10.088274,0.091124529,1620000000000 ,1620000000000 ,1620000000000 ,1616812296150 -1616812296177 ,112.5730207,26.89369917,63.1256218,180.4731948,181.2220649,10.084143,0.091088988,1620000000000 ,1620000000000 ,1620000000000 ,1616812296160 -1616812296188 ,112.5730206,26.89369826,63.12444687,180.4673482,181.2162072,10.07986,0.091052812,1620000000000 ,1620000000000 ,1620000000000 ,1616812296170 -1616812296197 ,112.5730206,26.89369735,63.12333679,180.4590973,181.2206637,10.075907,0.091018489,1620000000000 ,1620000000000 ,1620000000000 ,1616812296180 -1616812296206 ,112.5730206,26.89369644,63.12227631,180.4533053,181.2187933,10.071414,0.090982908,1620000000000 ,1620000000000 ,1620000000000 ,1616812296190 -1616812296217 ,112.5730206,26.89369554,63.12173843,180.4620206,180.9847268,10.04859,0.09069567,1620000000000 ,1620000000000 ,1620000000000 ,1616812296200 -1616812296228 ,112.5730206,26.89369463,63.12186813,180.4547806,180.6326992,10.044308,0.090248556,1620000000000 ,1620000000000 ,1620000000000 ,1616812296210 -1616812296237 ,112.5730206,26.89369373,63.12202454,180.4463385,180.6308266,10.042266,0.090223706,1620000000000 ,1620000000000 ,1620000000000 ,1616812296220 -1616812296247 ,112.5730205,26.89369283,63.12216568,180.4380057,180.6311314,10.040391,0.090207734,1620000000000 ,1620000000000 ,1620000000000 ,1616812296230 -1616812296259 ,112.5730205,26.89369193,63.1222496,180.4313121,180.6273676,10.038666,0.09018914,1620000000000 ,1620000000000 ,1620000000000 ,1616812296240 -1616812296270 ,112.5730205,26.89369103,63.12228394,180.4232525,180.6074472,10.03606,0.090164736,1620000000000 ,1620000000000 ,1620000000000 ,1616812296250 -1616812296279 ,112.5730205,26.89369013,63.12229538,180.4121329,180.5899534,10.031894,0.090129143,1620000000000 ,1620000000000 ,1620000000000 ,1616812296260 -1616812296288 ,112.5730205,26.89368922,63.12231064,180.4030624,180.5834488,10.027957,0.090091571,1620000000000 ,1620000000000 ,1620000000000 ,1616812296270 -1616812296298 ,112.5730205,26.89368832,63.12234497,180.3941286,180.5784842,10.024265,0.090059199,1620000000000 ,1620000000000 ,1620000000000 ,1616812296280 -1616812296308 ,112.5730205,26.89368742,63.1224556,180.3848668,180.5610246,10.020653,0.090027799,1620000000000 ,1620000000000 ,1620000000000 ,1616812296290 -1616812296320 ,112.5730205,26.89368652,63.12263489,180.3743756,180.5376564,10.018297,0.090006877,1620000000000 ,1620000000000 ,1620000000000 ,1616812296300 -1616812296333 ,112.5730205,26.89368562,63.12278748,180.3653052,180.5079629,10.017659,0.089995783,1620000000000 ,1620000000000 ,1620000000000 ,1616812296310 -1616812296340 ,112.5730205,26.89368472,63.12281799,180.3557975,180.4959365,10.017142,0.08998515,1620000000000 ,1620000000000 ,1620000000000 ,1616812296320 -1616812296350 ,112.5730205,26.89368382,63.12274933,180.3444867,180.4958884,10.013492,0.089957433,1620000000000 ,1620000000000 ,1620000000000 ,1616812296330 -1616812296359 ,112.5730205,26.89368293,63.12266541,180.3324656,180.4848277,10.009611,0.089917919,1620000000000 ,1620000000000 ,1620000000000 ,1616812296340 -1616812296368 ,112.5730204,26.89368203,63.12263107,180.3233951,180.4659096,10.004195,0.089880917,1620000000000 ,1620000000000 ,1620000000000 ,1616812296350 -1616812296378 ,112.5730204,26.89368113,63.12263107,180.3147344,180.4420649,9.996191,0.089808911,1620000000000 ,1620000000000 ,1620000000000 ,1616812296360 -1616812296389 ,112.5730204,26.89368023,63.12262344,180.3052815,180.4103083,9.992045,0.089762418,1620000000000 ,1620000000000 ,1620000000000 ,1616812296370 -1616812296398 ,112.5730204,26.89367933,63.12257385,180.2946537,180.3948159,9.990871,0.089740945,1620000000000 ,1620000000000 ,1620000000000 ,1616812296380 -1616812296408 ,112.5730204,26.89367844,63.12248993,180.2812665,180.378533,9.993216,0.089754733,1620000000000 ,1620000000000 ,1620000000000 ,1616812296390 -1616812296419 ,112.5730204,26.89367754,63.12244797,180.2694093,180.3550506,9.994726,0.089772138,1620000000000 ,1620000000000 ,1620000000000 ,1616812296400 -1616812296429 ,112.5730204,26.89367664,63.122509,180.2597104,180.3343634,9.992891,0.08976735,1620000000000 ,1620000000000 ,1620000000000 ,1616812296410 -1616812296439 ,112.5730204,26.89367574,63.12267303,180.2510771,180.3057776,9.989728,0.08974902,1620000000000 ,1620000000000 ,1620000000000 ,1616812296420 -1616812296450 ,112.5730204,26.89367485,63.12288284,180.241788,180.2583092,9.983867,0.08970336,1620000000000 ,1620000000000 ,1620000000000 ,1616812296430 -1616812296459 ,112.5730204,26.89367395,63.12308884,180.2370069,180.2333381,9.977159,0.089644608,1620000000000 ,1620000000000 ,1620000000000 ,1616812296440 -1616812296469 ,112.5730204,26.89367305,63.12282944,180.2321984,180.4590169,9.973004,0.089846609,1620000000000 ,1620000000000 ,1620000000000 ,1616812296450 -1616812296480 ,112.5730204,26.89367215,63.12213898,180.2291658,180.6803277,9.970531,0.090070579,1620000000000 ,1620000000000 ,1620000000000 ,1616812296460 -1616812296490 ,112.5730204,26.89367125,63.12153625,180.2247399,180.6797242,9.970112,0.090066567,1620000000000 ,1620000000000 ,1620000000000 ,1616812296470 -1616812296499 ,112.5730204,26.89367035,63.12101746,180.220751,180.6950475,9.970355,0.090073605,1620000000000 ,1620000000000 ,1620000000000 ,1616812296480 -1616812296509 ,112.5730203,26.89366945,63.12055588,180.2141394,180.7126134,9.969068,0.090069855,1620000000000 ,1620000000000 ,1620000000000 ,1616812296490 -1616812296521 ,112.5730203,26.89366855,63.12013245,180.2074185,180.7291799,9.965851,0.090049692,1620000000000 ,1620000000000 ,1620000000000 ,1616812296500 -1616812296530 ,112.5730203,26.89366765,63.11975479,180.2002878,180.7341895,9.9611845,0.090016978,1620000000000 ,1620000000000 ,1620000000000 ,1616812296510 -1616812296542 ,112.5730203,26.89366675,63.11943436,180.1933483,180.7295995,9.954978,0.089968447,1620000000000 ,1620000000000 ,1620000000000 ,1616812296520 -1616812296552 ,112.5730203,26.89366585,63.11917114,180.1885945,180.7307998,9.949679,0.089924524,1620000000000 ,1620000000000 ,1620000000000 ,1616812296530 -1616812296560 ,112.5730203,26.89366495,63.11892319,180.1846603,180.7285543,9.9460125,0.089893655,1620000000000 ,1620000000000 ,1620000000000 ,1616812296540 -1616812296570 ,112.5730203,26.89366405,63.11864471,180.1816004,180.717778,9.944004,0.089870912,1620000000000 ,1620000000000 ,1620000000000 ,1616812296550 -1616812296581 ,112.5730203,26.89366315,63.11828232,180.1797426,180.7110447,9.943936,0.089866037,1620000000000 ,1620000000000 ,1620000000000 ,1616812296560 -1616812296592 ,112.5730203,26.89366225,63.11777878,180.17671,180.7091799,9.945553,0.089872466,1620000000000 ,1620000000000 ,1620000000000 ,1616812296570 -1616812296600 ,112.5730202,26.89366136,63.11714172,180.1729943,180.7123444,9.948763,0.089895943,1620000000000 ,1620000000000 ,1620000000000 ,1616812296580 -1616812296610 ,112.5730202,26.89366046,63.11641312,180.1708087,180.7124847,9.948418,0.089902131,1620000000000 ,1620000000000 ,1620000000000 ,1616812296590 -1616812296620 ,112.5730202,26.89365956,63.11567307,180.1676395,180.6862728,9.941613,0.089855102,1620000000000 ,1620000000000 ,1620000000000 ,1616812296600 -1616812296631 ,112.5730202,26.89365866,63.11497116,180.1681859,180.6650274,9.9395075,0.089832343,1620000000000 ,1620000000000 ,1620000000000 ,1616812296610 -1616812296643 ,112.5730202,26.89365776,63.11431503,180.1652626,180.6760941,9.926232,0.089744678,1620000000000 ,1620000000000 ,1620000000000 ,1616812296620 -1616812296651 ,112.5730202,26.89365687,63.11369324,180.1671477,180.669926,9.91962,0.089678691,1620000000000 ,1620000000000 ,1620000000000 ,1616812296630 -1616812296661 ,112.5730202,26.89365597,63.11314011,180.1690328,180.641518,9.905496,0.08957355,1620000000000 ,1620000000000 ,1620000000000 ,1616812296640 -1616812296672 ,112.5730202,26.89365508,63.11266327,180.1717103,180.6295364,9.900178,0.089501801,1620000000000 ,1620000000000 ,1620000000000 ,1616812296650 -1616812296681 ,112.5730202,26.89365418,63.11212921,180.1756718,180.6286072,9.901643,0.089513894,1620000000000 ,1620000000000 ,1620000000000 ,1616812296660 -1616812296692 ,112.5730202,26.89365329,63.11136246,180.177311,180.6451357,9.905523,0.089527029,1620000000000 ,1620000000000 ,1620000000000 ,1616812296670 -1616812296704 ,112.5730201,26.89365239,63.11027527,180.1758084,180.6785481,9.913839,0.089578524,1620000000000 ,1620000000000 ,1620000000000 ,1616812296680 -1616812296714 ,112.5730201,26.89365149,63.10886765,180.1767646,180.7267638,9.922724,0.089641979,1620000000000 ,1620000000000 ,1620000000000 ,1616812296690 -1616812296725 ,112.5730201,26.8936506,63.10716629,180.1767919,180.7543728,9.923658,0.089656158,1620000000000 ,1620000000000 ,1620000000000 ,1616812296700 -1616812296735 ,112.5730201,26.8936497,63.10535431,180.176628,180.7560854,9.910612,0.089573049,1620000000000 ,1620000000000 ,1620000000000 ,1616812296710 -1616812296743 ,112.5730201,26.89364881,63.10361862,180.1780214,180.7415709,9.895288,0.089432307,1620000000000 ,1620000000000 ,1620000000000 ,1616812296720 -1616812296754 ,112.5730201,26.89364791,63.10190201,180.1829391,180.7516458,9.889995,0.089361341,1620000000000 ,1620000000000 ,1620000000000 ,1616812296730 -1616812296765 ,112.5730201,26.89364702,63.10002518,180.1876383,180.8035628,9.894332,0.089372486,1620000000000 ,1620000000000 ,1620000000000 ,1616812296740 -1616812296773 ,112.5730201,26.89364613,63.09788513,180.191026,180.871467,9.901308,0.089417655,1620000000000 ,1620000000000 ,1620000000000 ,1616812296750 -1616812296783 ,112.57302,26.89364523,63.09553909,180.1904796,180.8999443,9.908123,0.089467154,1620000000000 ,1620000000000 ,1620000000000 ,1616812296760 -1616812296793 ,112.57302,26.89364434,63.09310532,180.1864088,180.884958,9.909856,0.089494016,1620000000000 ,1620000000000 ,1620000000000 ,1616812296770 -1616812296802 ,112.57302,26.89364344,63.09062576,180.1807808,180.8459042,9.908063,0.08947694,1620000000000 ,1620000000000 ,1620000000000 ,1616812296780 -1616812296813 ,112.57302,26.89364255,63.08805847,180.1747156,180.8005563,9.90444,0.089444879,1620000000000 ,1620000000000 ,1620000000000 ,1616812296790 -1616812296823 ,112.57302,26.89364165,63.08537292,180.1717922,180.772641,9.899329,0.089386705,1620000000000 ,1620000000000 ,1620000000000 ,1616812296800 -1616812296834 ,112.57302,26.89364076,63.08262253,180.1672297,180.7570422,9.895081,0.089348429,1620000000000 ,1620000000000 ,1620000000000 ,1616812296810 -1616812296844 ,112.57302,26.89363987,63.07987976,180.1609732,180.726662,9.89202,0.089314788,1620000000000 ,1620000000000 ,1620000000000 ,1616812296820 -1616812296854 ,112.57302,26.89363897,63.07709122,180.1574762,180.6675413,9.888534,0.089277915,1620000000000 ,1620000000000 ,1620000000000 ,1616812296830 -1616812296865 ,112.5730199,26.89363808,63.07414627,180.1554544,180.6131816,9.887136,0.089251444,1620000000000 ,1620000000000 ,1620000000000 ,1616812296840 -1616812296873 ,112.5730199,26.89363719,63.07100677,180.1575581,180.6032263,9.889732,0.089250225,1620000000000 ,1620000000000 ,1620000000000 ,1616812296850 -1616812296884 ,112.5730199,26.8936363,63.06768799,180.1574215,180.584756,9.889907,0.0892519,1620000000000 ,1620000000000 ,1620000000000 ,1616812296870 -1616812296894 ,112.5730199,26.8936354,63.06428909,180.158569,180.5106012,9.892098,0.089256348,1620000000000 ,1620000000000 ,1620000000000 ,1616812296880 -1616812296905 ,112.5730199,26.89363451,63.0609169,180.1549626,180.4298666,9.884937,0.089218398,1620000000000 ,1620000000000 ,1620000000000 ,1616812296880 -1616812296914 ,112.5730199,26.89363273,63.05426025,180.1601809,180.4457704,9.88019,0.178365708,1620000000000 ,1620000000000 ,1620000000000 ,1616812296900 -1616812296924 ,112.5730199,26.89363184,63.0510788,180.1660822,180.5021817,9.869325,0.089085816,1620000000000 ,1620000000000 ,1620000000000 ,1616812296910 -1616812296935 ,112.5730199,26.89363095,63.04832077,180.1733495,180.4594764,9.860075,0.089020807,1620000000000 ,1620000000000 ,1620000000000 ,1616812296920 -1616812296944 ,112.5730199,26.89363006,63.04595184,180.1750434,180.4871013,9.852501,0.088961314,1620000000000 ,1620000000000 ,1620000000000 ,1616812296930 -1616812296956 ,112.5730199,26.89362917,63.04376221,180.1706721,180.5596039,9.851053,0.088951205,1620000000000 ,1620000000000 ,1620000000000 ,1616812296940 -1616812296967 ,112.5730199,26.89362828,63.04150391,180.1654538,180.6677152,9.852002,0.08894883,1620000000000 ,1620000000000 ,1620000000000 ,1616812296950 -1616812296977 ,112.5730198,26.89362739,63.03919983,180.1616289,180.7633601,9.856133,0.088974099,1620000000000 ,1620000000000 ,1620000000000 ,1616812296960 -1616812296985 ,112.5730198,26.8936265,63.03686523,180.1627491,180.7691952,9.861696,0.089026637,1620000000000 ,1620000000000 ,1620000000000 ,1616812296970 -1616812296998 ,112.5730198,26.89362561,63.0346756,180.1631042,180.7516655,9.854849,0.088999785,1620000000000 ,1620000000000 ,1620000000000 ,1616812296980 -1616812297011 ,112.5730198,26.89362561,63.0346756,180.1631042,-400,9.854849,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812296980 -1616812297016 ,112.5730198,26.89362383,63.03131866,180.1652353,180.7734218,9.82567,0.177663755,1620000000000 ,1620000000000 ,1620000000000 ,1616812297000 -1616812297025 ,112.5730198,26.89362295,63.02996445,180.1692514,180.8339853,9.825681,0.088748155,1620000000000 ,1620000000000 ,1620000000000 ,1616812297010 -1616812297035 ,112.5730198,26.89362206,63.0286026,180.170836,180.8549894,9.832474,0.088794498,1620000000000 ,1620000000000 ,1620000000000 ,1616812297020 -1616812297044 ,112.5730198,26.89362117,63.0271225,180.1745243,180.8465773,9.83915,0.088858527,1620000000000 ,1620000000000 ,1620000000000 ,1616812297030 -1616812297055 ,112.5730197,26.89362028,63.0255394,180.1798792,180.7822598,9.83811,0.088851921,1620000000000 ,1620000000000 ,1620000000000 ,1616812297040 -1616812297066 ,112.5730197,26.89361939,63.02381516,180.1927746,180.7178846,9.845326,0.08889291,1620000000000 ,1620000000000 ,1620000000000 ,1616812297050 -1616812297079 ,112.5730197,26.8936185,63.02204514,180.2092763,180.6153033,9.841424,0.088883232,1620000000000 ,1620000000000 ,1620000000000 ,1616812297060 -1616812297086 ,112.5730197,26.89361761,63.02031708,180.2215707,180.5396891,9.834684,0.08883356,1620000000000 ,1620000000000 ,1620000000000 ,1616812297070 -1616812297095 ,112.5730197,26.89361673,63.01877213,180.2307231,180.5149032,9.820241,0.088717322,1620000000000 ,1620000000000 ,1620000000000 ,1616812297080 -1616812297106 ,112.5730197,26.89361584,63.01733017,180.2412689,180.5451323,9.81229,0.088632018,1620000000000 ,1620000000000 ,1620000000000 ,1616812297090 -1616812297116 ,112.5730197,26.89361495,63.01579285,180.256951,180.5280733,9.817127,0.088642448,1620000000000 ,1620000000000 ,1620000000000 ,1616812297100 -1616812297125 ,112.5730197,26.89361407,63.01408386,180.2742724,180.4740441,9.827982,0.088719085,1620000000000 ,1620000000000 ,1620000000000 ,1616812297110 -1616812297137 ,112.5730197,26.89361318,63.01239395,180.2879328,180.4337077,9.835227,0.088799405,1620000000000 ,1620000000000 ,1620000000000 ,1616812297120 -1616812297146 ,112.5730197,26.89361229,63.010952,180.3003637,180.404839,9.831328,0.088809148,1620000000000 ,1620000000000 ,1620000000000 ,1616812297130 -1616812297156 ,112.5730197,26.8936114,63.00974274,180.3159912,180.3972922,9.816787,0.088702028,1620000000000 ,1620000000000 ,1620000000000 ,1616812297140 -1616812297166 ,112.5730197,26.89361052,63.00860214,180.3349245,180.4222145,9.805921,0.088603707,1620000000000 ,1620000000000 ,1620000000000 ,1616812297150 -1616812297178 ,112.5730197,26.89360963,63.00739288,180.351918,180.4791362,9.797982,0.088517482,1620000000000 ,1620000000000 ,1620000000000 ,1616812297160 -1616812297187 ,112.5730196,26.89360875,63.0061264,180.3650866,180.4961573,9.794312,0.088477011,1620000000000 ,1620000000000 ,1620000000000 ,1616812297170 -1616812297196 ,112.5730196,26.89360786,63.00492096,180.3751953,180.4644579,9.793026,0.088465388,1620000000000 ,1620000000000 ,1620000000000 ,1616812297180 -1616812297208 ,112.5730196,26.89360698,63.00376892,180.3838559,180.4652647,9.794231,0.088471779,1620000000000 ,1620000000000 ,1620000000000 ,1616812297190 -1616812297217 ,112.5730196,26.89360609,63.00338364,180.3944291,180.5243751,9.825173,0.088854873,1620000000000 ,1620000000000 ,1620000000000 ,1616812297200 -1616812297227 ,112.5730196,26.8936052,63.00411224,180.401915,180.6120549,9.828267,0.089507804,1620000000000 ,1620000000000 ,1620000000000 ,1616812297210 -1616812297236 ,112.5730196,26.8936043,63.00495911,180.407625,180.6494285,9.825025,0.089496587,1620000000000 ,1620000000000 ,1620000000000 ,1616812297220 -1616812297247 ,112.5730196,26.89360341,63.005867,180.4120236,180.644396,9.815696,0.089434696,1620000000000 ,1620000000000 ,1620000000000 ,1616812297230 -1616812297257 ,112.5730196,26.89360251,63.00673294,180.417761,180.696437,9.800705,0.089313655,1620000000000 ,1620000000000 ,1620000000000 ,1616812297240 -1616812297271 ,112.5730196,26.89360162,63.00754166,180.4218318,180.8423222,9.787647,0.089181905,1620000000000 ,1620000000000 ,1620000000000 ,1616812297250 -1616812297278 ,112.5730196,26.89360073,63.00845337,180.4241267,180.959749,9.783693,0.08913915,1620000000000 ,1620000000000 ,1620000000000 ,1616812297260 -1616812297288 ,112.5730195,26.89359984,63.00953674,180.4240448,181.0123267,9.780794,0.089127782,1620000000000 ,1620000000000 ,1620000000000 ,1616812297270 -1616812297298 ,112.5730195,26.89359895,63.0106926,180.4244,181.0358803,9.784642,0.089144872,1620000000000 ,1620000000000 ,1620000000000 ,1616812297280 -1616812297309 ,112.5730195,26.89359806,63.01174164,180.4212581,181.0895775,9.792466,0.089209509,1620000000000 ,1620000000000 ,1620000000000 ,1616812297290 -1616812297319 ,112.5730195,26.89359716,63.0124855,180.4244,181.1626396,9.798933,0.089253541,1620000000000 ,1620000000000 ,1620000000000 ,1616812297300 -1616812297328 ,112.5730195,26.89359627,63.01283646,180.4262578,181.2038287,9.803024,0.089278017,1620000000000 ,1620000000000 ,1620000000000 ,1616812297310 -1616812297339 ,112.5730195,26.89359538,63.01293182,180.4281156,181.1889185,9.798315,0.089246525,1620000000000 ,1620000000000 ,1620000000000 ,1616812297320 -1616812297348 ,112.5730194,26.89359449,63.01304626,180.4298914,181.1769554,9.787492,0.089162734,1620000000000 ,1620000000000 ,1620000000000 ,1616812297330 -1616812297361 ,112.5730194,26.8935936,63.01337051,180.4312575,181.1987046,9.773905,0.089053663,1620000000000 ,1620000000000 ,1620000000000 ,1616812297340 -1616812297370 ,112.5730194,26.89359271,63.01381683,180.4299461,181.2471252,9.764223,0.088958472,1620000000000 ,1620000000000 ,1620000000000 ,1616812297350 -1616812297379 ,112.5730194,26.89359182,63.01416779,180.4304378,181.2876424,9.764176,0.088934281,1620000000000 ,1620000000000 ,1620000000000 ,1616812297360 -1616812297390 ,112.5730194,26.89359093,63.01422501,180.4320771,181.2952306,9.771638,0.088966707,1620000000000 ,1620000000000 ,1620000000000 ,1616812297370 -1616812297399 ,112.5730193,26.89359004,63.01395035,180.431558,181.2729968,9.781892,0.089038087,1620000000000 ,1620000000000 ,1620000000000 ,1616812297380 -1616812297410 ,112.5730193,26.89358915,63.01338196,180.4320771,181.2211152,9.786957,0.089078956,1620000000000 ,1620000000000 ,1620000000000 ,1616812297390 -1616812297420 ,112.5730193,26.89358826,63.01254654,180.436503,181.2035382,9.786451,0.089075547,1620000000000 ,1620000000000 ,1620000000000 ,1616812297400 -1616812297431 ,112.5730193,26.89358737,63.01146317,180.4454096,181.2059629,9.781989,0.08901417,1620000000000 ,1620000000000 ,1620000000000 ,1616812297410 -1616812297439 ,112.5730193,26.89358648,63.01026535,180.4530594,181.1996068,9.7771845,0.088963958,1620000000000 ,1620000000000 ,1620000000000 ,1616812297420 -1616812297450 ,112.5730192,26.89358559,63.0091629,180.4595891,181.1830341,9.772439,0.08893751,1620000000000 ,1620000000000 ,1620000000000 ,1616812297430 -1616812297459 ,112.5730192,26.8935847,63.00831604,180.4641243,181.1472751,9.764666,0.088879491,1620000000000 ,1620000000000 ,1620000000000 ,1616812297440 -1616812297471 ,112.5730192,26.89358382,63.00695038,180.4674575,181.1841892,9.751094,0.088426228,1620000000000 ,1620000000000 ,1620000000000 ,1616812297450 -1616812297480 ,112.5730192,26.89358294,63.00494766,180.4704354,181.227327,9.742714,0.08798674,1620000000000 ,1620000000000 ,1620000000000 ,1616812297460 -1616812297490 ,112.5730192,26.89358206,63.00280762,180.4730855,181.2237487,9.749,0.087999444,1620000000000 ,1620000000000 ,1620000000000 ,1616812297470 -1616812297500 ,112.5730191,26.89358118,63.00037003,180.474916,181.2125029,9.76239,0.088091283,1620000000000 ,1620000000000 ,1620000000000 ,1616812297480 -1616812297510 ,112.5730191,26.89358029,62.99760437,180.4758176,181.2012836,9.774945,0.088196723,1620000000000 ,1620000000000 ,1620000000000 ,1616812297490 -1616812297521 ,112.5730191,26.89357941,62.99468994,180.480107,181.1954209,9.774373,0.08821546,1620000000000 ,1620000000000 ,1620000000000 ,1616812297500 -1616812297531 ,112.5730191,26.89357853,62.99197769,180.4852706,181.1780102,9.757134,0.088105091,1620000000000 ,1620000000000 ,1620000000000 ,1616812297510 -1616812297540 ,112.5730191,26.89357765,62.98980331,180.4877021,181.1841229,9.736936,0.087942049,1620000000000 ,1620000000000 ,1620000000000 ,1616812297520 -1616812297552 ,112.5730191,26.89357677,62.98817444,180.4882486,181.2352252,9.725875,0.087840067,1620000000000 ,1620000000000 ,1620000000000 ,1616812297530 -1616812297562 ,112.573019,26.8935759,62.98683548,180.4864727,181.2808819,9.719638,0.087790506,1620000000000 ,1620000000000 ,1620000000000 ,1616812297540 -1616812297574 ,112.573019,26.89357502,62.98549652,180.4822107,181.3011798,9.720048,0.087780311,1620000000000 ,1620000000000 ,1620000000000 ,1616812297550 -1616812297582 ,112.573019,26.89357414,62.98410416,180.4742057,181.3455577,9.723305,0.087804726,1620000000000 ,1620000000000 ,1620000000000 ,1616812297560 -1616812297592 ,112.573019,26.89357326,62.98265839,180.471419,181.3523515,9.729564,0.087845771,1620000000000 ,1620000000000 ,1620000000000 ,1616812297570 -1616812297602 ,112.573019,26.89357238,62.98123169,180.4689055,181.3203402,9.734313,0.087900623,1620000000000 ,1620000000000 ,1620000000000 ,1616812297580 -1616812297611 ,112.5730189,26.89357151,62.98001862,180.4666925,181.2703979,9.728189,0.087873525,1620000000000 ,1620000000000 ,1620000000000 ,1616812297590 -1616812297622 ,112.5730189,26.89357063,62.97917557,180.4617747,181.2636635,9.716576,0.087798597,1620000000000 ,1620000000000 ,1620000000000 ,1616812297600 -1616812297632 ,112.5730189,26.89356975,62.97870636,180.4556549,181.2913965,9.701743,0.087685765,1620000000000 ,1620000000000 ,1620000000000 ,1616812297610 -1616812297642 ,112.5730189,26.89356888,62.97843552,180.4494531,181.2988461,9.694247,0.087601523,1620000000000 ,1620000000000 ,1620000000000 ,1616812297620 -1616812297652 ,112.5730189,26.893568,62.97820663,180.4426229,181.2895029,9.695483,0.0876022,1620000000000 ,1620000000000 ,1620000000000 ,1616812297630 -1616812297663 ,112.5730188,26.89356712,62.97790909,180.4370221,181.2778051,9.698,0.087614598,1620000000000 ,1620000000000 ,1620000000000 ,1616812297640 -1616812297678 ,112.5730188,26.89356625,62.97763443,180.4313941,181.2621344,9.699587,0.087646104,1620000000000 ,1620000000000 ,1620000000000 ,1616812297650 -1616812297682 ,112.5730188,26.89356537,62.9774437,180.4277058,181.2302801,9.694734,0.08761613,1620000000000 ,1620000000000 ,1620000000000 ,1616812297660 -1616812297693 ,112.5730188,26.8935645,62.97745514,180.4226241,181.2380456,9.690155,0.087583093,1620000000000 ,1620000000000 ,1620000000000 ,1616812297670 -1616812297702 ,112.5730188,26.89356362,62.97763062,180.4167501,181.2536486,9.682921,0.087530247,1620000000000 ,1620000000000 ,1620000000000 ,1616812297680 -1616812297716 ,112.5730187,26.89356275,62.9778595,180.4121329,181.2509537,9.679147,0.087491602,1620000000000 ,1620000000000 ,1620000000000 ,1616812297690 -1616812297722 ,112.5730187,26.89356187,62.97802353,180.406095,181.2304459,9.677151,0.087471772,1620000000000 ,1620000000000 ,1620000000000 ,1616812297700 -1616812297734 ,112.5730187,26.893561,62.97809219,180.4014505,181.189373,9.673896,0.087440195,1620000000000 ,1620000000000 ,1620000000000 ,1616812297710 -1616812297742 ,112.5730187,26.89356012,62.97809219,180.3982813,181.1529908,9.670721,0.087408347,1620000000000 ,1620000000000 ,1620000000000 ,1616812297720 -1616812297753 ,112.5730187,26.89355925,62.97806549,180.3931996,181.1355485,9.667692,0.087380013,1620000000000 ,1620000000000 ,1620000000000 ,1616812297730 -1616812297762 ,112.5730187,26.89355838,62.9780159,180.3888556,181.1219271,9.666427,0.087364,1620000000000 ,1620000000000 ,1620000000000 ,1616812297740 -1616812297772 ,112.5730186,26.8935575,62.97794724,180.3867519,181.1096774,9.664984,0.087354762,1620000000000 ,1620000000000 ,1620000000000 ,1616812297750 -1616812297784 ,112.5730186,26.89355663,62.97785187,180.3834461,181.0916471,9.662195,0.087329062,1620000000000 ,1620000000000 ,1620000000000 ,1616812297760 -1616812297794 ,112.5730186,26.89355576,62.97769165,180.3795393,181.0600488,9.660225,0.087308759,1620000000000 ,1620000000000 ,1620000000000 ,1616812297770 -1616812297805 ,112.5730186,26.89355488,62.97741699,180.375687,181.034009,9.656796,0.087275739,1620000000000 ,1620000000000 ,1620000000000 ,1616812297780 -1616812297813 ,112.5730186,26.89355401,62.97701645,180.3721353,181.0275911,9.6536045,0.087240019,1620000000000 ,1620000000000 ,1620000000000 ,1616812297790 -1616812297825 ,112.5730186,26.89355314,62.97655487,180.3676274,181.0301101,9.651095,0.087214044,1620000000000 ,1620000000000 ,1620000000000 ,1616812297800 -1616812297834 ,112.5730185,26.89355227,62.97608948,180.363502,181.0229778,9.648326,0.087190356,1620000000000 ,1620000000000 ,1620000000000 ,1616812297810 -1616812297842 ,112.5730185,26.8935514,62.97563934,180.3602781,181.0131906,9.646917,0.087175801,1620000000000 ,1620000000000 ,1620000000000 ,1616812297820 -1616812297854 ,112.5730185,26.89355053,62.97518539,180.3560434,181.0025713,9.644153,0.087154355,1620000000000 ,1620000000000 ,1620000000000 ,1616812297840 -1616812297863 ,112.5730185,26.89354965,62.97468948,180.3497596,180.9999813,9.641069,0.08712495,1620000000000 ,1620000000000 ,1620000000000 ,1616812297850 -1616812297874 ,112.5730185,26.89354878,62.97415924,180.3441042,180.9997887,9.6386,0.087100851,1620000000000 ,1620000000000 ,1620000000000 ,1616812297860 -1616812297884 ,112.5730185,26.89354791,62.97356415,180.3380664,180.9882104,9.634854,0.087067972,1620000000000 ,1620000000000 ,1620000000000 ,1616812297870 -1616812297894 ,112.5730185,26.89354704,62.97290039,180.3323563,180.9738008,9.632833,0.087042176,1620000000000 ,1620000000000 ,1620000000000 ,1616812297880 -1616812297906 ,112.5730184,26.89354617,62.97215652,180.3259633,180.9578207,9.629271,0.087009245,1620000000000 ,1620000000000 ,1620000000000 ,1616812297880 -1616812297914 ,112.5730184,26.89354443,62.97033691,180.3111554,180.9514115,9.624988,0.173935301,1620000000000 ,1620000000000 ,1620000000000 ,1616812297900 -1616812297924 ,112.5730184,26.89354443,62.97033691,180.3111554,-400,9.624988,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812297910 -1616812297940 ,112.5730184,26.8935427,62.96830368,180.2973038,180.9351442,9.618376,0.173831575,1620000000000 ,1620000000000 ,1620000000000 ,1616812297920 -1616812297945 ,112.5730184,26.89354183,62.96734238,180.2907741,180.9097981,9.614563,0.086864621,1620000000000 ,1620000000000 ,1620000000000 ,1616812297930 -1616812297955 ,112.5730184,26.89354183,62.96734238,180.2907741,-400,9.614563,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812297940 -1616812297964 ,112.5730183,26.89354009,62.96530914,180.2790262,180.9041679,9.611084,0.173668315,1620000000000 ,1620000000000 ,1620000000000 ,1616812297950 -1616812297974 ,112.5730183,26.89353922,62.96413803,180.2724692,180.8878686,9.608937,0.086799722,1620000000000 ,1620000000000 ,1620000000000 ,1616812297960 -1616812297986 ,112.5730183,26.89353835,62.96295929,180.2647101,180.87732,9.605609,0.086771789,1620000000000 ,1620000000000 ,1620000000000 ,1616812297970 -1616812297994 ,112.5730183,26.89353749,62.96184921,180.2555304,180.8642541,9.601623,0.086738409,1620000000000 ,1620000000000 ,1620000000000 ,1616812297980 -1616812298005 ,112.5730183,26.89353749,62.96184921,180.2555304,-400,9.601623,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812297980 -1616812298014 ,112.5730183,26.89353575,62.95974731,180.2447387,180.8617602,9.594265,0.173378359,1620000000000 ,1620000000000 ,1620000000000 ,1616812298000 -1616812298026 ,112.5730183,26.89353489,62.95870972,180.2364058,180.8565146,9.590058,0.086637347,1620000000000 ,1620000000000 ,1620000000000 ,1616812298010 -1616812298035 ,112.5730182,26.89353402,62.95769501,180.2287014,180.8533289,9.587221,0.086607134,1620000000000 ,1620000000000 ,1620000000000 ,1616812298020 -1616812298045 ,112.5730182,26.89353316,62.95667648,180.2204505,180.8609139,9.584928,0.086586032,1620000000000 ,1620000000000 ,1620000000000 ,1616812298030 -1616812298056 ,112.5730182,26.89353229,62.95563889,180.2140301,180.8743099,9.582292,0.086560422,1620000000000 ,1620000000000 ,1620000000000 ,1616812298040 -1616812298066 ,112.5730182,26.89353143,62.95460892,180.2054241,180.8984622,9.580802,0.086547341,1620000000000 ,1620000000000 ,1620000000000 ,1616812298050 -1616812298075 ,112.5730182,26.89353056,62.9536438,180.1970913,180.8980149,9.578003,0.086525973,1620000000000 ,1620000000000 ,1620000000000 ,1616812298060 -1616812298085 ,112.5730182,26.8935297,62.95274734,180.1893595,180.8870844,9.57451,0.086498184,1620000000000 ,1620000000000 ,1620000000000 ,1616812298070 -1616812298096 ,112.5730182,26.89352883,62.95187759,180.1803436,180.8889436,9.569484,0.086458624,1620000000000 ,1620000000000 ,1620000000000 ,1616812298080 -1616812298106 ,112.5730182,26.89352797,62.95099258,180.172202,180.8948794,9.565052,0.086414575,1620000000000 ,1620000000000 ,1620000000000 ,1616812298090 -1616812298116 ,112.5730181,26.8935271,62.95008469,180.1630769,180.8916637,9.562403,0.086385752,1620000000000 ,1620000000000 ,1620000000000 ,1616812298100 -1616812298137 ,112.5730181,26.89352624,62.94916153,180.1537879,180.8811711,9.560532,0.086365045,1620000000000 ,1620000000000 ,1620000000000 ,1616812298110 -1616812298142 ,112.5730181,26.89352538,62.94823456,180.1455916,180.8647846,9.559124,0.086351979,1620000000000 ,1620000000000 ,1620000000000 ,1616812298120 -1616812298146 ,112.5730181,26.89352451,62.94731522,180.1364119,180.8401878,9.555851,0.086324861,1620000000000 ,1620000000000 ,1620000000000 ,1616812298130 -1616812298158 ,112.5730181,26.89352365,62.94643021,180.1255382,180.8253099,9.552521,0.086295366,1620000000000 ,1620000000000 ,1620000000000 ,1616812298140 -1616812298166 ,112.5730181,26.89352279,62.9455986,180.1146645,180.8078933,9.548788,0.086266258,1620000000000 ,1620000000000 ,1620000000000 ,1616812298150 -1616812298176 ,112.5730181,26.89352193,62.94481277,180.1058126,180.7933706,9.544303,0.086226765,1620000000000 ,1620000000000 ,1620000000000 ,1616812298160 -1616812298186 ,112.5730181,26.89352106,62.94407272,180.0950482,180.7798895,9.5409975,0.086196714,1620000000000 ,1620000000000 ,1620000000000 ,1616812298170 -1616812298197 ,112.573018,26.8935202,62.94336319,180.0868247,180.7615439,9.53661,0.086160749,1620000000000 ,1620000000000 ,1620000000000 ,1616812298180 -1616812298207 ,112.573018,26.89351934,62.94268417,180.0807595,180.7404851,9.532688,0.086123196,1620000000000 ,1620000000000 ,1620000000000 ,1616812298190 -1616812298216 ,112.573018,26.89351848,62.94226074,180.0875897,180.3813937,9.518897,0.0859851,1620000000000 ,1620000000000 ,1620000000000 ,1616812298200 -1616812298226 ,112.573018,26.89351762,62.9422493,180.0816064,179.8095894,9.515667,0.085760244,1620000000000 ,1620000000000 ,1620000000000 ,1616812298210 -1616812298239 ,112.573018,26.89351677,62.94229126,180.0756778,179.7997282,9.513267,0.085738051,1620000000000 ,1620000000000 ,1620000000000 ,1616812298220 -1616812298249 ,112.573018,26.89351591,62.94236755,180.0694214,179.7923997,9.510469,0.085716919,1620000000000 ,1620000000000 ,1620000000000 ,1616812298230 -1616812298257 ,112.573018,26.89351505,62.94247437,180.0627551,179.7734096,9.506202,0.085682557,1620000000000 ,1620000000000 ,1620000000000 ,1616812298240 -1616812298267 ,112.573018,26.8935142,62.94258881,180.0551053,179.7582894,9.502916,0.085650477,1620000000000 ,1620000000000 ,1620000000000 ,1616812298250 -1616812298278 ,112.573018,26.89351334,62.94271088,180.0480019,179.7639388,9.499406,0.085619023,1620000000000 ,1620000000000 ,1620000000000 ,1616812298260 -1616812298288 ,112.573018,26.89351248,62.94284439,180.0419367,179.7692029,9.496908,0.085595146,1620000000000 ,1620000000000 ,1620000000000 ,1616812298270 -1616812298299 ,112.573018,26.89351163,62.94300079,180.0353797,179.7772068,9.49318,0.085566652,1620000000000 ,1620000000000 ,1620000000000 ,1616812298280 -1616812298308 ,112.5730181,26.89351077,62.9431839,180.0296697,179.7901482,9.48987,0.085534853,1620000000000 ,1620000000000 ,1620000000000 ,1616812298290 -1616812298317 ,112.5730181,26.89350992,62.94340515,180.0243421,179.7952137,9.486442,0.085507166,1620000000000 ,1620000000000 ,1620000000000 ,1616812298300 -1616812298329 ,112.5730181,26.89350906,62.94366837,180.0185228,179.8081886,9.482861,0.085476491,1620000000000 ,1620000000000 ,1620000000000 ,1616812298310 -1616812298338 ,112.5730181,26.89350821,62.9439621,180.0141788,179.8199174,9.479704,0.085449284,1620000000000 ,1620000000000 ,1620000000000 ,1616812298320 -1616812298348 ,112.5730181,26.89350735,62.94425583,180.010873,179.8245174,9.476573,0.085421628,1620000000000 ,1620000000000 ,1620000000000 ,1616812298330 -1616812298357 ,112.5730181,26.8935065,62.94451904,180.0077038,179.8285181,9.473553,0.085391829,1620000000000 ,1620000000000 ,1620000000000 ,1616812298340 -1616812298368 ,112.5730181,26.89350565,62.94473267,180.0050537,179.8258636,9.472513,0.085377397,1620000000000 ,1620000000000 ,1620000000000 ,1616812298350 -1616812298378 ,112.5730181,26.89350479,62.94488907,180.0027041,179.8253738,9.470359,0.085357524,1620000000000 ,1620000000000 ,1620000000000 ,1616812298360 -1616812298388 ,112.5730181,26.89350394,62.94502258,179.9990704,179.8207832,9.467363,0.085332803,1620000000000 ,1620000000000 ,1620000000000 ,1616812298370 -1616812298398 ,112.5730181,26.89350309,62.94516754,179.9967481,179.8081075,9.462452,0.085295259,1620000000000 ,1620000000000 ,1620000000000 ,1616812298380 -1616812298409 ,112.5730181,26.89350223,62.94536591,179.9944805,179.7885817,9.457041,0.085249265,1620000000000 ,1620000000000 ,1620000000000 ,1616812298390 -1616812298419 ,112.5730181,26.89350138,62.9455986,179.9946718,179.7715635,9.453728,0.085213619,1620000000000 ,1620000000000 ,1620000000000 ,1616812298400 -1616812298428 ,112.5730181,26.89350053,62.94580841,179.9961471,179.7596058,9.452082,0.085197211,1620000000000 ,1620000000000 ,1620000000000 ,1616812298410 -1616812298439 ,112.5730181,26.89349968,62.94595337,179.998606,179.748083,9.451013,0.085184001,1620000000000 ,1620000000000 ,1620000000000 ,1616812298420 -1616812298448 ,112.5730181,26.89349883,62.946064,179.9998081,179.7318999,9.448908,0.085168021,1620000000000 ,1620000000000 ,1620000000000 ,1616812298430 -1616812298460 ,112.5730181,26.89349797,62.94617844,180.0044799,179.7181515,9.44532,0.085139502,1620000000000 ,1620000000000 ,1620000000000 ,1616812298440 -1616812298471 ,112.5730181,26.89349712,62.94610214,180.0077584,180.0479749,9.441441,0.08521057,1620000000000 ,1620000000000 ,1620000000000 ,1616812298450 -1616812298480 ,112.5730181,26.89349627,62.9458046,180.0136597,180.386005,9.437305,0.085281918,1620000000000 ,1620000000000 ,1620000000000 ,1616812298460 -1616812298489 ,112.5730181,26.89349542,62.94548798,180.0202986,180.3859865,9.4334135,0.085246756,1620000000000 ,1620000000000 ,1620000000000 ,1616812298470 -1616812298499 ,112.5730181,26.89349457,62.9451561,180.0276206,180.3846411,9.430036,0.085214705,1620000000000 ,1620000000000 ,1620000000000 ,1616812298480 -1616812298509 ,112.5730181,26.89349371,62.94483566,180.0345328,180.3745061,9.427197,0.085190314,1620000000000 ,1620000000000 ,1620000000000 ,1616812298490 -1616812298519 ,112.5730181,26.89349286,62.94451141,180.0428109,180.376138,9.425243,0.085169881,1620000000000 ,1620000000000 ,1620000000000 ,1616812298500 -1616812298531 ,112.5730181,26.89349201,62.94418335,180.0528377,180.3901166,9.423411,0.085155547,1620000000000 ,1620000000000 ,1620000000000 ,1616812298510 -1616812298540 ,112.5730181,26.89349116,62.94384003,180.0616896,180.4035566,9.419909,0.085127733,1620000000000 ,1620000000000 ,1620000000000 ,1616812298520 -1616812298552 ,112.5730181,26.89349031,62.94350433,180.0704595,180.4155589,9.416454,0.08509791,1620000000000 ,1620000000000 ,1620000000000 ,1616812298530 -1616812298560 ,112.573018,26.89348946,62.94318008,180.0801857,180.4274457,9.412114,0.085061879,1620000000000 ,1620000000000 ,1620000000000 ,1616812298540 -1616812298569 ,112.573018,26.89348861,62.94285202,180.0889011,180.4416438,9.40882,0.08503012,1620000000000 ,1620000000000 ,1620000000000 ,1616812298550 -1616812298580 ,112.573018,26.89348776,62.94249725,180.0988731,180.4611573,9.405966,0.085003707,1620000000000 ,1620000000000 ,1620000000000 ,1616812298560 -1616812298590 ,112.573018,26.89348691,62.94211578,180.109938,180.4826648,9.403895,0.084982157,1620000000000 ,1620000000000 ,1620000000000 ,1616812298570 -1616812298599 ,112.573018,26.89348606,62.94171143,180.1196096,180.4957672,9.401872,0.0849661,1620000000000 ,1620000000000 ,1620000000000 ,1616812298580 -1616812298610 ,112.573018,26.89348521,62.94128036,180.1292811,180.5156711,9.399993,0.084947407,1620000000000 ,1620000000000 ,1620000000000 ,1616812298590 -1616812298620 ,112.573018,26.89348436,62.94081879,180.1394718,180.5376797,9.397164,0.08492385,1620000000000 ,1620000000000 ,1620000000000 ,1616812298600 -1616812298630 ,112.573018,26.89348351,62.94033051,180.1496351,180.5546064,9.392949,0.08488761,1620000000000 ,1620000000000 ,1620000000000 ,1616812298610 -1616812298640 ,112.573018,26.89348266,62.93983841,180.1594433,180.5693059,9.388954,0.084852375,1620000000000 ,1620000000000 ,1620000000000 ,1616812298620 -1616812298650 ,112.573018,26.89348181,62.93935394,180.1695793,180.5801359,9.385366,0.084819154,1620000000000 ,1620000000000 ,1620000000000 ,1616812298630 -1616812298660 ,112.573018,26.89348097,62.93883896,180.1799065,180.5891656,9.382871,0.084790831,1620000000000 ,1620000000000 ,1620000000000 ,1616812298640 -1616812298673 ,112.573018,26.89348012,62.93823624,180.1876383,180.606398,9.381303,0.084773331,1620000000000 ,1620000000000 ,1620000000000 ,1616812298650 -1616812298681 ,112.5730179,26.89347927,62.93754959,180.1950422,180.6308812,9.380619,0.084761409,1620000000000 ,1620000000000 ,1620000000000 ,1616812298660 -1616812298690 ,112.5730179,26.89347842,62.93681717,180.2032384,180.6350177,9.37868,0.084744361,1620000000000 ,1620000000000 ,1620000000000 ,1616812298670 -1616812298701 ,112.5730179,26.89347758,62.93607712,180.2103691,180.6391287,9.376052,0.084722136,1620000000000 ,1620000000000 ,1620000000000 ,1616812298680 -1616812298712 ,112.5730179,26.89347673,62.93532181,180.2177184,180.6536526,9.373059,0.084695403,1620000000000 ,1620000000000 ,1620000000000 ,1616812298690 -1616812298722 ,112.5730179,26.89347588,62.93449402,180.2256141,180.6753117,9.369762,0.084662336,1620000000000 ,1620000000000 ,1620000000000 ,1616812298700 -1616812298731 ,112.5730179,26.89347504,62.93358231,180.2343841,180.7001002,9.3674555,0.084635812,1620000000000 ,1620000000000 ,1620000000000 ,1616812298710 -1616812298741 ,112.5730179,26.89347419,62.93261337,180.2442469,180.7082348,9.364383,0.084606146,1620000000000 ,1620000000000 ,1620000000000 ,1616812298720 -1616812298752 ,112.5730179,26.89347334,62.93161774,180.2516235,180.713957,9.362118,0.084583052,1620000000000 ,1620000000000 ,1620000000000 ,1616812298730 -1616812298761 ,112.5730179,26.8934725,62.93061447,180.2594372,180.7307389,9.359388,0.084560984,1620000000000 ,1620000000000 ,1620000000000 ,1616812298740 -1616812298772 ,112.5730179,26.89347165,62.92960358,180.2660215,180.7629516,9.357595,0.084539792,1620000000000 ,1620000000000 ,1620000000000 ,1616812298750 -1616812298781 ,112.5730178,26.89347081,62.9285965,180.2729064,180.7889841,9.355598,0.084524639,1620000000000 ,1620000000000 ,1620000000000 ,1616812298760 -1616812298793 ,112.5730178,26.89346996,62.92759323,180.2787803,180.8014327,9.352222,0.084495104,1620000000000 ,1620000000000 ,1620000000000 ,1616812298770 -1616812298801 ,112.5730178,26.89346996,62.92759323,180.2845723,-400,9.349425,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812298780 -1616812298813 ,112.5730178,26.89346827,62.92556381,180.2923041,180.8218491,9.346045,0.168909612,1620000000000 ,1620000000000 ,1620000000000 ,1616812298790 -1616812298822 ,112.5730178,26.89346743,62.9245224,180.2987245,180.8474247,9.342843,0.084409608,1620000000000 ,1620000000000 ,1620000000000 ,1616812298800 -1616812298832 ,112.5730178,26.89346659,62.92350769,180.3031504,180.8604069,9.339373,0.084379417,1620000000000 ,1620000000000 ,1620000000000 ,1616812298810 -1616812298845 ,112.5730178,26.89346574,62.92253876,180.3088878,180.8720037,9.336724,0.084356393,1620000000000 ,1620000000000 ,1620000000000 ,1616812298820 -1616812298855 ,112.5730178,26.8934649,62.92158127,180.3154175,180.8814937,9.3341875,0.084332756,1620000000000 ,1620000000000 ,1620000000000 ,1616812298830 -1616812298865 ,112.5730177,26.89346406,62.92061996,180.3226848,180.8933694,9.331872,0.084311542,1620000000000 ,1620000000000 ,1620000000000 ,1616812298840 -1616812298874 ,112.5730177,26.89346321,62.91965866,180.3302526,180.9040159,9.329333,0.084288672,1620000000000 ,1620000000000 ,1620000000000 ,1616812298850 -1616812298882 ,112.5730177,26.89346237,62.91872406,180.3364544,180.902024,9.326227,0.084263196,1620000000000 ,1620000000000 ,1620000000000 ,1616812298860 -1616812298893 ,112.5730177,26.89346153,62.91783524,180.3422191,180.9030014,9.322911,0.08423494,1620000000000 ,1620000000000 ,1620000000000 ,1616812298870 -1616812298902 ,112.5730177,26.89346069,62.91698074,180.3485302,180.9045444,9.319556,0.084207471,1620000000000 ,1620000000000 ,1620000000000 ,1616812298880 -1616812298913 ,112.5730177,26.89345985,62.91614151,180.3545954,180.9069025,9.31628,0.084178067,1620000000000 ,1620000000000 ,1620000000000 ,1616812298890 -1616812298923 ,112.5730177,26.893459,62.91532516,180.3594858,180.9117475,9.312412,0.084145713,1620000000000 ,1620000000000 ,1620000000000 ,1616812298900 -1616812298934 ,112.5730177,26.89345816,62.91453934,180.3632834,180.9121759,9.30848,0.084111812,1620000000000 ,1620000000000 ,1620000000000 ,1616812298910 -1616812298943 ,112.5730176,26.89345732,62.91379166,180.364103,180.9034977,9.305563,0.084084307,1620000000000 ,1620000000000 ,1620000000000 ,1616812298930 -1616812298954 ,112.5730176,26.89345648,62.91308212,180.3666166,180.8938888,9.301709,0.084052774,1620000000000 ,1620000000000 ,1620000000000 ,1616812298940 -1616812298964 ,112.5730176,26.89345564,62.91239548,180.3690481,180.8942854,9.299347,0.084028702,1620000000000 ,1620000000000 ,1620000000000 ,1616812298950 -1616812298975 ,112.5730176,26.8934548,62.91170883,180.3719441,180.8900848,9.297463,0.084011284,1620000000000 ,1620000000000 ,1620000000000 ,1616812298960 -1616812298984 ,112.5730176,26.89345396,62.91099548,180.375851,180.8858236,9.295778,0.083993834,1620000000000 ,1620000000000 ,1620000000000 ,1616812298970 -1616812298994 ,112.5730176,26.89345312,62.91024399,180.3786104,180.8827802,9.293207,0.083971428,1620000000000 ,1620000000000 ,1620000000000 ,1616812298980 -1616812299004 ,112.5730176,26.89345228,62.90944672,180.3816703,180.88571,9.289554,0.083938601,1620000000000 ,1620000000000 ,1620000000000 ,1616812298980 -1616812299013 ,112.5730175,26.89345061,62.90776825,180.3816703,180.8910878,9.284265,0.167792524,1620000000000 ,1620000000000 ,1620000000000 ,1616812299000 -1616812299023 ,112.5730175,26.89344977,62.90690613,180.3830363,180.9015889,9.281786,0.083859514,1620000000000 ,1620000000000 ,1620000000000 ,1616812299010 -1616812299035 ,112.5730175,26.89344893,62.90603256,180.3814517,180.9083016,9.279822,0.083839994,1620000000000 ,1620000000000 ,1620000000000 ,1616812299020 -1616812299044 ,112.5730175,26.89344809,62.90517426,180.3802496,180.9158164,9.277248,0.083819717,1620000000000 ,1620000000000 ,1620000000000 ,1616812299030 -1616812299054 ,112.5730175,26.89344725,62.90434265,180.3789109,180.9253752,9.274732,0.083797198,1620000000000 ,1620000000000 ,1620000000000 ,1616812299040 -1616812299067 ,112.5730175,26.89344642,62.90351486,180.3761242,180.9314016,9.271865,0.083772252,1620000000000 ,1620000000000 ,1620000000000 ,1616812299050 -1616812299083 ,112.5730175,26.89344558,62.90266037,180.3737199,180.9402211,9.2689495,0.083743247,1620000000000 ,1620000000000 ,1620000000000 ,1616812299060 -1616812299096 ,112.5730174,26.89344474,62.90180588,180.3694033,180.9533998,9.266361,0.083721594,1620000000000 ,1620000000000 ,1620000000000 ,1616812299070 -1616812299103 ,112.5730174,26.8934439,62.90096664,180.364185,180.9526006,9.264004,0.083698321,1620000000000 ,1620000000000 ,1620000000000 ,1616812299080 -1616812299106 ,112.5730174,26.89344307,62.90015411,180.3594039,180.9502609,9.261778,0.083680735,1620000000000 ,1620000000000 ,1620000000000 ,1616812299090 -1616812299116 ,112.5730174,26.89344223,62.89935303,180.3548413,180.9493012,9.258552,0.083653988,1620000000000 ,1620000000000 ,1620000000000 ,1616812299100 -1616812299130 ,112.5730174,26.89344139,62.89855957,180.3505519,180.9458204,9.255606,0.083627106,1620000000000 ,1620000000000 ,1620000000000 ,1616812299110 -1616812299135 ,112.5730174,26.89344056,62.89776993,180.3453883,180.9401424,9.252796,0.083600773,1620000000000 ,1620000000000 ,1620000000000 ,1616812299120 -1616812299147 ,112.5730174,26.89343972,62.89699554,180.3406618,180.9349801,9.250211,0.083578711,1620000000000 ,1620000000000 ,1620000000000 ,1616812299130 -1616812299158 ,112.5730173,26.89343889,62.89624023,180.3357168,180.9274881,9.247952,0.083557151,1620000000000 ,1620000000000 ,1620000000000 ,1616812299140 -1616812299166 ,112.5730173,26.89343805,62.89548111,180.3296516,180.9216372,9.2457075,0.083538112,1620000000000 ,1620000000000 ,1620000000000 ,1616812299150 -1616812299177 ,112.5730173,26.89343722,62.89470673,180.3245699,180.9158226,9.243484,0.083518106,1620000000000 ,1620000000000 ,1620000000000 ,1616812299160 -1616812299186 ,112.5730173,26.89343638,62.89393234,180.3197615,180.9056806,9.241098,0.083497492,1620000000000 ,1620000000000 ,1620000000000 ,1616812299170 -1616812299195 ,112.5730173,26.89343555,62.89317322,180.3161824,180.8943524,9.237779,0.083470501,1620000000000 ,1620000000000 ,1620000000000 ,1616812299180 -1616812299206 ,112.5730173,26.89343471,62.89243317,180.3113467,180.8916402,9.233447,0.083433523,1620000000000 ,1620000000000 ,1620000000000 ,1616812299190 -1616812299216 ,112.5730173,26.89343388,62.89122772,180.2927685,180.8303167,9.259618,0.083723922,1620000000000 ,1620000000000 ,1620000000000 ,1616812299200 -1616812299231 ,112.5730173,26.89343303,62.88932419,180.2895447,180.7393068,9.260575,0.08427712,1620000000000 ,1620000000000 ,1620000000000 ,1616812299210 -1616812299239 ,112.5730172,26.89343219,62.88748932,180.2849548,180.7369947,9.263627,0.084315669,1620000000000 ,1620000000000 ,1620000000000 ,1616812299220 -1616812299247 ,112.5730172,26.89343135,62.88568115,180.2814851,180.7386924,9.258907,0.084288903,1620000000000 ,1620000000000 ,1620000000000 ,1616812299230 -1616812299256 ,112.5730172,26.89343051,62.88386536,180.2796546,180.7461075,9.254502,0.084254466,1620000000000 ,1620000000000 ,1620000000000 ,1616812299240 -1616812299266 ,112.5730172,26.89342966,62.88203812,180.2759936,180.742471,9.245529,0.084185891,1620000000000 ,1620000000000 ,1620000000000 ,1616812299250 -1616812299279 ,112.5730172,26.89342882,62.8801918,180.2701196,180.7200085,9.237106,0.084104241,1620000000000 ,1620000000000 ,1620000000000 ,1616812299260 -1616812299290 ,112.5730172,26.89342798,62.87837601,180.2666226,180.726089,9.23423,0.084070681,1620000000000 ,1620000000000 ,1620000000000 ,1616812299270 -1616812299298 ,112.5730172,26.89342714,62.87660217,180.2634807,180.7315545,9.231725,0.084051109,1620000000000 ,1620000000000 ,1620000000000 ,1616812299280 -1616812299309 ,112.5730172,26.8934263,62.87486649,180.2602295,180.727008,9.2310705,0.084045949,1620000000000 ,1620000000000 ,1620000000000 ,1616812299290 -1616812299321 ,112.5730172,26.89342546,62.87316132,180.2576067,180.72112,9.23104,0.084049587,1620000000000 ,1620000000000 ,1620000000000 ,1616812299300 -1616812299328 ,112.5730171,26.89342462,62.87146759,180.2535086,180.704637,9.230155,0.084047225,1620000000000 ,1620000000000 ,1620000000000 ,1616812299310 -1616812299337 ,112.5730171,26.89342378,62.86972427,180.2494105,180.6859581,9.226505,0.084019775,1620000000000 ,1620000000000 ,1620000000000 ,1616812299320 -1616812299348 ,112.5730171,26.89342294,62.86787796,180.2476073,180.6916524,9.22066,0.083968621,1620000000000 ,1620000000000 ,1620000000000 ,1616812299330 -1616812299356 ,112.5730171,26.8934221,62.86595917,180.2437824,180.7100783,9.214311,0.083913841,1620000000000 ,1620000000000 ,1620000000000 ,1616812299340 -1616812299367 ,112.5730171,26.89342126,62.86405563,180.2411596,180.7114922,9.20721,0.083853295,1620000000000 ,1620000000000 ,1620000000000 ,1616812299350 -1616812299378 ,112.5730171,26.89342042,62.8621788,180.2384549,180.6912383,9.203035,0.083808424,1620000000000 ,1620000000000 ,1620000000000 ,1616812299360 -1616812299389 ,112.5730171,26.89341959,62.86024857,180.2337011,180.674497,9.203207,0.083796922,1620000000000 ,1620000000000 ,1620000000000 ,1616812299370 -1616812299398 ,112.5730171,26.89341875,62.85818863,180.2306958,180.66968,9.206022,0.083811155,1620000000000 ,1620000000000 ,1620000000000 ,1616812299380 -1616812299408 ,112.5730171,26.89341791,62.85598373,180.2243574,180.6765815,9.20875,0.083828908,1620000000000 ,1620000000000 ,1620000000000 ,1616812299390 -1616812299418 ,112.5730171,26.89341707,62.85370636,180.2199587,180.6768004,9.207889,0.083827538,1620000000000 ,1620000000000 ,1620000000000 ,1616812299400 -1616812299428 ,112.573017,26.89341623,62.85142899,180.2144126,180.6618491,9.203198,0.083794201,1620000000000 ,1620000000000 ,1620000000000 ,1616812299410 -1616812299437 ,112.573017,26.8934154,62.84916687,180.2093036,180.6498804,9.196462,0.083736889,1620000000000 ,1620000000000 ,1620000000000 ,1616812299420 -1616812299448 ,112.573017,26.89341456,62.84687042,180.2058612,180.653776,9.190256,0.083678715,1620000000000 ,1620000000000 ,1620000000000 ,1616812299430 -1616812299458 ,112.573017,26.89341372,62.84447098,180.201927,180.6616284,9.18571,0.083624378,1620000000000 ,1620000000000 ,1620000000000 ,1616812299440 -1616812299468 ,112.573017,26.89341289,62.84246063,180.1993862,180.7273142,9.184051,0.083286233,1620000000000 ,1620000000000 ,1620000000000 ,1616812299450 -1616812299479 ,112.573017,26.89341206,62.84086227,180.195452,180.7889255,9.1844225,0.082968422,1620000000000 ,1620000000000 ,1620000000000 ,1616812299460 -1616812299490 ,112.573017,26.89341123,62.83917999,180.1916271,180.792121,9.186346,0.082977794,1620000000000 ,1620000000000 ,1620000000000 ,1616812299470 -1616812299498 ,112.573017,26.8934104,62.83744812,180.1860537,180.7967601,9.186854,0.082982564,1620000000000 ,1620000000000 ,1620000000000 ,1616812299480 -1616812299509 ,112.573017,26.89340957,62.83566284,180.1822834,180.791124,9.182783,0.08295144,1620000000000 ,1620000000000 ,1620000000000 ,1616812299490 -1616812299520 ,112.573017,26.89340874,62.83367157,180.1797972,180.758337,9.181244,0.082907716,1620000000000 ,1620000000000 ,1620000000000 ,1616812299500 -1616812299528 ,112.5730169,26.89340792,62.83126831,180.1769285,180.7526568,9.176904,0.082867401,1620000000000 ,1620000000000 ,1620000000000 ,1616812299510 -1616812299542 ,112.5730169,26.89340709,62.82834244,180.1714917,180.7814945,9.182511,0.082842818,1620000000000 ,1620000000000 ,1620000000000 ,1616812299520 -1616812299550 ,112.5730169,26.89340626,62.8251152,180.1645522,180.8264429,9.185702,0.082878078,1620000000000 ,1620000000000 ,1620000000000 ,1616812299530 -1616812299560 ,112.5730169,26.89340543,62.8217926,180.161547,180.783237,9.188967,0.082899707,1620000000000 ,1620000000000 ,1620000000000 ,1616812299540 -1616812299575 ,112.5730169,26.8934046,62.8186264,180.1603722,180.7427285,9.180897,0.082868237,1620000000000 ,1620000000000 ,1620000000000 ,1616812299550 -1616812299580 ,112.5730169,26.89340377,62.8157959,180.155755,180.7500388,9.162079,0.082721511,1620000000000 ,1620000000000 ,1620000000000 ,1616812299560 -1616812299590 ,112.5730169,26.89340295,62.81332779,180.1481598,180.7761545,9.14959,0.082605788,1620000000000 ,1620000000000 ,1620000000000 ,1616812299570 -1616812299599 ,112.5730169,26.89340212,62.81090546,180.1446354,180.7957821,9.153253,0.082602314,1620000000000 ,1620000000000 ,1620000000000 ,1616812299580 -1616812299610 ,112.5730169,26.8934013,62.8082695,180.1408651,180.8030807,9.165662,0.082685785,1620000000000 ,1620000000000 ,1620000000000 ,1616812299590 -1616812299619 ,112.5730168,26.89340047,62.80540466,180.1410837,180.812968,9.172173,0.082754626,1620000000000 ,1620000000000 ,1620000000000 ,1616812299600 -1616812299629 ,112.5730168,26.89339964,62.80261612,180.1391713,180.7642206,9.1651325,0.082723128,1620000000000 ,1620000000000 ,1620000000000 ,1616812299610 -1616812299639 ,112.5730168,26.89339881,62.80024719,180.1380511,180.6944493,9.150606,0.082622213,1620000000000 ,1620000000000 ,1620000000000 ,1616812299620 -1616812299649 ,112.5730168,26.89339799,62.79833221,180.1364119,180.6935931,9.136656,0.082506674,1620000000000 ,1620000000000 ,1620000000000 ,1616812299630 -1616812299660 ,112.5730168,26.89339716,62.79668808,180.1350185,180.7328347,9.130956,0.082447877,1620000000000 ,1620000000000 ,1620000000000 ,1616812299640 -1616812299670 ,112.5730168,26.89339634,62.79514313,180.1312209,180.7424623,9.1291895,0.082427912,1620000000000 ,1620000000000 ,1620000000000 ,1616812299650 -1616812299679 ,112.5730168,26.89339552,62.79369736,180.1260573,180.7027492,9.128478,0.082422976,1620000000000 ,1620000000000 ,1620000000000 ,1616812299660 -1616812299692 ,112.5730168,26.89339469,62.7923851,180.1225056,180.6486404,9.128627,0.082425873,1620000000000 ,1620000000000 ,1620000000000 ,1616812299670 -1616812299700 ,112.5730168,26.89339387,62.79116821,180.1210849,180.6234081,9.12846,0.082428052,1620000000000 ,1620000000000 ,1620000000000 ,1616812299680 -1616812299711 ,112.5730167,26.89339304,62.7900238,180.1227515,180.6160246,9.1270895,0.08242122,1620000000000 ,1620000000000 ,1620000000000 ,1616812299690 -1616812299720 ,112.5730167,26.89339222,62.78902817,180.12297,180.6276011,9.121629,0.08238881,1620000000000 ,1620000000000 ,1620000000000 ,1616812299700 -1616812299732 ,112.5730167,26.8933914,62.78827667,180.1234345,180.6253533,9.112578,0.082321148,1620000000000 ,1620000000000 ,1620000000000 ,1616812299710 -1616812299742 ,112.5730167,26.89339057,62.78776932,180.123735,180.600991,9.104444,0.082251211,1620000000000 ,1620000000000 ,1620000000000 ,1616812299720 -1616812299752 ,112.5730167,26.89338975,62.78741455,180.1237077,180.5901193,9.101557,0.082219587,1620000000000 ,1620000000000 ,1620000000000 ,1616812299730 -1616812299766 ,112.5730167,26.89338893,62.78714371,180.1234345,180.6104585,9.100632,0.082211816,1620000000000 ,1620000000000 ,1620000000000 ,1616812299740 -1616812299771 ,112.5730167,26.89338811,62.78696442,180.1249371,180.6268702,9.1005745,0.082213398,1620000000000 ,1620000000000 ,1620000000000 ,1616812299750 -1616812299781 ,112.5730167,26.89338729,62.78692245,180.1254562,180.6383599,9.098038,0.082207442,1620000000000 ,1620000000000 ,1620000000000 ,1616812299760 -1616812299792 ,112.5730167,26.89338646,62.78702927,180.1270682,180.6371065,9.0923815,0.082166477,1620000000000 ,1620000000000 ,1620000000000 ,1616812299770 -1616812299801 ,112.5730167,26.89338564,62.78720093,180.1263305,180.6502431,9.088379,0.082128044,1620000000000 ,1620000000000 ,1620000000000 ,1616812299780 -1616812299811 ,112.5730167,26.89338482,62.78738785,180.1274506,180.6881302,9.084132,0.082095869,1620000000000 ,1620000000000 ,1620000000000 ,1616812299790 -1616812299822 ,112.5730166,26.893384,62.7875824,180.1271774,180.7262993,9.080088,0.082059547,1620000000000 ,1620000000000 ,1620000000000 ,1616812299800 -1616812299831 ,112.5730166,26.89338318,62.78783035,180.1277239,180.7442278,9.076942,0.082034464,1620000000000 ,1620000000000 ,1620000000000 ,1616812299810 -1616812299841 ,112.5730166,26.89338236,62.78813934,180.1284615,180.7644333,9.074423,0.08201394,1620000000000 ,1620000000000 ,1620000000000 ,1616812299820 -1616812299851 ,112.5730166,26.89338154,62.78845596,180.1301008,180.7829724,9.073989,0.08200602,1620000000000 ,1620000000000 ,1620000000000 ,1616812299830 -1616812299862 ,112.5730166,26.89338072,62.78872299,180.1324777,180.8070802,9.073873,0.082006394,1620000000000 ,1620000000000 ,1620000000000 ,1616812299840 -1616812299876 ,112.5730166,26.8933799,62.78894043,180.1319859,180.8375028,9.071048,0.081988526,1620000000000 ,1620000000000 ,1620000000000 ,1616812299850 -1616812299882 ,112.5730166,26.89337908,62.78918457,180.1331334,180.8620908,9.065952,0.081952981,1620000000000 ,1620000000000 ,1620000000000 ,1616812299860 -1616812299892 ,112.5730166,26.89337826,62.78949738,180.1336798,180.8671042,9.060092,0.081904668,1620000000000 ,1620000000000 ,1620000000000 ,1616812299870 -1616812299903 ,112.5730166,26.89337744,62.78985214,180.1359201,180.8626153,9.055281,0.081864836,1620000000000 ,1620000000000 ,1620000000000 ,1616812299880 -1616812299912 ,112.5730165,26.89337663,62.79016113,180.1365485,180.8545432,9.052876,0.081836637,1620000000000 ,1620000000000 ,1620000000000 ,1616812299890 -1616812299922 ,112.5730165,26.89337581,62.79035568,180.13898,180.8530909,9.051356,0.081817979,1620000000000 ,1620000000000 ,1620000000000 ,1616812299900 -1616812299935 ,112.5730165,26.89337499,62.79045486,180.1432967,180.8391512,9.049735,0.081803228,1620000000000 ,1620000000000 ,1620000000000 ,1616812299910 -1616812299945 ,112.5730165,26.89337417,62.79050446,180.1467937,180.8174526,9.048659,0.081791155,1620000000000 ,1620000000000 ,1620000000000 ,1616812299920 -1616812299954 ,112.5730165,26.89337335,62.79053879,180.1509465,180.7984318,9.0466175,0.081776177,1620000000000 ,1620000000000 ,1620000000000 ,1616812299930 -1616812299965 ,112.5730165,26.89337254,62.79055023,180.1564653,180.7811763,9.042704,0.081746772,1620000000000 ,1620000000000 ,1620000000000 ,1616812299940 -1616812299973 ,112.5730165,26.89337172,62.79051208,180.1634048,180.7653046,9.038114,0.08170618,1620000000000 ,1620000000000 ,1620000000000 ,1616812299950 -1616812299983 ,112.5730165,26.8933709,62.79039764,180.170836,180.7443822,9.034513,0.081668941,1620000000000 ,1620000000000 ,1620000000000 ,1616812299960 -1616812299993 ,112.5730165,26.89337009,62.79017639,180.1819556,180.7227215,9.031949,0.08163937,1620000000000 ,1620000000000 ,1620000000000 ,1616812299970 -1616812300003 ,112.5730164,26.89336927,62.78985214,180.1913812,180.7085827,9.029421,0.081615171,1620000000000 ,1620000000000 ,1620000000000 ,1616812299980 -1616812300013 ,112.5730164,26.89336846,62.7894516,180.2028013,180.7068207,9.026637,0.081588798,1620000000000 ,1620000000000 ,1620000000000 ,1616812299990 -1616812300023 ,112.5730164,26.89336764,62.78899765,180.213593,180.7109149,9.023565,0.081561624,1620000000000 ,1620000000000 ,1620000000000 ,1616812300010 -1616812300036 ,112.5730164,26.89336682,62.78850174,180.2252863,180.7201373,9.021484,0.081538961,1620000000000 ,1620000000000 ,1620000000000 ,1616812300020 -1616812300044 ,112.5730164,26.89336601,62.78794479,180.2372528,180.7314557,9.020261,0.081523963,1620000000000 ,1620000000000 ,1620000000000 ,1616812300030 -1616812300054 ,112.5730164,26.89336519,62.7872963,180.2486455,180.7487183,9.01769,0.081501585,1620000000000 ,1620000000000 ,1620000000000 ,1616812300040 -1616812300066 ,112.5730164,26.89336438,62.78654099,180.2595192,180.7591515,9.01785,0.081489848,1620000000000 ,1620000000000 ,1620000000000 ,1616812300050 -1616812300076 ,112.5730164,26.89336357,62.78565216,180.2720867,180.7758032,9.015933,0.081475465,1620000000000 ,1620000000000 ,1620000000000 ,1616812300060 -1616812300083 ,112.5730163,26.89336194,62.78346634,180.2970306,180.8685671,9.008433,0.162821554,1620000000000 ,1620000000000 ,1620000000000 ,1616812300070 -1616812300094 ,112.5730163,26.89336112,62.78229523,180.3056366,180.8990023,9.005466,0.081371985,1620000000000 ,1620000000000 ,1620000000000 ,1616812300080 -1616812300106 ,112.5730163,26.89336112,62.78229523,180.3056366,-400,9.005466,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812300090 -1616812300116 ,112.5730163,26.8933595,62.77996445,180.3226028,180.95372,8.999892,0.162663054,1620000000000 ,1620000000000 ,1620000000000 ,1616812300100 -1616812300131 ,112.5730163,26.89335868,62.77864075,180.3298155,181.0397957,8.996761,0.081282677,1620000000000 ,1620000000000 ,1620000000000 ,1616812300110 -1616812300138 ,112.5730163,26.89335787,62.77719879,180.3392958,181.0958212,8.996287,0.081268351,1620000000000 ,1620000000000 ,1620000000000 ,1616812300120 -1616812300166 ,112.5730163,26.89335787,62.77719879,180.3392958,-400,8.996287,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812300130 -1616812300173 ,112.5730162,26.89335625,62.77414322,180.3561254,181.0927541,8.995832,0.162531753,1620000000000 ,1620000000000 ,1620000000000 ,1616812300140 -1616812300177 ,112.5730162,26.89335543,62.7725563,180.3619174,181.0953036,8.99101,0.081224903,1620000000000 ,1620000000000 ,1620000000000 ,1616812300150 -1616812300185 ,112.5730162,26.89335462,62.77093124,180.3686929,181.1201084,8.985315,0.081170373,1620000000000 ,1620000000000 ,1620000000000 ,1616812300160 -1616812300189 ,112.5730162,26.89335381,62.76929474,180.3778727,181.1369828,8.98181,0.081131991,1620000000000 ,1620000000000 ,1620000000000 ,1616812300170 -1616812300197 ,112.5730162,26.893353,62.76763153,180.3850307,181.136048,8.980968,0.081115529,1620000000000 ,1620000000000 ,1620000000000 ,1616812300180 -1616812300207 ,112.5730162,26.89335219,62.76593018,180.3929811,181.1277145,8.979816,0.081104589,1620000000000 ,1620000000000 ,1620000000000 ,1616812300190 -1616812300216 ,112.5730161,26.89335138,62.76392746,180.4036635,181.006647,8.979184,0.081036743,1620000000000 ,1620000000000 ,1620000000000 ,1616812300200 -1616812300226 ,112.5730161,26.89335057,62.76142502,180.4119963,180.873184,8.976275,0.080973549,1620000000000 ,1620000000000 ,1620000000000 ,1616812300210 -1616812300236 ,112.5730161,26.89334976,62.75894165,180.4209575,180.8826071,8.973158,0.080943836,1620000000000 ,1620000000000 ,1620000000000 ,1616812300220 -1616812300246 ,112.5730161,26.89334895,62.7564888,180.4322683,180.8852612,8.970457,0.080918525,1620000000000 ,1620000000000 ,1620000000000 ,1616812300230 -1616812300256 ,112.5730161,26.89334814,62.75407028,180.4425136,180.8804653,8.967222,0.080891119,1620000000000 ,1620000000000 ,1620000000000 ,1616812300240 -1616812300268 ,112.5730161,26.89334733,62.75168228,180.4503547,180.8751018,8.964359,0.080866173,1620000000000 ,1620000000000 ,1620000000000 ,1616812300250 -1616812300276 ,112.5730161,26.89334653,62.74930191,180.4613923,180.8836189,8.960788,0.080832266,1620000000000 ,1620000000000 ,1620000000000 ,1616812300260 -1616812300286 ,112.5730161,26.89334572,62.74692535,180.4695065,180.9063981,8.958498,0.080807341,1620000000000 ,1620000000000 ,1620000000000 ,1616812300270 -1616812300298 ,112.573016,26.89334491,62.7445755,180.4801889,180.9138703,8.955647,0.080784816,1620000000000 ,1620000000000 ,1620000000000 ,1616812300280 -1616812300307 ,112.573016,26.8933441,62.74228668,180.4890955,180.9165398,8.9529085,0.080760545,1620000000000 ,1620000000000 ,1620000000000 ,1616812300290 -1616812300317 ,112.573016,26.8933433,62.74010086,180.498166,180.9263791,8.950171,0.08074128,1620000000000 ,1620000000000 ,1620000000000 ,1616812300300 -1616812300329 ,112.573016,26.89334249,62.73799133,180.5086025,180.9419834,8.946387,0.080710105,1620000000000 ,1620000000000 ,1620000000000 ,1616812300310 -1616812300339 ,112.573016,26.89334168,62.73591232,180.5163616,180.9614274,8.943793,0.080683907,1620000000000 ,1620000000000 ,1620000000000 ,1616812300320 -1616812300346 ,112.573016,26.89334088,62.7338295,180.523465,180.9856679,8.941167,0.080660346,1620000000000 ,1620000000000 ,1620000000000 ,1616812300330 -1616812300357 ,112.573016,26.89334007,62.73176575,180.5290658,181.0031576,8.938629,0.080637905,1620000000000 ,1620000000000 ,1620000000000 ,1616812300340 -1616812300366 ,112.573016,26.89333926,62.72974777,180.5355954,181.0179864,8.937341,0.08062313,1620000000000 ,1620000000000 ,1620000000000 ,1616812300350 -1616812300377 ,112.5730159,26.89333846,62.72779083,180.541688,181.0251625,8.934376,0.080603867,1620000000000 ,1620000000000 ,1620000000000 ,1616812300360 -1616812300388 ,112.5730159,26.89333765,62.72589111,180.5478078,181.0459094,8.930693,0.080573577,1620000000000 ,1620000000000 ,1620000000000 ,1616812300370 -1616812300396 ,112.5730159,26.89333685,62.72410583,180.5543648,181.0640868,8.926159,0.080541293,1620000000000 ,1620000000000 ,1620000000000 ,1616812300380 -1616812300407 ,112.5730159,26.89333604,62.72244263,180.5600202,181.069833,8.921626,0.080502323,1620000000000 ,1620000000000 ,1620000000000 ,1616812300390 -1616812300416 ,112.5730159,26.89333524,62.72085571,180.5665225,181.0819156,8.918609,0.080476056,1620000000000 ,1620000000000 ,1620000000000 ,1616812300400 -1616812300426 ,112.5730159,26.89333443,62.71928024,180.5700742,181.1008779,8.915883,0.080452277,1620000000000 ,1620000000000 ,1620000000000 ,1616812300410 -1616812300437 ,112.5730158,26.89333363,62.71773148,180.5737079,181.1191499,8.912561,0.080424699,1620000000000 ,1620000000000 ,1620000000000 ,1616812300420 -1616812300448 ,112.5730158,26.89333282,62.7162323,180.5755657,181.1238747,8.910226,0.080401729,1620000000000 ,1620000000000 ,1620000000000 ,1616812300430 -1616812300458 ,112.5730158,26.89333202,62.71478653,180.579937,181.1247475,8.908122,0.08038626,1620000000000 ,1620000000000 ,1620000000000 ,1616812300440 -1616812300468 ,112.5730158,26.89333122,62.71364975,180.5834341,181.2407454,8.905824,0.080411878,1620000000000 ,1620000000000 ,1620000000000 ,1616812300450 -1616812300478 ,112.5730158,26.89333041,62.71281052,180.5861388,181.3573502,8.902673,0.080430401,1620000000000 ,1620000000000 ,1620000000000 ,1616812300460 -1616812300491 ,112.5730158,26.89332961,62.71199036,180.5897725,181.3548366,8.899529,0.080402226,1620000000000 ,1620000000000 ,1620000000000 ,1616812300470 -1616812300498 ,112.5730157,26.89332881,62.71118546,180.5917942,181.3595819,8.896268,0.080376085,1620000000000 ,1620000000000 ,1620000000000 ,1616812300480 -1616812300509 ,112.5730157,26.893328,62.71041489,180.5936794,181.3562167,8.892318,0.080343059,1620000000000 ,1620000000000 ,1620000000000 ,1616812300490 -1616812300517 ,112.5730157,26.8933272,62.70969391,180.5949908,181.3524702,8.888409,0.080310837,1620000000000 ,1620000000000 ,1620000000000 ,1616812300500 -1616812300529 ,112.5730157,26.8933264,62.70901871,180.5964114,181.3570285,8.88535,0.080283367,1620000000000 ,1620000000000 ,1620000000000 ,1616812300510 -1616812300540 ,112.5730157,26.89332559,62.70837402,180.5979414,181.3625798,8.882788,0.080262026,1620000000000 ,1620000000000 ,1620000000000 ,1616812300520 -1616812300555 ,112.5730156,26.89332479,62.70776367,180.6006188,181.3643414,8.880132,0.080240297,1620000000000 ,1620000000000 ,1620000000000 ,1616812300530 -1616812300559 ,112.5730156,26.89332399,62.70718384,180.6013292,181.3549113,8.877928,0.080222065,1620000000000 ,1620000000000 ,1620000000000 ,1616812300540 -1616812300568 ,112.5730156,26.89332319,62.70662308,180.6022581,181.3552206,8.875525,0.080202077,1620000000000 ,1620000000000 ,1620000000000 ,1616812300550 -1616812300579 ,112.5730156,26.89332239,62.70607758,180.6020122,181.3627285,8.872141,0.080178632,1620000000000 ,1620000000000 ,1620000000000 ,1616812300560 -1616812300590 ,112.5730156,26.89332159,62.70555115,180.6023127,181.3664017,8.867691,0.080141386,1620000000000 ,1620000000000 ,1620000000000 ,1616812300570 -1616812300599 ,112.5730156,26.89332078,62.70503616,180.6022854,181.3624494,8.863633,0.080104868,1620000000000 ,1620000000000 ,1620000000000 ,1616812300580 -1616812300609 ,112.5730155,26.89331998,62.70449829,180.6002363,181.3535466,8.860483,0.080073661,1620000000000 ,1620000000000 ,1620000000000 ,1616812300590 -1616812300620 ,112.5730155,26.89331918,62.70389557,180.6001544,181.3436931,8.858265,0.08005164,1620000000000 ,1620000000000 ,1620000000000 ,1616812300600 -1616812300630 ,112.5730155,26.89331838,62.70322418,180.5991162,181.3359494,8.855688,0.080025021,1620000000000 ,1620000000000 ,1620000000000 ,1616812300610 -1616812300640 ,112.5730155,26.89331758,62.70249939,180.597313,181.3205943,8.854238,0.080008286,1620000000000 ,1620000000000 ,1620000000000 ,1616812300620 -1616812300656 ,112.5730155,26.89331678,62.70174026,180.5958377,181.3030862,8.851761,0.079988007,1620000000000 ,1620000000000 ,1620000000000 ,1616812300630 -1616812300665 ,112.5730154,26.89331599,62.70095825,180.5934335,181.2980744,8.850035,0.07996883,1620000000000 ,1620000000000 ,1620000000000 ,1616812300640 -1616812300671 ,112.5730154,26.89331519,62.70013046,180.5916849,181.2963736,8.847594,0.079949921,1620000000000 ,1620000000000 ,1620000000000 ,1616812300650 -1616812300680 ,112.5730154,26.89331439,62.69925308,180.5888163,181.2906716,8.844468,0.079919862,1620000000000 ,1620000000000 ,1620000000000 ,1616812300660 -1616812300690 ,112.5730154,26.89331359,62.69832993,180.5885431,181.2743269,8.840963,0.079887534,1620000000000 ,1620000000000 ,1620000000000 ,1616812300670 -1616812300699 ,112.5730154,26.89331279,62.69734573,180.5888436,181.2619224,8.837876,0.07985486,1620000000000 ,1620000000000 ,1620000000000 ,1616812300680 -1616812300709 ,112.5730154,26.89331199,62.69627762,180.5869038,181.260226,8.835605,0.079829362,1620000000000 ,1620000000000 ,1620000000000 ,1616812300690 -1616812300720 ,112.5730153,26.89331119,62.69512177,180.5859749,181.2714821,8.834206,0.079811994,1620000000000 ,1620000000000 ,1620000000000 ,1616812300700 -1616812300730 ,112.5730153,26.8933104,62.69394684,180.5841171,181.2794414,8.831684,0.079790421,1620000000000 ,1620000000000 ,1620000000000 ,1616812300710 -1616812300740 ,112.5730153,26.8933096,62.69280624,180.5806747,181.2803588,8.828982,0.079769066,1620000000000 ,1620000000000 ,1620000000000 ,1616812300720 -1616812300750 ,112.5730153,26.8933088,62.69168472,180.5766039,181.2736028,8.825595,0.079741266,1620000000000 ,1620000000000 ,1620000000000 ,1616812300730 -1616812300761 ,112.5730153,26.893308,62.69052505,180.5752652,181.2725898,8.822263,0.079709643,1620000000000 ,1620000000000 ,1620000000000 ,1616812300740 -1616812300770 ,112.5730152,26.89330721,62.68928146,180.5748007,181.284336,8.819142,0.079676974,1620000000000 ,1620000000000 ,1620000000000 ,1616812300750 -1616812300780 ,112.5730152,26.89330641,62.68793488,180.5727243,181.295613,8.817683,0.079654631,1620000000000 ,1620000000000 ,1620000000000 ,1616812300760 -1616812300795 ,112.5730152,26.89330562,62.68650818,180.5718501,181.3010203,8.816131,0.079636822,1620000000000 ,1620000000000 ,1620000000000 ,1616812300770 -1616812300801 ,112.5730152,26.89330482,62.68503952,180.5707299,181.3118557,8.814289,0.079621982,1620000000000 ,1620000000000 ,1620000000000 ,1616812300780 -1616812300810 ,112.5730152,26.89330402,62.6835556,180.5688721,181.3242007,8.811869,0.079599486,1620000000000 ,1620000000000 ,1620000000000 ,1616812300790 -1616812300820 ,112.5730152,26.89330323,62.68204498,180.5664406,181.3314147,8.809433,0.07957425,1620000000000 ,1620000000000 ,1620000000000 ,1616812300800 -1616812300830 ,112.5730151,26.89330243,62.68049622,180.5623698,181.337121,8.806636,0.079549816,1620000000000 ,1620000000000 ,1620000000000 ,1616812300810 -1616812300841 ,112.5730151,26.89330164,62.678936,180.5576706,181.3450024,8.80428,0.07952626,1620000000000 ,1620000000000 ,1620000000000 ,1616812300820 -1616812300851 ,112.5730151,26.89330084,62.67738724,180.5539003,181.3466182,8.804716,0.07952446,1620000000000 ,1620000000000 ,1620000000000 ,1616812300830 -1616812300862 ,112.5730151,26.89330005,62.67583084,180.5505399,181.3434453,8.803858,0.079523497,1620000000000 ,1620000000000 ,1620000000000 ,1616812300840 -1616812300871 ,112.5730151,26.89329925,62.6742363,180.5443654,181.331268,8.799962,0.079488637,1620000000000 ,1620000000000 ,1620000000000 ,1616812300850 -1616812300880 ,112.573015,26.89329846,62.67259216,180.54024,181.285456,8.796538,0.079457434,1620000000000 ,1620000000000 ,1620000000000 ,1616812300860 -1616812300892 ,112.573015,26.89329766,62.67092133,180.5357594,181.2609636,8.792516,0.079418138,1620000000000 ,1620000000000 ,1620000000000 ,1616812300870 -1616812300901 ,112.573015,26.89329687,62.66927338,180.5336557,181.2547525,8.790257,0.079395996,1620000000000 ,1620000000000 ,1620000000000 ,1616812300880 -1616812300912 ,112.573015,26.89329608,62.66770554,180.5304045,181.2368468,8.785785,0.079367089,1620000000000 ,1620000000000 ,1620000000000 ,1616812300890 -1616812300921 ,112.573015,26.89329528,62.66622162,180.5296668,181.2083819,8.7809515,0.079325861,1620000000000 ,1620000000000 ,1620000000000 ,1616812300900 -1616812300933 ,112.573015,26.89329449,62.66479874,180.5302952,181.1782953,8.778709,0.079301162,1620000000000 ,1620000000000 ,1620000000000 ,1616812300910 -1616812300942 ,112.5730149,26.8932937,62.66337967,180.5311148,181.1588605,8.776993,0.07928715,1620000000000 ,1620000000000 ,1620000000000 ,1616812300920 -1616812300952 ,112.5730149,26.89329291,62.66191483,180.5346665,181.1710673,8.7739935,0.079260293,1620000000000 ,1620000000000 ,1620000000000 ,1616812300930 -1616812300962 ,112.5730149,26.89329211,62.66043472,180.539475,181.1935793,8.770587,0.079232961,1620000000000 ,1620000000000 ,1620000000000 ,1616812300940 -1616812300972 ,112.5730149,26.89329132,62.65898895,180.5436824,181.2124641,8.765638,0.079193003,1620000000000 ,1620000000000 ,1620000000000 ,1616812300950 -1616812300982 ,112.5730149,26.89329053,62.65758896,180.5464964,181.228675,8.762535,0.079162285,1620000000000 ,1620000000000 ,1620000000000 ,1616812300960 -1616812300994 ,112.5730149,26.89328974,62.65618134,180.5501301,181.2578696,8.76094,0.079145286,1620000000000 ,1620000000000 ,1620000000000 ,1616812300970 -1616812301002 ,112.5730148,26.89328895,62.65470123,180.5548566,181.297523,8.759475,0.079128032,1620000000000 ,1620000000000 ,1620000000000 ,1616812300980 -1616812301013 ,112.5730148,26.89328816,62.65317535,180.5588181,181.326033,8.757254,0.079111057,1620000000000 ,1620000000000 ,1620000000000 ,1616812300990 -1616812301025 ,112.5730148,26.89328737,62.65169907,180.563244,181.3418524,8.754829,0.079088653,1620000000000 ,1620000000000 ,1620000000000 ,1616812301000 -1616812301042 ,112.5730148,26.89328658,62.6503067,180.5649379,181.3620148,8.751668,0.079070474,1620000000000 ,1620000000000 ,1620000000000 ,1616812301010 -1616812301047 ,112.5730148,26.89328579,62.64894867,180.5668777,181.390511,8.748026,0.079040008,1620000000000 ,1620000000000 ,1620000000000 ,1616812301020 -1616812301052 ,112.5730148,26.89328579,62.64894867,180.572697,-400,8.745469,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812301030 -1616812301063 ,112.5730147,26.89328421,62.64613724,180.5751012,181.4439489,8.741327,0.157988823,1620000000000 ,1620000000000 ,1620000000000 ,1616812301040 -1616812301074 ,112.5730147,26.89328342,62.64473724,180.5774508,181.4702638,8.737731,0.078944673,1620000000000 ,1620000000000 ,1620000000000 ,1616812301050 -1616812301083 ,112.5730147,26.89328263,62.6434021,180.5814943,181.4808045,8.7346115,0.078918519,1620000000000 ,1620000000000 ,1620000000000 ,1616812301060 -1616812301093 ,112.5730147,26.89328184,62.64212799,180.5843083,181.4709791,8.731686,0.078894391,1620000000000 ,1620000000000 ,1620000000000 ,1616812301070 -1616812301103 ,112.5730146,26.89328105,62.6408577,180.5882152,181.4821361,8.730333,0.078877795,1620000000000 ,1620000000000 ,1620000000000 ,1616812301080 -1616812301114 ,112.5730146,26.89328026,62.63955307,180.5947175,181.4944358,8.72763,0.078856798,1620000000000 ,1620000000000 ,1620000000000 ,1616812301090 -1616812301124 ,112.5730146,26.89327948,62.63817978,180.6020122,181.4902482,8.725861,0.078830696,1620000000000 ,1620000000000 ,1620000000000 ,1616812301100 -1616812301134 ,112.5730146,26.89327869,62.6367569,180.6092249,181.4762055,8.723662,0.078811236,1620000000000 ,1620000000000 ,1620000000000 ,1616812301120 -1616812301144 ,112.5730146,26.8932779,62.63528824,180.6160551,181.4440055,8.719147,0.078771326,1620000000000 ,1620000000000 ,1620000000000 ,1616812301130 -1616812301155 ,112.5730145,26.89327711,62.6337204,180.6222569,181.4123317,8.717336,0.078737374,1620000000000 ,1620000000000 ,1620000000000 ,1616812301140 -1616812301164 ,112.5730145,26.89327633,62.6319809,180.6296881,181.401287,8.71599,0.078725245,1620000000000 ,1620000000000 ,1620000000000 ,1616812301150 -1616812301175 ,112.5730145,26.89327475,62.62786484,180.6503426,181.4366914,8.718988,0.157411131,1620000000000 ,1620000000000 ,1620000000000 ,1616812301160 -1616812301186 ,112.5730145,26.89327397,62.62566376,180.6590306,181.3897774,8.718853,0.078712709,1620000000000 ,1620000000000 ,1620000000000 ,1616812301170 -1616812301194 ,112.5730144,26.89327318,62.62355804,180.6668717,181.3565434,8.718559,0.078713663,1620000000000 ,1620000000000 ,1620000000000 ,1616812301180 -1616812301204 ,112.5730144,26.89327318,62.62355804,180.6668717,-400,8.718559,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812301180 -1616812301215 ,112.5730144,26.89327161,62.61953354,180.6643035,181.1750206,8.692142,0.157032942,1620000000000 ,1620000000000 ,1620000000000 ,1616812301200 -1616812301224 ,112.5730144,26.89327083,62.61766052,180.6710517,180.2366912,8.693089,0.078028089,1620000000000 ,1620000000000 ,1620000000000 ,1616812301210 -1616812301234 ,112.5730144,26.89327005,62.61574173,180.6805047,180.2568778,8.695219,0.078044258,1620000000000 ,1620000000000 ,1620000000000 ,1616812301220 -1616812301246 ,112.5730144,26.89326927,62.61383438,180.6901216,180.2690253,8.695051,0.078048076,1620000000000 ,1620000000000 ,1620000000000 ,1616812301230 -1616812301255 ,112.5730144,26.89326849,62.6120224,180.6960776,180.2767549,8.691965,0.078030675,1620000000000 ,1620000000000 ,1620000000000 ,1616812301240 -1616812301272 ,112.5730144,26.89326771,62.6103363,180.7013505,180.3051498,8.688138,0.078000031,1620000000000 ,1620000000000 ,1620000000000 ,1616812301250 -1616812301276 ,112.5730144,26.89326693,62.6087532,180.7056125,180.3817862,8.687457,0.07798915,1620000000000 ,1620000000000 ,1620000000000 ,1616812301260 -1616812301286 ,112.5730144,26.89326615,62.60722733,180.7100658,180.4375991,8.685863,0.077978668,1620000000000 ,1620000000000 ,1620000000000 ,1616812301270 -1616812301296 ,112.5730144,26.89326537,62.60575104,180.7113772,180.4534168,8.684898,0.07797073,1620000000000 ,1620000000000 ,1620000000000 ,1616812301280 -1616812301306 ,112.5730144,26.89326459,62.60434341,180.7135628,180.4540689,8.684464,0.077966335,1620000000000 ,1620000000000 ,1620000000000 ,1616812301290 -1616812301317 ,112.5730144,26.89326381,62.60297394,180.7177976,180.4605366,8.6861105,0.077978188,1620000000000 ,1620000000000 ,1620000000000 ,1616812301300 -1616812301325 ,112.5730144,26.89326303,62.60164261,180.7218957,180.4822978,8.687347,0.077991007,1620000000000 ,1620000000000 ,1620000000000 ,1616812301310 -1616812301335 ,112.5730144,26.89326225,62.6003952,180.7244638,180.509697,8.686188,0.077992033,1620000000000 ,1620000000000 ,1620000000000 ,1616812301320 -1616812301346 ,112.5730143,26.89326147,62.59928131,180.7270593,180.5393098,8.683114,0.077972247,1620000000000 ,1620000000000 ,1620000000000 ,1616812301330 -1616812301356 ,112.5730143,26.89326069,62.59830475,180.7294908,180.5551743,8.681108,0.077955586,1620000000000 ,1620000000000 ,1620000000000 ,1616812301340 -1616812301365 ,112.5730143,26.89325991,62.59741211,180.7318404,180.5603994,8.681824,0.077960326,1620000000000 ,1620000000000 ,1620000000000 ,1616812301350 -1616812301375 ,112.5730143,26.89325913,62.59660339,180.7353648,180.5570945,8.681632,0.077965615,1620000000000 ,1620000000000 ,1620000000000 ,1616812301360 -1616812301387 ,112.5730143,26.89325835,62.59588242,180.7374139,180.5542666,8.680439,0.077960881,1620000000000 ,1620000000000 ,1620000000000 ,1616812301370 -1616812301396 ,112.5730143,26.89325757,62.59526062,180.7402279,180.563071,8.6791725,0.077953978,1620000000000 ,1620000000000 ,1620000000000 ,1616812301380 -1616812301406 ,112.5730143,26.89325679,62.5947113,180.7418125,180.5720791,8.677713,0.077944867,1620000000000 ,1620000000000 ,1620000000000 ,1616812301390 -1616812301420 ,112.5730143,26.89325601,62.59422684,180.74143,180.5739833,8.67721,0.077940787,1620000000000 ,1620000000000 ,1620000000000 ,1616812301400 -1616812301428 ,112.5730143,26.89325523,62.59378052,180.7391897,180.5631359,8.676331,0.077937478,1620000000000 ,1620000000000 ,1620000000000 ,1616812301410 -1616812301443 ,112.5730143,26.89325445,62.59338379,180.7376324,180.5497949,8.674144,0.077923469,1620000000000 ,1620000000000 ,1620000000000 ,1616812301420 -1616812301454 ,112.5730143,26.89325367,62.59305191,180.7354741,180.5377574,8.672732,0.077912984,1620000000000 ,1620000000000 ,1620000000000 ,1616812301430 -1616812301463 ,112.5730143,26.8932529,62.5927887,180.735037,180.5292075,8.672244,0.077909757,1620000000000 ,1620000000000 ,1620000000000 ,1616812301440 -1616812301471 ,112.5730142,26.89325211,62.59252548,180.7340807,180.9928705,8.6741295,0.078147681,1620000000000 ,1620000000000 ,1620000000000 ,1616812301450 -1616812301477 ,112.5730142,26.89325133,62.59223557,180.7322502,181.4451101,8.67502,0.078388754,1620000000000 ,1620000000000 ,1620000000000 ,1616812301460 -1616812301488 ,112.5730142,26.89325055,62.59195328,180.7306656,181.4158888,8.675918,0.078399794,1620000000000 ,1620000000000 ,1620000000000 ,1616812301470 -1616812301499 ,112.5730142,26.89324976,62.59165573,180.7269773,181.3976701,8.675066,0.078398807,1620000000000 ,1620000000000 ,1620000000000 ,1616812301480 -1616812301508 ,112.5730142,26.89324898,62.59132004,180.7244638,181.3880578,8.673146,0.078379425,1620000000000 ,1620000000000 ,1620000000000 ,1616812301490 -1616812301516 ,112.5730142,26.8932482,62.59094238,180.7213766,181.3800515,8.672718,0.078372338,1620000000000 ,1620000000000 ,1620000000000 ,1616812301500 -1616812301527 ,112.5730141,26.89324741,62.59052658,180.7164862,181.3665571,8.672425,0.078369012,1620000000000 ,1620000000000 ,1620000000000 ,1616812301510 -1616812301540 ,112.5730141,26.89324663,62.59008026,180.7115138,181.3556773,8.673191,0.078372608,1620000000000 ,1620000000000 ,1620000000000 ,1616812301520 -1616812301553 ,112.5730141,26.89324585,62.58957672,180.7072517,181.3468511,8.673178,0.078372203,1620000000000 ,1620000000000 ,1620000000000 ,1616812301530 -1616812301558 ,112.5730141,26.89324506,62.58901215,180.7017603,181.336844,8.673251,0.078371141,1620000000000 ,1620000000000 ,1620000000000 ,1616812301540 -1616812301571 ,112.5730141,26.89324428,62.58841324,180.6956677,181.3305776,8.67357,0.078371632,1620000000000 ,1620000000000 ,1620000000000 ,1616812301550 -1616812301578 ,112.573014,26.89324349,62.58776855,180.6896025,181.3253673,8.673912,0.078375056,1620000000000 ,1620000000000 ,1620000000000 ,1616812301560 -1616812301589 ,112.573014,26.89324271,62.58704376,180.6840018,181.3270827,8.673922,0.078370469,1620000000000 ,1620000000000 ,1620000000000 ,1616812301570 -1616812301597 ,112.573014,26.89324193,62.58620071,180.677117,181.3251561,8.673549,0.078363269,1620000000000 ,1620000000000 ,1620000000000 ,1616812301580 -1616812301609 ,112.573014,26.89324114,62.58524704,180.6712976,181.3262333,8.673813,0.078360785,1620000000000 ,1620000000000 ,1620000000000 ,1616812301590 -1616812301618 ,112.573014,26.89324036,62.58422089,180.6636478,181.3208914,8.673268,0.07835368,1620000000000 ,1620000000000 ,1620000000000 ,1616812301600 -1616812301627 ,112.573014,26.89323958,62.58315277,180.6574733,181.3059916,8.673976,0.078354892,1620000000000 ,1620000000000 ,1620000000000 ,1616812301610 -1616812301639 ,112.5730139,26.89323879,62.58203506,180.6508617,181.2996491,8.673306,0.078351388,1620000000000 ,1620000000000 ,1620000000000 ,1616812301620 -1616812301648 ,112.5730139,26.89323801,62.58083344,180.6432392,181.3099779,8.674992,0.078356441,1620000000000 ,1620000000000 ,1620000000000 ,1616812301630 -1616812301658 ,112.5730139,26.89323723,62.57953644,180.6355894,181.3253749,8.675985,0.078361397,1620000000000 ,1620000000000 ,1620000000000 ,1616812301640 -1616812301669 ,112.5730139,26.89323644,62.57815933,180.6274751,181.3309764,8.675957,0.078359836,1620000000000 ,1620000000000 ,1620000000000 ,1616812301650 -1616812301679 ,112.5730139,26.89323566,62.57676697,180.6193882,181.3233439,8.675781,0.078360049,1620000000000 ,1620000000000 ,1620000000000 ,1616812301660 -1616812301692 ,112.5730138,26.89323488,62.57536697,180.6090063,181.2991189,8.675369,0.078354272,1620000000000 ,1620000000000 ,1620000000000 ,1616812301670 -1616812301699 ,112.5730138,26.89323409,62.57395935,180.5982692,181.2903916,8.675266,0.078350886,1620000000000 ,1620000000000 ,1620000000000 ,1616812301680 -1616812301710 ,112.5730138,26.89323331,62.57252884,180.5897178,181.2841058,8.675576,0.078352162,1620000000000 ,1620000000000 ,1620000000000 ,1616812301690 -1616812301727 ,112.5730138,26.89323253,62.57107544,180.5804561,181.2747125,8.675877,0.078353243,1620000000000 ,1620000000000 ,1620000000000 ,1616812301700 -1616812301730 ,112.5730138,26.89323174,62.56962967,180.5711124,181.2596029,8.676344,0.078355993,1620000000000 ,1620000000000 ,1620000000000 ,1616812301710 -1616812301738 ,112.5730138,26.89323096,62.5681839,180.5631894,181.2354592,8.676969,0.078361788,1620000000000 ,1620000000000 ,1620000000000 ,1616812301720 -1616812301755 ,112.5730137,26.89323018,62.56674194,180.553272,181.2142751,8.677328,0.078366164,1620000000000 ,1620000000000 ,1620000000000 ,1616812301730 -1616812301761 ,112.5730137,26.89322939,62.56531143,180.5452943,181.1955755,8.676167,0.078357227,1620000000000 ,1620000000000 ,1620000000000 ,1616812301740 -1616812301769 ,112.5730137,26.89322861,62.56391907,180.5368522,181.1728772,8.675813,0.078353487,1620000000000 ,1620000000000 ,1620000000000 ,1616812301750 -1616812301780 ,112.5730137,26.89322783,62.56255341,180.5298854,181.1567931,8.673773,0.078341224,1620000000000 ,1620000000000 ,1620000000000 ,1616812301760 -1616812301792 ,112.5730137,26.89322704,62.56117249,180.5248857,181.147468,8.674866,0.078337564,1620000000000 ,1620000000000 ,1620000000000 ,1616812301770 -1616812301800 ,112.5730137,26.89322626,62.55973434,180.5214979,181.1383273,8.675475,0.078346907,1620000000000 ,1620000000000 ,1620000000000 ,1616812301780 -1616812301809 ,112.5730136,26.89322548,62.55825043,180.5144218,181.122879,8.675983,0.078343782,1620000000000 ,1620000000000 ,1620000000000 ,1616812301790 -1616812301820 ,112.5730136,26.89322469,62.55679321,180.5055153,181.1052531,8.67671,0.078355227,1620000000000 ,1620000000000 ,1620000000000 ,1616812301800 -1616812301830 ,112.5730136,26.89322391,62.55539322,180.4971824,181.1048342,8.67543,0.07834926,1620000000000 ,1620000000000 ,1620000000000 ,1616812301810 -1616812301840 ,112.5730136,26.89322313,62.5540657,180.4886037,181.1176563,8.675857,0.078350653,1620000000000 ,1620000000000 ,1620000000000 ,1616812301820 -1616812301850 ,112.5730136,26.89322234,62.55278397,180.4802163,181.1228865,8.675875,0.078356171,1620000000000 ,1620000000000 ,1620000000000 ,1616812301830 -1616812301860 ,112.5730136,26.89322156,62.5515213,180.4710638,181.1160519,8.675658,0.0783523,1620000000000 ,1620000000000 ,1620000000000 ,1616812301840 -1616812301870 ,112.5730136,26.89322078,62.55028534,180.4617747,181.1088927,8.676291,0.078359934,1620000000000 ,1620000000000 ,1620000000000 ,1616812301850 -1616812301880 ,112.5730135,26.89321999,62.54906464,180.451065,181.1074132,8.675829,0.078358218,1620000000000 ,1620000000000 ,1620000000000 ,1616812301860 -1616812301890 ,112.5730135,26.89321921,62.54788589,180.4392351,181.1179474,8.674575,0.078350142,1620000000000 ,1620000000000 ,1620000000000 ,1616812301870 -1616812301900 ,112.5730135,26.89321843,62.54675674,180.4271867,181.1285131,8.674316,0.07834717,1620000000000 ,1620000000000 ,1620000000000 ,1616812301880 -1616812301910 ,112.5730135,26.89321764,62.54567337,180.4168048,181.1358618,8.675565,0.078357372,1620000000000 ,1620000000000 ,1620000000000 ,1616812301890 -1616812301921 ,112.5730135,26.89321686,62.54459,180.4040187,181.1291897,8.677362,0.07837343,1620000000000 ,1620000000000 ,1620000000000 ,1616812301900 -1616812301931 ,112.5730135,26.89321608,62.54348755,180.3889649,181.1162719,8.677593,0.078377927,1620000000000 ,1620000000000 ,1620000000000 ,1616812301910 -1616812301940 ,112.5730134,26.89321529,62.54240417,180.3763427,181.1160292,8.676472,0.078372356,1620000000000 ,1620000000000 ,1620000000000 ,1616812301920 -1616812301951 ,112.5730134,26.89321451,62.54137039,180.3630102,181.1165808,8.675586,0.078365076,1620000000000 ,1620000000000 ,1620000000000 ,1616812301930 -1616812301962 ,112.5730134,26.89321373,62.54039764,180.3482024,181.1146424,8.674781,0.078361949,1620000000000 ,1620000000000 ,1620000000000 ,1616812301940 -1616812301976 ,112.5730134,26.89321294,62.53947067,180.3341322,181.1027556,8.67398,0.078356699,1620000000000 ,1620000000000 ,1620000000000 ,1616812301950 -1616812301981 ,112.5730134,26.89321216,62.53855133,180.3176304,181.0782477,8.673858,0.078355258,1620000000000 ,1620000000000 ,1620000000000 ,1616812301960 -1616812301993 ,112.5730134,26.89321138,62.53760529,180.3023855,181.0577974,8.6752825,0.07836108,1620000000000 ,1620000000000 ,1620000000000 ,1616812301970 -1616812302003 ,112.5730134,26.89321059,62.53662109,180.2867307,181.040273,8.676953,0.078375772,1620000000000 ,1620000000000 ,1620000000000 ,1616812301980 -1616812302011 ,112.5730133,26.89320981,62.53560638,180.2714857,181.0152176,8.6770525,0.078378664,1620000000000 ,1620000000000 ,1620000000000 ,1616812301990 -1616812302022 ,112.5730133,26.89320902,62.53461456,180.2559675,180.9894302,8.675987,0.078373128,1620000000000 ,1620000000000 ,1620000000000 ,1616812302000 -1616812302033 ,112.5730133,26.89320824,62.53365707,180.2401488,180.955619,8.674647,0.078361568,1620000000000 ,1620000000000 ,1620000000000 ,1616812302010 -1616812302042 ,112.5730133,26.89320746,62.53270721,180.2270894,180.9306514,8.674913,0.078360416,1620000000000 ,1620000000000 ,1620000000000 ,1616812302020 -1616812302052 ,112.5730133,26.89320667,62.53172302,180.212063,180.9073713,8.675743,0.078365152,1620000000000 ,1620000000000 ,1620000000000 ,1616812302030 -1616812302061 ,112.5730133,26.89320589,62.53070831,180.197747,180.883834,8.676517,0.07837131,1620000000000 ,1620000000000 ,1620000000000 ,1616812302040 -1616812302073 ,112.5730133,26.89320511,62.52970886,180.1850701,180.8572679,8.677302,0.078379256,1620000000000 ,1620000000000 ,1620000000000 ,1616812302050 -1616812302082 ,112.5730133,26.89320432,62.52874374,180.1704808,180.8249033,8.678015,0.078385745,1620000000000 ,1620000000000 ,1620000000000 ,1616812302060 -1616812302093 ,112.5730132,26.89320354,62.52780914,180.1566019,180.8005121,8.68023,0.07840306,1620000000000 ,1620000000000 ,1620000000000 ,1616812302070 -1616812302105 ,112.5730132,26.89320275,62.52688217,180.1431054,180.7940878,8.683237,0.0784309,1620000000000 ,1620000000000 ,1620000000000 ,1616812302080 -1616812302114 ,112.5730132,26.89320197,62.52595139,180.1295543,180.7896817,8.685713,0.078452532,1620000000000 ,1620000000000 ,1620000000000 ,1616812302090 -1616812302122 ,112.5730132,26.89320119,62.52502441,180.1166863,180.7779971,8.688466,0.078478316,1620000000000 ,1620000000000 ,1620000000000 ,1616812302100 -1616812302132 ,112.5730132,26.8932004,62.52412796,180.1038182,180.7614593,8.690906,0.078500816,1620000000000 ,1620000000000 ,1620000000000 ,1616812302110 -1616812302143 ,112.5730132,26.89319962,62.52321243,180.091114,180.7470759,8.695811,0.078537453,1620000000000 ,1620000000000 ,1620000000000 ,1616812302120 -1616812302153 ,112.5730132,26.89319883,62.52220917,180.0784099,180.7383476,8.701339,0.078584357,1620000000000 ,1620000000000 ,1620000000000 ,1616812302130 -1616812302164 ,112.5730132,26.89319804,62.52108002,180.0677275,180.7368356,8.706308,0.078623277,1620000000000 ,1620000000000 ,1620000000000 ,1616812302140 -1616812302174 ,112.5730132,26.89319726,62.51987839,180.0553512,180.7282062,8.711863,0.078669808,1620000000000 ,1620000000000 ,1620000000000 ,1616812302150 -1616812302183 ,112.5730132,26.89319647,62.51865005,180.0432208,180.7089619,8.716533,0.078710269,1620000000000 ,1620000000000 ,1620000000000 ,1616812302160 -1616812302194 ,112.5730131,26.89319568,62.51741409,180.0307078,180.6987011,8.7223425,0.078759365,1620000000000 ,1620000000000 ,1620000000000 ,1616812302170 -1616812302202 ,112.5730131,26.89319489,62.51613235,180.0168835,180.6932722,8.726759,0.078801293,1620000000000 ,1620000000000 ,1620000000000 ,1616812302180 -1616812302213 ,112.5730131,26.89319411,62.51481247,180.0046165,180.6814833,8.731027,0.078838039,1620000000000 ,1620000000000 ,1620000000000 ,1616812302190 -1616812302222 ,112.5730131,26.89319332,62.51348114,179.9879509,180.3388706,8.727262,0.078827773,1620000000000 ,1620000000000 ,1620000000000 ,1616812302200 -1616812302233 ,112.5730131,26.89319253,62.51206207,179.9767767,179.7991924,8.731475,0.078756133,1620000000000 ,1620000000000 ,1620000000000 ,1616812302210 -1616812302243 ,112.5730131,26.89319174,62.51060486,179.9655752,179.7848267,8.735005,0.07878631,1620000000000 ,1620000000000 ,1620000000000 ,1616812302230 -1616812302254 ,112.5730131,26.89319095,62.50912476,179.9553572,179.7690684,8.739592,0.078824748,1620000000000 ,1620000000000 ,1620000000000 ,1616812302230 -1616812302264 ,112.5730131,26.89319017,62.50766754,179.9435,179.7376058,8.744006,0.078864559,1620000000000 ,1620000000000 ,1620000000000 ,1616812302250 -1616812302274 ,112.5730131,26.89318859,62.50482559,179.9224357,179.6843133,8.750562,0.157824161,1620000000000 ,1620000000000 ,1620000000000 ,1616812302260 -1616812302284 ,112.5730131,26.89318859,62.50482559,179.9224357,-400,8.750562,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812302270 -1616812302294 ,112.5730132,26.89318701,62.50196838,179.9024369,179.6078836,8.7575655,0.157934784,1620000000000 ,1620000000000 ,1620000000000 ,1616812302280 -1616812302304 ,112.5730132,26.89318701,62.50196838,179.9024369,-400,8.7575655,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812302290 -1616812302320 ,112.5730132,26.89318543,62.49919128,179.8846238,179.5227457,8.765643,0.158087759,1620000000000 ,1620000000000 ,1620000000000 ,1616812302300 -1616812302324 ,112.5730132,26.89318464,62.49785614,179.8767554,179.4607224,8.768923,0.079093444,1620000000000 ,1620000000000 ,1620000000000 ,1616812302310 -1616812302334 ,112.5730132,26.89318385,62.49657059,179.8706082,179.4361416,8.77236,0.079125112,1620000000000 ,1620000000000 ,1620000000000 ,1616812302320 -1616812302344 ,112.5730132,26.89318385,62.49657059,179.8706082,-400,8.77236,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812302320 -1616812302356 ,112.5730132,26.89318226,62.49414825,179.8595979,179.4078684,8.781104,0.158364463,1620000000000 ,1620000000000 ,1620000000000 ,1616812302340 -1616812302366 ,112.5730132,26.89318147,62.49298477,179.854407,179.3957581,8.784998,0.07924301,1620000000000 ,1620000000000 ,1620000000000 ,1616812302350 -1616812302375 ,112.5730132,26.89318068,62.49185944,179.8512651,179.3861295,8.788764,0.079277706,1620000000000 ,1620000000000 ,1620000000000 ,1616812302360 -1616812302385 ,112.5730132,26.89317988,62.49075699,179.846484,179.3911343,8.792931,0.079314848,1620000000000 ,1620000000000 ,1620000000000 ,1616812302370 -1616812302396 ,112.5730132,26.89317909,62.48968124,179.8426318,179.3969332,8.796465,0.079346909,1620000000000 ,1620000000000 ,1620000000000 ,1616812302380 -1616812302405 ,112.5730132,26.8931783,62.4886322,179.8381238,179.4091714,8.801198,0.079388062,1620000000000 ,1620000000000 ,1620000000000 ,1616812302390 -1616812302415 ,112.5730132,26.8931775,62.48763275,179.8322499,179.4229154,8.804242,0.079423616,1620000000000 ,1620000000000 ,1620000000000 ,1616812302400 -1616812302426 ,112.5730133,26.89317671,62.48669434,179.8271136,179.4488206,8.807778,0.079453168,1620000000000 ,1620000000000 ,1620000000000 ,1616812302410 -1616812302435 ,112.5730133,26.89317591,62.48581314,179.8193545,179.4725934,8.812261,0.079493917,1620000000000 ,1620000000000 ,1620000000000 ,1616812302420 -1616812302445 ,112.5730133,26.89317512,62.48495483,179.8132346,179.4891026,8.8160925,0.079530343,1620000000000 ,1620000000000 ,1620000000000 ,1616812302430 -1616812302456 ,112.5730133,26.89317432,62.48413086,179.8048745,179.5076582,8.821333,0.079576776,1620000000000 ,1620000000000 ,1620000000000 ,1616812302440 -1616812302466 ,112.5730133,26.89317352,62.48334503,179.7989732,179.8412165,8.825281,0.079651366,1620000000000 ,1620000000000 ,1620000000000 ,1616812302450 -1616812302476 ,112.5730133,26.89317273,62.48260117,179.792061,180.1785352,8.828529,0.079720678,1620000000000 ,1620000000000 ,1620000000000 ,1616812302460 -1616812302485 ,112.5730133,26.89317193,62.48189926,179.7883454,180.1834632,8.831746,0.079752202,1620000000000 ,1620000000000 ,1620000000000 ,1616812302470 -1616812302500 ,112.5730133,26.89317113,62.48124313,179.7810235,180.1904321,8.834146,0.079776621,1620000000000 ,1620000000000 ,1620000000000 ,1616812302480 -1616812302506 ,112.5730133,26.89317033,62.48064041,179.7741113,180.1956199,8.837807,0.079810333,1620000000000 ,1620000000000 ,1620000000000 ,1616812302490 -1616812302516 ,112.5730133,26.89316954,62.48006439,179.7699039,180.1837319,8.842382,0.079850481,1620000000000 ,1620000000000 ,1620000000000 ,1616812302500 -1616812302526 ,112.5730133,26.89316874,62.47951889,179.7649315,180.178297,8.84693,0.079893844,1620000000000 ,1620000000000 ,1620000000000 ,1616812302510 -1616812302538 ,112.5730133,26.89316794,62.47901917,179.759522,180.1606479,8.850375,0.079928176,1620000000000 ,1620000000000 ,1620000000000 ,1616812302520 -1616812302557 ,112.5730133,26.89316714,62.47856522,179.7556698,180.1403406,8.854496,0.079969181,1620000000000 ,1620000000000 ,1620000000000 ,1616812302530 -1616812302560 ,112.5730133,26.89316634,62.47816849,179.7512438,180.1248134,8.857965,0.080004445,1620000000000 ,1620000000000 ,1620000000000 ,1616812302540 -1616812302569 ,112.5730133,26.89316554,62.47780991,179.7498231,180.1014582,8.861172,0.080036127,1620000000000 ,1620000000000 ,1620000000000 ,1616812302550 -1616812302578 ,112.5730133,26.89316474,62.4774971,179.7477741,180.0753091,8.863571,0.080064116,1620000000000 ,1620000000000 ,1620000000000 ,1616812302560 -1616812302589 ,112.5730133,26.89316394,62.47723007,179.747938,180.0519286,8.8668995,0.080093271,1620000000000 ,1620000000000 ,1620000000000 ,1616812302570 -1616812302598 ,112.5730133,26.89316313,62.47700119,179.7488396,180.0365113,8.87165,0.080136919,1620000000000 ,1620000000000 ,1620000000000 ,1616812302580 -1616812302608 ,112.5730133,26.89316233,62.47677994,179.7503149,180.0232084,8.875101,0.080171903,1620000000000 ,1620000000000 ,1620000000000 ,1616812302590 -1616812302617 ,112.5730133,26.89316153,62.47655487,179.7530743,180.019258,8.879002,0.080208727,1620000000000 ,1620000000000 ,1620000000000 ,1616812302600 -1616812302627 ,112.5730133,26.89316073,62.47629929,179.754413,180.0101549,8.884067,0.08025203,1620000000000 ,1620000000000 ,1620000000000 ,1616812302610 -1616812302639 ,112.5730133,26.89315993,62.47599792,179.759604,180.0150427,8.888716,0.080292724,1620000000000 ,1620000000000 ,1620000000000 ,1616812302620 -1616812302649 ,112.5730133,26.89315912,62.47563934,179.7620902,180.0152205,8.8939295,0.0803387,1620000000000 ,1620000000000 ,1620000000000 ,1616812302630 -1616812302657 ,112.5730133,26.89315832,62.4752388,179.7659151,180.0139013,8.896915,0.080372196,1620000000000 ,1620000000000 ,1620000000000 ,1616812302640 -1616812302668 ,112.5730133,26.89315751,62.47482681,179.7681827,180.0277954,8.9014845,0.080407587,1620000000000 ,1620000000000 ,1620000000000 ,1616812302650 -1616812302679 ,112.5730133,26.89315671,62.47439957,179.7708875,180.0338739,8.906085,0.080451337,1620000000000 ,1620000000000 ,1620000000000 ,1616812302660 -1616812302689 ,112.5730133,26.8931559,62.47393036,179.7738654,180.0478173,8.909789,0.080485109,1620000000000 ,1620000000000 ,1620000000000 ,1616812302670 -1616812302698 ,112.5730133,26.8931551,62.47340775,179.7777176,180.0626718,8.915306,0.080531252,1620000000000 ,1620000000000 ,1620000000000 ,1616812302680 -1616812302709 ,112.5730132,26.89315429,62.47282791,179.7803131,180.0680579,8.919631,0.080571757,1620000000000 ,1620000000000 ,1620000000000 ,1616812302690 -1616812302718 ,112.5730132,26.89315349,62.47219467,179.7836462,180.0751191,8.924318,0.080610256,1620000000000 ,1620000000000 ,1620000000000 ,1616812302700 -1616812302728 ,112.5730132,26.89315268,62.47149277,179.7850669,180.0858645,8.929522,0.080656517,1620000000000 ,1620000000000 ,1620000000000 ,1616812302710 -1616812302739 ,112.5730132,26.89315187,62.47073746,179.7874165,180.0929349,8.932492,0.080686404,1620000000000 ,1620000000000 ,1620000000000 ,1616812302720 -1616812302749 ,112.5730132,26.89315107,62.46992493,179.7900666,180.1003879,8.937174,0.080719902,1620000000000 ,1620000000000 ,1620000000000 ,1616812302730 -1616812302758 ,112.5730132,26.89315026,62.46905136,179.7932085,180.1047539,8.943137,0.080770936,1620000000000 ,1620000000000 ,1620000000000 ,1616812302740 -1616812302768 ,112.5730132,26.89314945,62.46807861,179.7974705,180.0993794,8.94799,0.080813126,1620000000000 ,1620000000000 ,1620000000000 ,1616812302750 -1616812302781 ,112.5730132,26.89314864,62.46699905,179.8017053,180.104734,8.954645,0.080864032,1620000000000 ,1620000000000 ,1620000000000 ,1616812302760 -1616812302791 ,112.5730132,26.89314783,62.46582031,179.8060766,180.1139935,8.960454,0.08091546,1620000000000 ,1620000000000 ,1620000000000 ,1616812302770 -1616812302799 ,112.5730132,26.89314702,62.46457672,179.8105025,180.1223521,8.965524,0.080959027,1620000000000 ,1620000000000 ,1620000000000 ,1616812302780 -1616812302809 ,112.5730132,26.89314621,62.46328735,179.8141909,180.1313829,8.970394,0.08100341,1620000000000 ,1620000000000 ,1620000000000 ,1616812302790 -1616812302819 ,112.5730132,26.8931454,62.46196747,179.8195184,180.1429787,8.973527,0.081033524,1620000000000 ,1620000000000 ,1620000000000 ,1616812302800 -1616812302829 ,112.5730132,26.89314459,62.46061707,179.8256109,180.1553844,8.976336,0.081057878,1620000000000 ,1620000000000 ,1620000000000 ,1616812302810 -1616812302840 ,112.5730132,26.89314378,62.45922852,179.8307199,180.1594176,8.980417,0.081091015,1620000000000 ,1620000000000 ,1620000000000 ,1616812302820 -1616812302849 ,112.5730132,26.89314297,62.45779037,179.8361021,180.1655368,8.985465,0.081130252,1620000000000 ,1620000000000 ,1620000000000 ,1616812302830 -1616812302859 ,112.5730132,26.89314216,62.45629883,179.8411564,180.176481,8.99188,0.081181971,1620000000000 ,1620000000000 ,1620000000000 ,1616812302840 -1616812302869 ,112.5730132,26.89314135,62.45475769,179.8457736,180.1959982,8.997835,0.081238221,1620000000000 ,1620000000000 ,1620000000000 ,1616812302850 -1616812302881 ,112.5730132,26.89314053,62.45320511,179.8529317,180.2049446,9.003879,0.081289443,1620000000000 ,1620000000000 ,1620000000000 ,1616812302860 -1616812302892 ,112.5730132,26.89313972,62.45165634,179.8569752,180.2065473,9.00879,0.081337889,1620000000000 ,1620000000000 ,1620000000000 ,1616812302870 -1616812302899 ,112.5730132,26.89313891,62.45009995,179.8636961,180.2164121,9.0127945,0.081375329,1620000000000 ,1620000000000 ,1620000000000 ,1616812302880 -1616812302910 ,112.5730132,26.89313809,62.44852066,179.8717557,180.2269841,9.01605,0.08140588,1620000000000 ,1620000000000 ,1620000000000 ,1616812302890 -1616812302920 ,112.5730132,26.89313728,62.44691849,179.8794055,180.2392474,9.01985,0.081434533,1620000000000 ,1620000000000 ,1620000000000 ,1616812302900 -1616812302930 ,112.5730132,26.89313646,62.44533539,179.8884487,180.2551498,9.025941,0.081487624,1620000000000 ,1620000000000 ,1620000000000 ,1616812302910 -1616812302940 ,112.5730132,26.89313565,62.44376373,179.8976011,180.2716581,9.031964,0.081542367,1620000000000 ,1620000000000 ,1620000000000 ,1616812302920 -1616812302951 ,112.5730132,26.89313483,62.44219971,179.9048411,180.2868778,9.037809,0.081597432,1620000000000 ,1620000000000 ,1620000000000 ,1616812302930 -1616812302960 ,112.5730132,26.89313402,62.44065094,179.9130373,180.2957854,9.042156,0.081640465,1620000000000 ,1620000000000 ,1620000000000 ,1616812302940 -1616812302971 ,112.5730132,26.8931332,62.43912125,179.9193211,180.2996774,9.045134,0.081672968,1620000000000 ,1620000000000 ,1620000000000 ,1616812302950 -1616812302983 ,112.5730132,26.89313238,62.43762207,179.9254956,180.3058423,9.049111,0.081705496,1620000000000 ,1620000000000 ,1620000000000 ,1616812302970 -1616812302994 ,112.5730132,26.89313156,62.43616104,179.9299762,180.3079818,9.054319,0.081753104,1620000000000 ,1620000000000 ,1620000000000 ,1616812302980 -1616812303003 ,112.5730132,26.89313075,62.43474197,179.9341563,180.2965614,9.059081,0.081799417,1620000000000 ,1620000000000 ,1620000000000 ,1616812302980 -1616812303014 ,112.5730132,26.89312993,62.43338013,179.9409045,180.2828801,9.064817,0.081851653,1620000000000 ,1620000000000 ,1620000000000 ,1616812303000 -1616812303024 ,112.5730132,26.89312829,62.43078995,179.9605755,180.2832466,9.072225,0.163834739,1620000000000 ,1620000000000 ,1620000000000 ,1616812303010 -1616812303033 ,112.5730132,26.89312829,62.43078995,179.9605755,-400,9.072225,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812303020 -1616812303043 ,112.5730132,26.89312665,62.4283905,179.9805469,180.3045618,9.080711,0.16398497,1620000000000 ,1620000000000 ,1620000000000 ,1616812303030 -1616812303057 ,112.5730131,26.89312583,62.42720795,179.9908469,180.3315067,9.085941,0.082058363,1620000000000 ,1620000000000 ,1620000000000 ,1616812303040 -1616812303064 ,112.5730131,26.89312583,62.42720795,179.9908469,-400,9.085941,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812303040 -1616812303075 ,112.5730131,26.89312419,62.42466354,180.0071574,180.3693473,9.095846,0.16425297,1620000000000 ,1620000000000 ,1620000000000 ,1616812303060 -1616812303084 ,112.5730131,26.89312336,62.4233551,180.0121844,180.4035285,9.101206,0.082194357,1620000000000 ,1620000000000 ,1620000000000 ,1616812303070 -1616812303094 ,112.5730131,26.89312254,62.4220314,180.0161732,180.4099865,9.10706,0.082248764,1620000000000 ,1620000000000 ,1620000000000 ,1616812303080 -1616812303105 ,112.5730131,26.89312254,62.4220314,180.0161732,-400,9.10706,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812303090 -1616812303115 ,112.5730131,26.8931209,62.41923904,180.0236591,180.432858,9.117267,0.164634068,1620000000000 ,1620000000000 ,1620000000000 ,1616812303100 -1616812303124 ,112.5730131,26.89312007,62.41783524,180.0266644,180.4468211,9.120747,0.082376062,1620000000000 ,1620000000000 ,1620000000000 ,1616812303110 -1616812303135 ,112.5730131,26.89311925,62.41648865,180.0307078,180.4523223,9.126922,0.082430879,1620000000000 ,1620000000000 ,1620000000000 ,1616812303120 -1616812303146 ,112.5730131,26.89311842,62.41518021,180.0327023,180.4621873,9.132556,0.0824878,1620000000000 ,1620000000000 ,1620000000000 ,1616812303130 -1616812303156 ,112.5730131,26.8931176,62.41387558,180.0365272,180.4609387,9.140269,0.082550138,1620000000000 ,1620000000000 ,1620000000000 ,1616812303140 -1616812303166 ,112.5730131,26.89311677,62.41254425,180.0396144,180.4610925,9.148788,0.082638091,1620000000000 ,1620000000000 ,1620000000000 ,1616812303150 -1616812303176 ,112.5730131,26.89311594,62.41115952,180.0422645,180.4637358,9.146269,0.082635861,1620000000000 ,1620000000000 ,1620000000000 ,1616812303160 -1616812303185 ,112.5730131,26.89311512,62.40975189,180.0430568,180.4702999,9.145181,0.082615828,1620000000000 ,1620000000000 ,1620000000000 ,1616812303170 -1616812303195 ,112.5730131,26.89311429,62.40833664,180.0433027,180.4738333,9.145279,0.08261925,1620000000000 ,1620000000000 ,1620000000000 ,1616812303180 -1616812303205 ,112.5730131,26.89311347,62.40686798,180.0436579,180.4731469,9.147346,0.082627242,1620000000000 ,1620000000000 ,1620000000000 ,1616812303190 -1616812303216 ,112.573013,26.89311264,62.40587234,180.0532748,180.4175154,9.164653,0.083004437,1620000000000 ,1620000000000 ,1620000000000 ,1616812303200 -1616812303229 ,112.573013,26.8931118,62.40565872,180.0517448,180.2793396,9.1736555,0.083509059,1620000000000 ,1620000000000 ,1620000000000 ,1616812303210 -1616812303239 ,112.573013,26.89311097,62.40534973,180.0495865,180.2866877,9.185431,0.083604693,1620000000000 ,1620000000000 ,1620000000000 ,1616812303220 -1616812303249 ,112.573013,26.89311013,62.4049263,180.0504061,180.28249,9.195983,0.083703316,1620000000000 ,1620000000000 ,1620000000000 ,1616812303230 -1616812303263 ,112.573013,26.89310929,62.40441895,180.0498597,180.2570395,9.19702,0.083729049,1620000000000 ,1620000000000 ,1620000000000 ,1616812303240 -1616812303268 ,112.573013,26.89310845,62.40395355,180.0474828,180.2197787,9.196304,0.083724635,1620000000000 ,1620000000000 ,1620000000000 ,1616812303250 -1616812303278 ,112.573013,26.89310762,62.40351868,180.046226,180.200536,9.195335,0.083718419,1620000000000 ,1620000000000 ,1620000000000 ,1616812303260 -1616812303287 ,112.573013,26.89310678,62.40295792,180.0468271,180.1965594,9.202071,0.083750214,1620000000000 ,1620000000000 ,1620000000000 ,1616812303270 -1616812303300 ,112.573013,26.89310594,62.40215683,180.0479199,180.2188885,9.211697,0.083819245,1620000000000 ,1620000000000 ,1620000000000 ,1616812303280 -1616812303307 ,112.573013,26.8931051,62.40114594,180.0463626,180.2410783,9.221697,0.083897313,1620000000000 ,1620000000000 ,1620000000000 ,1616812303290 -1616812303317 ,112.573013,26.89310426,62.40005112,180.0410351,180.2399284,9.231536,0.083979391,1620000000000 ,1620000000000 ,1620000000000 ,1616812303300 -1616812303326 ,112.573013,26.89310342,62.39891815,180.0365818,180.231754,9.239338,0.084052851,1620000000000 ,1620000000000 ,1620000000000 ,1616812303310 -1616812303341 ,112.573013,26.89310258,62.3977356,180.0336585,180.2413974,9.241006,0.084072784,1620000000000 ,1620000000000 ,1620000000000 ,1616812303320 -1616812303353 ,112.573013,26.89310174,62.39652252,180.0312543,180.2694536,9.246465,0.084113815,1620000000000 ,1620000000000 ,1620000000000 ,1616812303330 -1616812303357 ,112.573013,26.8931009,62.39531708,180.0271835,180.2586845,9.24951,0.084140871,1620000000000 ,1620000000000 ,1620000000000 ,1616812303340 -1616812303367 ,112.573013,26.89310006,62.39411926,180.0217466,180.2409367,9.255821,0.084189273,1620000000000 ,1620000000000 ,1620000000000 ,1616812303350 -1616812303377 ,112.573013,26.89309921,62.39287949,180.0177032,180.2357933,9.262066,0.084242508,1620000000000 ,1620000000000 ,1620000000000 ,1616812303360 -1616812303387 ,112.573013,26.89309837,62.3915329,180.0122937,180.2567469,9.2705765,0.084307129,1620000000000 ,1620000000000 ,1620000000000 ,1616812303370 -1616812303401 ,112.573013,26.89309753,62.39012527,180.0092064,180.2749153,9.279191,0.084380606,1620000000000 ,1620000000000 ,1620000000000 ,1616812303380 -1616812303409 ,112.573013,26.89309668,62.38874054,180.0026494,180.2621851,9.285892,0.084443822,1620000000000 ,1620000000000 ,1620000000000 ,1616812303390 -1616812303417 ,112.573013,26.89309584,62.3874321,179.9978683,180.2444228,9.290331,0.084491573,1620000000000 ,1620000000000 ,1620000000000 ,1616812303400 -1616812303427 ,112.573013,26.89309499,62.38615036,179.992814,180.2345576,9.292921,0.084517921,1620000000000 ,1620000000000 ,1620000000000 ,1616812303410 -1616812303438 ,112.573013,26.89309415,62.3848114,179.9890437,180.2319867,9.296743,0.084541316,1620000000000 ,1620000000000 ,1620000000000 ,1616812303420 -1616812303447 ,112.573013,26.8930933,62.38331223,179.9823228,180.2210942,9.306524,0.08460197,1620000000000 ,1620000000000 ,1620000000000 ,1616812303430 -1616812303457 ,112.573013,26.89309245,62.38156509,179.9757112,180.2071032,9.315651,0.084694072,1620000000000 ,1620000000000 ,1620000000000 ,1616812303440 -1616812303467 ,112.573013,26.89309161,62.37912369,179.967351,180.2607275,9.319494,0.084382192,1620000000000 ,1620000000000 ,1620000000000 ,1616812303450 -1616812303478 ,112.573013,26.89309077,62.37628174,179.9573243,180.3056827,9.334946,0.084197104,1620000000000 ,1620000000000 ,1620000000000 ,1616812303460 -1616812303489 ,112.5730129,26.89308993,62.37379074,179.9488822,180.2652438,9.336493,0.084249768,1620000000000 ,1620000000000 ,1620000000000 ,1616812303470 -1616812303497 ,112.5730129,26.89308908,62.37163544,179.9413417,180.2278318,9.3355055,0.084256855,1620000000000 ,1620000000000 ,1620000000000 ,1616812303480 -1616812303508 ,112.5730129,26.89308824,62.36978149,179.934129,180.2210221,9.325344,0.0841978,1620000000000 ,1620000000000 ,1620000000000 ,1616812303490 -1616812303518 ,112.5730129,26.8930874,62.36817551,179.9244847,180.193759,9.323514,0.084158017,1620000000000 ,1620000000000 ,1620000000000 ,1616812303500 -1616812303537 ,112.5730129,26.89308656,62.36666107,179.9158514,180.161566,9.337122,0.084254529,1620000000000 ,1620000000000 ,1620000000000 ,1616812303510 -1616812303543 ,112.5730129,26.89308571,62.36510086,179.9069995,180.1446411,9.355191,0.084409131,1620000000000 ,1620000000000 ,1620000000000 ,1616812303520 -1616812303549 ,112.5730129,26.89308487,62.36352539,179.8961804,180.1454945,9.364208,0.084515593,1620000000000 ,1620000000000 ,1620000000000 ,1616812303530 -1616812303560 ,112.5730129,26.89308402,62.36223602,179.8835583,180.1206085,9.35971,0.084516542,1620000000000 ,1620000000000 ,1620000000000 ,1616812303540 -1616812303569 ,112.5730129,26.89308318,62.36144638,179.8719743,180.0967021,9.351665,0.084462564,1620000000000 ,1620000000000 ,1620000000000 ,1616812303550 -1616812303579 ,112.5730129,26.89308233,62.36110306,179.8594067,180.080864,9.352279,0.084463025,1620000000000 ,1620000000000 ,1620000000000 ,1616812303560 -1616812303592 ,112.5730129,26.89308149,62.36095047,179.8465113,180.0567272,9.359923,0.084522292,1620000000000 ,1620000000000 ,1620000000000 ,1616812303570 -1616812303599 ,112.5730129,26.89308064,62.36077118,179.8323318,180.0614122,9.370942,0.084622552,1620000000000 ,1620000000000 ,1620000000000 ,1616812303580 -1616812303608 ,112.5730129,26.8930798,62.36053467,179.8207478,180.0539356,9.376951,0.08469119,1620000000000 ,1620000000000 ,1620000000000 ,1616812303590 -1616812303618 ,112.5730129,26.89307895,62.36037064,179.8061039,180.0356339,9.379869,0.084726382,1620000000000 ,1620000000000 ,1620000000000 ,1616812303600 -1616812303629 ,112.5730129,26.8930781,62.36044312,179.7893563,180.0068584,9.379552,0.084741819,1620000000000 ,1620000000000 ,1620000000000 ,1616812303610 -1616812303639 ,112.5730129,26.89307725,62.36080933,179.772636,179.9900408,9.379751,0.084755984,1620000000000 ,1620000000000 ,1620000000000 ,1616812303620 -1616812303648 ,112.5730129,26.89307641,62.36133957,179.7547955,179.9921188,9.381237,0.084777333,1620000000000 ,1620000000000 ,1620000000000 ,1616812303630 -1616812303659 ,112.5730129,26.89307556,62.36192703,179.7370097,179.9829677,9.383373,0.084800761,1620000000000 ,1620000000000 ,1620000000000 ,1616812303640 -1616812303669 ,112.5730129,26.89307471,62.3625145,179.7184862,179.9641601,9.384346,0.084814207,1620000000000 ,1620000000000 ,1620000000000 ,1616812303650 -1616812303681 ,112.5730129,26.89307386,62.36309814,179.700837,179.9361112,9.388815,0.08484816,1620000000000 ,1620000000000 ,1620000000000 ,1616812303660 -1616812303690 ,112.5730129,26.89307301,62.36365891,179.6843353,179.9090655,9.39891,0.084931751,1620000000000 ,1620000000000 ,1620000000000 ,1616812303670 -1616812303700 ,112.5730129,26.89307216,62.36419296,179.6706749,179.9062307,9.407653,0.085022026,1620000000000 ,1620000000000 ,1620000000000 ,1616812303680 -1616812303713 ,112.5730129,26.89307131,62.36471558,179.6549382,179.911716,9.410382,0.085061511,1620000000000 ,1620000000000 ,1620000000000 ,1616812303690 -1616812303720 ,112.5730129,26.89307046,62.36528015,179.6402396,179.9004658,9.411051,0.085077831,1620000000000 ,1620000000000 ,1620000000000 ,1616812303700 -1616812303731 ,112.5730129,26.89306961,62.3658371,179.6240657,179.8539342,9.409551,0.085077509,1620000000000 ,1620000000000 ,1620000000000 ,1616812303710 -1616812303741 ,112.5730129,26.89306876,62.36627579,179.6080831,179.8001169,9.409192,0.085064439,1620000000000 ,1620000000000 ,1620000000000 ,1616812303720 -1616812303750 ,112.5730129,26.89306791,62.36651993,179.5924829,179.7836658,9.411343,0.085072012,1620000000000 ,1620000000000 ,1620000000000 ,1616812303730 -1616812303761 ,112.5730129,26.89306706,62.36658096,179.5741234,179.7732998,9.414711,0.085095853,1620000000000 ,1620000000000 ,1620000000000 ,1616812303740 -1616812303774 ,112.5730129,26.89306621,62.36651611,179.5557365,179.7424253,9.42132,0.085141303,1620000000000 ,1620000000000 ,1620000000000 ,1616812303750 -1616812303781 ,112.573013,26.89306535,62.3663559,179.5419122,179.6880444,9.4301405,0.08521306,1620000000000 ,1620000000000 ,1620000000000 ,1616812303760 -1616812303791 ,112.573013,26.8930645,62.36605072,179.5292354,179.6283582,9.436572,0.085274195,1620000000000 ,1620000000000 ,1620000000000 ,1616812303770 -1616812303804 ,112.573013,26.89306365,62.3655777,179.51634,179.5773829,9.440072,0.085302574,1620000000000 ,1620000000000 ,1620000000000 ,1616812303780 -1616812303817 ,112.573013,26.89306279,62.36495972,179.5066138,179.545438,9.438594,0.085295895,1620000000000 ,1620000000000 ,1620000000000 ,1616812303790 -1616812303825 ,112.573013,26.89306194,62.36420441,179.4988274,179.5350456,9.44063,0.08529722,1620000000000 ,1620000000000 ,1620000000000 ,1616812303800 -1616812303832 ,112.573013,26.89306109,62.36328506,179.4928168,179.5282768,9.44362,0.085313833,1620000000000 ,1620000000000 ,1620000000000 ,1616812303810 -1616812303842 ,112.573013,26.89306023,62.36217117,179.4881449,179.5271871,9.447779,0.085338158,1620000000000 ,1620000000000 ,1620000000000 ,1616812303820 -1616812303851 ,112.573013,26.89305938,62.36083603,179.482271,179.5264393,9.453625,0.085372427,1620000000000 ,1620000000000 ,1620000000000 ,1616812303830 -1616812303860 ,112.573013,26.89305853,62.35927582,179.4759872,179.5325747,9.461722,0.085427267,1620000000000 ,1620000000000 ,1620000000000 ,1616812303840 -1616812303872 ,112.573013,26.89305767,62.35749435,179.4686106,179.5282586,9.468499,0.08548142,1620000000000 ,1620000000000 ,1620000000000 ,1616812303850 -1616812303881 ,112.573013,26.89305682,62.35551453,179.4612067,179.5348857,9.474207,0.085522595,1620000000000 ,1620000000000 ,1620000000000 ,1616812303860 -1616812303891 ,112.573013,26.89305596,62.35341644,179.4536115,179.552767,9.4791155,0.085560505,1620000000000 ,1620000000000 ,1620000000000 ,1616812303870 -1616812303901 ,112.573013,26.89305511,62.35128403,179.4431477,179.5602034,9.482097,0.08558868,1620000000000 ,1620000000000 ,1620000000000 ,1616812303880 -1616812303914 ,112.573013,26.89305425,62.34916687,179.4343777,179.5456934,9.483992,0.08560713,1620000000000 ,1620000000000 ,1620000000000 ,1616812303890 -1616812303922 ,112.573013,26.89305339,62.34700394,179.425635,179.5485163,9.487416,0.085627484,1620000000000 ,1620000000000 ,1620000000000 ,1616812303900 -1616812303931 ,112.5730131,26.89305254,62.34471893,179.4169744,179.5811904,9.492043,0.085657565,1620000000000 ,1620000000000 ,1620000000000 ,1616812303910 -1616812303943 ,112.5730131,26.89305168,62.34236526,179.4080678,179.6027174,9.498749,0.085711491,1620000000000 ,1620000000000 ,1620000000000 ,1616812303920 -1616812303952 ,112.5730131,26.89305082,62.34008408,179.3962652,179.5817292,9.503424,0.085761092,1620000000000 ,1620000000000 ,1620000000000 ,1616812303930 -1616812303962 ,112.5730131,26.89304996,62.33794022,179.3871674,179.5691026,9.506121,0.085790156,1620000000000 ,1620000000000 ,1620000000000 ,1616812303940 -1616812303974 ,112.5730131,26.89304911,62.33588028,179.3759932,179.5354126,9.508791,0.085820263,1620000000000 ,1620000000000 ,1620000000000 ,1616812303950 -1616812303988 ,112.5730131,26.89304825,62.3337326,179.3643819,179.5236967,9.507999,0.085807901,1620000000000 ,1620000000000 ,1620000000000 ,1616812303960 -1616812303993 ,112.5730131,26.89304739,62.33140945,179.3565409,179.5325054,9.50674,0.085795164,1620000000000 ,1620000000000 ,1620000000000 ,1616812303970 -1616812304002 ,112.5730131,26.89304653,62.32888794,179.3474977,179.5582865,9.52008,0.085865369,1620000000000 ,1620000000000 ,1620000000000 ,1616812303980 -1616812304012 ,112.5730131,26.89304567,62.3263855,179.3388643,179.5278487,9.524766,0.085933015,1620000000000 ,1620000000000 ,1620000000000 ,1616812303990 -1616812304025 ,112.5730131,26.89304481,62.32408905,179.3318429,179.4120498,9.527838,0.085977615,1620000000000 ,1620000000000 ,1620000000000 ,1616812304000 -1616812304035 ,112.5730131,26.89304395,62.3221817,179.3242477,179.3816039,9.518144,0.08592949,1620000000000 ,1620000000000 ,1620000000000 ,1616812304010 -1616812304042 ,112.5730131,26.89304309,62.3207283,179.3149587,179.4071872,9.508523,0.085846802,1620000000000 ,1620000000000 ,1620000000000 ,1616812304020 -1616812304054 ,112.5730131,26.89304224,62.319561,179.3048227,179.4206596,9.509111,0.085834397,1620000000000 ,1620000000000 ,1620000000000 ,1616812304030 -1616812304066 ,112.5730131,26.89304138,62.31850433,179.2938944,179.4660527,9.522586,0.085933628,1620000000000 ,1620000000000 ,1620000000000 ,1616812304050 -1616812304073 ,112.5730132,26.89304052,62.31741333,179.2842501,179.5001833,9.535051,0.086054382,1620000000000 ,1620000000000 ,1620000000000 ,1616812304050 -1616812304083 ,112.5730132,26.89303966,62.31639481,179.2797422,179.5064565,9.536423,0.086100206,1620000000000 ,1620000000000 ,1620000000000 ,1616812304060 -1616812304094 ,112.5730132,26.8930388,62.31572723,179.2728847,179.4780499,9.527723,0.086050066,1620000000000 ,1620000000000 ,1620000000000 ,1616812304080 -1616812304104 ,112.5730132,26.89303794,62.31562424,179.2653442,179.4958788,9.519699,0.085990549,1620000000000 ,1620000000000 ,1620000000000 ,1616812304080 -1616812304115 ,112.5730132,26.89303708,62.3159523,179.2571753,179.5562839,9.517165,0.085972383,1620000000000 ,1620000000000 ,1620000000000 ,1616812304100 -1616812304125 ,112.5730132,26.89303622,62.31649399,179.246848,179.6225919,9.519024,0.085982031,1620000000000 ,1620000000000 ,1620000000000 ,1616812304110 -1616812304136 ,112.5730132,26.89303449,62.31775284,179.2217676,179.6377303,9.5304985,0.17212922,1620000000000 ,1620000000000 ,1620000000000 ,1616812304120 -1616812304145 ,112.5730132,26.89303363,62.31850815,179.2115769,179.5957414,9.536429,0.086152123,1620000000000 ,1620000000000 ,1620000000000 ,1616812304130 -1616812304156 ,112.5730132,26.89303277,62.31941986,179.202725,179.5716536,9.536346,0.086175818,1620000000000 ,1620000000000 ,1620000000000 ,1616812304140 -1616812304164 ,112.5730132,26.89303191,62.32056808,179.1958948,179.5543773,9.533534,0.086166969,1620000000000 ,1620000000000 ,1620000000000 ,1616812304150 -1616812304174 ,112.5730132,26.89303105,62.32195282,179.1891193,179.5625653,9.5300255,0.08614871,1620000000000 ,1620000000000 ,1620000000000 ,1616812304160 -1616812304184 ,112.5730132,26.89303019,62.32342148,179.1829994,179.5196329,9.531178,0.086152742,1620000000000 ,1620000000000 ,1620000000000 ,1616812304170 -1616812304195 ,112.5730132,26.89302932,62.3248024,179.1788193,179.4687223,9.537165,0.086198674,1620000000000 ,1620000000000 ,1620000000000 ,1616812304180 -1616812304204 ,112.5730132,26.89302932,62.3248024,179.1788193,-400,9.537165,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812304180 -1616812304214 ,112.5730133,26.8930276,62.32685089,179.1846113,179.6119188,9.555412,0.17284903,1620000000000 ,1620000000000 ,1620000000000 ,1616812304200 -1616812304224 ,112.5730133,26.89302673,62.32718277,179.1837644,180.3502489,9.554155,0.087008307,1620000000000 ,1620000000000 ,1620000000000 ,1616812304210 -1616812304238 ,112.5730133,26.89302673,62.32718277,179.1837644,-400,9.554155,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812304220 -1616812304245 ,112.5730132,26.89302499,62.32767105,179.1908678,180.3066577,9.557735,0.174023048,1620000000000 ,1620000000000 ,1620000000000 ,1616812304230 -1616812304255 ,112.5730132,26.89302412,62.32770538,179.1940097,180.2763772,9.563404,0.087064463,1620000000000 ,1620000000000 ,1620000000000 ,1616812304240 -1616812304268 ,112.5730132,26.89302324,62.32757187,179.1948293,180.2630589,9.570555,0.087127009,1620000000000 ,1620000000000 ,1620000000000 ,1616812304250 -1616812304276 ,112.5730132,26.89302237,62.32732391,179.2000202,180.2471609,9.572649,0.087152607,1620000000000 ,1620000000000 ,1620000000000 ,1616812304260 -1616812304285 ,112.5730132,26.8930215,62.32701874,179.2063587,180.2356392,9.573745,0.08716796,1620000000000 ,1620000000000 ,1620000000000 ,1616812304270 -1616812304295 ,112.5730132,26.89302063,62.3266716,179.2101836,180.2221699,9.570963,0.087149522,1620000000000 ,1620000000000 ,1620000000000 ,1616812304280 -1616812304306 ,112.5730132,26.89301976,62.32622528,179.2178607,180.2051802,9.571543,0.087141064,1620000000000 ,1620000000000 ,1620000000000 ,1616812304290 -1616812304322 ,112.5730132,26.89301889,62.3256073,179.2256198,180.2026976,9.575281,0.087162321,1620000000000 ,1620000000000 ,1620000000000 ,1616812304300 -1616812304329 ,112.5730132,26.89301801,62.32478333,179.2338433,180.2131415,9.578747,0.087187871,1620000000000 ,1620000000000 ,1620000000000 ,1616812304310 -1616812304339 ,112.5730132,26.89301714,62.32378769,179.241056,180.2218228,9.580481,0.087200733,1620000000000 ,1620000000000 ,1620000000000 ,1616812304320 -1616812304348 ,112.5730132,26.89301627,62.32263565,179.2477223,180.2192562,9.582908,0.087211798,1620000000000 ,1620000000000 ,1620000000000 ,1616812304330 -1616812304360 ,112.5730132,26.8930154,62.32133102,179.2561371,180.2149467,9.588803,0.087248477,1620000000000 ,1620000000000 ,1620000000000 ,1616812304340 -1616812304369 ,112.5730132,26.89301453,62.31985855,179.2669561,180.211098,9.593378,0.08728748,1620000000000 ,1620000000000 ,1620000000000 ,1616812304350 -1616812304379 ,112.5730132,26.89301365,62.31822968,179.2775019,180.2234774,9.595465,0.087305655,1620000000000 ,1620000000000 ,1620000000000 ,1616812304360 -1616812304391 ,112.5730132,26.89301278,62.31645584,179.2884849,180.2367653,9.593313,0.087288845,1620000000000 ,1620000000000 ,1620000000000 ,1616812304370 -1616812304399 ,112.5730132,26.89301191,62.31454468,179.3013256,180.2411927,9.592502,0.087267791,1620000000000 ,1620000000000 ,1620000000000 ,1616812304380 -1616812304409 ,112.5730132,26.89301103,62.31248856,179.3161608,180.2649466,9.592784,0.08725979,1620000000000 ,1620000000000 ,1620000000000 ,1616812304390 -1616812304420 ,112.5730132,26.89301016,62.31028366,179.3306408,180.309255,9.59713,0.087280721,1620000000000 ,1620000000000 ,1620000000000 ,1616812304400 -1616812304430 ,112.5730132,26.89300929,62.3079834,179.344711,180.3360343,9.605,0.087337478,1620000000000 ,1620000000000 ,1620000000000 ,1616812304410 -1616812304440 ,112.5730132,26.89300841,62.30568695,179.3573058,180.3448049,9.613702,0.087414324,1620000000000 ,1620000000000 ,1620000000000 ,1616812304420 -1616812304453 ,112.5730132,26.89300754,62.30342484,179.3703925,180.3674448,9.622355,0.087496851,1620000000000 ,1620000000000 ,1620000000000 ,1616812304430 -1616812304462 ,112.5730132,26.89300666,62.30114746,179.3833425,180.3972011,9.628397,0.08755186,1620000000000 ,1620000000000 ,1620000000000 ,1616812304440 -1616812304472 ,112.5730132,26.89300579,62.2990799,179.3986421,180.0183156,9.631874,0.087265184,1620000000000 ,1620000000000 ,1620000000000 ,1616812304450 -1616812304481 ,112.5730132,26.89300492,62.29725647,179.4151712,179.6320698,9.633444,0.086961397,1620000000000 ,1620000000000 ,1620000000000 ,1616812304460 -1616812304493 ,112.5730132,26.89300405,62.29545212,179.4321647,179.63642,9.6349125,0.086975075,1620000000000 ,1620000000000 ,1620000000000 ,1616812304470 -1616812304503 ,112.5730132,26.89300318,62.29368973,179.4522181,179.648397,9.634619,0.086977272,1620000000000 ,1620000000000 ,1620000000000 ,1616812304480 -1616812304512 ,112.5730132,26.89300231,62.29198456,179.4737196,179.6754765,9.634481,0.08697817,1620000000000 ,1620000000000 ,1620000000000 ,1616812304490 -1616812304522 ,112.5730132,26.89300144,62.2903862,179.4930627,179.703843,9.635031,0.086985504,1620000000000 ,1620000000000 ,1620000000000 ,1616812304500 -1616812304533 ,112.5730132,26.89300057,62.2889328,179.5138538,179.7073935,9.636283,0.087001364,1620000000000 ,1620000000000 ,1620000000000 ,1616812304510 -1616812304543 ,112.5730132,26.8929997,62.28756332,179.5376228,179.7243651,9.640639,0.08703928,1620000000000 ,1620000000000 ,1620000000000 ,1616812304520 -1616812304554 ,112.5730132,26.89299883,62.28619385,179.5646977,179.7687798,9.641824,0.087059445,1620000000000 ,1620000000000 ,1620000000000 ,1616812304530 -1616812304562 ,112.5730132,26.89299796,62.28477859,179.5882755,179.813147,9.64545,0.087083695,1620000000000 ,1620000000000 ,1620000000000 ,1616812304540 -1616812304578 ,112.5730132,26.89299709,62.2834549,179.6107059,179.8653136,9.646627,0.087108869,1620000000000 ,1620000000000 ,1620000000000 ,1616812304550 -1616812304581 ,112.5730132,26.89299622,62.28225708,179.637808,179.9113358,9.650308,0.087140476,1620000000000 ,1620000000000 ,1620000000000 ,1616812304560 -1616812304592 ,112.5730132,26.89299535,62.28116226,179.6661397,179.9475233,9.651178,0.087168139,1620000000000 ,1620000000000 ,1620000000000 ,1616812304570 -1616812304601 ,112.5730132,26.89299447,62.28026962,179.6908923,180.0041294,9.643533,0.087132977,1620000000000 ,1620000000000 ,1620000000000 ,1616812304580 -1616812304613 ,112.5730132,26.8929936,62.27968979,179.7158908,180.0744817,9.63851,0.087095042,1620000000000 ,1620000000000 ,1620000000000 ,1616812304590 -1616812304621 ,112.5730132,26.89299273,62.27936935,179.7418728,180.1146529,9.63991,0.087108607,1620000000000 ,1620000000000 ,1620000000000 ,1616812304600 -1616812304631 ,112.5730132,26.89299186,62.27911758,179.765997,180.1706382,9.649973,0.087189232,1620000000000 ,1620000000000 ,1620000000000 ,1616812304610 -1616812304644 ,112.5730132,26.89299099,62.27884293,179.7884547,180.2609888,9.655236,0.087260266,1620000000000 ,1620000000000 ,1620000000000 ,1616812304620 -1616812304653 ,112.5730132,26.89299012,62.27857971,179.8045739,180.2960216,9.652932,0.087264598,1620000000000 ,1620000000000 ,1620000000000 ,1616812304630 -1616812304662 ,112.5730132,26.89298924,62.27855301,179.8190266,180.3163311,9.6419,0.087199077,1620000000000 ,1620000000000 ,1620000000000 ,1616812304640 -1616812304673 ,112.5730132,26.89298837,62.27885818,179.8388888,180.3288133,9.641438,0.087184338,1620000000000 ,1620000000000 ,1620000000000 ,1616812304650 -1616812304684 ,112.5730132,26.8929875,62.27941895,179.8595706,180.3426642,9.644276,0.087231169,1620000000000 ,1620000000000 ,1620000000000 ,1616812304660 -1616812304692 ,112.5730132,26.89298663,62.28020859,179.8837222,180.3407213,9.6427,0.087249683,1620000000000 ,1620000000000 ,1620000000000 ,1616812304670 -1616812304702 ,112.5730132,26.89298575,62.28125,179.905169,180.3581789,9.638882,0.087240875,1620000000000 ,1620000000000 ,1620000000000 ,1616812304680 -1616812304712 ,112.5730132,26.89298488,62.28240967,179.9312057,180.3610506,9.639269,0.087249707,1620000000000 ,1620000000000 ,1620000000000 ,1616812304690 -1616812304723 ,112.5730132,26.89298401,62.2833519,179.9559309,180.3373103,9.644671,0.087288564,1620000000000 ,1620000000000 ,1620000000000 ,1616812304700 -1616812304732 ,112.5730131,26.89298314,62.28385925,179.977569,180.3810035,9.651302,0.087326104,1620000000000 ,1620000000000 ,1620000000000 ,1616812304710 -1616812304742 ,112.5730131,26.89298226,62.28382492,179.9946171,180.4597754,9.657757,0.087357209,1620000000000 ,1620000000000 ,1620000000000 ,1616812304720 -1616812304752 ,112.5730131,26.89298139,62.28324127,180.0121844,180.4968717,9.66431,0.087388529,1620000000000 ,1620000000000 ,1620000000000 ,1616812304730 -1616812304762 ,112.5730131,26.89298051,62.28213882,180.0307625,180.4868424,9.671056,0.087417758,1620000000000 ,1620000000000 ,1620000000000 ,1616812304740 -1616812304773 ,112.5730131,26.89297964,62.28055573,180.0464446,180.4816298,9.676877,0.087443672,1620000000000 ,1620000000000 ,1620000000000 ,1616812304750 -1616812304784 ,112.5730131,26.89297877,62.27851868,180.0619901,180.5083754,9.682367,0.087467461,1620000000000 ,1620000000000 ,1620000000000 ,1616812304760 -1616812304793 ,112.5730131,26.89297789,62.27601242,180.0775903,180.5758648,9.685667,0.087469873,1620000000000 ,1620000000000 ,1620000000000 ,1616812304770 -1616812304803 ,112.5730131,26.89297702,62.2730751,180.0935183,180.6188467,9.690463,0.087477512,1620000000000 ,1620000000000 ,1620000000000 ,1616812304780 -1616812304814 ,112.5730131,26.89297614,62.26980972,180.1054301,180.6170425,9.699232,0.08752993,1620000000000 ,1620000000000 ,1620000000000 ,1616812304790 -1616812304825 ,112.5730131,26.89297527,62.26633835,180.1138449,180.6371856,9.700463,0.087547592,1620000000000 ,1620000000000 ,1620000000000 ,1616812304800 -1616812304838 ,112.5730131,26.89297439,62.26276398,180.117178,180.6820437,9.707843,0.087583816,1620000000000 ,1620000000000 ,1620000000000 ,1616812304810 -1616812304844 ,112.5730131,26.89297351,62.25906372,180.1243907,180.7696049,9.710219,0.087614309,1620000000000 ,1620000000000 ,1620000000000 ,1616812304830 -1616812304855 ,112.573013,26.89297264,62.25516891,180.1355103,180.8011863,9.71154,0.087614417,1620000000000 ,1620000000000 ,1620000000000 ,1616812304840 -1616812304864 ,112.573013,26.89297089,62.24720764,180.1576947,180.8078384,9.711303,0.175212739,1620000000000 ,1620000000000 ,1620000000000 ,1616812304850 -1616812304874 ,112.573013,26.89297089,62.24720764,180.1576947,-400,9.711303,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812304860 -1616812304884 ,112.573013,26.89297001,62.24332428,180.1658636,180.7789582,9.713166,0.08761675,1620000000000 ,1620000000000 ,1620000000000 ,1616812304860 -1616812304894 ,112.573013,26.89296913,62.23935318,180.1676668,180.8120771,9.719124,0.087655233,1620000000000 ,1620000000000 ,1620000000000 ,1616812304870 -1616812304909 ,112.573013,26.89296826,62.23527527,180.1696885,180.864512,9.724716,0.087701397,1620000000000 ,1620000000000 ,1620000000000 ,1616812304890 -1616812304915 ,112.5730129,26.8929665,62.22718048,180.1644156,180.8820098,9.73141,0.175496953,1620000000000 ,1620000000000 ,1620000000000 ,1616812304900 -1616812304925 ,112.5730129,26.8929665,62.22718048,180.1644156,-400,9.73141,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812304910 -1616812304935 ,112.5730129,26.89296475,62.21956253,180.1645522,180.7848714,9.731408,0.175560395,1620000000000 ,1620000000000 ,1620000000000 ,1616812304920 -1616812304944 ,112.5730129,26.89296387,62.21595383,180.1683225,180.7529958,9.730499,0.08777809,1620000000000 ,1620000000000 ,1620000000000 ,1616812304930 -1616812304955 ,112.5730129,26.89296299,62.21248245,180.1717922,180.7519283,9.731971,0.087791491,1620000000000 ,1620000000000 ,1620000000000 ,1616812304940 -1616812304965 ,112.5730129,26.89296211,62.20915985,180.1747702,180.7389706,9.734461,0.087814867,1620000000000 ,1620000000000 ,1620000000000 ,1616812304950 -1616812304977 ,112.5730129,26.89296123,62.20595169,180.181655,180.7246363,9.738062,0.087849748,1620000000000 ,1620000000000 ,1620000000000 ,1616812304960 -1616812304987 ,112.5730129,26.89296035,62.20287704,180.1850155,180.7136344,9.7436075,0.087899552,1620000000000 ,1620000000000 ,1620000000000 ,1616812304970 -1616812304996 ,112.5730129,26.89296035,62.20287704,180.1850155,-400,9.7436075,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812304980 -1616812305005 ,112.5730129,26.89295948,62.19997787,180.1857531,180.6882066,9.747631,0.087947779,1620000000000 ,1620000000000 ,1620000000000 ,1616812304980 -1616812305015 ,112.5730128,26.89295772,62.19497681,180.1872011,180.6672108,9.741506,0.175882466,1620000000000 ,1620000000000 ,1620000000000 ,1616812305000 -1616812305025 ,112.5730128,26.89295684,62.19293976,180.1858351,180.6403644,9.738963,0.087913448,1620000000000 ,1620000000000 ,1620000000000 ,1616812305010 -1616812305035 ,112.5730128,26.89295596,62.19114685,180.1849882,180.6567898,9.740482,0.087926378,1620000000000 ,1620000000000 ,1620000000000 ,1616812305020 -1616812305045 ,112.5730128,26.89295508,62.18954849,180.1849608,180.6582269,9.745587,0.087971667,1620000000000 ,1620000000000 ,1620000000000 ,1616812305030 -1616812305056 ,112.5730128,26.8929542,62.18814468,180.1826659,180.6518922,9.750657,0.088029353,1620000000000 ,1620000000000 ,1620000000000 ,1616812305040 -1616812305065 ,112.5730128,26.89295332,62.18698502,180.1798245,180.6609622,9.752719,0.088063805,1620000000000 ,1620000000000 ,1620000000000 ,1616812305050 -1616812305075 ,112.5730128,26.89295244,62.18605804,180.1772837,180.6742916,9.752065,0.088072175,1620000000000 ,1620000000000 ,1620000000000 ,1616812305060 -1616812305085 ,112.5730128,26.89295156,62.18532562,180.1740599,180.6886731,9.751835,0.088076789,1620000000000 ,1620000000000 ,1620000000000 ,1616812305070 -1616812305095 ,112.5730128,26.89295068,62.18476105,180.1711639,180.6912742,9.752295,0.088088157,1620000000000 ,1620000000000 ,1620000000000 ,1616812305080 -1616812305106 ,112.5730127,26.89294979,62.18437576,180.1699071,180.6848037,9.754069,0.088108685,1620000000000 ,1620000000000 ,1620000000000 ,1616812305090 -1616812305116 ,112.5730127,26.89294891,62.18416977,180.1669018,180.6682472,9.754425,0.088127318,1620000000000 ,1620000000000 ,1620000000000 ,1616812305100 -1616812305126 ,112.5730127,26.89294803,62.1841011,180.1634867,180.663843,9.755115,0.088135972,1620000000000 ,1620000000000 ,1620000000000 ,1616812305110 -1616812305138 ,112.5730127,26.89294715,62.18412781,180.1599077,180.6512946,9.757318,0.088161132,1620000000000 ,1620000000000 ,1620000000000 ,1616812305120 -1616812305147 ,112.5730127,26.89294627,62.18420792,180.1535966,180.6386299,9.759189,0.088181271,1620000000000 ,1620000000000 ,1620000000000 ,1616812305130 -1616812305156 ,112.5730127,26.89294539,62.18434143,180.1486242,180.6314877,9.7625885,0.088215271,1620000000000 ,1620000000000 ,1620000000000 ,1616812305140 -1616812305167 ,112.5730127,26.8929445,62.18452454,180.1437338,180.6188079,9.764522,0.088239984,1620000000000 ,1620000000000 ,1620000000000 ,1616812305150 -1616812305177 ,112.5730127,26.89294362,62.18479538,180.1404553,180.5968634,9.764854,0.088254407,1620000000000 ,1620000000000 ,1620000000000 ,1616812305160 -1616812305188 ,112.5730127,26.89294274,62.1851387,180.134554,180.5720021,9.76555,0.088267781,1620000000000 ,1620000000000 ,1620000000000 ,1616812305170 -1616812305202 ,112.5730127,26.89294186,62.18547821,180.1291445,180.5629025,9.7663765,0.088274609,1620000000000 ,1620000000000 ,1620000000000 ,1616812305180 -1616812305209 ,112.5730126,26.89294097,62.18572998,180.1248552,180.5599961,9.769179,0.088296685,1620000000000 ,1620000000000 ,1620000000000 ,1616812305190 -1616812305217 ,112.5730126,26.89294009,62.18529892,180.1093643,180.6340452,9.789904,0.088680446,1620000000000 ,1620000000000 ,1620000000000 ,1616812305200 -1616812305228 ,112.5730126,26.89293919,62.18391037,180.1046651,180.7421197,9.793803,0.089220361,1620000000000 ,1620000000000 ,1620000000000 ,1616812305210 -1616812305238 ,112.5730126,26.8929383,62.1824379,180.1027254,180.7345786,9.795985,0.089244377,1620000000000 ,1620000000000 ,1620000000000 ,1616812305220 -1616812305250 ,112.5730126,26.89293741,62.18093491,180.0982721,180.7154417,9.798448,0.089267782,1620000000000 ,1620000000000 ,1620000000000 ,1616812305230 -1616812305259 ,112.5730126,26.89293652,62.17936707,180.0952941,180.6961186,9.799522,0.089280577,1620000000000 ,1620000000000 ,1620000000000 ,1616812305240 -1616812305269 ,112.5730126,26.89293562,62.17765808,180.0902398,180.694091,9.80136,0.089288806,1620000000000 ,1620000000000 ,1620000000000 ,1616812305250 -1616812305279 ,112.5730126,26.89293473,62.17576218,180.0863056,180.7045632,9.804046,0.089306015,1620000000000 ,1620000000000 ,1620000000000 ,1616812305260 -1616812305288 ,112.5730126,26.89293384,62.17366791,180.0817977,180.7123963,9.807855,0.089329231,1620000000000 ,1620000000000 ,1620000000000 ,1616812305270 -1616812305298 ,112.5730126,26.89293294,62.17140579,180.0759237,180.7134829,9.811199,0.089355352,1620000000000 ,1620000000000 ,1620000000000 ,1616812305280 -1616812305310 ,112.5730125,26.89293205,62.16901016,180.0705962,180.710304,9.811989,0.089362042,1620000000000 ,1620000000000 ,1620000000000 ,1616812305290 -1616812305318 ,112.5730125,26.89293116,62.16656113,180.063602,180.7151832,9.814945,0.089381221,1620000000000 ,1620000000000 ,1620000000000 ,1616812305300 -1616812305328 ,112.5730125,26.89293026,62.1640892,180.0589575,180.6904992,9.818584,0.089415281,1620000000000 ,1620000000000 ,1620000000000 ,1616812305310 -1616812305338 ,112.5730125,26.89292937,62.16151428,180.0536573,180.673798,9.820626,0.08942899,1620000000000 ,1620000000000 ,1620000000000 ,1616812305320 -1616812305349 ,112.5730125,26.89292847,62.15878677,180.0508979,180.7096915,9.823145,0.089446856,1620000000000 ,1620000000000 ,1620000000000 ,1616812305330 -1616812305359 ,112.5730125,26.89292758,62.1558609,180.0483024,180.7312221,9.825632,0.089459361,1620000000000 ,1620000000000 ,1620000000000 ,1616812305340 -1616812305368 ,112.5730125,26.89292669,62.15278625,180.0440677,180.731617,9.828981,0.089477297,1620000000000 ,1620000000000 ,1620000000000 ,1616812305350 -1616812305379 ,112.5730125,26.89292579,62.14962769,180.0401062,180.7211323,9.831696,0.089501005,1620000000000 ,1620000000000 ,1620000000000 ,1616812305360 -1616812305388 ,112.5730125,26.8929249,62.14639282,180.0351065,180.7160755,9.834112,0.08952001,1620000000000 ,1620000000000 ,1620000000000 ,1616812305370 -1616812305398 ,112.5730124,26.892924,62.14312363,180.0304346,180.7192945,9.83666,0.089539158,1620000000000 ,1620000000000 ,1620000000000 ,1616812305380 -1616812305409 ,112.5730124,26.8929231,62.1397934,180.0246153,180.7167679,9.838313,0.089551568,1620000000000 ,1620000000000 ,1620000000000 ,1616812305390 -1616812305420 ,112.5730124,26.89292221,62.13640594,180.0190419,180.7117569,9.841803,0.089577299,1620000000000 ,1620000000000 ,1620000000000 ,1616812305400 -1616812305430 ,112.5730124,26.89292131,62.13297272,180.0119112,180.701428,9.844642,0.089600464,1620000000000 ,1620000000000 ,1620000000000 ,1616812305410 -1616812305438 ,112.5730124,26.89292042,62.1294632,180.0064743,180.6948942,9.847648,0.089620329,1620000000000 ,1620000000000 ,1620000000000 ,1616812305420 -1616812305449 ,112.5730124,26.89291952,62.12586594,180.0033598,180.6963285,9.849301,0.089635338,1620000000000 ,1620000000000 ,1620000000000 ,1616812305430 -1616812305459 ,112.5730124,26.89291862,62.12217331,180.0003545,180.7074019,9.850667,0.089642882,1620000000000 ,1620000000000 ,1620000000000 ,1616812305440 -1616812305469 ,112.5730124,26.89291773,62.11899567,179.9968574,180.6340131,9.852688,0.089295851,1620000000000 ,1620000000000 ,1620000000000 ,1616812305450 -1616812305479 ,112.5730124,26.89291684,62.11634064,179.993497,180.5437212,9.8547945,0.088949188,1620000000000 ,1620000000000 ,1620000000000 ,1616812305460 -1616812305489 ,112.5730123,26.89291595,62.11365891,179.9893715,180.5442964,9.858481,0.088977998,1620000000000 ,1620000000000 ,1620000000000 ,1616812305470 -1616812305499 ,112.5730123,26.89291506,62.1109314,179.987022,180.5495729,9.860795,0.088999951,1620000000000 ,1620000000000 ,1620000000000 ,1616812305480 -1616812305509 ,112.5730123,26.89291417,62.10817719,179.9828692,180.5577648,9.861509,0.089005659,1620000000000 ,1620000000000 ,1620000000000 ,1616812305490 -1616812305521 ,112.5730123,26.89291328,62.10541153,179.9765035,180.5479492,9.863676,0.089022502,1620000000000 ,1620000000000 ,1620000000000 ,1616812305500 -1616812305531 ,112.5730123,26.89291239,62.10263062,179.9734982,180.559566,9.866334,0.089040596,1620000000000 ,1620000000000 ,1620000000000 ,1616812305510 -1616812305545 ,112.5730123,26.8929115,62.09985352,179.9718863,180.5607906,9.867983,0.089059027,1620000000000 ,1620000000000 ,1620000000000 ,1616812305520 -1616812305550 ,112.5730123,26.89291061,62.09711838,179.9697552,180.5418475,9.869132,0.089073732,1620000000000 ,1620000000000 ,1620000000000 ,1616812305530 -1616812305560 ,112.5730123,26.89290972,62.09452438,179.9679521,180.5301657,9.86819,0.089074509,1620000000000 ,1620000000000 ,1620000000000 ,1616812305540 -1616812305571 ,112.5730123,26.89290883,62.09208298,179.966668,180.5344148,9.8671,0.089068835,1620000000000 ,1620000000000 ,1620000000000 ,1616812305550 -1616812305580 ,112.5730123,26.89290794,62.08974838,179.9632529,180.5391473,9.86794,0.089076873,1620000000000 ,1620000000000 ,1620000000000 ,1616812305560 -1616812305591 ,112.5730123,26.89290705,62.08747101,179.9619415,180.5396314,9.871259,0.089101075,1620000000000 ,1620000000000 ,1620000000000 ,1616812305570 -1616812305601 ,112.5730123,26.89290616,62.08522034,179.9620235,180.5360043,9.874589,0.089134805,1620000000000 ,1620000000000 ,1620000000000 ,1616812305580 -1616812305611 ,112.5730122,26.89290526,62.08301544,179.9621601,180.5056955,9.877101,0.089159168,1620000000000 ,1620000000000 ,1620000000000 ,1616812305590 -1616812305621 ,112.5730122,26.89290437,62.08089828,179.9633895,180.4820122,9.878361,0.089176205,1620000000000 ,1620000000000 ,1620000000000 ,1616812305600 -1616812305635 ,112.5730122,26.89290348,62.07891083,179.9656298,180.4721572,9.878203,0.089182784,1620000000000 ,1620000000000 ,1620000000000 ,1616812305610 -1616812305647 ,112.5730122,26.89290259,62.07706833,179.968799,180.4697185,9.87745,0.089184513,1620000000000 ,1620000000000 ,1620000000000 ,1616812305620 -1616812305652 ,112.5730122,26.8929017,62.07538223,179.9722141,180.4607025,9.876537,0.089181203,1620000000000 ,1620000000000 ,1620000000000 ,1616812305630 -1616812305662 ,112.5730122,26.89290081,62.07383347,179.9764215,180.4500493,9.87836,0.089194958,1620000000000 ,1620000000000 ,1620000000000 ,1616812305640 -1616812305672 ,112.5730122,26.89289991,62.07234573,179.9814485,180.4353401,9.880876,0.089221499,1620000000000 ,1620000000000 ,1620000000000 ,1616812305650 -1616812305682 ,112.5730122,26.89289902,62.070858,179.9865575,180.4431595,9.885936,0.089258216,1620000000000 ,1620000000000 ,1620000000000 ,1616812305660 -1616812305693 ,112.5730122,26.89289813,62.06933594,179.9920763,180.4606331,9.890304,0.089298921,1620000000000 ,1620000000000 ,1620000000000 ,1616812305670 -1616812305702 ,112.5730122,26.89289723,62.06778336,179.9967755,180.4785245,9.892778,0.089325038,1620000000000 ,1620000000000 ,1620000000000 ,1616812305680 -1616812305713 ,112.5730122,26.89289634,62.06626892,180.0012561,180.4904491,9.893473,0.089337227,1620000000000 ,1620000000000 ,1620000000000 ,1616812305690 -1616812305722 ,112.5730122,26.89289545,62.06484222,180.0048897,180.4949697,9.891984,0.089331503,1620000000000 ,1620000000000 ,1620000000000 ,1616812305700 -1616812305732 ,112.5730122,26.89289455,62.06351089,180.0088512,180.5187071,9.892003,0.089329888,1620000000000 ,1620000000000 ,1620000000000 ,1616812305710 -1616812305744 ,112.5730121,26.89289366,62.06219864,180.0149711,180.5459846,9.894486,0.089348487,1620000000000 ,1620000000000 ,1620000000000 ,1616812305720 -1616812305752 ,112.5730121,26.89289277,62.06085587,180.0207085,180.5723576,9.8967705,0.089368961,1620000000000 ,1620000000000 ,1620000000000 ,1616812305730 -1616812305762 ,112.5730121,26.89289187,62.05952072,180.0244787,180.5840445,9.899535,0.089393521,1620000000000 ,1620000000000 ,1620000000000 ,1616812305740 -1616812305772 ,112.5730121,26.89289098,62.05822754,180.0275386,180.5883886,9.902263,0.089419105,1620000000000 ,1620000000000 ,1620000000000 ,1616812305750 -1616812305782 ,112.5730121,26.89289008,62.05696487,180.0295604,180.6051562,9.905355,0.089446761,1620000000000 ,1620000000000 ,1620000000000 ,1616812305760 -1616812305793 ,112.5730121,26.89288919,62.05569839,180.0345328,180.6253414,9.908147,0.089476275,1620000000000 ,1620000000000 ,1620000000000 ,1616812305770 -1616812305804 ,112.5730121,26.8928883,62.05444336,180.0374014,180.6406386,9.908525,0.089483615,1620000000000 ,1620000000000 ,1620000000000 ,1616812305780 -1616812305814 ,112.5730121,26.8928874,62.0532608,180.039751,180.6379083,9.909918,0.089497319,1620000000000 ,1620000000000 ,1620000000000 ,1616812305800 -1616812305824 ,112.5730121,26.89288651,62.05213547,180.0423465,180.6284718,9.910282,0.089502469,1620000000000 ,1620000000000 ,1620000000000 ,1616812305800 -1616812305833 ,112.5730121,26.89288561,62.05101013,180.0451878,180.6277036,9.9132805,0.089525616,1620000000000 ,1620000000000 ,1620000000000 ,1616812305820 -1616812305847 ,112.573012,26.89288382,62.04869461,180.0503515,180.645551,9.9172125,0.179111037,1620000000000 ,1620000000000 ,1620000000000 ,1616812305830 -1616812305854 ,112.573012,26.89288382,62.04869461,180.0503515,-400,9.9172125,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812305840 -1616812305864 ,112.573012,26.89288203,62.04651642,180.0554058,180.6409675,9.920066,0.179172276,1620000000000 ,1620000000000 ,1620000000000 ,1616812305850 -1616812305874 ,112.573012,26.89288113,62.04548645,180.0596405,180.6399024,9.922113,0.089613157,1620000000000 ,1620000000000 ,1620000000000 ,1616812305860 -1616812305884 ,112.573012,26.89288024,62.04447556,180.060788,180.6444764,9.923963,0.089630984,1620000000000 ,1620000000000 ,1620000000000 ,1616812305870 -1616812305894 ,112.573012,26.89288024,62.04447556,180.060788,-400,9.923963,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812305880 -1616812305905 ,112.573012,26.89287934,62.04348755,180.0620174,180.6479355,9.9250345,0.089645861,1620000000000 ,1620000000000 ,1620000000000 ,1616812305890 -1616812305916 ,112.573012,26.89287755,62.0415535,180.0651593,180.6304286,9.928081,0.179323096,1620000000000 ,1620000000000 ,1620000000000 ,1616812305900 -1616812305926 ,112.573012,26.89287665,62.04057312,180.0674543,180.6269576,9.929932,0.089689923,1620000000000 ,1620000000000 ,1620000000000 ,1616812305910 -1616812305935 ,112.573012,26.89287575,62.03952789,180.0693121,180.6332393,9.933068,0.089710991,1620000000000 ,1620000000000 ,1620000000000 ,1616812305920 -1616812305945 ,112.5730119,26.89287485,62.03839874,180.0734922,180.6411469,9.936027,0.089736768,1620000000000 ,1620000000000 ,1620000000000 ,1616812305930 -1616812305955 ,112.5730119,26.89287396,62.0371933,180.0754592,180.6322993,9.93799,0.089751254,1620000000000 ,1620000000000 ,1620000000000 ,1616812305940 -1616812305966 ,112.5730119,26.89287306,62.03595352,180.0778088,180.6208818,9.941303,0.089778235,1620000000000 ,1620000000000 ,1620000000000 ,1616812305950 -1616812305975 ,112.5730119,26.89287216,62.03465271,180.0821802,180.6191423,9.944734,0.089805566,1620000000000 ,1620000000000 ,1620000000000 ,1616812305960 -1616812305984 ,112.5730119,26.89287126,62.03326035,180.0846663,180.628276,9.948643,0.089835836,1620000000000 ,1620000000000 ,1620000000000 ,1616812305970 -1616812305995 ,112.5730119,26.89287036,62.03178024,180.0865242,180.637177,9.951033,0.089858296,1620000000000 ,1620000000000 ,1620000000000 ,1616812305980 -1616812306006 ,112.5730119,26.89287036,62.03178024,180.0865242,-400,9.951033,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812305980 -1616812306015 ,112.5730119,26.89286857,62.02885437,180.0915239,180.6430841,9.955959,0.179776301,1620000000000 ,1620000000000 ,1620000000000 ,1616812306000 -1616812306035 ,112.5730119,26.89286767,62.02745819,180.0939281,180.6320135,9.957356,0.089921061,1620000000000 ,1620000000000 ,1620000000000 ,1616812306010 -1616812306041 ,112.5730119,26.89286677,62.02609253,180.0960864,180.631575,9.959388,0.089939265,1620000000000 ,1620000000000 ,1620000000000 ,1616812306020 -1616812306046 ,112.5730118,26.89286587,62.02473068,180.0981082,180.634932,9.962027,0.089961846,1620000000000 ,1620000000000 ,1620000000000 ,1616812306030 -1616812306058 ,112.5730118,26.89286497,62.02334213,180.1003211,180.6320638,9.966295,0.089994417,1620000000000 ,1620000000000 ,1620000000000 ,1616812306040 -1616812306067 ,112.5730118,26.89286407,62.02191925,180.1017418,180.6362269,9.97196,0.090041367,1620000000000 ,1620000000000 ,1620000000000 ,1616812306050 -1616812306077 ,112.5730118,26.89286317,62.02045059,180.1048837,180.6330179,9.974217,0.090071406,1620000000000 ,1620000000000 ,1620000000000 ,1616812306060 -1616812306088 ,112.5730118,26.89286227,62.0189476,180.1076704,180.6336518,9.975797,0.090082678,1620000000000 ,1620000000000 ,1620000000000 ,1616812306070 -1616812306096 ,112.5730118,26.89286137,62.01742554,180.1096375,180.6379844,9.976905,0.090092107,1620000000000 ,1620000000000 ,1620000000000 ,1616812306080 -1616812306108 ,112.5730118,26.89286047,62.01591492,180.11155,180.6368177,9.978419,0.090105129,1620000000000 ,1620000000000 ,1620000000000 ,1616812306090 -1616812306128 ,112.5730118,26.89285956,62.01443481,180.1120417,180.6373218,9.981263,0.090130328,1620000000000 ,1620000000000 ,1620000000000 ,1616812306100 -1616812306134 ,112.5730118,26.89285866,62.01298141,180.1155661,180.6370226,9.983656,0.090153996,1620000000000 ,1620000000000 ,1620000000000 ,1616812306110 -1616812306138 ,112.5730118,26.89285776,62.01155853,180.1168775,180.6426613,9.985959,0.090176162,1620000000000 ,1620000000000 ,1620000000000 ,1616812306120 -1616812306147 ,112.5730117,26.89285686,62.01015854,180.1167409,180.6468714,9.98845,0.090199021,1620000000000 ,1620000000000 ,1620000000000 ,1616812306130 -1616812306156 ,112.5730117,26.89285596,62.00875854,180.1162491,180.647137,9.9900055,0.090216355,1620000000000 ,1620000000000 ,1620000000000 ,1616812306140 -1616812306168 ,112.5730117,26.89285505,62.00735474,180.1179977,180.6518905,9.9907465,0.090224898,1620000000000 ,1620000000000 ,1620000000000 ,1616812306150 -1616812306179 ,112.5730117,26.89285415,62.00595474,180.1162491,180.6544347,9.992338,0.090236458,1620000000000 ,1620000000000 ,1620000000000 ,1616812306160 -1616812306189 ,112.5730117,26.89285325,62.00457382,180.1161125,180.6579538,9.993783,0.090254304,1620000000000 ,1620000000000 ,1620000000000 ,1616812306170 -1616812306198 ,112.5730117,26.89285235,62.00320053,180.1155934,180.6653593,9.995829,0.090267742,1620000000000 ,1620000000000 ,1620000000000 ,1616812306180 -1616812306209 ,112.5730117,26.89285144,62.00180435,180.1155661,180.6709067,9.998734,0.090294609,1620000000000 ,1620000000000 ,1620000000000 ,1616812306190 -1616812306219 ,112.5730117,26.89285054,62.00086975,180.1102932,180.5158876,10.024081,0.090764461,1620000000000 ,1620000000000 ,1620000000000 ,1616812306200 -1616812306229 ,112.5730117,26.89284962,62.00070572,180.1083534,180.2250719,10.026879,0.091464963,1620000000000 ,1620000000000 ,1620000000000 ,1616812306210 -1616812306238 ,112.5730117,26.89284871,62.00053787,180.1042553,180.2301291,10.027723,0.091477357,1620000000000 ,1620000000000 ,1620000000000 ,1616812306220 -1616812306249 ,112.5730117,26.89284779,62.00039673,180.1011134,180.2375525,10.029603,0.091495177,1620000000000 ,1620000000000 ,1620000000000 ,1616812306230 -1616812306260 ,112.5730117,26.89284688,62.00029373,180.1004577,180.2326514,10.031095,0.091511733,1620000000000 ,1620000000000 ,1620000000000 ,1616812306240 -1616812306270 ,112.5730117,26.89284596,62.00022888,180.0997474,180.2305803,10.031814,0.091521527,1620000000000 ,1620000000000 ,1620000000000 ,1616812306250 -1616812306280 ,112.5730117,26.89284505,62.00018692,180.0988731,180.2251365,10.033089,0.091533452,1620000000000 ,1620000000000 ,1620000000000 ,1616812306260 -1616812306289 ,112.5730116,26.89284413,62.00015259,180.0969607,180.2243564,10.034083,0.091545767,1620000000000 ,1620000000000 ,1620000000000 ,1616812306270 -1616812306299 ,112.5730116,26.89284322,62.00009918,180.094857,180.2295915,10.036004,0.091558918,1620000000000 ,1620000000000 ,1620000000000 ,1616812306280 -1616812306309 ,112.5730116,26.8928423,62.00001144,180.0936002,180.2383049,10.037559,0.091574276,1620000000000 ,1620000000000 ,1620000000000 ,1616812306290 -1616812306321 ,112.5730116,26.89284138,61.99993134,180.0897207,180.2347086,10.038459,0.091584223,1620000000000 ,1620000000000 ,1620000000000 ,1616812306300 -1616812306329 ,112.5730116,26.89284047,61.99985504,180.0886552,180.2237389,10.039894,0.091596487,1620000000000 ,1620000000000 ,1620000000000 ,1616812306310 -1616812306339 ,112.5730116,26.89283955,61.99975204,180.0851308,180.2359711,10.04157,0.091609045,1620000000000 ,1620000000000 ,1620000000000 ,1616812306320 -1616812306350 ,112.5730116,26.89283864,61.99959946,180.0812239,180.2354216,10.043483,0.091626399,1620000000000 ,1620000000000 ,1620000000000 ,1616812306330 -1616812306360 ,112.5730116,26.89283772,61.99941635,180.0761696,180.2395682,10.045064,0.091638919,1620000000000 ,1620000000000 ,1620000000000 ,1616812306340 -1616812306370 ,112.5730116,26.8928368,61.99928665,180.0726999,180.2402844,10.045909,0.09165144,1620000000000 ,1620000000000 ,1620000000000 ,1616812306350 -1616812306383 ,112.5730116,26.89283589,61.99917603,180.0709786,180.2358412,10.045907,0.091655018,1620000000000 ,1620000000000 ,1620000000000 ,1616812306360 -1616812306391 ,112.5730116,26.89283497,61.99904251,180.0699405,180.2340322,10.047217,0.091664875,1620000000000 ,1620000000000 ,1620000000000 ,1616812306370 -1616812306404 ,112.5730116,26.89283405,61.99885559,180.0676455,180.219122,10.047524,0.091666239,1620000000000 ,1620000000000 ,1620000000000 ,1616812306380 -1616812306410 ,112.5730116,26.89283314,61.99861145,180.0659243,180.2162214,10.050429,0.091681494,1620000000000 ,1620000000000 ,1620000000000 ,1616812306390 -1616812306424 ,112.5730116,26.89283222,61.9982872,180.0649134,180.2131482,10.053338,0.091707623,1620000000000 ,1620000000000 ,1620000000000 ,1616812306400 -1616812306433 ,112.5730116,26.8928313,61.99788284,180.0664161,180.2171015,10.055493,0.091723905,1620000000000 ,1620000000000 ,1620000000000 ,1616812306410 -1616812306442 ,112.5730116,26.89283038,61.9974823,180.0653232,180.2235224,10.055949,0.091732184,1620000000000 ,1620000000000 ,1620000000000 ,1616812306420 -1616812306450 ,112.5730116,26.89282947,61.99712372,180.0642577,180.2226717,10.056776,0.091738914,1620000000000 ,1620000000000 ,1620000000000 ,1616812306430 -1616812306462 ,112.5730116,26.89282855,61.99674988,180.0645309,180.2162402,10.0588,0.091754874,1620000000000 ,1620000000000 ,1620000000000 ,1616812306440 -1616812306472 ,112.5730116,26.89282764,61.99580765,180.0641211,180.3767419,10.061393,0.091319748,1620000000000 ,1620000000000 ,1620000000000 ,1616812306450 -1616812306481 ,112.5730116,26.89282673,61.9942894,180.0638479,180.5532905,10.063871,0.090884736,1620000000000 ,1620000000000 ,1620000000000 ,1616812306460 -1616812306493 ,112.5730116,26.89282582,61.99274826,180.0643124,180.5528361,10.064746,0.090896988,1620000000000 ,1620000000000 ,1620000000000 ,1616812306470 -1616812306503 ,112.5730116,26.89282491,61.99124146,180.0664434,180.5456508,10.065921,0.090907749,1620000000000 ,1620000000000 ,1620000000000 ,1616812306480 -1616812306514 ,112.5730115,26.892824,61.98976898,180.0668259,180.5490279,10.06855,0.090928612,1620000000000 ,1620000000000 ,1620000000000 ,1616812306490 -1616812306522 ,112.5730115,26.89282309,61.98826981,180.0689569,180.5515685,10.070672,0.090946311,1620000000000 ,1620000000000 ,1620000000000 ,1616812306500 -1616812306531 ,112.5730115,26.89282218,61.98671341,180.0699131,180.5575493,10.073321,0.090966162,1620000000000 ,1620000000000 ,1620000000000 ,1616812306510 -1616812306548 ,112.5730115,26.89282127,61.9851265,180.0697219,180.5611503,10.075282,0.090985029,1620000000000 ,1620000000000 ,1620000000000 ,1616812306520 -1616812306554 ,112.5730115,26.89282036,61.98356628,180.070924,180.5575902,10.076839,0.091000088,1620000000000 ,1620000000000 ,1620000000000 ,1616812306530 -1616812306562 ,112.5730115,26.89281945,61.98206711,180.0715251,180.5624107,10.077005,0.091007861,1620000000000 ,1620000000000 ,1620000000000 ,1616812306540 -1616812306573 ,112.5730115,26.89281854,61.98062134,180.0726452,180.5687115,10.077511,0.091013405,1620000000000 ,1620000000000 ,1620000000000 ,1616812306550 -1616812306582 ,112.5730115,26.89281763,61.97922134,180.0734375,180.5660613,10.077786,0.091018482,1620000000000 ,1620000000000 ,1620000000000 ,1616812306560 -1616812306594 ,112.5730115,26.89281672,61.97785187,180.0738473,180.5622467,10.080426,0.091038305,1620000000000 ,1620000000000 ,1620000000000 ,1616812306570 -1616812306604 ,112.5730115,26.89281581,61.97646713,180.0752134,180.5621717,10.083534,0.091063052,1620000000000 ,1620000000000 ,1620000000000 ,1616812306580 -1616812306612 ,112.5730115,26.8928149,61.97505188,180.078847,180.5718901,10.086437,0.091090307,1620000000000 ,1620000000000 ,1620000000000 ,1616812306590 -1616812306624 ,112.5730114,26.89281399,61.97363281,180.0816064,180.5786809,10.088956,0.091113141,1620000000000 ,1620000000000 ,1620000000000 ,1616812306600 -1616812306633 ,112.5730114,26.89281308,61.97226715,180.0853494,180.5653632,10.089998,0.091127981,1620000000000 ,1620000000000 ,1620000000000 ,1616812306610 -1616812306644 ,112.5730114,26.89281217,61.97092819,180.0872072,180.5455183,10.091785,0.091141332,1620000000000 ,1620000000000 ,1620000000000 ,1616812306620 -1616812306653 ,112.5730114,26.89281125,61.96960068,180.0930538,180.5514443,10.093481,0.091159179,1620000000000 ,1620000000000 ,1620000000000 ,1616812306630 -1616812306663 ,112.5730114,26.89281034,61.96826553,180.0963596,180.5687472,10.094918,0.091173473,1620000000000 ,1620000000000 ,1620000000000 ,1616812306640 -1616812306675 ,112.5730114,26.89280943,61.96695328,180.1000479,180.5740553,10.097557,0.091195243,1620000000000 ,1620000000000 ,1620000000000 ,1616812306650 -1616812306683 ,112.5730114,26.89280852,61.96569824,180.1021516,180.5706606,10.099179,0.091215084,1620000000000 ,1620000000000 ,1620000000000 ,1616812306660 -1616812306693 ,112.5730114,26.89280761,61.96449661,180.1063044,180.5715133,10.102182,0.091240974,1620000000000 ,1620000000000 ,1620000000000 ,1616812306670 -1616812306702 ,112.5730114,26.89280669,61.96328354,180.1090638,180.5818798,10.105111,0.091267699,1620000000000 ,1620000000000 ,1620000000000 ,1616812306680 -1616812306716 ,112.5730114,26.89280578,61.9620285,180.1124789,180.6044407,10.108243,0.091294159,1620000000000 ,1620000000000 ,1620000000000 ,1616812306700 -1616812306726 ,112.5730114,26.89280487,61.96076965,180.1155115,180.6142887,10.109264,0.091309888,1620000000000 ,1620000000000 ,1620000000000 ,1616812306710 -1616812306734 ,112.5730113,26.89280304,61.95840073,180.1185714,180.6044002,10.111192,0.182646613,1620000000000 ,1620000000000 ,1620000000000 ,1616812306720 -1616812306743 ,112.5730113,26.89280213,61.95722198,180.1192544,180.6014308,10.113821,0.091348665,1620000000000 ,1620000000000 ,1620000000000 ,1616812306730 -1616812306754 ,112.5730113,26.89280121,61.95600128,180.1204565,180.6115198,10.118392,0.09138404,1620000000000 ,1620000000000 ,1620000000000 ,1616812306740 -1616812306764 ,112.5730113,26.8928003,61.95477295,180.1214947,180.6071427,10.120903,0.091409698,1620000000000 ,1620000000000 ,1620000000000 ,1616812306750 -1616812306774 ,112.5730113,26.8928003,61.95477295,180.1214947,-400,10.120903,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812306760 -1616812306784 ,112.5730113,26.89279847,61.95235825,180.1241175,180.5879423,10.125292,0.182884458,1620000000000 ,1620000000000 ,1620000000000 ,1616812306770 -1616812306794 ,112.5730113,26.89279756,61.95113754,180.1290079,180.5848442,10.126814,0.091466551,1620000000000 ,1620000000000 ,1620000000000 ,1616812306780 -1616812306806 ,112.5730113,26.89279756,61.95113754,180.1290079,-400,10.126814,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812306790 -1616812306819 ,112.5730113,26.89279573,61.94859695,180.1367124,180.5647133,10.131651,0.182982173,1620000000000 ,1620000000000 ,1620000000000 ,1616812306800 -1616812306826 ,112.5730113,26.89279481,61.94727707,180.1421219,180.5539123,10.134724,0.09152711,1620000000000 ,1620000000000 ,1620000000000 ,1616812306810 -1616812306836 ,112.5730112,26.8927939,61.94595337,180.1473128,180.5503653,10.136597,0.091547098,1620000000000 ,1620000000000 ,1620000000000 ,1616812306820 -1616812306844 ,112.5730112,26.89279298,61.94464111,180.1530502,180.5455502,10.138957,0.091564938,1620000000000 ,1620000000000 ,1620000000000 ,1616812306830 -1616812306855 ,112.5730112,26.89279206,61.94335556,180.1592793,180.5401343,10.140539,0.091584128,1620000000000 ,1620000000000 ,1620000000000 ,1616812306840 -1616812306865 ,112.5730112,26.89279115,61.94207382,180.1661642,180.5312253,10.142564,0.091598152,1620000000000 ,1620000000000 ,1620000000000 ,1616812306850 -1616812306875 ,112.5730112,26.89279023,61.94078827,180.1722294,180.5292261,10.145173,0.091621532,1620000000000 ,1620000000000 ,1620000000000 ,1616812306860 -1616812306885 ,112.5730112,26.89278932,61.93946457,180.1829937,180.5323801,10.148253,0.09164585,1620000000000 ,1620000000000 ,1620000000000 ,1616812306870 -1616812306896 ,112.5730112,26.8927884,61.93809891,180.193321,180.5444717,10.151496,0.091673179,1620000000000 ,1620000000000 ,1620000000000 ,1616812306880 -1616812306905 ,112.5730112,26.89278748,61.93671036,180.2037302,180.5445619,10.154281,0.091697928,1620000000000 ,1620000000000 ,1620000000000 ,1616812306890 -1616812306915 ,112.5730112,26.89278657,61.93531036,180.2146585,180.5451477,10.157163,0.091721412,1620000000000 ,1620000000000 ,1620000000000 ,1616812306900 -1616812306927 ,112.5730112,26.89278565,61.93389511,180.2283462,180.5563854,10.158819,0.091739029,1620000000000 ,1620000000000 ,1620000000000 ,1616812306910 -1616812306935 ,112.5730112,26.89278473,61.9324646,180.2415148,180.5725678,10.160285,0.091752698,1620000000000 ,1620000000000 ,1620000000000 ,1616812306920 -1616812306945 ,112.5730111,26.89278381,61.93104935,180.25482,180.5855847,10.161084,0.091759832,1620000000000 ,1620000000000 ,1620000000000 ,1616812306930 -1616812306956 ,112.5730111,26.8927829,61.92970276,180.2671963,180.5879862,10.161732,0.09176879,1620000000000 ,1620000000000 ,1620000000000 ,1616812306940 -1616812306965 ,112.5730111,26.89278198,61.92840195,180.280119,180.5768307,10.164985,0.091793982,1620000000000 ,1620000000000 ,1620000000000 ,1616812306950 -1616812306975 ,112.5730111,26.89278106,61.92708588,180.2934242,180.5758585,10.167384,0.091818861,1620000000000 ,1620000000000 ,1620000000000 ,1616812306960 -1616812306987 ,112.5730111,26.89278014,61.92575455,180.3075764,180.589284,10.169916,0.091838204,1620000000000 ,1620000000000 ,1620000000000 ,1616812306970 -1616812307002 ,112.5730111,26.89277922,61.92446899,180.3206357,180.5935249,10.170473,0.091850812,1620000000000 ,1620000000000 ,1620000000000 ,1616812306980 -1616812307008 ,112.5730111,26.8927783,61.9233017,180.3358261,180.5884974,10.171305,0.091860932,1620000000000 ,1620000000000 ,1620000000000 ,1616812306990 -1616812307017 ,112.5730111,26.89277739,61.92222214,180.3522732,180.5922502,10.17263,0.09187691,1620000000000 ,1620000000000 ,1620000000000 ,1616812307000 -1616812307026 ,112.5730111,26.89277647,61.92118073,180.37066,180.6097854,10.174302,0.09189552,1620000000000 ,1620000000000 ,1620000000000 ,1616812307010 -1616812307044 ,112.5730111,26.89277555,61.92012405,180.3870798,180.612155,10.176087,0.091907587,1620000000000 ,1620000000000 ,1620000000000 ,1616812307020 -1616812307047 ,112.5730111,26.89277463,61.91905594,180.4024887,180.6156865,10.178001,0.091927415,1620000000000 ,1620000000000 ,1620000000000 ,1616812307030 -1616812307057 ,112.573011,26.89277371,61.91797638,180.4195642,180.6363005,10.179013,0.091935959,1620000000000 ,1620000000000 ,1620000000000 ,1616812307040 -1616812307073 ,112.573011,26.89277279,61.91688919,180.4353556,180.6670481,10.180803,0.091950651,1620000000000 ,1620000000000 ,1620000000000 ,1616812307050 -1616812307077 ,112.573011,26.89277187,61.91585922,180.4512563,180.6950271,10.181731,0.091965099,1620000000000 ,1620000000000 ,1620000000000 ,1616812307060 -1616812307088 ,112.573011,26.89277095,61.91489792,180.4675667,180.6966215,10.1839485,0.091983247,1620000000000 ,1620000000000 ,1620000000000 ,1616812307070 -1616812307098 ,112.573011,26.89277003,61.91397858,180.4845603,180.6990329,10.186679,0.092010396,1620000000000 ,1620000000000 ,1620000000000 ,1616812307080 -1616812307108 ,112.573011,26.89276911,61.91302109,180.5017723,180.7212874,10.1900625,0.092040586,1620000000000 ,1620000000000 ,1620000000000 ,1616812307090 -1616812307118 ,112.573011,26.89276819,61.91201782,180.5190391,180.7574491,10.1902485,0.092048299,1620000000000 ,1620000000000 ,1620000000000 ,1616812307100 -1616812307130 ,112.573011,26.89276727,61.9110527,180.5355681,180.8009472,10.189903,0.092047458,1620000000000 ,1620000000000 ,1620000000000 ,1616812307110 -1616812307140 ,112.5730109,26.89276635,61.91017914,180.5494471,180.8270339,10.190625,0.09205761,1620000000000 ,1620000000000 ,1620000000000 ,1616812307120 -1616812307150 ,112.5730109,26.89276543,61.90930557,180.5644461,180.8582388,10.192679,0.09207382,1620000000000 ,1620000000000 ,1620000000000 ,1616812307130 -1616812307162 ,112.5730109,26.89276451,61.90834045,180.5787895,180.8986807,10.195265,0.092091296,1620000000000 ,1620000000000 ,1620000000000 ,1616812307140 -1616812307168 ,112.5730109,26.89276359,61.90725708,180.5918215,180.9343161,10.198235,0.092113549,1620000000000 ,1620000000000 ,1620000000000 ,1616812307150 -1616812307178 ,112.5730109,26.89276266,61.90612793,180.603788,180.9569473,10.202128,0.092146614,1620000000000 ,1620000000000 ,1620000000000 ,1616812307160 -1616812307188 ,112.5730109,26.89276174,61.90498734,180.6155906,180.969421,10.204013,0.092166465,1620000000000 ,1620000000000 ,1620000000000 ,1616812307170 -1616812307198 ,112.5730109,26.89276082,61.90384674,180.6277757,180.9844306,10.205755,0.092184765,1620000000000 ,1620000000000 ,1620000000000 ,1616812307180 -1616812307211 ,112.5730108,26.8927599,61.90271378,180.6397422,181.0008128,10.206872,0.092195928,1620000000000 ,1620000000000 ,1620000000000 ,1616812307190 -1616812307220 ,112.5730108,26.89275898,61.90148163,180.6564078,181.2002867,10.218671,0.092406209,1620000000000 ,1620000000000 ,1620000000000 ,1616812307200 -1616812307229 ,112.5730108,26.89275805,61.90003204,180.6682923,181.4981583,10.2199745,0.092715701,1620000000000 ,1620000000000 ,1620000000000 ,1616812307210 -1616812307239 ,112.5730108,26.89275712,61.8985672,180.6808053,181.5172133,10.223048,0.09273924,1620000000000 ,1620000000000 ,1620000000000 ,1616812307220 -1616812307249 ,112.5730107,26.89275619,61.89714432,180.6905861,181.5335651,10.229945,0.092796801,1620000000000 ,1620000000000 ,1620000000000 ,1616812307230 -1616812307259 ,112.5730107,26.89275527,61.89577866,180.7011592,181.5363923,10.237529,0.092869944,1620000000000 ,1620000000000 ,1620000000000 ,1616812307240 -1616812307269 ,112.5730107,26.89275434,61.89440155,180.7102024,181.5177261,10.238652,0.092900207,1620000000000 ,1620000000000 ,1620000000000 ,1616812307250 -1616812307278 ,112.5730107,26.89275341,61.89295578,180.7209394,181.5034588,10.240484,0.092911737,1620000000000 ,1620000000000 ,1620000000000 ,1616812307260 -1616812307290 ,112.5730106,26.89275248,61.89139557,180.7301465,181.5032593,10.236622,0.092885282,1620000000000 ,1620000000000 ,1620000000000 ,1616812307270 -1616812307299 ,112.5730106,26.89275155,61.88972855,180.7404191,181.531245,10.232487,0.092838667,1620000000000 ,1620000000000 ,1620000000000 ,1616812307280 -1616812307310 ,112.5730106,26.89275062,61.88803101,180.753096,181.5193525,10.229724,0.092813861,1620000000000 ,1620000000000 ,1620000000000 ,1616812307290 -1616812307318 ,112.5730106,26.8927497,61.88637161,180.7642428,181.478021,10.231592,0.092822847,1620000000000 ,1620000000000 ,1620000000000 ,1616812307300 -1616812307328 ,112.5730106,26.89274877,61.88476944,180.7728762,181.4703282,10.234911,0.092852861,1620000000000 ,1620000000000 ,1620000000000 ,1616812307310 -1616812307341 ,112.5730105,26.89274784,61.88315582,180.7816735,181.4920162,10.240781,0.092902504,1620000000000 ,1620000000000 ,1620000000000 ,1616812307320 -1616812307349 ,112.5730105,26.89274691,61.8814621,180.7919188,181.5218547,10.248239,0.092967148,1620000000000 ,1620000000000 ,1620000000000 ,1616812307330 -1616812307365 ,112.5730105,26.89274598,61.87967682,180.7997325,181.5410917,10.252874,0.093012283,1620000000000 ,1620000000000 ,1620000000000 ,1616812307340 -1616812307373 ,112.5730105,26.89274505,61.87782288,180.8096499,181.5498855,10.252849,0.093024636,1620000000000 ,1620000000000 ,1620000000000 ,1616812307350 -1616812307382 ,112.5730104,26.89274412,61.87594986,180.8180101,181.563486,10.24876,0.092998243,1620000000000 ,1620000000000 ,1620000000000 ,1616812307360 -1616812307391 ,112.5730104,26.89274319,61.8741188,180.8281734,181.5709964,10.240178,0.092935471,1620000000000 ,1620000000000 ,1620000000000 ,1616812307370 -1616812307401 ,112.5730104,26.89274226,61.8723526,180.8382001,181.5969406,10.23401,0.092872881,1620000000000 ,1620000000000 ,1620000000000 ,1616812307380 -1616812307411 ,112.5730104,26.89274134,61.87062836,180.848582,181.6303551,10.233054,0.092857865,1620000000000 ,1620000000000 ,1620000000000 ,1616812307390 -1616812307420 ,112.5730103,26.89274041,61.86890411,180.8589639,181.6582081,10.239108,0.092896768,1620000000000 ,1620000000000 ,1620000000000 ,1616812307400 -1616812307430 ,112.5730103,26.89273948,61.86719513,180.8658487,181.6675275,10.247452,0.092974503,1620000000000 ,1620000000000 ,1620000000000 ,1616812307410 -1616812307441 ,112.5730103,26.89273855,61.86550522,180.8717227,181.6740378,10.250294,0.093013035,1620000000000 ,1620000000000 ,1620000000000 ,1616812307420 -1616812307450 ,112.5730102,26.89273762,61.86381149,180.8778152,181.6915225,10.25018,0.093019673,1620000000000 ,1620000000000 ,1620000000000 ,1616812307430 -1616812307460 ,112.5730102,26.89273669,61.86214066,180.8836619,181.7260693,10.2469015,0.092998447,1620000000000 ,1620000000000 ,1620000000000 ,1616812307440 -1616812307471 ,112.5730102,26.89273576,61.86063004,180.8904374,181.5702286,10.241188,0.092752096,1620000000000 ,1620000000000 ,1620000000000 ,1616812307450 -1616812307480 ,112.5730102,26.89273484,61.85925674,180.8981965,181.4077046,10.237015,0.092506228,1620000000000 ,1620000000000 ,1620000000000 ,1616812307460 -1616812307490 ,112.5730101,26.89273391,61.85785294,180.9044256,181.4072095,10.236804,0.092498725,1620000000000 ,1620000000000 ,1620000000000 ,1616812307470 -1616812307500 ,112.5730101,26.89273299,61.85630417,180.9104909,181.3686926,10.237694,0.092489433,1620000000000 ,1620000000000 ,1620000000000 ,1616812307480 -1616812307513 ,112.5730101,26.89273206,61.85443115,180.9194521,181.3388696,10.242558,0.092506539,1620000000000 ,1620000000000 ,1620000000000 ,1616812307490 -1616812307521 ,112.5730101,26.89273114,61.85204315,180.9286592,181.3607871,10.249849,0.092536854,1620000000000 ,1620000000000 ,1620000000000 ,1616812307500 -1616812307531 ,112.5730101,26.89273021,61.84896469,180.941254,181.4023828,10.262011,0.092590101,1620000000000 ,1620000000000 ,1620000000000 ,1616812307510 -1616812307544 ,112.57301,26.89272928,61.84531021,180.9559799,181.3420658,10.278763,0.092705832,1620000000000 ,1620000000000 ,1620000000000 ,1616812307520 -1616812307561 ,112.57301,26.89272836,61.84138107,180.9664164,181.2888852,10.285952,0.092785279,1620000000000 ,1620000000000 ,1620000000000 ,1616812307530 -1616812307563 ,112.57301,26.89272743,61.83755875,180.9757601,181.3017432,10.274803,0.092716807,1620000000000 ,1620000000000 ,1620000000000 ,1616812307540 -1616812307573 ,112.57301,26.8927265,61.83410263,180.9831094,181.3595456,10.254591,0.092578396,1620000000000 ,1620000000000 ,1620000000000 ,1616812307550 -1616812307582 ,112.5730099,26.89272558,61.83094025,180.991934,181.442693,10.230493,0.092367822,1620000000000 ,1620000000000 ,1620000000000 ,1616812307560 -1616812307594 ,112.5730099,26.89272466,61.82797241,181.0010865,181.4828499,10.231818,0.092324533,1620000000000 ,1620000000000 ,1620000000000 ,1616812307570 -1616812307602 ,112.5730099,26.89272373,61.82489395,181.0114957,181.4880576,10.2537,0.092470256,1620000000000 ,1620000000000 ,1620000000000 ,1616812307580 -1616812307612 ,112.5730099,26.89272281,61.82157135,181.0222874,181.5173642,10.276286,0.092672167,1620000000000 ,1620000000000 ,1620000000000 ,1616812307590 -1616812307622 ,112.5730098,26.89272188,61.81801987,181.0306202,181.5793679,10.284192,0.092775033,1620000000000 ,1620000000000 ,1620000000000 ,1616812307600 -1616812307632 ,112.5730098,26.89272095,61.81459045,181.0352101,181.6628072,10.277831,0.09274931,1620000000000 ,1620000000000 ,1620000000000 ,1616812307610 -1616812307641 ,112.5730098,26.89272003,61.81162262,181.038352,181.74015,10.26319,0.092649557,1620000000000 ,1620000000000 ,1620000000000 ,1616812307620 -1616812307652 ,112.5730098,26.8927191,61.80911636,181.0396907,181.8012502,10.25144,0.092550993,1620000000000 ,1620000000000 ,1620000000000 ,1616812307630 -1616812307663 ,112.5730097,26.89271818,61.80690765,181.035456,181.8267013,10.245771,0.092500917,1620000000000 ,1620000000000 ,1620000000000 ,1616812307640 -1616812307675 ,112.5730097,26.89271725,61.80480194,181.032642,181.828443,10.243535,0.092474385,1620000000000 ,1620000000000 ,1620000000000 ,1616812307650 -1616812307683 ,112.5730097,26.89271633,61.80277634,181.0291176,181.8515417,10.247182,0.092490985,1620000000000 ,1620000000000 ,1620000000000 ,1616812307660 -1616812307693 ,112.5730096,26.8927154,61.80082321,181.0235441,181.8780029,10.254354,0.092556919,1620000000000 ,1620000000000 ,1620000000000 ,1616812307670 -1616812307703 ,112.5730096,26.89271448,61.79901123,181.0172604,181.8899719,10.259934,0.092615285,1620000000000 ,1620000000000 ,1620000000000 ,1616812307680 -1616812307713 ,112.5730096,26.89271355,61.79751587,181.0097745,181.890642,10.262051,0.092658412,1620000000000 ,1620000000000 ,1620000000000 ,1616812307690 -1616812307724 ,112.5730096,26.89271263,61.79640198,181.0014417,181.8890581,10.255801,0.092633601,1620000000000 ,1620000000000 ,1620000000000 ,1616812307700 -1616812307735 ,112.5730095,26.8927117,61.79559708,180.992617,181.8917172,10.247182,0.092570635,1620000000000 ,1620000000000 ,1620000000000 ,1616812307710 -1616812307746 ,112.5730095,26.89271078,61.79502106,180.9851585,181.8731736,10.239891,0.09250748,1620000000000 ,1620000000000 ,1620000000000 ,1616812307720 -1616812307754 ,112.5730095,26.89270985,61.79462433,180.9784922,181.8505028,10.235172,0.092464604,1620000000000 ,1620000000000 ,1620000000000 ,1616812307730 -1616812307763 ,112.5730094,26.89270893,61.79438019,180.9720992,181.8306148,10.235019,0.092460755,1620000000000 ,1620000000000 ,1620000000000 ,1616812307750 -1616812307774 ,112.5730094,26.892708,61.79419327,180.9680557,181.8158601,10.23775,0.092485357,1620000000000 ,1620000000000 ,1620000000000 ,1616812307760 -1616812307783 ,112.5730094,26.89270708,61.79405212,180.958794,181.8164689,10.237867,0.092495302,1620000000000 ,1620000000000 ,1620000000000 ,1616812307770 -1616812307793 ,112.5730093,26.89270615,61.79400635,180.9473466,181.8262531,10.238387,0.092506621,1620000000000 ,1620000000000 ,1620000000000 ,1616812307780 -1616812307804 ,112.5730093,26.89270523,61.79411697,180.934014,181.8420964,10.235068,0.092490884,1620000000000 ,1620000000000 ,1620000000000 ,1616812307780 -1616812307814 ,112.5730093,26.89270431,61.79433441,180.9225393,181.8294658,10.235021,0.092489963,1620000000000 ,1620000000000 ,1620000000000 ,1616812307800 -1616812307826 ,112.5730093,26.89270338,61.79463959,180.9094527,181.8224733,10.23216,0.092477763,1620000000000 ,1620000000000 ,1620000000000 ,1616812307810 -1616812307834 ,112.5730092,26.89270153,61.79558945,180.8826237,181.8240374,10.226868,0.18491958,1620000000000 ,1620000000000 ,1620000000000 ,1616812307820 -1616812307844 ,112.5730092,26.89270061,61.79627991,180.8694278,181.8454605,10.225106,0.092443957,1620000000000 ,1620000000000 ,1620000000000 ,1616812307830 -1616812307854 ,112.5730091,26.89269969,61.79704666,180.8569422,181.8426068,10.221436,0.092420681,1620000000000 ,1620000000000 ,1620000000000 ,1616812307840 -1616812307864 ,112.5730091,26.89269876,61.79782486,180.8421616,181.8565665,10.219831,0.09240927,1620000000000 ,1620000000000 ,1620000000000 ,1616812307850 -1616812307875 ,112.5730091,26.89269784,61.79851532,180.828993,181.8632816,10.218931,0.092401917,1620000000000 ,1620000000000 ,1620000000000 ,1616812307860 -1616812307884 ,112.573009,26.89269691,61.79904556,180.8177369,181.8580279,10.221014,0.092409896,1620000000000 ,1620000000000 ,1620000000000 ,1616812307870 -1616812307895 ,112.573009,26.89269599,61.79938507,180.8041858,181.8350156,10.224954,0.092436712,1620000000000 ,1620000000000 ,1620000000000 ,1616812307880 -1616812307905 ,112.573009,26.89269599,61.79938507,180.8041858,-400,10.224954,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812307890 -1616812307915 ,112.573009,26.89269414,61.79963303,180.7780945,181.7903569,10.222917,0.184887755,1620000000000 ,1620000000000 ,1620000000000 ,1616812307900 -1616812307925 ,112.5730089,26.89269322,61.79965973,180.7640516,181.7619902,10.218455,0.092393457,1620000000000 ,1620000000000 ,1620000000000 ,1616812307910 -1616812307935 ,112.5730089,26.8926923,61.79956818,180.7531233,181.7368073,10.215856,0.092362131,1620000000000 ,1620000000000 ,1620000000000 ,1616812307920 -1616812307945 ,112.5730089,26.89269137,61.79929733,180.740665,181.7150895,10.216386,0.092352286,1620000000000 ,1620000000000 ,1620000000000 ,1616812307930 -1616812307955 ,112.5730088,26.89269045,61.79881287,180.7284253,181.6831259,10.21684,0.092350126,1620000000000 ,1620000000000 ,1620000000000 ,1616812307940 -1616812307965 ,112.5730088,26.89268953,61.79812622,180.7166774,181.6328608,10.215177,0.092330704,1620000000000 ,1620000000000 ,1620000000000 ,1616812307950 -1616812307974 ,112.5730088,26.8926886,61.79727554,180.7062955,181.5868848,10.213127,0.092303817,1620000000000 ,1620000000000 ,1620000000000 ,1616812307960 -1616812307986 ,112.5730088,26.89268768,61.79626846,180.6968972,181.5559366,10.212905,0.092290313,1620000000000 ,1620000000000 ,1620000000000 ,1616812307970 -1616812307995 ,112.5730087,26.89268676,61.79508591,180.6910232,181.5175314,10.213626,0.09228478,1620000000000 ,1620000000000 ,1620000000000 ,1616812307980 -1616812308006 ,112.5730087,26.89268676,61.79508591,180.6910232,-400,10.213626,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812307990 -1616812308018 ,112.5730087,26.89268491,61.79213333,180.6768437,181.4422105,10.212769,0.184545169,1620000000000 ,1620000000000 ,1620000000000 ,1616812308000 -1616812308027 ,112.5730087,26.89268399,61.79042435,180.66903,181.3682153,10.210054,0.092231195,1620000000000 ,1620000000000 ,1620000000000 ,1616812308010 -1616812308036 ,112.5730087,26.89268307,61.78858948,180.6624457,181.3452389,10.207449,0.092199678,1620000000000 ,1620000000000 ,1620000000000 ,1616812308020 -1616812308048 ,112.5730086,26.89268215,61.78663635,180.6558614,181.3285955,10.206691,0.092180939,1620000000000 ,1620000000000 ,1620000000000 ,1616812308030 -1616812308058 ,112.5730086,26.89268123,61.7845993,180.6511622,181.3082471,10.2057905,0.09216843,1620000000000 ,1620000000000 ,1620000000000 ,1616812308040 -1616812308066 ,112.5730086,26.89268031,61.78253937,180.6467636,181.2813927,10.205317,0.092160995,1620000000000 ,1620000000000 ,1620000000000 ,1616812308050 -1616812308077 ,112.5730086,26.89267938,61.78044891,180.6432392,181.2539687,10.205842,0.092160238,1620000000000 ,1620000000000 ,1620000000000 ,1616812308060 -1616812308085 ,112.5730086,26.89267846,61.77825928,180.639305,181.2503329,10.206283,0.092160583,1620000000000 ,1620000000000 ,1620000000000 ,1616812308070 -1616812308096 ,112.5730085,26.89267754,61.77593231,180.6347151,181.2587312,10.204693,0.092142166,1620000000000 ,1620000000000 ,1620000000000 ,1616812308080 -1616812308112 ,112.5730085,26.89267662,61.77353287,180.6279669,181.2618452,10.200771,0.092108214,1620000000000 ,1620000000000 ,1620000000000 ,1616812308090 -1616812308121 ,112.5730085,26.8926757,61.77116776,180.6202898,181.2503259,10.197125,0.092074415,1620000000000 ,1620000000000 ,1620000000000 ,1616812308100 -1616812308128 ,112.5730085,26.89267478,61.76884842,180.6126126,181.2327918,10.194811,0.092049605,1620000000000 ,1620000000000 ,1620000000000 ,1616812308110 -1616812308138 ,112.5730085,26.89267386,61.76654053,180.6056185,181.2207529,10.194593,0.092042877,1620000000000 ,1620000000000 ,1620000000000 ,1616812308120 -1616812308148 ,112.5730084,26.89267294,61.76424408,180.5986244,181.2214984,10.193386,0.092035703,1620000000000 ,1620000000000 ,1620000000000 ,1616812308130 -1616812308159 ,112.5730084,26.89267202,61.76197815,180.5937886,181.2078033,10.191267,0.092017758,1620000000000 ,1620000000000 ,1620000000000 ,1616812308140 -1616812308169 ,112.5730084,26.8926711,61.75976563,180.5873136,181.1966512,10.190939,0.092010928,1620000000000 ,1620000000000 ,1620000000000 ,1616812308150 -1616812308177 ,112.5730084,26.89267018,61.75761032,180.5822866,181.1849487,10.192042,0.092021681,1620000000000 ,1620000000000 ,1620000000000 ,1616812308160 -1616812308187 ,112.5730084,26.89266926,61.75548172,180.5758389,181.1713998,10.192153,0.092024142,1620000000000 ,1620000000000 ,1620000000000 ,1616812308170 -1616812308198 ,112.5730083,26.89266834,61.75338745,180.5711124,181.1647734,10.189709,0.092011821,1620000000000 ,1620000000000 ,1620000000000 ,1616812308180 -1616812308209 ,112.5730083,26.89266742,61.75134659,180.5652111,181.1495173,10.184327,0.09197079,1620000000000 ,1620000000000 ,1620000000000 ,1616812308190 -1616812308218 ,112.5730083,26.8926665,61.7497673,180.5692273,181.1262294,10.185952,0.092002143,1620000000000 ,1620000000000 ,1620000000000 ,1616812308200 -1616812308228 ,112.5730083,26.89266558,61.74888611,180.5646101,181.0807696,10.181753,0.092127836,1620000000000 ,1620000000000 ,1620000000000 ,1616812308210 -1616812308237 ,112.5730083,26.89266466,61.74814987,180.5614135,181.0776907,10.178558,0.092103672,1620000000000 ,1620000000000 ,1620000000000 ,1616812308220 -1616812308247 ,112.5730083,26.89266374,61.74751282,180.5580258,181.0852133,10.1757765,0.092082887,1620000000000 ,1620000000000 ,1620000000000 ,1616812308230 -1616812308257 ,112.5730082,26.89266282,61.74695587,180.5553757,181.0874478,10.173984,0.092069589,1620000000000 ,1620000000000 ,1620000000000 ,1616812308240 -1616812308268 ,112.5730082,26.8926619,61.74647522,180.5540096,181.0880241,10.1725855,0.092059147,1620000000000 ,1620000000000 ,1620000000000 ,1616812308250 -1616812308278 ,112.5730082,26.89266098,61.74604034,180.5514961,181.0813457,10.172341,0.092055192,1620000000000 ,1620000000000 ,1620000000000 ,1616812308260 -1616812308288 ,112.5730082,26.89266006,61.7456398,180.5485181,181.0918224,10.17016,0.092044921,1620000000000 ,1620000000000 ,1620000000000 ,1616812308270 -1616812308299 ,112.5730082,26.89265914,61.74531174,180.5444474,181.1076831,10.165829,0.092014583,1620000000000 ,1620000000000 ,1620000000000 ,1616812308280 -1616812308310 ,112.5730081,26.89265822,61.74510574,180.5414148,181.1168316,10.1605425,0.091975018,1620000000000 ,1620000000000 ,1620000000000 ,1616812308290 -1616812308321 ,112.5730081,26.8926573,61.74500275,180.5383002,181.1228119,10.155945,0.091935852,1620000000000 ,1620000000000 ,1620000000000 ,1616812308300 -1616812308329 ,112.5730081,26.89265638,61.74491501,180.53718,181.1275658,10.154725,0.091917599,1620000000000 ,1620000000000 ,1620000000000 ,1616812308310 -1616812308338 ,112.5730081,26.89265546,61.74477005,180.5369341,181.1442983,10.154879,0.091915919,1620000000000 ,1620000000000 ,1620000000000 ,1616812308320 -1616812308349 ,112.5730081,26.89265454,61.7445755,180.5353222,181.1564573,10.153685,0.091906673,1620000000000 ,1620000000000 ,1620000000000 ,1616812308330 -1616812308359 ,112.5730081,26.89265362,61.74441147,180.5326994,181.1589052,10.149786,0.091881835,1620000000000 ,1620000000000 ,1620000000000 ,1616812308340 -1616812308369 ,112.573008,26.8926527,61.74432373,180.5310329,181.1559486,10.146228,0.091850541,1620000000000 ,1620000000000 ,1620000000000 ,1616812308350 -1616812308381 ,112.573008,26.89265179,61.74428558,180.5305957,181.1522632,10.142885,0.091823016,1620000000000 ,1620000000000 ,1620000000000 ,1616812308360 -1616812308390 ,112.573008,26.89265087,61.74421692,180.5293663,181.1523884,10.140829,0.091801883,1620000000000 ,1620000000000 ,1620000000000 ,1616812308370 -1616812308399 ,112.573008,26.89264995,61.74409485,180.5277817,181.1586415,10.139131,0.091783338,1620000000000 ,1620000000000 ,1620000000000 ,1616812308380 -1616812308409 ,112.573008,26.89264903,61.74393082,180.5277271,181.1488467,10.13752,0.091766047,1620000000000 ,1620000000000 ,1620000000000 ,1616812308390 -1616812308420 ,112.5730079,26.89264812,61.74375534,180.5271533,181.1404036,10.134345,0.091741756,1620000000000 ,1620000000000 ,1620000000000 ,1616812308400 -1616812308430 ,112.5730079,26.8926472,61.74354935,180.5281915,181.1353463,10.132818,0.091722972,1620000000000 ,1620000000000 ,1620000000000 ,1616812308410 -1616812308439 ,112.5730079,26.89264628,61.74328232,180.5309509,181.1454582,10.131785,0.091710114,1620000000000 ,1620000000000 ,1620000000000 ,1616812308420 -1616812308450 ,112.5730079,26.89264536,61.74292374,180.5329453,181.147824,10.130777,0.091695062,1620000000000 ,1620000000000 ,1620000000000 ,1616812308430 -1616812308460 ,112.5730079,26.89264445,61.74248505,180.5369615,181.1435007,10.12861,0.091677458,1620000000000 ,1620000000000 ,1620000000000 ,1616812308440 -1616812308470 ,112.5730079,26.89264353,61.7416687,180.5371254,181.1437346,10.126473,0.091569647,1620000000000 ,1620000000000 ,1620000000000 ,1616812308450 -1616812308479 ,112.5730078,26.89264262,61.74048615,180.5360599,181.1556591,10.1241,0.091466565,1620000000000 ,1620000000000 ,1620000000000 ,1616812308460 -1616812308495 ,112.5730078,26.8926417,61.7392807,180.536497,181.1746001,10.121786,0.091445619,1620000000000 ,1620000000000 ,1620000000000 ,1616812308470 -1616812308502 ,112.5730078,26.89264079,61.73806763,180.5361692,181.1888137,10.118488,0.091417953,1620000000000 ,1620000000000 ,1620000000000 ,1616812308480 -1616812308510 ,112.5730078,26.89263988,61.73688507,180.5369615,181.1872208,10.11509,0.09138812,1620000000000 ,1620000000000 ,1620000000000 ,1616812308490 -1616812308523 ,112.5730078,26.89263896,61.73574448,180.5395843,181.1925755,10.112704,0.091365807,1620000000000 ,1620000000000 ,1620000000000 ,1616812308500 -1616812308534 ,112.5730077,26.89263805,61.73458481,180.5395296,181.2076172,10.110888,0.091347604,1620000000000 ,1620000000000 ,1620000000000 ,1616812308510 -1616812308541 ,112.5730077,26.89263714,61.73334503,180.5426442,181.2207286,10.108889,0.091325363,1620000000000 ,1620000000000 ,1620000000000 ,1616812308520 -1616812308553 ,112.5730077,26.89263622,61.73203659,180.5436824,181.2349288,10.106949,0.091306725,1620000000000 ,1620000000000 ,1620000000000 ,1616812308530 -1616812308565 ,112.5730077,26.89263531,61.73070526,180.5432452,181.2317904,10.10469,0.091283491,1620000000000 ,1620000000000 ,1620000000000 ,1616812308540 -1616812308573 ,112.5730077,26.8926344,61.7293663,180.5417426,181.2397793,10.102364,0.091262646,1620000000000 ,1620000000000 ,1620000000000 ,1616812308550 -1616812308581 ,112.5730076,26.89263349,61.72799683,180.5410869,181.2542631,10.09979,0.091236266,1620000000000 ,1620000000000 ,1620000000000 ,1616812308560 -1616812308592 ,112.5730076,26.89263257,61.72658539,180.5438463,181.2645882,10.09685,0.09120968,1620000000000 ,1620000000000 ,1620000000000 ,1616812308570 -1616812308601 ,112.5730076,26.89263166,61.72520065,180.5453763,181.2679977,10.092685,0.091174336,1620000000000 ,1620000000000 ,1620000000000 ,1616812308580 -1616812308611 ,112.5730076,26.89263075,61.72388458,180.5443108,181.2532714,10.090159,0.091151018,1620000000000 ,1620000000000 ,1620000000000 ,1616812308590 -1616812308621 ,112.5730076,26.89262984,61.7225647,180.5452397,181.2438696,10.088247,0.091131752,1620000000000 ,1620000000000 ,1620000000000 ,1616812308600 -1616812308632 ,112.5730075,26.89262893,61.72120285,180.5462505,181.254239,10.087239,0.091118165,1620000000000 ,1620000000000 ,1620000000000 ,1616812308610 -1616812308642 ,112.5730075,26.89262802,61.71981049,180.5487914,181.26677,10.0842,0.091094463,1620000000000 ,1620000000000 ,1620000000000 ,1616812308620 -1616812308651 ,112.5730075,26.89262711,61.71846771,180.5487914,181.2580978,10.0797615,0.09105841,1620000000000 ,1620000000000 ,1620000000000 ,1616812308630 -1616812308662 ,112.5730075,26.8926262,61.71719742,180.5491465,181.2297943,10.076615,0.091029588,1620000000000 ,1620000000000 ,1620000000000 ,1616812308640 -1616812308673 ,112.5730075,26.89262529,61.71596527,180.5482449,181.2167227,10.074151,0.091005872,1620000000000 ,1620000000000 ,1620000000000 ,1616812308650 -1616812308682 ,112.5730074,26.89262438,61.71471786,180.5504852,181.2261618,10.071391,0.090979728,1620000000000 ,1620000000000 ,1620000000000 ,1616812308660 -1616812308693 ,112.5730074,26.89262347,61.71345901,180.5537091,181.2350371,10.068273,0.090951983,1620000000000 ,1620000000000 ,1620000000000 ,1616812308670 -1616812308702 ,112.5730074,26.89262256,61.71223831,180.5562772,181.2296562,10.064923,0.090926107,1620000000000 ,1620000000000 ,1620000000000 ,1616812308680 -1616812308713 ,112.5730074,26.89262165,61.7110939,180.5573974,181.2111135,10.062323,0.09089978,1620000000000 ,1620000000000 ,1620000000000 ,1616812308690 -1616812308725 ,112.5730074,26.89262074,61.70995712,180.5597197,181.209589,10.061015,0.090886153,1620000000000 ,1620000000000 ,1620000000000 ,1616812308700 -1616812308733 ,112.5730073,26.89261983,61.70878601,180.5610584,181.2207577,10.058872,0.090867672,1620000000000 ,1620000000000 ,1620000000000 ,1616812308710 -1616812308748 ,112.5730073,26.89261893,61.70759583,180.5631894,181.2263592,10.05597,0.09084278,1620000000000 ,1620000000000 ,1620000000000 ,1616812308720 -1616812308759 ,112.5730073,26.89261802,61.70644379,180.5648833,181.2224296,10.052339,0.090810292,1620000000000 ,1620000000000 ,1620000000000 ,1616812308730 -1616812308762 ,112.5730073,26.89261711,61.70534897,180.5679705,181.2229645,10.049429,0.090785627,1620000000000 ,1620000000000 ,1620000000000 ,1616812308740 -1616812308775 ,112.5730073,26.8926162,61.70427322,180.5709758,181.2272664,10.045944,0.090755399,1620000000000 ,1620000000000 ,1620000000000 ,1616812308750 -1616812308783 ,112.5730072,26.8926153,61.70320511,180.574145,181.2373585,10.044066,0.090733138,1620000000000 ,1620000000000 ,1620000000000 ,1616812308760 -1616812308793 ,112.5730072,26.89261439,61.7021637,180.5742816,181.2445933,10.0419655,0.090718207,1620000000000 ,1620000000000 ,1620000000000 ,1616812308780 -1616812308802 ,112.5730072,26.89261348,61.70116043,180.5743909,181.2459708,10.038554,0.090690271,1620000000000 ,1620000000000 ,1620000000000 ,1616812308780 -1616812308813 ,112.5730072,26.89261258,61.70021057,180.5739538,181.2507876,10.035201,0.090661833,1620000000000 ,1620000000000 ,1620000000000 ,1616812308800 -1616812308824 ,112.5730072,26.89261167,61.69931793,180.5733254,181.2668523,10.031392,0.090630186,1620000000000 ,1620000000000 ,1620000000000 ,1616812308800 -1616812308835 ,112.5730071,26.89260986,61.69765472,180.574992,181.2670489,10.025752,0.181185977,1620000000000 ,1620000000000 ,1620000000000 ,1616812308820 -1616812308844 ,112.5730071,26.89260986,61.69765472,180.574992,-400,10.025752,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812308830 -1616812308854 ,112.5730071,26.89260805,61.69598389,180.5771503,181.25495,10.021452,0.181092915,1620000000000 ,1620000000000 ,1620000000000 ,1616812308840 -1616812308864 ,112.5730071,26.89260714,61.69514084,180.578571,181.2546863,10.019042,0.090514894,1620000000000 ,1620000000000 ,1620000000000 ,1616812308850 -1616812308874 ,112.5730071,26.89260714,61.69514084,180.578571,-400,10.019042,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812308860 -1616812308884 ,112.573007,26.89260533,61.69347382,180.5818768,181.2573107,10.014337,0.180969328,1620000000000 ,1620000000000 ,1620000000000 ,1616812308870 -1616812308898 ,112.573007,26.89260443,61.6926384,180.585729,181.2497884,10.011459,0.090447172,1620000000000 ,1620000000000 ,1620000000000 ,1616812308880 -1616812308905 ,112.573007,26.89260443,61.6926384,180.585729,-400,10.011459,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812308890 -1616812308915 ,112.573007,26.89260262,61.69088364,180.5878874,181.2461738,10.007145,0.180818194,1620000000000 ,1620000000000 ,1620000000000 ,1616812308900 -1616812308925 ,112.5730069,26.89260172,61.68997192,180.5885704,181.2567509,10.006252,0.090390582,1620000000000 ,1620000000000 ,1620000000000 ,1616812308910 -1616812308934 ,112.5730069,26.89260172,61.68997192,180.5885704,-400,10.006252,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812308920 -1616812308945 ,112.5730069,26.89259991,61.68811798,180.5911658,181.2738674,10.005734,0.180768428,1620000000000 ,1620000000000 ,1620000000000 ,1616812308930 -1616812308956 ,112.5730069,26.89259901,61.68721008,180.5946902,181.2851553,10.005546,0.090382897,1620000000000 ,1620000000000 ,1620000000000 ,1616812308940 -1616812308965 ,112.5730069,26.8925981,61.68630981,180.5981053,181.2854293,10.00548,0.090381438,1620000000000 ,1620000000000 ,1620000000000 ,1616812308950 -1616812308986 ,112.5730068,26.8925972,61.68540192,180.6004822,181.2974698,10.004859,0.090375853,1620000000000 ,1620000000000 ,1620000000000 ,1616812308960 -1616812308993 ,112.5730068,26.8925963,61.68453598,180.6023674,181.3116107,10.002136,0.090358605,1620000000000 ,1620000000000 ,1620000000000 ,1616812308970 -1616812308998 ,112.5730068,26.89259539,61.68376923,180.6034055,181.3194565,9.99937,0.090339373,1620000000000 ,1620000000000 ,1620000000000 ,1616812308980 -1616812309006 ,112.5730068,26.89259539,61.68376923,180.6034055,-400,9.99937,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812308990 -1616812309015 ,112.5730068,26.89259359,61.68244553,180.606001,181.3157082,9.996859,0.180642384,1620000000000 ,1620000000000 ,1620000000000 ,1616812309000 -1616812309026 ,112.5730067,26.89259269,61.68183517,180.6071485,181.321879,9.995317,0.090305977,1620000000000 ,1620000000000 ,1620000000000 ,1616812309010 -1616812309035 ,112.5730067,26.89259178,61.6812706,180.6105089,181.3196719,9.993275,0.090294087,1620000000000 ,1620000000000 ,1620000000000 ,1616812309020 -1616812309045 ,112.5730067,26.89259088,61.68077469,180.6123121,181.3157831,9.991208,0.090275047,1620000000000 ,1620000000000 ,1620000000000 ,1616812309030 -1616812309056 ,112.5730067,26.89258998,61.68033218,180.6155906,181.3022259,9.990258,0.090267377,1620000000000 ,1620000000000 ,1620000000000 ,1616812309040 -1616812309067 ,112.5730067,26.89258908,61.67989349,180.618432,181.2910183,9.989673,0.09026138,1620000000000 ,1620000000000 ,1620000000000 ,1616812309050 -1616812309078 ,112.5730066,26.89258817,61.67942047,180.622776,181.2891653,9.990602,0.090267616,1620000000000 ,1620000000000 ,1620000000000 ,1616812309060 -1616812309090 ,112.5730066,26.89258727,61.67890549,180.6238142,181.291389,9.990988,0.090271983,1620000000000 ,1620000000000 ,1620000000000 ,1616812309070 -1616812309098 ,112.5730066,26.89258637,61.67838669,180.626956,181.2836804,9.989793,0.090264077,1620000000000 ,1620000000000 ,1620000000000 ,1616812309080 -1616812309108 ,112.5730066,26.89258547,61.67790604,180.627721,181.2756576,9.987813,0.090251995,1620000000000 ,1620000000000 ,1620000000000 ,1616812309090 -1616812309117 ,112.5730066,26.89258456,61.67745972,180.6296881,181.2681613,9.985949,0.090235318,1620000000000 ,1620000000000 ,1620000000000 ,1616812309100 -1616812309127 ,112.5730065,26.89258366,61.67700195,180.6325022,181.267676,9.985272,0.090228485,1620000000000 ,1620000000000 ,1620000000000 ,1616812309110 -1616812309137 ,112.5730065,26.89258276,61.67649841,180.6368462,181.2792294,9.985426,0.090226208,1620000000000 ,1620000000000 ,1620000000000 ,1616812309120 -1616812309147 ,112.5730065,26.89258186,61.67593765,180.6403432,181.2810873,9.985207,0.090223647,1620000000000 ,1620000000000 ,1620000000000 ,1616812309130 -1616812309160 ,112.5730065,26.89258096,61.67535782,180.643731,181.2858651,9.98468,0.090221373,1620000000000 ,1620000000000 ,1620000000000 ,1616812309140 -1616812309168 ,112.5730065,26.89258005,61.6747551,180.6452063,181.2962645,9.985313,0.090223424,1620000000000 ,1620000000000 ,1620000000000 ,1616812309150 -1616812309177 ,112.5730064,26.89257915,61.67411041,180.6471461,181.314594,9.986033,0.090229214,1620000000000 ,1620000000000 ,1620000000000 ,1616812309160 -1616812309189 ,112.5730064,26.89257825,61.67339706,180.6506158,181.3317865,9.985848,0.090228049,1620000000000 ,1620000000000 ,1620000000000 ,1616812309170 -1616812309197 ,112.5730064,26.89257735,61.67264175,180.6518999,181.3392615,9.984776,0.090220197,1620000000000 ,1620000000000 ,1620000000000 ,1616812309180 -1616812309208 ,112.5730064,26.89257645,61.67189026,180.6529381,181.3399675,9.983519,0.090209496,1620000000000 ,1620000000000 ,1620000000000 ,1616812309190 -1616812309219 ,112.5730064,26.89257554,61.67091751,180.6666531,181.2966527,9.975054,0.090085391,1620000000000 ,1620000000000 ,1620000000000 ,1616812309200 -1616812309228 ,112.5730063,26.89257465,61.66949081,180.6697677,181.2466315,9.975901,0.089887716,1620000000000 ,1620000000000 ,1620000000000 ,1616812309210 -1616812309238 ,112.5730063,26.89257375,61.66797256,180.671161,181.2648058,9.975372,0.08988353,1620000000000 ,1620000000000 ,1620000000000 ,1616812309220 -1616812309248 ,112.5730063,26.89257285,61.66641235,180.6700409,181.2728124,9.975103,0.089877675,1620000000000 ,1620000000000 ,1620000000000 ,1616812309230 -1616812309261 ,112.5730063,26.89257195,61.66483688,180.6701502,181.2669213,9.975234,0.089877309,1620000000000 ,1620000000000 ,1620000000000 ,1616812309240 -1616812309269 ,112.5730063,26.89257105,61.66321564,180.6721719,181.267653,9.975779,0.089880228,1620000000000 ,1620000000000 ,1620000000000 ,1616812309250 -1616812309281 ,112.5730062,26.89257015,61.66152191,180.6723358,181.2859637,9.976139,0.089881323,1620000000000 ,1620000000000 ,1620000000000 ,1616812309260 -1616812309288 ,112.5730062,26.89256925,61.65979004,180.6741936,181.2931279,9.975369,0.089875368,1620000000000 ,1620000000000 ,1620000000000 ,1616812309270 -1616812309298 ,112.5730062,26.89256836,61.65807343,180.6752591,181.279049,9.974234,0.089864654,1620000000000 ,1620000000000 ,1620000000000 ,1616812309280 -1616812309310 ,112.5730062,26.89256746,61.65634155,180.6750952,181.2685668,9.973672,0.08985722,1620000000000 ,1620000000000 ,1620000000000 ,1616812309290 -1616812309319 ,112.5730062,26.89256656,61.65455246,180.677035,181.2634416,9.9735,0.089853406,1620000000000 ,1620000000000 ,1620000000000 ,1616812309300 -1616812309328 ,112.5730061,26.89256566,61.65268326,180.6796578,181.272724,9.97174,0.089836379,1620000000000 ,1620000000000 ,1620000000000 ,1616812309310 -1616812309340 ,112.5730061,26.89256476,61.65077972,180.6804228,181.2669453,9.971583,0.089828621,1620000000000 ,1620000000000 ,1620000000000 ,1616812309320 -1616812309349 ,112.5730061,26.89256387,61.64888,180.6808053,181.2438843,9.971058,0.089824682,1620000000000 ,1620000000000 ,1620000000000 ,1616812309330 -1616812309359 ,112.5730061,26.89256297,61.64696884,180.682827,181.2248716,9.971131,0.089822346,1620000000000 ,1620000000000 ,1620000000000 ,1616812309340 -1616812309371 ,112.5730061,26.89256207,61.64500809,180.6863514,181.2233102,9.972309,0.089826881,1620000000000 ,1620000000000 ,1620000000000 ,1616812309350 -1616812309380 ,112.573006,26.89256117,61.64298248,180.6871983,181.2314742,9.971135,0.089819302,1620000000000 ,1620000000000 ,1620000000000 ,1616812309360 -1616812309390 ,112.573006,26.89256027,61.64094925,180.6902036,181.235179,9.969399,0.089803944,1620000000000 ,1620000000000 ,1620000000000 ,1616812309370 -1616812309399 ,112.573006,26.89255938,61.63894272,180.6905588,181.2277135,9.967035,0.089785313,1620000000000 ,1620000000000 ,1620000000000 ,1616812309380 -1616812309409 ,112.573006,26.89255848,61.63694763,180.6934821,181.2260285,9.964439,0.089759916,1620000000000 ,1620000000000 ,1620000000000 ,1616812309390 -1616812309419 ,112.573006,26.89255758,61.63494873,180.6949847,181.232101,9.962692,0.089741688,1620000000000 ,1620000000000 ,1620000000000 ,1616812309400 -1616812309429 ,112.5730059,26.89255668,61.6329422,180.6969245,181.2464739,9.961117,0.089727076,1620000000000 ,1620000000000 ,1620000000000 ,1616812309410 -1616812309439 ,112.5730059,26.89255579,61.63096619,180.6984818,181.2578778,9.960232,0.089716645,1620000000000 ,1620000000000 ,1620000000000 ,1616812309420 -1616812309452 ,112.5730059,26.89255489,61.62903595,180.6991375,181.2652581,9.957985,0.089702416,1620000000000 ,1620000000000 ,1620000000000 ,1616812309430 -1616812309460 ,112.5730059,26.89255399,61.62715912,180.6977988,181.2701687,9.955648,0.089683077,1620000000000 ,1620000000000 ,1620000000000 ,1616812309440 -1616812309470 ,112.5730059,26.8925531,61.62552261,180.6983452,181.3409512,9.953812,0.089784444,1620000000000 ,1620000000000 ,1620000000000 ,1616812309450 -1616812309480 ,112.5730058,26.8925522,61.62410355,180.6987003,181.4092319,9.950834,0.089879288,1620000000000 ,1620000000000 ,1620000000000 ,1616812309460 -1616812309496 ,112.5730058,26.8925513,61.62268829,180.6978807,181.4098738,9.94746,0.089849407,1620000000000 ,1620000000000 ,1620000000000 ,1616812309470 -1616812309500 ,112.5730058,26.8925504,61.621315,180.6977988,181.4169777,9.944692,0.089824137,1620000000000 ,1620000000000 ,1620000000000 ,1616812309480 -1616812309511 ,112.5730058,26.8925495,61.61998749,180.6982905,181.4228786,9.943487,0.08980835,1620000000000 ,1620000000000 ,1620000000000 ,1616812309490 -1616812309522 ,112.5730058,26.89254861,61.61869049,180.6999844,181.425395,9.943977,0.089813511,1620000000000 ,1620000000000 ,1620000000000 ,1616812309500 -1616812309531 ,112.5730057,26.89254771,61.61741638,180.6997385,181.4276943,9.943582,0.089811998,1620000000000 ,1620000000000 ,1620000000000 ,1616812309510 -1616812309544 ,112.5730057,26.89254681,61.61614609,180.7011592,181.4373166,9.942452,0.089802061,1620000000000 ,1620000000000 ,1620000000000 ,1616812309520 -1616812309551 ,112.5730057,26.89254591,61.61488724,180.7029897,181.4456249,9.940318,0.089785754,1620000000000 ,1620000000000 ,1620000000000 ,1616812309530 -1616812309562 ,112.5730057,26.89254502,61.61364746,180.7041918,181.4409282,9.938284,0.089767304,1620000000000 ,1620000000000 ,1620000000000 ,1616812309540 -1616812309571 ,112.5730056,26.89254412,61.61243057,180.7063228,181.4368451,9.93655,0.089752403,1620000000000 ,1620000000000 ,1620000000000 ,1616812309550 -1616812309581 ,112.5730056,26.89254322,61.6112442,180.7067053,181.4369893,9.935126,0.089738471,1620000000000 ,1620000000000 ,1620000000000 ,1616812309560 -1616812309592 ,112.5730056,26.89254232,61.61008835,180.7078255,181.4393304,9.934192,0.089731942,1620000000000 ,1620000000000 ,1620000000000 ,1616812309570 -1616812309601 ,112.5730056,26.89254143,61.60898209,180.711022,181.4433594,9.934166,0.089730881,1620000000000 ,1620000000000 ,1620000000000 ,1616812309580 -1616812309612 ,112.5730055,26.89254053,61.60793686,180.7132896,181.4454857,9.933275,0.089727301,1620000000000 ,1620000000000 ,1620000000000 ,1616812309590 -1616812309622 ,112.5730055,26.89253963,61.60694885,180.7134262,181.4419385,9.931487,0.089714696,1620000000000 ,1620000000000 ,1620000000000 ,1616812309600 -1616812309632 ,112.5730055,26.89253874,61.60598373,180.7157758,181.4385902,9.929674,0.089700669,1620000000000 ,1620000000000 ,1620000000000 ,1616812309610 -1616812309642 ,112.5730055,26.89253784,61.6050148,180.7161583,181.4373464,9.928884,0.08968921,1620000000000 ,1620000000000 ,1620000000000 ,1616812309620 -1616812309656 ,112.5730055,26.89253694,61.60405731,180.71818,181.4461976,9.926735,0.089673797,1620000000000 ,1620000000000 ,1620000000000 ,1616812309630 -1616812309663 ,112.5730054,26.89253605,61.60315323,180.7194914,181.4447182,9.923793,0.089652537,1620000000000 ,1620000000000 ,1620000000000 ,1616812309640 -1616812309673 ,112.5730054,26.89253515,61.60233688,180.7214312,181.4370072,9.921065,0.089630986,1620000000000 ,1620000000000 ,1620000000000 ,1616812309650 -1616812309683 ,112.5730054,26.89253426,61.60159302,180.723289,181.4271425,9.9189205,0.08961164,1620000000000 ,1620000000000 ,1620000000000 ,1616812309660 -1616812309693 ,112.5730054,26.89253336,61.60087204,180.7229065,181.4173358,9.917368,0.089598123,1620000000000 ,1620000000000 ,1620000000000 ,1616812309670 -1616812309701 ,112.5730053,26.89253246,61.6001358,180.7246277,181.4167161,9.917403,0.089592873,1620000000000 ,1620000000000 ,1620000000000 ,1616812309680 -1616812309712 ,112.5730053,26.89253157,61.59938049,180.7252015,181.4121831,9.917533,0.089595605,1620000000000 ,1620000000000 ,1620000000000 ,1616812309690 -1616812309734 ,112.5730053,26.89253067,61.59861755,180.72542,181.4017085,9.916247,0.089586751,1620000000000 ,1620000000000 ,1620000000000 ,1616812309700 -1616812309737 ,112.5730053,26.89252978,61.59785461,180.7249556,181.3972655,9.914979,0.089574633,1620000000000 ,1620000000000 ,1620000000000 ,1616812309710 -1616812309743 ,112.5730053,26.89252888,61.59708023,180.7249829,181.4017435,9.911845,0.089550936,1620000000000 ,1620000000000 ,1620000000000 ,1616812309720 -1616812309754 ,112.5730052,26.89252799,61.59628296,180.7259938,181.4047933,9.909104,0.089521649,1620000000000 ,1620000000000 ,1620000000000 ,1616812309730 -1616812309769 ,112.5730052,26.89252709,61.59545517,180.7242453,181.4148693,9.908554,0.089510485,1620000000000 ,1620000000000 ,1620000000000 ,1616812309740 -1616812309774 ,112.5730052,26.8925262,61.59460831,180.7218137,181.4150633,9.9085865,0.089508003,1620000000000 ,1620000000000 ,1620000000000 ,1616812309750 -1616812309782 ,112.5730052,26.8925253,61.59373474,180.7173331,181.4134396,9.909857,0.089514935,1620000000000 ,1620000000000 ,1620000000000 ,1616812309760 -1616812309793 ,112.5730051,26.89252441,61.59281158,180.713918,181.4200578,9.911513,0.089528426,1620000000000 ,1620000000000 ,1620000000000 ,1616812309770 -1616812309804 ,112.5730051,26.89252351,61.59183884,180.7078528,181.4294862,9.912147,0.089534526,1620000000000 ,1620000000000 ,1620000000000 ,1616812309780 -1616812309813 ,112.5730051,26.89252262,61.5908432,180.702334,181.4315487,9.910744,0.08952456,1620000000000 ,1620000000000 ,1620000000000 ,1616812309790 -1616812309822 ,112.5730051,26.89252172,61.58982849,180.6955311,181.4334789,9.909387,0.08950958,1620000000000 ,1620000000000 ,1620000000000 ,1616812309800 -1616812309833 ,112.5730051,26.89252083,61.58877182,180.6879086,181.4370058,9.907504,0.089492128,1620000000000 ,1620000000000 ,1620000000000 ,1616812309810 -1616812309846 ,112.573005,26.89251993,61.587677,180.6821166,181.4449851,9.904674,0.089465343,1620000000000 ,1620000000000 ,1620000000000 ,1616812309830 -1616812309853 ,112.573005,26.89251904,61.58659363,180.6715982,181.4537493,9.904856,0.089460924,1620000000000 ,1620000000000 ,1620000000000 ,1616812309840 -1616812309863 ,112.573005,26.89251814,61.58554459,180.6614622,181.4497741,9.90483,0.089462564,1620000000000 ,1620000000000 ,1620000000000 ,1616812309850 -1616812309873 ,112.573005,26.89251725,61.58449554,180.6497142,181.4491375,9.907344,0.089475112,1620000000000 ,1620000000000 ,1620000000000 ,1616812309860 -1616812309884 ,112.5730049,26.89251546,61.58230591,180.6239781,181.4548161,9.9112835,0.179005222,1620000000000 ,1620000000000 ,1620000000000 ,1616812309870 -1616812309894 ,112.5730049,26.89251457,61.58120728,180.6120935,181.4526774,9.912155,0.089523498,1620000000000 ,1620000000000 ,1620000000000 ,1616812309880 -1616812309904 ,112.5730049,26.89251457,61.58120728,180.6120935,-400,9.912155,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812309890 -1616812309914 ,112.5730049,26.89251278,61.57911301,180.5874502,181.4097651,9.906823,0.178990822,1620000000000 ,1620000000000 ,1620000000000 ,1616812309900 -1616812309925 ,112.5730048,26.89251188,61.5780983,180.5762487,181.3794123,9.906209,0.089469201,1620000000000 ,1620000000000 ,1620000000000 ,1616812309910 -1616812309935 ,112.5730048,26.89251099,61.57705688,180.5638997,181.3723057,9.90897,0.089485145,1620000000000 ,1620000000000 ,1620000000000 ,1616812309920 -1616812309944 ,112.5730048,26.89251009,61.5759697,180.5532173,181.3647854,9.912536,0.089515019,1620000000000 ,1620000000000 ,1620000000000 ,1616812309930 -1616812309954 ,112.5730048,26.8925092,61.57488251,180.5414694,181.3495638,9.914198,0.089533649,1620000000000 ,1620000000000 ,1620000000000 ,1616812309940 -1616812309964 ,112.5730047,26.8925083,61.57386017,180.5292843,181.3307882,9.9140215,0.089537958,1620000000000 ,1620000000000 ,1620000000000 ,1616812309950 -1616812309975 ,112.5730047,26.89250741,61.5729332,180.5159245,181.3051612,9.912471,0.089528966,1620000000000 ,1620000000000 ,1620000000000 ,1616812309960 -1616812309985 ,112.5730047,26.89250651,61.57205582,180.5040126,181.2902684,9.912033,0.089523755,1620000000000 ,1620000000000 ,1620000000000 ,1616812309970 -1616812309995 ,112.5730047,26.89250562,61.57118988,180.4934395,181.2803622,9.910647,0.089513398,1620000000000 ,1620000000000 ,1620000000000 ,1616812309980 -1616812310007 ,112.5730047,26.89250562,61.57118988,180.4934395,-400,9.910647,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812309980 -1616812310016 ,112.5730047,26.89250383,61.56967926,180.4694246,181.2403694,9.9093,0.179004399,1620000000000 ,1620000000000 ,1620000000000 ,1616812310000 -1616812310026 ,112.5730046,26.89250293,61.56911469,180.4578679,181.1975276,9.911347,0.089519913,1620000000000 ,1620000000000 ,1620000000000 ,1616812310010 -1616812310035 ,112.5730046,26.89250204,61.5685997,180.4491799,181.1801768,9.913543,0.089544019,1620000000000 ,1620000000000 ,1620000000000 ,1616812310020 -1616812310047 ,112.5730046,26.89250114,61.56806946,180.440847,181.1663274,9.913482,0.089548671,1620000000000 ,1620000000000 ,1620000000000 ,1616812310030 -1616812310055 ,112.5730046,26.89250025,61.5675354,180.4305471,181.1457266,9.913013,0.08954343,1620000000000 ,1620000000000 ,1620000000000 ,1616812310040 -1616812310065 ,112.5730046,26.89249935,61.56700897,180.419209,181.1094797,9.911757,0.089533636,1620000000000 ,1620000000000 ,1620000000000 ,1616812310050 -1616812310075 ,112.5730045,26.89249846,61.5664711,180.4084446,181.0918341,9.911866,0.089530199,1620000000000 ,1620000000000 ,1620000000000 ,1616812310060 -1616812310087 ,112.5730045,26.89249756,61.56589508,180.397571,181.0935729,9.912652,0.089535663,1620000000000 ,1620000000000 ,1620000000000 ,1616812310070 -1616812310096 ,112.5730045,26.89249667,61.56531143,180.3887737,181.0977798,9.912182,0.089534386,1620000000000 ,1620000000000 ,1620000000000 ,1616812310080 -1616812310107 ,112.5730045,26.89249577,61.56482315,180.3797305,181.0809969,9.91182,0.089534733,1620000000000 ,1620000000000 ,1620000000000 ,1616812310090 -1616812310120 ,112.5730045,26.89249488,61.56447983,180.3709606,181.0436362,9.912209,0.089543245,1620000000000 ,1620000000000 ,1620000000000 ,1616812310100 -1616812310129 ,112.5730045,26.89249398,61.5642128,180.3625731,181.023947,9.913013,0.089550206,1620000000000 ,1620000000000 ,1620000000000 ,1616812310110 -1616812310137 ,112.5730044,26.89249309,61.56391144,180.3575187,181.0238605,9.914474,0.089563574,1620000000000 ,1620000000000 ,1620000000000 ,1616812310120 -1616812310147 ,112.5730044,26.89249219,61.56353378,180.3485302,181.033491,9.914632,0.08956627,1620000000000 ,1620000000000 ,1620000000000 ,1616812310130 -1616812310156 ,112.5730044,26.89249129,61.56315231,180.3370555,181.0201149,9.914494,0.08956688,1620000000000 ,1620000000000 ,1620000000000 ,1616812310140 -1616812310167 ,112.5730044,26.8924904,61.56281281,180.3260179,181.0030113,9.914476,0.089568063,1620000000000 ,1620000000000 ,1620000000000 ,1616812310150 -1616812310178 ,112.5730044,26.8924895,61.56248856,180.3157453,181.0043453,9.915116,0.089573074,1620000000000 ,1620000000000 ,1620000000000 ,1616812310160 -1616812310187 ,112.5730044,26.89248861,61.5621376,180.3055547,181.0123578,9.916,0.089582065,1620000000000 ,1620000000000 ,1620000000000 ,1616812310170 -1616812310197 ,112.5730043,26.89248771,61.56178665,180.2952821,181.0210011,9.915397,0.089582696,1620000000000 ,1620000000000 ,1620000000000 ,1616812310180 -1616812310210 ,112.5730043,26.89248682,61.56149292,180.2854466,180.99991,9.914826,0.089578248,1620000000000 ,1620000000000 ,1620000000000 ,1616812310190 -1616812310218 ,112.5730043,26.89248592,61.5612793,180.2660215,180.8653101,9.922494,0.089760242,1620000000000 ,1620000000000 ,1620000000000 ,1616812310200 -1616812310229 ,112.5730043,26.89248502,61.56119156,180.2561314,180.6987562,9.930232,0.090028803,1620000000000 ,1620000000000 ,1620000000000 ,1616812310210 -1616812310239 ,112.5730043,26.89248412,61.56101608,180.2464599,180.7111779,9.933588,0.090082088,1620000000000 ,1620000000000 ,1620000000000 ,1616812310220 -1616812310248 ,112.5730043,26.89248322,61.56080246,180.2353403,180.6914944,9.928584,0.090047855,1620000000000 ,1620000000000 ,1620000000000 ,1616812310230 -1616812310258 ,112.5730043,26.89248232,61.56061172,180.2225269,180.6537376,9.921908,0.089995266,1620000000000 ,1620000000000 ,1620000000000 ,1616812310240 -1616812310269 ,112.5730043,26.89248142,61.56046295,180.2097681,180.6239747,9.918045,0.089955031,1620000000000 ,1620000000000 ,1620000000000 ,1616812310250 -1616812310277 ,112.5730043,26.89248052,61.56029129,180.200643,180.5991845,9.918343,0.089948315,1620000000000 ,1620000000000 ,1620000000000 ,1616812310260 -1616812310295 ,112.5730042,26.89247962,61.56007385,180.1917364,180.5828618,9.921099,0.089969271,1620000000000 ,1620000000000 ,1620000000000 ,1616812310270 -1616812310298 ,112.5730042,26.89247872,61.55979919,180.1832943,180.5561538,9.924375,0.089996373,1620000000000 ,1620000000000 ,1620000000000 ,1616812310280 -1616812310308 ,112.5730042,26.89247782,61.55947876,180.1754805,180.5319994,9.929594,0.090039659,1620000000000 ,1620000000000 ,1620000000000 ,1616812310290 -1616812310317 ,112.5730042,26.89247692,61.55909729,180.1682679,180.5134278,9.93261,0.09007222,1620000000000 ,1620000000000 ,1620000000000 ,1616812310300 -1616812310335 ,112.5730042,26.89247602,61.55865097,180.1617109,180.4937356,9.932294,0.090078864,1620000000000 ,1620000000000 ,1620000000000 ,1616812310310 -1616812310340 ,112.5730042,26.89247512,61.55816269,180.1576401,180.4867219,9.927287,0.090042756,1620000000000 ,1620000000000 ,1620000000000 ,1616812310320 -1616812310353 ,112.5730042,26.89247422,61.55767059,180.1541703,180.4903862,9.921795,0.089995087,1620000000000 ,1620000000000 ,1620000000000 ,1616812310330 -1616812310360 ,112.5730042,26.89247332,61.55719757,180.1540884,180.4902719,9.919119,0.089966079,1620000000000 ,1620000000000 ,1620000000000 ,1616812310340 -1616812310370 ,112.5730042,26.89247242,61.55671692,180.1539245,180.4921121,9.920151,0.08996538,1620000000000 ,1620000000000 ,1620000000000 ,1616812310350 -1616812310379 ,112.5730042,26.89247152,61.55613327,180.152094,180.5013944,9.925241,0.090000157,1620000000000 ,1620000000000 ,1620000000000 ,1616812310360 -1616812310388 ,112.5730042,26.89247062,61.5553894,180.1531048,180.5233594,9.932838,0.090055682,1620000000000 ,1620000000000 ,1620000000000 ,1616812310370 -1616812310398 ,112.5730042,26.89246972,61.55450058,180.151247,180.5416551,9.93856,0.090105479,1620000000000 ,1620000000000 ,1620000000000 ,1616812310380 -1616812310411 ,112.5730042,26.89246881,61.55357361,180.1486242,180.5549262,9.939274,0.090126491,1620000000000 ,1620000000000 ,1620000000000 ,1616812310390 -1616812310418 ,112.5730041,26.89246791,61.55267715,180.1470396,180.5494939,9.936745,0.090111497,1620000000000 ,1620000000000 ,1620000000000 ,1616812310400 -1616812310429 ,112.5730041,26.89246701,61.55181122,180.1466025,180.5550095,9.932634,0.090075851,1620000000000 ,1620000000000 ,1620000000000 ,1616812310410 -1616812310438 ,112.5730041,26.89246611,61.55094147,180.1474221,180.5800684,9.930721,0.090054674,1620000000000 ,1620000000000 ,1620000000000 ,1616812310420 -1616812310451 ,112.5730041,26.89246521,61.55001831,180.1493073,180.6082816,9.931402,0.090051772,1620000000000 ,1620000000000 ,1620000000000 ,1616812310430 -1616812310459 ,112.5730041,26.89246431,61.54901505,180.1503728,180.6256376,9.934967,0.090073199,1620000000000 ,1620000000000 ,1620000000000 ,1616812310440 -1616812310469 ,112.5730041,26.89246341,61.54784393,180.1519574,180.7381355,9.938215,0.089934893,1620000000000 ,1620000000000 ,1620000000000 ,1616812310450 -1616812310481 ,112.5730041,26.89246251,61.54650879,180.1548807,180.8413663,9.94106,0.08979313,1620000000000 ,1620000000000 ,1620000000000 ,1616812310460 -1616812310490 ,112.5730041,26.89246162,61.54502869,180.1568205,180.8112494,9.940646,0.089787189,1620000000000 ,1620000000000 ,1620000000000 ,1616812310470 -1616812310500 ,112.5730041,26.89246072,61.54328537,180.1603448,180.780615,9.948241,0.089820923,1620000000000 ,1620000000000 ,1620000000000 ,1616812310480 -1616812310511 ,112.573004,26.89245982,61.5411644,180.1673116,180.7759042,9.94841,0.089810549,1620000000000 ,1620000000000 ,1620000000000 ,1616812310490 -1616812310520 ,112.573004,26.89245892,61.53873825,180.1738686,180.7819811,9.956189,0.089862169,1620000000000 ,1620000000000 ,1620000000000 ,1616812310500 -1616812310531 ,112.573004,26.89245802,61.53620911,180.1792781,180.734412,9.962417,0.089910102,1620000000000 ,1620000000000 ,1620000000000 ,1616812310510 -1616812310543 ,112.573004,26.89245712,61.53386688,180.1850974,180.6894444,9.959975,0.089916527,1620000000000 ,1620000000000 ,1620000000000 ,1616812310520 -1616812310550 ,112.573004,26.89245623,61.53176498,180.1903977,180.6911342,9.94793,0.089841023,1620000000000 ,1620000000000 ,1620000000000 ,1616812310530 -1616812310568 ,112.573004,26.89245533,61.52982712,180.1970093,180.7296075,9.937631,0.089741793,1620000000000 ,1620000000000 ,1620000000000 ,1616812310540 -1616812310571 ,112.573004,26.89245443,61.52791595,180.200479,180.7558557,9.941358,0.089732663,1620000000000 ,1620000000000 ,1620000000000 ,1616812310550 -1616812310580 ,112.573004,26.89245353,61.52588272,180.2044132,180.7771122,9.956505,0.089846982,1620000000000 ,1620000000000 ,1620000000000 ,1616812310560 -1616812310591 ,112.5730039,26.89245263,61.5236702,180.20985,180.7905768,9.971577,0.08997836,1620000000000 ,1620000000000 ,1620000000000 ,1616812310570 -1616812310602 ,112.5730039,26.89245173,61.5213623,180.216407,180.7928501,9.973387,0.090028275,1620000000000 ,1620000000000 ,1620000000000 ,1616812310580 -1616812310611 ,112.5730039,26.89245083,61.51922607,180.2175272,180.8074577,9.962855,0.089962431,1620000000000 ,1620000000000 ,1620000000000 ,1616812310590 -1616812310624 ,112.5730039,26.89244993,61.51752853,180.2207237,180.8470636,9.950791,0.089864711,1620000000000 ,1620000000000 ,1620000000000 ,1616812310600 -1616812310633 ,112.5730039,26.89244904,61.51617813,180.223647,180.8842587,9.948154,0.089835879,1620000000000 ,1620000000000 ,1620000000000 ,1616812310610 -1616812310642 ,112.5730039,26.89244814,61.51499939,180.2241934,180.9073614,9.9488125,0.089846933,1620000000000 ,1620000000000 ,1620000000000 ,1616812310620 -1616812310652 ,112.5730039,26.89244724,61.51381302,180.2242754,180.9299616,9.952725,0.089872376,1620000000000 ,1620000000000 ,1620000000000 ,1616812310630 -1616812310661 ,112.5730039,26.89244634,61.5125885,180.2213521,180.9512773,9.954987,0.089895418,1620000000000 ,1620000000000 ,1620000000000 ,1616812310640 -1616812310673 ,112.5730038,26.89244544,61.51133728,180.2193577,180.9776872,9.959931,0.089937551,1620000000000 ,1620000000000 ,1620000000000 ,1616812310650 -1616812310681 ,112.5730038,26.89244454,61.51012421,180.218019,180.9821224,9.963877,0.08997409,1620000000000 ,1620000000000 ,1620000000000 ,1616812310660 -1616812310691 ,112.5730038,26.89244364,61.5090332,180.2182648,180.9814063,9.965529,0.089998496,1620000000000 ,1620000000000 ,1620000000000 ,1616812310670 -1616812310702 ,112.5730038,26.89244274,61.50818634,180.2160519,180.9974621,9.961567,0.089993415,1620000000000 ,1620000000000 ,1620000000000 ,1616812310680 -1616812310711 ,112.5730038,26.89244184,61.50759125,180.214358,180.9974395,9.954307,0.089940101,1620000000000 ,1620000000000 ,1620000000000 ,1616812310690 -1616812310721 ,112.5730038,26.89244094,61.50714493,180.2110795,180.9864486,9.952851,0.089916401,1620000000000 ,1620000000000 ,1620000000000 ,1616812310700 -1616812310733 ,112.5730037,26.89244004,61.50669861,180.2118171,180.9737705,9.956613,0.089940789,1620000000000 ,1620000000000 ,1620000000000 ,1616812310710 -1616812310742 ,112.5730037,26.89243914,61.50621033,180.2117079,180.9728394,9.961945,0.08998937,1620000000000 ,1620000000000 ,1620000000000 ,1616812310720 -1616812310753 ,112.5730037,26.89243824,61.50578308,180.210014,180.9604812,9.962917,0.090014852,1620000000000 ,1620000000000 ,1620000000000 ,1616812310730 -1616812310763 ,112.5730037,26.89243734,61.50553131,180.2101233,180.9424771,9.960314,0.09000598,1620000000000 ,1620000000000 ,1620000000000 ,1616812310740 -1616812310772 ,112.5730037,26.89243734,61.50553131,180.2100959,-400,9.959651,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812310750 -1616812310782 ,112.5730037,26.89243554,61.50539017,180.2122543,180.9500564,9.959783,0.180012013,1620000000000 ,1620000000000 ,1620000000000 ,1616812310760 -1616812310793 ,112.5730037,26.89243464,61.50530624,180.2123909,180.9580665,9.961487,0.090021152,1620000000000 ,1620000000000 ,1620000000000 ,1616812310770 -1616812310803 ,112.5730036,26.89243374,61.50515747,180.2123362,180.9330209,9.963115,0.090035018,1620000000000 ,1620000000000 ,1620000000000 ,1616812310780 -1616812310812 ,112.5730036,26.89243284,61.50497437,180.2142214,180.9110939,9.965164,0.090052919,1620000000000 ,1620000000000 ,1620000000000 ,1616812310790 -1616812310822 ,112.5730036,26.89243194,61.5047493,180.2149864,180.9062363,9.9658785,0.090064853,1620000000000 ,1620000000000 ,1620000000000 ,1616812310800 -1616812310833 ,112.5730036,26.89243104,61.50451279,180.2181829,180.9184391,9.965444,0.090064818,1620000000000 ,1620000000000 ,1620000000000 ,1616812310810 -1616812310843 ,112.5730036,26.89243014,61.50428009,180.2206691,180.9210031,9.965,0.090063068,1620000000000 ,1620000000000 ,1620000000000 ,1616812310820 -1616812310852 ,112.5730036,26.89242924,61.50403595,180.224494,180.9126154,9.964701,0.090063664,1620000000000 ,1620000000000 ,1620000000000 ,1616812310830 -1616812310862 ,112.5730036,26.89242834,61.50370407,180.2269255,180.9093687,9.964992,0.090060329,1620000000000 ,1620000000000 ,1620000000000 ,1616812310840 -1616812310876 ,112.5730035,26.89242744,61.50322723,180.2300674,180.9066899,9.966156,0.09006236,1620000000000 ,1620000000000 ,1620000000000 ,1616812310850 -1616812310883 ,112.5730035,26.89242654,61.50259781,180.2321984,180.9002536,9.968268,0.090075157,1620000000000 ,1620000000000 ,1620000000000 ,1616812310860 -1616812310893 ,112.5730035,26.89242564,61.50188446,180.2309144,180.8933964,9.970873,0.090096027,1620000000000 ,1620000000000 ,1620000000000 ,1616812310870 -1616812310903 ,112.5730035,26.89242474,61.50109863,180.2316247,180.8763671,9.974441,0.090121868,1620000000000 ,1620000000000 ,1620000000000 ,1616812310880 -1616812310916 ,112.5730035,26.89242384,61.50022888,180.2312149,180.8678534,9.977683,0.090150226,1620000000000 ,1620000000000 ,1620000000000 ,1616812310900 -1616812310924 ,112.5730035,26.89242293,61.49926758,180.2319525,180.866258,9.979193,0.090163595,1620000000000 ,1620000000000 ,1620000000000 ,1616812310900 -1616812310933 ,112.5730035,26.89242203,61.49821472,180.2350944,180.8482183,9.978658,0.090159971,1620000000000 ,1620000000000 ,1620000000000 ,1616812310920 -1616812310943 ,112.5730034,26.89242113,61.49707413,180.2375806,180.8133907,9.976131,0.090136554,1620000000000 ,1620000000000 ,1620000000000 ,1616812310920 -1616812310953 ,112.5730034,26.89242023,61.49582291,180.2432907,180.7816902,9.974939,0.090116013,1620000000000 ,1620000000000 ,1620000000000 ,1616812310940 -1616812310965 ,112.5730034,26.89241933,61.49445724,180.2482904,180.7688846,9.976798,0.090120635,1620000000000 ,1620000000000 ,1620000000000 ,1616812310950 -1616812310974 ,112.5730034,26.89241753,61.49133301,180.2588635,180.7767532,9.983597,0.180307752,1620000000000 ,1620000000000 ,1620000000000 ,1616812310960 -1616812310984 ,112.5730034,26.89241663,61.48965454,180.2623059,180.7846024,9.985827,0.090185672,1620000000000 ,1620000000000 ,1620000000000 ,1616812310970 -1616812310994 ,112.5730034,26.89241572,61.487957,180.2655024,180.7814921,9.987789,0.090201582,1620000000000 ,1620000000000 ,1620000000000 ,1616812310980 -1616812311005 ,112.5730034,26.89241572,61.487957,180.2655024,-400,9.987789,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812310980 -1616812311014 ,112.5730033,26.89241392,61.48442078,180.2726058,180.7871588,9.989745,0.180428272,1620000000000 ,1620000000000 ,1620000000000 ,1616812311000 -1616812311025 ,112.5730033,26.89241302,61.48249054,180.275775,180.7976224,9.989611,0.090209869,1620000000000 ,1620000000000 ,1620000000000 ,1616812311010 -1616812311035 ,112.5730033,26.89241212,61.48049164,180.2769498,180.8104197,9.991219,0.090215284,1620000000000 ,1620000000000 ,1620000000000 ,1616812311020 -1616812311050 ,112.5730033,26.89241121,61.47847366,180.2780973,180.8286916,9.993172,0.090230502,1620000000000 ,1620000000000 ,1620000000000 ,1616812311030 -1616812311056 ,112.5730033,26.89241031,61.47642517,180.2813758,180.8564124,9.99381,0.090237894,1620000000000 ,1620000000000 ,1620000000000 ,1616812311040 -1616812311069 ,112.5730033,26.89240941,61.47434616,180.2842171,180.879139,9.994778,0.090243046,1620000000000 ,1620000000000 ,1620000000000 ,1616812311050 -1616812311076 ,112.5730033,26.89240851,61.47225952,180.2845177,180.8949847,9.996275,0.090254579,1620000000000 ,1620000000000 ,1620000000000 ,1616812311060 -1616812311086 ,112.5730033,26.8924076,61.47015762,180.283862,180.897382,9.999887,0.090280705,1620000000000 ,1620000000000 ,1620000000000 ,1616812311070 -1616812311095 ,112.5730032,26.8924067,61.46801376,180.2817583,180.8973273,10.002028,0.09029973,1620000000000 ,1620000000000 ,1620000000000 ,1616812311080 -1616812311105 ,112.5730032,26.8924058,61.46585083,180.2808021,180.8991734,10.002508,0.090308236,1620000000000 ,1620000000000 ,1620000000000 ,1616812311090 -1616812311115 ,112.5730032,26.89240489,61.46376038,180.279518,180.9109288,10.000727,0.090299852,1620000000000 ,1620000000000 ,1620000000000 ,1616812311100 -1616812311125 ,112.5730032,26.89240399,61.46183777,180.2795999,180.9014542,9.996094,0.090270885,1620000000000 ,1620000000000 ,1620000000000 ,1616812311110 -1616812311135 ,112.5730032,26.89240309,61.46010971,180.2824959,180.8724701,9.992383,0.090242529,1620000000000 ,1620000000000 ,1620000000000 ,1616812311120 -1616812311145 ,112.5730032,26.89240219,61.45848846,180.2870858,180.8589723,9.990748,0.090227394,1620000000000 ,1620000000000 ,1620000000000 ,1616812311130 -1616812311155 ,112.5730032,26.89240129,61.4568634,180.2918396,180.8593909,9.992931,0.090237551,1620000000000 ,1620000000000 ,1620000000000 ,1616812311140 -1616812311165 ,112.5730031,26.89240038,61.45515823,180.2965388,180.865937,9.996944,0.090265566,1620000000000 ,1620000000000 ,1620000000000 ,1616812311150 -1616812311176 ,112.5730031,26.89239948,61.45338821,180.297659,180.8716969,10.001028,0.090298756,1620000000000 ,1620000000000 ,1620000000000 ,1616812311160 -1616812311186 ,112.5730031,26.89239858,61.45159531,180.297659,180.8865069,10.003259,0.090322019,1620000000000 ,1620000000000 ,1620000000000 ,1616812311170 -1616812311196 ,112.5730031,26.89239767,61.4498291,180.2980141,180.9093814,10.001085,0.09031767,1620000000000 ,1620000000000 ,1620000000000 ,1616812311180 -1616812311205 ,112.5730031,26.89239677,61.4481926,180.298342,180.918742,9.995824,0.090280444,1620000000000 ,1620000000000 ,1620000000000 ,1616812311190 -1616812311216 ,112.5730031,26.89239586,61.44700241,180.3078223,180.6831662,10.022271,0.090801571,1620000000000 ,1620000000000 ,1620000000000 ,1616812311200 -1616812311226 ,112.5730031,26.89239495,61.4463501,180.3096801,180.3283086,10.020187,0.091642088,1620000000000 ,1620000000000 ,1620000000000 ,1616812311210 -1616812311237 ,112.5730031,26.89239403,61.44577026,180.31274,180.3510845,10.022462,0.091657582,1620000000000 ,1620000000000 ,1620000000000 ,1616812311220 -1616812311246 ,112.5730031,26.89239311,61.44514084,180.3168655,180.3867406,10.025478,0.091680001,1620000000000 ,1620000000000 ,1620000000000 ,1616812311230 -1616812311256 ,112.5730031,26.8923922,61.44452286,180.3166469,180.4033681,10.02652,0.091698606,1620000000000 ,1620000000000 ,1620000000000 ,1616812311240 -1616812311266 ,112.573003,26.89239128,61.44400787,180.3151169,180.3899634,10.025976,0.091699895,1620000000000 ,1620000000000 ,1620000000000 ,1616812311250 -1616812311277 ,112.573003,26.89239036,61.44356537,180.3161005,180.3871903,10.026304,0.091703478,1620000000000 ,1620000000000 ,1620000000000 ,1616812311260 -1616812311286 ,112.573003,26.89238945,61.44309998,180.3154175,180.3963073,10.025398,0.091697129,1620000000000 ,1620000000000 ,1620000000000 ,1616812311270 -1616812311297 ,112.573003,26.89238853,61.44260025,180.3149803,180.4106556,10.023795,0.09168274,1620000000000 ,1620000000000 ,1620000000000 ,1616812311280 -1616812311308 ,112.573003,26.89238761,61.44212341,180.3111827,180.4021835,10.02268,0.091670284,1620000000000 ,1620000000000 ,1620000000000 ,1616812311290 -1616812311318 ,112.573003,26.8923867,61.44169235,180.3100626,180.3825258,10.023657,0.091675673,1620000000000 ,1620000000000 ,1620000000000 ,1616812311300 -1616812311329 ,112.573003,26.89238578,61.44125366,180.3099806,180.3763469,10.0249195,0.091686242,1620000000000 ,1620000000000 ,1620000000000 ,1616812311310 -1616812311341 ,112.573003,26.89238486,61.44078064,180.3101172,180.3775312,10.02547,0.091692389,1620000000000 ,1620000000000 ,1620000000000 ,1616812311320 -1616812311348 ,112.573003,26.89238394,61.44030762,180.3087239,180.3790308,10.023879,0.091682352,1620000000000 ,1620000000000 ,1620000000000 ,1616812311330 -1616812311359 ,112.573003,26.89238303,61.4398613,180.3095708,180.3744759,10.023639,0.09167599,1620000000000 ,1620000000000 ,1620000000000 ,1616812311340 -1616812311368 ,112.573003,26.89238211,61.43938828,180.3107729,180.3707445,10.024907,0.091683296,1620000000000 ,1620000000000 ,1620000000000 ,1616812311350 -1616812311378 ,112.573003,26.89238119,61.43884659,180.3116745,180.3738459,10.025612,0.091686515,1620000000000 ,1620000000000 ,1620000000000 ,1616812311360 -1616812311391 ,112.573003,26.89238028,61.43823242,180.3133411,180.3825376,10.025841,0.091687531,1620000000000 ,1620000000000 ,1620000000000 ,1616812311370 -1616812311398 ,112.573003,26.89237936,61.437603,180.3143793,180.3855055,10.0251255,0.091680787,1620000000000 ,1620000000000 ,1620000000000 ,1616812311380 -1616812311408 ,112.573003,26.89237844,61.43698883,180.3167288,180.3702148,10.024435,0.091673256,1620000000000 ,1620000000000 ,1620000000000 ,1616812311390 -1616812311418 ,112.573003,26.89237753,61.436409,180.3162371,180.3648969,10.024491,0.091673559,1620000000000 ,1620000000000 ,1620000000000 ,1616812311400 -1616812311429 ,112.5730029,26.89237661,61.43582916,180.3181222,180.3800536,10.024199,0.091672354,1620000000000 ,1620000000000 ,1620000000000 ,1616812311410 -1616812311438 ,112.5730029,26.89237569,61.43521118,180.3211548,180.3968317,10.023625,0.09166397,1620000000000 ,1620000000000 ,1620000000000 ,1616812311420 -1616812311449 ,112.5730029,26.89237478,61.43457413,180.3221657,180.403862,10.022998,0.091657638,1620000000000 ,1620000000000 ,1620000000000 ,1616812311430 -1616812311459 ,112.5730029,26.89237386,61.43393707,180.3231765,180.4030833,10.022842,0.091654107,1620000000000 ,1620000000000 ,1620000000000 ,1616812311440 -1616812311468 ,112.5730029,26.89237295,61.43310547,180.3236137,180.6304293,10.021939,0.091082875,1620000000000 ,1620000000000 ,1620000000000 ,1616812311450 -1616812311478 ,112.5730029,26.89237204,61.43208313,180.3243513,180.8761183,10.021184,0.090512804,1620000000000 ,1620000000000 ,1620000000000 ,1616812311460 -1616812311489 ,112.5730029,26.89237114,61.43112183,180.3252802,180.8889253,10.020463,0.090508845,1620000000000 ,1620000000000 ,1620000000000 ,1616812311470 -1616812311499 ,112.5730029,26.89237023,61.4302597,180.3265643,180.8904833,10.019934,0.09050687,1620000000000 ,1620000000000 ,1620000000000 ,1616812311480 -1616812311510 ,112.5730029,26.89236933,61.42948532,180.3284495,180.8884114,10.019142,0.090504928,1620000000000 ,1620000000000 ,1620000000000 ,1616812311490 -1616812311519 ,112.5730028,26.89236843,61.4287262,180.3326295,180.8807968,10.018559,0.090498824,1620000000000 ,1620000000000 ,1620000000000 ,1616812311500 -1616812311531 ,112.5730028,26.89236752,61.42795563,180.3362085,180.8875254,10.018053,0.090493336,1620000000000 ,1620000000000 ,1620000000000 ,1616812311510 -1616812311540 ,112.5730028,26.89236662,61.42720032,180.3392412,180.8956081,10.016121,0.090480327,1620000000000 ,1620000000000 ,1620000000000 ,1616812311520 -1616812311550 ,112.5730028,26.89236571,61.42653656,180.3405799,180.8958737,10.013831,0.090464862,1620000000000 ,1620000000000 ,1620000000000 ,1616812311530 -1616812311561 ,112.5730028,26.89236481,61.42597961,180.343148,180.8897404,10.011347,0.090446169,1620000000000 ,1620000000000 ,1620000000000 ,1616812311540 -1616812311570 ,112.5730028,26.8923639,61.42547607,180.343831,180.8839474,10.010352,0.090435504,1620000000000 ,1620000000000 ,1620000000000 ,1616812311550 -1616812311579 ,112.5730028,26.892363,61.42498016,180.3446233,180.8892769,10.009557,0.090430485,1620000000000 ,1620000000000 ,1620000000000 ,1616812311560 -1616812311590 ,112.5730027,26.89236209,61.42449951,180.3459347,180.8958946,10.009859,0.090430764,1620000000000 ,1620000000000 ,1620000000000 ,1616812311570 -1616812311600 ,112.5730027,26.89236119,61.4240303,180.3484756,180.8885044,10.010252,0.090434965,1620000000000 ,1620000000000 ,1620000000000 ,1616812311580 -1616812311610 ,112.5730027,26.89236029,61.42357635,180.3520273,180.8806947,10.00921,0.090430631,1620000000000 ,1620000000000 ,1620000000000 ,1616812311590 -1616812311620 ,112.5730027,26.89235938,61.42313004,180.3538578,180.8690439,10.007058,0.09041492,1620000000000 ,1620000000000 ,1620000000000 ,1616812311600 -1616812311631 ,112.5730027,26.89235848,61.42269516,180.3581198,180.8641811,10.004832,0.090393839,1620000000000 ,1620000000000 ,1620000000000 ,1616812311610 -1616812311641 ,112.5730027,26.89235757,61.42224121,180.3610704,180.8634298,10.003276,0.09037592,1620000000000 ,1620000000000 ,1620000000000 ,1616812311620 -1616812311651 ,112.5730027,26.89235667,61.42173767,180.3645675,180.8606265,10.002224,0.090365819,1620000000000 ,1620000000000 ,1620000000000 ,1616812311630 -1616812311661 ,112.5730027,26.89235577,61.42118835,180.3659882,180.8646701,10.001311,0.090354403,1620000000000 ,1620000000000 ,1620000000000 ,1616812311640 -1616812311671 ,112.5730026,26.89235486,61.42063141,180.3676821,180.8603942,10.000715,0.090346783,1620000000000 ,1620000000000 ,1620000000000 ,1616812311650 -1616812311681 ,112.5730026,26.89235396,61.42004013,180.3701136,180.8468517,9.999809,0.090339494,1620000000000 ,1620000000000 ,1620000000000 ,1616812311660 -1616812311690 ,112.5730026,26.89235306,61.41939163,180.3727637,180.8492169,9.9990835,0.090327993,1620000000000 ,1620000000000 ,1620000000000 ,1616812311670 -1616812311702 ,112.5730026,26.89235215,61.41868591,180.3733101,180.8637685,9.998962,0.090322762,1620000000000 ,1620000000000 ,1620000000000 ,1616812311680 -1616812311712 ,112.5730026,26.89235125,61.41796875,180.3740751,180.8718436,9.998738,0.090321005,1620000000000 ,1620000000000 ,1620000000000 ,1616812311690 -1616812311721 ,112.5730026,26.89235035,61.41726685,180.3742117,180.8736977,9.998218,0.09031863,1620000000000 ,1620000000000 ,1620000000000 ,1616812311700 -1616812311732 ,112.5730026,26.89234944,61.41659164,180.3754138,180.8816811,9.99623,0.090304445,1620000000000 ,1620000000000 ,1620000000000 ,1616812311710 -1616812311742 ,112.5730025,26.89234854,61.41596985,180.3755778,180.8950928,9.992316,0.090276067,1620000000000 ,1620000000000 ,1620000000000 ,1616812311720 -1616812311752 ,112.5730025,26.89234764,61.41540527,180.3771077,180.9026939,9.988136,0.090241463,1620000000000 ,1620000000000 ,1620000000000 ,1616812311730 -1616812311761 ,112.5730025,26.89234674,61.41485596,180.3769711,180.9033679,9.986037,0.090217226,1620000000000 ,1620000000000 ,1620000000000 ,1616812311740 -1616812311773 ,112.5730025,26.89234584,61.41425705,180.3768892,180.8996741,9.985031,0.090202228,1620000000000 ,1620000000000 ,1620000000000 ,1616812311750 -1616812311783 ,112.5730025,26.89234493,61.41355896,180.3786923,180.9128194,9.985882,0.090202853,1620000000000 ,1620000000000 ,1620000000000 ,1616812311760 -1616812311794 ,112.5730025,26.89234403,61.41278458,180.3804135,180.9215442,9.986905,0.090210944,1620000000000 ,1620000000000 ,1620000000000 ,1616812311770 -1616812311802 ,112.5730025,26.89234313,61.41199875,180.3815064,180.9218018,9.985769,0.090203753,1620000000000 ,1620000000000 ,1620000000000 ,1616812311780 -1616812311817 ,112.5730024,26.89234223,61.41127396,180.3815064,180.9231419,9.983366,0.090187305,1620000000000 ,1620000000000 ,1620000000000 ,1616812311790 -1616812311824 ,112.5730024,26.89234133,61.41062164,180.3808233,180.9249486,9.980201,0.090164071,1620000000000 ,1620000000000 ,1620000000000 ,1616812311800 -1616812311835 ,112.5730024,26.89234043,61.40999603,180.3804409,180.9280771,9.978079,0.090143197,1620000000000 ,1620000000000 ,1620000000000 ,1616812311810 -1616812311843 ,112.5730024,26.89233952,61.40935516,180.3819981,180.9308446,9.977549,0.090133707,1620000000000 ,1620000000000 ,1620000000000 ,1616812311820 -1616812311853 ,112.5730024,26.89233862,61.40869522,180.3819981,180.9210221,9.976305,0.090127608,1620000000000 ,1620000000000 ,1620000000000 ,1616812311830 -1616812311863 ,112.5730024,26.89233772,61.40803909,180.3830363,180.9054663,9.974105,0.09010933,1620000000000 ,1620000000000 ,1620000000000 ,1616812311840 -1616812311873 ,112.5730024,26.89233682,61.40739059,180.3832276,180.8997664,9.972815,0.090095421,1620000000000 ,1620000000000 ,1620000000000 ,1616812311850 -1616812311882 ,112.5730023,26.89233592,61.40673447,180.3851127,180.9019965,9.970763,0.090079764,1620000000000 ,1620000000000 ,1620000000000 ,1616812311860 -1616812311893 ,112.5730023,26.89233502,61.40607452,180.3889923,180.8998657,9.968063,0.09005607,1620000000000 ,1620000000000 ,1620000000000 ,1616812311870 -1616812311904 ,112.5730023,26.89233412,61.40546417,180.3918336,180.8904232,9.965293,0.090035813,1620000000000 ,1620000000000 ,1620000000000 ,1616812311880 -1616812311914 ,112.5730023,26.89233322,61.40493011,180.3947296,180.8698409,9.96351,0.09001943,1620000000000 ,1620000000000 ,1620000000000 ,1616812311890 -1616812311923 ,112.5730023,26.89233232,61.4044342,180.3987458,180.8640573,9.962874,0.090013924,1620000000000 ,1620000000000 ,1620000000000 ,1616812311900 -1616812311940 ,112.5730023,26.89233142,61.40396118,180.4024067,180.8720483,9.961546,0.090006806,1620000000000 ,1620000000000 ,1620000000000 ,1616812311910 -1616812311944 ,112.5730023,26.89233052,61.40354538,180.406177,180.877172,9.957671,0.089982833,1620000000000 ,1620000000000 ,1620000000000 ,1616812311930 -1616812311953 ,112.5730022,26.89232962,61.40323257,180.4097833,180.8749264,9.953793,0.089952351,1620000000000 ,1620000000000 ,1620000000000 ,1616812311940 -1616812311963 ,112.5730022,26.89232782,61.40286636,180.4166135,180.8723793,9.9457245,0.179812878,1620000000000 ,1620000000000 ,1620000000000 ,1616812311950 -1616812311974 ,112.5730022,26.89232782,61.40286636,180.4166135,-400,9.9457245,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812311960 -1616812311984 ,112.5730022,26.89232603,61.40235138,180.4264763,180.889671,9.944324,0.179736873,1620000000000 ,1620000000000 ,1620000000000 ,1616812311970 -1616812311995 ,112.5730022,26.89232513,61.40192032,180.4303832,180.9099501,9.944307,0.089863113,1620000000000 ,1620000000000 ,1620000000000 ,1616812311980 -1616812312003 ,112.5730022,26.89232513,61.40192032,180.4303832,-400,9.944307,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812311980 -1616812312019 ,112.5730021,26.89232333,61.40082932,180.4335797,180.918546,9.940953,0.179676796,1620000000000 ,1620000000000 ,1620000000000 ,1616812312000 -1616812312025 ,112.5730021,26.89232243,61.40017319,180.436667,180.9432814,9.938544,0.089809168,1620000000000 ,1620000000000 ,1620000000000 ,1616812312010 -1616812312034 ,112.5730021,26.89232154,61.39945984,180.438115,180.964534,9.935631,0.089781352,1620000000000 ,1620000000000 ,1620000000000 ,1616812312020 -1616812312045 ,112.5730021,26.89232064,61.39875031,180.4386887,180.9684655,9.93343,0.089759452,1620000000000 ,1620000000000 ,1620000000000 ,1616812312030 -1616812312059 ,112.5730021,26.89231974,61.39804077,180.4392351,180.9635939,9.931614,0.089743109,1620000000000 ,1620000000000 ,1620000000000 ,1616812312040 -1616812312068 ,112.5730021,26.89231884,61.39727402,180.4412569,180.9713579,9.931763,0.089737642,1620000000000 ,1620000000000 ,1620000000000 ,1616812312050 -1616812312076 ,112.5730021,26.89231795,61.39641953,180.4422677,180.988842,9.930255,0.089725304,1620000000000 ,1620000000000 ,1620000000000 ,1616812312060 -1616812312084 ,112.573002,26.89231705,61.39548111,180.4439889,180.9900228,9.928284,0.089705314,1620000000000 ,1620000000000 ,1620000000000 ,1616812312070 -1616812312095 ,112.573002,26.89231615,61.39449692,180.4459287,180.9839585,9.926281,0.089684815,1620000000000 ,1620000000000 ,1620000000000 ,1616812312080 -1616812312105 ,112.573002,26.89231526,61.39345932,180.4472128,180.9813324,9.924167,0.089661513,1620000000000 ,1620000000000 ,1620000000000 ,1616812312090 -1616812312115 ,112.573002,26.89231436,61.39234161,180.4502727,180.9909084,9.923053,0.089646109,1620000000000 ,1620000000000 ,1620000000000 ,1616812312100 -1616812312125 ,112.573002,26.89231346,61.39112473,180.4530048,181.007366,9.92235,0.089633892,1620000000000 ,1620000000000 ,1620000000000 ,1616812312110 -1616812312135 ,112.573002,26.89231257,61.38983917,180.4531687,181.0164461,9.920276,0.089615443,1620000000000 ,1620000000000 ,1620000000000 ,1616812312120 -1616812312150 ,112.5730019,26.89231167,61.38854599,180.4526223,181.0080295,9.916417,0.08958273,1620000000000 ,1620000000000 ,1620000000000 ,1616812312130 -1616812312155 ,112.5730019,26.89231078,61.38726807,180.453278,181.0014897,9.913561,0.089555504,1620000000000 ,1620000000000 ,1620000000000 ,1616812312140 -1616812312165 ,112.5730019,26.89230988,61.38597107,180.454644,181.0088623,9.91235,0.089537528,1620000000000 ,1620000000000 ,1620000000000 ,1616812312150 -1616812312175 ,112.5730019,26.89230899,61.38462448,180.4564745,181.023846,9.91187,0.08953009,1620000000000 ,1620000000000 ,1620000000000 ,1616812312160 -1616812312186 ,112.5730019,26.89230809,61.38321304,180.4609278,181.0363501,9.911611,0.08952498,1620000000000 ,1620000000000 ,1620000000000 ,1616812312170 -1616812312196 ,112.5730019,26.8923072,61.38176727,180.4622665,181.0377316,9.909696,0.089509384,1620000000000 ,1620000000000 ,1620000000000 ,1616812312180 -1616812312206 ,112.5730019,26.8923063,61.38031006,180.4643429,181.0358043,9.907318,0.089486378,1620000000000 ,1620000000000 ,1620000000000 ,1616812312190 -1616812312216 ,112.5730018,26.8923054,61.37863922,180.4639058,180.9617143,9.92554,0.089800211,1620000000000 ,1620000000000 ,1620000000000 ,1616812312200 -1616812312227 ,112.5730018,26.8923045,61.37661743,180.464944,180.8600205,9.923067,0.090294387,1620000000000 ,1620000000000 ,1620000000000 ,1616812312210 -1616812312237 ,112.5730018,26.8923036,61.37462234,180.4649713,180.8758898,9.919602,0.090268128,1620000000000 ,1620000000000 ,1620000000000 ,1616812312220 -1616812312248 ,112.5730018,26.8923027,61.37268066,180.464015,180.8787577,9.91634,0.090239391,1620000000000 ,1620000000000 ,1620000000000 ,1616812312230 -1616812312257 ,112.5730018,26.89230179,61.37081146,180.4643429,180.8728921,9.91316,0.090212153,1620000000000 ,1620000000000 ,1620000000000 ,1616812312240 -1616812312268 ,112.5730018,26.89230089,61.36898041,180.4645615,180.8787957,9.910808,0.09019018,1620000000000 ,1620000000000 ,1620000000000 ,1616812312250 -1616812312276 ,112.5730018,26.89229999,61.36717987,180.465463,180.8888145,9.908044,0.090168893,1620000000000 ,1620000000000 ,1620000000000 ,1616812312260 -1616812312288 ,112.5730017,26.89229909,61.36543655,180.4657909,180.8951361,9.904441,0.090139888,1620000000000 ,1620000000000 ,1620000000000 ,1616812312270 -1616812312297 ,112.5730017,26.89229819,61.36378479,180.466392,180.8916088,9.900509,0.090108881,1620000000000 ,1620000000000 ,1620000000000 ,1616812312280 -1616812312307 ,112.5730017,26.89229729,61.36217117,180.4686323,180.8827264,9.897279,0.090078435,1620000000000 ,1620000000000 ,1620000000000 ,1616812312290 -1616812312316 ,112.5730017,26.89229639,61.36055756,180.4693153,180.8814835,9.894975,0.090055878,1620000000000 ,1620000000000 ,1620000000000 ,1616812312300 -1616812312327 ,112.5730017,26.89229549,61.3589325,180.4706267,180.8850322,9.892954,0.090035591,1620000000000 ,1620000000000 ,1620000000000 ,1616812312310 -1616812312338 ,112.5730017,26.89229459,61.35730362,180.4725118,180.8874069,9.890201,0.090011677,1620000000000 ,1620000000000 ,1620000000000 ,1616812312320 -1616812312348 ,112.5730017,26.89229369,61.35570145,180.4734134,180.8872351,9.886599,0.089982214,1620000000000 ,1620000000000 ,1620000000000 ,1616812312330 -1616812312357 ,112.5730016,26.89229279,61.35415649,180.4738778,180.8874868,9.88192,0.089945496,1620000000000 ,1620000000000 ,1620000000000 ,1616812312340 -1616812312368 ,112.5730016,26.89229189,61.35267258,180.4739052,180.8925614,9.877798,0.089906356,1620000000000 ,1620000000000 ,1620000000000 ,1616812312350 -1616812312378 ,112.5730016,26.89229099,61.35120773,180.4769651,180.8990382,9.875393,0.08988182,1620000000000 ,1620000000000 ,1620000000000 ,1616812312360 -1616812312390 ,112.5730016,26.89229009,61.34972763,180.4760362,180.9022839,9.873269,0.089862105,1620000000000 ,1620000000000 ,1620000000000 ,1616812312370 -1616812312398 ,112.5730016,26.89228919,61.34823608,180.4758723,180.9045728,9.870537,0.08983746,1620000000000 ,1620000000000 ,1620000000000 ,1616812312380 -1616812312408 ,112.5730016,26.89228829,61.34677505,180.4745609,180.9060134,9.867502,0.089810379,1620000000000 ,1620000000000 ,1620000000000 ,1616812312390 -1616812312419 ,112.5730016,26.8922874,61.34538269,180.4745882,180.9074354,9.864362,0.089785584,1620000000000 ,1620000000000 ,1620000000000 ,1616812312400 -1616812312431 ,112.5730015,26.8922865,61.34406281,180.4754078,180.9050002,9.862237,0.089767227,1620000000000 ,1620000000000 ,1620000000000 ,1616812312410 -1616812312441 ,112.5730015,26.8922856,61.34276199,180.4784404,180.9007866,9.85996,0.089747519,1620000000000 ,1620000000000 ,1620000000000 ,1616812312420 -1616812312448 ,112.5730015,26.8922847,61.34140778,180.4794786,180.901871,9.858339,0.089728363,1620000000000 ,1620000000000 ,1620000000000 ,1616812312430 -1616812312459 ,112.5730015,26.89228381,61.33997726,180.4813364,180.9041509,9.85608,0.089704936,1620000000000 ,1620000000000 ,1620000000000 ,1616812312440 -1616812312468 ,112.5730015,26.89228291,61.3387413,180.4825112,180.9845175,9.853854,0.089347319,1620000000000 ,1620000000000 ,1620000000000 ,1616812312450 -1616812312478 ,112.5730015,26.89228203,61.33775711,180.4824566,181.0732142,9.850537,0.088985622,1620000000000 ,1620000000000 ,1620000000000 ,1616812312460 -1616812312488 ,112.5730015,26.89228114,61.33682251,180.4830849,181.0768182,9.8457775,0.08894644,1620000000000 ,1620000000000 ,1620000000000 ,1616812312470 -1616812312500 ,112.5730014,26.89228025,61.33594513,180.4856258,181.0788326,9.8420515,0.08891345,1620000000000 ,1620000000000 ,1620000000000 ,1616812312480 -1616812312509 ,112.5730014,26.89227936,61.3351059,180.4876202,181.0822752,9.8397665,0.088889995,1620000000000 ,1620000000000 ,1620000000000 ,1616812312490 -1616812312519 ,112.5730014,26.89227847,61.33426666,180.4908167,181.0848057,9.839413,0.08888331,1620000000000 ,1620000000000 ,1620000000000 ,1616812312500 -1616812312529 ,112.5730014,26.89227758,61.33340454,180.4927018,181.088567,9.839034,0.088880449,1620000000000 ,1620000000000 ,1620000000000 ,1616812312510 -1616812312545 ,112.5730014,26.89227669,61.33254623,180.4959803,181.0966686,9.836615,0.088864557,1620000000000 ,1620000000000 ,1620000000000 ,1616812312520 -1616812312553 ,112.5730013,26.8922758,61.3317337,180.4968273,181.1013426,9.8324,0.088833775,1620000000000 ,1620000000000 ,1620000000000 ,1616812312530 -1616812312565 ,112.5730013,26.89227492,61.33100128,180.4989037,181.1038326,9.827196,0.08879231,1620000000000 ,1620000000000 ,1620000000000 ,1616812312540 -1616812312572 ,112.5730013,26.89227403,61.33031082,180.5020182,181.1067181,9.823641,0.088757503,1620000000000 ,1620000000000 ,1620000000000 ,1616812312550 -1616812312581 ,112.5730013,26.89227314,61.32960892,180.506171,181.1070542,9.820572,0.088730925,1620000000000 ,1620000000000 ,1620000000000 ,1616812312560 -1616812312589 ,112.5730013,26.89227225,61.32887268,180.5090397,181.1107372,9.818554,0.088707842,1620000000000 ,1620000000000 ,1620000000000 ,1616812312570 -1616812312599 ,112.5730013,26.89227137,61.32815933,180.5115532,181.1149767,9.81634,0.088692363,1620000000000 ,1620000000000 ,1620000000000 ,1616812312580 -1616812312609 ,112.5730012,26.89227048,61.32748413,180.5137115,181.1200304,9.814878,0.088678992,1620000000000 ,1620000000000 ,1620000000000 ,1616812312590 -1616812312619 ,112.5730012,26.89226959,61.32684326,180.5170173,181.1330786,9.813059,0.088667256,1620000000000 ,1620000000000 ,1620000000000 ,1616812312600 -1616812312630 ,112.5730012,26.89226871,61.32623291,180.5201592,181.1390526,9.810144,0.088648075,1620000000000 ,1620000000000 ,1620000000000 ,1616812312610 -1616812312640 ,112.5730012,26.89226782,61.32566833,180.5243939,181.1447786,9.806244,0.088618349,1620000000000 ,1620000000000 ,1620000000000 ,1616812312620 -1616812312651 ,112.5730012,26.89226694,61.32514954,180.5276724,181.1421759,9.802574,0.088587988,1620000000000 ,1620000000000 ,1620000000000 ,1616812312630 -1616812312662 ,112.5730012,26.89226605,61.32464981,180.5312514,181.1457351,9.799325,0.088558514,1620000000000 ,1620000000000 ,1620000000000 ,1616812312640 -1616812312670 ,112.5730011,26.89226517,61.32414627,180.5355954,181.1527819,9.79732,0.088541642,1620000000000 ,1620000000000 ,1620000000000 ,1616812312650 -1616812312682 ,112.5730011,26.89226428,61.3236351,180.5398848,181.1666358,9.794842,0.08851992,1620000000000 ,1620000000000 ,1620000000000 ,1616812312660 -1616812312691 ,112.5730011,26.8922634,61.32310104,180.5442015,181.1783935,9.793121,0.088504929,1620000000000 ,1620000000000 ,1620000000000 ,1616812312670 -1616812312701 ,112.5730011,26.89226251,61.32250214,180.5469882,181.1784462,9.790509,0.088481003,1620000000000 ,1620000000000 ,1620000000000 ,1616812312680 -1616812312711 ,112.5730011,26.89226163,61.32180023,180.550977,181.184463,9.788505,0.088457628,1620000000000 ,1620000000000 ,1620000000000 ,1616812312690 -1616812312720 ,112.573001,26.89226074,61.32100296,180.5525616,181.1938931,9.786601,0.088437661,1620000000000 ,1620000000000 ,1620000000000 ,1616812312700 -1616812312736 ,112.573001,26.89225986,61.32010651,180.555403,181.2069755,9.786607,0.088424878,1620000000000 ,1620000000000 ,1620000000000 ,1616812312710 -1616812312745 ,112.573001,26.89225897,61.3191452,180.5576706,181.2128719,9.79059,0.088456093,1620000000000 ,1620000000000 ,1620000000000 ,1616812312720 -1616812312751 ,112.573001,26.89225809,61.31813812,180.5586541,181.2143208,9.784028,0.088424597,1620000000000 ,1620000000000 ,1620000000000 ,1616812312730 -1616812312762 ,112.573001,26.89225721,61.3170929,180.5613862,181.1945783,9.77786,0.088358585,1620000000000 ,1620000000000 ,1620000000000 ,1616812312740 -1616812312772 ,112.573001,26.89225632,61.31602478,180.5638451,181.214839,9.77504,0.08832669,1620000000000 ,1620000000000 ,1620000000000 ,1616812312750 -1616812312782 ,112.5730009,26.89225544,61.31491852,180.5663859,181.2283869,9.771868,0.088295712,1620000000000 ,1620000000000 ,1620000000000 ,1616812312760 -1616812312792 ,112.5730009,26.89225456,61.31373596,180.5700742,181.2141398,9.771084,0.088281844,1620000000000 ,1620000000000 ,1620000000000 ,1616812312770 -1616812312801 ,112.5730009,26.89225368,61.31246185,180.5759209,181.2202154,9.771225,0.088277314,1620000000000 ,1620000000000 ,1620000000000 ,1616812312780 -1616812312814 ,112.5730009,26.89225279,61.31108093,180.5832155,181.2378896,9.773331,0.088284886,1620000000000 ,1620000000000 ,1620000000000 ,1616812312790 -1616812312822 ,112.5730009,26.89225191,61.30961609,180.5875595,181.2451698,9.772398,0.088282015,1620000000000 ,1620000000000 ,1620000000000 ,1616812312800 -1616812312832 ,112.5730008,26.89225103,61.30809784,180.5912205,181.2535992,9.767847,0.088248143,1620000000000 ,1620000000000 ,1620000000000 ,1616812312810 -1616812312842 ,112.5730008,26.89225015,61.30655289,180.5940619,181.2642577,9.761702,0.088193575,1620000000000 ,1620000000000 ,1620000000000 ,1616812312820 -1616812312853 ,112.5730008,26.89224927,61.30499649,180.5976682,181.2866866,9.756296,0.088141036,1620000000000 ,1620000000000 ,1620000000000 ,1616812312830 -1616812312864 ,112.5730008,26.89224838,61.30341339,180.5999631,181.3104598,9.753959,0.08811293,1620000000000 ,1620000000000 ,1620000000000 ,1616812312840 -1616812312872 ,112.5730008,26.8922475,61.30179596,180.6026679,181.3239114,9.752473,0.088095576,1620000000000 ,1620000000000 ,1620000000000 ,1616812312850 -1616812312882 ,112.5730007,26.89224662,61.3001442,180.6055639,181.3318412,9.752065,0.088086501,1620000000000 ,1620000000000 ,1620000000000 ,1616812312860 -1616812312892 ,112.5730007,26.89224574,61.29845428,180.609744,181.335793,9.751782,0.088082475,1620000000000 ,1620000000000 ,1620000000000 ,1616812312870 -1616812312902 ,112.5730007,26.89224486,61.29675293,180.6128039,181.3472126,9.750145,0.088071879,1620000000000 ,1620000000000 ,1620000000000 ,1616812312880 -1616812312912 ,112.5730007,26.89224398,61.29505539,180.6160551,181.3570125,9.746165,0.088040596,1620000000000 ,1620000000000 ,1620000000000 ,1616812312890 -1616812312924 ,112.5730007,26.8922431,61.29337692,180.6176943,181.3621196,9.741307,0.087998172,1620000000000 ,1620000000000 ,1620000000000 ,1616812312900 -1616812312936 ,112.5730006,26.89224222,61.29173279,180.6207269,181.3681174,9.736273,0.087951429,1620000000000 ,1620000000000 ,1620000000000 ,1616812312910 -1616812312945 ,112.5730006,26.89224134,61.29009247,180.6235683,181.3758468,9.733325,0.087921664,1620000000000 ,1620000000000 ,1620000000000 ,1616812312920 -1616812312955 ,112.5730006,26.89224047,61.28843307,180.6261637,181.3797666,9.731202,0.087897089,1620000000000 ,1620000000000 ,1620000000000 ,1616812312930 -1616812312963 ,112.5730006,26.89223959,61.28677368,180.6281035,181.3726604,9.729759,0.087882857,1620000000000 ,1620000000000 ,1620000000000 ,1616812312940 -1616812312973 ,112.5730006,26.89223871,61.28514481,180.6312727,181.3594955,9.728631,0.0878727,1620000000000 ,1620000000000 ,1620000000000 ,1616812312950 -1616812312982 ,112.5730005,26.89223783,61.28357697,180.6335677,181.3544745,9.727087,0.087861114,1620000000000 ,1620000000000 ,1620000000000 ,1616812312960 -1616812312993 ,112.5730005,26.89223695,61.28206635,180.6352342,181.345051,9.72466,0.087844578,1620000000000 ,1620000000000 ,1620000000000 ,1616812312970 -1616812313003 ,112.5730005,26.89223607,61.28057098,180.6380483,181.3265471,9.7186,0.087796331,1620000000000 ,1620000000000 ,1620000000000 ,1616812312980 -1616812313013 ,112.5730005,26.8922352,61.27900314,180.6405618,181.3024766,9.722776,0.087804646,1620000000000 ,1620000000000 ,1620000000000 ,1616812313000 -1616812313023 ,112.5730004,26.89223344,61.27531052,180.6526376,181.3172307,9.716436,0.175470824,1620000000000 ,1620000000000 ,1620000000000 ,1616812313010 -1616812313034 ,112.5730004,26.89223257,61.2734642,180.6509163,181.282042,9.713898,0.087726958,1620000000000 ,1620000000000 ,1620000000000 ,1616812313020 -1616812313047 ,112.5730004,26.89223169,61.27189255,180.6519819,181.2847228,9.709148,0.087691487,1620000000000 ,1620000000000 ,1620000000000 ,1616812313030 -1616812313053 ,112.5730004,26.89223081,61.27040482,180.6552877,181.3059063,9.703921,0.087662753,1620000000000 ,1620000000000 ,1620000000000 ,1616812313040 -1616812313064 ,112.5730004,26.89222994,61.26885605,180.6598229,181.3233342,9.696279,0.087586041,1620000000000 ,1620000000000 ,1620000000000 ,1616812313050 -1616812313074 ,112.5730003,26.89222906,61.26725769,180.6591672,181.3297897,9.697319,0.087566667,1620000000000 ,1620000000000 ,1620000000000 ,1616812313060 -1616812313084 ,112.5730003,26.89222906,61.26725769,180.6591672,-400,9.697319,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812313070 -1616812313096 ,112.5730003,26.89222731,61.2638092,180.6606699,181.3312436,9.708665,0.175271743,1620000000000 ,1620000000000 ,1620000000000 ,1616812313080 -1616812313104 ,112.5730003,26.89222731,61.2638092,180.6606699,-400,9.708665,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812313090 -1616812313114 ,112.5730002,26.89222556,61.26040649,180.6625277,181.3688936,9.68915,0.175159252,1620000000000 ,1620000000000 ,1620000000000 ,1616812313100 -1616812313132 ,112.5730002,26.89222556,61.26040649,180.6625277,-400,9.68915,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812313110 -1616812313136 ,112.5730002,26.89222381,61.25802994,180.661708,181.3672672,9.68193,0.17490928,1620000000000 ,1620000000000 ,1620000000000 ,1616812313120 -1616812313145 ,112.5730002,26.89222293,61.25682449,180.6617354,181.3774937,9.683491,0.087460046,1620000000000 ,1620000000000 ,1620000000000 ,1616812313130 -1616812313154 ,112.5730002,26.89222206,61.25552368,180.6605059,181.4069703,9.682917,0.087456976,1620000000000 ,1620000000000 ,1620000000000 ,1616812313140 -1616812313165 ,112.5730001,26.89222119,61.25429153,180.6574733,181.4078724,9.680339,0.087441204,1620000000000 ,1620000000000 ,1620000000000 ,1616812313150 -1616812313177 ,112.5730001,26.89222031,61.25323868,180.6549052,181.3974964,9.676505,0.087417703,1620000000000 ,1620000000000 ,1620000000000 ,1616812313160 -1616812313186 ,112.5730001,26.89221944,61.25234222,180.6527742,181.3895513,9.672189,0.087384867,1620000000000 ,1620000000000 ,1620000000000 ,1616812313170 -1616812313195 ,112.5730001,26.89221857,61.25155258,180.6529108,181.3961614,9.667803,0.087352433,1620000000000 ,1620000000000 ,1620000000000 ,1616812313180 -1616812313204 ,112.5730001,26.89221857,61.25155258,180.6529108,-400,9.667803,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812313190 -1616812313214 ,112.573,26.89221682,61.24966812,180.6609157,181.2847514,9.668644,0.174664762,1620000000000 ,1620000000000 ,1620000000000 ,1616812313200 -1616812313225 ,112.573,26.89221594,61.24750137,180.6599049,180.8455614,9.6679535,0.087510905,1620000000000 ,1620000000000 ,1620000000000 ,1616812313210 -1616812313236 ,112.573,26.89221507,61.24531555,180.6618173,180.8408414,9.667444,0.087506778,1620000000000 ,1620000000000 ,1620000000000 ,1616812313220 -1616812313245 ,112.573,26.89221419,61.24311447,180.6616807,180.8452197,9.665078,0.087491077,1620000000000 ,1620000000000 ,1620000000000 ,1616812313230 -1616812313255 ,112.573,26.89221332,61.24092484,180.6603147,180.8372339,9.661656,0.087463659,1620000000000 ,1620000000000 ,1620000000000 ,1616812313240 -1616812313265 ,112.573,26.89221245,61.23873901,180.6605606,180.8312075,9.657966,0.087430732,1620000000000 ,1620000000000 ,1620000000000 ,1616812313250 -1616812313275 ,112.573,26.89221157,61.23651123,180.6616534,180.8324108,9.655361,0.087402565,1620000000000 ,1620000000000 ,1620000000000 ,1616812313260 -1616812313285 ,112.573,26.8922107,61.23423767,180.6611889,180.8325861,9.65227,0.087376146,1620000000000 ,1620000000000 ,1620000000000 ,1616812313270 -1616812313295 ,112.5729999,26.89220982,61.23194122,180.6619539,180.817253,9.649319,0.087349309,1620000000000 ,1620000000000 ,1620000000000 ,1616812313280 -1616812313306 ,112.5729999,26.89220895,61.22965622,180.6590579,180.8025974,9.6464,0.087323827,1620000000000 ,1620000000000 ,1620000000000 ,1616812313290 -1616812313316 ,112.5729999,26.89220808,61.22738647,180.6565171,180.8014491,9.644104,0.087301318,1620000000000 ,1620000000000 ,1620000000000 ,1616812313300 -1616812313326 ,112.5729999,26.89220721,61.22509384,180.6528561,180.81186,9.64268,0.087288626,1620000000000 ,1620000000000 ,1620000000000 ,1616812313310 -1616812313336 ,112.5729999,26.89220633,61.22275162,180.6523917,180.8229712,9.641146,0.087273038,1620000000000 ,1620000000000 ,1620000000000 ,1616812313320 -1616812313351 ,112.5729999,26.89220546,61.2203598,180.6525283,180.8223465,9.638852,0.087253095,1620000000000 ,1620000000000 ,1620000000000 ,1616812313330 -1616812313359 ,112.5729999,26.89220459,61.21796799,180.6506978,180.8136737,9.635387,0.087223769,1620000000000 ,1620000000000 ,1620000000000 ,1616812313340 -1616812313368 ,112.5729999,26.89220372,61.2155838,180.6481843,180.8067172,9.631797,0.087191914,1620000000000 ,1620000000000 ,1620000000000 ,1616812313350 -1616812313377 ,112.5729998,26.89220285,61.21311951,180.6470641,180.8068166,9.630077,0.087168147,1620000000000 ,1620000000000 ,1620000000000 ,1616812313360 -1616812313386 ,112.5729998,26.89220197,61.21054077,180.6453429,180.8294634,9.628545,0.087150529,1620000000000 ,1620000000000 ,1620000000000 ,1616812313370 -1616812313396 ,112.5729998,26.8922011,61.20786667,180.6408896,180.8377055,9.626517,0.087128559,1620000000000 ,1620000000000 ,1620000000000 ,1616812313380 -1616812313408 ,112.5729998,26.89220023,61.20517349,180.6347698,180.831802,9.624239,0.087107958,1620000000000 ,1620000000000 ,1620000000000 ,1616812313390 -1616812313417 ,112.5729998,26.89219936,61.20248032,180.6305624,180.8270203,9.622189,0.087087486,1620000000000 ,1620000000000 ,1620000000000 ,1616812313400 -1616812313427 ,112.5729998,26.89219849,61.19974899,180.6249889,180.8270574,9.619904,0.087067636,1620000000000 ,1620000000000 ,1620000000000 ,1616812313410 -1616812313440 ,112.5729998,26.89219762,61.19694138,180.6218471,180.8287352,9.617063,0.087038849,1620000000000 ,1620000000000 ,1620000000000 ,1616812313420 -1616812313447 ,112.5729998,26.89219675,61.19406509,180.6177216,180.8244159,9.614486,0.087010587,1620000000000 ,1620000000000 ,1620000000000 ,1616812313430 -1616812313457 ,112.5729997,26.89219588,61.19115448,180.6129678,180.8194164,9.612411,0.086989919,1620000000000 ,1620000000000 ,1620000000000 ,1616812313440 -1616812313467 ,112.5729997,26.89219501,61.18886566,180.6090063,181.0229623,9.610421,0.086883232,1620000000000 ,1620000000000 ,1620000000000 ,1616812313450 -1616812313479 ,112.5729997,26.89219414,61.18717957,180.6042252,181.2355496,9.609041,0.086782167,1620000000000 ,1620000000000 ,1620000000000 ,1616812313460 -1616812313488 ,112.5729997,26.89219328,61.18543625,180.6011106,181.2416102,9.606586,0.086758422,1620000000000 ,1620000000000 ,1620000000000 ,1616812313470 -1616812313497 ,112.5729997,26.89219241,61.18364716,180.5973677,181.2372811,9.603679,0.086729651,1620000000000 ,1620000000000 ,1620000000000 ,1616812313480 -1616812313507 ,112.5729996,26.89219154,61.18181992,180.5941165,181.2233211,9.601566,0.086708717,1620000000000 ,1620000000000 ,1620000000000 ,1616812313490 -1616812313518 ,112.5729996,26.89219068,61.17995453,180.5897725,181.217493,9.599168,0.08668458,1620000000000 ,1620000000000 ,1620000000000 ,1616812313500 -1616812313527 ,112.5729996,26.89218981,61.17807007,180.586412,181.2242019,9.596568,0.086660377,1620000000000 ,1620000000000 ,1620000000000 ,1616812313510 -1616812313537 ,112.5729996,26.89218894,61.17621613,180.5828877,181.2337489,9.593728,0.086637552,1620000000000 ,1620000000000 ,1620000000000 ,1616812313520 -1616812313548 ,112.5729996,26.89218808,61.17441177,180.5784617,181.2197181,9.590571,0.086610985,1620000000000 ,1620000000000 ,1620000000000 ,1616812313530 -1616812313559 ,112.5729996,26.89218721,61.17263412,180.5754291,181.2089284,9.588173,0.086588062,1620000000000 ,1620000000000 ,1620000000000 ,1616812313540 -1616812313568 ,112.5729995,26.89218635,61.17086029,180.5721779,181.2085955,9.585502,0.086563605,1620000000000 ,1620000000000 ,1620000000000 ,1616812313550 -1616812313577 ,112.5729995,26.89218548,61.16907501,180.5694185,181.2179912,9.584195,0.086550182,1620000000000 ,1620000000000 ,1620000000000 ,1616812313560 -1616812313588 ,112.5729995,26.89218462,61.16732025,180.5673695,181.2202773,9.581096,0.086527326,1620000000000 ,1620000000000 ,1620000000000 ,1616812313570 -1616812313598 ,112.5729995,26.89218375,61.16562271,180.5643915,181.211755,9.577315,0.086496993,1620000000000 ,1620000000000 ,1620000000000 ,1616812313580 -1616812313610 ,112.5729995,26.89218289,61.16399765,180.5633533,181.1973213,9.573174,0.086463253,1620000000000 ,1620000000000 ,1620000000000 ,1616812313590 -1616812313618 ,112.5729994,26.89218202,61.16239166,180.5622332,181.1916735,9.569739,0.086430334,1620000000000 ,1620000000000 ,1620000000000 ,1616812313600 -1616812313629 ,112.5729994,26.89218116,61.1607933,180.5607852,181.1969331,9.567923,0.086412035,1620000000000 ,1620000000000 ,1620000000000 ,1616812313610 -1616812313644 ,112.5729994,26.89218029,61.15919495,180.5592825,181.2042503,9.5655985,0.086392097,1620000000000 ,1620000000000 ,1620000000000 ,1616812313620 -1616812313655 ,112.5729994,26.89217943,61.15763092,180.5563865,181.207489,9.563895,0.086376541,1620000000000 ,1620000000000 ,1620000000000 ,1616812313630 -1616812313660 ,112.5729994,26.89217857,61.15610886,180.5546926,181.2035465,9.560454,0.086352695,1620000000000 ,1620000000000 ,1620000000000 ,1616812313640 -1616812313670 ,112.5729994,26.8921777,61.15464783,180.554638,181.1923524,9.556333,0.086318158,1620000000000 ,1620000000000 ,1620000000000 ,1616812313650 -1616812313681 ,112.5729993,26.89217684,61.15320969,180.5538184,181.1806249,9.55318,0.086287676,1620000000000 ,1620000000000 ,1620000000000 ,1616812313660 -1616812313690 ,112.5729993,26.89217598,61.15176392,180.5530534,181.1788631,9.550982,0.086265344,1620000000000 ,1620000000000 ,1620000000000 ,1616812313670 -1616812313699 ,112.5729993,26.89217512,61.15031815,180.5513868,181.1767473,9.549372,0.086250823,1620000000000 ,1620000000000 ,1620000000000 ,1616812313680 -1616812313710 ,112.5729993,26.89217426,61.14889145,180.5489826,181.1760989,9.545925,0.086224424,1620000000000 ,1620000000000 ,1620000000000 ,1616812313690 -1616812313721 ,112.5729993,26.89217339,61.1475029,180.5451031,181.1732283,9.543345,0.086199322,1620000000000 ,1620000000000 ,1620000000000 ,1616812313700 -1616812313729 ,112.5729993,26.89217253,61.14614487,180.5436551,181.1626091,9.539989,0.086173611,1620000000000 ,1620000000000 ,1620000000000 ,1616812313710 -1616812313739 ,112.5729992,26.89217167,61.14480591,180.5413601,181.1504491,9.536979,0.08614664,1620000000000 ,1620000000000 ,1620000000000 ,1616812313720 -1616812313750 ,112.5729992,26.89217081,61.14345932,180.5398848,181.1362499,9.534401,0.086121569,1620000000000 ,1620000000000 ,1620000000000 ,1616812313730 -1616812313760 ,112.5729992,26.89216995,61.1420784,180.5377811,181.1274399,9.5330515,0.086103196,1620000000000 ,1620000000000 ,1620000000000 ,1616812313740 -1616812313770 ,112.5729992,26.89216909,61.1406517,180.5373166,181.1305691,9.530469,0.086081051,1620000000000 ,1620000000000 ,1620000000000 ,1616812313750 -1616812313780 ,112.5729992,26.89216823,61.1391983,180.5386007,181.136332,9.527841,0.086056871,1620000000000 ,1620000000000 ,1620000000000 ,1616812313760 -1616812313791 ,112.5729991,26.89216737,61.13773727,180.5348031,181.1365986,9.524853,0.08603074,1620000000000 ,1620000000000 ,1620000000000 ,1616812313770 -1616812313801 ,112.5729991,26.89216651,61.13627243,180.5337376,181.1325808,9.521803,0.086001438,1620000000000 ,1620000000000 ,1620000000000 ,1616812313780 -1616812313812 ,112.5729991,26.89216565,61.13479233,180.5323169,181.1362289,9.520356,0.085983268,1620000000000 ,1620000000000 ,1620000000000 ,1616812313790 -1616812313820 ,112.5729991,26.89216479,61.13328171,180.5319618,181.1521405,9.519141,0.085970717,1620000000000 ,1620000000000 ,1620000000000 ,1616812313800 -1616812313830 ,112.5729991,26.89216393,61.1317482,180.53147,181.1595292,9.51785,0.085958438,1620000000000 ,1620000000000 ,1620000000000 ,1616812313810 -1616812313841 ,112.5729991,26.89216307,61.13023376,180.5287926,181.1634125,9.514813,0.085936544,1620000000000 ,1620000000000 ,1620000000000 ,1616812313820 -1616812313851 ,112.572999,26.89216221,61.12875748,180.5275358,181.1634083,9.511844,0.085908929,1620000000000 ,1620000000000 ,1620000000000 ,1616812313830 -1616812313861 ,112.572999,26.89216135,61.12729263,180.5253501,181.1657948,9.508866,0.08588452,1620000000000 ,1620000000000 ,1620000000000 ,1616812313840 -1616812313871 ,112.572999,26.89216049,61.12579346,180.5237382,181.1775374,9.50659,0.08585938,1620000000000 ,1620000000000 ,1620000000000 ,1616812313850 -1616812313881 ,112.572999,26.89215964,61.1242485,180.5217165,181.1874208,9.504881,0.08584163,1620000000000 ,1620000000000 ,1620000000000 ,1616812313860 -1616812313891 ,112.572999,26.89215878,61.12270355,180.5195855,181.1866713,9.503183,0.085825301,1620000000000 ,1620000000000 ,1620000000000 ,1616812313870 -1616812313901 ,112.572999,26.89215792,61.12119293,180.5179462,181.1879365,9.500275,0.085804985,1620000000000 ,1620000000000 ,1620000000000 ,1616812313880 -1616812313916 ,112.5729989,26.89215706,61.11972046,180.517673,181.1819101,9.497571,0.085781663,1620000000000 ,1620000000000 ,1620000000000 ,1616812313890 -1616812313926 ,112.5729989,26.8921562,61.11826706,180.5164982,181.1837179,9.493702,0.085750072,1620000000000 ,1620000000000 ,1620000000000 ,1616812313900 -1616812313936 ,112.5729989,26.89215535,61.11683655,180.5145311,181.179697,9.490957,0.085722103,1620000000000 ,1620000000000 ,1620000000000 ,1616812313910 -1616812313941 ,112.5729989,26.89215449,61.11542511,180.5123728,181.1778834,9.488584,0.085702324,1620000000000 ,1620000000000 ,1620000000000 ,1616812313920 -1616812313952 ,112.5729989,26.89215363,61.11402893,180.5122362,181.1780333,9.486901,0.085687348,1620000000000 ,1620000000000 ,1620000000000 ,1616812313930 -1616812313969 ,112.5729989,26.89215278,61.11263657,180.5118537,181.1717228,9.484623,0.085669183,1620000000000 ,1620000000000 ,1620000000000 ,1616812313940 -1616812313971 ,112.5729988,26.89215192,61.11125946,180.5136022,181.1649784,9.48144,0.085641416,1620000000000 ,1620000000000 ,1620000000000 ,1616812313950 -1616812313981 ,112.5729988,26.89215107,61.10990906,180.513329,181.1603997,9.478453,0.085618184,1620000000000 ,1620000000000 ,1620000000000 ,1616812313960 -1616812313993 ,112.5729988,26.89215021,61.10857391,180.5150775,181.1537612,9.475276,0.08558962,1620000000000 ,1620000000000 ,1620000000000 ,1616812313970 -1616812314005 ,112.5729988,26.89214935,61.10723114,180.5165529,181.1495158,9.47267,0.085564593,1620000000000 ,1620000000000 ,1620000000000 ,1616812313980 -1616812314014 ,112.5729988,26.8921485,61.105896,180.5179189,181.144461,9.4694605,0.085538194,1620000000000 ,1620000000000 ,1620000000000 ,1616812313990 -1616812314022 ,112.5729987,26.89214764,61.10459518,180.5193669,181.1434978,9.465872,0.085508976,1620000000000 ,1620000000000 ,1620000000000 ,1616812314000 -1616812314033 ,112.5729987,26.89214679,61.10332108,180.5194762,181.1410335,9.463283,0.085484106,1620000000000 ,1620000000000 ,1620000000000 ,1616812314020 -1616812314044 ,112.5729987,26.89214594,61.10203934,180.5211974,181.1383582,9.4606,0.085461227,1620000000000 ,1620000000000 ,1620000000000 ,1616812314030 -1616812314054 ,112.5729987,26.89214508,61.10074234,180.5230825,181.1440326,9.457873,0.085438758,1620000000000 ,1620000000000 ,1620000000000 ,1616812314040 -1616812314066 ,112.5729987,26.89214337,61.09820175,180.5262244,181.1525047,9.451088,0.170789802,1620000000000 ,1620000000000 ,1620000000000 ,1616812314050 -1616812314079 ,112.5729987,26.89214337,61.09820175,180.5262244,-400,9.451088,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812314060 -1616812314087 ,112.5729986,26.89214167,61.09585571,180.5323169,181.150708,9.444066,0.170671488,1620000000000 ,1620000000000 ,1620000000000 ,1616812314070 -1616812314095 ,112.5729986,26.89214081,61.09467316,180.5364151,181.1603313,9.441817,0.085300068,1620000000000 ,1620000000000 ,1620000000000 ,1616812314080 -1616812314105 ,112.5729986,26.89214081,61.09467316,180.5364151,-400,9.441817,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812314080 -1616812314115 ,112.5729986,26.89213911,61.09207535,180.5432999,181.1755636,9.437583,0.170535106,1620000000000 ,1620000000000 ,1620000000000 ,1616812314100 -1616812314126 ,112.5729986,26.89213826,61.09067535,180.5464691,181.1853046,9.435833,0.085237611,1620000000000 ,1620000000000 ,1620000000000 ,1616812314110 -1616812314135 ,112.5729985,26.8921374,61.08924484,180.5470701,181.1891564,9.433911,0.085217107,1620000000000 ,1620000000000 ,1620000000000 ,1616812314120 -1616812314145 ,112.5729985,26.89213655,61.08777618,180.5484635,181.1923253,9.4318,0.085196627,1620000000000 ,1620000000000 ,1620000000000 ,1616812314130 -1616812314155 ,112.5729985,26.8921357,61.08625412,180.5504579,181.2051594,9.429438,0.085174933,1620000000000 ,1620000000000 ,1620000000000 ,1616812314140 -1616812314166 ,112.5729985,26.8921357,61.08625412,180.5504579,-400,9.429438,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812314150 -1616812314177 ,112.5729985,26.892134,61.08304596,180.5554849,181.2151169,9.42216,0.170244508,1620000000000 ,1620000000000 ,1620000000000 ,1616812314160 -1616812314185 ,112.5729985,26.89213315,61.08135605,180.5583263,181.2029104,9.419833,0.085078342,1620000000000 ,1620000000000 ,1620000000000 ,1616812314170 -1616812314194 ,112.5729984,26.8921323,61.07961273,180.5597197,181.2176654,9.418445,0.085060014,1620000000000 ,1620000000000 ,1620000000000 ,1616812314180 -1616812314205 ,112.5729984,26.89213145,61.07785797,180.5617414,181.225128,9.41672,0.085044843,1620000000000 ,1620000000000 ,1620000000000 ,1616812314190 -1616812314215 ,112.5729984,26.8921306,61.07695007,180.5715769,180.9359491,9.43111,0.085327152,1620000000000 ,1620000000000 ,1620000000000 ,1616812314200 -1616812314226 ,112.5729984,26.89212974,61.07713699,180.5745002,180.4566411,9.428982,0.085776634,1620000000000 ,1620000000000 ,1620000000000 ,1616812314210 -1616812314235 ,112.5729984,26.89212888,61.07725143,180.5767405,180.4420559,9.425098,0.085740113,1620000000000 ,1620000000000 ,1620000000000 ,1616812314220 -1616812314246 ,112.5729984,26.89212802,61.07726288,180.5792267,180.4312004,9.420389,0.085693434,1620000000000 ,1620000000000 ,1620000000000 ,1616812314230 -1616812314255 ,112.5729984,26.89212717,61.07718658,180.5810572,180.4422395,9.4187155,0.085664373,1620000000000 ,1620000000000 ,1620000000000 ,1616812314240 -1616812314266 ,112.5729984,26.89212631,61.07706833,180.5821773,180.4529378,9.416793,0.085645803,1620000000000 ,1620000000000 ,1620000000000 ,1616812314250 -1616812314275 ,112.5729984,26.89212545,61.07696533,180.5833794,180.4581153,9.415078,0.085630709,1620000000000 ,1620000000000 ,1620000000000 ,1616812314260 -1616812314287 ,112.5729984,26.8921246,61.07689667,180.5837619,180.4647279,9.4134245,0.085614913,1620000000000 ,1620000000000 ,1620000000000 ,1616812314270 -1616812314297 ,112.5729983,26.89212374,61.07682419,180.5847728,180.4605691,9.411743,0.085599133,1620000000000 ,1620000000000 ,1620000000000 ,1616812314280 -1616812314305 ,112.5729983,26.89212289,61.07671738,180.5853738,180.4539038,9.4087925,0.085571332,1620000000000 ,1620000000000 ,1620000000000 ,1616812314290 -1616812314315 ,112.5729983,26.89212203,61.07661057,180.5846089,180.4683387,9.405325,0.085541087,1620000000000 ,1620000000000 ,1620000000000 ,1616812314300 -1616812314327 ,112.5729983,26.89212118,61.07656479,180.5848001,180.482918,9.400881,0.085504963,1620000000000 ,1620000000000 ,1620000000000 ,1616812314310 -1616812314336 ,112.5729983,26.89212032,61.07661819,180.5855924,180.4923826,9.395617,0.085462991,1620000000000 ,1620000000000 ,1620000000000 ,1616812314320 -1616812314346 ,112.5729983,26.89211947,61.07677078,180.5856197,180.5114135,9.390697,0.085419748,1620000000000 ,1620000000000 ,1620000000000 ,1616812314330 -1616812314358 ,112.5729983,26.89211861,61.07698059,180.5845269,180.529011,9.387097,0.085384999,1620000000000 ,1620000000000 ,1620000000000 ,1616812314340 -1616812314366 ,112.5729983,26.89211776,61.07720184,180.5854558,180.5410333,9.386307,0.085370266,1620000000000 ,1620000000000 ,1620000000000 ,1616812314350 -1616812314377 ,112.5729983,26.89211691,61.0774231,180.5828057,180.5559561,9.385801,0.085365046,1620000000000 ,1620000000000 ,1620000000000 ,1616812314360 -1616812314386 ,112.5729983,26.89211605,61.07767868,180.5794452,180.5675988,9.383073,0.085346409,1620000000000 ,1620000000000 ,1620000000000 ,1616812314370 -1616812314397 ,112.5729983,26.8921152,61.07801819,180.5775874,180.5821953,9.3791685,0.085316593,1620000000000 ,1620000000000 ,1620000000000 ,1616812314380 -1616812314408 ,112.5729983,26.89211435,61.07846451,180.5754018,180.6011221,9.374981,0.085283677,1620000000000 ,1620000000000 ,1620000000000 ,1616812314390 -1616812314418 ,112.5729983,26.89211349,61.07899094,180.5738718,180.6096281,9.370342,0.085244152,1620000000000 ,1620000000000 ,1620000000000 ,1616812314400 -1616812314428 ,112.5729982,26.89211264,61.07952499,180.5697737,180.599289,9.367499,0.085212335,1620000000000 ,1620000000000 ,1620000000000 ,1616812314410 -1616812314437 ,112.5729982,26.89211179,61.08000946,180.5663859,180.5841337,9.365522,0.085194061,1620000000000 ,1620000000000 ,1620000000000 ,1616812314420 -1616812314447 ,112.5729982,26.89211094,61.08045959,180.5617687,180.5948839,9.360829,0.085152231,1620000000000 ,1620000000000 ,1620000000000 ,1616812314430 -1616812314459 ,112.5729982,26.89211009,61.08094406,180.5572881,180.6175425,9.358416,0.085125295,1620000000000 ,1620000000000 ,1620000000000 ,1616812314440 -1616812314467 ,112.5729982,26.89210924,61.0806694,180.5558401,180.9135262,9.355785,0.084803339,1620000000000 ,1620000000000 ,1620000000000 ,1616812314450 -1616812314478 ,112.5729982,26.89210839,61.0796814,180.5522611,181.1919357,9.351878,0.084469033,1620000000000 ,1620000000000 ,1620000000000 ,1616812314460 -1616812314488 ,112.5729982,26.89210755,61.07880783,180.5505126,181.1695399,9.348035,0.084438393,1620000000000 ,1620000000000 ,1620000000000 ,1616812314470 -1616812314499 ,112.5729981,26.89210671,61.07795334,180.5450211,181.1517569,9.346004,0.084415626,1620000000000 ,1620000000000 ,1620000000000 ,1616812314480 -1616812314510 ,112.5729981,26.89210586,61.07706833,180.5421524,181.1556052,9.344415,0.084397944,1620000000000 ,1620000000000 ,1620000000000 ,1616812314490 -1616812314520 ,112.5729981,26.89210502,61.07616043,180.5392018,181.1678154,9.34148,0.084376406,1620000000000 ,1620000000000 ,1620000000000 ,1616812314500 -1616812314536 ,112.5729981,26.89210418,61.07531738,180.5373713,181.1601927,9.3353615,0.084329074,1620000000000 ,1620000000000 ,1620000000000 ,1616812314510 -1616812314541 ,112.5729981,26.89210333,61.07465744,180.5358413,181.1198812,9.328724,0.084280097,1620000000000 ,1620000000000 ,1620000000000 ,1616812314520 -1616812314551 ,112.5729981,26.89210249,61.07419205,180.5332732,181.0721877,9.322555,0.08422576,1620000000000 ,1620000000000 ,1620000000000 ,1616812314530 -1616812314561 ,112.5729981,26.89210165,61.0737915,180.5331092,181.0507607,9.320613,0.084200112,1620000000000 ,1620000000000 ,1620000000000 ,1616812314540 -1616812314570 ,112.572998,26.89210081,61.07332611,180.5301313,181.0568718,9.321428,0.084199225,1620000000000 ,1620000000000 ,1620000000000 ,1616812314550 -1616812314580 ,112.572998,26.89209997,61.07276535,180.5290111,181.0744856,9.321705,0.08420465,1620000000000 ,1620000000000 ,1620000000000 ,1616812314560 -1616812314589 ,112.572998,26.89209912,61.07219696,180.5280003,181.0596009,9.316814,0.084169196,1620000000000 ,1620000000000 ,1620000000000 ,1616812314570 -1616812314600 ,112.572998,26.89209828,61.07171631,180.5251043,181.0277322,9.309208,0.084112664,1620000000000 ,1620000000000 ,1620000000000 ,1616812314580 -1616812314609 ,112.572998,26.89209744,61.07136917,180.5213886,181.0247887,9.300634,0.084038632,1620000000000 ,1620000000000 ,1620000000000 ,1616812314590 -1616812314622 ,112.572998,26.8920966,61.07110214,180.5192303,181.0444001,9.297586,0.084000014,1620000000000 ,1620000000000 ,1620000000000 ,1616812314600 -1616812314630 ,112.5729979,26.89209576,61.07081604,180.5175637,181.0626241,9.29639,0.08398731,1620000000000 ,1620000000000 ,1620000000000 ,1616812314610 -1616812314640 ,112.5729979,26.89209492,61.07049561,180.5152141,181.0668643,9.296888,0.083990738,1620000000000 ,1620000000000 ,1620000000000 ,1616812314620 -1616812314649 ,112.5729979,26.89209408,61.07022476,180.5088757,181.0716968,9.292892,0.083967638,1620000000000 ,1620000000000 ,1620000000000 ,1616812314630 -1616812314663 ,112.5729979,26.89209325,61.07003021,180.5034662,181.0724998,9.2882395,0.083927551,1620000000000 ,1620000000000 ,1620000000000 ,1616812314640 -1616812314669 ,112.5729979,26.89209241,61.06985092,180.5027559,181.0728358,9.284306,0.083893832,1620000000000 ,1620000000000 ,1620000000000 ,1616812314650 -1616812314680 ,112.5729979,26.89209157,61.06964111,180.4992315,181.0816368,9.280574,0.083860596,1620000000000 ,1620000000000 ,1620000000000 ,1616812314660 -1616812314690 ,112.5729978,26.89209073,61.06938171,180.4938766,181.0719391,9.277592,0.083826968,1620000000000 ,1620000000000 ,1620000000000 ,1616812314670 -1616812314699 ,112.5729978,26.89208989,61.06905365,180.4874016,181.0483459,9.275026,0.083802024,1620000000000 ,1620000000000 ,1620000000000 ,1616812314680 -1616812314710 ,112.5729978,26.89208905,61.06861115,180.4830303,181.0290894,9.273876,0.083782253,1620000000000 ,1620000000000 ,1620000000000 ,1616812314690 -1616812314719 ,112.5729978,26.89208822,61.06807709,180.4777027,181.0253671,9.272475,0.083769352,1620000000000 ,1620000000000 ,1620000000000 ,1616812314700 -1616812314730 ,112.5729978,26.89208738,61.06754303,180.4748341,181.0138851,9.266461,0.083725354,1620000000000 ,1620000000000 ,1620000000000 ,1616812314710 -1616812314739 ,112.5729978,26.89208654,61.06713104,180.4697251,180.98414,9.261987,0.083686369,1620000000000 ,1620000000000 ,1620000000000 ,1616812314720 -1616812314754 ,112.5729978,26.89208571,61.06684494,180.4638784,180.9578293,9.257671,0.083654273,1620000000000 ,1620000000000 ,1620000000000 ,1616812314730 -1616812314761 ,112.5729977,26.89208487,61.0665741,180.4595071,180.9438034,9.254131,0.083620231,1620000000000 ,1620000000000 ,1620000000000 ,1616812314740 -1616812314770 ,112.5729977,26.89208403,61.06618881,180.4587148,180.9393577,9.253966,0.083605245,1620000000000 ,1620000000000 ,1620000000000 ,1616812314750 -1616812314780 ,112.5729977,26.8920832,61.06565475,180.4576493,180.9490747,9.253119,0.083594756,1620000000000 ,1620000000000 ,1620000000000 ,1616812314760 -1616812314790 ,112.5729977,26.89208236,61.06504059,180.4536605,180.9317382,9.253584,0.083590891,1620000000000 ,1620000000000 ,1620000000000 ,1616812314770 -1616812314800 ,112.5729977,26.89208153,61.06437683,180.4519939,180.8861799,9.255865,0.083617342,1620000000000 ,1620000000000 ,1620000000000 ,1616812314780 -1616812314812 ,112.5729977,26.89208069,61.06365585,180.45183,180.8833276,9.248228,0.083562196,1620000000000 ,1620000000000 ,1620000000000 ,1616812314790 -1616812314821 ,112.5729977,26.89207986,61.06293488,180.4514475,180.9250477,9.24021,0.083491758,1620000000000 ,1620000000000 ,1620000000000 ,1616812314800 -1616812314830 ,112.5729977,26.89207902,61.06230164,180.4475953,180.9384545,9.230694,0.083416642,1620000000000 ,1620000000000 ,1620000000000 ,1616812314810 -1616812314845 ,112.5729976,26.89207819,61.06168365,180.4449178,180.9078969,9.22555,0.083354582,1620000000000 ,1620000000000 ,1620000000000 ,1616812314820 -1616812314852 ,112.5729976,26.89207736,61.06095886,180.4414208,180.9277008,9.227668,0.083354905,1620000000000 ,1620000000000 ,1620000000000 ,1616812314830 -1616812314869 ,112.5729976,26.89207652,61.06004333,180.4386614,180.9808472,9.231116,0.083379362,1620000000000 ,1620000000000 ,1620000000000 ,1616812314840 -1616812314871 ,112.5729976,26.89207569,61.05901337,180.4356015,181.0196143,9.231536,0.083388556,1620000000000 ,1620000000000 ,1620000000000 ,1616812314850 -1616812314881 ,112.5729976,26.89207485,61.05810547,180.4297548,181.036678,9.226558,0.083363026,1620000000000 ,1620000000000 ,1620000000000 ,1616812314860 -1616812314892 ,112.5729976,26.89207402,61.05743027,180.4237989,181.0382913,9.219863,0.083314288,1620000000000 ,1620000000000 ,1620000000000 ,1616812314870 -1616812314901 ,112.5729976,26.89207319,61.05685425,180.4191544,181.0374058,9.214954,0.083275979,1620000000000 ,1620000000000 ,1620000000000 ,1616812314880 -1616812314912 ,112.5729975,26.89207236,61.05619431,180.4153295,181.0256664,9.209151,0.08322182,1620000000000 ,1620000000000 ,1620000000000 ,1616812314890 -1616812314922 ,112.5729975,26.89207153,61.05537415,180.4115592,181.0403316,9.205989,0.083177911,1620000000000 ,1620000000000 ,1620000000000 ,1616812314900 -1616812314932 ,112.5729975,26.89207069,61.05444336,180.4083353,181.0509711,9.206517,0.083173564,1620000000000 ,1620000000000 ,1620000000000 ,1616812314910 -1616812314944 ,112.5729975,26.89206986,61.05345154,180.4074884,181.0353325,9.205968,0.08316557,1620000000000 ,1620000000000 ,1620000000000 ,1616812314920 -1616812314954 ,112.5729975,26.89206903,61.0524826,180.4053574,181.0189928,9.2044935,0.083162123,1620000000000 ,1620000000000 ,1620000000000 ,1616812314930 -1616812314966 ,112.5729975,26.8920682,61.05159378,180.4001664,181.0070843,9.198331,0.083117745,1620000000000 ,1620000000000 ,1620000000000 ,1616812314940 -1616812314979 ,112.5729974,26.89206737,61.05078506,180.3950848,181.0000077,9.190796,0.083056579,1620000000000 ,1620000000000 ,1620000000000 ,1616812314950 -1616812314985 ,112.5729974,26.89206654,61.05000305,180.3917243,180.9774605,9.185907,0.083006542,1620000000000 ,1620000000000 ,1620000000000 ,1616812314960 -1616812314993 ,112.5729974,26.89206571,61.04917526,180.3863421,180.9544828,9.183971,0.082980821,1620000000000 ,1620000000000 ,1620000000000 ,1616812314970 -1616812315003 ,112.5729974,26.89206488,61.04828262,180.3837467,180.9329366,9.18271,0.082966131,1620000000000 ,1620000000000 ,1620000000000 ,1616812314980 -1616812315013 ,112.5729974,26.89206405,61.04735565,180.3798671,180.9001963,9.179534,0.082942512,1620000000000 ,1620000000000 ,1620000000000 ,1616812314990 -1616812315023 ,112.5729974,26.89206322,61.04644394,180.3775995,180.8732492,9.175921,0.082911082,1620000000000 ,1620000000000 ,1620000000000 ,1616812315000 -1616812315033 ,112.5729974,26.89206239,61.0455513,180.3768072,180.8578285,9.173421,0.082884308,1620000000000 ,1620000000000 ,1620000000000 ,1616812315010 -1616812315052 ,112.5729974,26.89206156,61.04463959,180.3750587,180.8484528,9.171184,0.082864155,1620000000000 ,1620000000000 ,1620000000000 ,1616812315020 -1616812315055 ,112.5729973,26.89206074,61.04365921,180.3739112,180.8147603,9.168522,0.082836231,1620000000000 ,1620000000000 ,1620000000000 ,1616812315030 -1616812315067 ,112.5729973,26.89205991,61.04258347,180.3714796,180.7803251,9.16855,0.082828908,1620000000000 ,1620000000000 ,1620000000000 ,1616812315050 -1616812315074 ,112.5729973,26.89205908,61.04135513,180.3695399,180.7603342,9.161419,0.082766407,1620000000000 ,1620000000000 ,1620000000000 ,1616812315060 -1616812315084 ,112.5729973,26.89205825,61.03992844,180.3713704,180.7895423,9.163263,0.082752527,1620000000000 ,1620000000000 ,1620000000000 ,1616812315070 -1616812315096 ,112.5729973,26.89205743,61.03822327,180.3741571,180.7890942,9.161495,0.082743694,1620000000000 ,1620000000000 ,1620000000000 ,1616812315080 -1616812315105 ,112.5729973,26.8920566,61.03632736,180.3674089,180.7581261,9.163438,0.082721123,1620000000000 ,1620000000000 ,1620000000000 ,1616812315080 -1616812315114 ,112.5729973,26.89205577,61.0345459,180.3580378,180.8123577,9.1588955,0.082707336,1620000000000 ,1620000000000 ,1620000000000 ,1616812315100 -1616812315125 ,112.5729973,26.89205412,61.03136444,180.3516175,180.8689119,9.151654,0.165340524,1620000000000 ,1620000000000 ,1620000000000 ,1616812315110 -1616812315134 ,112.5729973,26.89205412,61.03136444,180.3516175,-400,9.151654,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812315120 -1616812315148 ,112.5729972,26.89205247,61.0282402,180.3530655,180.8740976,9.1373005,0.165088238,1620000000000 ,1620000000000 ,1620000000000 ,1616812315130 -1616812315157 ,112.5729972,26.89205164,61.02676773,180.3491859,180.8459305,9.140666,0.082542056,1620000000000 ,1620000000000 ,1620000000000 ,1616812315140 -1616812315167 ,112.5729972,26.89205082,61.02519226,180.3441589,180.8818542,9.144789,0.082567293,1620000000000 ,1620000000000 ,1620000000000 ,1616812315150 -1616812315177 ,112.5729972,26.89204999,61.02347183,180.3380664,180.9842487,9.145911,0.082583442,1620000000000 ,1620000000000 ,1620000000000 ,1616812315160 -1616812315186 ,112.5729972,26.89204917,61.02175522,180.3315913,181.0528938,9.139176,0.08254709,1620000000000 ,1620000000000 ,1620000000000 ,1616812315170 -1616812315198 ,112.5729972,26.89204834,61.02022171,180.3251983,181.020831,9.129947,0.08246919,1620000000000 ,1620000000000 ,1620000000000 ,1616812315180 -1616812315205 ,112.5729972,26.89204834,61.02022171,180.3251983,-400,9.129947,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812315190 -1616812315215 ,112.5729971,26.89204669,61.01819992,180.3223842,180.8848847,9.124056,0.164879097,1620000000000 ,1620000000000 ,1620000000000 ,1616812315200 -1616812315225 ,112.5729971,26.89204587,61.01823807,180.3201166,180.6278229,9.126,0.082554363,1620000000000 ,1620000000000 ,1620000000000 ,1616812315210 -1616812315234 ,112.5729971,26.89204587,61.01823807,180.3201166,-400,9.126,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812315220 -1616812315247 ,112.5729971,26.89204422,61.01821899,180.3120843,180.6798648,9.121048,0.165085249,1620000000000 ,1620000000000 ,1620000000000 ,1616812315230 -1616812315254 ,112.5729971,26.89204339,61.01852417,180.3076584,180.6031044,9.113839,0.082477115,1620000000000 ,1620000000000 ,1620000000000 ,1616812315240 -1616812315265 ,112.5729971,26.89204257,61.01901245,180.3030958,180.5436127,9.109254,0.082437343,1620000000000 ,1620000000000 ,1620000000000 ,1616812315250 -1616812315275 ,112.5729971,26.89204174,61.01952744,180.2995168,180.5400012,9.107264,0.08241462,1620000000000 ,1620000000000 ,1620000000000 ,1616812315260 -1616812315286 ,112.5729971,26.89204092,61.02000427,180.3007735,180.5563061,9.103997,0.08239034,1620000000000 ,1620000000000 ,1620000000000 ,1616812315270 -1616812315303 ,112.5729971,26.8920401,61.02054596,180.3007735,180.5365954,9.098442,0.08234561,1620000000000 ,1620000000000 ,1620000000000 ,1616812315280 -1616812315310 ,112.5729971,26.89203927,61.02123642,180.2998993,180.48954,9.093952,0.082311202,1620000000000 ,1620000000000 ,1620000000000 ,1616812315290 -1616812315318 ,112.572997,26.89203845,61.02200317,180.2994075,180.4568232,9.091143,0.082286409,1620000000000 ,1620000000000 ,1620000000000 ,1616812315300 -1616812315328 ,112.572997,26.89203763,61.02274704,180.300391,180.456799,9.090557,0.0822733,1620000000000 ,1620000000000 ,1620000000000 ,1616812315310 -1616812315347 ,112.572997,26.8920368,61.02344513,180.2995714,180.4730873,9.088345,0.082257797,1620000000000 ,1620000000000 ,1620000000000 ,1616812315320 -1616812315350 ,112.572997,26.89203598,61.02418137,180.297495,180.4627196,9.084147,0.082227321,1620000000000 ,1620000000000 ,1620000000000 ,1616812315330 -1616812315358 ,112.572997,26.89203516,61.02498627,180.2948176,180.4453348,9.080226,0.082193883,1620000000000 ,1620000000000 ,1620000000000 ,1616812315340 -1616812315367 ,112.572997,26.89203434,61.02579117,180.2944898,180.434243,9.077147,0.082165132,1620000000000 ,1620000000000 ,1620000000000 ,1616812315350 -1616812315376 ,112.572997,26.89203352,61.02654648,180.2949269,180.4342563,9.074733,0.082138803,1620000000000 ,1620000000000 ,1620000000000 ,1616812315360 -1616812315387 ,112.572997,26.8920327,61.02724838,180.2961017,180.4438237,9.072815,0.082119839,1620000000000 ,1620000000000 ,1620000000000 ,1616812315370 -1616812315399 ,112.572997,26.89203187,61.02794647,180.2958558,180.444174,9.069698,0.082094671,1620000000000 ,1620000000000 ,1620000000000 ,1616812315380 -1616812315406 ,112.572997,26.89203105,61.02865982,180.2937794,180.4438562,9.066741,0.082069075,1620000000000 ,1620000000000 ,1620000000000 ,1616812315390 -1616812315417 ,112.572997,26.89203023,61.02937698,180.2913479,180.4533999,9.06299,0.08203688,1620000000000 ,1620000000000 ,1620000000000 ,1616812315400 -1616812315438 ,112.572997,26.89202941,61.03006744,180.2885885,180.4532063,9.059533,0.082004546,1620000000000 ,1620000000000 ,1620000000000 ,1616812315410 -1616812315440 ,112.572997,26.89202859,61.0307312,180.2864575,180.4650119,9.056664,0.081977126,1620000000000 ,1620000000000 ,1620000000000 ,1616812315420 -1616812315446 ,112.572997,26.89202777,61.03134918,180.2835068,180.4616082,9.055135,0.081955747,1620000000000 ,1620000000000 ,1620000000000 ,1616812315430 -1616812315456 ,112.572997,26.89202696,61.03188324,180.2794633,180.4553403,9.053406,0.08193746,1620000000000 ,1620000000000 ,1620000000000 ,1616812315440 -1616812315468 ,112.5729969,26.89202614,61.03158951,180.2756384,180.6020527,9.051543,0.081844882,1620000000000 ,1620000000000 ,1620000000000 ,1616812315450 -1616812315477 ,112.5729969,26.89202532,61.03047943,180.2711851,180.7552401,9.0484915,0.081742704,1620000000000 ,1620000000000 ,1620000000000 ,1616812315460 -1616812315488 ,112.5729969,26.8920245,61.02930069,180.2663494,180.7608908,9.046214,0.081716325,1620000000000 ,1620000000000 ,1620000000000 ,1616812315470 -1616812315497 ,112.5729969,26.89202369,61.02807236,180.2637812,180.757304,9.043643,0.081689926,1620000000000 ,1620000000000 ,1620000000000 ,1616812315480 -1616812315509 ,112.5729969,26.89202287,61.02679062,180.2594919,180.7524177,9.041311,0.081666438,1620000000000 ,1620000000000 ,1620000000000 ,1616812315490 -1616812315518 ,112.5729969,26.89202205,61.02545166,180.2560494,180.7543495,9.038482,0.081637781,1620000000000 ,1620000000000 ,1620000000000 ,1616812315500 -1616812315528 ,112.5729969,26.89202124,61.02407074,180.2523885,180.7596261,9.036076,0.081612478,1620000000000 ,1620000000000 ,1620000000000 ,1616812315510 -1616812315539 ,112.5729969,26.89202042,61.0226593,180.2475254,180.7602613,9.033899,0.081590878,1620000000000 ,1620000000000 ,1620000000000 ,1616812315520 -1616812315548 ,112.5729969,26.89201961,61.02122879,180.2443835,180.7627432,9.031404,0.081567521,1620000000000 ,1620000000000 ,1620000000000 ,1616812315530 -1616812315559 ,112.5729969,26.89201879,61.01978683,180.2380724,180.7625474,9.028483,0.081540092,1620000000000 ,1620000000000 ,1620000000000 ,1616812315540 -1616812315568 ,112.5729968,26.89201797,61.01834869,180.2331547,180.7644362,9.025024,0.081509169,1620000000000 ,1620000000000 ,1620000000000 ,1616812315550 -1616812315577 ,112.5729968,26.89201716,61.01693726,180.22739,180.7629203,9.021833,0.081481881,1620000000000 ,1620000000000 ,1620000000000 ,1616812315560 -1616812315587 ,112.5729968,26.89201635,61.01556778,180.2231006,180.7586671,9.018595,0.081453008,1620000000000 ,1620000000000 ,1620000000000 ,1616812315570 -1616812315597 ,112.5729968,26.89201553,61.01423645,180.2185654,180.7579237,9.0154505,0.081424925,1620000000000 ,1620000000000 ,1620000000000 ,1616812315580 -1616812315610 ,112.5729968,26.89201472,61.01292801,180.2148771,180.7528709,9.012999,0.081403028,1620000000000 ,1620000000000 ,1620000000000 ,1616812315590 -1616812315618 ,112.5729968,26.8920139,61.0116272,180.2111614,180.751664,9.010709,0.081381204,1620000000000 ,1620000000000 ,1620000000000 ,1616812315600 -1616812315629 ,112.5729968,26.89201309,61.01033401,180.2073912,180.7458982,9.008106,0.081358756,1620000000000 ,1620000000000 ,1620000000000 ,1616812315610 -1616812315642 ,112.5729968,26.89201228,61.00907135,180.2044952,180.7402728,9.004577,0.081329452,1620000000000 ,1620000000000 ,1620000000000 ,1616812315620 -1616812315648 ,112.5729968,26.89201146,61.00784683,180.2027193,180.7359958,9.001563,0.081302544,1620000000000 ,1620000000000 ,1620000000000 ,1616812315630 -1616812315660 ,112.5729967,26.89201065,61.00667191,180.197747,180.7407131,8.99866,0.081277482,1620000000000 ,1620000000000 ,1620000000000 ,1616812315640 -1616812315669 ,112.5729967,26.89200984,61.00554276,180.1950968,180.7409184,8.99435,0.08124551,1620000000000 ,1620000000000 ,1620000000000 ,1616812315650 -1616812315680 ,112.5729967,26.89200903,61.0044632,180.1909987,180.7376559,8.990871,0.081213184,1620000000000 ,1620000000000 ,1620000000000 ,1616812315660 -1616812315689 ,112.5729967,26.89200822,61.00341797,180.1873651,180.7350587,8.986464,0.081177657,1620000000000 ,1620000000000 ,1620000000000 ,1616812315670 -1616812315698 ,112.5729967,26.8920074,61.00239563,180.1844144,180.7246088,8.983778,0.081149314,1620000000000 ,1620000000000 ,1620000000000 ,1616812315680 -1616812315710 ,112.5729967,26.89200659,61.00142288,180.179606,180.7235695,8.9802265,0.081122612,1620000000000 ,1620000000000 ,1620000000000 ,1616812315690 -1616812315718 ,112.5729967,26.89200578,61.00051117,180.1756171,180.7223246,8.976888,0.08109457,1620000000000 ,1620000000000 ,1620000000000 ,1616812315700 -1616812315730 ,112.5729967,26.89200497,60.99966431,180.1735134,180.7099982,8.97287,0.081063243,1620000000000 ,1620000000000 ,1620000000000 ,1616812315710 -1616812315746 ,112.5729967,26.89200416,60.99887848,180.1709726,180.6993441,8.969183,0.081032421,1620000000000 ,1620000000000 ,1620000000000 ,1616812315720 -1616812315755 ,112.5729967,26.89200335,60.99813461,180.1681586,180.6842769,8.965137,0.080997077,1620000000000 ,1620000000000 ,1620000000000 ,1616812315730 -1616812315778 ,112.5729966,26.89200254,60.99739838,180.1654265,180.6697652,8.962245,0.080970324,1620000000000 ,1620000000000 ,1620000000000 ,1616812315740 -1616812315788 ,112.5729966,26.89200173,60.99663925,180.1638419,180.6628816,8.959384,0.080943043,1620000000000 ,1620000000000 ,1620000000000 ,1616812315750 -1616812315792 ,112.5729966,26.89200092,60.99586868,180.1608913,180.6605716,8.956149,0.080915094,1620000000000 ,1620000000000 ,1620000000000 ,1616812315760 -1616812315796 ,112.5729966,26.89200011,60.99511337,180.1563014,180.6563341,8.952616,0.080885177,1620000000000 ,1620000000000 ,1620000000000 ,1616812315770 -1616812315810 ,112.5729966,26.89199931,60.9943924,180.1533234,180.6453267,8.949367,0.080855288,1620000000000 ,1620000000000 ,1620000000000 ,1616812315780 -1616812315813 ,112.5729966,26.8919985,60.99368668,180.1490614,180.6335024,8.946568,0.080830386,1620000000000 ,1620000000000 ,1620000000000 ,1616812315790 -1616812315826 ,112.5729966,26.89199769,60.99297333,180.1462746,180.6223053,8.943257,0.080801217,1620000000000 ,1620000000000 ,1620000000000 ,1616812315800 -1616812315831 ,112.5729966,26.89199688,60.99225616,180.1435972,180.6170548,8.940141,0.080771932,1620000000000 ,1620000000000 ,1620000000000 ,1616812315810 -1616812315842 ,112.5729966,26.89199607,60.99155045,180.1406739,180.6029973,8.936609,0.080741617,1620000000000 ,1620000000000 ,1620000000000 ,1616812315820 -1616812315851 ,112.5729966,26.89199527,60.99085617,180.1349639,180.596836,8.933857,0.080714942,1620000000000 ,1620000000000 ,1620000000000 ,1616812315830 -1616812315860 ,112.5729966,26.89199446,60.99016953,180.1328602,180.592812,8.931098,0.080692524,1620000000000 ,1620000000000 ,1620000000000 ,1616812315840 -1616812315871 ,112.5729965,26.89199365,60.98947144,180.1288167,180.5910346,8.928278,0.080664207,1620000000000 ,1620000000000 ,1620000000000 ,1616812315850 -1616812315883 ,112.5729965,26.89199285,60.9887619,180.1243634,180.5861748,8.925373,0.080639517,1620000000000 ,1620000000000 ,1620000000000 ,1616812315860 -1616812315893 ,112.5729965,26.89199204,60.98802948,180.1214947,180.581543,8.923037,0.080614739,1620000000000 ,1620000000000 ,1620000000000 ,1616812315870 -1616812315900 ,112.5729965,26.89199124,60.98725891,180.1192271,180.5814565,8.92107,0.080596349,1620000000000 ,1620000000000 ,1620000000000 ,1616812315880 -1616812315911 ,112.5729965,26.89199043,60.98644638,180.1149104,180.5916381,8.918781,0.080574495,1620000000000 ,1620000000000 ,1620000000000 ,1616812315890 -1616812315921 ,112.5729965,26.89198962,60.98561096,180.1118505,180.6020455,8.916031,0.080550486,1620000000000 ,1620000000000 ,1620000000000 ,1616812315900 -1616812315933 ,112.5729965,26.89198882,60.98474503,180.1079163,180.6065216,8.9127445,0.080520554,1620000000000 ,1620000000000 ,1620000000000 ,1616812315910 -1616812315942 ,112.5729965,26.89198801,60.9838295,180.1046925,180.6114917,8.91008,0.080492894,1620000000000 ,1620000000000 ,1620000000000 ,1616812315920 -1616812315952 ,112.5729965,26.89198721,60.98285294,180.1016052,180.6203709,8.908298,0.080471845,1620000000000 ,1620000000000 ,1620000000000 ,1616812315930 -1616812315961 ,112.5729965,26.89198641,60.98180771,180.0975617,180.6339182,8.90613,0.080451379,1620000000000 ,1620000000000 ,1620000000000 ,1616812315940 -1616812315972 ,112.5729965,26.8919856,60.98071289,180.0916605,180.6463949,8.903745,0.080427041,1620000000000 ,1620000000000 ,1620000000000 ,1616812315950 -1616812315981 ,112.5729965,26.8919848,60.97960281,180.0868793,180.6575177,8.900728,0.080402127,1620000000000 ,1620000000000 ,1620000000000 ,1616812315960 -1616812315992 ,112.5729964,26.89198399,60.97849655,180.0815791,180.6642955,8.8967085,0.080367634,1620000000000 ,1620000000000 ,1620000000000 ,1616812315970 -1616812316001 ,112.5729964,26.89198319,60.97740555,180.0777269,180.6658343,8.894218,0.080343082,1620000000000 ,1620000000000 ,1620000000000 ,1616812315980 -1616812316013 ,112.5729964,26.89198239,60.97632217,180.0730004,180.6607326,8.8909,0.080317047,1620000000000 ,1620000000000 ,1620000000000 ,1616812315990 -1616812316022 ,112.5729964,26.89198158,60.97525024,180.0686837,180.6492874,8.887135,0.080282072,1620000000000 ,1620000000000 ,1620000000000 ,1616812316000 -1616812316031 ,112.5729964,26.89198078,60.97419357,180.0643397,180.6453925,8.884083,0.080256106,1620000000000 ,1620000000000 ,1620000000000 ,1616812316010 -1616812316042 ,112.5729964,26.89197998,60.97314072,180.0599137,180.6417655,8.881587,0.080231337,1620000000000 ,1620000000000 ,1620000000000 ,1616812316020 -1616812316053 ,112.5729964,26.89197918,60.97210312,180.0584931,180.6343578,8.879195,0.080211692,1620000000000 ,1620000000000 ,1620000000000 ,1616812316030 -1616812316065 ,112.5729964,26.89197838,60.97108459,180.0551053,180.6171392,8.87604,0.080184991,1620000000000 ,1620000000000 ,1620000000000 ,1616812316040 -1616812316080 ,112.5729964,26.89197757,60.97009277,180.0538212,180.5916279,8.872887,0.080158455,1620000000000 ,1620000000000 ,1620000000000 ,1616812316050 -1616812316086 ,112.5729964,26.89197677,60.96914291,180.0509525,180.5731794,8.868815,0.080126534,1620000000000 ,1620000000000 ,1620000000000 ,1616812316060 -1616812316093 ,112.5729964,26.89197597,60.9682312,180.0486029,180.5576372,8.864731,0.080091499,1620000000000 ,1620000000000 ,1620000000000 ,1616812316070 -1616812316103 ,112.5729963,26.89197517,60.96734619,180.0460075,180.5439331,8.861323,0.080059394,1620000000000 ,1620000000000 ,1620000000000 ,1616812316080 -1616812316113 ,112.5729963,26.89197437,60.96648788,180.0443682,180.5298128,8.858654,0.080035787,1620000000000 ,1620000000000 ,1620000000000 ,1616812316090 -1616812316122 ,112.5729963,26.89197357,60.96564865,180.043494,180.5152226,8.855878,0.080013996,1620000000000 ,1620000000000 ,1620000000000 ,1616812316100 -1616812316134 ,112.5729963,26.89197277,60.96482086,180.0422645,180.5069612,8.8536415,0.079991869,1620000000000 ,1620000000000 ,1620000000000 ,1616812316110 -1616812316144 ,112.5729963,26.89197197,60.96401596,180.0404067,180.5028001,8.851169,0.079972412,1620000000000 ,1620000000000 ,1620000000000 ,1616812316120 -1616812316153 ,112.5729963,26.89197117,60.96321487,180.0400789,180.5011157,8.848383,0.079948908,1620000000000 ,1620000000000 ,1620000000000 ,1616812316130 -1616812316164 ,112.5729963,26.89197037,60.9624176,180.0392592,180.5021513,8.845356,0.079922663,1620000000000 ,1620000000000 ,1620000000000 ,1616812316140 -1616812316174 ,112.5729963,26.89196957,60.96160507,180.0381118,180.5024275,8.843382,0.079902723,1620000000000 ,1620000000000 ,1620000000000 ,1616812316150 -1616812316185 ,112.5729963,26.89196877,60.96074677,180.0372102,180.5116713,8.842216,0.079887124,1620000000000 ,1620000000000 ,1620000000000 ,1616812316160 -1616812316194 ,112.5729963,26.89196798,60.95981598,180.0350245,180.5234412,8.840869,0.07987351,1620000000000 ,1620000000000 ,1620000000000 ,1616812316180 -1616812316210 ,112.5729963,26.89196718,60.95880508,180.0328389,180.5302765,8.839643,0.079858624,1620000000000 ,1620000000000 ,1620000000000 ,1616812316180 -1616812316215 ,112.5729963,26.89196638,60.95773315,180.0287954,180.5360602,8.838124,0.079843669,1620000000000 ,1620000000000 ,1620000000000 ,1616812316200 -1616812316223 ,112.5729963,26.89196558,60.95616913,180.0142334,180.5855988,8.867439,0.080242615,1620000000000 ,1620000000000 ,1620000000000 ,1616812316210 -1616812316234 ,112.5729963,26.89196477,60.95387268,180.0120478,180.6774857,8.866707,0.080916591,1620000000000 ,1620000000000 ,1620000000000 ,1616812316220 -1616812316244 ,112.5729962,26.89196396,60.95149231,180.0093977,180.688912,8.86595,0.080906006,1620000000000 ,1620000000000 ,1620000000000 ,1616812316230 -1616812316254 ,112.5729962,26.89196315,60.94905472,180.0067749,180.6984656,8.865317,0.080896754,1620000000000 ,1620000000000 ,1620000000000 ,1616812316240 -1616812316264 ,112.5729962,26.89196234,60.94659042,180.0018844,180.6945864,8.865091,0.080892752,1620000000000 ,1620000000000 ,1620000000000 ,1616812316250 -1616812316274 ,112.5729962,26.89196072,60.94152451,179.9962291,180.6945184,8.865952,0.161783775,1620000000000 ,1620000000000 ,1620000000000 ,1616812316260 -1616812316283 ,112.5729962,26.89195991,60.93891144,179.9928413,180.6980494,8.865813,0.080890626,1620000000000 ,1620000000000 ,1620000000000 ,1616812316270 -1616812316293 ,112.5729962,26.89195911,60.93629456,179.9871586,180.6984259,8.865373,0.080886779,1620000000000 ,1620000000000 ,1620000000000 ,1616812316280 -1616812316304 ,112.5729962,26.89195911,60.93629456,179.9871586,-400,8.865373,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812316290 -1616812316314 ,112.5729962,26.89195749,60.93108749,179.978935,180.6897069,8.866066,0.161773221,1620000000000 ,1620000000000 ,1620000000000 ,1616812316300 -1616812316324 ,112.5729962,26.89195668,60.92845917,179.9741812,180.6891783,8.866758,0.080894944,1620000000000 ,1620000000000 ,1620000000000 ,1616812316310 -1616812316335 ,112.5729961,26.89195587,60.92583084,179.9700558,180.6887811,8.866611,0.080896675,1620000000000 ,1620000000000 ,1620000000000 ,1616812316320 -1616812316352 ,112.5729961,26.89195506,60.92324066,179.9666953,180.6855296,8.864779,0.080882569,1620000000000 ,1620000000000 ,1620000000000 ,1616812316330 -1616812316355 ,112.5729961,26.89195425,60.92069244,179.9619415,180.6752943,8.86372,0.080872053,1620000000000 ,1620000000000 ,1620000000000 ,1616812316340 -1616812316365 ,112.5729961,26.89195344,60.91815186,179.9589089,180.673468,8.863934,0.080871545,1620000000000 ,1620000000000 ,1620000000000 ,1616812316350 -1616812316375 ,112.5729961,26.89195264,60.91559982,179.9532535,180.6768963,8.864227,0.080873611,1620000000000 ,1620000000000 ,1620000000000 ,1616812316360 -1616812316388 ,112.5729961,26.89195183,60.91306305,179.9483084,180.6804614,8.864776,0.080879251,1620000000000 ,1620000000000 ,1620000000000 ,1616812316370 -1616812316395 ,112.5729961,26.89195102,60.91056061,179.9433361,180.6799561,8.864434,0.080878637,1620000000000 ,1620000000000 ,1620000000000 ,1616812316380 -1616812316405 ,112.5729961,26.89195021,60.90810013,179.9402215,180.6762917,8.863682,0.080876075,1620000000000 ,1620000000000 ,1620000000000 ,1616812316390 -1616812316416 ,112.5729961,26.8919494,60.90567017,179.9356043,180.6722781,8.862921,0.080867523,1620000000000 ,1620000000000 ,1620000000000 ,1616812316400 -1616812316426 ,112.5729961,26.89194859,60.90327072,179.9326263,180.6697293,8.863082,0.080868045,1620000000000 ,1620000000000 ,1620000000000 ,1616812316410 -1616812316434 ,112.572996,26.89194778,60.90087891,179.9274081,180.6709966,8.863848,0.08087355,1620000000000 ,1620000000000 ,1620000000000 ,1616812316420 -1616812316445 ,112.572996,26.89194697,60.89847946,179.923146,180.6758655,8.865335,0.080885984,1620000000000 ,1620000000000 ,1620000000000 ,1616812316430 -1616812316456 ,112.572996,26.89194617,60.8960762,179.9183376,180.6797633,8.86531,0.080888165,1620000000000 ,1620000000000 ,1620000000000 ,1616812316440 -1616812316465 ,112.572996,26.89194536,60.89416885,179.91301,180.6381195,8.865366,0.080475245,1620000000000 ,1620000000000 ,1620000000000 ,1616812316450 -1616812316475 ,112.572996,26.89194456,60.89276886,179.9081469,180.5791246,8.864278,0.080052666,1620000000000 ,1620000000000 ,1620000000000 ,1616812316460 -1616812316485 ,112.572996,26.89194376,60.8914032,179.9036117,180.5677981,8.864333,0.080050866,1620000000000 ,1620000000000 ,1620000000000 ,1616812316470 -1616812316498 ,112.572996,26.89194296,60.89004898,179.9013714,180.5619578,8.864725,0.080054734,1620000000000 ,1620000000000 ,1620000000000 ,1616812316480 -1616812316506 ,112.572996,26.89194216,60.8886795,179.8962351,180.5574785,8.864816,0.080053544,1620000000000 ,1620000000000 ,1620000000000 ,1616812316490 -1616812316515 ,112.572996,26.89194136,60.88731003,179.8930932,180.5459258,8.8653,0.080057871,1620000000000 ,1620000000000 ,1620000000000 ,1616812316500 -1616812316526 ,112.572996,26.89194056,60.88593674,179.889924,180.5287096,8.864332,0.080053545,1620000000000 ,1620000000000 ,1620000000000 ,1616812316510 -1616812316536 ,112.572996,26.89193976,60.8845787,179.8861264,180.5128187,8.863207,0.08004087,1620000000000 ,1620000000000 ,1620000000000 ,1616812316520 -1616812316548 ,112.572996,26.89193896,60.88322449,179.8815365,180.5044775,8.862536,0.080032696,1620000000000 ,1620000000000 ,1620000000000 ,1616812316530 -1616812316556 ,112.572996,26.89193816,60.88187027,179.8777389,180.4998388,8.862688,0.080031947,1620000000000 ,1620000000000 ,1620000000000 ,1616812316540 -1616812316567 ,112.5729959,26.89193736,60.88051605,179.8750342,180.4951419,8.863305,0.080037784,1620000000000 ,1620000000000 ,1620000000000 ,1616812316550 -1616812316577 ,112.5729959,26.89193656,60.87918472,179.8721382,180.4860727,8.8629,0.080035217,1620000000000 ,1620000000000 ,1620000000000 ,1616812316560 -1616812316586 ,112.5729959,26.89193576,60.87789536,179.8679035,180.4731975,8.863038,0.080036833,1620000000000 ,1620000000000 ,1620000000000 ,1616812316570 -1616812316596 ,112.5729959,26.89193496,60.87663651,179.8647889,180.4663805,8.862791,0.080037151,1620000000000 ,1620000000000 ,1620000000000 ,1616812316580 -1616812316609 ,112.5729959,26.89193416,60.87538528,179.8606361,180.4624884,8.863263,0.080039396,1620000000000 ,1620000000000 ,1620000000000 ,1616812316590 -1616812316617 ,112.5729959,26.89193335,60.87412643,179.8583958,180.4619662,8.862364,0.080033989,1620000000000 ,1620000000000 ,1620000000000 ,1616812316600 -1616812316629 ,112.5729959,26.89193255,60.87287903,179.8544616,180.4565815,8.862066,0.080027871,1620000000000 ,1620000000000 ,1620000000000 ,1616812316610 -1616812316636 ,112.5729959,26.89193175,60.87164688,179.8503089,180.4542899,8.861289,0.080025605,1620000000000 ,1620000000000 ,1620000000000 ,1616812316620 -1616812316648 ,112.5729959,26.89193095,60.87041855,179.8473036,180.4477929,8.861546,0.080021119,1620000000000 ,1620000000000 ,1620000000000 ,1616812316630 -1616812316657 ,112.5729959,26.89193015,60.86917877,179.8422766,180.4624534,8.862651,0.080031377,1620000000000 ,1620000000000 ,1620000000000 ,1616812316640 -1616812316667 ,112.5729959,26.89192935,60.86793137,179.837031,180.4652708,8.861731,0.080026448,1620000000000 ,1620000000000 ,1620000000000 ,1616812316650 -1616812316677 ,112.5729959,26.89192855,60.86667252,179.8329056,180.4578982,8.862165,0.080027502,1620000000000 ,1620000000000 ,1620000000000 ,1616812316660 -1616812316687 ,112.5729959,26.89192775,60.86541748,179.827578,180.4540263,8.8614025,0.080022383,1620000000000 ,1620000000000 ,1620000000000 ,1616812316670 -1616812316698 ,112.5729959,26.89192695,60.86417389,179.8228789,180.4440857,8.861193,0.080017143,1620000000000 ,1620000000000 ,1620000000000 ,1616812316680 -1616812316707 ,112.5729959,26.89192615,60.86294174,179.8147099,180.4481817,8.861352,0.080020739,1620000000000 ,1620000000000 ,1620000000000 ,1616812316690 -1616812316718 ,112.5729958,26.89192535,60.86172485,179.8098469,180.442831,8.86071,0.080015114,1620000000000 ,1620000000000 ,1620000000000 ,1616812316700 -1616812316728 ,112.5729958,26.89192455,60.86056519,179.8049018,180.4359269,8.860108,0.080014665,1620000000000 ,1620000000000 ,1620000000000 ,1616812316710 -1616812316739 ,112.5729958,26.89192375,60.85948944,179.7990552,180.4191797,8.857861,0.079999949,1620000000000 ,1620000000000 ,1620000000000 ,1616812316720 -1616812316749 ,112.5729958,26.89192295,60.85847092,179.7930173,180.4003693,8.857905,0.079996164,1620000000000 ,1620000000000 ,1620000000000 ,1616812316730 -1616812316761 ,112.5729958,26.89192215,60.85746765,179.7889738,180.3886277,8.857769,0.079996101,1620000000000 ,1620000000000 ,1620000000000 ,1616812316740 -1616812316768 ,112.5729958,26.89192135,60.85647583,179.7857226,180.3828836,8.858994,0.080003825,1620000000000 ,1620000000000 ,1620000000000 ,1616812316750 -1616812316779 ,112.5729958,26.89192055,60.85552597,179.7808868,180.3721389,8.859098,0.080010679,1620000000000 ,1620000000000 ,1620000000000 ,1616812316760 -1616812316788 ,112.5729958,26.89191975,60.85460663,179.7771166,180.356068,8.858773,0.080007918,1620000000000 ,1620000000000 ,1620000000000 ,1616812316770 -1616812316797 ,112.5729958,26.89191895,60.85368729,179.7726906,180.3418133,8.8586,0.080008125,1620000000000 ,1620000000000 ,1620000000000 ,1616812316780 -1616812316809 ,112.5729958,26.89191815,60.85274506,179.7690023,180.3371742,8.858257,0.080003644,1620000000000 ,1620000000000 ,1620000000000 ,1616812316790 -1616812316819 ,112.5729958,26.89191735,60.85181046,179.7649862,180.3378004,8.858841,0.080006226,1620000000000 ,1620000000000 ,1620000000000 ,1616812316800 -1616812316829 ,112.5729958,26.89191655,60.85087967,179.760287,180.3301649,8.858866,0.080008589,1620000000000 ,1620000000000 ,1620000000000 ,1616812316810 -1616812316838 ,112.5729958,26.89191575,60.84996796,179.7563801,180.328218,8.858662,0.080008867,1620000000000 ,1620000000000 ,1620000000000 ,1616812316820 -1616812316849 ,112.5729958,26.89191495,60.84909058,179.7535114,180.3225927,8.858717,0.080010274,1620000000000 ,1620000000000 ,1620000000000 ,1616812316830 -1616812316867 ,112.5729958,26.89191415,60.84825516,179.7478287,180.3201368,8.859062,0.080013138,1620000000000 ,1620000000000 ,1620000000000 ,1616812316840 -1616812316883 ,112.5729958,26.89191335,60.84743118,179.7437306,180.3150272,8.859032,0.080016256,1620000000000 ,1620000000000 ,1620000000000 ,1616812316850 -1616812316886 ,112.5729958,26.89191255,60.84658432,179.7408073,180.3145073,8.859146,0.080016239,1620000000000 ,1620000000000 ,1620000000000 ,1616812316860 -1616812316889 ,112.5729958,26.89191175,60.84574509,179.7357256,180.3214077,8.858591,0.080012669,1620000000000 ,1620000000000 ,1620000000000 ,1616812316870 -1616812316901 ,112.5729958,26.89191095,60.84492493,179.731327,180.3210365,8.858758,0.080013101,1620000000000 ,1620000000000 ,1620000000000 ,1616812316880 -1616812316911 ,112.5729958,26.89191015,60.84412384,179.7247973,180.3144681,8.859156,0.080020523,1620000000000 ,1620000000000 ,1620000000000 ,1616812316890 -1616812316919 ,112.5729958,26.89190935,60.84332275,179.7186228,180.3145577,8.858781,0.080016619,1620000000000 ,1620000000000 ,1620000000000 ,1616812316900 -1616812316933 ,112.5729957,26.89190855,60.84251022,179.713869,180.3152483,8.8592825,0.080020578,1620000000000 ,1620000000000 ,1620000000000 ,1616812316910 -1616812316941 ,112.5729957,26.89190775,60.84169388,179.7079677,180.304698,8.858252,0.080015114,1620000000000 ,1620000000000 ,1620000000000 ,1616812316920 -1616812316961 ,112.5729957,26.89190695,60.84088135,179.7017386,180.2959534,8.8585,0.080014376,1620000000000 ,1620000000000 ,1620000000000 ,1616812316930 -1616812316964 ,112.5729957,26.89190615,60.84007645,179.6935697,180.2885235,8.858065,0.080014773,1620000000000 ,1620000000000 ,1620000000000 ,1616812316940 -1616812316974 ,112.5729957,26.89190535,60.83926773,179.6865756,180.2786444,8.857508,0.080008099,1620000000000 ,1620000000000 ,1620000000000 ,1616812316950 -1616812316985 ,112.5729957,26.89190455,60.83845901,179.6787345,180.2738672,8.857863,0.080011423,1620000000000 ,1620000000000 ,1620000000000 ,1616812316960 -1616812317003 ,112.5729957,26.89190375,60.83763504,179.6712213,180.2632717,8.856635,0.080004554,1620000000000 ,1620000000000 ,1620000000000 ,1616812316970 -1616812317007 ,112.5729957,26.89190295,60.83680725,179.6635715,180.2533075,8.855937,0.079997055,1620000000000 ,1620000000000 ,1620000000000 ,1616812316980 -1616812317014 ,112.5729957,26.89190215,60.83597183,179.6553207,180.2403933,8.854375,0.079984861,1620000000000 ,1620000000000 ,1620000000000 ,1616812316990 -1616812317021 ,112.5729957,26.89190135,60.83512878,179.6465507,180.2348567,8.853007,0.07997268,1620000000000 ,1620000000000 ,1620000000000 ,1616812317000 -1616812317030 ,112.5729957,26.89190055,60.83428955,179.6376168,180.2301914,8.852262,0.079966009,1620000000000 ,1620000000000 ,1620000000000 ,1616812317010 -1616812317042 ,112.5729957,26.89189975,60.83343506,179.6268524,180.2210495,8.851797,0.079959882,1620000000000 ,1620000000000 ,1620000000000 ,1616812317020 -1616812317052 ,112.5729957,26.89189895,60.83256531,179.6159241,180.210426,8.851116,0.07995318,1620000000000 ,1620000000000 ,1620000000000 ,1616812317030 -1616812317064 ,112.5729957,26.89189815,60.83167648,179.6033566,180.1985563,8.850744,0.079951322,1620000000000 ,1620000000000 ,1620000000000 ,1616812317040 -1616812317076 ,112.5729957,26.89189735,60.8307724,179.5902153,180.1938784,8.850337,0.079947267,1620000000000 ,1620000000000 ,1620000000000 ,1616812317050 -1616812317081 ,112.5729957,26.89189655,60.8298378,179.5752982,180.1863752,8.850174,0.079943444,1620000000000 ,1620000000000 ,1620000000000 ,1616812317060 -1616812317092 ,112.5729957,26.89189575,60.82886505,179.5610914,180.1840799,8.849381,0.079937064,1620000000000 ,1620000000000 ,1620000000000 ,1616812317070 -1616812317101 ,112.5729957,26.89189495,60.82787704,179.5468299,180.1771585,8.848308,0.07992747,1620000000000 ,1620000000000 ,1620000000000 ,1616812317080 -1616812317113 ,112.5729957,26.89189416,60.82687759,179.5296998,180.1669874,8.84761,0.079921306,1620000000000 ,1620000000000 ,1620000000000 ,1616812317090 -1616812317121 ,112.5729957,26.89189336,60.82586288,179.5133347,180.155419,8.846522,0.079909833,1620000000000 ,1620000000000 ,1620000000000 ,1616812317100 -1616812317131 ,112.5729957,26.89189256,60.82480621,179.4942921,180.1500836,8.846794,0.079908894,1620000000000 ,1620000000000 ,1620000000000 ,1616812317110 -1616812317144 ,112.5729957,26.89189176,60.82370377,179.4744026,180.1428148,8.846627,0.079905882,1620000000000 ,1620000000000 ,1620000000000 ,1616812317120 -1616812317155 ,112.5729957,26.89189096,60.82254791,179.452628,180.1283713,8.846684,0.079904885,1620000000000 ,1620000000000 ,1620000000000 ,1616812317130 -1616812317162 ,112.5729957,26.89189016,60.82135773,179.4300337,180.1139016,8.8459,0.079896367,1620000000000 ,1620000000000 ,1620000000000 ,1616812317140 -1616812317173 ,112.5729957,26.89188936,60.82013702,179.4073301,180.0979825,8.844497,0.07988451,1620000000000 ,1620000000000 ,1620000000000 ,1616812317150 -1616812317183 ,112.5729957,26.89188856,60.81889725,179.3846266,180.0823132,8.842101,0.079864121,1620000000000 ,1620000000000 ,1620000000000 ,1616812317160 -1616812317193 ,112.5729957,26.89188776,60.81764984,179.3622236,180.0659276,8.840499,0.079846795,1620000000000 ,1620000000000 ,1620000000000 ,1616812317170 -1616812317201 ,112.5729957,26.89188697,60.81641006,179.3379627,180.0407335,8.839049,0.079834011,1620000000000 ,1620000000000 ,1620000000000 ,1616812317180 -1616812317212 ,112.5729957,26.89188617,60.81517029,179.314904,180.0076288,8.838048,0.079823176,1620000000000 ,1620000000000 ,1620000000000 ,1616812317190 -1616812317222 ,112.5729957,26.89188537,60.81454086,179.3006153,179.7650101,8.866768,0.080238504,1620000000000 ,1620000000000 ,1620000000000 ,1616812317200 -1616812317232 ,112.5729957,26.89188456,60.81490707,179.2760266,179.3902408,8.8657255,0.080938044,1620000000000 ,1620000000000 ,1620000000000 ,1616812317210 -1616812317242 ,112.5729957,26.89188375,60.8152504,179.2500172,179.3668926,8.864519,0.080925056,1620000000000 ,1620000000000 ,1620000000000 ,1616812317220 -1616812317254 ,112.5729957,26.89188294,60.81559753,179.2231336,179.3265559,8.8628435,0.080912143,1620000000000 ,1620000000000 ,1620000000000 ,1616812317230 -1616812317263 ,112.5729957,26.89188213,60.8159256,179.1979165,179.2808787,8.861142,0.080895752,1620000000000 ,1620000000000 ,1620000000000 ,1616812317240 -1616812317273 ,112.5729957,26.89188132,60.81621552,179.1730273,179.2534803,8.859887,0.080882336,1620000000000 ,1620000000000 ,1620000000000 ,1616812317250 -1616812317283 ,112.5729957,26.89188051,60.81645584,179.1475917,179.2259574,8.85991,0.080877179,1620000000000 ,1620000000000 ,1620000000000 ,1616812317260 -1616812317293 ,112.5729957,26.8918797,60.81665421,179.1237407,179.1961628,8.860368,0.080878766,1620000000000 ,1620000000000 ,1620000000000 ,1616812317270 -1616812317305 ,112.5729958,26.89187889,60.81681824,179.0975674,179.1712871,8.860864,0.080881602,1620000000000 ,1620000000000 ,1620000000000 ,1616812317280 -1616812317315 ,112.5729958,26.89187809,60.81698608,179.0697276,179.1500503,8.859781,0.080876179,1620000000000 ,1620000000000 ,1620000000000 ,1616812317290 -1616812317322 ,112.5729958,26.89187728,60.81719208,179.0422702,179.1221599,8.85789,0.080862714,1620000000000 ,1620000000000 ,1620000000000 ,1616812317300 -1616812317332 ,112.5729958,26.89187647,60.81745148,179.0121081,179.0931329,8.855861,0.080847805,1620000000000 ,1620000000000 ,1620000000000 ,1616812317320 -1616812317344 ,112.5729958,26.89187566,60.81776428,178.9847327,179.0673536,8.854357,0.080836183,1620000000000 ,1620000000000 ,1620000000000 ,1616812317330 -1616812317353 ,112.5729958,26.89187485,60.81811142,178.9559639,179.0369797,8.85199,0.080818076,1620000000000 ,1620000000000 ,1620000000000 ,1616812317340 -1616812317363 ,112.5729959,26.89187324,60.8189621,178.897798,178.9883575,8.848828,0.161600928,1620000000000 ,1620000000000 ,1620000000000 ,1616812317350 -1616812317373 ,112.5729959,26.89187243,60.81947708,178.8676359,178.9382749,8.846973,0.080781863,1620000000000 ,1620000000000 ,1620000000000 ,1616812317360 -1616812317385 ,112.5729959,26.89187243,60.81947708,178.8676359,-400,8.846973,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812317370 -1616812317394 ,112.5729959,26.89187081,60.82062912,178.8046616,178.8941028,8.842719,0.161517362,1620000000000 ,1620000000000 ,1620000000000 ,1616812317380 -1616812317403 ,112.5729959,26.89187081,60.82062912,178.8046616,-400,8.842719,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812317380 -1616812317415 ,112.5729959,26.8918692,60.82199478,178.7379716,178.8304602,8.838896,0.161446899,1620000000000 ,1620000000000 ,1620000000000 ,1616812317400 -1616812317424 ,112.5729959,26.89186839,60.82274628,178.7032742,178.7656034,8.837685,0.080711734,1620000000000 ,1620000000000 ,1620000000000 ,1616812317410 -1616812317434 ,112.572996,26.89186759,60.82349014,178.6673748,178.7264274,8.837786,0.080710019,1620000000000 ,1620000000000 ,1620000000000 ,1616812317420 -1616812317444 ,112.572996,26.89186678,60.82421112,178.6304917,178.6975587,8.8370285,0.080706583,1620000000000 ,1620000000000 ,1620000000000 ,1616812317430 -1616812317454 ,112.572996,26.89186597,60.82493591,178.5934994,178.6689743,8.83515,0.080692898,1620000000000 ,1620000000000 ,1620000000000 ,1616812317440 -1616812317465 ,112.572996,26.89186517,60.82504654,178.5564798,178.8455045,8.831767,0.080241836,1620000000000 ,1620000000000 ,1620000000000 ,1616812317450 -1616812317475 ,112.572996,26.89186437,60.824543,178.5179849,179.0101671,8.828994,0.079786348,1620000000000 ,1620000000000 ,1620000000000 ,1616812317460 -1616812317484 ,112.572996,26.89186357,60.82404709,178.4792987,178.9798485,8.8267765,0.079767041,1620000000000 ,1620000000000 ,1620000000000 ,1616812317470 -1616812317494 ,112.5729961,26.89186278,60.8235321,178.441678,178.9532772,8.82673,0.079761526,1620000000000 ,1620000000000 ,1620000000000 ,1616812317480 -1616812317506 ,112.5729961,26.89186198,60.82296753,178.4034836,178.9357145,8.827037,0.079764465,1620000000000 ,1620000000000 ,1620000000000 ,1616812317490 -1616812317514 ,112.5729961,26.89186118,60.82235336,178.3658902,178.9162702,8.827582,0.079768294,1620000000000 ,1620000000000 ,1620000000000 ,1616812317500 -1616812317524 ,112.5729961,26.89186038,60.82170486,178.3260839,178.8958999,8.827019,0.079764614,1620000000000 ,1620000000000 ,1620000000000 ,1616812317510 -1616812317534 ,112.5729961,26.89185959,60.82103729,178.2846656,178.8743381,8.825023,0.079750733,1620000000000 ,1620000000000 ,1620000000000 ,1616812317520 -1616812317549 ,112.5729961,26.89185879,60.82034302,178.2421545,178.8514166,8.822298,0.079727587,1620000000000 ,1620000000000 ,1620000000000 ,1616812317530 -1616812317561 ,112.5729962,26.89185799,60.81959915,178.1985779,178.8294995,8.819496,0.079702506,1620000000000 ,1620000000000 ,1620000000000 ,1616812317540 -1616812317567 ,112.5729962,26.8918572,60.81881332,178.1534987,178.8056967,8.817552,0.079682176,1620000000000 ,1620000000000 ,1620000000000 ,1616812317550 -1616812317577 ,112.5729962,26.8918564,60.81799698,178.1089658,178.7731164,8.816285,0.079669305,1620000000000 ,1620000000000 ,1620000000000 ,1616812317560 -1616812317590 ,112.5729962,26.8918556,60.81712723,178.0638319,178.7400305,8.815414,0.079659483,1620000000000 ,1620000000000 ,1620000000000 ,1616812317570 -1616812317597 ,112.5729962,26.89185481,60.81619263,178.0214301,178.7043178,8.814935,0.079652266,1620000000000 ,1620000000000 ,1620000000000 ,1616812317580 -1616812317609 ,112.5729962,26.89185401,60.81518936,177.9764602,178.6689569,8.814767,0.079646996,1620000000000 ,1620000000000 ,1620000000000 ,1616812317590 -1616812317616 ,112.5729963,26.89185322,60.81415939,177.9296051,178.6391864,8.814196,0.079642664,1620000000000 ,1620000000000 ,1620000000000 ,1616812317600 -1616812317626 ,112.5729963,26.89185242,60.81312943,177.8838974,178.589399,8.813868,0.079640524,1620000000000 ,1620000000000 ,1620000000000 ,1616812317610 -1616812317638 ,112.5729963,26.89185162,60.81210327,177.8369877,178.5291104,8.812085,0.079630797,1620000000000 ,1620000000000 ,1620000000000 ,1616812317620 -1616812317647 ,112.5729963,26.89185083,60.81106186,177.7877557,178.4544131,8.809233,0.079605849,1620000000000 ,1620000000000 ,1620000000000 ,1616812317630 -1616812317656 ,112.5729963,26.89185003,60.80998611,177.7416382,178.3930306,8.806734,0.07958231,1620000000000 ,1620000000000 ,1620000000000 ,1616812317640 -1616812317666 ,112.5729964,26.89184924,60.80887985,177.6950564,178.3355558,8.804833,0.079563369,1620000000000 ,1620000000000 ,1620000000000 ,1616812317650 -1616812317676 ,112.5729964,26.89184844,60.80774307,177.6481739,178.2709581,8.803278,0.079548329,1620000000000 ,1620000000000 ,1620000000000 ,1616812317660 -1616812317687 ,112.5729964,26.89184765,60.80659485,177.6018106,178.2019244,8.801972,0.079537145,1620000000000 ,1620000000000 ,1620000000000 ,1616812317670 -1616812317698 ,112.5729964,26.89184685,60.8054657,177.556786,178.1250405,8.799948,0.079523362,1620000000000 ,1620000000000 ,1620000000000 ,1616812317680 -1616812317707 ,112.5729965,26.89184606,60.80436325,177.5113243,178.0490757,8.7972975,0.079502831,1620000000000 ,1620000000000 ,1620000000000 ,1616812317690 -1616812317717 ,112.5729965,26.89184526,60.80329132,177.4694142,177.9817233,8.793639,0.079474816,1620000000000 ,1620000000000 ,1620000000000 ,1616812317700 -1616812317727 ,112.5729965,26.89184447,60.80221176,177.4281599,177.9191116,8.790381,0.079444245,1620000000000 ,1620000000000 ,1620000000000 ,1616812317710 -1616812317737 ,112.5729966,26.89184368,60.8010788,177.3876159,177.8682986,8.788483,0.07942082,1620000000000 ,1620000000000 ,1620000000000 ,1616812317720 -1616812317748 ,112.5729966,26.89184288,60.79986191,177.344012,177.8132721,8.787898,0.079411144,1620000000000 ,1620000000000 ,1620000000000 ,1616812317730 -1616812317760 ,112.5729966,26.89184209,60.79855728,177.297594,177.7574533,8.787913,0.079404371,1620000000000 ,1620000000000 ,1620000000000 ,1616812317740 -1616812317768 ,112.5729967,26.89184129,60.79719162,177.2516132,177.7147869,8.787366,0.079399504,1620000000000 ,1620000000000 ,1620000000000 ,1616812317750 -1616812317778 ,112.5729967,26.8918405,60.795784,177.2057143,177.6839273,8.786742,0.07939234,1620000000000 ,1620000000000 ,1620000000000 ,1616812317760 -1616812317789 ,112.5729967,26.89183971,60.79439545,177.1595149,177.6518906,8.78309,0.079369931,1620000000000 ,1620000000000 ,1620000000000 ,1616812317770 -1616812317798 ,112.5729967,26.89183892,60.79307175,177.1145176,177.6002107,8.778113,0.079330422,1620000000000 ,1620000000000 ,1620000000000 ,1616812317780 -1616812317808 ,112.5729968,26.89183812,60.79177094,177.0695476,177.5479748,8.774721,0.079296598,1620000000000 ,1620000000000 ,1620000000000 ,1616812317790 -1616812317817 ,112.5729968,26.89183733,60.79037857,177.0263262,177.4967829,8.774094,0.079281341,1620000000000 ,1620000000000 ,1620000000000 ,1616812317800 -1616812317827 ,112.5729969,26.89183654,60.78880692,176.9832687,177.4550206,8.775162,0.07927722,1620000000000 ,1620000000000 ,1620000000000 ,1616812317810 -1616812317839 ,112.5729969,26.89183575,60.7870903,176.9387632,177.4204693,8.7772875,0.079285825,1620000000000 ,1620000000000 ,1620000000000 ,1616812317820 -1616812317848 ,112.5729969,26.89183496,60.78534317,176.8937932,177.3810076,8.777766,0.079294294,1620000000000 ,1620000000000 ,1620000000000 ,1616812317830 -1616812317858 ,112.572997,26.89183416,60.78363419,176.8485227,177.354991,8.777062,0.0792934,1620000000000 ,1620000000000 ,1620000000000 ,1616812317840 -1616812317867 ,112.572997,26.89183337,60.78197861,176.8022414,177.3305703,8.775724,0.079284838,1620000000000 ,1620000000000 ,1620000000000 ,1616812317850 -1616812317881 ,112.572997,26.89183258,60.78032684,176.7575446,177.2986473,8.771528,0.079255081,1620000000000 ,1620000000000 ,1620000000000 ,1616812317860 -1616812317888 ,112.5729971,26.89183179,60.77865601,176.7100611,177.2590877,8.767038,0.079209813,1620000000000 ,1620000000000 ,1620000000000 ,1616812317870 -1616812317898 ,112.5729971,26.891831,60.77694702,176.6652551,177.201995,8.763279,0.079175971,1620000000000 ,1620000000000 ,1620000000000 ,1616812317880 -1616812317910 ,112.5729972,26.89183021,60.77522659,176.6184819,177.1528377,8.761077,0.079149588,1620000000000 ,1620000000000 ,1620000000000 ,1616812317890 -1616812317920 ,112.5729972,26.89182942,60.77354813,176.5734573,177.1027197,8.759739,0.079137837,1620000000000 ,1620000000000 ,1620000000000 ,1616812317900 -1616812317937 ,112.5729972,26.89182863,60.77193451,176.5291157,177.045907,8.760322,0.079141868,1620000000000 ,1620000000000 ,1620000000000 ,1616812317910 -1616812317939 ,112.5729973,26.89182784,60.77033997,176.4870691,176.9967237,8.761355,0.079151164,1620000000000 ,1620000000000 ,1620000000000 ,1616812317920 -1616812317949 ,112.5729973,26.89182705,60.7686882,176.4435198,176.9644075,8.763063,0.079162592,1620000000000 ,1620000000000 ,1620000000000 ,1616812317930 -1616812317959 ,112.5729974,26.89182625,60.76698685,176.4016098,176.9324334,8.762126,0.079157738,1620000000000 ,1620000000000 ,1620000000000 ,1616812317940 -1616812317971 ,112.5729974,26.89182546,60.76528931,176.3560114,176.8684542,8.758588,0.079132146,1620000000000 ,1620000000000 ,1620000000000 ,1616812317950 -1616812317980 ,112.5729974,26.89182468,60.76361847,176.3129539,176.7887992,8.753472,0.079090208,1620000000000 ,1620000000000 ,1620000000000 ,1616812317960 -1616812317989 ,112.5729975,26.89182389,60.76198959,176.2703882,176.737275,8.748238,0.079045397,1620000000000 ,1620000000000 ,1620000000000 ,1616812317970 -1616812317999 ,112.5729975,26.8918231,60.76037216,176.2300081,176.6981299,8.747204,0.079023265,1620000000000 ,1620000000000 ,1620000000000 ,1616812317980 -1616812318017 ,112.5729976,26.89182231,60.75876999,176.1897646,176.6576672,8.747243,0.079025444,1620000000000 ,1620000000000 ,1620000000000 ,1616812317990 -1616812318020 ,112.5729976,26.89182152,60.75716019,176.1499036,176.6081428,8.74788,0.079029128,1620000000000 ,1620000000000 ,1620000000000 ,1616812318000 -1616812318035 ,112.5729977,26.89182073,60.75561142,176.1083761,176.5496218,8.745424,0.079018083,1620000000000 ,1620000000000 ,1620000000000 ,1616812318010 -1616812318039 ,112.5729977,26.89181994,60.75418854,176.0669578,176.4761975,8.741339,0.078989405,1620000000000 ,1620000000000 ,1620000000000 ,1616812318020 -1616812318050 ,112.5729978,26.89181915,60.75289536,176.0255669,176.4118828,8.737773,0.078962996,1620000000000 ,1620000000000 ,1620000000000 ,1616812318030 -1616812318063 ,112.5729978,26.89181837,60.7516861,175.9850502,176.350968,8.733553,0.078930327,1620000000000 ,1620000000000 ,1620000000000 ,1616812318040 -1616812318072 ,112.5729979,26.89181758,60.75050735,175.948659,176.2902245,8.729981,0.078898148,1620000000000 ,1620000000000 ,1620000000000 ,1616812318050 -1616812318086 ,112.5729979,26.89181679,60.7493248,175.9110656,176.2313691,8.729307,0.078885338,1620000000000 ,1620000000000 ,1620000000000 ,1616812318060 -1616812318091 ,112.572998,26.891816,60.74807358,175.8723521,176.1768992,8.729171,0.078880157,1620000000000 ,1620000000000 ,1620000000000 ,1616812318070 -1616812318101 ,112.572998,26.89181522,60.74671555,175.8350592,176.1218232,8.728397,0.078871058,1620000000000 ,1620000000000 ,1620000000000 ,1616812318080 -1616812318112 ,112.5729981,26.89181443,60.7453537,175.7942694,176.0884365,8.724816,0.078846936,1620000000000 ,1620000000000 ,1620000000000 ,1616812318090 -1616812318123 ,112.5729981,26.89181364,60.744133,175.7541898,176.0513618,8.721789,0.078819889,1620000000000 ,1620000000000 ,1620000000000 ,1616812318100 -1616812318131 ,112.5729982,26.89181286,60.74305344,175.7171429,176.0208364,8.717625,0.078795497,1620000000000 ,1620000000000 ,1620000000000 ,1616812318110 -1616812318141 ,112.5729983,26.89181207,60.7420578,175.6827187,175.9848574,8.713502,0.078762648,1620000000000 ,1620000000000 ,1620000000000 ,1616812318120 -1616812318151 ,112.5729983,26.89181129,60.74104691,175.6498792,175.9377343,8.709782,0.078725482,1620000000000 ,1620000000000 ,1620000000000 ,1616812318130 -1616812318162 ,112.5729984,26.8918105,60.73992157,175.6151272,175.9003105,8.710598,0.078717758,1620000000000 ,1620000000000 ,1620000000000 ,1616812318140 -1616812318171 ,112.5729984,26.89180972,60.73870087,175.576359,175.8890445,8.712119,0.078729635,1620000000000 ,1620000000000 ,1620000000000 ,1616812318150 -1616812318182 ,112.5729985,26.89180893,60.73743439,175.537181,175.8678149,8.710268,0.078717951,1620000000000 ,1620000000000 ,1620000000000 ,1616812318160 -1616812318193 ,112.5729985,26.89180815,60.73623657,175.49732,175.8453931,8.704387,0.078674082,1620000000000 ,1620000000000 ,1620000000000 ,1616812318170 -1616812318202 ,112.5729986,26.89180736,60.73521423,175.4589344,175.8078724,8.703578,0.078663989,1620000000000 ,1620000000000 ,1620000000000 ,1616812318180 -1616812318211 ,112.5729986,26.89180658,60.73438644,175.4204121,175.7621456,8.704018,0.078675714,1620000000000 ,1620000000000 ,1620000000000 ,1616812318190 -1616812318221 ,112.5729987,26.89180579,60.73319244,175.3985009,175.4763919,8.711477,0.078714708,1620000000000 ,1620000000000 ,1620000000000 ,1616812318200 -1616812318233 ,112.5729988,26.89180501,60.73124313,175.3653881,174.9763192,8.707361,0.078819956,1620000000000 ,1620000000000 ,1620000000000 ,1616812318210 -1616812318245 ,112.5729989,26.89180422,60.72916031,175.3330677,174.9079593,8.70285,0.078776911,1620000000000 ,1620000000000 ,1620000000000 ,1616812318220 -1616812318252 ,112.5729989,26.89180344,60.72700882,175.2987801,174.8645341,8.695804,0.078714737,1620000000000 ,1620000000000 ,1620000000000 ,1616812318230 -1616812318263 ,112.572999,26.89180266,60.72484207,175.2618698,174.8255092,8.696296,0.078700356,1620000000000 ,1620000000000 ,1620000000000 ,1616812318240 -1616812318272 ,112.5729991,26.89180187,60.72270966,175.2252053,174.7909227,8.695451,0.078706741,1620000000000 ,1620000000000 ,1620000000000 ,1616812318250 -1616812318284 ,112.5729991,26.89180109,60.72063446,175.1922018,174.7777056,8.695071,0.078701379,1620000000000 ,1620000000000 ,1620000000000 ,1616812318260 -1616812318292 ,112.5729992,26.89180031,60.71862411,175.1582968,174.7362517,8.692445,0.078690535,1620000000000 ,1620000000000 ,1620000000000 ,1616812318270 -1616812318302 ,112.5729993,26.89179952,60.71670532,175.1225886,174.6672328,8.6889305,0.078668268,1620000000000 ,1620000000000 ,1620000000000 ,1616812318280 -1616812318313 ,112.5729994,26.89179874,60.71479797,175.0883283,174.595522,8.68538,0.078641736,1620000000000 ,1620000000000 ,1620000000000 ,1616812318290 -1616812318323 ,112.5729994,26.89179796,60.71279907,175.0573739,174.5498819,8.681779,0.078606741,1620000000000 ,1620000000000 ,1620000000000 ,1616812318300 -1616812318332 ,112.5729995,26.89179717,60.71071625,175.0243158,174.5172078,8.67866,0.078573413,1620000000000 ,1620000000000 ,1620000000000 ,1616812318310 -1616812318342 ,112.5729996,26.89179639,60.70867157,174.9927876,174.4622984,8.67395,0.078543306,1620000000000 ,1620000000000 ,1620000000000 ,1616812318330 -1616812318354 ,112.5729997,26.89179561,60.70672607,174.9629807,174.3838366,8.671298,0.078521564,1620000000000 ,1620000000000 ,1620000000000 ,1616812318330 -1616812318365 ,112.5729997,26.89179483,60.70479202,174.9339114,174.3130636,8.671407,0.078515398,1620000000000 ,1620000000000 ,1620000000000 ,1616812318350 -1616812318374 ,112.5729998,26.89179405,60.70276642,174.9058257,174.2676266,8.67414,0.078536063,1620000000000 ,1620000000000 ,1620000000000 ,1616812318360 -1616812318384 ,112.5729999,26.89179327,60.70064163,174.8779585,174.2318339,8.673679,0.078535452,1620000000000 ,1620000000000 ,1620000000000 ,1616812318370 -1616812318394 ,112.573,26.89179249,60.69852448,174.8484521,174.1738106,8.671797,0.07852382,1620000000000 ,1620000000000 ,1620000000000 ,1616812318380 -1616812318404 ,112.5730001,26.8917917,60.69646454,174.8193555,174.098342,8.667265,0.078495524,1620000000000 ,1620000000000 ,1620000000000 ,1616812318380 -1616812318416 ,112.5730001,26.89179092,60.69442368,174.7941111,174.0494345,8.661916,0.078448032,1620000000000 ,1620000000000 ,1620000000000 ,1616812318400 -1616812318424 ,112.5730003,26.89178937,60.69028854,174.7459992,173.9941383,8.65309,0.156779923,1620000000000 ,1620000000000 ,1620000000000 ,1616812318410 -1616812318435 ,112.5730003,26.89178937,60.69028854,174.7459992,-400,8.65309,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812318420 -1616812318446 ,112.5730005,26.89178781,60.68609238,174.6997179,173.9237059,8.649988,0.156691414,1620000000000 ,1620000000000 ,1620000000000 ,1616812318430 -1616812318454 ,112.5730005,26.89178703,60.68397141,174.6784077,173.8794415,8.6484785,0.078324617,1620000000000 ,1620000000000 ,1620000000000 ,1616812318440 -1616812318464 ,112.5730006,26.89178625,60.68236923,174.653901,174.1391532,8.64714,0.078252372,1620000000000 ,1620000000000 ,1620000000000 ,1616812318450 -1616812318474 ,112.5730007,26.89178547,60.68125916,174.6310881,174.3944839,8.646447,0.078187861,1620000000000 ,1620000000000 ,1620000000000 ,1616812318460 -1616812318486 ,112.5730008,26.89178469,60.68011475,174.6112806,174.3895659,8.643333,0.078161696,1620000000000 ,1620000000000 ,1620000000000 ,1616812318470 -1616812318495 ,112.5730009,26.89178392,60.67889023,174.5923473,174.3901438,8.64155,0.078138917,1620000000000 ,1620000000000 ,1620000000000 ,1616812318480 -1616812318506 ,112.5730009,26.89178392,60.67889023,174.5923473,-400,8.64155,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812318490 -1616812318515 ,112.573001,26.89178236,60.67571259,174.5531693,174.3345718,8.643078,0.156223173,1620000000000 ,1620000000000 ,1620000000000 ,1616812318500 -1616812318525 ,112.5730011,26.89178158,60.67360687,174.5271873,174.3502141,8.6399145,0.078079247,1620000000000 ,1620000000000 ,1620000000000 ,1616812318510 -1616812318534 ,112.5730012,26.89178081,60.6713028,174.5047296,174.4514742,8.644121,0.078090599,1620000000000 ,1620000000000 ,1620000000000 ,1616812318520 -1616812318546 ,112.5730012,26.89178003,60.66890717,174.4865887,174.38303,8.643953,0.078096925,1620000000000 ,1620000000000 ,1620000000000 ,1616812318530 -1616812318555 ,112.5730013,26.89177925,60.66657257,174.4680105,174.3260075,8.636918,0.078049659,1620000000000 ,1620000000000 ,1620000000000 ,1616812318540 -1616812318566 ,112.5730014,26.89177848,60.66458893,174.4496237,174.2855625,8.62568,0.077966746,1620000000000 ,1620000000000 ,1620000000000 ,1616812318550 -1616812318576 ,112.5730015,26.8917777,60.66277695,174.4318652,174.2536102,8.621277,0.077918412,1620000000000 ,1620000000000 ,1620000000000 ,1616812318560 -1616812318586 ,112.5730015,26.89177693,60.66088867,174.4164016,174.2484959,8.627142,0.077947333,1620000000000 ,1620000000000 ,1620000000000 ,1616812318570 -1616812318596 ,112.5730016,26.89177615,60.65870285,174.4047357,174.2570719,8.634206,0.077994066,1620000000000 ,1620000000000 ,1620000000000 ,1616812318580 -1616812318606 ,112.5730017,26.89177537,60.65632629,174.3913758,174.2769016,8.637186,0.07802862,1620000000000 ,1620000000000 ,1620000000000 ,1616812318590 -1616812318616 ,112.5730018,26.8917746,60.65409851,174.3770871,174.2049983,8.626408,0.077963813,1620000000000 ,1620000000000 ,1620000000000 ,1616812318600 -1616812318627 ,112.5730019,26.89177382,60.6521492,174.3654484,174.1184093,8.618558,0.077897704,1620000000000 ,1620000000000 ,1620000000000 ,1616812318610 -1616812318635 ,112.5730019,26.89177305,60.65036774,174.3568697,174.0935218,8.613884,0.077856381,1620000000000 ,1620000000000 ,1620000000000 ,1616812318620 -1616812318645 ,112.573002,26.89177228,60.64858627,174.35187,174.1185627,8.614368,0.077846974,1620000000000 ,1620000000000 ,1620000000000 ,1616812318630 -1616812318656 ,112.5730021,26.8917715,60.64680862,174.3435918,174.1138788,8.611619,0.077832013,1620000000000 ,1620000000000 ,1620000000000 ,1616812318640 -1616812318667 ,112.5730022,26.89177073,60.64513779,174.3374446,174.0578845,8.609114,0.077811141,1620000000000 ,1620000000000 ,1620000000000 ,1616812318650 -1616812318677 ,112.5730023,26.89176995,60.64356232,174.33586,173.9993995,8.609273,0.077815031,1620000000000 ,1620000000000 ,1620000000000 ,1616812318660 -1616812318687 ,112.5730023,26.89176918,60.64202499,174.3333465,174.001071,8.608247,0.077806704,1620000000000 ,1620000000000 ,1620000000000 ,1616812318670 -1616812318699 ,112.5730024,26.89176841,60.64053726,174.3317892,174.0310724,8.609204,0.077814357,1620000000000 ,1620000000000 ,1620000000000 ,1616812318680 -1616812318706 ,112.5730025,26.89176763,60.63918686,174.3307511,174.0448462,8.603589,0.077787555,1620000000000 ,1620000000000 ,1620000000000 ,1616812318690 -1616812318719 ,112.5730026,26.89176686,60.63804626,174.3290845,174.0522845,8.596117,0.077731779,1620000000000 ,1620000000000 ,1620000000000 ,1616812318700 -1616812318727 ,112.5730027,26.89176609,60.63705444,174.3267622,174.0526293,8.59056,0.077684111,1620000000000 ,1620000000000 ,1620000000000 ,1616812318710 -1616812318737 ,112.5730028,26.89176531,60.63611603,174.3275272,174.0706875,8.588261,0.077651874,1620000000000 ,1620000000000 ,1620000000000 ,1616812318720 -1616812318750 ,112.5730028,26.89176454,60.63519287,174.3275819,174.098287,8.590234,0.077666916,1620000000000 ,1620000000000 ,1620000000000 ,1616812318730 -1616812318758 ,112.5730029,26.89176377,60.63431549,174.3277731,174.095508,8.587449,0.077655784,1620000000000 ,1620000000000 ,1620000000000 ,1616812318740 -1616812318767 ,112.573003,26.891763,60.63359451,174.3289479,174.0991764,8.586043,0.077648986,1620000000000 ,1620000000000 ,1620000000000 ,1616812318750 -1616812318777 ,112.5730031,26.89176222,60.63306046,174.3307237,174.109914,8.580536,0.07761579,1620000000000 ,1620000000000 ,1620000000000 ,1616812318760 -1616812318790 ,112.5730031,26.89176145,60.63261795,174.3335651,174.1217985,8.578448,0.07759312,1620000000000 ,1620000000000 ,1620000000000 ,1616812318770 -1616812318800 ,112.5730032,26.89176068,60.632164,174.3380184,174.1129699,8.574802,0.077568678,1620000000000 ,1620000000000 ,1620000000000 ,1616812318780 -1616812318809 ,112.5730033,26.89175991,60.63162613,174.3408871,174.126429,8.571865,0.077530873,1620000000000 ,1620000000000 ,1620000000000 ,1616812318790 -1616812318818 ,112.5730034,26.89175914,60.63105774,174.3430181,174.1464126,8.570225,0.077518668,1620000000000 ,1620000000000 ,1620000000000 ,1616812318800 -1616812318830 ,112.5730035,26.89175837,60.63047028,174.3488101,174.1448641,8.564443,0.077474807,1620000000000 ,1620000000000 ,1620000000000 ,1616812318810 -1616812318838 ,112.5730035,26.8917576,60.62993622,174.3559681,174.1500568,8.560536,0.077438405,1620000000000 ,1620000000000 ,1620000000000 ,1616812318820 -1616812318850 ,112.5730036,26.89175683,60.62946701,174.3635906,174.1305029,8.554631,0.077396145,1620000000000 ,1620000000000 ,1620000000000 ,1616812318830 -1616812318859 ,112.5730037,26.89175606,60.62905502,174.3703115,174.1215001,8.549809,0.077349946,1620000000000 ,1620000000000 ,1620000000000 ,1616812318840 -1616812318869 ,112.5730038,26.89175529,60.62862015,174.3772237,174.1205089,8.548775,0.077333136,1620000000000 ,1620000000000 ,1620000000000 ,1616812318850 -1616812318878 ,112.5730039,26.89175452,60.62807465,174.3846003,174.1261608,8.551167,0.077339994,1620000000000 ,1620000000000 ,1620000000000 ,1616812318860 -1616812318889 ,112.5730039,26.89175375,60.62739563,174.392414,174.1409752,8.556237,0.077377803,1620000000000 ,1620000000000 ,1620000000000 ,1616812318870 -1616812318898 ,112.573004,26.89175298,60.62663651,174.4017304,174.1536923,8.556591,0.077391174,1620000000000 ,1620000000000 ,1620000000000 ,1616812318880 -1616812318909 ,112.5730041,26.89175221,60.6258812,174.4096534,174.168758,8.553165,0.077366495,1620000000000 ,1620000000000 ,1620000000000 ,1616812318890 -1616812318919 ,112.5730042,26.89175144,60.62512589,174.422139,174.1596776,8.547021,0.077320249,1620000000000 ,1620000000000 ,1620000000000 ,1616812318900 -1616812318929 ,112.5730043,26.89175067,60.62427521,174.4368922,174.1424999,8.5401745,0.0772514,1620000000000 ,1620000000000 ,1620000000000 ,1616812318910 -1616812318939 ,112.5730043,26.8917499,60.62326431,174.4544868,174.1473445,8.535444,0.077195146,1620000000000 ,1620000000000 ,1620000000000 ,1616812318920 -1616812318950 ,112.5730044,26.89174914,60.62212753,174.4719174,174.1720164,8.531835,0.077151617,1620000000000 ,1620000000000 ,1620000000000 ,1616812318930 -1616812318960 ,112.5730045,26.89174837,60.62096786,174.4879547,174.1813335,8.532702,0.077149988,1620000000000 ,1620000000000 ,1620000000000 ,1616812318940 -1616812318968 ,112.5730046,26.8917476,60.61983871,174.5031177,174.1793772,8.533584,0.077161883,1620000000000 ,1620000000000 ,1620000000000 ,1616812318950 -1616812318985 ,112.5730046,26.89174683,60.61870193,174.5186086,174.1972796,8.538143,0.077187262,1620000000000 ,1620000000000 ,1620000000000 ,1616812318960 -1616812318991 ,112.5730047,26.89174607,60.61749649,174.5323236,174.22203,8.539661,0.077212703,1620000000000 ,1620000000000 ,1620000000000 ,1616812318970 -1616812318999 ,112.5730048,26.8917453,60.61617279,174.5484155,174.2419881,8.537061,0.077187879,1620000000000 ,1620000000000 ,1620000000000 ,1616812318980 -1616812319010 ,112.5730049,26.89174453,60.61475372,174.5652451,174.2589564,8.532989,0.077148967,1620000000000 ,1620000000000 ,1620000000000 ,1616812318990 -1616812319020 ,112.573005,26.89174376,60.61326218,174.5825392,174.25998,8.526107,0.077089604,1620000000000 ,1620000000000 ,1620000000000 ,1616812319000 -1616812319031 ,112.573005,26.891743,60.61174393,174.6013905,174.267129,8.521335,0.07703817,1620000000000 ,1620000000000 ,1620000000000 ,1616812319010 -1616812319039 ,112.5730051,26.89174223,60.61019516,174.6216625,174.3002771,8.520318,0.07701634,1620000000000 ,1620000000000 ,1620000000000 ,1616812319020 -1616812319050 ,112.5730052,26.89174146,60.6086235,174.6442841,174.3578649,8.520688,0.07701423,1620000000000 ,1620000000000 ,1620000000000 ,1616812319030 -1616812319060 ,112.5730053,26.8917407,60.60702133,174.6661133,174.4099217,8.520051,0.0770119,1620000000000 ,1620000000000 ,1620000000000 ,1616812319040 -1616812319077 ,112.5730053,26.89173993,60.60538483,174.6875055,174.4445233,8.518496,0.07699541,1620000000000 ,1620000000000 ,1620000000000 ,1616812319050 -1616812319082 ,112.5730054,26.89173916,60.60373306,174.7049088,174.4853121,8.515595,0.076969271,1620000000000 ,1620000000000 ,1620000000000 ,1616812319060 -1616812319094 ,112.5730055,26.8917384,60.60203934,174.7218477,174.5338885,8.510856,0.076925875,1620000000000 ,1620000000000 ,1620000000000 ,1616812319070 -1616812319102 ,112.5730056,26.89173763,60.60029602,174.7405078,174.5811557,8.508245,0.076891801,1620000000000 ,1620000000000 ,1620000000000 ,1616812319080 -1616812319111 ,112.5730056,26.89173687,60.59855652,174.7552063,174.6199121,8.505224,0.076866059,1620000000000 ,1620000000000 ,1620000000000 ,1616812319090 -1616812319121 ,112.5730057,26.8917361,60.59686661,174.7737298,174.6384252,8.504629,0.076856379,1620000000000 ,1620000000000 ,1620000000000 ,1616812319100 -1616812319132 ,112.5730058,26.89173534,60.59524918,174.792144,174.6273877,8.506737,0.076871877,1620000000000 ,1620000000000 ,1620000000000 ,1616812319110 -1616812319141 ,112.5730058,26.89173457,60.59365845,174.8122794,174.6267196,8.505807,0.076874607,1620000000000 ,1620000000000 ,1620000000000 ,1616812319120 -1616812319153 ,112.5730059,26.89173381,60.59206772,174.8339448,174.5925164,8.505719,0.076869992,1620000000000 ,1620000000000 ,1620000000000 ,1616812319130 -1616812319162 ,112.573006,26.89173304,60.59054947,174.8552549,174.6249312,8.503266,0.076863516,1620000000000 ,1620000000000 ,1620000000000 ,1616812319140 -1616812319172 ,112.5730061,26.89173228,60.58925629,174.8771662,174.6296015,8.492474,0.076789094,1620000000000 ,1620000000000 ,1620000000000 ,1616812319150 -1616812319183 ,112.5730061,26.89173151,60.5881424,174.9040498,174.5842591,8.482351,0.076708315,1620000000000 ,1620000000000 ,1620000000000 ,1616812319160 -1616812319192 ,112.5730062,26.89173075,60.58711243,174.9354687,174.5511121,8.477909,0.076655699,1620000000000 ,1620000000000 ,1620000000000 ,1616812319170 -1616812319202 ,112.5730063,26.89172999,60.58600998,174.9652756,174.5279581,8.477594,0.076639342,1620000000000 ,1620000000000 ,1620000000000 ,1616812319180 -1616812319214 ,112.5730064,26.89172922,60.58475494,174.9872142,174.5525589,8.483593,0.076672165,1620000000000 ,1620000000000 ,1620000000000 ,1616812319190 -1616812319223 ,112.5730064,26.89172846,60.58338165,175.0161742,174.4832061,8.4977665,0.076841591,1620000000000 ,1620000000000 ,1620000000000 ,1616812319200 -1616812319232 ,112.5730065,26.89172769,60.58197021,175.0382767,174.2495323,8.49976,0.077037139,1620000000000 ,1620000000000 ,1620000000000 ,1616812319210 -1616812319242 ,112.5730066,26.89172693,60.58058167,175.0616086,174.2996444,8.491759,0.076991538,1620000000000 ,1620000000000 ,1620000000000 ,1616812319220 -1616812319252 ,112.5730067,26.89172616,60.57946777,175.0815255,174.2902468,8.480084,0.076904947,1620000000000 ,1620000000000 ,1620000000000 ,1616812319230 -1616812319265 ,112.5730067,26.8917254,60.57868195,175.1010871,174.2446091,8.474972,0.076858293,1620000000000 ,1620000000000 ,1620000000000 ,1616812319240 -1616812319277 ,112.5730068,26.89172463,60.57803726,175.1234355,174.2425161,8.476228,0.076865323,1620000000000 ,1620000000000 ,1620000000000 ,1616812319250 -1616812319289 ,112.5730069,26.89172387,60.57724762,175.1495541,174.277747,8.481041,0.076890742,1620000000000 ,1620000000000 ,1620000000000 ,1616812319260 -1616812319297 ,112.573007,26.8917231,60.57618713,175.1763831,174.3445133,8.487471,0.076932878,1620000000000 ,1620000000000 ,1620000000000 ,1616812319270 -1616812319305 ,112.573007,26.89172234,60.57500839,175.1953437,174.4012924,8.490265,0.076966934,1620000000000 ,1620000000000 ,1620000000000 ,1616812319280 -1616812319314 ,112.5730071,26.89172157,60.57388306,175.2119821,174.377532,8.4916,0.076974408,1620000000000 ,1620000000000 ,1620000000000 ,1616812319290 -1616812319322 ,112.5730072,26.8917208,60.57278442,175.2270358,174.3796845,8.492877,0.076991663,1620000000000 ,1620000000000 ,1620000000000 ,1616812319300 -1616812319332 ,112.5730073,26.89172004,60.57165146,175.2408328,174.4527352,8.492951,0.076990648,1620000000000 ,1620000000000 ,1620000000000 ,1616812319310 -1616812319343 ,112.5730073,26.89171927,60.57044983,175.2577717,174.5704752,8.492336,0.076982574,1620000000000 ,1620000000000 ,1620000000000 ,1616812319320 -1616812319354 ,112.5730074,26.8917185,60.56925201,175.2753116,174.6095434,8.485615,0.076937228,1620000000000 ,1620000000000 ,1620000000000 ,1616812319330 -1616812319367 ,112.5730075,26.89171774,60.56810379,175.2917314,174.5908219,8.487556,0.07693384,1620000000000 ,1620000000000 ,1620000000000 ,1616812319340 -1616812319373 ,112.5730076,26.89171697,60.56693268,175.3118941,174.6283753,8.486577,0.076932282,1620000000000 ,1620000000000 ,1620000000000 ,1616812319350 -1616812319383 ,112.5730076,26.89171621,60.56567764,175.3322754,174.6951786,8.49041,0.076943099,1620000000000 ,1620000000000 ,1620000000000 ,1616812319360 -1616812319396 ,112.5730077,26.89171544,60.56436157,175.3524654,174.7798446,8.493544,0.076985119,1620000000000 ,1620000000000 ,1620000000000 ,1616812319370 -1616812319404 ,112.5730078,26.89171467,60.56319427,175.3690218,174.8296852,8.489933,0.076962552,1620000000000 ,1620000000000 ,1620000000000 ,1616812319380 -1616812319413 ,112.5730078,26.89171391,60.56231308,175.3874086,174.8134122,8.490407,0.076974296,1620000000000 ,1620000000000 ,1620000000000 ,1616812319400 -1616812319424 ,112.5730079,26.89171314,60.56158829,175.4035825,174.8171889,8.488908,0.076977706,1620000000000 ,1620000000000 ,1620000000000 ,1616812319400 -1616812319434 ,112.573008,26.89171237,60.5607605,175.4217235,174.8618722,8.492142,0.076985846,1620000000000 ,1620000000000 ,1620000000000 ,1616812319420 -1616812319445 ,112.573008,26.89171161,60.55957794,175.4429791,174.9415953,8.494432,0.076989266,1620000000000 ,1620000000000 ,1620000000000 ,1616812319430 -1616812319454 ,112.5730082,26.89171007,60.55622864,175.4745345,175.0257786,8.497993,0.153962522,1620000000000 ,1620000000000 ,1620000000000 ,1616812319440 -1616812319464 ,112.5730082,26.89171007,60.55622864,175.4745345,-400,8.497993,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812319450 -1616812319474 ,112.5730083,26.89170854,60.5524559,175.4971288,175.2914658,8.501439,0.153729768,1620000000000 ,1620000000000 ,1620000000000 ,1616812319460 -1616812319486 ,112.5730084,26.89170778,60.55060577,175.5117181,175.3981567,8.504515,0.076832036,1620000000000 ,1620000000000 ,1620000000000 ,1616812319470 -1616812319494 ,112.5730084,26.89170701,60.54879379,175.5288209,175.416701,8.503373,0.076835036,1620000000000 ,1620000000000 ,1620000000000 ,1616812319480 -1616812319504 ,112.5730084,26.89170701,60.54879379,175.5288209,-400,8.503373,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812319490 -1616812319515 ,112.5730085,26.89170548,60.54546738,175.5724795,175.3582368,8.509372,0.153739865,1620000000000 ,1620000000000 ,1620000000000 ,1616812319500 -1616812319524 ,112.5730086,26.89170471,60.54380035,175.6000734,175.3206978,8.510108,0.07689547,1620000000000 ,1620000000000 ,1620000000000 ,1616812319510 -1616812319535 ,112.5730087,26.89170394,60.54198837,175.6273942,175.331228,8.513475,0.076912521,1620000000000 ,1620000000000 ,1620000000000 ,1616812319520 -1616812319546 ,112.5730087,26.89170318,60.54011536,175.6486224,175.3819754,8.514729,0.076930072,1620000000000 ,1620000000000 ,1620000000000 ,1616812319530 -1616812319554 ,112.5730088,26.89170241,60.53836823,175.6659438,175.3941069,8.511669,0.076912855,1620000000000 ,1620000000000 ,1620000000000 ,1616812319540 -1616812319580 ,112.5730089,26.89170164,60.53669357,175.6896855,175.3788683,8.515859,0.076938784,1620000000000 ,1620000000000 ,1620000000000 ,1616812319550 -1616812319582 ,112.5730089,26.89170088,60.53507614,175.7121705,175.416236,8.516202,0.076956871,1620000000000 ,1620000000000 ,1620000000000 ,1616812319560 -1616812319597 ,112.573009,26.89170011,60.53354645,175.7344642,175.4615357,8.513414,0.076939178,1620000000000 ,1620000000000 ,1620000000000 ,1616812319570 -1616812319601 ,112.573009,26.89169934,60.53208923,175.7586704,175.4718755,8.513594,0.076935938,1620000000000 ,1620000000000 ,1620000000000 ,1616812319580 -1616812319606 ,112.5730091,26.89169858,60.53063583,175.7824668,175.4916624,8.517935,0.076963862,1620000000000 ,1620000000000 ,1620000000000 ,1616812319590 -1616812319615 ,112.5730092,26.89169781,60.5290947,175.8033398,175.548287,8.524694,0.077017075,1620000000000 ,1620000000000 ,1620000000000 ,1616812319600 -1616812319625 ,112.5730092,26.89169704,60.52745056,175.823202,175.6088169,8.52804,0.077048288,1620000000000 ,1620000000000 ,1620000000000 ,1616812319610 -1616812319635 ,112.5730093,26.89169627,60.52576065,175.8441024,175.6493776,8.528311,0.077056722,1620000000000 ,1620000000000 ,1620000000000 ,1616812319620 -1616812319646 ,112.5730093,26.8916955,60.52404404,175.8660683,175.6678604,8.525363,0.077037112,1620000000000 ,1620000000000 ,1620000000000 ,1616812319630 -1616812319655 ,112.5730094,26.89169473,60.52230453,175.8857939,175.6755638,8.525642,0.077022162,1620000000000 ,1620000000000 ,1620000000000 ,1616812319640 -1616812319666 ,112.5730095,26.89169397,60.52054214,175.9041534,175.7239573,8.529229,0.077047157,1620000000000 ,1620000000000 ,1620000000000 ,1616812319650 -1616812319676 ,112.5730095,26.8916932,60.51869583,175.9205732,175.7814647,8.536005,0.077096515,1620000000000 ,1620000000000 ,1620000000000 ,1616812319660 -1616812319685 ,112.5730096,26.89169243,60.51673889,175.9372389,175.8587676,8.540853,0.07714013,1620000000000 ,1620000000000 ,1620000000000 ,1616812319670 -1616812319696 ,112.5730096,26.89169166,60.51480103,175.9508993,175.9198377,8.538687,0.077136425,1620000000000 ,1620000000000 ,1620000000000 ,1616812319680 -1616812319706 ,112.5730097,26.89169089,60.51301193,175.9630843,175.9197693,8.537266,0.077124388,1620000000000 ,1620000000000 ,1620000000000 ,1616812319690 -1616812319716 ,112.5730097,26.89169012,60.51135635,175.9740399,175.9188632,8.537838,0.077132674,1620000000000 ,1620000000000 ,1620000000000 ,1616812319700 -1616812319725 ,112.5730098,26.89168935,60.50968933,175.9846404,175.9475128,8.541271,0.077153304,1620000000000 ,1620000000000 ,1620000000000 ,1616812319710 -1616812319735 ,112.5730098,26.89168858,60.50795364,175.9958965,176.0048922,8.54347,0.077175783,1620000000000 ,1620000000000 ,1620000000000 ,1616812319720 -1616812319746 ,112.5730099,26.89168781,60.50621796,176.0024808,176.0208745,8.546485,0.077200544,1620000000000 ,1620000000000 ,1620000000000 ,1616812319730 -1616812319756 ,112.5730099,26.89168704,60.50461578,176.0097755,176.0165478,8.543872,0.077192637,1620000000000 ,1620000000000 ,1620000000000 ,1616812319740 -1616812319766 ,112.57301,26.89168627,60.5031929,176.0182176,176.0208162,8.544708,0.077200643,1620000000000 ,1620000000000 ,1620000000000 ,1616812319750 -1616812319777 ,112.5730101,26.8916855,60.50188828,176.0278345,175.994656,8.543649,0.077204494,1620000000000 ,1620000000000 ,1620000000000 ,1616812319760 -1616812319787 ,112.5730101,26.89168473,60.50065613,176.0390087,175.9989783,8.545935,0.07721982,1620000000000 ,1620000000000 ,1620000000000 ,1616812319770 -1616812319798 ,112.5730102,26.89168396,60.49948883,176.0490627,176.01119,8.546267,0.077228793,1620000000000 ,1620000000000 ,1620000000000 ,1616812319780 -1616812319806 ,112.5730102,26.89168319,60.49830246,176.0604282,176.0147856,8.546938,0.077233192,1620000000000 ,1620000000000 ,1620000000000 ,1616812319790 -1616812319818 ,112.5730103,26.89168242,60.4969902,176.0729684,176.036257,8.551601,0.077256624,1620000000000 ,1620000000000 ,1620000000000 ,1616812319800 -1616812319827 ,112.5730103,26.89168165,60.49551392,176.0795254,176.0700115,8.554795,0.07728863,1620000000000 ,1620000000000 ,1620000000000 ,1616812319810 -1616812319837 ,112.5730104,26.89168088,60.49388123,176.083924,176.0849791,8.557646,0.077299733,1620000000000 ,1620000000000 ,1620000000000 ,1616812319820 -1616812319847 ,112.5730104,26.8916801,60.49220276,176.0842245,176.1450048,8.559529,0.077320714,1620000000000 ,1620000000000 ,1620000000000 ,1616812319830 -1616812319857 ,112.5730105,26.89167933,60.49059296,176.0851808,176.1892435,8.557794,0.077310093,1620000000000 ,1620000000000 ,1620000000000 ,1616812319840 -1616812319867 ,112.5730105,26.89167856,60.48907471,176.0908908,176.2231236,8.558203,0.077318498,1620000000000 ,1620000000000 ,1620000000000 ,1616812319850 -1616812319878 ,112.5730106,26.89167779,60.48765182,176.0973112,176.2449371,8.556926,0.077316097,1620000000000 ,1620000000000 ,1620000000000 ,1616812319860 -1616812319887 ,112.5730106,26.89167702,60.48632813,176.1027207,176.2487307,8.555924,0.077303925,1620000000000 ,1620000000000 ,1620000000000 ,1616812319870 -1616812319897 ,112.5730107,26.89167625,60.48503113,176.1084307,176.2551685,8.558183,0.0773234,1620000000000 ,1620000000000 ,1620000000000 ,1616812319880 -1616812319908 ,112.5730107,26.89167548,60.48365784,176.1142227,176.2704259,8.561467,0.077343269,1620000000000 ,1620000000000 ,1620000000000 ,1616812319890 -1616812319917 ,112.5730108,26.8916747,60.48220062,176.11578,176.3069573,8.565182,0.077376729,1620000000000 ,1620000000000 ,1620000000000 ,1616812319900 -1616812319928 ,112.5730108,26.89167393,60.48078537,176.1169002,176.3171779,8.56117,0.077359422,1620000000000 ,1620000000000 ,1620000000000 ,1616812319910 -1616812319937 ,112.5730109,26.89167316,60.47948837,176.1174466,176.2960915,8.558777,0.077336948,1620000000000 ,1620000000000 ,1620000000000 ,1616812319920 -1616812319948 ,112.5730109,26.89167239,60.47827911,176.1213261,176.2667226,8.561249,0.077351055,1620000000000 ,1620000000000 ,1620000000000 ,1616812319930 -1616812319958 ,112.573011,26.89167162,60.47710419,176.1238123,176.2501566,8.559957,0.077358701,1620000000000 ,1620000000000 ,1620000000000 ,1616812319940 -1616812319968 ,112.573011,26.89167084,60.47591019,176.1263532,176.2452212,8.555579,0.077319726,1620000000000 ,1620000000000 ,1620000000000 ,1616812319950 -1616812320001 ,112.5730111,26.89167007,60.47473145,176.1320359,176.2218289,8.551606,0.077285269,1620000000000 ,1620000000000 ,1620000000000 ,1616812319960 -1616812320004 ,112.5730111,26.8916693,60.47360611,176.1390846,176.1741857,8.548745,0.077261544,1620000000000 ,1620000000000 ,1620000000000 ,1616812319970 -1616812320006 ,112.5730112,26.89166853,60.47253036,176.1449586,176.1292028,8.547098,0.077243376,1620000000000 ,1620000000000 ,1620000000000 ,1616812319980 -1616812320010 ,112.5730112,26.89166776,60.47148132,176.1500402,176.0954607,8.549638,0.077256509,1620000000000 ,1620000000000 ,1620000000000 ,1616812319990 -1616812320025 ,112.5730113,26.89166699,60.47044373,176.1523079,176.0693339,8.557192,0.077316645,1620000000000 ,1620000000000 ,1620000000000 ,1616812320000 -1616812320036 ,112.5730113,26.89166622,60.46943283,176.1563513,176.0568851,8.563476,0.077380498,1620000000000 ,1620000000000 ,1620000000000 ,1616812320010 -1616812320040 ,112.5730114,26.89166544,60.46844101,176.1592747,176.0432646,8.564589,0.077408677,1620000000000 ,1620000000000 ,1620000000000 ,1616812320020 -1616812320049 ,112.5730114,26.89166467,60.46744537,176.1626898,176.0067752,8.561467,0.077387408,1620000000000 ,1620000000000 ,1620000000000 ,1616812320030 -1616812320062 ,112.5730115,26.8916639,60.46640396,176.165859,175.9586335,8.557157,0.077349467,1620000000000 ,1620000000000 ,1620000000000 ,1616812320040 -1616812320069 ,112.5730116,26.89166313,60.46527863,176.168591,175.9193465,8.552495,0.07730423,1620000000000 ,1620000000000 ,1620000000000 ,1616812320050 -1616812320080 ,112.5730116,26.89166236,60.46408844,176.173017,175.8917806,8.551596,0.077283245,1620000000000 ,1620000000000 ,1620000000000 ,1616812320060 -1616812320089 ,112.5730117,26.89166159,60.46287918,176.1800111,175.881628,8.552692,0.077289701,1620000000000 ,1620000000000 ,1620000000000 ,1616812320070 -1616812320100 ,112.5730117,26.89166082,60.46171188,176.1861583,175.8881804,8.556026,0.077317068,1620000000000 ,1620000000000 ,1620000000000 ,1616812320080 -1616812320111 ,112.5730118,26.89166005,60.46058273,176.1919776,175.9182286,8.55813,0.077343967,1620000000000 ,1620000000000 ,1620000000000 ,1616812320090 -1616812320119 ,112.5730118,26.89165927,60.45944214,176.1960484,175.9569826,8.561021,0.077368141,1620000000000 ,1620000000000 ,1620000000000 ,1616812320100 -1616812320130 ,112.5730119,26.8916585,60.45824432,176.1987258,175.9940035,8.559758,0.077358762,1620000000000 ,1620000000000 ,1620000000000 ,1616812320110 -1616812320140 ,112.5730119,26.89165773,60.45696259,176.2008569,176.0247649,8.558842,0.077346491,1620000000000 ,1620000000000 ,1620000000000 ,1616812320120 -1616812320152 ,112.573012,26.89165696,60.45563889,176.201895,176.0636095,8.555998,0.077325817,1620000000000 ,1620000000000 ,1620000000000 ,1616812320130 -1616812320162 ,112.573012,26.89165619,60.45432281,176.2030425,176.1053793,8.553465,0.077300703,1620000000000 ,1620000000000 ,1620000000000 ,1616812320140 -1616812320170 ,112.5730121,26.89165542,60.45305634,176.2043812,176.1352887,8.5525675,0.077292004,1620000000000 ,1620000000000 ,1620000000000 ,1616812320150 -1616812320182 ,112.5730122,26.89165465,60.45178223,176.2066489,176.1728012,8.552389,0.077285924,1620000000000 ,1620000000000 ,1620000000000 ,1616812320160 -1616812320192 ,112.5730122,26.89165387,60.45042801,176.2089711,176.2238498,8.554253,0.077296534,1620000000000 ,1620000000000 ,1620000000000 ,1616812320170 -1616812320202 ,112.5730123,26.8916531,60.44895554,176.2101186,176.273821,8.555055,0.077298448,1620000000000 ,1620000000000 ,1620000000000 ,1616812320180 -1616812320211 ,112.5730123,26.89165233,60.44740677,176.2105011,176.3098255,8.555307,0.077296381,1620000000000 ,1620000000000 ,1620000000000 ,1616812320190 -1616812320220 ,112.5730123,26.89165156,60.44585419,176.2063483,176.620983,8.578242,0.077589789,1620000000000 ,1620000000000 ,1620000000000 ,1616812320200 -1616812320231 ,112.5730124,26.89165078,60.44438934,176.207004,177.1336008,8.578056,0.0780907,1620000000000 ,1620000000000 ,1620000000000 ,1616812320210 -1616812320240 ,112.5730124,26.89165,60.44290161,176.2073046,177.1487757,8.576584,0.078078639,1620000000000 ,1620000000000 ,1620000000000 ,1616812320220 -1616812320251 ,112.5730125,26.89164922,60.44140244,176.2086979,177.1786256,8.574824,0.078062359,1620000000000 ,1620000000000 ,1620000000000 ,1616812320230 -1616812320262 ,112.5730125,26.89164844,60.43989563,176.2105011,177.1893034,8.575731,0.078057746,1620000000000 ,1620000000000 ,1620000000000 ,1616812320240 -1616812320274 ,112.5730125,26.89164766,60.43830872,176.2111568,177.1779353,8.57301,0.078053034,1620000000000 ,1620000000000 ,1620000000000 ,1616812320250 -1616812320283 ,112.5730126,26.89164688,60.43666458,176.212031,177.1218518,8.56844,0.077990111,1620000000000 ,1620000000000 ,1620000000000 ,1616812320260 -1616812320292 ,112.5730126,26.8916461,60.43509674,176.2085886,177.1155418,8.57227,0.078015374,1620000000000 ,1620000000000 ,1620000000000 ,1616812320270 -1616812320301 ,112.5730127,26.89164532,60.43377304,176.2071953,177.1158016,8.567791,0.078013586,1620000000000 ,1620000000000 ,1620000000000 ,1616812320280 -1616812320313 ,112.5730127,26.89164454,60.43260956,176.2145719,177.0555767,8.564477,0.077982295,1620000000000 ,1620000000000 ,1620000000000 ,1616812320290 -1616812320321 ,112.5730127,26.89164376,60.43150711,176.2276312,176.9827774,8.556503,0.07791954,1620000000000 ,1620000000000 ,1620000000000 ,1616812320300 -1616812320333 ,112.5730128,26.89164299,60.43039703,176.2412369,176.9022713,8.55105,0.077859395,1620000000000 ,1620000000000 ,1620000000000 ,1616812320310 -1616812320342 ,112.5730128,26.89164221,60.42916489,176.2513456,176.8538545,8.555492,0.07787124,1620000000000 ,1620000000000 ,1620000000000 ,1616812320320 -1616812320353 ,112.5730129,26.89164143,60.42770767,176.2562633,176.8562853,8.566956,0.077948959,1620000000000 ,1620000000000 ,1620000000000 ,1616812320330 -1616812320365 ,112.5730129,26.89164065,60.42593765,176.2633121,176.8836757,8.576501,0.078022594,1620000000000 ,1620000000000 ,1620000000000 ,1616812320340 -1616812320373 ,112.573013,26.89163987,60.42398071,176.268667,176.9476606,8.576646,0.078045189,1620000000000 ,1620000000000 ,1620000000000 ,1616812320350 -1616812320383 ,112.573013,26.89163909,60.42219162,176.2741858,176.9300146,8.564223,0.077958179,1620000000000 ,1620000000000 ,1620000000000 ,1616812320360 -1616812320394 ,112.573013,26.89163832,60.42074585,176.2853326,176.854113,8.556015,0.077885115,1620000000000 ,1620000000000 ,1620000000000 ,1616812320370 -1616812320403 ,112.5730131,26.89163754,60.41942978,176.2962063,176.8203088,8.557152,0.07787811,1620000000000 ,1620000000000 ,1620000000000 ,1616812320380 -1616812320413 ,112.5730131,26.89163676,60.41794586,176.3075717,176.8551046,8.56631,0.077934361,1620000000000 ,1620000000000 ,1620000000000 ,1616812320390 -1616812320423 ,112.5730132,26.89163598,60.41612625,176.3158226,176.9510287,8.573576,0.077995729,1620000000000 ,1620000000000 ,1620000000000 ,1616812320400 -1616812320432 ,112.5730132,26.8916352,60.41415405,176.3207677,177.034972,8.576317,0.078022846,1620000000000 ,1620000000000 ,1620000000000 ,1616812320410 -1616812320442 ,112.5730132,26.89163442,60.41232681,176.3240188,177.04336,8.571465,0.078003534,1620000000000 ,1620000000000 ,1620000000000 ,1616812320420 -1616812320452 ,112.5730133,26.89163365,60.41083527,176.3284721,177.0397945,8.564581,0.077953528,1620000000000 ,1620000000000 ,1620000000000 ,1616812320430 -1616812320464 ,112.5730133,26.89163287,60.40959549,176.3335811,177.0737089,8.564933,0.07794712,1620000000000 ,1620000000000 ,1620000000000 ,1616812320440 -1616812320473 ,112.5730134,26.89163209,60.4083519,176.3378158,176.8427039,8.568347,0.077679556,1620000000000 ,1620000000000 ,1620000000000 ,1616812320460 -1616812320488 ,112.5730134,26.89163132,60.40697861,176.3439903,176.6067049,8.575042,0.077437228,1620000000000 ,1620000000000 ,1620000000000 ,1616812320470 -1616812320493 ,112.5730135,26.89163054,60.40553665,176.3467224,176.6344337,8.5760145,0.07745792,1620000000000 ,1620000000000 ,1620000000000 ,1616812320480 -1616812320504 ,112.5730135,26.89162977,60.4041481,176.3470229,176.6532415,8.575763,0.077457491,1620000000000 ,1620000000000 ,1620000000000 ,1616812320480 -1616812320514 ,112.5730135,26.891629,60.40293503,176.3448919,176.6846196,8.574597,0.077457118,1620000000000 ,1620000000000 ,1620000000000 ,1616812320500 -1616812320523 ,112.5730136,26.89162823,60.40194702,176.3465858,176.7246971,8.571461,0.077442263,1620000000000 ,1620000000000 ,1620000000000 ,1616812320510 -1616812320535 ,112.5730137,26.89162668,60.40045547,176.3491539,176.7383736,8.570081,0.154867905,1620000000000 ,1620000000000 ,1620000000000 ,1616812320520 -1616812320545 ,112.5730137,26.89162591,60.39987183,176.3523231,176.7181783,8.570085,0.077437619,1620000000000 ,1620000000000 ,1620000000000 ,1616812320530 -1616812320562 ,112.5730138,26.89162513,60.3993187,176.358443,176.7084063,8.574054,0.077464067,1620000000000 ,1620000000000 ,1620000000000 ,1616812320540 -1616812320565 ,112.5730138,26.89162436,60.39878464,176.3653005,176.7128762,8.576477,0.077494614,1620000000000 ,1620000000000 ,1620000000000 ,1616812320550 -1616812320573 ,112.5730139,26.89162359,60.39836121,176.3722126,176.6994196,8.575589,0.077500702,1620000000000 ,1620000000000 ,1620000000000 ,1616812320560 -1616812320583 ,112.5730139,26.89162359,60.39836121,176.3722126,-400,8.575589,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812320570 -1616812320594 ,112.5730139,26.89162204,60.39796448,176.3898072,176.6673502,8.573192,0.154972868,1620000000000 ,1620000000000 ,1620000000000 ,1616812320580 -1616812320605 ,112.5730139,26.89162204,60.39796448,176.3898072,-400,8.573192,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812320590 -1616812320615 ,112.573014,26.89162126,60.39779282,176.3998339,176.6518656,8.574387,0.077492904,1620000000000 ,1620000000000 ,1620000000000 ,1616812320600 -1616812320624 ,112.5730141,26.89161972,60.39740753,176.4194502,176.6667624,8.576387,0.155030794,1620000000000 ,1620000000000 ,1620000000000 ,1616812320610 -1616812320634 ,112.5730141,26.89161894,60.39727783,176.432974,176.6352586,8.574991,0.077510688,1620000000000 ,1620000000000 ,1620000000000 ,1616812320620 -1616812320644 ,112.5730142,26.89161817,60.39720154,176.4465251,176.6230196,8.575053,0.07751115,1620000000000 ,1620000000000 ,1620000000000 ,1616812320630 -1616812320655 ,112.5730142,26.8916174,60.39714432,176.4642836,176.619206,8.575522,0.077517291,1620000000000 ,1620000000000 ,1620000000000 ,1616812320640 -1616812320666 ,112.5730143,26.89161662,60.39706802,176.4831896,176.6171252,8.5784855,0.077535341,1620000000000 ,1620000000000 ,1620000000000 ,1616812320650 -1616812320675 ,112.5730143,26.89161585,60.39694595,176.5022321,176.6295717,8.581179,0.07756364,1620000000000 ,1620000000000 ,1620000000000 ,1616812320660 -1616812320686 ,112.5730144,26.89161507,60.39677429,176.5212747,176.6353888,8.582187,0.077575624,1620000000000 ,1620000000000 ,1620000000000 ,1616812320670 -1616812320697 ,112.5730144,26.8916143,60.39657593,176.5412188,176.6347519,8.582184,0.07757713,1620000000000 ,1620000000000 ,1620000000000 ,1616812320680 -1616812320707 ,112.5730144,26.89161352,60.39634705,176.5608625,176.6407918,8.581991,0.077575159,1620000000000 ,1620000000000 ,1620000000000 ,1616812320690 -1616812320715 ,112.5730145,26.89161275,60.39606857,176.5822273,176.6512121,8.583432,0.077580461,1620000000000 ,1620000000000 ,1620000000000 ,1616812320700 -1616812320724 ,112.5730145,26.89161197,60.3956871,176.6029638,176.6700383,8.585615,0.077597403,1620000000000 ,1620000000000 ,1620000000000 ,1616812320710 -1616812320736 ,112.5730146,26.8916112,60.39518356,176.6248204,176.7009485,8.587911,0.077611599,1620000000000 ,1620000000000 ,1620000000000 ,1616812320720 -1616812320756 ,112.5730146,26.89161042,60.39457703,176.6445733,176.7319917,8.589945,0.077629419,1620000000000 ,1620000000000 ,1620000000000 ,1616812320730 -1616812320768 ,112.5730147,26.89160965,60.39391327,176.6651185,176.7525866,8.593442,0.077648028,1620000000000 ,1620000000000 ,1620000000000 ,1616812320740 -1616812320772 ,112.5730147,26.89160887,60.39325333,176.6838059,176.7655782,8.595569,0.077678419,1620000000000 ,1620000000000 ,1620000000000 ,1616812320750 -1616812320775 ,112.5730148,26.8916081,60.39256668,176.7041325,176.8017322,8.5961275,0.077682579,1620000000000 ,1620000000000 ,1620000000000 ,1616812320760 -1616812320786 ,112.5730148,26.89160732,60.39181137,176.7250602,176.8450883,8.597234,0.077691132,1620000000000 ,1620000000000 ,1620000000000 ,1616812320770 -1616812320796 ,112.5730148,26.89160655,60.39097595,176.7451683,176.8803288,8.596464,0.077681424,1620000000000 ,1620000000000 ,1620000000000 ,1616812320780 -1616812320807 ,112.5730149,26.89160577,60.39014053,176.76473,176.8837872,8.598114,0.077691452,1620000000000 ,1620000000000 ,1620000000000 ,1616812320790 -1616812320815 ,112.5730149,26.891605,60.38932037,176.7837725,176.8947239,8.599985,0.077711659,1620000000000 ,1620000000000 ,1620000000000 ,1616812320800 -1616812320826 ,112.573015,26.89160422,60.3884964,176.8015037,176.9305076,8.600248,0.077715597,1620000000000 ,1620000000000 ,1620000000000 ,1616812320810 -1616812320836 ,112.573015,26.89160344,60.38764572,176.8207921,176.9615093,8.602024,0.077725688,1620000000000 ,1620000000000 ,1620000000000 ,1616812320820 -1616812320847 ,112.5730151,26.89160267,60.38676071,176.8397254,176.9957905,8.605647,0.077758019,1620000000000 ,1620000000000 ,1620000000000 ,1616812320830 -1616812320856 ,112.5730151,26.89160189,60.38583374,176.8598881,177.0011077,8.604969,0.077749896,1620000000000 ,1620000000000 ,1620000000000 ,1616812320840 -1616812320866 ,112.5730151,26.89160111,60.38484955,176.8767177,177.0028863,8.610664,0.077792189,1620000000000 ,1620000000000 ,1620000000000 ,1616812320850 -1616812320877 ,112.5730152,26.89160034,60.38384628,176.8933014,177.0265693,8.609377,0.077792913,1620000000000 ,1620000000000 ,1620000000000 ,1616812320860 -1616812320887 ,112.5730152,26.89159956,60.38280487,176.9121528,177.0708195,8.613185,0.077810619,1620000000000 ,1620000000000 ,1620000000000 ,1616812320870 -1616812320896 ,112.5730153,26.89159878,60.38169861,176.9322062,177.1195703,8.613837,0.077828479,1620000000000 ,1620000000000 ,1620000000000 ,1616812320880 -1616812320906 ,112.5730153,26.891598,60.38059235,176.9504565,177.13298,8.613921,0.077824066,1620000000000 ,1620000000000 ,1620000000000 ,1616812320890 -1616812320917 ,112.5730153,26.89159723,60.3795166,176.9702367,177.1304208,8.616234,0.077841353,1620000000000 ,1620000000000 ,1620000000000 ,1616812320900 -1616812320928 ,112.5730154,26.89159645,60.37842178,176.988405,177.1423411,8.618826,0.07786187,1620000000000 ,1620000000000 ,1620000000000 ,1616812320910 -1616812320936 ,112.5730154,26.89159567,60.37724304,177.0056444,177.1741276,8.622507,0.077892978,1620000000000 ,1620000000000 ,1620000000000 ,1616812320920 -1616812320946 ,112.5730154,26.89159489,60.37601852,177.0221734,177.2275061,8.6230545,0.077901966,1620000000000 ,1620000000000 ,1620000000000 ,1616812320930 -1616812320957 ,112.5730155,26.89159412,60.37481689,177.0381288,177.2488975,8.624234,0.077909539,1620000000000 ,1620000000000 ,1620000000000 ,1616812320940 -1616812320968 ,112.5730155,26.89159334,60.37365341,177.0551496,177.257877,8.62403,0.077914358,1620000000000 ,1620000000000 ,1620000000000 ,1616812320950 -1616812320977 ,112.5730156,26.89159256,60.37246704,177.0730174,177.2685225,8.6250925,0.077914783,1620000000000 ,1620000000000 ,1620000000000 ,1616812320960 -1616812320988 ,112.5730156,26.89159178,60.37121964,177.089765,177.3045795,8.628996,0.077943947,1620000000000 ,1620000000000 ,1620000000000 ,1616812320970 -1616812320997 ,112.5730156,26.891591,60.36991501,177.1061574,177.3313499,8.632412,0.077971622,1620000000000 ,1620000000000 ,1620000000000 ,1616812320980 -1616812321009 ,112.5730157,26.89159022,60.36860275,177.1223313,177.3461404,8.635189,0.077998062,1620000000000 ,1620000000000 ,1620000000000 ,1616812320990 -1616812321018 ,112.5730157,26.89158944,60.36733627,177.1400352,177.363755,8.635856,0.078014216,1620000000000 ,1620000000000 ,1620000000000 ,1616812321000 -1616812321028 ,112.5730157,26.89158866,60.36612701,177.1572746,177.3728919,8.637571,0.078023803,1620000000000 ,1620000000000 ,1620000000000 ,1616812321010 -1616812321037 ,112.5730158,26.89158788,60.36491776,177.1766177,177.393608,8.640786,0.078051607,1620000000000 ,1620000000000 ,1620000000000 ,1616812321020 -1616812321049 ,112.5730158,26.8915871,60.36365128,177.1941303,177.419215,8.644223,0.078077102,1620000000000 ,1620000000000 ,1620000000000 ,1616812321030 -1616812321062 ,112.5730158,26.89158632,60.36232758,177.212845,177.4373826,8.64971,0.078121238,1620000000000 ,1620000000000 ,1620000000000 ,1616812321040 -1616812321067 ,112.5730159,26.89158554,60.36099243,177.228773,177.4564861,8.654211,0.078160781,1620000000000 ,1620000000000 ,1620000000000 ,1616812321050 -1616812321078 ,112.5730159,26.89158476,60.35964966,177.2446737,177.4836863,8.660592,0.078213774,1620000000000 ,1620000000000 ,1620000000000 ,1616812321060 -1616812321088 ,112.5730159,26.89158398,60.35825348,177.2602738,177.5054698,8.666186,0.078262069,1620000000000 ,1620000000000 ,1620000000000 ,1616812321070 -1616812321101 ,112.573016,26.8915832,60.35681915,177.2759833,177.5245092,8.669716,0.078295734,1620000000000 ,1620000000000 ,1620000000000 ,1616812321080 -1616812321109 ,112.573016,26.89158241,60.35542297,177.2883049,177.5352045,8.674048,0.078334037,1620000000000 ,1620000000000 ,1620000000000 ,1616812321090 -1616812321118 ,112.573016,26.89158163,60.35409927,177.304069,177.5445684,8.679063,0.078384039,1620000000000 ,1620000000000 ,1620000000000 ,1616812321100 -1616812321128 ,112.5730161,26.89158085,60.35282135,177.3206254,177.5776455,8.682429,0.078416285,1620000000000 ,1620000000000 ,1620000000000 ,1616812321110 -1616812321138 ,112.5730161,26.89158006,60.35155487,177.3389576,177.6169723,8.686549,0.078452877,1620000000000 ,1620000000000 ,1620000000000 ,1616812321120 -1616812321150 ,112.5730161,26.89157928,60.35031128,177.3544212,177.6395739,8.691352,0.07849458,1620000000000 ,1620000000000 ,1620000000000 ,1616812321130 -1616812321159 ,112.5730162,26.8915785,60.34911728,177.3690651,177.664416,8.69441,0.078526584,1620000000000 ,1620000000000 ,1620000000000 ,1616812321140 -1616812321169 ,112.5730162,26.89157771,60.34792328,177.3843647,177.691091,8.700216,0.07857199,1620000000000 ,1620000000000 ,1620000000000 ,1616812321150 -1616812321183 ,112.5730162,26.89157692,60.34667969,177.3993092,177.7269831,8.703902,0.078610331,1620000000000 ,1620000000000 ,1620000000000 ,1616812321160 -1616812321193 ,112.5730163,26.89157614,60.34542084,177.4118494,177.756341,8.70901,0.078649062,1620000000000 ,1620000000000 ,1620000000000 ,1616812321170 -1616812321199 ,112.5730163,26.89157535,60.34423828,177.4235154,177.753194,8.713784,0.078697474,1620000000000 ,1620000000000 ,1620000000000 ,1616812321180 -1616812321209 ,112.5730163,26.89157457,60.34312439,177.4337606,177.7537042,8.718458,0.07874271,1620000000000 ,1620000000000 ,1620000000000 ,1616812321190 -1616812321219 ,112.5730164,26.89157378,60.3417244,177.444607,177.5280566,8.712757,0.078603379,1620000000000 ,1620000000000 ,1620000000000 ,1616812321200 -1616812321231 ,112.5730164,26.891573,60.33981705,177.4586225,177.1505862,8.716777,0.078343182,1620000000000 ,1620000000000 ,1620000000000 ,1616812321210 -1616812321239 ,112.5730164,26.89157222,60.33788681,177.4713813,177.172472,8.719676,0.078370762,1620000000000 ,1620000000000 ,1620000000000 ,1616812321220 -1616812321250 ,112.5730165,26.89157143,60.33597946,177.4855608,177.1660787,8.723718,0.078405565,1620000000000 ,1620000000000 ,1620000000000 ,1616812321230 -1616812321260 ,112.5730165,26.89157065,60.33411789,177.5005599,177.1628396,8.72819,0.078445921,1620000000000 ,1620000000000 ,1620000000000 ,1616812321240 -1616812321280 ,112.5730166,26.89156986,60.33226395,177.5128542,177.1914995,8.734049,0.078494235,1620000000000 ,1620000000000 ,1620000000000 ,1616812321250 -1616812321283 ,112.5730166,26.89156908,60.33042526,177.5273616,177.2325491,8.73842,0.078540257,1620000000000 ,1620000000000 ,1620000000000 ,1616812321260 -1616812321290 ,112.5730166,26.8915683,60.32864761,177.5395466,177.2654343,8.742278,0.078575305,1620000000000 ,1620000000000 ,1620000000000 ,1616812321270 -1616812321300 ,112.5730167,26.89156751,60.32696915,177.551759,177.2867734,8.745162,0.07861123,1620000000000 ,1620000000000 ,1620000000000 ,1616812321280 -1616812321313 ,112.5730167,26.89156672,60.32530212,177.5652281,177.2698704,8.749425,0.078641721,1620000000000 ,1620000000000 ,1620000000000 ,1616812321290 -1616812321320 ,112.5730167,26.89156594,60.32357025,177.575692,177.285803,8.755701,0.078696793,1620000000000 ,1620000000000 ,1620000000000 ,1616812321300 -1616812321330 ,112.5730168,26.89156515,60.32180405,177.585746,177.3198543,8.760132,0.078736789,1620000000000 ,1620000000000 ,1620000000000 ,1616812321310 -1616812321341 ,112.5730168,26.89156436,60.32007217,177.5977398,177.3415988,8.765149,0.078785859,1620000000000 ,1620000000000 ,1620000000000 ,1616812321320 -1616812321351 ,112.5730169,26.89156358,60.31840515,177.608996,177.3657878,8.767785,0.078814145,1620000000000 ,1620000000000 ,1620000000000 ,1616812321330 -1616812321361 ,112.5730169,26.89156279,60.3168335,177.6215089,177.3631983,8.769038,0.078833055,1620000000000 ,1620000000000 ,1620000000000 ,1616812321340 -1616812321370 ,112.5730169,26.891562,60.31531143,177.6356884,177.3569329,8.771589,0.078855898,1620000000000 ,1620000000000 ,1620000000000 ,1616812321350 -1616812321381 ,112.573017,26.89156121,60.31378555,177.6466713,177.3702172,8.777644,0.078898793,1620000000000 ,1620000000000 ,1620000000000 ,1616812321360 -1616812321392 ,112.573017,26.89156043,60.31217957,177.6603317,177.4015737,8.786278,0.078972272,1620000000000 ,1620000000000 ,1620000000000 ,1616812321370 -1616812321402 ,112.573017,26.89155964,60.3105278,177.6713966,177.4091335,8.790782,0.079021087,1620000000000 ,1620000000000 ,1620000000000 ,1616812321380 -1616812321411 ,112.5730171,26.89155885,60.30888748,177.6798387,177.4167182,8.796247,0.079066602,1620000000000 ,1620000000000 ,1620000000000 ,1616812321390 -1616812321421 ,112.5730171,26.89155806,60.3073082,177.6899201,177.4271487,8.798371,0.07909742,1620000000000 ,1620000000000 ,1620000000000 ,1616812321400 -1616812321431 ,112.5730171,26.89155727,60.30573273,177.7008757,177.4279824,8.801485,0.079120285,1620000000000 ,1620000000000 ,1620000000000 ,1616812321410 -1616812321441 ,112.5730172,26.89155647,60.30410385,177.7135798,177.4478805,8.805661,0.079156898,1620000000000 ,1620000000000 ,1620000000000 ,1616812321420 -1616812321451 ,112.5730172,26.89155568,60.30240631,177.7253824,177.4619759,8.809871,0.079187825,1620000000000 ,1620000000000 ,1620000000000 ,1616812321430 -1616812321462 ,112.5730172,26.89155489,60.3006897,177.7361468,177.4808683,8.814562,0.079229406,1620000000000 ,1620000000000 ,1620000000000 ,1616812321440 -1616812321472 ,112.5730173,26.8915541,60.29928207,177.7453539,177.7357471,8.819248,0.079460344,1620000000000 ,1620000000000 ,1620000000000 ,1616812321450 -1616812321487 ,112.5730173,26.8915533,60.2982254,177.7556538,177.9906411,8.8236,0.079696236,1620000000000 ,1620000000000 ,1620000000000 ,1616812321460 -1616812321494 ,112.5730173,26.8915525,60.29722977,177.7659537,177.9939361,8.825767,0.079721777,1620000000000 ,1620000000000 ,1620000000000 ,1616812321470 -1616812321504 ,112.5730174,26.89155171,60.29623795,177.7800786,177.991691,8.828573,0.079744694,1620000000000 ,1620000000000 ,1620000000000 ,1616812321480 -1616812321513 ,112.5730174,26.89155091,60.29518127,177.7931652,178.0036796,8.832986,0.079777267,1620000000000 ,1620000000000 ,1620000000000 ,1616812321490 -1616812321523 ,112.5730174,26.89155011,60.29403305,177.8034378,178.0011817,8.83967,0.079828154,1620000000000 ,1620000000000 ,1620000000000 ,1616812321500 -1616812321532 ,112.5730174,26.89154931,60.29283142,177.8112515,178.0104221,8.84556,0.079883499,1620000000000 ,1620000000000 ,1620000000000 ,1616812321510 -1616812321543 ,112.5730175,26.89154852,60.2916069,177.818109,178.0288322,8.850654,0.079927017,1620000000000 ,1620000000000 ,1620000000000 ,1616812321520 -1616812321552 ,112.5730175,26.89154772,60.29037476,177.8272069,178.0500743,8.854718,0.079965143,1620000000000 ,1620000000000 ,1620000000000 ,1616812321530 -1616812321563 ,112.5730175,26.89154692,60.28911591,177.8390914,178.0852374,8.85842,0.079999007,1620000000000 ,1620000000000 ,1620000000000 ,1616812321540 -1616812321573 ,112.5730176,26.89154612,60.28782654,177.8520141,178.1021779,8.863231,0.080038148,1620000000000 ,1620000000000 ,1620000000000 ,1616812321550 -1616812321583 ,112.5730176,26.89154532,60.28643799,177.864527,178.0861332,8.869541,0.080083923,1620000000000 ,1620000000000 ,1620000000000 ,1616812321560 -1616812321593 ,112.5730176,26.89154452,60.28490829,177.8748543,178.0982673,8.876129,0.080135056,1620000000000 ,1620000000000 ,1620000000000 ,1616812321570 -1616812321604 ,112.5730176,26.89154371,60.28329086,177.8826407,178.1359166,8.881734,0.080185607,1620000000000 ,1620000000000 ,1620000000000 ,1616812321580 -1616812321615 ,112.5730177,26.89154291,60.28163147,177.8903451,178.1716609,8.886377,0.08022677,1620000000000 ,1620000000000 ,1620000000000 ,1616812321600 -1616812321623 ,112.5730177,26.89154211,60.27997971,177.8988419,178.1943888,8.889442,0.080258203,1620000000000 ,1620000000000 ,1620000000000 ,1616812321600 -1616812321634 ,112.5730177,26.8915405,60.27684784,177.9134312,178.2082005,8.897887,0.160622805,1620000000000 ,1620000000000 ,1620000000000 ,1616812321620 -1616812321643 ,112.5730178,26.8915397,60.2753334,177.9177478,178.2151338,8.903537,0.080380134,1620000000000 ,1620000000000 ,1620000000000 ,1616812321630 -1616812321653 ,112.5730178,26.8915389,60.27378845,177.9261353,178.2281756,8.908806,0.080428424,1620000000000 ,1620000000000 ,1620000000000 ,1616812321640 -1616812321664 ,112.5730178,26.89153809,60.2722435,177.9341949,178.2480136,8.912376,0.080465961,1620000000000 ,1620000000000 ,1620000000000 ,1616812321650 -1616812321675 ,112.5730178,26.89153729,60.27082443,177.943566,178.2472788,8.912952,0.08048158,1620000000000 ,1620000000000 ,1620000000000 ,1616812321660 -1616812321685 ,112.5730179,26.89153648,60.26957703,177.9537293,178.2180165,8.913491,0.08049271,1620000000000 ,1620000000000 ,1620000000000 ,1616812321670 -1616812321695 ,112.5730179,26.89153568,60.2684021,177.9646576,178.1947181,8.91722,0.080518775,1620000000000 ,1620000000000 ,1620000000000 ,1616812321680 -1616812321705 ,112.5730179,26.89153568,60.2684021,177.9646576,-400,8.91722,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812321690 -1616812321716 ,112.5730179,26.89153407,60.26595306,177.9839734,178.2228595,8.931226,0.1612182,1620000000000 ,1620000000000 ,1620000000000 ,1616812321700 -1616812321724 ,112.573018,26.89153326,60.26473999,177.9927706,178.2469989,8.935881,0.080686466,1620000000000 ,1620000000000 ,1620000000000 ,1616812321710 -1616812321734 ,112.573018,26.89153245,60.26364899,178.0029886,178.2383523,8.937507,0.080713489,1620000000000 ,1620000000000 ,1620000000000 ,1616812321720 -1616812321745 ,112.573018,26.89153165,60.26268768,178.0135891,178.2206826,8.939605,0.080732141,1620000000000 ,1620000000000 ,1620000000000 ,1616812321730 -1616812321754 ,112.573018,26.89153084,60.2618103,178.0240802,178.2173868,8.943333,0.080767027,1620000000000 ,1620000000000 ,1620000000000 ,1616812321740 -1616812321764 ,112.5730181,26.89153003,60.26095581,178.0372762,178.2283216,8.947536,0.080803411,1620000000000 ,1620000000000 ,1620000000000 ,1616812321750 -1616812321774 ,112.5730181,26.89152922,60.26009369,178.0500623,178.243842,8.95373,0.080856469,1620000000000 ,1620000000000 ,1620000000000 ,1616812321760 -1616812321785 ,112.5730181,26.89152842,60.25924683,178.0614823,178.2532816,8.958012,0.080900927,1620000000000 ,1620000000000 ,1620000000000 ,1616812321770 -1616812321798 ,112.5730181,26.89152761,60.25843811,178.0724106,178.2579032,8.962315,0.080939862,1620000000000 ,1620000000000 ,1620000000000 ,1616812321780 -1616812321805 ,112.5730182,26.8915268,60.25769043,178.0850055,178.2586121,8.966202,0.080979301,1620000000000 ,1620000000000 ,1620000000000 ,1616812321790 -1616812321815 ,112.5730182,26.89152599,60.25699997,178.096289,178.2742756,8.970255,0.081016492,1620000000000 ,1620000000000 ,1620000000000 ,1616812321800 -1616812321825 ,112.5730182,26.89152518,60.2563324,178.1076817,178.2924695,8.974662,0.081057894,1620000000000 ,1620000000000 ,1620000000000 ,1616812321810 -1616812321835 ,112.5730182,26.89152437,60.25564957,178.119457,178.3024082,8.978186,0.08109243,1620000000000 ,1620000000000 ,1620000000000 ,1616812321820 -1616812321846 ,112.5730183,26.89152356,60.25495148,178.1315054,178.3097471,8.981513,0.081121818,1620000000000 ,1620000000000 ,1620000000000 ,1616812321830 -1616812321855 ,112.5730183,26.89152274,60.2542572,178.1437178,178.3209537,8.986062,0.081160199,1620000000000 ,1620000000000 ,1620000000000 ,1616812321840 -1616812321866 ,112.5730183,26.89152193,60.25358963,178.1517774,178.3336025,8.990636,0.081205097,1620000000000 ,1620000000000 ,1620000000000 ,1616812321850 -1616812321877 ,112.5730183,26.89152112,60.25294876,178.1630609,178.350667,8.9945755,0.081241679,1620000000000 ,1620000000000 ,1620000000000 ,1616812321860 -1616812321886 ,112.5730183,26.89152031,60.25231552,178.1740165,178.3779358,8.998485,0.081278188,1620000000000 ,1620000000000 ,1620000000000 ,1616812321870 -1616812321896 ,112.5730184,26.8915195,60.25169754,178.1852727,178.4024391,9.001104,0.081305626,1620000000000 ,1620000000000 ,1620000000000 ,1616812321880 -1616812321906 ,112.5730184,26.89151868,60.25109482,178.1981135,178.4235134,9.004041,0.081334763,1620000000000 ,1620000000000 ,1620000000000 ,1616812321890 -1616812321917 ,112.5730184,26.89151787,60.25050735,178.2096428,178.4387828,9.008408,0.081370767,1620000000000 ,1620000000000 ,1620000000000 ,1616812321900 -1616812321929 ,112.5730184,26.89151706,60.24993896,178.2196968,178.4334687,9.011846,0.081402543,1620000000000 ,1620000000000 ,1620000000000 ,1616812321910 -1616812321936 ,112.5730185,26.89151624,60.2493782,178.2306252,178.4726235,9.017253,0.081451009,1620000000000 ,1620000000000 ,1620000000000 ,1616812321920 -1616812321947 ,112.5730185,26.89151543,60.24877548,178.2426463,178.4968281,9.020417,0.081483282,1620000000000 ,1620000000000 ,1620000000000 ,1616812321930 -1616812321956 ,112.5730185,26.89151461,60.24808121,178.2546947,178.4929664,9.024774,0.081516009,1620000000000 ,1620000000000 ,1620000000000 ,1616812321940 -1616812321972 ,112.5730185,26.8915138,60.24736023,178.2625904,178.4918229,9.029137,0.081554703,1620000000000 ,1620000000000 ,1620000000000 ,1616812321950 -1616812321988 ,112.5730185,26.89151298,60.24664307,178.2726718,178.4940475,9.033731,0.08159555,1620000000000 ,1620000000000 ,1620000000000 ,1616812321960 -1616812321994 ,112.5730186,26.89151216,60.24587631,178.283764,178.5178916,9.038392,0.081635258,1620000000000 ,1620000000000 ,1620000000000 ,1616812321970 -1616812321998 ,112.5730186,26.89151135,60.24505997,178.2964409,178.5400464,9.040756,0.081660271,1620000000000 ,1620000000000 ,1620000000000 ,1616812321980 -1616812322008 ,112.5730186,26.89151053,60.24424744,178.307779,178.5424204,9.043946,0.081686318,1620000000000 ,1620000000000 ,1620000000000 ,1616812321990 -1616812322018 ,112.5730186,26.89150972,60.24346161,178.3186526,178.5293895,9.048912,0.081727576,1620000000000 ,1620000000000 ,1620000000000 ,1616812322000 -1616812322028 ,112.5730187,26.8915089,60.24261093,178.3302093,178.532912,9.054631,0.081773283,1620000000000 ,1620000000000 ,1620000000000 ,1616812322010 -1616812322037 ,112.5730187,26.89150808,60.24163437,178.3422031,178.5560176,9.060768,0.081825715,1620000000000 ,1620000000000 ,1620000000000 ,1616812322020 -1616812322054 ,112.5730187,26.89150726,60.24056244,178.3524757,178.5827549,9.063978,0.081854297,1620000000000 ,1620000000000 ,1620000000000 ,1616812322030 -1616812322056 ,112.5730187,26.89150644,60.23949432,178.3639231,178.5943848,9.06762,0.08188524,1620000000000 ,1620000000000 ,1620000000000 ,1616812322040 -1616812322068 ,112.5730187,26.89150562,60.23844147,178.3748787,178.5957126,9.071306,0.081919565,1620000000000 ,1620000000000 ,1620000000000 ,1616812322050 -1616812322077 ,112.5730188,26.8915048,60.23735809,178.3853426,178.6008441,9.075328,0.081953452,1620000000000 ,1620000000000 ,1620000000000 ,1616812322060 -1616812322087 ,112.5730188,26.89150398,60.23620605,178.3962709,178.6153941,9.079857,0.081987773,1620000000000 ,1620000000000 ,1620000000000 ,1616812322070 -1616812322098 ,112.5730188,26.89150316,60.2349968,178.4085106,178.6365355,9.084169,0.082025706,1620000000000 ,1620000000000 ,1620000000000 ,1616812322080 -1616812322108 ,112.5730188,26.89150234,60.23374557,178.4194662,178.6547832,9.088993,0.082064197,1620000000000 ,1620000000000 ,1620000000000 ,1616812322090 -1616812322120 ,112.5730188,26.89150152,60.23246765,178.4324436,178.6761246,9.094278,0.082110071,1620000000000 ,1620000000000 ,1620000000000 ,1616812322100 -1616812322127 ,112.5730188,26.8915007,60.23117065,178.4420332,178.6890552,9.097735,0.082145063,1620000000000 ,1620000000000 ,1620000000000 ,1616812322110 -1616812322138 ,112.5730189,26.89149988,60.22986221,178.4523604,178.7132791,9.10085,0.082170804,1620000000000 ,1620000000000 ,1620000000000 ,1616812322120 -1616812322151 ,112.5730189,26.89149906,60.22856903,178.4617314,178.7402464,9.104142,0.082199796,1620000000000 ,1620000000000 ,1620000000000 ,1616812322130 -1616812322159 ,112.5730189,26.89149824,60.22728729,178.4710751,178.7616069,9.108123,0.082234735,1620000000000 ,1620000000000 ,1620000000000 ,1616812322140 -1616812322168 ,112.5730189,26.89149741,60.22600937,178.481539,178.7861633,9.112314,0.082271617,1620000000000 ,1620000000000 ,1620000000000 ,1616812322150 -1616812322178 ,112.5730189,26.89149659,60.22477722,178.4921121,178.8082145,9.115982,0.082307099,1620000000000 ,1620000000000 ,1620000000000 ,1616812322160 -1616812322191 ,112.573019,26.89149577,60.22360229,178.5023301,178.8223339,9.118783,0.082336956,1620000000000 ,1620000000000 ,1620000000000 ,1616812322170 -1616812322198 ,112.573019,26.89149494,60.22245407,178.5126027,178.8346785,9.122567,0.082368517,1620000000000 ,1620000000000 ,1620000000000 ,1616812322180 -1616812322208 ,112.573019,26.89149412,60.22132874,178.5239408,178.8546532,9.12547,0.082399065,1620000000000 ,1620000000000 ,1620000000000 ,1616812322190 -1616812322218 ,112.573019,26.8914933,60.22044754,178.543803,178.7142179,9.131735,0.082454344,1620000000000 ,1620000000000 ,1620000000000 ,1616812322200 -1616812322230 ,112.573019,26.89149247,60.21995926,178.5535292,178.4612698,9.134061,0.082567564,1620000000000 ,1620000000000 ,1620000000000 ,1616812322210 -1616812322239 ,112.5730191,26.89149165,60.21952438,178.5623811,178.4790834,9.137612,0.082599035,1620000000000 ,1620000000000 ,1620000000000 ,1616812322220 -1616812322249 ,112.5730191,26.89149082,60.21910477,178.5728723,178.4964406,9.141322,0.082633098,1620000000000 ,1620000000000 ,1620000000000 ,1616812322230 -1616812322259 ,112.5730191,26.89148999,60.21870422,178.5832268,178.5139075,9.144968,0.08266579,1620000000000 ,1620000000000 ,1620000000000 ,1616812322240 -1616812322270 ,112.5730191,26.89148917,60.21835327,178.592188,178.5211004,9.147058,0.082687446,1620000000000 ,1620000000000 ,1620000000000 ,1616812322250 -1616812322280 ,112.5730191,26.89148834,60.21808624,178.6013951,178.530539,9.148463,0.082704298,1620000000000 ,1620000000000 ,1620000000000 ,1616812322260 -1616812322289 ,112.5730192,26.89148751,60.21790314,178.6112306,178.5383284,9.149437,0.082717417,1620000000000 ,1620000000000 ,1620000000000 ,1616812322270 -1616812322299 ,112.5730192,26.89148669,60.21776581,178.6228966,178.5436592,9.151252,0.082730997,1620000000000 ,1620000000000 ,1620000000000 ,1616812322280 -1616812322309 ,112.5730192,26.89148586,60.21763229,178.6337156,178.5502366,9.153386,0.082747957,1620000000000 ,1620000000000 ,1620000000000 ,1616812322290 -1616812322319 ,112.5730192,26.89148503,60.21748734,178.6455182,178.5527733,9.155723,0.08276468,1620000000000 ,1620000000000 ,1620000000000 ,1616812322300 -1616812322331 ,112.5730192,26.8914842,60.21733856,178.6579764,178.5475686,9.158328,0.082789023,1620000000000 ,1620000000000 ,1620000000000 ,1616812322310 -1616812322340 ,112.5730193,26.89148338,60.2171936,178.6715822,178.5517714,9.160514,0.082805552,1620000000000 ,1620000000000 ,1620000000000 ,1616812322320 -1616812322352 ,112.5730193,26.89148255,60.21706772,178.6843956,178.5682981,9.163839,0.082832466,1620000000000 ,1620000000000 ,1620000000000 ,1616812322330 -1616812322365 ,112.5730193,26.89148172,60.21694946,178.6973456,178.580112,9.165905,0.082851551,1620000000000 ,1620000000000 ,1620000000000 ,1616812322340 -1616812322382 ,112.5730193,26.89148089,60.21685028,178.708875,178.5948517,9.166406,0.082858207,1620000000000 ,1620000000000 ,1620000000000 ,1616812322350 -1616812322385 ,112.5730193,26.89148006,60.21678162,178.7218524,178.6161268,9.168344,0.082869264,1620000000000 ,1620000000000 ,1620000000000 ,1616812322360 -1616812322395 ,112.5730194,26.89147923,60.21674728,178.7327807,178.6362606,9.174602,0.082912599,1620000000000 ,1620000000000 ,1620000000000 ,1616812322370 -1616812322402 ,112.5730194,26.8914784,60.21675873,178.7452116,178.6627698,9.189279,0.083025248,1620000000000 ,1620000000000 ,1620000000000 ,1616812322380 -1616812322411 ,112.5730194,26.89147757,60.2167778,178.758025,178.6860804,9.199853,0.08313886,1620000000000 ,1620000000000 ,1620000000000 ,1616812322390 -1616812322420 ,112.5730194,26.89147674,60.21679688,178.771822,178.7104081,9.201963,0.083170506,1620000000000 ,1620000000000 ,1620000000000 ,1616812322400 -1616812322432 ,112.5730194,26.89147591,60.21685028,178.786302,178.7359325,9.201333,0.083173471,1620000000000 ,1620000000000 ,1620000000000 ,1616812322410 -1616812322441 ,112.5730195,26.89147508,60.21697235,178.7991428,178.7793854,9.200074,0.083160869,1620000000000 ,1620000000000 ,1620000000000 ,1616812322420 -1616812322450 ,112.5730195,26.89147425,60.21711349,178.813131,178.8004865,9.196922,0.083141719,1620000000000 ,1620000000000 ,1620000000000 ,1616812322430 -1616812322461 ,112.5730195,26.89147342,60.21724319,178.8250155,178.8379258,9.197203,0.083127687,1620000000000 ,1620000000000 ,1620000000000 ,1616812322440 -1616812322470 ,112.5730195,26.89147258,60.21718979,178.8355887,179.0330991,9.200485,0.083110004,1620000000000 ,1620000000000 ,1620000000000 ,1616812322450 -1616812322481 ,112.5730195,26.89147175,60.2169838,178.8446318,179.2185758,9.208667,0.083132855,1620000000000 ,1620000000000 ,1620000000000 ,1616812322460 -1616812322494 ,112.5730195,26.89147092,60.21681976,178.8546586,179.2358839,9.218433,0.083222063,1620000000000 ,1620000000000 ,1620000000000 ,1616812322470 -1616812322505 ,112.5730195,26.89147009,60.21674347,178.862363,179.241683,9.224257,0.083289257,1620000000000 ,1620000000000 ,1620000000000 ,1616812322480 -1616812322514 ,112.5730195,26.89146926,60.21680832,178.8710237,179.2358953,9.223926,0.083304616,1620000000000 ,1620000000000 ,1620000000000 ,1616812322490 -1616812322522 ,112.5730196,26.89146842,60.21701813,178.8808592,179.2177435,9.223797,0.083307029,1620000000000 ,1620000000000 ,1620000000000 ,1616812322500 -1616812322532 ,112.5730196,26.89146759,60.21735382,178.892006,179.2129582,9.221154,0.083298172,1620000000000 ,1620000000000 ,1620000000000 ,1616812322510 -1616812322544 ,112.5730196,26.89146676,60.21777725,178.9056937,179.1978798,9.220131,0.083288796,1620000000000 ,1620000000000 ,1620000000000 ,1616812322520 -1616812322552 ,112.5730196,26.89146592,60.21825409,178.9194634,179.1903851,9.22012,0.083294258,1620000000000 ,1620000000000 ,1620000000000 ,1616812322530 -1616812322565 ,112.5730196,26.89146509,60.2187767,178.9353641,179.1765072,9.2208185,0.083300926,1620000000000 ,1620000000000 ,1620000000000 ,1616812322540 -1616812322575 ,112.5730196,26.89146426,60.21937561,178.952221,179.16037,9.223959,0.083330525,1620000000000 ,1620000000000 ,1620000000000 ,1616812322550 -1616812322583 ,112.5730196,26.89146342,60.2201004,178.968067,179.1567985,9.227025,0.083368009,1620000000000 ,1620000000000 ,1620000000000 ,1616812322560 -1616812322593 ,112.5730196,26.89146259,60.22096634,178.9813449,179.1516715,9.228614,0.083396232,1620000000000 ,1620000000000 ,1620000000000 ,1616812322570 -1616812322602 ,112.5730197,26.89146176,60.22201157,178.9941857,179.1605905,9.228976,0.083413716,1620000000000 ,1620000000000 ,1620000000000 ,1616812322580 -1616812322613 ,112.5730197,26.89146092,60.22328568,179.0053325,179.1664738,9.227321,0.083419142,1620000000000 ,1620000000000 ,1620000000000 ,1616812322590 -1616812322623 ,112.5730197,26.89146009,60.22481537,179.0170531,179.1667671,9.225033,0.083419188,1620000000000 ,1620000000000 ,1620000000000 ,1616812322600 -1616812322633 ,112.5730197,26.89145925,60.22655106,179.0290469,179.1718757,9.223644,0.083421775,1620000000000 ,1620000000000 ,1620000000000 ,1616812322610 -1616812322643 ,112.5730197,26.89145842,60.22844696,179.0422702,179.1879382,9.224638,0.08344176,1620000000000 ,1620000000000 ,1620000000000 ,1616812322620 -1616812322654 ,112.5730197,26.89145759,60.23046494,179.0582802,179.2123347,9.224689,0.083464218,1620000000000 ,1620000000000 ,1620000000000 ,1616812322630 -1616812322663 ,112.5730197,26.89145675,60.23260498,179.0733066,179.2511813,9.223831,0.083474467,1620000000000 ,1620000000000 ,1620000000000 ,1616812322640 -1616812322673 ,112.5730197,26.89145592,60.23488235,179.0873494,179.3051697,9.224148,0.08349295,1620000000000 ,1620000000000 ,1620000000000 ,1616812322650 -1616812322683 ,112.5730197,26.89145508,60.23717117,179.1030589,179.2992356,9.226099,0.08351996,1620000000000 ,1620000000000 ,1620000000000 ,1616812322660 -1616812322694 ,112.5730198,26.89145341,60.24070358,179.1297513,179.2596487,9.226445,0.167039452,1620000000000 ,1620000000000 ,1620000000000 ,1616812322680 -1616812322705 ,112.5730198,26.89145341,60.24070358,179.1297513,-400,9.226445,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812322690 -1616812322715 ,112.5730198,26.89145174,60.24160385,179.1557879,179.3137189,9.260202,0.167203632,1620000000000 ,1620000000000 ,1620000000000 ,1616812322700 -1616812322724 ,112.5730198,26.89145174,60.24160385,179.1557879,-400,9.260202,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812322710 -1616812322734 ,112.5730198,26.89145006,60.24024582,179.1814148,179.3483606,9.286063,0.167817298,1620000000000 ,1620000000000 ,1620000000000 ,1616812322720 -1616812322746 ,112.5730198,26.89144922,60.23937225,179.1930534,179.3668453,9.272107,0.083848908,1620000000000 ,1620000000000 ,1620000000000 ,1616812322730 -1616812322755 ,112.5730198,26.89144839,60.23863602,179.2043642,179.3934053,9.250072,0.083669173,1620000000000 ,1620000000000 ,1620000000000 ,1616812322740 -1616812322765 ,112.5730198,26.89144755,60.23787308,179.2210572,179.4047855,9.249287,0.083606333,1620000000000 ,1620000000000 ,1620000000000 ,1616812322750 -1616812322774 ,112.5730198,26.89144671,60.23674011,179.2370672,179.4177571,9.270523,0.083724192,1620000000000 ,1620000000000 ,1620000000000 ,1616812322760 -1616812322787 ,112.5730199,26.89144587,60.23488235,179.2531318,179.4530952,9.298069,0.083929115,1620000000000 ,1620000000000 ,1620000000000 ,1616812322770 -1616812322795 ,112.5730199,26.89144503,60.23226547,179.2675298,179.4668553,9.313857,0.084054069,1620000000000 ,1620000000000 ,1620000000000 ,1616812322780 -1616812322806 ,112.5730199,26.89144419,60.22912979,179.2785401,179.5119263,9.315158,0.084068094,1620000000000 ,1620000000000 ,1620000000000 ,1616812322790 -1616812322816 ,112.5730199,26.89144335,60.22581482,179.2923917,179.5413804,9.305181,0.083989469,1620000000000 ,1620000000000 ,1620000000000 ,1616812322800 -1616812322824 ,112.5730199,26.89144251,60.22263718,179.3045495,179.5009413,9.297665,0.083916909,1620000000000 ,1620000000000 ,1620000000000 ,1616812322810 -1616812322835 ,112.5730199,26.89144167,60.21958542,179.3177454,179.462934,9.298849,0.083909147,1620000000000 ,1620000000000 ,1620000000000 ,1616812322820 -1616812322846 ,112.5730199,26.89144083,60.21648407,179.333045,179.4634228,9.308794,0.083979515,1620000000000 ,1620000000000 ,1620000000000 ,1616812322830 -1616812322855 ,112.5730199,26.89143999,60.21318817,179.3483173,179.5008618,9.318388,0.084056884,1620000000000 ,1620000000000 ,1620000000000 ,1616812322840 -1616812322865 ,112.5730199,26.89143915,60.20969772,179.3616772,179.5094961,9.32425,0.084106424,1620000000000 ,1620000000000 ,1620000000000 ,1616812322850 -1616812322875 ,112.5730199,26.89143831,60.20609665,179.3768129,179.4899381,9.32677,0.084124134,1620000000000 ,1620000000000 ,1620000000000 ,1616812322860 -1616812322886 ,112.5730199,26.89143747,60.20244217,179.3932326,179.4971485,9.331256,0.084157713,1620000000000 ,1620000000000 ,1620000000000 ,1616812322870 -1616812322896 ,112.5730199,26.89143663,60.19882202,179.40774,179.5320736,9.333446,0.084186642,1620000000000 ,1620000000000 ,1620000000000 ,1616812322880 -1616812322905 ,112.5730199,26.89143579,60.19537354,179.4210998,179.5672734,9.331881,0.084185841,1620000000000 ,1620000000000 ,1620000000000 ,1616812322890 -1616812322917 ,112.5730199,26.89143494,60.19213104,179.4363175,179.5676964,9.330036,0.084177806,1620000000000 ,1620000000000 ,1620000000000 ,1616812322900 -1616812322927 ,112.57302,26.8914341,60.18900299,179.4518903,179.5669762,9.331409,0.084184096,1620000000000 ,1620000000000 ,1620000000000 ,1616812322910 -1616812322936 ,112.57302,26.89143326,60.18589401,179.4663703,179.5884002,9.334027,0.084205077,1620000000000 ,1620000000000 ,1620000000000 ,1616812322920 -1616812322946 ,112.57302,26.89143242,60.18284225,179.4787466,179.6321655,9.336631,0.084231658,1620000000000 ,1620000000000 ,1620000000000 ,1616812322930 -1616812322957 ,112.57302,26.89143158,60.17999649,179.4920791,179.6627067,9.337611,0.084254218,1620000000000 ,1620000000000 ,1620000000000 ,1616812322940 -1616812322967 ,112.57302,26.89143073,60.17744446,179.5038817,179.6824779,9.338108,0.084270007,1620000000000 ,1620000000000 ,1620000000000 ,1616812322950 -1616812322986 ,112.57302,26.89142989,60.17512131,179.5146188,179.7182196,9.341071,0.084300123,1620000000000 ,1620000000000 ,1620000000000 ,1616812322960 -1616812322988 ,112.57302,26.89142905,60.17292786,179.5265306,179.7630963,9.344434,0.084337738,1620000000000 ,1620000000000 ,1620000000000 ,1616812322970 -1616812323001 ,112.57302,26.8914282,60.17084122,179.5381419,179.8078621,9.346859,0.084363344,1620000000000 ,1620000000000 ,1620000000000 ,1616812322980 -1616812323009 ,112.57302,26.89142736,60.16896439,179.5476769,179.8272475,9.346917,0.084381042,1620000000000 ,1620000000000 ,1620000000000 ,1616812322990 -1616812323018 ,112.57302,26.89142651,60.16734695,179.5572391,179.8396711,9.345848,0.084383074,1620000000000 ,1620000000000 ,1620000000000 ,1616812323000 -1616812323030 ,112.57302,26.89142567,60.16599274,179.5692056,179.8687142,9.345576,0.084388114,1620000000000 ,1620000000000 ,1620000000000 ,1616812323010 -1616812323038 ,112.57302,26.89142483,60.1648407,179.5794782,179.8960014,9.345304,0.084395276,1620000000000 ,1620000000000 ,1620000000000 ,1616812323020 -1616812323048 ,112.57302,26.89142398,60.16387558,179.5900514,179.9263062,9.346086,0.084408875,1620000000000 ,1620000000000 ,1620000000000 ,1616812323030 -1616812323058 ,112.57302,26.89142314,60.16311646,179.599559,179.9441908,9.347379,0.08442885,1620000000000 ,1620000000000 ,1620000000000 ,1616812323040 -1616812323070 ,112.57302,26.89142229,60.16256332,179.6087388,179.9605334,9.348815,0.08445157,1620000000000 ,1620000000000 ,1620000000000 ,1616812323050 -1616812323082 ,112.57302,26.89142145,60.16217422,179.6167164,179.9815737,9.351206,0.084478751,1620000000000 ,1620000000000 ,1620000000000 ,1616812323060 -1616812323089 ,112.57302,26.8914206,60.16190338,179.6255683,180.0051065,9.353349,0.08450703,1620000000000 ,1620000000000 ,1620000000000 ,1616812323070 -1616812323098 ,112.57302,26.89141976,60.16173553,179.6337919,180.0325649,9.35407,0.084522842,1620000000000 ,1620000000000 ,1620000000000 ,1616812323080 -1616812323108 ,112.57302,26.89141891,60.16166687,179.6444743,180.0463807,9.35398,0.084531704,1620000000000 ,1620000000000 ,1620000000000 ,1616812323090 -1616812323118 ,112.57302,26.89141807,60.16168594,179.6540639,180.0510607,9.354282,0.084540203,1620000000000 ,1620000000000 ,1620000000000 ,1616812323100 -1616812323128 ,112.57302,26.89141722,60.16175461,179.663954,180.0593489,9.354639,0.084546219,1620000000000 ,1620000000000 ,1620000000000 ,1616812323110 -1616812323146 ,112.57302,26.89141638,60.16181564,179.6743632,180.0730809,9.356004,0.084557498,1620000000000 ,1620000000000 ,1620000000000 ,1616812323120 -1616812323151 ,112.57302,26.89141553,60.16184235,179.6836796,180.0910058,9.358461,0.084579824,1620000000000 ,1620000000000 ,1620000000000 ,1616812323130 -1616812323159 ,112.57302,26.89141469,60.16182327,179.6931326,180.1079567,9.361287,0.084605286,1620000000000 ,1620000000000 ,1620000000000 ,1616812323140 -1616812323169 ,112.57302,26.89141384,60.16176605,179.7027768,180.1131023,9.364786,0.08463498,1620000000000 ,1620000000000 ,1620000000000 ,1616812323150 -1616812323181 ,112.57302,26.89141299,60.16165543,179.7120932,180.1115742,9.367497,0.084662991,1620000000000 ,1620000000000 ,1620000000000 ,1616812323160 -1616812323188 ,112.57302,26.89141215,60.16147232,179.7215735,180.1121757,9.370093,0.084685179,1620000000000 ,1620000000000 ,1620000000000 ,1616812323170 -1616812323199 ,112.57302,26.8914113,60.16119766,179.7302342,180.1280048,9.371581,0.084698909,1620000000000 ,1620000000000 ,1620000000000 ,1616812323180 -1616812323208 ,112.57302,26.89141045,60.16083145,179.740698,180.1437761,9.372811,0.084708004,1620000000000 ,1620000000000 ,1620000000000 ,1616812323190 -1616812323220 ,112.57302,26.89140961,60.16027451,179.7385943,180.2124603,9.360415,0.084531864,1620000000000 ,1620000000000 ,1620000000000 ,1616812323200 -1616812323230 ,112.57302,26.89140876,60.15942001,179.7491128,180.3142487,9.363072,0.084217881,1620000000000 ,1620000000000 ,1620000000000 ,1616812323210 -1616812323240 ,112.57302,26.89140792,60.15846252,179.7588117,180.322513,9.365996,0.084239604,1620000000000 ,1620000000000 ,1620000000000 ,1616812323220 -1616812323250 ,112.57302,26.89140708,60.15739059,179.767445,180.3347689,9.368741,0.084261316,1620000000000 ,1620000000000 ,1620000000000 ,1616812323230 -1616812323259 ,112.57302,26.89140624,60.15621567,179.7779908,180.3478968,9.370804,0.084279236,1620000000000 ,1620000000000 ,1620000000000 ,1616812323240 -1616812323268 ,112.57302,26.89140539,60.15496826,179.7862417,180.3573933,9.372494,0.084291637,1620000000000 ,1620000000000 ,1620000000000 ,1616812323250 -1616812323281 ,112.5730199,26.89140455,60.15364456,179.7969241,180.3635435,9.374478,0.08430423,1620000000000 ,1620000000000 ,1620000000000 ,1616812323260 -1616812323290 ,112.5730199,26.89140371,60.15220642,179.8057214,180.3751799,9.377968,0.084328754,1620000000000 ,1620000000000 ,1620000000000 ,1616812323270 -1616812323300 ,112.5730199,26.89140286,60.15061569,179.8165404,180.3882251,9.38116,0.084350008,1620000000000 ,1620000000000 ,1620000000000 ,1616812323280 -1616812323311 ,112.5730199,26.89140202,60.14888382,179.8277419,180.4065191,9.384194,0.084372374,1620000000000 ,1620000000000 ,1620000000000 ,1616812323290 -1616812323321 ,112.5730199,26.89140118,60.14703751,179.8360475,180.4133658,9.386174,0.084385456,1620000000000 ,1620000000000 ,1620000000000 ,1616812323300 -1616812323331 ,112.5730199,26.89140033,60.1451149,179.8438066,180.4162031,9.38874,0.084404928,1620000000000 ,1620000000000 ,1620000000000 ,1616812323310 -1616812323340 ,112.5730199,26.89139949,60.143116,179.8510192,180.4222488,9.391411,0.084423635,1620000000000 ,1620000000000 ,1620000000000 ,1616812323320 -1616812323350 ,112.5730199,26.89139864,60.14103317,179.8603083,180.4378234,9.394483,0.084446269,1620000000000 ,1620000000000 ,1620000000000 ,1616812323330 -1616812323361 ,112.5730199,26.8913978,60.13887787,179.8692968,180.4492208,9.397841,0.084471026,1620000000000 ,1620000000000 ,1620000000000 ,1616812323340 -1616812323370 ,112.5730199,26.89139695,60.13666153,179.8768647,180.4501271,9.399413,0.084487638,1620000000000 ,1620000000000 ,1620000000000 ,1616812323350 -1616812323381 ,112.5730199,26.89139611,60.1343956,179.8846784,180.4490555,9.401645,0.084502493,1620000000000 ,1620000000000 ,1620000000000 ,1616812323360 -1616812323391 ,112.5730199,26.89139526,60.13208008,179.8895142,180.455624,9.402798,0.084512001,1620000000000 ,1620000000000 ,1620000000000 ,1616812323370 -1616812323400 ,112.5730199,26.89139442,60.12972641,179.8965083,180.4730654,9.405248,0.084528408,1620000000000 ,1620000000000 ,1620000000000 ,1616812323380 -1616812323411 ,112.5730199,26.89139357,60.12735367,179.9029287,180.4880886,9.407855,0.084552797,1620000000000 ,1620000000000 ,1620000000000 ,1616812323390 -1616812323420 ,112.5730199,26.89139273,60.12496567,179.9092671,180.488122,9.4106,0.084573371,1620000000000 ,1620000000000 ,1620000000000 ,1616812323400 -1616812323432 ,112.5730198,26.89139188,60.12256241,179.9159607,180.4919314,9.41323,0.084597587,1620000000000 ,1620000000000 ,1620000000000 ,1616812323410 -1616812323440 ,112.5730198,26.89139104,60.12014389,179.9221625,180.4962209,9.414909,0.08461389,1620000000000 ,1620000000000 ,1620000000000 ,1616812323420 -1616812323450 ,112.5730198,26.89139019,60.11769867,179.9303314,180.5008558,9.417428,0.084631384,1620000000000 ,1620000000000 ,1620000000000 ,1616812323430 -1616812323462 ,112.5730198,26.89138934,60.115242,179.936861,180.5053813,9.419399,0.084650283,1620000000000 ,1620000000000 ,1620000000000 ,1616812323440 -1616812323472 ,112.5730198,26.89138849,60.11291122,179.9416695,180.4417023,9.421706,0.084863448,1620000000000 ,1620000000000 ,1620000000000 ,1616812323450 -1616812323481 ,112.5730198,26.89138764,60.11072159,179.945713,180.3782754,9.424031,0.085081477,1620000000000 ,1620000000000 ,1620000000000 ,1616812323460 -1616812323491 ,112.5730198,26.89138679,60.10855103,179.9512044,180.3736313,9.425946,0.085098418,1620000000000 ,1620000000000 ,1620000000000 ,1616812323470 -1616812323507 ,112.5730198,26.89138594,60.10640335,179.9560129,180.3794539,9.428044,0.085119795,1620000000000 ,1620000000000 ,1620000000000 ,1616812323480 -1616812323514 ,112.5730198,26.89138509,60.10428619,179.9604662,180.3840563,9.428993,0.085130327,1620000000000 ,1620000000000 ,1620000000000 ,1616812323490 -1616812323522 ,112.5730198,26.89138424,60.10220337,179.9677335,180.3874828,9.430485,0.085144313,1620000000000 ,1620000000000 ,1620000000000 ,1616812323500 -1616812323531 ,112.5730198,26.89138339,60.10014725,179.9720502,180.3950859,9.432825,0.085165858,1620000000000 ,1620000000000 ,1620000000000 ,1616812323510 -1616812323547 ,112.5730198,26.89138253,60.09811783,179.9771045,180.3913938,9.434708,0.085182027,1620000000000 ,1620000000000 ,1620000000000 ,1616812323520 -1616812323554 ,112.5730198,26.89138168,60.0961113,179.9816124,180.4046451,9.437522,0.085209028,1620000000000 ,1620000000000 ,1620000000000 ,1616812323530 -1616812323578 ,112.5730198,26.89138083,60.09414673,179.9872952,180.4174059,9.439068,0.085227752,1620000000000 ,1620000000000 ,1620000000000 ,1616812323540 -1616812323582 ,112.5730198,26.89137998,60.09223938,179.9914206,180.4269172,9.4408,0.085246348,1620000000000 ,1620000000000 ,1620000000000 ,1616812323550 -1616812323597 ,112.5730198,26.89137913,60.09039688,179.9950269,180.434786,9.441003,0.085252682,1620000000000 ,1620000000000 ,1620000000000 ,1616812323560 -1616812323601 ,112.5730197,26.89137827,60.0886116,179.9993983,180.4397623,9.4419565,0.085263927,1620000000000 ,1620000000000 ,1620000000000 ,1616812323570 -1616812323608 ,112.5730197,26.89137742,60.08687973,180.0031958,180.4466391,9.44379,0.085279603,1620000000000 ,1620000000000 ,1620000000000 ,1616812323580 -1616812323614 ,112.5730197,26.89137657,60.085186,180.0050537,180.457322,9.446407,0.08530619,1620000000000 ,1620000000000 ,1620000000000 ,1616812323590 -1616812323625 ,112.5730197,26.89137571,60.08353043,180.0080589,180.4622603,9.448358,0.085326484,1620000000000 ,1620000000000 ,1620000000000 ,1616812323600 -1616812323632 ,112.5730197,26.89137486,60.08192444,180.0107364,180.4691456,9.450088,0.085345891,1620000000000 ,1620000000000 ,1620000000000 ,1616812323610 -1616812323642 ,112.5730197,26.89137401,60.08036041,180.0135231,180.4753254,9.451835,0.085364325,1620000000000 ,1620000000000 ,1620000000000 ,1616812323620 -1616812323653 ,112.5730197,26.89137315,60.0788002,180.0168289,180.4842584,9.453721,0.085379426,1620000000000 ,1620000000000 ,1620000000000 ,1616812323630 -1616812323662 ,112.5730197,26.8913723,60.07722855,180.0196156,180.4995975,9.455531,0.085398981,1620000000000 ,1620000000000 ,1620000000000 ,1616812323640 -1616812323672 ,112.5730197,26.89137145,60.07567978,180.023058,180.5035912,9.455861,0.085404716,1620000000000 ,1620000000000 ,1620000000000 ,1616812323650 -1616812323683 ,112.5730197,26.89137059,60.07419968,180.0261726,180.5041293,9.457513,0.085422093,1620000000000 ,1620000000000 ,1620000000000 ,1616812323660 -1616812323693 ,112.5730197,26.89136974,60.07278061,180.0286315,180.5031966,9.458663,0.085434951,1620000000000 ,1620000000000 ,1620000000000 ,1616812323670 -1616812323703 ,112.5730197,26.89136888,60.07139587,180.0328935,180.5118012,9.461478,0.085458927,1620000000000 ,1620000000000 ,1620000000000 ,1616812323680 -1616812323713 ,112.5730197,26.89136803,60.06999207,180.0368004,180.5137932,9.464967,0.085490667,1620000000000 ,1620000000000 ,1620000000000 ,1616812323690 -1616812323724 ,112.5730197,26.89136717,60.06855011,180.039833,180.5202431,9.468345,0.08551745,1620000000000 ,1620000000000 ,1620000000000 ,1616812323700 -1616812323734 ,112.5730196,26.89136632,60.06708527,180.0444775,180.5183005,9.470901,0.085541675,1620000000000 ,1620000000000 ,1620000000000 ,1616812323710 -1616812323744 ,112.5730196,26.89136546,60.06559753,180.0484117,180.5109736,9.471811,0.085553839,1620000000000 ,1620000000000 ,1620000000000 ,1616812323730 -1616812323756 ,112.5730196,26.89136461,60.06409836,180.0522639,180.5127379,9.474157,0.085569598,1620000000000 ,1620000000000 ,1620000000000 ,1616812323740 -1616812323763 ,112.5730196,26.89136375,60.06256104,180.0543403,180.5196239,9.477155,0.085593968,1620000000000 ,1620000000000 ,1620000000000 ,1616812323750 -1616812323774 ,112.5730196,26.89136289,60.0609436,180.0602962,180.5219676,9.480654,0.085617409,1620000000000 ,1620000000000 ,1620000000000 ,1616812323760 -1616812323785 ,112.5730196,26.89136204,60.05922318,180.0634654,180.5280865,9.485178,0.085653364,1620000000000 ,1620000000000 ,1620000000000 ,1616812323770 -1616812323794 ,112.5730196,26.89136118,60.05741119,180.0659243,180.5249589,9.487395,0.085673667,1620000000000 ,1620000000000 ,1620000000000 ,1616812323780 -1616812323803 ,112.5730196,26.89136032,60.05557251,180.070241,180.5354176,9.490332,0.085694004,1620000000000 ,1620000000000 ,1620000000000 ,1616812323780 -1616812323814 ,112.5730196,26.89135861,60.05189514,180.0773717,180.5456781,9.494565,0.171446989,1620000000000 ,1620000000000 ,1620000000000 ,1616812323800 -1616812323825 ,112.5730196,26.89135775,60.0500412,180.0812786,180.5548898,9.497727,0.085756973,1620000000000 ,1620000000000 ,1620000000000 ,1616812323810 -1616812323834 ,112.5730196,26.89135689,60.04814148,180.0833003,180.5536683,9.50071,0.085779248,1620000000000 ,1620000000000 ,1620000000000 ,1616812323820 -1616812323844 ,112.5730195,26.89135604,60.04619217,180.0873984,180.5613431,9.504354,0.085810852,1620000000000 ,1620000000000 ,1620000000000 ,1616812323830 -1616812323854 ,112.5730195,26.89135518,60.04421616,180.0912233,180.5722215,9.506899,0.085832171,1620000000000 ,1620000000000 ,1620000000000 ,1616812323840 -1616812323865 ,112.5730195,26.89135432,60.04225922,180.0939281,180.5812575,9.50886,0.08585165,1620000000000 ,1620000000000 ,1620000000000 ,1616812323850 -1616812323874 ,112.5730195,26.89135346,60.04034805,180.0958405,180.5908345,9.50968,0.085861231,1620000000000 ,1620000000000 ,1620000000000 ,1616812323860 -1616812323884 ,112.5730195,26.8913526,60.03844452,180.0982174,180.5979475,9.512312,0.085882971,1620000000000 ,1620000000000 ,1620000000000 ,1616812323870 -1616812323894 ,112.5730195,26.89135174,60.03650665,180.1031079,180.6067168,9.514263,0.085896625,1620000000000 ,1620000000000 ,1620000000000 ,1616812323880 -1616812323906 ,112.5730195,26.89135174,60.03650665,180.1031079,-400,9.514263,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812323890 -1616812323922 ,112.5730195,26.89135002,60.03256989,180.1090091,180.6160579,9.518268,0.171847475,1620000000000 ,1620000000000 ,1620000000000 ,1616812323900 -1616812323926 ,112.5730195,26.89134916,60.03064728,180.1099107,180.622007,9.520597,0.085949965,1620000000000 ,1620000000000 ,1620000000000 ,1616812323910 -1616812323934 ,112.5730195,26.89134831,60.02876663,180.1123696,180.6314403,9.522754,0.08597249,1620000000000 ,1620000000000 ,1620000000000 ,1616812323920 -1616812323945 ,112.5730195,26.89134745,60.0269165,180.1156481,180.6366544,9.524553,0.085989491,1620000000000 ,1620000000000 ,1620000000000 ,1616812323930 -1616812323957 ,112.5730194,26.89134659,60.02511215,180.1196369,180.6407232,9.526007,0.086004509,1620000000000 ,1620000000000 ,1620000000000 ,1616812323940 -1616812323966 ,112.5730194,26.89134573,60.02336884,180.1238989,180.6464404,9.526659,0.086013261,1620000000000 ,1620000000000 ,1620000000000 ,1616812323950 -1616812323975 ,112.5730194,26.89134486,60.02168274,180.1277785,180.653258,9.528668,0.086029148,1620000000000 ,1620000000000 ,1620000000000 ,1616812323960 -1616812323985 ,112.5730194,26.891344,60.02003098,180.1295543,180.663741,9.530318,0.086046997,1620000000000 ,1620000000000 ,1620000000000 ,1616812323970 -1616812323995 ,112.5730194,26.89134314,60.01842499,180.1342535,180.6912884,9.532365,0.086063013,1620000000000 ,1620000000000 ,1620000000000 ,1616812323980 -1616812324006 ,112.5730194,26.89134228,60.01688385,180.1394718,180.6988806,9.533993,0.086082312,1620000000000 ,1620000000000 ,1620000000000 ,1616812323990 -1616812324016 ,112.5730194,26.89134142,60.0153923,180.141193,180.6929605,9.536013,0.086098932,1620000000000 ,1620000000000 ,1620000000000 ,1616812324000 -1616812324026 ,112.5730194,26.89134056,60.01394653,180.1449359,180.6995838,9.538578,0.0861244,1620000000000 ,1620000000000 ,1620000000000 ,1616812324010 -1616812324035 ,112.5730194,26.8913397,60.01251221,180.1502362,180.7116592,9.540458,0.086141127,1620000000000 ,1620000000000 ,1620000000000 ,1616812324020 -1616812324048 ,112.5730194,26.89133884,60.01109695,180.1535693,180.7224195,9.542451,0.086157577,1620000000000 ,1620000000000 ,1620000000000 ,1616812324030 -1616812324056 ,112.5730193,26.89133798,60.00973129,180.1557276,180.7179719,9.544756,0.086179457,1620000000000 ,1620000000000 ,1620000000000 ,1616812324040 -1616812324066 ,112.5730193,26.89133711,60.00844955,180.157121,180.7109993,9.5450535,0.086189239,1620000000000 ,1620000000000 ,1620000000000 ,1616812324050 -1616812324076 ,112.5730193,26.89133625,60.00723267,180.1604268,180.7127313,9.547488,0.08620771,1620000000000 ,1620000000000 ,1620000000000 ,1616812324060 -1616812324086 ,112.5730193,26.89133539,60.00606918,180.1619841,180.7105397,9.549515,0.086231236,1620000000000 ,1620000000000 ,1620000000000 ,1616812324070 -1616812324097 ,112.5730193,26.89133453,60.00496674,180.1678034,180.7127805,9.551264,0.08624495,1620000000000 ,1620000000000 ,1620000000000 ,1616812324080 -1616812324108 ,112.5730193,26.89133367,60.00393677,180.1725572,180.7092953,9.55423,0.086273917,1620000000000 ,1620000000000 ,1620000000000 ,1616812324090 -1616812324117 ,112.5730193,26.8913328,60.00296021,180.1774476,180.7075314,9.557002,0.08630083,1620000000000 ,1620000000000 ,1620000000000 ,1616812324100 -1616812324127 ,112.5730193,26.89133194,60.00201035,180.1829391,180.7108747,9.561038,0.086334917,1620000000000 ,1620000000000 ,1620000000000 ,1616812324110 -1616812324138 ,112.5730193,26.89133108,60.00107574,180.1870645,180.7110895,9.564589,0.086367359,1620000000000 ,1620000000000 ,1620000000000 ,1616812324120 -1616812324147 ,112.5730192,26.89133021,60.00014877,180.1930205,180.7193089,9.568536,0.086400757,1620000000000 ,1620000000000 ,1620000000000 ,1616812324130 -1616812324157 ,112.5730192,26.89132935,59.99922943,180.1959711,180.7261891,9.572367,0.086438735,1620000000000 ,1620000000000 ,1620000000000 ,1616812324140 -1616812324167 ,112.5730192,26.89132848,59.99832535,180.2014079,180.726611,9.575191,0.086465756,1620000000000 ,1620000000000 ,1620000000000 ,1616812324150 -1616812324178 ,112.5730192,26.89132762,59.99748993,180.2042493,180.7280108,9.57818,0.0864949,1620000000000 ,1620000000000 ,1620000000000 ,1616812324160 -1616812324188 ,112.5730192,26.89132675,59.99676132,180.2065989,180.7341419,9.581361,0.086527897,1620000000000 ,1620000000000 ,1620000000000 ,1616812324170 -1616812324200 ,112.5730192,26.89132589,59.99610519,180.2086206,180.7316019,9.584266,0.086557059,1620000000000 ,1620000000000 ,1620000000000 ,1616812324180 -1616812324207 ,112.5730192,26.89132502,59.9954834,180.2097954,180.7417246,9.588127,0.086591074,1620000000000 ,1620000000000 ,1620000000000 ,1616812324190 -1616812324217 ,112.5730192,26.89132415,59.99504471,180.2186473,180.8247246,9.594396,0.086713217,1620000000000 ,1620000000000 ,1620000000000 ,1616812324200 -1616812324228 ,112.5730192,26.89132329,59.99478149,180.2212701,180.9571826,9.597702,0.086860018,1620000000000 ,1620000000000 ,1620000000000 ,1616812324210 -1616812324237 ,112.5730191,26.89132242,59.99458694,180.224412,180.9601792,9.601331,0.086894849,1620000000000 ,1620000000000 ,1620000000000 ,1616812324220 -1616812324247 ,112.5730191,26.89132155,59.99443054,180.2268709,180.9665978,9.604539,0.08692669,1620000000000 ,1620000000000 ,1620000000000 ,1616812324230 -1616812324258 ,112.5730191,26.89132068,59.99428177,180.2303679,180.971217,9.607286,0.086955379,1620000000000 ,1620000000000 ,1620000000000 ,1616812324240 -1616812324268 ,112.5730191,26.89131981,59.99414825,180.233783,180.9772854,9.61059,0.086985803,1620000000000 ,1620000000000 ,1620000000000 ,1616812324250 -1616812324280 ,112.5730191,26.89131894,59.99403381,180.2355042,180.9796306,9.612917,0.087009235,1620000000000 ,1620000000000 ,1620000000000 ,1616812324260 -1616812324288 ,112.5730191,26.89131807,59.99393082,180.2366244,180.9845504,9.615443,0.087032756,1620000000000 ,1620000000000 ,1620000000000 ,1616812324270 -1616812324298 ,112.5730191,26.8913172,59.99381256,180.2389467,180.9978417,9.619527,0.087066373,1620000000000 ,1620000000000 ,1620000000000 ,1616812324280 -1616812324308 ,112.573019,26.89131633,59.99367523,180.2405859,181.0090302,9.62362,0.087104036,1620000000000 ,1620000000000 ,1620000000000 ,1616812324290 -1616812324319 ,112.573019,26.89131546,59.99354172,180.2408864,181.0069275,9.627625,0.087142371,1620000000000 ,1620000000000 ,1620000000000 ,1616812324300 -1616812324332 ,112.573019,26.89131458,59.99339676,180.2437005,181.0106083,9.630494,0.087172282,1620000000000 ,1620000000000 ,1620000000000 ,1616812324310 -1616812324339 ,112.573019,26.89131371,59.99325943,180.2461867,181.0196752,9.633629,0.087200902,1620000000000 ,1620000000000 ,1620000000000 ,1616812324320 -1616812324357 ,112.573019,26.89131284,59.99313354,180.2470336,181.0263411,9.635788,0.087225424,1620000000000 ,1620000000000 ,1620000000000 ,1616812324330 -1616812324363 ,112.573019,26.89131197,59.99302673,180.2487821,181.038374,9.639008,0.087251348,1620000000000 ,1620000000000 ,1620000000000 ,1616812324340 -1616812324372 ,112.5730189,26.8913111,59.9928894,180.2525797,181.0383914,9.64282,0.087286431,1620000000000 ,1620000000000 ,1620000000000 ,1616812324350 -1616812324380 ,112.5730189,26.89131022,59.99269104,180.2551752,181.0493917,9.64735,0.087324245,1620000000000 ,1620000000000 ,1620000000000 ,1616812324360 -1616812324389 ,112.5730189,26.89130935,59.9924469,180.2567598,181.0586026,9.652189,0.087365789,1620000000000 ,1620000000000 ,1620000000000 ,1616812324370 -1616812324401 ,112.5730189,26.89130847,59.99217224,180.258399,181.0501867,9.656599,0.087408182,1620000000000 ,1620000000000 ,1620000000000 ,1616812324380 -1616812324409 ,112.5730189,26.8913076,59.99187469,180.2593006,181.0501224,9.659922,0.08743997,1620000000000 ,1620000000000 ,1620000000000 ,1616812324390 -1616812324419 ,112.5730189,26.89130673,59.991539,180.2615409,181.0502322,9.663982,0.087472696,1620000000000 ,1620000000000 ,1620000000000 ,1616812324400 -1616812324430 ,112.5730188,26.89130585,59.99113464,180.2639725,181.0438224,9.667906,0.087506315,1620000000000 ,1620000000000 ,1620000000000 ,1616812324410 -1616812324439 ,112.5730188,26.89130498,59.99064255,180.2693273,181.0351715,9.67338,0.087548073,1620000000000 ,1620000000000 ,1620000000000 ,1616812324420 -1616812324449 ,112.5730188,26.8913041,59.99007034,180.2718408,181.016355,9.677911,0.087589963,1620000000000 ,1620000000000 ,1620000000000 ,1616812324430 -1616812324459 ,112.5730188,26.89130322,59.98945236,180.2736713,181.0042045,9.681495,0.087622955,1620000000000 ,1620000000000 ,1620000000000 ,1616812324440 -1616812324472 ,112.5730188,26.89130235,59.98867035,180.2751193,180.9101988,9.685792,0.087570501,1620000000000 ,1620000000000 ,1620000000000 ,1616812324450 -1616812324480 ,112.5730188,26.89130147,59.9876709,180.279436,180.828882,9.690344,0.08751834,1620000000000 ,1620000000000 ,1620000000000 ,1616812324460 -1616812324490 ,112.5730188,26.8913006,59.98658752,180.2851187,180.8311814,9.6957035,0.087564652,1620000000000 ,1620000000000 ,1620000000000 ,1616812324470 -1616812324500 ,112.5730187,26.89129972,59.98543549,180.2890529,180.8205582,9.70141,0.087613616,1620000000000 ,1620000000000 ,1620000000000 ,1616812324480 -1616812324510 ,112.5730187,26.89129884,59.98423767,180.2929598,180.8062062,9.706911,0.08765934,1620000000000 ,1620000000000 ,1620000000000 ,1616812324490 -1616812324521 ,112.5730187,26.89129797,59.98297119,180.2969759,180.8050478,9.7112055,0.087697784,1620000000000 ,1620000000000 ,1620000000000 ,1616812324500 -1616812324530 ,112.5730187,26.89129709,59.98163223,180.2998993,180.8179075,9.715977,0.087736561,1620000000000 ,1620000000000 ,1620000000000 ,1616812324510 -1616812324542 ,112.5730187,26.89129621,59.98023605,180.3053907,180.8265204,9.721037,0.087781889,1620000000000 ,1620000000000 ,1620000000000 ,1616812324520 -1616812324551 ,112.5730187,26.89129533,59.97880936,180.3083414,180.8304523,9.72579,0.087823499,1620000000000 ,1620000000000 ,1620000000000 ,1616812324530 -1616812324564 ,112.5730187,26.89129446,59.97739029,180.3122209,180.830303,9.730913,0.087870575,1620000000000 ,1620000000000 ,1620000000000 ,1616812324540 -1616812324573 ,112.5730187,26.89129358,59.97597885,180.315035,180.8250798,9.734669,0.087907913,1620000000000 ,1620000000000 ,1620000000000 ,1616812324550 -1616812324581 ,112.5730186,26.8912927,59.97458649,180.3167835,180.8326729,9.739336,0.0879477,1620000000000 ,1620000000000 ,1620000000000 ,1616812324560 -1616812324596 ,112.5730186,26.89129182,59.97320557,180.3182315,180.8406106,9.742834,0.087986066,1620000000000 ,1620000000000 ,1620000000000 ,1616812324570 -1616812324607 ,112.5730186,26.89129094,59.97183609,180.3192697,180.8476398,9.747013,0.088021987,1620000000000 ,1620000000000 ,1620000000000 ,1616812324580 -1616812324615 ,112.5730186,26.89129006,59.97049713,180.3189145,180.8518257,9.751815,0.088068189,1620000000000 ,1620000000000 ,1620000000000 ,1616812324590 -1616812324622 ,112.5730186,26.89128918,59.96916199,180.320062,180.8499162,9.757079,0.088114947,1620000000000 ,1620000000000 ,1620000000000 ,1616812324600 -1616812324632 ,112.5730186,26.89128829,59.96781921,180.32151,180.8575339,9.761932,0.088162048,1620000000000 ,1620000000000 ,1620000000000 ,1616812324610 -1616812324642 ,112.5730186,26.89128741,59.96646881,180.322193,180.8600155,9.766321,0.088204208,1620000000000 ,1620000000000 ,1620000000000 ,1616812324620 -1616812324651 ,112.5730186,26.89128653,59.9651413,180.3236956,180.8572349,9.769687,0.088235923,1620000000000 ,1620000000000 ,1620000000000 ,1616812324630 -1616812324661 ,112.5730185,26.89128565,59.96386719,180.3242421,180.8636437,9.773684,0.088275959,1620000000000 ,1620000000000 ,1620000000000 ,1616812324640 -1616812324672 ,112.5730185,26.89128476,59.96262741,180.3250344,180.8529697,9.777563,0.088313211,1620000000000 ,1620000000000 ,1620000000000 ,1616812324650 -1616812324681 ,112.5730185,26.89128388,59.96139526,180.3246245,180.8484058,9.78237,0.088358574,1620000000000 ,1620000000000 ,1620000000000 ,1616812324660 -1616812324691 ,112.5730185,26.891283,59.9601326,180.325854,180.8456172,9.788017,0.088406893,1620000000000 ,1620000000000 ,1620000000000 ,1616812324670 -1616812324702 ,112.5730185,26.89128211,59.95885468,180.3259359,180.8521827,9.792025,0.088447693,1620000000000 ,1620000000000 ,1620000000000 ,1616812324680 -1616812324712 ,112.5730185,26.89128123,59.95759201,180.3263731,180.8469609,9.796435,0.088488722,1620000000000 ,1620000000000 ,1620000000000 ,1616812324690 -1616812324731 ,112.5730185,26.89128034,59.95635986,180.3276298,180.8380234,9.799437,0.08852284,1620000000000 ,1620000000000 ,1620000000000 ,1616812324700 -1616812324737 ,112.5730185,26.89127946,59.95512772,180.3276845,180.836084,9.804016,0.088561628,1620000000000 ,1620000000000 ,1620000000000 ,1616812324710 -1616812324743 ,112.5730184,26.89127857,59.95385361,180.330116,180.844056,9.808292,0.088601275,1620000000000 ,1620000000000 ,1620000000000 ,1616812324720 -1616812324754 ,112.5730184,26.89127769,59.95251465,180.3323563,180.8528553,9.814017,0.088645659,1620000000000 ,1620000000000 ,1620000000000 ,1616812324730 -1616812324762 ,112.5730184,26.8912768,59.95113373,180.3335038,180.8462692,9.821138,0.088712584,1620000000000 ,1620000000000 ,1620000000000 ,1616812324740 -1616812324771 ,112.5730184,26.89127591,59.9497261,180.3360993,180.8425832,9.822605,0.088736802,1620000000000 ,1620000000000 ,1620000000000 ,1616812324750 -1616812324783 ,112.5730184,26.89127502,59.94826508,180.336673,180.8494412,9.827086,0.088764195,1620000000000 ,1620000000000 ,1620000000000 ,1616812324760 -1616812324803 ,112.5730184,26.89127414,59.94670868,180.3387221,180.86338,9.83056,0.088796167,1620000000000 ,1620000000000 ,1620000000000 ,1616812324770 -1616812324805 ,112.5730184,26.89127325,59.94504166,180.3407165,180.8687092,9.834481,0.088825574,1620000000000 ,1620000000000 ,1620000000000 ,1616812324780 -1616812324815 ,112.5730183,26.89127236,59.94329834,180.3405525,180.8625073,9.840166,0.088872129,1620000000000 ,1620000000000 ,1620000000000 ,1616812324790 -1616812324822 ,112.5730183,26.89127147,59.94150925,180.339651,180.8589312,9.845846,0.088918467,1620000000000 ,1620000000000 ,1620000000000 ,1616812324800 -1616812324834 ,112.5730183,26.89127058,59.93965149,180.3399242,180.8563654,9.851734,0.088967975,1620000000000 ,1620000000000 ,1620000000000 ,1616812324810 -1616812324843 ,112.5730183,26.89126969,59.93773651,180.3406345,180.8577069,9.85634,0.089012348,1620000000000 ,1620000000000 ,1620000000000 ,1616812324820 -1616812324852 ,112.5730183,26.8912688,59.93577957,180.3399515,180.859343,9.860246,0.089047556,1620000000000 ,1620000000000 ,1620000000000 ,1616812324830 -1616812324862 ,112.5730183,26.89126791,59.93375778,180.3405252,180.843458,9.863966,0.089078327,1620000000000 ,1620000000000 ,1620000000000 ,1616812324840 -1616812324873 ,112.5730183,26.89126702,59.93166733,180.3409077,180.8222481,9.868217,0.089110788,1620000000000 ,1620000000000 ,1620000000000 ,1616812324860 -1616812324883 ,112.5730183,26.89126613,59.92951202,180.3407984,180.8099582,9.872203,0.089142756,1620000000000 ,1620000000000 ,1620000000000 ,1616812324870 -1616812324894 ,112.5730182,26.89126524,59.92732239,180.3415361,180.8095451,9.87622,0.089178186,1620000000000 ,1620000000000 ,1620000000000 ,1616812324880 -1616812324903 ,112.5730182,26.89126434,59.92510605,180.3442135,180.8104474,9.881049,0.089219669,1620000000000 ,1620000000000 ,1620000000000 ,1616812324880 -1616812324916 ,112.5730182,26.89126345,59.92286301,180.3476286,180.809353,9.885421,0.089257707,1620000000000 ,1620000000000 ,1620000000000 ,1616812324900 -1616812324924 ,112.5730182,26.89126256,59.92059708,180.3493225,180.800995,9.890593,0.089299725,1620000000000 ,1620000000000 ,1620000000000 ,1616812324910 -1616812324934 ,112.5730182,26.89126166,59.91827011,180.3486122,180.7899269,9.893415,0.089326501,1620000000000 ,1620000000000 ,1620000000000 ,1616812324920 -1616812324944 ,112.5730182,26.89126077,59.91589737,180.3498689,180.7948478,9.897006,0.089353237,1620000000000 ,1620000000000 ,1620000000000 ,1616812324930 -1616812324955 ,112.5730182,26.89125898,59.91112137,180.3539944,180.794287,9.9032545,0.178789276,1620000000000 ,1620000000000 ,1620000000000 ,1616812324940 -1616812324965 ,112.5730181,26.89125809,59.90874481,180.3556882,180.7944174,9.90732,0.089444478,1620000000000 ,1620000000000 ,1620000000000 ,1616812324950 -1616812324984 ,112.5730181,26.89125719,59.90634537,180.3584476,180.8011151,9.911189,0.089478644,1620000000000 ,1620000000000 ,1620000000000 ,1616812324960 -1616812324988 ,112.5730181,26.8912563,59.90390778,180.3595405,180.8062922,9.914676,0.08950735,1620000000000 ,1620000000000 ,1620000000000 ,1616812324970 -1616812324994 ,112.5730181,26.8912554,59.90145493,180.3604147,180.8082404,9.918509,0.089539539,1620000000000 ,1620000000000 ,1620000000000 ,1616812324980 -1616812325004 ,112.5730181,26.8912554,59.90145493,180.3604147,-400,9.918509,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812324980 -1616812325014 ,112.5730181,26.89125361,59.8965683,180.3604421,180.8065581,9.925897,0.179163538,1620000000000 ,1620000000000 ,1620000000000 ,1616812325000 -1616812325024 ,112.5730181,26.89125272,59.89405441,180.3628463,180.8196136,9.931339,0.089656683,1620000000000 ,1620000000000 ,1620000000000 ,1616812325010 -1616812325034 ,112.5730181,26.89125182,59.89145279,180.3632561,180.8231985,9.93284,0.089654602,1620000000000 ,1620000000000 ,1620000000000 ,1616812325020 -1616812325045 ,112.573018,26.89125092,59.88887024,180.3615076,180.8177241,9.937946,0.089707212,1620000000000 ,1620000000000 ,1620000000000 ,1616812325030 -1616812325054 ,112.573018,26.89125003,59.88641357,180.3613983,180.8314728,9.939543,0.089726194,1620000000000 ,1620000000000 ,1620000000000 ,1616812325040 -1616812325065 ,112.573018,26.89124913,59.88405991,180.361972,180.8271154,9.943448,0.089765998,1620000000000 ,1620000000000 ,1620000000000 ,1616812325050 -1616812325076 ,112.573018,26.89124823,59.88177872,180.3629829,180.8309338,9.939608,0.089750492,1620000000000 ,1620000000000 ,1620000000000 ,1616812325060 -1616812325085 ,112.573018,26.89124733,59.87957764,180.3639391,180.8350274,9.941009,0.089755289,1620000000000 ,1620000000000 ,1620000000000 ,1616812325070 -1616812325095 ,112.573018,26.89124643,59.87739944,180.3648407,180.8258044,9.947301,0.089803681,1620000000000 ,1620000000000 ,1620000000000 ,1616812325080 -1616812325105 ,112.573018,26.89124643,59.87739944,180.3648407,-400,9.947301,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812325090 -1616812325115 ,112.5730179,26.89124464,59.87289047,180.3654144,180.8479312,9.95866,0.179758717,1620000000000 ,1620000000000 ,1620000000000 ,1616812325100 -1616812325129 ,112.5730179,26.89124374,59.87066269,180.3644309,180.8740947,9.95841,0.089916088,1620000000000 ,1620000000000 ,1620000000000 ,1616812325110 -1616812325136 ,112.5730179,26.89124284,59.86860275,180.3632015,180.8705375,9.956762,0.089911109,1620000000000 ,1620000000000 ,1620000000000 ,1616812325120 -1616812325146 ,112.5730179,26.89124194,59.8666954,180.3641577,180.8590383,9.957364,0.089914399,1620000000000 ,1620000000000 ,1620000000000 ,1616812325130 -1616812325157 ,112.5730179,26.89124104,59.86484909,180.3648953,180.8497935,9.959939,0.089937,1620000000000 ,1620000000000 ,1620000000000 ,1616812325140 -1616812325166 ,112.5730179,26.89124014,59.86296844,180.3660428,180.8565794,9.9645195,0.089972007,1620000000000 ,1620000000000 ,1620000000000 ,1616812325150 -1616812325176 ,112.5730179,26.89123924,59.86104202,180.3644309,180.8726623,9.969269,0.090014302,1620000000000 ,1620000000000 ,1620000000000 ,1616812325160 -1616812325188 ,112.5730179,26.89123834,59.85914993,180.3640211,180.8723514,9.972151,0.090046567,1620000000000 ,1620000000000 ,1620000000000 ,1616812325170 -1616812325197 ,112.5730178,26.89123744,59.85735321,180.3647587,180.8575497,9.973642,0.090066283,1620000000000 ,1620000000000 ,1620000000000 ,1616812325180 -1616812325206 ,112.5730178,26.89123744,59.85735321,180.3647587,-400,9.973642,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812325190 -1616812325217 ,112.5730178,26.89123564,59.85415649,180.3707147,180.8951894,9.997538,0.180452973,1620000000000 ,1620000000000 ,1620000000000 ,1616812325200 -1616812325229 ,112.5730178,26.89123473,59.85293198,180.3708513,181.1095999,9.99925,0.090816241,1620000000000 ,1620000000000 ,1620000000000 ,1616812325210 -1616812325236 ,112.5730178,26.89123382,59.85171127,180.3716709,181.1077975,10.001993,0.090838507,1620000000000 ,1620000000000 ,1620000000000 ,1616812325220 -1616812325246 ,112.5730178,26.89123291,59.8504982,180.3724086,181.1100876,10.005649,0.090869058,1620000000000 ,1620000000000 ,1620000000000 ,1616812325230 -1616812325256 ,112.5730177,26.891232,59.84931564,180.3703868,181.1181924,10.008948,0.090903033,1620000000000 ,1620000000000 ,1620000000000 ,1616812325240 -1616812325267 ,112.5730177,26.89123109,59.84817505,180.3709606,181.122376,10.010875,0.090925685,1620000000000 ,1620000000000 ,1620000000000 ,1616812325250 -1616812325276 ,112.5730177,26.89123018,59.84708786,180.3709879,181.121983,10.011231,0.090938222,1620000000000 ,1620000000000 ,1620000000000 ,1616812325260 -1616812325286 ,112.5730177,26.89122928,59.84601593,180.3707147,181.1237221,10.013427,0.090949821,1620000000000 ,1620000000000 ,1620000000000 ,1616812325270 -1616812325297 ,112.5730177,26.89122837,59.84492493,180.3711245,181.130229,10.01614,0.090975977,1620000000000 ,1620000000000 ,1620000000000 ,1616812325280 -1616812325309 ,112.5730177,26.89122746,59.8437767,180.3704961,181.1361212,10.019926,0.091004342,1620000000000 ,1620000000000 ,1620000000000 ,1616812325290 -1616812325317 ,112.5730176,26.89122655,59.84259415,180.3715616,181.1418383,10.022831,0.091032178,1620000000000 ,1620000000000 ,1620000000000 ,1616812325300 -1616812325328 ,112.5730176,26.89122564,59.8413887,180.3709332,181.1408107,10.025573,0.091057136,1620000000000 ,1620000000000 ,1620000000000 ,1616812325310 -1616812325337 ,112.5730176,26.89122472,59.84019089,180.372791,181.1490589,10.02689,0.091073054,1620000000000 ,1620000000000 ,1620000000000 ,1616812325320 -1616812325348 ,112.5730176,26.89122381,59.83898544,180.3716709,181.149226,10.029606,0.09109155,1620000000000 ,1620000000000 ,1620000000000 ,1616812325330 -1616812325358 ,112.5730176,26.8912229,59.83778381,180.3704415,181.1419807,10.030882,0.091109027,1620000000000 ,1620000000000 ,1620000000000 ,1616812325340 -1616812325368 ,112.5730175,26.89122199,59.836586,180.3680372,181.135235,10.033514,0.091130313,1620000000000 ,1620000000000 ,1620000000000 ,1616812325350 -1616812325377 ,112.5730175,26.89122108,59.8353653,180.3682831,181.1311869,10.0358305,0.091149381,1620000000000 ,1620000000000 ,1620000000000 ,1616812325360 -1616812325390 ,112.5730175,26.89122017,59.83411407,180.3683378,181.129397,10.038613,0.091171249,1620000000000 ,1620000000000 ,1620000000000 ,1616812325370 -1616812325401 ,112.5730175,26.89121926,59.83283997,180.3681192,181.1170127,10.040675,0.091192283,1620000000000 ,1620000000000 ,1620000000000 ,1616812325380 -1616812325409 ,112.5730175,26.89121835,59.83156586,180.3662341,181.1106972,10.042673,0.09120797,1620000000000 ,1620000000000 ,1620000000000 ,1616812325390 -1616812325418 ,112.5730175,26.89121743,59.83029938,180.3661248,181.1061326,10.04546,0.091233381,1620000000000 ,1620000000000 ,1620000000000 ,1616812325400 -1616812325428 ,112.5730174,26.89121652,59.8290329,180.3663433,181.108513,10.047122,0.091251695,1620000000000 ,1620000000000 ,1620000000000 ,1616812325410 -1616812325437 ,112.5730174,26.89121561,59.8277626,180.3687476,181.1101665,10.0494795,0.091267991,1620000000000 ,1620000000000 ,1620000000000 ,1616812325420 -1616812325448 ,112.5730174,26.8912147,59.82648087,180.3672449,181.0985206,10.051171,0.091286729,1620000000000 ,1620000000000 ,1620000000000 ,1616812325430 -1616812325458 ,112.5730174,26.89121378,59.82517242,180.3679279,181.0916111,10.053641,0.091302557,1620000000000 ,1620000000000 ,1620000000000 ,1616812325440 -1616812325468 ,112.5730174,26.89121287,59.82365036,180.3674635,181.0018304,10.056561,0.091075265,1620000000000 ,1620000000000 ,1620000000000 ,1616812325450 -1616812325478 ,112.5730174,26.89121196,59.82190704,180.3666166,180.9239987,10.059151,0.090841539,1620000000000 ,1620000000000 ,1620000000000 ,1616812325460 -1616812325490 ,112.5730173,26.89121106,59.8201561,180.3668624,180.9307188,10.062659,0.090871941,1620000000000 ,1620000000000 ,1620000000000 ,1616812325470 -1616812325499 ,112.5730173,26.89121015,59.81842422,180.3671903,180.925305,10.064597,0.090893,1620000000000 ,1620000000000 ,1620000000000 ,1616812325480 -1616812325509 ,112.5730173,26.89120924,59.81671906,180.3661521,180.9179671,10.066608,0.090913697,1620000000000 ,1620000000000 ,1620000000000 ,1616812325490 -1616812325519 ,112.5730173,26.89120833,59.81497192,180.3656603,180.9146378,10.069378,0.090932303,1620000000000 ,1620000000000 ,1620000000000 ,1616812325500 -1616812325532 ,112.5730173,26.89120742,59.8131485,180.3650046,180.9342304,10.072456,0.090956427,1620000000000 ,1620000000000 ,1620000000000 ,1616812325510 -1616812325540 ,112.5730173,26.89120651,59.81126785,180.3659882,180.9496726,10.075003,0.090977257,1620000000000 ,1620000000000 ,1620000000000 ,1616812325520 -1616812325551 ,112.5730172,26.8912056,59.80942154,180.36342,180.9430226,10.076981,0.091000082,1620000000000 ,1620000000000 ,1620000000000 ,1616812325530 -1616812325558 ,112.5730172,26.89120469,59.80766296,180.3613163,180.9318073,10.078014,0.091014493,1620000000000 ,1620000000000 ,1620000000000 ,1616812325540 -1616812325569 ,112.5730172,26.89120378,59.80596161,180.3594312,180.9220239,10.078752,0.091025488,1620000000000 ,1620000000000 ,1620000000000 ,1616812325550 -1616812325581 ,112.5730172,26.89120287,59.8042717,180.3585296,180.9228478,10.0803385,0.091039082,1620000000000 ,1620000000000 ,1620000000000 ,1616812325560 -1616812325590 ,112.5730172,26.89120196,59.80255508,180.3563439,180.926415,10.083211,0.091059214,1620000000000 ,1620000000000 ,1620000000000 ,1616812325570 -1616812325600 ,112.5730172,26.89120105,59.80084991,180.3573275,180.9143894,10.084648,0.091078914,1620000000000 ,1620000000000 ,1620000000000 ,1616812325580 -1616812325609 ,112.5730172,26.89120014,59.79919815,180.3552784,180.8950457,10.084551,0.091084561,1620000000000 ,1620000000000 ,1620000000000 ,1616812325590 -1616812325620 ,112.5730171,26.89119923,59.79761124,180.3569177,180.8789197,10.083641,0.091083221,1620000000000 ,1620000000000 ,1620000000000 ,1616812325600 -1616812325635 ,112.5730171,26.89119832,59.79605865,180.3556609,180.8727692,10.082741,0.091074121,1620000000000 ,1620000000000 ,1620000000000 ,1616812325610 -1616812325640 ,112.5730171,26.8911974,59.79451752,180.35771,180.8692715,10.083461,0.091076646,1620000000000 ,1620000000000 ,1620000000000 ,1616812325620 -1616812325650 ,112.5730171,26.89119649,59.79298019,180.3615622,180.8720728,10.08482,0.091090171,1620000000000 ,1620000000000 ,1620000000000 ,1616812325630 -1616812325662 ,112.5730171,26.89119558,59.79145813,180.364185,180.8661448,10.085475,0.091100522,1620000000000 ,1620000000000 ,1620000000000 ,1616812325640 -1616812325677 ,112.5730171,26.89119467,59.78995132,180.363502,180.857475,10.085572,0.09110406,1620000000000 ,1620000000000 ,1620000000000 ,1616812325650 -1616812325681 ,112.5730171,26.89119376,59.78845978,180.3646495,180.8587768,10.086351,0.091110652,1620000000000 ,1620000000000 ,1620000000000 ,1616812325660 -1616812325690 ,112.5730171,26.89119285,59.78698349,180.3638025,180.8678422,10.08773,0.091121634,1620000000000 ,1620000000000 ,1620000000000 ,1616812325670 -1616812325700 ,112.573017,26.89119194,59.78549576,180.3655784,180.877357,10.089667,0.091140384,1620000000000 ,1620000000000 ,1620000000000 ,1616812325680 -1616812325714 ,112.573017,26.89119103,59.78398895,180.365633,180.884249,10.090729,0.091152014,1620000000000 ,1620000000000 ,1620000000000 ,1616812325690 -1616812325721 ,112.573017,26.89119012,59.78248215,180.3649773,180.8856346,10.091182,0.091158456,1620000000000 ,1620000000000 ,1620000000000 ,1616812325700 -1616812325732 ,112.573017,26.8911892,59.7810173,180.3630375,180.8928569,10.091339,0.091163749,1620000000000 ,1620000000000 ,1620000000000 ,1616812325710 -1616812325740 ,112.573017,26.89118829,59.7795639,180.3617808,180.9020969,10.091058,0.09115966,1620000000000 ,1620000000000 ,1620000000000 ,1616812325720 -1616812325751 ,112.573017,26.89118738,59.77810287,180.3617261,180.9010238,10.092612,0.091172519,1620000000000 ,1620000000000 ,1620000000000 ,1616812325730 -1616812325763 ,112.573017,26.89118647,59.77659988,180.3616715,180.8892936,10.097046,0.091205513,1620000000000 ,1620000000000 ,1620000000000 ,1616812325740 -1616812325772 ,112.5730169,26.89118556,59.7750473,180.3621906,180.9022606,10.100015,0.0912387,1620000000000 ,1620000000000 ,1620000000000 ,1616812325750 -1616812325781 ,112.5730169,26.89118464,59.77344131,180.3619447,180.9109699,10.096727,0.091216613,1620000000000 ,1620000000000 ,1620000000000 ,1616812325760 -1616812325791 ,112.5730169,26.89118373,59.77179718,180.3632015,180.9175872,10.093337,0.091185166,1620000000000 ,1620000000000 ,1620000000000 ,1616812325770 -1616812325802 ,112.5730169,26.89118282,59.77014542,180.365551,180.9123866,10.091568,0.09116744,1620000000000 ,1620000000000 ,1620000000000 ,1616812325780 -1616812325813 ,112.5730169,26.89118191,59.76846695,180.3659609,180.8872224,10.091338,0.091160793,1620000000000 ,1620000000000 ,1620000000000 ,1616812325790 -1616812325821 ,112.5730169,26.891181,59.76671982,180.3670264,180.8846066,10.093004,0.091167178,1620000000000 ,1620000000000 ,1620000000000 ,1616812325800 -1616812325833 ,112.5730169,26.89118009,59.76489258,180.367846,180.9018241,10.096003,0.091187865,1620000000000 ,1620000000000 ,1620000000000 ,1616812325810 -1616812325843 ,112.5730168,26.89117917,59.76300049,180.3675728,180.9001628,10.099499,0.091215665,1620000000000 ,1620000000000 ,1620000000000 ,1616812325820 -1616812325855 ,112.5730168,26.89117826,59.76111603,180.3663707,180.9024096,10.099593,0.091227157,1620000000000 ,1620000000000 ,1620000000000 ,1616812325830 -1616812325863 ,112.5730168,26.89117735,59.75924301,180.3644309,180.9003373,10.097951,0.091217346,1620000000000 ,1620000000000 ,1620000000000 ,1616812325840 -1616812325874 ,112.5730168,26.89117644,59.75733185,180.3605513,180.8877586,10.094925,0.091189025,1620000000000 ,1620000000000 ,1620000000000 ,1616812325850 -1616812325882 ,112.5730168,26.89117553,59.75533295,180.3602781,180.879074,10.0933895,0.091164679,1620000000000 ,1620000000000 ,1620000000000 ,1616812325860 -1616812325892 ,112.5730168,26.89117462,59.75324249,180.3595678,180.8747031,10.093678,0.091160056,1620000000000 ,1620000000000 ,1620000000000 ,1616812325870 -1616812325902 ,112.5730168,26.8911737,59.75108719,180.3622726,180.8638571,10.095761,0.091171812,1620000000000 ,1620000000000 ,1620000000000 ,1616812325880 -1616812325913 ,112.5730167,26.89117279,59.74892044,180.3636659,180.8487887,10.09693,0.091181872,1620000000000 ,1620000000000 ,1620000000000 ,1616812325890 -1616812325922 ,112.5730167,26.89117188,59.74675369,180.3656057,180.8476282,10.098464,0.09119287,1620000000000 ,1620000000000 ,1620000000000 ,1616812325900 -1616812325934 ,112.5730167,26.89117097,59.74458694,180.3649773,180.8622666,10.099298,0.091205317,1620000000000 ,1620000000000 ,1620000000000 ,1616812325910 -1616812325945 ,112.5730167,26.89117006,59.74239731,180.3650866,180.8732554,10.099431,0.091202352,1620000000000 ,1620000000000 ,1620000000000 ,1616812325920 -1616812325955 ,112.5730167,26.89116914,59.74021912,180.3635839,180.8779624,10.098211,0.091196159,1620000000000 ,1620000000000 ,1620000000000 ,1616812325930 -1616812325964 ,112.5730167,26.89116823,59.73809814,180.3615622,180.8699754,10.09491,0.091173108,1620000000000 ,1620000000000 ,1620000000000 ,1616812325940 -1616812325973 ,112.5730167,26.89116732,59.73605347,180.3602781,180.8626042,10.093195,0.091155561,1620000000000 ,1620000000000 ,1620000000000 ,1616812325960 -1616812326001 ,112.5730166,26.89116641,59.73403931,180.3586389,180.8682664,10.092763,0.091149802,1620000000000 ,1620000000000 ,1620000000000 ,1616812325970 -1616812326007 ,112.5730166,26.8911655,59.7320137,180.3582837,180.8847873,10.09281,0.091147364,1620000000000 ,1620000000000 ,1620000000000 ,1616812325980 -1616812326012 ,112.5730166,26.89116459,59.72996902,180.3578739,180.9064945,10.093868,0.091154197,1620000000000 ,1620000000000 ,1620000000000 ,1616812325980 -1616812326018 ,112.5730166,26.89116276,59.72576141,180.3577373,180.9167613,10.095324,0.1822884,1620000000000 ,1620000000000 ,1620000000000 ,1616812326000 -1616812326026 ,112.5730166,26.89116276,59.72576141,180.3577373,-400,10.095324,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812326010 -1616812326036 ,112.5730166,26.89116094,59.72090149,180.3596498,180.9388668,10.094236,0.18228083,1620000000000 ,1620000000000 ,1620000000000 ,1616812326020 -1616812326044 ,112.5730165,26.89116003,59.71828461,180.3541856,180.9475752,10.095257,0.091131261,1620000000000 ,1620000000000 ,1620000000000 ,1616812326030 -1616812326054 ,112.5730165,26.89115912,59.71581268,180.3488034,180.9601824,10.0947485,0.091130873,1620000000000 ,1620000000000 ,1620000000000 ,1616812326040 -1616812326065 ,112.5730165,26.89115912,59.71581268,180.3488034,-400,10.0947485,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812326040 -1616812326075 ,112.5730165,26.8911573,59.71121216,180.3452244,180.9599418,10.08509,0.18221574,1620000000000 ,1620000000000 ,1620000000000 ,1616812326060 -1616812326089 ,112.5730165,26.89115639,59.70907593,180.343913,180.959917,10.079728,0.091013477,1620000000000 ,1620000000000 ,1620000000000 ,1616812326070 -1616812326095 ,112.5730165,26.89115548,59.70700836,180.3469729,180.9226252,10.082345,0.091022838,1620000000000 ,1620000000000 ,1620000000000 ,1616812326080 -1616812326105 ,112.5730165,26.89115548,59.70700836,180.3469729,-400,10.082345,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812326090 -1616812326115 ,112.5730164,26.89115366,59.70256424,180.3486668,180.923354,10.096011,0.182222715,1620000000000 ,1620000000000 ,1620000000000 ,1616812326100 -1616812326125 ,112.5730164,26.89115275,59.70031738,180.3460167,180.979235,10.090513,0.091111724,1620000000000 ,1620000000000 ,1620000000000 ,1616812326110 -1616812326136 ,112.5730164,26.89115183,59.69832611,180.3451424,180.9788232,10.081799,0.091045064,1620000000000 ,1620000000000 ,1620000000000 ,1616812326120 -1616812326145 ,112.5730164,26.89115092,59.69656372,180.3447053,180.9589434,10.078235,0.091008394,1620000000000 ,1620000000000 ,1620000000000 ,1616812326130 -1616812326155 ,112.5730164,26.89115001,59.69493484,180.3419186,180.9446495,10.078613,0.091009645,1620000000000 ,1620000000000 ,1620000000000 ,1616812326140 -1616812326165 ,112.5730164,26.8911491,59.69332886,180.3433119,180.9538943,10.079368,0.091013917,1620000000000 ,1620000000000 ,1620000000000 ,1616812326150 -1616812326176 ,112.5730163,26.89114819,59.69171143,180.3435305,180.9490065,10.079736,0.091018882,1620000000000 ,1620000000000 ,1620000000000 ,1616812326160 -1616812326186 ,112.5730163,26.89114728,59.6901207,180.3455522,180.946879,10.079432,0.091018619,1620000000000 ,1620000000000 ,1620000000000 ,1616812326170 -1616812326199 ,112.5730163,26.89114637,59.68868637,180.3443775,180.9438838,10.077037,0.091006694,1620000000000 ,1620000000000 ,1620000000000 ,1616812326180 -1616812326206 ,112.5730163,26.89114546,59.68745804,180.3445687,180.931416,10.074994,0.090994413,1620000000000 ,1620000000000 ,1620000000000 ,1616812326190 -1616812326216 ,112.5730163,26.89114456,59.68634415,180.3426289,180.7977614,10.074202,0.090935662,1620000000000 ,1620000000000 ,1620000000000 ,1616812326200 -1616812326226 ,112.5730163,26.89114365,59.68519592,180.341782,180.6328522,10.077096,0.090891665,1620000000000 ,1620000000000 ,1620000000000 ,1616812326210 -1616812326237 ,112.5730163,26.89114274,59.68408966,180.3464812,180.6476497,10.077543,0.090901663,1620000000000 ,1620000000000 ,1620000000000 ,1616812326220 -1616812326246 ,112.5730163,26.89114183,59.6830864,180.349022,180.6517995,10.076989,0.090904326,1620000000000 ,1620000000000 ,1620000000000 ,1616812326230 -1616812326259 ,112.5730162,26.89114092,59.68220139,180.3513442,180.6506167,10.080889,0.090934428,1620000000000 ,1620000000000 ,1620000000000 ,1616812326240 -1616812326276 ,112.5730162,26.89114001,59.68140411,180.3550052,180.6825232,10.078388,0.090939128,1620000000000 ,1620000000000 ,1620000000000 ,1616812326250 -1616812326283 ,112.5730162,26.8911391,59.6806488,180.3607972,180.7255159,10.069284,0.090868504,1620000000000 ,1620000000000 ,1620000000000 ,1616812326260 -1616812326290 ,112.5730162,26.89113819,59.67991638,180.3646221,180.742186,10.061258,0.090799548,1620000000000 ,1620000000000 ,1620000000000 ,1616812326270 -1616812326296 ,112.5730162,26.89113729,59.67924118,180.3682831,180.766263,10.056574,0.09075613,1620000000000 ,1620000000000 ,1620000000000 ,1616812326280 -1616812326306 ,112.5730162,26.89113638,59.67856598,180.3707147,180.8081352,10.058364,0.090755234,1620000000000 ,1620000000000 ,1620000000000 ,1616812326290 -1616812326317 ,112.5730162,26.89113547,59.67786789,180.370059,180.8561148,10.0630245,0.090796071,1620000000000 ,1620000000000 ,1620000000000 ,1616812326300 -1616812326327 ,112.5730162,26.89113456,59.67718887,180.3704961,180.8886409,10.066516,0.09083304,1620000000000 ,1620000000000 ,1620000000000 ,1616812326310 -1616812326337 ,112.5730161,26.89113365,59.67658615,180.3658516,180.8912739,10.068353,0.090859361,1620000000000 ,1620000000000 ,1620000000000 ,1616812326320 -1616812326347 ,112.5730161,26.89113275,59.67604828,180.359841,180.8901896,10.069777,0.09087974,1620000000000 ,1620000000000 ,1620000000000 ,1616812326330 -1616812326356 ,112.5730161,26.89113184,59.67547607,180.3559615,180.8742397,10.067852,0.090871215,1620000000000 ,1620000000000 ,1620000000000 ,1616812326340 -1616812326367 ,112.5730161,26.89113093,59.67481613,180.3526556,180.8617856,10.063871,0.09083841,1620000000000 ,1620000000000 ,1620000000000 ,1616812326350 -1616812326377 ,112.5730161,26.89113002,59.6741066,180.3524917,180.8446114,10.062109,0.090814127,1620000000000 ,1620000000000 ,1620000000000 ,1616812326360 -1616812326389 ,112.5730161,26.89112911,59.67337418,180.3552511,180.8033526,10.061808,0.090808876,1620000000000 ,1620000000000 ,1620000000000 ,1616812326370 -1616812326396 ,112.5730161,26.8911282,59.67263031,180.3575461,180.7676957,10.063372,0.090817131,1620000000000 ,1620000000000 ,1620000000000 ,1616812326380 -1616812326407 ,112.5730161,26.8911273,59.67184067,180.3598137,180.7429851,10.067468,0.09084699,1620000000000 ,1620000000000 ,1620000000000 ,1616812326390 -1616812326418 ,112.573016,26.89112639,59.67098618,180.361289,180.7336864,10.071732,0.09088375,1620000000000 ,1620000000000 ,1620000000000 ,1616812326400 -1616812326429 ,112.573016,26.89112548,59.67009735,180.361972,180.7203737,10.073193,0.090902458,1620000000000 ,1620000000000 ,1620000000000 ,1616812326410 -1616812326438 ,112.573016,26.89112457,59.66921616,180.3601142,180.7000244,10.072352,0.090901626,1620000000000 ,1620000000000 ,1620000000000 ,1616812326420 -1616812326448 ,112.573016,26.89112366,59.66833496,180.359759,180.6773941,10.069177,0.090877125,1620000000000 ,1620000000000 ,1620000000000 ,1616812326430 -1616812326459 ,112.573016,26.89112275,59.66745377,180.3580105,180.6695093,10.06604,0.090848158,1620000000000 ,1620000000000 ,1620000000000 ,1616812326440 -1616812326469 ,112.573016,26.89112184,59.66658401,180.3586389,180.8091882,10.063501,0.090882271,1620000000000 ,1620000000000 ,1620000000000 ,1616812326450 -1616812326478 ,112.573016,26.89112093,59.66566467,180.3610158,180.9567342,10.06164,0.09092047,1620000000000 ,1620000000000 ,1620000000000 ,1616812326460 -1616812326488 ,112.573016,26.89112003,59.66455841,180.3648407,180.971875,10.065756,0.090929298,1620000000000 ,1620000000000 ,1620000000000 ,1616812326470 -1616812326499 ,112.5730159,26.89111912,59.66313171,180.3682558,180.989166,10.069375,0.090953325,1620000000000 ,1620000000000 ,1620000000000 ,1616812326480 -1616812326510 ,112.5730159,26.89111821,59.6613121,180.3679006,181.0151749,10.073603,0.090965835,1620000000000 ,1620000000000 ,1620000000000 ,1616812326490 -1616812326520 ,112.5730159,26.8911173,59.65903854,180.3631741,181.0255151,10.082578,0.091004473,1620000000000 ,1620000000000 ,1620000000000 ,1616812326500 -1616812326528 ,112.5730159,26.89111639,59.65629196,180.35771,181.0598568,10.0936165,0.091092911,1620000000000 ,1620000000000 ,1620000000000 ,1616812326510 -1616812326539 ,112.5730159,26.89111548,59.65317154,180.3496504,181.1565902,10.093519,0.091083664,1620000000000 ,1620000000000 ,1620000000000 ,1616812326520 -1616812326549 ,112.5730159,26.89111456,59.64997864,180.3459347,181.1595067,10.095423,0.091096518,1620000000000 ,1620000000000 ,1620000000000 ,1616812326530 -1616812326559 ,112.5730158,26.89111365,59.64692688,180.342547,181.1227489,10.088974,0.091061936,1620000000000 ,1620000000000 ,1620000000000 ,1616812326540 -1616812326569 ,112.5730158,26.89111274,59.64424896,180.3418913,181.0394876,10.078136,0.090989173,1620000000000 ,1620000000000 ,1620000000000 ,1616812326550 -1616812326578 ,112.5730158,26.89111184,59.64183044,180.3409077,181.028739,10.071277,0.090924002,1620000000000 ,1620000000000 ,1620000000000 ,1616812326560 -1616812326590 ,112.5730158,26.89111093,59.63944626,180.3416727,181.065114,10.0703125,0.090893416,1620000000000 ,1620000000000 ,1620000000000 ,1616812326570 -1616812326599 ,112.5730158,26.89111002,59.63690948,180.340334,181.0662729,10.078929,0.090946904,1620000000000 ,1620000000000 ,1620000000000 ,1616812326580 -1616812326609 ,112.5730157,26.89110911,59.63426208,180.3363998,181.074244,10.094616,0.091075842,1620000000000 ,1620000000000 ,1620000000000 ,1616812326590 -1616812326619 ,112.5730157,26.8911082,59.63169479,180.333859,181.0733743,10.097111,0.091128085,1620000000000 ,1620000000000 ,1620000000000 ,1616812326600 -1616812326629 ,112.5730157,26.89110728,59.62930298,180.3304165,181.0305223,10.089921,0.091090713,1620000000000 ,1620000000000 ,1620000000000 ,1616812326610 -1616812326639 ,112.5730157,26.89110637,59.62717438,180.32875,181.013127,10.077336,0.091001404,1620000000000 ,1620000000000 ,1620000000000 ,1616812326620 -1616812326650 ,112.5730157,26.89110547,59.62535858,180.3303892,181.0144176,10.066518,0.090898642,1620000000000 ,1620000000000 ,1620000000000 ,1616812326630 -1616812326663 ,112.5730157,26.89110456,59.62376785,180.3310449,181.0082826,10.064754,0.090873771,1620000000000 ,1620000000000 ,1620000000000 ,1616812326640 -1616812326669 ,112.5730157,26.89110365,59.62229156,180.3314274,180.9939743,10.068598,0.090899473,1620000000000 ,1620000000000 ,1620000000000 ,1616812326650 -1616812326680 ,112.5730156,26.89110274,59.62081528,180.3320285,180.9806542,10.075594,0.090956294,1620000000000 ,1620000000000 ,1620000000000 ,1616812326660 -1616812326691 ,112.5730156,26.89110183,59.61936188,180.3298975,180.9736073,10.078612,0.090997687,1620000000000 ,1620000000000 ,1620000000000 ,1616812326670 -1616812326701 ,112.5730156,26.89110092,59.61807251,180.3286407,180.9588024,10.077334,0.090997997,1620000000000 ,1620000000000 ,1620000000000 ,1616812326680 -1616812326714 ,112.5730156,26.89110001,59.61700439,180.3283675,180.9469118,10.075135,0.090989328,1620000000000 ,1620000000000 ,1620000000000 ,1616812326690 -1616812326721 ,112.5730156,26.8910991,59.61618423,180.3297608,180.9440485,10.069342,0.090955024,1620000000000 ,1620000000000 ,1620000000000 ,1616812326700 -1616812326732 ,112.5730156,26.89109819,59.61559677,180.3305805,180.9416478,10.064314,0.090915888,1620000000000 ,1620000000000 ,1620000000000 ,1616812326710 -1616812326744 ,112.5730155,26.89109728,59.61518097,180.3298975,180.9349824,10.060693,0.090886672,1620000000000 ,1620000000000 ,1620000000000 ,1616812326720 -1616812326751 ,112.5730155,26.89109637,59.61487198,180.3304985,180.9348167,10.062366,0.090893377,1620000000000 ,1620000000000 ,1620000000000 ,1616812326730 -1616812326762 ,112.5730155,26.89109546,59.61461639,180.3267829,180.9511511,10.065264,0.090922402,1620000000000 ,1620000000000 ,1620000000000 ,1616812326740 -1616812326775 ,112.5730155,26.89109456,59.61442566,180.3239688,180.9693766,10.063987,0.090927088,1620000000000 ,1620000000000 ,1620000000000 ,1616812326750 -1616812326782 ,112.5730155,26.89109365,59.61436081,180.3189692,180.975922,10.061621,0.090913951,1620000000000 ,1620000000000 ,1620000000000 ,1616812326760 -1616812326792 ,112.5730155,26.89109274,59.61444855,180.3151442,180.9777386,10.05813,0.090892625,1620000000000 ,1620000000000 ,1620000000000 ,1616812326770 -1616812326801 ,112.5730155,26.89109183,59.61461639,180.3093522,180.9855852,10.055936,0.090875037,1620000000000 ,1620000000000 ,1620000000000 ,1616812326780 -1616812326810 ,112.5730154,26.89109092,59.6147728,180.3039427,180.9931657,10.055932,0.090875005,1620000000000 ,1620000000000 ,1620000000000 ,1616812326790 -1616812326820 ,112.5730154,26.89109001,59.61487961,180.2980961,180.9927855,10.055265,0.090869042,1620000000000 ,1620000000000 ,1620000000000 ,1616812326800 -1616812326832 ,112.5730154,26.8910891,59.6149826,180.2905009,180.9827491,10.053684,0.090857961,1620000000000 ,1620000000000 ,1620000000000 ,1616812326810 -1616812326841 ,112.5730154,26.89108819,59.61509323,180.2839986,180.9680807,10.052363,0.090850711,1620000000000 ,1620000000000 ,1620000000000 ,1616812326820 -1616812326851 ,112.5730154,26.89108729,59.61518478,180.2763761,180.9521238,10.052878,0.090851239,1620000000000 ,1620000000000 ,1620000000000 ,1616812326830 -1616812326862 ,112.5730154,26.89108638,59.61524963,180.2697918,180.9468438,10.052595,0.090852158,1620000000000 ,1620000000000 ,1620000000000 ,1616812326840 -1616812326872 ,112.5730153,26.89108547,59.61530304,180.2630436,180.9415737,10.051464,0.090844782,1620000000000 ,1620000000000 ,1620000000000 ,1616812326850 -1616812326883 ,112.5730153,26.89108456,59.61532974,180.2559128,180.9317843,10.049211,0.090829465,1620000000000 ,1620000000000 ,1620000000000 ,1616812326860 -1616812326892 ,112.5730153,26.89108365,59.61529922,180.2493012,180.9210911,10.048425,0.09081684,1620000000000 ,1620000000000 ,1620000000000 ,1616812326870 -1616812326901 ,112.5730153,26.89108275,59.61517715,180.2421978,180.9175471,10.048276,0.090813945,1620000000000 ,1620000000000 ,1620000000000 ,1616812326880 -1616812326913 ,112.5730153,26.89108184,59.61493683,180.2354223,180.916963,10.0489235,0.09081442,1620000000000 ,1620000000000 ,1620000000000 ,1616812326890 -1616812326923 ,112.5730153,26.89108093,59.61459732,180.2290292,180.9100532,10.048933,0.09081316,1620000000000 ,1620000000000 ,1620000000000 ,1616812326900 -1616812326932 ,112.5730153,26.89108002,59.61416245,180.2211882,180.8999497,10.048351,0.090806504,1620000000000 ,1620000000000 ,1620000000000 ,1616812326910 -1616812326942 ,112.5730152,26.89107911,59.61366653,180.2139208,180.903189,10.047579,0.090796571,1620000000000 ,1620000000000 ,1620000000000 ,1616812326920 -1616812326952 ,112.5730152,26.89107821,59.61309433,180.2079649,180.9036877,10.048376,0.090798908,1620000000000 ,1620000000000 ,1620000000000 ,1616812326930 -1616812326964 ,112.5730152,26.8910773,59.61242294,180.1997687,180.8961738,10.048533,0.090800647,1620000000000 ,1620000000000 ,1620000000000 ,1616812326940 -1616812326973 ,112.5730152,26.89107639,59.61164856,180.1923921,180.8884146,10.047525,0.09079074,1620000000000 ,1620000000000 ,1620000000000 ,1616812326950 -1616812326983 ,112.5730152,26.89107548,59.61077118,180.1865181,180.878656,10.046458,0.090775183,1620000000000 ,1620000000000 ,1620000000000 ,1616812326960 -1616812326996 ,112.5730152,26.89107457,59.60976028,180.1804802,180.8729291,10.045087,0.09075746,1620000000000 ,1620000000000 ,1620000000000 ,1616812326970 -1616812327005 ,112.5730152,26.89107367,59.60860443,180.1732949,180.8696941,10.04267,0.090732509,1620000000000 ,1620000000000 ,1620000000000 ,1616812326980 -1616812327015 ,112.5730151,26.89107276,59.60734177,180.1653172,180.8716709,10.040149,0.090704804,1620000000000 ,1620000000000 ,1620000000000 ,1616812327000 -1616812327023 ,112.5730151,26.89107185,59.60600662,180.1584324,180.8635911,10.039896,0.090689235,1620000000000 ,1620000000000 ,1620000000000 ,1616812327000 -1616812327036 ,112.5730151,26.89107095,59.604599,180.1529409,180.8422192,10.038098,0.090682727,1620000000000 ,1620000000000 ,1620000000000 ,1616812327020 -1616812327048 ,112.5730151,26.89107004,59.60307693,180.1475587,180.8446008,10.041334,0.09068271,1620000000000 ,1620000000000 ,1620000000000 ,1616812327030 -1616812327055 ,112.5730151,26.89106913,59.60147476,180.1431328,180.8402869,10.040624,0.090688145,1620000000000 ,1620000000000 ,1620000000000 ,1616812327040 -1616812327065 ,112.5730151,26.89106823,59.59977722,180.1393079,180.8222878,10.040562,0.090679455,1620000000000 ,1620000000000 ,1620000000000 ,1616812327050 -1616812327073 ,112.5730151,26.89106641,59.59627914,180.1269862,180.8181646,10.036991,0.181326274,1620000000000 ,1620000000000 ,1620000000000 ,1616812327060 -1616812327084 ,112.5730151,26.89106641,59.59627914,180.1269862,-400,10.036991,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812327070 -1616812327094 ,112.573015,26.8910646,59.5928154,180.1167956,180.7998716,10.033341,0.181249349,1620000000000 ,1620000000000 ,1620000000000 ,1616812327080 -1616812327104 ,112.573015,26.8910646,59.5928154,180.1167956,-400,10.033341,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812327080 -1616812327114 ,112.573015,26.89106279,59.58931351,180.1061678,180.787728,10.032379,0.181213121,1620000000000 ,1620000000000 ,1620000000000 ,1616812327100 -1616812327123 ,112.573015,26.89106188,59.58753967,180.1010861,180.7863227,10.031965,0.090593426,1620000000000 ,1620000000000 ,1620000000000 ,1616812327110 -1616812327135 ,112.573015,26.89106098,59.58577347,180.0946111,180.7871793,10.03135,0.090590524,1620000000000 ,1620000000000 ,1620000000000 ,1616812327120 -1616812327153 ,112.573015,26.89106098,59.58577347,180.0946111,-400,10.03135,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812327130 -1616812327155 ,112.573015,26.89105917,59.58232498,180.0842292,180.7877565,10.0285845,0.181150634,1620000000000 ,1620000000000 ,1620000000000 ,1616812327140 -1616812327164 ,112.5730149,26.89105826,59.58065414,180.0793388,180.7759604,10.025832,0.090547088,1620000000000 ,1620000000000 ,1620000000000 ,1616812327150 -1616812327174 ,112.5730149,26.89105736,59.57902527,180.073137,180.7673973,10.023832,0.09052967,1620000000000 ,1620000000000 ,1620000000000 ,1616812327160 -1616812327184 ,112.5730149,26.89105645,59.57744217,180.0676728,180.7610345,10.021972,0.090514683,1620000000000 ,1620000000000 ,1620000000000 ,1616812327170 -1616812327195 ,112.5730149,26.89105555,59.57588577,180.0626731,180.7551444,10.020211,0.090500161,1620000000000 ,1620000000000 ,1620000000000 ,1616812327180 -1616812327206 ,112.5730149,26.89105555,59.57588577,180.0626731,-400,10.020211,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812327190 -1616812327214 ,112.5730149,26.89105374,59.57338715,180.0594493,180.5581161,10.008169,0.18081809,1620000000000 ,1620000000000 ,1620000000000 ,1616812327200 -1616812327225 ,112.5730149,26.89105284,59.57338333,180.0549414,179.719295,10.005867,0.090128807,1620000000000 ,1620000000000 ,1620000000000 ,1616812327210 -1616812327240 ,112.5730149,26.89105194,59.5734024,180.047838,179.7076976,10.002679,0.090102533,1620000000000 ,1620000000000 ,1620000000000 ,1616812327220 -1616812327247 ,112.5730149,26.89105103,59.57349396,180.0426743,179.7096434,10.000467,0.090083786,1620000000000 ,1620000000000 ,1620000000000 ,1616812327230 -1616812327255 ,112.5730149,26.89105013,59.57368088,180.0368277,179.7142755,9.998081,0.090066051,1620000000000 ,1620000000000 ,1620000000000 ,1616812327240 -1616812327265 ,112.5730149,26.89104923,59.57392883,180.0333306,179.7134458,9.994622,0.090040261,1620000000000 ,1620000000000 ,1620000000000 ,1616812327250 -1616812327276 ,112.5730149,26.89104833,59.57423782,180.0271015,179.7133405,9.991147,0.09001117,1620000000000 ,1620000000000 ,1620000000000 ,1616812327260 -1616812327286 ,112.5730149,26.89104743,59.57459641,180.0230034,179.7050205,9.989569,0.089992821,1620000000000 ,1620000000000 ,1620000000000 ,1616812327270 -1616812327295 ,112.5730149,26.89104653,59.57499695,180.0178671,179.7040192,9.9886675,0.08998519,1620000000000 ,1620000000000 ,1620000000000 ,1616812327280 -1616812327306 ,112.5730149,26.89104563,59.57540894,180.0140695,179.7059174,9.987325,0.089974607,1620000000000 ,1620000000000 ,1620000000000 ,1616812327290 -1616812327316 ,112.5730149,26.89104473,59.57583237,180.0091518,179.7081885,9.985128,0.089958329,1620000000000 ,1620000000000 ,1620000000000 ,1616812327300 -1616812327326 ,112.5730149,26.89104384,59.57632828,180.0039608,179.7098648,9.9810095,0.08992773,1620000000000 ,1620000000000 ,1620000000000 ,1616812327310 -1616812327338 ,112.5730149,26.89104294,59.5769043,179.998524,179.7013077,9.976829,0.089892609,1620000000000 ,1620000000000 ,1620000000000 ,1616812327320 -1616812327348 ,112.5730149,26.89104204,59.57751465,179.9929506,179.6944534,9.974219,0.089866708,1620000000000 ,1620000000000 ,1620000000000 ,1616812327330 -1616812327356 ,112.573015,26.89104114,59.57809067,179.9869673,179.6914295,9.9721985,0.089843362,1620000000000 ,1620000000000 ,1620000000000 ,1616812327340 -1616812327370 ,112.573015,26.89104024,59.57861328,179.9817217,179.7036604,9.971556,0.089835842,1620000000000 ,1620000000000 ,1620000000000 ,1616812327350 -1616812327376 ,112.573015,26.89103934,59.57912064,179.9758751,179.6999452,9.968934,0.089814394,1620000000000 ,1620000000000 ,1620000000000 ,1616812327360 -1616812327387 ,112.573015,26.89103844,59.57965851,179.9706568,179.6919659,9.966568,0.089793619,1620000000000 ,1620000000000 ,1620000000000 ,1616812327370 -1616812327396 ,112.573015,26.89103755,59.58024597,179.9658484,179.6818306,9.963491,0.089769253,1620000000000 ,1620000000000 ,1620000000000 ,1616812327380 -1616812327406 ,112.573015,26.89103665,59.58085251,179.9626792,179.6796545,9.961452,0.089749386,1620000000000 ,1620000000000 ,1620000000000 ,1616812327390 -1616812327418 ,112.573015,26.89103575,59.58145523,179.9583898,179.6820161,9.959862,0.089733797,1620000000000 ,1620000000000 ,1620000000000 ,1616812327400 -1616812327427 ,112.573015,26.89103486,59.58204651,179.9537999,179.6775435,9.957173,0.0897108,1620000000000 ,1620000000000 ,1620000000000 ,1616812327410 -1616812327437 ,112.573015,26.89103396,59.58263397,179.947926,179.6666747,9.955935,0.089697125,1620000000000 ,1620000000000 ,1620000000000 ,1616812327420 -1616812327447 ,112.573015,26.89103306,59.58321762,179.9430902,179.6567022,9.953365,0.089676045,1620000000000 ,1620000000000 ,1620000000000 ,1616812327430 -1616812327457 ,112.573015,26.89103217,59.58380508,179.9392926,179.6505386,9.951,0.089655713,1620000000000 ,1620000000000 ,1620000000000 ,1616812327440 -1616812327468 ,112.573015,26.89103127,59.58380127,179.9347027,180.0402218,9.947864,0.089752767,1620000000000 ,1620000000000 ,1620000000000 ,1616812327450 -1616812327479 ,112.573015,26.89103037,59.58321381,179.9298123,180.4256586,9.945398,0.08985917,1620000000000 ,1620000000000 ,1620000000000 ,1616812327460 -1616812327489 ,112.573015,26.89102947,59.58264542,179.9265065,180.4207708,9.942503,0.08983268,1620000000000 ,1620000000000 ,1620000000000 ,1616812327470 -1616812327502 ,112.573015,26.89102857,59.58209991,179.9219439,180.4153209,9.940363,0.089814965,1620000000000 ,1620000000000 ,1620000000000 ,1616812327480 -1616812327513 ,112.573015,26.89102767,59.58156967,179.9164524,180.4125235,9.938111,0.089795359,1620000000000 ,1620000000000 ,1620000000000 ,1616812327490 -1616812327521 ,112.573015,26.89102678,59.58105469,179.9125456,180.4146879,9.936151,0.089775949,1620000000000 ,1620000000000 ,1620000000000 ,1616812327500 -1616812327531 ,112.573015,26.89102588,59.58055115,179.9090212,180.4129893,9.933832,0.089759534,1620000000000 ,1620000000000 ,1620000000000 ,1616812327510 -1616812327540 ,112.573015,26.89102498,59.58007813,179.9041581,180.3969009,9.93016,0.089730069,1620000000000 ,1620000000000 ,1620000000000 ,1616812327520 -1616812327549 ,112.573015,26.89102409,59.57964706,179.8984754,180.3822564,9.927109,0.089703105,1620000000000 ,1620000000000 ,1620000000000 ,1616812327530 -1616812327559 ,112.5730149,26.89102319,59.57925034,179.8924375,180.3790653,9.92434,0.0896798,1620000000000 ,1620000000000 ,1620000000000 ,1616812327540 -1616812327571 ,112.5730149,26.89102229,59.57884979,179.8893776,180.3787208,9.922166,0.089658607,1620000000000 ,1620000000000 ,1620000000000 ,1616812327550 -1616812327580 ,112.5730149,26.8910214,59.57842636,179.8854434,180.3757171,9.919794,0.08963771,1620000000000 ,1620000000000 ,1620000000000 ,1616812327560 -1616812327591 ,112.5730149,26.8910205,59.57798004,179.881236,180.3636208,9.917393,0.089615437,1620000000000 ,1620000000000 ,1620000000000 ,1616812327570 -1616812327600 ,112.5730149,26.8910196,59.57751846,179.876127,180.3518189,9.914869,0.089593491,1620000000000 ,1620000000000 ,1620000000000 ,1616812327580 -1616812327610 ,112.5730149,26.89101871,59.57703781,179.8715918,180.3421026,9.912197,0.089568799,1620000000000 ,1620000000000 ,1620000000000 ,1616812327590 -1616812327619 ,112.5730149,26.89101781,59.57654953,179.8673024,180.3421134,9.9098625,0.089546436,1620000000000 ,1620000000000 ,1620000000000 ,1616812327600 -1616812327628 ,112.5730149,26.89101692,59.57606506,179.8630404,180.332216,9.907741,0.089527762,1620000000000 ,1620000000000 ,1620000000000 ,1616812327610 -1616812327639 ,112.5730149,26.89101602,59.57559204,179.8589423,180.3144283,9.905336,0.089507613,1620000000000 ,1620000000000 ,1620000000000 ,1616812327620 -1616812327651 ,112.5730149,26.89101513,59.57512283,179.8533142,180.3044714,9.903037,0.089486872,1620000000000 ,1620000000000 ,1620000000000 ,1616812327630 -1616812327661 ,112.5730149,26.89101423,59.57461548,179.8503089,180.2964311,9.900845,0.089466433,1620000000000 ,1620000000000 ,1620000000000 ,1616812327640 -1616812327670 ,112.5730149,26.89101334,59.57406235,179.847249,180.2913066,9.8982315,0.089442591,1620000000000 ,1620000000000 ,1620000000000 ,1616812327650 -1616812327680 ,112.5730149,26.89101244,59.57349396,179.8423039,180.2834296,9.894955,0.089414368,1620000000000 ,1620000000000 ,1620000000000 ,1616812327660 -1616812327689 ,112.5730149,26.89101155,59.57292938,179.8380419,180.268068,9.891699,0.089384393,1620000000000 ,1620000000000 ,1620000000000 ,1616812327670 -1616812327703 ,112.5730149,26.89101066,59.57235336,179.8336979,180.2557346,9.88956,0.089362509,1620000000000 ,1620000000000 ,1620000000000 ,1616812327680 -1616812327715 ,112.5730149,26.89100976,59.57171631,179.8295724,180.247157,9.888523,0.08934935,1620000000000 ,1620000000000 ,1620000000000 ,1616812327690 -1616812327721 ,112.5730149,26.89100887,59.57099152,179.8259934,180.2449385,9.88663,0.089331532,1620000000000 ,1620000000000 ,1620000000000 ,1616812327700 -1616812327730 ,112.5730149,26.89100798,59.57023239,179.8203653,180.2414566,9.883815,0.089306609,1620000000000 ,1620000000000 ,1620000000000 ,1616812327710 -1616812327741 ,112.5730149,26.89100708,59.56947327,179.8162945,180.2307313,9.880753,0.089280061,1620000000000 ,1620000000000 ,1620000000000 ,1616812327720 -1616812327751 ,112.5730149,26.89100619,59.56872559,179.811049,180.2214963,9.877092,0.08924854,1620000000000 ,1620000000000 ,1620000000000 ,1616812327730 -1616812327760 ,112.5730149,26.8910053,59.5679512,179.8082076,180.2269412,9.875315,0.089227298,1620000000000 ,1620000000000 ,1620000000000 ,1616812327740 -1616812327770 ,112.5730148,26.89100441,59.56713104,179.8053662,180.2345389,9.873395,0.089209615,1620000000000 ,1620000000000 ,1620000000000 ,1616812327750 -1616812327780 ,112.5730148,26.89100352,59.56627274,179.8027435,180.2308415,9.870897,0.089186676,1620000000000 ,1620000000000 ,1620000000000 ,1616812327760 -1616812327794 ,112.5730148,26.89100262,59.56541061,179.7978804,180.2212593,9.867873,0.089160871,1620000000000 ,1620000000000 ,1620000000000 ,1616812327770 -1616812327800 ,112.5730148,26.89100173,59.56457138,179.7927441,180.222811,9.865346,0.089138145,1620000000000 ,1620000000000 ,1620000000000 ,1616812327780 -1616812327811 ,112.5730148,26.89100084,59.56375885,179.7893016,180.2263755,9.86343,0.089119341,1620000000000 ,1620000000000 ,1620000000000 ,1616812327790 -1616812327821 ,112.5730148,26.89099995,59.5629425,179.7852582,180.2255356,9.86147,0.089103913,1620000000000 ,1620000000000 ,1620000000000 ,1616812327800 -1616812327831 ,112.5730148,26.89099906,59.56211853,179.7808049,180.2204448,9.858863,0.089081776,1620000000000 ,1620000000000 ,1620000000000 ,1616812327810 -1616812327841 ,112.5730148,26.89099817,59.56127548,179.7752861,180.209944,9.856098,0.089056028,1620000000000 ,1620000000000 ,1620000000000 ,1616812327820 -1616812327851 ,112.5730148,26.89099728,59.56040573,179.771106,180.20007,9.853743,0.08903269,1620000000000 ,1620000000000 ,1620000000000 ,1616812327830 -1616812327861 ,112.5730148,26.89099639,59.55952454,179.766762,180.1963423,9.851006,0.089009503,1620000000000 ,1620000000000 ,1620000000000 ,1616812327840 -1616812327872 ,112.5730148,26.8909955,59.55866241,179.763183,180.1857473,9.84786,0.08898288,1620000000000 ,1620000000000 ,1620000000000 ,1616812327850 -1616812327885 ,112.5730148,26.89099461,59.55786514,179.7599591,180.158747,9.844539,0.088955843,1620000000000 ,1620000000000 ,1620000000000 ,1616812327860 -1616812327892 ,112.5730148,26.89099372,59.55709076,179.7565441,180.1386168,9.842213,0.088934533,1620000000000 ,1620000000000 ,1620000000000 ,1616812327870 -1616812327902 ,112.5730148,26.89099283,59.55628204,179.7551507,180.1212222,9.841718,0.088924753,1620000000000 ,1620000000000 ,1620000000000 ,1616812327880 -1616812327912 ,112.5730148,26.89099194,59.55539703,179.7526099,180.1247477,9.840188,0.088908854,1620000000000 ,1620000000000 ,1620000000000 ,1616812327890 -1616812327923 ,112.5730148,26.89099105,59.55444717,179.7497958,180.1213957,9.838128,0.088889533,1620000000000 ,1620000000000 ,1620000000000 ,1616812327900 -1616812327933 ,112.5730148,26.89099016,59.55345535,179.7485118,180.1092992,9.835534,0.088865641,1620000000000 ,1620000000000 ,1620000000000 ,1616812327910 -1616812327943 ,112.5730148,26.89098928,59.55243683,179.7464081,180.0963206,9.83301,0.088842843,1620000000000 ,1620000000000 ,1620000000000 ,1616812327920 -1616812327953 ,112.5730148,26.89098839,59.5513916,179.7448781,180.0793524,9.829974,0.088813762,1620000000000 ,1620000000000 ,1620000000000 ,1616812327930 -1616812327964 ,112.5730148,26.8909875,59.55031967,179.742829,180.0733186,9.827191,0.088786529,1620000000000 ,1620000000000 ,1620000000000 ,1616812327950 -1616812327973 ,112.5730148,26.89098661,59.54922104,179.7382118,180.0651966,9.825828,0.088768557,1620000000000 ,1620000000000 ,1620000000000 ,1616812327960 -1616812327984 ,112.5730148,26.89098572,59.54808807,179.7352612,180.0556012,9.823911,0.088752651,1620000000000 ,1620000000000 ,1620000000000 ,1616812327970 -1616812327997 ,112.5730148,26.89098395,59.54578781,179.7274201,180.0484328,9.819586,0.177447535,1620000000000 ,1620000000000 ,1620000000000 ,1616812327980 -1616812328004 ,112.5730148,26.89098395,59.54578781,179.7274201,-400,9.819586,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812327980 -1616812328020 ,112.5730148,26.89098218,59.54354095,179.7219833,180.0384831,9.81267,0.17734367,1620000000000 ,1620000000000 ,1620000000000 ,1616812328000 -1616812328023 ,112.5730148,26.89098129,59.54244614,179.7202621,180.0415769,9.809727,0.088629065,1620000000000 ,1620000000000 ,1620000000000 ,1616812328010 -1616812328034 ,112.5730148,26.8909804,59.54135513,179.7166831,180.0462666,9.806446,0.088599637,1620000000000 ,1620000000000 ,1620000000000 ,1616812328020 -1616812328043 ,112.5730148,26.89097952,59.54027557,179.7136505,180.0528563,9.804018,0.088575522,1620000000000 ,1620000000000 ,1620000000000 ,1616812328030 -1616812328054 ,112.5730148,26.89097863,59.53921127,179.7097709,180.0552351,9.802366,0.088561068,1620000000000 ,1620000000000 ,1620000000000 ,1616812328040 -1616812328067 ,112.5730148,26.89097775,59.53816223,179.706793,180.0579551,9.799764,0.088540812,1620000000000 ,1620000000000 ,1620000000000 ,1616812328050 -1616812328074 ,112.5730148,26.89097686,59.53711319,179.7027768,180.0614355,9.797596,0.088518617,1620000000000 ,1620000000000 ,1620000000000 ,1616812328060 -1616812328084 ,112.5730148,26.89097598,59.53607178,179.6993071,180.0616595,9.793826,0.088490311,1620000000000 ,1620000000000 ,1620000000000 ,1616812328070 -1616812328094 ,112.5730148,26.89097509,59.53503418,179.6955095,180.0631795,9.790529,0.088458061,1620000000000 ,1620000000000 ,1620000000000 ,1616812328080 -1616812328110 ,112.5730148,26.89097509,59.53503418,179.6955095,-400,9.790529,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812328090 -1616812328115 ,112.5730148,26.89097332,59.53299713,179.6866029,180.0600203,9.785217,0.176846133,1620000000000 ,1620000000000 ,1620000000000 ,1616812328100 -1616812328125 ,112.5730148,26.89097244,59.53200912,179.6813573,180.0689648,9.782385,0.088385835,1620000000000 ,1620000000000 ,1620000000000 ,1616812328110 -1616812328135 ,112.5730148,26.89097156,59.53102493,179.6767128,180.0736048,9.779565,0.088360531,1620000000000 ,1620000000000 ,1620000000000 ,1616812328120 -1616812328148 ,112.5730148,26.89097067,59.53004074,179.6719863,180.0766212,9.777143,0.088336738,1620000000000 ,1620000000000 ,1620000000000 ,1616812328130 -1616812328160 ,112.5730148,26.89096979,59.52904892,179.6703471,180.0745876,9.775129,0.088316295,1620000000000 ,1620000000000 ,1620000000000 ,1616812328140 -1616812328166 ,112.5730148,26.89096891,59.52801132,179.6674784,180.0691821,9.773445,0.088300025,1620000000000 ,1620000000000 ,1620000000000 ,1616812328150 -1616812328176 ,112.5730148,26.89096802,59.52690887,179.6654293,180.0687254,9.7718,0.088280305,1620000000000 ,1620000000000 ,1620000000000 ,1616812328160 -1616812328186 ,112.5730148,26.89096714,59.52574539,179.6643092,180.0644288,9.769289,0.088254323,1620000000000 ,1620000000000 ,1620000000000 ,1616812328170 -1616812328196 ,112.5730148,26.89096626,59.52454376,179.6649649,180.0556807,9.766713,0.088229662,1620000000000 ,1620000000000 ,1620000000000 ,1616812328180 -1616812328206 ,112.5730148,26.89096538,59.52332306,179.6657299,180.0442233,9.764545,0.088206284,1620000000000 ,1620000000000 ,1620000000000 ,1616812328190 -1616812328216 ,112.5730148,26.8909645,59.52144623,179.6781062,179.94372,9.763887,0.088107579,1620000000000 ,1620000000000 ,1620000000000 ,1616812328200 -1616812328225 ,112.5730148,26.89096362,59.51854706,179.6802099,179.7627711,9.761455,0.088003084,1620000000000 ,1620000000000 ,1620000000000 ,1616812328210 -1616812328235 ,112.5730148,26.89096274,59.51565552,179.6822316,179.7569259,9.759422,0.087982802,1620000000000 ,1620000000000 ,1620000000000 ,1616812328220 -1616812328250 ,112.5730148,26.89096186,59.51278687,179.6857013,179.7427105,9.756601,0.087958544,1620000000000 ,1620000000000 ,1620000000000 ,1616812328230 -1616812328257 ,112.5730148,26.89096098,59.5099411,179.6915753,179.7343045,9.753912,0.087934404,1620000000000 ,1620000000000 ,1620000000000 ,1616812328240 -1616812328267 ,112.5730148,26.8909601,59.50711441,179.6972853,179.7320719,9.751121,0.087911253,1620000000000 ,1620000000000 ,1620000000000 ,1616812328250 -1616812328276 ,112.5730148,26.89095922,59.50432205,179.7050444,179.736473,9.748109,0.087884032,1620000000000 ,1620000000000 ,1620000000000 ,1616812328260 -1616812328290 ,112.5730148,26.89095834,59.50156021,179.7129674,179.7425989,9.74551,0.087860931,1620000000000 ,1620000000000 ,1620000000000 ,1616812328270 -1616812328297 ,112.5730148,26.89095746,59.49881744,179.7227756,179.745768,9.743719,0.08784225,1620000000000 ,1620000000000 ,1620000000000 ,1616812328280 -1616812328309 ,112.5730148,26.89095658,59.49608994,179.7313816,179.7466454,9.74128,0.087819935,1620000000000 ,1620000000000 ,1620000000000 ,1616812328290 -1616812328317 ,112.5730148,26.89095571,59.49341583,179.7440038,179.7538574,9.738361,0.087800933,1620000000000 ,1620000000000 ,1620000000000 ,1616812328300 -1616812328326 ,112.5730148,26.89095483,59.49078369,179.7550141,179.76014,9.734524,0.087767243,1620000000000 ,1620000000000 ,1620000000000 ,1616812328310 -1616812328336 ,112.5730148,26.89095395,59.48820114,179.7671172,179.7658527,9.731043,0.087737614,1620000000000 ,1620000000000 ,1620000000000 ,1616812328320 -1616812328351 ,112.5730148,26.89095307,59.48566055,179.7795755,179.7754075,9.726565,0.087699875,1620000000000 ,1620000000000 ,1620000000000 ,1616812328330 -1616812328357 ,112.5730148,26.8909522,59.48316574,179.7927167,179.7962205,9.724016,0.087674519,1620000000000 ,1620000000000 ,1620000000000 ,1616812328340 -1616812328368 ,112.5730148,26.89095132,59.48072815,179.8053936,179.811536,9.721081,0.087651363,1620000000000 ,1620000000000 ,1620000000000 ,1616812328350 -1616812328379 ,112.5730148,26.89095044,59.47835541,179.818972,179.827519,9.71822,0.087627136,1620000000000 ,1620000000000 ,1620000000000 ,1616812328360 -1616812328388 ,112.5730148,26.89094957,59.47603989,179.8322499,179.8493316,9.714885,0.087599995,1620000000000 ,1620000000000 ,1620000000000 ,1616812328370 -1616812328400 ,112.5730148,26.89094869,59.4737587,179.8468665,179.8738739,9.712222,0.087576347,1620000000000 ,1620000000000 ,1620000000000 ,1616812328380 -1616812328407 ,112.5730148,26.89094782,59.47148895,179.8603629,179.9044692,9.709255,0.087550517,1620000000000 ,1620000000000 ,1620000000000 ,1616812328390 -1616812328419 ,112.5730148,26.89094694,59.46922684,179.874597,179.9312025,9.7068615,0.087526129,1620000000000 ,1620000000000 ,1620000000000 ,1616812328400 -1616812328428 ,112.5730148,26.89094607,59.4669838,179.8883394,179.9516172,9.703292,0.087499434,1620000000000 ,1620000000000 ,1620000000000 ,1616812328410 -1616812328441 ,112.5730148,26.89094519,59.46475983,179.9009343,179.9777194,9.700944,0.087475339,1620000000000 ,1620000000000 ,1620000000000 ,1616812328420 -1616812328450 ,112.5730148,26.89094432,59.46255875,179.9139663,180.0040251,9.697598,0.087448756,1620000000000 ,1620000000000 ,1620000000000 ,1616812328430 -1616812328459 ,112.5730148,26.89094344,59.46035385,179.9264245,180.0311988,9.694946,0.087419962,1620000000000 ,1620000000000 ,1620000000000 ,1616812328440 -1616812328469 ,112.5730148,26.89094257,59.45876694,179.9389101,180.1373937,9.693202,0.087481965,1620000000000 ,1620000000000 ,1620000000000 ,1616812328450 -1616812328482 ,112.5730148,26.89094169,59.45782089,179.9526798,180.2410105,9.691292,0.087543197,1620000000000 ,1620000000000 ,1620000000000 ,1616812328460 -1616812328491 ,112.5730148,26.89094082,59.45690155,179.9644823,180.2578076,9.688609,0.087519622,1620000000000 ,1620000000000 ,1620000000000 ,1616812328470 -1616812328499 ,112.5730148,26.89093994,59.45600891,179.9748096,180.2722933,9.685472,0.087496217,1620000000000 ,1620000000000 ,1620000000000 ,1616812328480 -1616812328511 ,112.5730148,26.89093907,59.45512772,179.9879782,180.298056,9.681684,0.087462544,1620000000000 ,1620000000000 ,1620000000000 ,1616812328490 -1616812328520 ,112.5730148,26.89093819,59.45423508,179.99989,180.3262507,9.67907,0.087436375,1620000000000 ,1620000000000 ,1620000000000 ,1616812328500 -1616812328532 ,112.5730148,26.89093732,59.45330811,180.0111462,180.3503163,9.677393,0.087417383,1620000000000 ,1620000000000 ,1620000000000 ,1616812328510 -1616812328544 ,112.5730148,26.89093645,59.4523735,180.0227029,180.3742062,9.675256,0.087399873,1620000000000 ,1620000000000 ,1620000000000 ,1616812328520 -1616812328552 ,112.5730148,26.89093557,59.45144653,180.0330848,180.3938607,9.672277,0.08737363,1620000000000 ,1620000000000 ,1620000000000 ,1616812328530 -1616812328570 ,112.5730148,26.8909347,59.45053864,180.0453518,180.4186326,9.669404,0.087349907,1620000000000 ,1620000000000 ,1620000000000 ,1616812328540 -1616812328572 ,112.5730148,26.89093383,59.44963455,180.0569358,180.4401426,9.667034,0.087327106,1620000000000 ,1620000000000 ,1620000000000 ,1616812328550 -1616812328581 ,112.5730148,26.89093295,59.44871902,180.06811,180.4508091,9.665067,0.087309454,1620000000000 ,1620000000000 ,1620000000000 ,1616812328560 -1616812328591 ,112.5730148,26.89093208,59.44777679,180.0791202,180.4546347,9.6624975,0.087286344,1620000000000 ,1620000000000 ,1620000000000 ,1616812328570 -1616812328601 ,112.5730148,26.89093121,59.44681549,180.088382,180.4651503,9.659877,0.087259969,1620000000000 ,1620000000000 ,1620000000000 ,1616812328580 -1616812328611 ,112.5730148,26.89093033,59.44585037,180.1001026,180.4816161,9.656916,0.087237693,1620000000000 ,1620000000000 ,1620000000000 ,1616812328590 -1616812328622 ,112.5730148,26.89092946,59.44490433,180.1099927,180.4941026,9.652802,0.087202298,1620000000000 ,1620000000000 ,1620000000000 ,1616812328600 -1616812328632 ,112.5730147,26.89092859,59.44398499,180.1205931,180.5006743,9.650336,0.08717709,1620000000000 ,1620000000000 ,1620000000000 ,1616812328610 -1616812328642 ,112.5730147,26.89092772,59.44309235,180.1320132,180.5043972,9.647188,0.087152738,1620000000000 ,1620000000000 ,1620000000000 ,1616812328620 -1616812328652 ,112.5730147,26.89092685,59.44218826,180.143324,180.5141496,9.645774,0.087135412,1620000000000 ,1620000000000 ,1620000000000 ,1616812328630 -1616812328663 ,112.5730147,26.89092598,59.44125748,180.154225,180.5320421,9.643838,0.087117787,1620000000000 ,1620000000000 ,1620000000000 ,1616812328640 -1616812328673 ,112.5730147,26.89092511,59.44031525,180.1650167,180.5414319,9.640451,0.087090402,1620000000000 ,1620000000000 ,1620000000000 ,1616812328650 -1616812328683 ,112.5730147,26.89092424,59.4393959,180.1766553,180.5514032,9.635701,0.087054514,1620000000000 ,1620000000000 ,1620000000000 ,1616812328660 -1616812328692 ,112.5730147,26.89092337,59.43851089,180.1876656,180.5613522,9.633329,0.087026277,1620000000000 ,1620000000000 ,1620000000000 ,1616812328670 -1616812328702 ,112.5730147,26.8909225,59.43763733,180.1988944,180.5760652,9.6313925,0.087010883,1620000000000 ,1620000000000 ,1620000000000 ,1616812328680 -1616812328714 ,112.5730147,26.89092163,59.43674088,180.2118718,180.5889079,9.62868,0.086986623,1620000000000 ,1620000000000 ,1620000000000 ,1616812328690 -1616812328727 ,112.5730147,26.89092076,59.43582535,180.2243847,180.6003721,9.625729,0.086961387,1620000000000 ,1620000000000 ,1620000000000 ,1616812328700 -1616812328732 ,112.5730147,26.89091989,59.43492126,180.2352584,180.6082197,9.62166,0.086926446,1620000000000 ,1620000000000 ,1620000000000 ,1616812328710 -1616812328743 ,112.5730147,26.89091902,59.43405914,180.246815,180.6254542,9.619016,0.086901389,1620000000000 ,1620000000000 ,1620000000000 ,1616812328720 -1616812328754 ,112.5730146,26.89091815,59.43320084,180.2572516,180.6437163,9.616548,0.086878649,1620000000000 ,1620000000000 ,1620000000000 ,1616812328740 -1616812328764 ,112.5730146,26.89091728,59.43231583,180.267852,180.6647167,9.614128,0.086858153,1620000000000 ,1620000000000 ,1620000000000 ,1616812328740 -1616812328773 ,112.5730146,26.89091641,59.43139267,180.2769498,180.687299,9.611763,0.086835255,1620000000000 ,1620000000000 ,1620000000000 ,1616812328750 -1616812328783 ,112.5730146,26.89091554,59.43046188,180.2852553,180.6985589,9.609592,0.086813505,1620000000000 ,1620000000000 ,1620000000000 ,1616812328770 -1616812328794 ,112.5730146,26.89091468,59.42952347,180.2934242,180.7135603,9.606534,0.086788457,1620000000000 ,1620000000000 ,1620000000000 ,1616812328780 -1616812328804 ,112.5730146,26.89091381,59.42858505,180.3033417,180.7339674,9.603082,0.086759024,1620000000000 ,1620000000000 ,1620000000000 ,1616812328790 -1616812328814 ,112.5730146,26.89091207,59.42677307,180.3232039,180.7534212,9.596749,0.173434377,1620000000000 ,1620000000000 ,1620000000000 ,1616812328800 -1616812328824 ,112.5730146,26.89091121,59.42583847,180.3328481,180.7600204,9.594604,0.086679818,1620000000000 ,1620000000000 ,1620000000000 ,1616812328810 -1616812328835 ,112.5730145,26.89091034,59.42483521,180.3425196,180.7693965,9.592947,0.086659543,1620000000000 ,1620000000000 ,1620000000000 ,1616812328820 -1616812328848 ,112.5730145,26.89090948,59.42375946,180.352601,180.7848478,9.591266,0.086641214,1620000000000 ,1620000000000 ,1620000000000 ,1616812328830 -1616812328854 ,112.5730145,26.89090861,59.42264175,180.3624911,180.79179,9.58904,0.086621725,1620000000000 ,1620000000000 ,1620000000000 ,1616812328840 -1616812328865 ,112.5730145,26.89090774,59.42150497,180.3719987,180.7929877,9.586519,0.086598311,1620000000000 ,1620000000000 ,1620000000000 ,1616812328850 -1616812328875 ,112.5730145,26.89090688,59.42035294,180.3803042,180.7992775,9.584219,0.086575485,1620000000000 ,1620000000000 ,1620000000000 ,1616812328860 -1616812328885 ,112.5730145,26.89090601,59.41915512,180.3899485,180.8026837,9.58224,0.086554655,1620000000000 ,1620000000000 ,1620000000000 ,1616812328870 -1616812328895 ,112.5730145,26.89090515,59.41790771,180.3992375,180.8138832,9.580552,0.086536412,1620000000000 ,1620000000000 ,1620000000000 ,1616812328880 -1616812328906 ,112.5730145,26.89090428,59.41663742,180.4068873,180.8161516,9.577869,0.086513604,1620000000000 ,1620000000000 ,1620000000000 ,1616812328890 -1616812328915 ,112.5730144,26.89090342,59.41537857,180.4151382,180.8129218,9.574704,0.086486805,1620000000000 ,1620000000000 ,1620000000000 ,1616812328900 -1616812328925 ,112.5730144,26.89090255,59.41411591,180.424919,180.820983,9.573242,0.086467987,1620000000000 ,1620000000000 ,1620000000000 ,1616812328910 -1616812328939 ,112.5730144,26.89090169,59.41280746,180.4323503,180.8371598,9.571901,0.086454124,1620000000000 ,1620000000000 ,1620000000000 ,1616812328920 -1616812328946 ,112.5730144,26.89090082,59.41146088,180.4412295,180.8539704,9.569682,0.08643567,1620000000000 ,1620000000000 ,1620000000000 ,1616812328930 -1616812328955 ,112.5730144,26.89089996,59.41013336,180.448934,180.861472,9.566189,0.086407439,1620000000000 ,1620000000000 ,1620000000000 ,1616812328940 -1616812328965 ,112.5730144,26.8908991,59.40887833,180.4541523,180.8579045,9.56279,0.086377788,1620000000000 ,1620000000000 ,1620000000000 ,1616812328950 -1616812328977 ,112.5730144,26.89089823,59.40768051,180.458988,180.8701809,9.5602455,0.086356717,1620000000000 ,1620000000000 ,1620000000000 ,1616812328960 -1616812328987 ,112.5730144,26.89089737,59.40648651,180.4631681,180.8953774,9.557401,0.086333044,1620000000000 ,1620000000000 ,1620000000000 ,1616812328970 -1616812328996 ,112.5730143,26.89089651,59.4052887,180.4680039,180.9146674,9.555281,0.086314715,1620000000000 ,1620000000000 ,1620000000000 ,1616812328980 -1616812329005 ,112.5730143,26.89089564,59.40412521,180.4705174,180.9260036,9.551445,0.086284392,1620000000000 ,1620000000000 ,1620000000000 ,1616812328990 -1616812329016 ,112.5730143,26.89089478,59.40301514,180.4735773,180.9303631,9.549411,0.086264508,1620000000000 ,1620000000000 ,1620000000000 ,1616812329000 -1616812329026 ,112.5730143,26.89089392,59.40193558,180.4787136,180.9414236,9.546798,0.086246453,1620000000000 ,1620000000000 ,1620000000000 ,1616812329010 -1616812329036 ,112.5730143,26.89089306,59.4008522,180.483003,180.9604049,9.54436,0.086223632,1620000000000 ,1620000000000 ,1620000000000 ,1616812329020 -1616812329046 ,112.5730143,26.89089219,59.39976883,180.4857897,180.9734967,9.542084,0.086204831,1620000000000 ,1620000000000 ,1620000000000 ,1616812329030 -1616812329056 ,112.5730143,26.89089133,59.39871216,180.4898058,180.9827883,9.538822,0.086178156,1620000000000 ,1620000000000 ,1620000000000 ,1616812329040 -1616812329069 ,112.5730142,26.89089047,59.39768219,180.4924013,180.9855765,9.535309,0.086150505,1620000000000 ,1620000000000 ,1620000000000 ,1616812329050 -1616812329079 ,112.5730142,26.89088961,59.39666748,180.4967726,180.9913753,9.532936,0.0861245,1620000000000 ,1620000000000 ,1620000000000 ,1616812329060 -1616812329089 ,112.5730142,26.89088875,59.39567566,180.4988217,180.9971378,9.533385,0.086126999,1620000000000 ,1620000000000 ,1620000000000 ,1616812329070 -1616812329104 ,112.5730142,26.89088789,59.39473343,180.4993408,181.0103427,9.530015,0.086112837,1620000000000 ,1620000000000 ,1620000000000 ,1616812329080 -1616812329108 ,112.5730142,26.89088703,59.39382172,180.5014172,181.0240843,9.527186,0.086082945,1620000000000 ,1620000000000 ,1620000000000 ,1616812329090 -1616812329120 ,112.5730142,26.89088617,59.39291763,180.5054606,181.0383564,9.523723,0.086058037,1620000000000 ,1620000000000 ,1620000000000 ,1616812329100 -1616812329132 ,112.5730142,26.89088531,59.39199066,180.5091763,181.0426516,9.519388,0.08601977,1620000000000 ,1620000000000 ,1620000000000 ,1616812329110 -1616812329137 ,112.5730141,26.89088445,59.39103699,180.5099686,181.0477533,9.516678,0.085993982,1620000000000 ,1620000000000 ,1620000000000 ,1616812329120 -1616812329148 ,112.5730141,26.89088359,59.39002609,180.5137661,181.0603891,9.514927,0.085971246,1620000000000 ,1620000000000 ,1620000000000 ,1616812329130 -1616812329159 ,112.5730141,26.89088273,59.3889389,180.5157059,181.0761574,9.513785,0.085957973,1620000000000 ,1620000000000 ,1620000000000 ,1616812329140 -1616812329170 ,112.5730141,26.89088187,59.38778687,180.5175364,181.0873944,9.513352,0.08595027,1620000000000 ,1620000000000 ,1620000000000 ,1616812329150 -1616812329181 ,112.5730141,26.89088101,59.38659286,180.5191757,181.0949449,9.512021,0.085940234,1620000000000 ,1620000000000 ,1620000000000 ,1616812329160 -1616812329189 ,112.5730141,26.89088015,59.38536072,180.5210335,181.0920047,9.508308,0.085910023,1620000000000 ,1620000000000 ,1620000000000 ,1616812329170 -1616812329199 ,112.573014,26.89087929,59.38408279,180.5220717,181.0901477,9.505386,0.08587962,1620000000000 ,1620000000000 ,1620000000000 ,1616812329180 -1616812329208 ,112.573014,26.89087843,59.38277054,180.525596,181.0923725,9.502437,0.085851954,1620000000000 ,1620000000000 ,1620000000000 ,1616812329190 -1616812329220 ,112.573014,26.89087758,59.38180161,180.5373713,181.1270607,9.4901905,0.085769119,1620000000000 ,1620000000000 ,1620000000000 ,1616812329200 -1616812329231 ,112.573014,26.89087672,59.38132477,180.540076,181.1713497,9.487214,0.085605747,1620000000000 ,1620000000000 ,1620000000000 ,1616812329210 -1616812329243 ,112.573014,26.89087586,59.38082886,180.5441468,181.1715367,9.485307,0.085583402,1620000000000 ,1620000000000 ,1620000000000 ,1616812329220 -1616812329251 ,112.573014,26.89087501,59.38029861,180.5457588,181.1712402,9.4850855,0.085576206,1620000000000 ,1620000000000 ,1620000000000 ,1616812329230 -1616812329259 ,112.5730139,26.89087415,59.37969589,180.5476985,181.1663811,9.483597,0.085563844,1620000000000 ,1620000000000 ,1620000000000 ,1616812329240 -1616812329271 ,112.5730139,26.8908733,59.37902832,180.5501847,181.1612659,9.482416,0.085548161,1620000000000 ,1620000000000 ,1620000000000 ,1616812329250 -1616812329282 ,112.5730139,26.89087244,59.37831879,180.5525889,181.1509793,9.478853,0.08551814,1620000000000 ,1620000000000 ,1620000000000 ,1616812329260 -1616812329290 ,112.5730139,26.89087159,59.37760925,180.5575886,181.1448781,9.474741,0.085481645,1620000000000 ,1620000000000 ,1620000000000 ,1616812329270 -1616812329303 ,112.5730139,26.89087073,59.37693024,180.5601841,181.1313459,9.475078,0.085479057,1620000000000 ,1620000000000 ,1620000000000 ,1616812329280 -1616812329314 ,112.5730138,26.89086988,59.37625885,180.5640363,181.1345385,9.466223,0.085427883,1620000000000 ,1620000000000 ,1620000000000 ,1616812329290 -1616812329322 ,112.5730138,26.89086903,59.37554932,180.5672055,181.1366174,9.457864,0.085330043,1620000000000 ,1620000000000 ,1620000000000 ,1616812329300 -1616812329337 ,112.5730138,26.89086817,59.37480545,180.5709758,181.1364802,9.453964,0.085291186,1620000000000 ,1620000000000 ,1620000000000 ,1616812329310 -1616812329340 ,112.5730138,26.89086732,59.37404251,180.5728063,181.1473231,9.449927,0.08525635,1620000000000 ,1620000000000 ,1620000000000 ,1616812329320 -1616812329351 ,112.5730138,26.89086647,59.37326813,180.5775874,181.1455213,9.450918,0.085250964,1620000000000 ,1620000000000 ,1620000000000 ,1616812329330 -1616812329360 ,112.5730138,26.89086562,59.37248611,180.5812484,181.1579102,9.452727,0.085258222,1620000000000 ,1620000000000 ,1620000000000 ,1616812329340 -1616812329370 ,112.5730137,26.89086476,59.37163544,180.5848821,181.1673706,9.45935,0.085317088,1620000000000 ,1620000000000 ,1620000000000 ,1616812329350 -1616812329386 ,112.5730137,26.89086391,59.37059784,180.5889529,181.1879039,9.455046,0.085280075,1620000000000 ,1620000000000 ,1620000000000 ,1616812329360 -1616812329390 ,112.5730137,26.89086306,59.36938477,180.590073,181.2074388,9.454187,0.085265372,1620000000000 ,1620000000000 ,1620000000000 ,1616812329370 -1616812329401 ,112.5730137,26.89086221,59.3681488,180.5884611,181.2337419,9.4455,0.085198356,1620000000000 ,1620000000000 ,1620000000000 ,1616812329380 -1616812329410 ,112.5730137,26.89086136,59.36701584,180.5897998,181.2313309,9.441784,0.085152148,1620000000000 ,1620000000000 ,1620000000000 ,1616812329390 -1616812329420 ,112.5730137,26.8908605,59.36590958,180.5912205,181.2320186,9.434616,0.085100526,1620000000000 ,1620000000000 ,1620000000000 ,1616812329400 -1616812329432 ,112.5730136,26.89085965,59.3648262,180.5949634,181.2475667,9.430056,0.0850512,1620000000000 ,1620000000000 ,1620000000000 ,1616812329410 -1616812329440 ,112.5730136,26.8908588,59.36381531,180.5946902,181.2545962,9.431414,0.085051779,1620000000000 ,1620000000000 ,1620000000000 ,1616812329420 -1616812329451 ,112.5730136,26.89085795,59.36282349,180.5969305,181.2572083,9.435239,0.085080159,1620000000000 ,1620000000000 ,1620000000000 ,1616812329430 -1616812329461 ,112.5730136,26.8908571,59.36180496,180.5991708,181.270706,9.437624,0.08510927,1620000000000 ,1620000000000 ,1620000000000 ,1616812329440 -1616812329471 ,112.5730136,26.89085625,59.36043167,180.5984605,181.2542027,9.4327755,0.085138448,1620000000000 ,1620000000000 ,1620000000000 ,1616812329450 -1616812329480 ,112.5730135,26.8908554,59.35879517,180.5972584,181.2219053,9.424785,0.085131427,1620000000000 ,1620000000000 ,1620000000000 ,1616812329460 -1616812329490 ,112.5730135,26.89085455,59.35725403,180.595947,181.2261299,9.419704,0.085081286,1620000000000 ,1620000000000 ,1620000000000 ,1616812329470 -1616812329500 ,112.5730135,26.8908537,59.35571289,180.5958923,181.2210565,9.417478,0.08505536,1620000000000 ,1620000000000 ,1620000000000 ,1616812329480 -1616812329511 ,112.5730135,26.89085285,59.35414505,180.5959743,181.2167821,9.4148445,0.085030474,1620000000000 ,1620000000000 ,1620000000000 ,1616812329490 -1616812329521 ,112.5730135,26.890852,59.35258865,180.5957011,181.2099399,9.412978,0.085011007,1620000000000 ,1620000000000 ,1620000000000 ,1616812329500 -1616812329531 ,112.5730135,26.89085115,59.35106659,180.5971764,181.2095107,9.412382,0.085003941,1620000000000 ,1620000000000 ,1620000000000 ,1616812329510 -1616812329541 ,112.5730134,26.8908503,59.34957504,180.5979141,181.2086265,9.412261,0.085002988,1620000000000 ,1620000000000 ,1620000000000 ,1616812329520 -1616812329553 ,112.5730134,26.89084945,59.34809494,180.5978594,181.2033342,9.411188,0.084995195,1620000000000 ,1620000000000 ,1620000000000 ,1616812329530 -1616812329562 ,112.5730134,26.8908486,59.34666443,180.5956465,181.1916989,9.408713,0.084977926,1620000000000 ,1620000000000 ,1620000000000 ,1616812329540 -1616812329572 ,112.5730134,26.89084775,59.34526443,180.5942531,181.184261,9.40278,0.08493069,1620000000000 ,1620000000000 ,1620000000000 ,1616812329550 -1616812329582 ,112.5730134,26.8908469,59.343853,180.5945263,181.1762065,9.40692,0.084944592,1620000000000 ,1620000000000 ,1620000000000 ,1616812329560 -1616812329591 ,112.5730133,26.89084605,59.34238815,180.593816,181.2039476,9.391476,0.084855856,1620000000000 ,1620000000000 ,1620000000000 ,1616812329570 -1616812329602 ,112.5730133,26.89084521,59.34098816,180.5914937,181.233366,9.393941,0.084820797,1620000000000 ,1620000000000 ,1620000000000 ,1616812329580 -1616812329616 ,112.5730133,26.89084436,59.33985138,180.5884338,181.1775747,9.390877,0.08483761,1620000000000 ,1620000000000 ,1620000000000 ,1616812329590 -1616812329622 ,112.5730133,26.89084351,59.33903503,180.5837346,181.1909505,9.383018,0.084776085,1620000000000 ,1620000000000 ,1620000000000 ,1616812329600 -1616812329633 ,112.5730133,26.89084266,59.33837128,180.5825325,181.1902585,9.377946,0.084750176,1620000000000 ,1620000000000 ,1620000000000 ,1616812329610 -1616812329642 ,112.5730133,26.89084182,59.33765793,180.5836253,181.2035856,9.36875,0.084663052,1620000000000 ,1620000000000 ,1620000000000 ,1616812329620 -1616812329653 ,112.5730132,26.89084097,59.33688354,180.5841171,181.2309308,9.370769,0.084648753,1620000000000 ,1620000000000 ,1620000000000 ,1616812329630 -1616812329662 ,112.5730132,26.89084012,59.33597946,180.582915,181.1883307,9.378377,0.084708803,1620000000000 ,1620000000000 ,1620000000000 ,1616812329640 -1616812329672 ,112.5730132,26.89083928,59.33501434,180.5781885,181.1801608,9.381164,0.084742253,1620000000000 ,1620000000000 ,1620000000000 ,1616812329650 -1616812329681 ,112.5730132,26.89083843,59.33413696,180.5731068,181.208149,9.374247,0.084711177,1620000000000 ,1620000000000 ,1620000000000 ,1616812329660 -1616812329692 ,112.5730132,26.89083758,59.33343506,180.5696371,181.2286811,9.358909,0.084596017,1620000000000 ,1620000000000 ,1620000000000 ,1616812329670 -1616812329704 ,112.5730132,26.89083674,59.33295822,180.5664132,181.2319298,9.350732,0.084512629,1620000000000 ,1620000000000 ,1620000000000 ,1616812329680 -1616812329713 ,112.5730131,26.89083589,59.33261871,180.5655663,181.2076005,9.351722,0.084510006,1620000000000 ,1620000000000 ,1620000000000 ,1616812329690 -1616812329723 ,112.5730131,26.89083505,59.33227539,180.563326,181.1903524,9.355095,0.084538616,1620000000000 ,1620000000000 ,1620000000000 ,1616812329700 -1616812329732 ,112.5730131,26.8908342,59.33180237,180.5607578,181.1939377,9.356725,0.084554319,1620000000000 ,1620000000000 ,1620000000000 ,1616812329710 -1616812329742 ,112.5730131,26.89083336,59.33119965,180.5591459,181.2257035,9.354854,0.084542534,1620000000000 ,1620000000000 ,1620000000000 ,1616812329720 -1616812329755 ,112.5730131,26.89083251,59.33060074,180.5544468,181.2382358,9.349276,0.084502645,1620000000000 ,1620000000000 ,1620000000000 ,1616812329730 -1616812329763 ,112.573013,26.89083167,59.33013535,180.5524797,181.2124987,9.343451,0.084456157,1620000000000 ,1620000000000 ,1620000000000 ,1616812329740 -1616812329773 ,112.573013,26.89083082,59.32975388,180.5497476,181.1876453,9.340931,0.084429746,1620000000000 ,1620000000000 ,1620000000000 ,1616812329750 -1616812329782 ,112.573013,26.89082998,59.32933807,180.548846,181.1698284,9.339269,0.084414437,1620000000000 ,1620000000000 ,1620000000000 ,1616812329760 -1616812329793 ,112.573013,26.89082914,59.32878113,180.5492285,181.1691574,9.336816,0.084387939,1620000000000 ,1620000000000 ,1620000000000 ,1616812329770 -1616812329804 ,112.573013,26.89082829,59.32811356,180.5447752,181.1707506,9.335308,0.084369098,1620000000000 ,1620000000000 ,1620000000000 ,1616812329780 -1616812329815 ,112.573013,26.89082745,59.3273468,180.5422617,181.1455699,9.334107,0.084353373,1620000000000 ,1620000000000 ,1620000000000 ,1616812329790 -1616812329824 ,112.5730129,26.89082661,59.32649612,180.5388193,181.1316539,9.333466,0.084342159,1620000000000 ,1620000000000 ,1620000000000 ,1616812329800 -1616812329834 ,112.5730129,26.89082576,59.32556534,180.5358686,181.1244042,9.331486,0.084325372,1620000000000 ,1620000000000 ,1620000000000 ,1616812329820 -1616812329843 ,112.5730129,26.89082492,59.3245697,180.5343387,181.1170341,9.328575,0.084298215,1620000000000 ,1620000000000 ,1620000000000 ,1616812329830 -1616812329856 ,112.5730129,26.89082324,59.32229614,180.5338196,181.1006127,9.324528,0.168518193,1620000000000 ,1620000000000 ,1620000000000 ,1616812329840 -1616812329865 ,112.5730129,26.89082239,59.3209877,180.5337103,181.0902168,9.323148,0.084230648,1620000000000 ,1620000000000 ,1620000000000 ,1616812329850 -1616812329874 ,112.5730129,26.89082239,59.3209877,180.5337103,-400,9.323148,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812329860 -1616812329884 ,112.5730128,26.89082071,59.3181076,180.5335191,181.0906697,9.319723,0.168403144,1620000000000 ,1620000000000 ,1620000000000 ,1616812329870 -1616812329895 ,112.5730128,26.89081987,59.31659317,180.5330273,181.0949625,9.318171,0.08417625,1620000000000 ,1620000000000 ,1620000000000 ,1616812329880 -1616812329904 ,112.5730128,26.89081987,59.31659317,180.5330273,-400,9.318171,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812329880 -1616812329915 ,112.5730128,26.89081819,59.31351089,180.5322077,181.1013616,9.313033,0.168291087,1620000000000 ,1620000000000 ,1620000000000 ,1616812329900 -1616812329930 ,112.5730128,26.89081734,59.31194305,180.5306777,181.1017377,9.310379,0.084103369,1620000000000 ,1620000000000 ,1620000000000 ,1616812329910 -1616812329936 ,112.5730127,26.8908165,59.3103447,180.52994,181.1081529,9.308358,0.084084911,1620000000000 ,1620000000000 ,1620000000000 ,1616812329920 -1616812329945 ,112.5730127,26.89081566,59.30873871,180.5277544,181.1127342,9.305648,0.084059286,1620000000000 ,1620000000000 ,1620000000000 ,1616812329930 -1616812329956 ,112.5730127,26.89081482,59.30713272,180.5266069,181.1186465,9.303043,0.084038129,1620000000000 ,1620000000000 ,1620000000000 ,1616812329940 -1616812329965 ,112.5730127,26.89081398,59.30552673,180.5246944,181.1272042,9.300221,0.084011623,1620000000000 ,1620000000000 ,1620000000000 ,1616812329950 -1616812329976 ,112.5730127,26.89081314,59.30390549,180.5220443,181.1251946,9.299127,0.083995566,1620000000000 ,1620000000000 ,1620000000000 ,1616812329960 -1616812329985 ,112.5730127,26.8908123,59.3022728,180.5211428,181.1250863,9.297678,0.083984323,1620000000000 ,1620000000000 ,1620000000000 ,1616812329970 -1616812330002 ,112.5730126,26.89081146,59.30062485,180.5194215,181.1224089,9.296176,0.083969676,1620000000000 ,1620000000000 ,1620000000000 ,1616812329980 -1616812330008 ,112.5730126,26.89081146,59.30062485,180.5194215,-400,9.296176,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812329990 -1616812330023 ,112.5730126,26.89080979,59.29736328,180.5164982,181.1156489,9.289519,0.167862812,1620000000000 ,1620000000000 ,1620000000000 ,1616812330000 -1616812330029 ,112.5730126,26.89080895,59.29574966,180.5155147,181.1143616,9.286862,0.083888018,1620000000000 ,1620000000000 ,1620000000000 ,1616812330010 -1616812330036 ,112.5730126,26.89080811,59.29413223,180.5128372,181.1093375,9.284184,0.083863675,1620000000000 ,1620000000000 ,1620000000000 ,1616812330020 -1616812330046 ,112.5730126,26.89080727,59.29250336,180.5102964,181.1089165,9.281906,0.083841095,1620000000000 ,1620000000000 ,1620000000000 ,1616812330030 -1616812330055 ,112.5730126,26.89080643,59.29087067,180.5070452,181.1094887,9.279968,0.083824503,1620000000000 ,1620000000000 ,1620000000000 ,1616812330040 -1616812330068 ,112.5730125,26.89080559,59.28926468,180.5064169,181.1136907,9.277397,0.083801973,1620000000000 ,1620000000000 ,1620000000000 ,1616812330050 -1616812330076 ,112.5730125,26.89080476,59.28768539,180.5066627,181.1196804,9.275398,0.083783673,1620000000000 ,1620000000000 ,1620000000000 ,1616812330060 -1616812330085 ,112.5730125,26.89080392,59.28610611,180.5056519,181.1258642,9.273302,0.083767554,1620000000000 ,1620000000000 ,1620000000000 ,1616812330070 -1616812330096 ,112.5730125,26.89080308,59.28450775,180.5035755,181.1367867,9.271593,0.083747645,1620000000000 ,1620000000000 ,1620000000000 ,1616812330080 -1616812330107 ,112.5730125,26.89080224,59.28287125,180.5013079,181.1438128,9.270417,0.083734092,1620000000000 ,1620000000000 ,1620000000000 ,1616812330090 -1616812330117 ,112.5730125,26.89080141,59.28121185,180.499614,181.1469282,9.267648,0.083713417,1620000000000 ,1620000000000 ,1620000000000 ,1616812330100 -1616812330125 ,112.5730124,26.89080057,59.27952957,180.4968546,181.1487962,9.26458,0.083684342,1620000000000 ,1620000000000 ,1620000000000 ,1616812330110 -1616812330137 ,112.5730124,26.89079973,59.27786636,180.4939586,181.1499637,9.261055,0.083653777,1620000000000 ,1620000000000 ,1620000000000 ,1616812330120 -1616812330151 ,112.5730124,26.8907989,59.27625275,180.4914724,181.1500797,9.258414,0.083628344,1620000000000 ,1620000000000 ,1620000000000 ,1616812330130 -1616812330157 ,112.5730124,26.89079806,59.27467728,180.48956,181.1537926,9.255598,0.083606557,1620000000000 ,1620000000000 ,1620000000000 ,1616812330140 -1616812330170 ,112.5730124,26.89079723,59.27310181,180.4876202,181.158593,9.253842,0.083587433,1620000000000 ,1620000000000 ,1620000000000 ,1616812330150 -1616812330177 ,112.5730124,26.89079639,59.2715416,180.4864727,181.1639751,9.251492,0.083570351,1620000000000 ,1620000000000 ,1620000000000 ,1616812330160 -1616812330186 ,112.5730123,26.89079556,59.27003098,180.484287,181.161117,9.249911,0.083554635,1620000000000 ,1620000000000 ,1620000000000 ,1616812330170 -1616812330200 ,112.5730123,26.89079472,59.26858139,180.4824292,181.1621548,9.247742,0.083540994,1620000000000 ,1620000000000 ,1620000000000 ,1616812330180 -1616812330210 ,112.5730123,26.89079389,59.26716232,180.4797791,181.1732351,9.244716,0.083518348,1620000000000 ,1620000000000 ,1620000000000 ,1616812330190 -1616812330220 ,112.5730123,26.89079305,59.26596451,180.4729489,181.0450652,9.2568655,0.083727696,1620000000000 ,1620000000000 ,1620000000000 ,1616812330200 -1616812330227 ,112.5730123,26.89079221,59.2650528,180.4717741,180.810288,9.254442,0.084086457,1620000000000 ,1620000000000 ,1620000000000 ,1616812330210 -1616812330239 ,112.5730123,26.89079137,59.2641449,180.4680312,180.8066931,9.251773,0.084064669,1620000000000 ,1620000000000 ,1620000000000 ,1616812330220 -1616812330249 ,112.5730122,26.89079053,59.26325989,180.4651625,180.8023937,9.248892,0.084040372,1620000000000 ,1620000000000 ,1620000000000 ,1616812330230 -1616812330258 ,112.5730122,26.89078969,59.26239777,180.462567,180.7985776,9.245352,0.08401003,1620000000000 ,1620000000000 ,1620000000000 ,1616812330240 -1616812330268 ,112.5730122,26.89078885,59.26156235,180.4604907,180.7861273,9.2428,0.08398566,1620000000000 ,1620000000000 ,1620000000000 ,1616812330250 -1616812330277 ,112.5730122,26.89078801,59.26074982,180.4591793,180.7719559,9.240888,0.083968394,1620000000000 ,1620000000000 ,1620000000000 ,1616812330260 -1616812330287 ,112.5730122,26.89078717,59.2599411,180.456857,180.7525669,9.239144,0.08395244,1620000000000 ,1620000000000 ,1620000000000 ,1616812330270 -1616812330299 ,112.5730122,26.89078633,59.25911331,180.4556003,180.7434902,9.237146,0.083934692,1620000000000 ,1620000000000 ,1620000000000 ,1616812330280 -1616812330309 ,112.5730122,26.89078549,59.25827026,180.4542889,180.7368104,9.234523,0.083911413,1620000000000 ,1620000000000 ,1620000000000 ,1616812330290 -1616812330318 ,112.5730122,26.89078465,59.25744629,180.4527316,180.7277209,9.230847,0.083880264,1620000000000 ,1620000000000 ,1620000000000 ,1616812330300 -1616812330327 ,112.5730122,26.89078381,59.25666046,180.4507098,180.7206968,9.227123,0.08384903,1620000000000 ,1620000000000 ,1620000000000 ,1616812330310 -1616812330338 ,112.5730122,26.89078297,59.255867,180.4511197,180.7230267,9.224903,0.083825361,1620000000000 ,1620000000000 ,1620000000000 ,1616812330320 -1616812330350 ,112.5730121,26.89078214,59.25502396,180.4511197,180.728275,9.223317,0.083806612,1620000000000 ,1620000000000 ,1620000000000 ,1616812330330 -1616812330360 ,112.5730121,26.8907813,59.25413132,180.4528409,180.7371231,9.220801,0.083782806,1620000000000 ,1620000000000 ,1620000000000 ,1616812330340 -1616812330370 ,112.5730121,26.89078046,59.25324249,180.4528682,180.7427159,9.218918,0.083766754,1620000000000 ,1620000000000 ,1620000000000 ,1616812330350 -1616812330384 ,112.5730121,26.89077962,59.25238419,180.452513,180.7408665,9.216226,0.083744494,1620000000000 ,1620000000000 ,1620000000000 ,1616812330360 -1616812330396 ,112.5730121,26.89077879,59.25151825,180.4526769,180.7485408,9.214212,0.083723659,1620000000000 ,1620000000000 ,1620000000000 ,1616812330370 -1616812330404 ,112.5730121,26.89077795,59.25061417,180.452431,180.7642174,9.211744,0.083702749,1620000000000 ,1620000000000 ,1620000000000 ,1616812330380 -1616812330411 ,112.5730121,26.89077711,59.24968338,180.4527862,180.7773788,9.209487,0.083678257,1620000000000 ,1620000000000 ,1620000000000 ,1616812330390 -1616812330419 ,112.5730121,26.89077628,59.24875641,180.4517207,180.7788709,9.206534,0.083654076,1620000000000 ,1620000000000 ,1620000000000 ,1616812330400 -1616812330429 ,112.5730121,26.89077544,59.24785233,180.4528682,180.7781803,9.203603,0.08362744,1620000000000 ,1620000000000 ,1620000000000 ,1616812330410 -1616812330440 ,112.573012,26.8907746,59.24697876,180.4521578,180.782295,9.200731,0.083604151,1620000000000 ,1620000000000 ,1620000000000 ,1616812330420 -1616812330450 ,112.573012,26.89077377,59.24613571,180.4537698,180.7946036,9.199205,0.083587425,1620000000000 ,1620000000000 ,1620000000000 ,1616812330430 -1616812330459 ,112.573012,26.89077293,59.24531555,180.4539064,180.8004468,9.197782,0.083576946,1620000000000 ,1620000000000 ,1620000000000 ,1616812330440 -1616812330469 ,112.573012,26.8907721,59.24426651,180.4546713,180.9386217,9.195689,0.083317546,1620000000000 ,1620000000000 ,1620000000000 ,1616812330450 -1616812330480 ,112.573012,26.89077127,59.24298859,180.4539883,181.0725515,9.193383,0.083055683,1620000000000 ,1620000000000 ,1620000000000 ,1616812330460 -1616812330489 ,112.573012,26.89077044,59.24167633,180.4552178,181.0713718,9.188717,0.083016474,1620000000000 ,1620000000000 ,1620000000000 ,1616812330470 -1616812330500 ,112.573012,26.89076961,59.24035645,180.4565838,181.0683834,9.185199,0.082980762,1620000000000 ,1620000000000 ,1620000000000 ,1616812330480 -1616812330509 ,112.5730119,26.89076878,59.23904419,180.4587421,181.058533,9.182308,0.082954932,1620000000000 ,1620000000000 ,1620000000000 ,1616812330490 -1616812330519 ,112.5730119,26.89076795,59.23776245,180.4630588,181.035721,9.179884,0.082930919,1620000000000 ,1620000000000 ,1620000000000 ,1616812330500 -1616812330529 ,112.5730119,26.89076712,59.23649216,180.4668291,181.0174527,9.178333,0.082914731,1620000000000 ,1620000000000 ,1620000000000 ,1616812330510 -1616812330541 ,112.5730119,26.89076629,59.23522186,180.4713917,181.0076781,9.177144,0.082905382,1620000000000 ,1620000000000 ,1620000000000 ,1616812330520 -1616812330553 ,112.5730119,26.89076546,59.23395538,180.4778394,181.0014975,9.174721,0.082885311,1620000000000 ,1620000000000 ,1620000000000 ,1616812330530 -1616812330561 ,112.5730119,26.89076464,59.23270416,180.4833855,181.0014662,9.171311,0.082859444,1620000000000 ,1620000000000 ,1620000000000 ,1616812330540 -1616812330570 ,112.5730119,26.89076381,59.23146057,180.4900244,181.0009214,9.1670885,0.082820993,1620000000000 ,1620000000000 ,1620000000000 ,1616812330550 -1616812330579 ,112.5730118,26.89076298,59.23020554,180.4932209,181.0012554,9.16378,0.082787598,1620000000000 ,1620000000000 ,1620000000000 ,1616812330560 -1616812330592 ,112.5730118,26.89076215,59.22893143,180.4992861,181.002923,9.161975,0.082768572,1620000000000 ,1620000000000 ,1620000000000 ,1616812330570 -1616812330603 ,112.5730118,26.89076133,59.2276268,180.5032203,181.0134591,9.160463,0.082752046,1620000000000 ,1620000000000 ,1620000000000 ,1616812330580 -1616812330610 ,112.5730118,26.8907605,59.22629547,180.508302,181.02199,9.159815,0.0827421,1620000000000 ,1620000000000 ,1620000000000 ,1616812330590 -1616812330621 ,112.5730118,26.89075967,59.22495651,180.512728,181.0318658,9.157071,0.082721168,1620000000000 ,1620000000000 ,1620000000000 ,1616812330600 -1616812330633 ,112.5730118,26.89075884,59.22364426,180.5180828,181.0356645,9.154619,0.082701382,1620000000000 ,1620000000000 ,1620000000000 ,1616812330610 -1616812330641 ,112.5730117,26.89075802,59.22237396,180.5208149,181.0402698,9.151486,0.082675244,1620000000000 ,1620000000000 ,1620000000000 ,1616812330620 -1616812330651 ,112.5730117,26.89075719,59.22112274,180.5247764,181.0549763,9.149022,0.082651141,1620000000000 ,1620000000000 ,1620000000000 ,1616812330630 -1616812330661 ,112.5730117,26.89075636,59.21987152,180.5290658,181.0678613,9.145365,0.082622071,1620000000000 ,1620000000000 ,1620000000000 ,1616812330640 -1616812330673 ,112.5730117,26.89075554,59.21863174,180.533,181.0772854,9.142769,0.082595291,1620000000000 ,1620000000000 ,1620000000000 ,1616812330650 -1616812330682 ,112.5730117,26.89075471,59.21742249,180.53718,181.0891561,9.139907,0.082573641,1620000000000 ,1620000000000 ,1620000000000 ,1616812330660 -1616812330692 ,112.5730117,26.89075389,59.21624374,180.5391744,181.1055858,9.137545,0.082550369,1620000000000 ,1620000000000 ,1620000000000 ,1616812330670 -1616812330702 ,112.5730117,26.89075306,59.21507263,180.5400214,181.1215014,9.134826,0.082529084,1620000000000 ,1620000000000 ,1620000000000 ,1616812330680 -1616812330712 ,112.5730116,26.89075224,59.21388245,180.543136,181.1437728,9.133351,0.082509168,1620000000000 ,1620000000000 ,1620000000000 ,1616812330690 -1616812330722 ,112.5730116,26.89075141,59.21268082,180.545267,181.1601852,9.131202,0.082495686,1620000000000 ,1620000000000 ,1620000000000 ,1616812330700 -1616812330733 ,112.5730116,26.89075059,59.211483,180.5447752,181.1704207,9.128432,0.08246756,1620000000000 ,1620000000000 ,1620000000000 ,1616812330710 -1616812330742 ,112.5730116,26.89074976,59.21029663,180.5442834,181.187119,9.126676,0.082452325,1620000000000 ,1620000000000 ,1620000000000 ,1616812330720 -1616812330760 ,112.5730116,26.89074894,59.20907593,180.5475346,181.1897713,9.12268,0.082419248,1620000000000 ,1620000000000 ,1620000000000 ,1616812330730 -1616812330769 ,112.5730116,26.89074812,59.20780563,180.5516874,181.2028221,9.120269,0.082390562,1620000000000 ,1620000000000 ,1620000000000 ,1616812330740 -1616812330780 ,112.5730115,26.89074729,59.2065239,180.5557581,181.2091894,9.117942,0.082369242,1620000000000 ,1620000000000 ,1620000000000 ,1616812330750 -1616812330783 ,112.5730115,26.89074647,59.2052803,180.5573701,181.1951644,9.115403,0.082346756,1620000000000 ,1620000000000 ,1620000000000 ,1616812330760 -1616812330793 ,112.5730115,26.89074565,59.20411301,180.5595011,181.1963681,9.112725,0.082327146,1620000000000 ,1620000000000 ,1620000000000 ,1616812330770 -1616812330802 ,112.5730115,26.89074482,59.20299911,180.5612223,181.2069827,9.108015,0.082292527,1620000000000 ,1620000000000 ,1620000000000 ,1616812330780 -1616812330812 ,112.5730115,26.890744,59.20191956,180.5639817,181.2056253,9.104761,0.082260554,1620000000000 ,1620000000000 ,1620000000000 ,1616812330790 -1616812330823 ,112.5730115,26.89074318,59.20086288,180.566304,181.2029535,9.102093,0.082235011,1620000000000 ,1620000000000 ,1620000000000 ,1616812330800 -1616812330833 ,112.5730114,26.89074236,59.19978714,180.5676973,181.1935489,9.10113,0.082220989,1620000000000 ,1620000000000 ,1620000000000 ,1616812330810 -1616812330842 ,112.5730114,26.89074154,59.1986351,180.5711397,181.1921636,9.099541,0.082207025,1620000000000 ,1620000000000 ,1620000000000 ,1616812330820 -1616812330854 ,112.5730114,26.89074071,59.19742966,180.5754837,181.2057915,9.096564,0.082178845,1620000000000 ,1620000000000 ,1620000000000 ,1616812330830 -1616812330867 ,112.5730114,26.89073989,59.19625473,180.5783251,181.2089118,9.092678,0.082146478,1620000000000 ,1620000000000 ,1620000000000 ,1616812330840 -1616812330878 ,112.5730114,26.89073907,59.19515228,180.5811391,181.2047593,9.08888,0.082113053,1620000000000 ,1620000000000 ,1620000000000 ,1616812330850 -1616812330884 ,112.5730113,26.89073825,59.19407272,180.5848548,181.1984112,9.086593,0.082092165,1620000000000 ,1620000000000 ,1620000000000 ,1616812330870 -1616812330893 ,112.5730113,26.89073743,59.19295502,180.5887343,181.2068563,9.084197,0.082067355,1620000000000 ,1620000000000 ,1620000000000 ,1616812330880 -1616812330903 ,112.5730113,26.89073661,59.19179535,180.5922587,181.2199792,9.082887,0.082050471,1620000000000 ,1620000000000 ,1620000000000 ,1616812330880 -1616812330916 ,112.5730113,26.89073579,59.19063568,180.5957011,181.2163382,9.080442,0.082032013,1620000000000 ,1620000000000 ,1620000000000 ,1616812330900 -1616812330924 ,112.5730113,26.89073497,59.18950653,180.5976955,181.2125113,9.077413,0.082007483,1620000000000 ,1620000000000 ,1620000000000 ,1616812330900 -1616812330936 ,112.5730112,26.89073333,59.18738174,180.603105,181.2153172,9.069715,0.16391662,1620000000000 ,1620000000000 ,1620000000000 ,1616812330920 -1616812330943 ,112.5730112,26.89073251,59.18634033,180.6054546,181.2315253,9.068513,0.081924675,1620000000000 ,1620000000000 ,1620000000000 ,1616812330930 -1616812330954 ,112.5730112,26.89073251,59.18634033,180.6054546,-400,9.068513,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812330940 -1616812330966 ,112.5730112,26.89073087,59.18417358,180.6101265,181.2341147,9.065468,0.163811057,1620000000000 ,1620000000000 ,1620000000000 ,1616812330950 -1616812330974 ,112.5730112,26.89073006,59.18310165,180.6119023,181.2422589,9.06231,0.081873007,1620000000000 ,1620000000000 ,1620000000000 ,1616812330960 -1616812330984 ,112.5730112,26.89072924,59.18207169,180.6138148,181.2492221,9.058161,0.081839625,1620000000000 ,1620000000000 ,1620000000000 ,1616812330970 -1616812330995 ,112.5730111,26.89072842,59.18107605,180.6166561,181.2552703,9.055246,0.081811161,1620000000000 ,1620000000000 ,1620000000000 ,1616812330980 -1616812331011 ,112.5730111,26.89072842,59.18107605,180.6166561,-400,9.055246,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812330980 -1616812331016 ,112.5730111,26.89072678,59.17910385,180.6233224,181.254627,9.049503,0.163545769,1620000000000 ,1620000000000 ,1620000000000 ,1616812331000 -1616812331028 ,112.5730111,26.89072597,59.17812347,180.6239781,181.2540027,9.047234,0.081739563,1620000000000 ,1620000000000 ,1620000000000 ,1616812331010 -1616812331038 ,112.5730111,26.89072515,59.17715454,180.6255627,181.2623677,9.044802,0.081718239,1620000000000 ,1620000000000 ,1620000000000 ,1616812331020 -1616812331047 ,112.573011,26.89072433,59.1762085,180.6280216,181.2773105,9.0425005,0.08169915,1620000000000 ,1620000000000 ,1620000000000 ,1616812331030 -1616812331056 ,112.573011,26.89072352,59.17528534,180.6297701,181.2824631,9.039262,0.081674331,1620000000000 ,1620000000000 ,1620000000000 ,1616812331040 -1616812331067 ,112.573011,26.8907227,59.17439651,180.6306443,181.2870636,9.035162,0.081639748,1620000000000 ,1620000000000 ,1620000000000 ,1616812331050 -1616812331076 ,112.573011,26.89072189,59.17350769,180.632065,181.2958477,9.032063,0.081610007,1620000000000 ,1620000000000 ,1620000000000 ,1616812331060 -1616812331085 ,112.573011,26.89072107,59.17258072,180.6322289,181.3089609,9.0294695,0.08158537,1620000000000 ,1620000000000 ,1620000000000 ,1616812331070 -1616812331095 ,112.573011,26.89072025,59.17161942,180.6314913,181.3259408,9.027354,0.081563359,1620000000000 ,1620000000000 ,1620000000000 ,1616812331080 -1616812331106 ,112.5730109,26.89071944,59.17067337,180.6319831,181.3343555,9.024715,0.08154322,1620000000000 ,1620000000000 ,1620000000000 ,1616812331090 -1616812331116 ,112.5730109,26.89071862,59.16976166,180.6324748,181.331742,9.021474,0.081516476,1620000000000 ,1620000000000 ,1620000000000 ,1616812331100 -1616812331125 ,112.5730109,26.89071781,59.16887665,180.632147,181.3321655,9.0186205,0.081494543,1620000000000 ,1620000000000 ,1620000000000 ,1616812331110 -1616812331135 ,112.5730109,26.89071699,59.16799545,180.6311361,181.3364656,9.01531,0.081463116,1620000000000 ,1620000000000 ,1620000000000 ,1616812331120 -1616812331146 ,112.5730109,26.89071618,59.16711044,180.6300706,181.341687,9.013862,0.081447606,1620000000000 ,1620000000000 ,1620000000000 ,1616812331130 -1616812331160 ,112.5730108,26.89071537,59.16622925,180.6283494,181.344837,9.010919,0.081425312,1620000000000 ,1620000000000 ,1620000000000 ,1616812331140 -1616812331176 ,112.5730108,26.89071455,59.1653595,180.6273112,181.337007,9.008532,0.081402605,1620000000000 ,1620000000000 ,1620000000000 ,1616812331150 -1616812331186 ,112.5730108,26.89071374,59.16452026,180.624907,181.3311339,9.00508,0.081376674,1620000000000 ,1620000000000 ,1620000000000 ,1616812331160 -1616812331188 ,112.5730108,26.89071293,59.16368103,180.6214099,181.3302625,9.002397,0.081349969,1620000000000 ,1620000000000 ,1620000000000 ,1616812331170 -1616812331196 ,112.5730108,26.89071211,59.16280365,180.6186505,181.3307693,9.000207,0.081330003,1620000000000 ,1620000000000 ,1620000000000 ,1616812331180 -1616812331211 ,112.5730107,26.8907113,59.16189194,180.6134869,181.3299587,8.996562,0.081296848,1620000000000 ,1620000000000 ,1620000000000 ,1616812331190 -1616812331220 ,112.5730107,26.89071049,59.16122818,180.6060557,181.1805833,8.990405,0.081280198,1620000000000 ,1620000000000 ,1620000000000 ,1616812331200 -1616812331229 ,112.5730107,26.89070968,59.16090393,180.6017663,180.9274807,8.987566,0.081245803,1620000000000 ,1620000000000 ,1620000000000 ,1616812331210 -1616812331237 ,112.5730107,26.89070886,59.16057968,180.5985425,180.9294461,8.985889,0.081228203,1620000000000 ,1620000000000 ,1620000000000 ,1616812331220 -1616812331246 ,112.5730107,26.89070805,59.16020584,180.5947995,180.931667,8.983916,0.081208951,1620000000000 ,1620000000000 ,1620000000000 ,1616812331230 -1616812331259 ,112.5730107,26.89070724,59.15977097,180.5912205,180.9194321,8.981703,0.08118949,1620000000000 ,1620000000000 ,1620000000000 ,1616812331240 -1616812331269 ,112.5730107,26.89070643,59.15929413,180.5873956,180.9074678,8.979656,0.081166128,1620000000000 ,1620000000000 ,1620000000000 ,1616812331250 -1616812331278 ,112.5730107,26.89070562,59.15879059,180.5826964,180.9051168,8.977599,0.081146178,1620000000000 ,1620000000000 ,1620000000000 ,1616812331260 -1616812331289 ,112.5730106,26.89070481,59.15825272,180.5778606,180.902016,8.9746065,0.081120625,1620000000000 ,1620000000000 ,1620000000000 ,1616812331270 -1616812331298 ,112.5730106,26.89070399,59.15769577,180.5738718,180.8986351,8.970838,0.08108936,1620000000000 ,1620000000000 ,1620000000000 ,1616812331280 -1616812331309 ,112.5730106,26.89070318,59.15712357,180.5682164,180.8871344,8.968048,0.081060475,1620000000000 ,1620000000000 ,1620000000000 ,1616812331290 -1616812331319 ,112.5730106,26.89070237,59.15652847,180.563244,180.8741423,8.965138,0.08103187,1620000000000 ,1620000000000 ,1620000000000 ,1616812331300 -1616812331327 ,112.5730106,26.89070156,59.15587616,180.5571515,180.868176,8.963935,0.08101499,1620000000000 ,1620000000000 ,1620000000000 ,1616812331310 -1616812331337 ,112.5730106,26.89070075,59.15516663,180.5533266,180.8673703,8.9624815,0.081001149,1620000000000 ,1620000000000 ,1620000000000 ,1616812331320 -1616812331359 ,112.5730106,26.89069994,59.15442276,180.5476712,180.8634112,8.960208,0.080980887,1620000000000 ,1620000000000 ,1620000000000 ,1616812331330 -1616812331361 ,112.5730106,26.89069913,59.15370178,180.5423437,180.8538838,8.956831,0.080952731,1620000000000 ,1620000000000 ,1620000000000 ,1616812331340 -1616812331368 ,112.5730105,26.89069833,59.15299606,180.5370434,180.8418555,8.9541445,0.08092803,1620000000000 ,1620000000000 ,1620000000000 ,1616812331350 -1616812331378 ,112.5730105,26.89069752,59.15229416,180.530705,180.8382126,8.951643,0.080905239,1620000000000 ,1620000000000 ,1620000000000 ,1616812331360 -1616812331388 ,112.5730105,26.89069671,59.15155792,180.5286013,180.8354049,8.948983,0.080878392,1620000000000 ,1620000000000 ,1620000000000 ,1616812331370 -1616812331399 ,112.5730105,26.8906959,59.15080643,180.5216618,180.8321548,8.946432,0.080856186,1620000000000 ,1620000000000 ,1620000000000 ,1616812331380 -1616812331408 ,112.5730105,26.89069509,59.15006256,180.5157059,180.8265469,8.944247,0.080834947,1620000000000 ,1620000000000 ,1620000000000 ,1616812331390 -1616812331418 ,112.5730105,26.89069428,59.14932251,180.509067,180.8166347,8.9410715,0.080809685,1620000000000 ,1620000000000 ,1620000000000 ,1616812331400 -1616812331428 ,112.5730105,26.89069348,59.14857101,180.5027832,180.8090778,8.938046,0.08078073,1620000000000 ,1620000000000 ,1620000000000 ,1616812331410 -1616812331444 ,112.5730105,26.89069267,59.14782333,180.4988763,180.8036935,8.93466,0.080750987,1620000000000 ,1620000000000 ,1620000000000 ,1616812331420 -1616812331451 ,112.5730104,26.89069186,59.14710617,180.493904,180.7913849,8.931628,0.080722889,1620000000000 ,1620000000000 ,1620000000000 ,1616812331430 -1616812331460 ,112.5730104,26.89069105,59.1464119,180.4871284,180.7847005,8.929404,0.08070414,1620000000000 ,1620000000000 ,1620000000000 ,1616812331440 -1616812331471 ,112.5730104,26.89069025,59.14547729,180.4803529,180.9318515,8.928522,0.080677327,1620000000000 ,1620000000000 ,1620000000000 ,1616812331450 -1616812331482 ,112.5730104,26.89068944,59.14427948,180.4751346,181.0826634,8.927249,0.080653556,1620000000000 ,1620000000000 ,1620000000000 ,1616812331460 -1616812331491 ,112.5730104,26.89068863,59.14305115,180.4677034,181.0819283,8.924742,0.080630905,1620000000000 ,1620000000000 ,1620000000000 ,1616812331470 -1616812331502 ,112.5730104,26.89068783,59.14182281,180.4607092,181.0684634,8.921189,0.080602529,1620000000000 ,1620000000000 ,1620000000000 ,1616812331480 -1616812331511 ,112.5730104,26.89068702,59.14061737,180.4543435,181.058475,8.922235,0.080596235,1620000000000 ,1620000000000 ,1620000000000 ,1616812331490 -1616812331520 ,112.5730103,26.89068622,59.13946152,180.4497809,181.0514394,8.922755,0.080619934,1620000000000 ,1620000000000 ,1620000000000 ,1616812331500 -1616812331534 ,112.5730103,26.89068541,59.13831329,180.4472674,181.0612377,8.908941,0.080526166,1620000000000 ,1620000000000 ,1620000000000 ,1616812331510 -1616812331543 ,112.5730103,26.89068461,59.13720322,180.4419945,181.0582614,8.89841,0.080410982,1620000000000 ,1620000000000 ,1620000000000 ,1616812331520 -1616812331551 ,112.5730103,26.8906838,59.13611221,180.4380057,181.0276517,8.891234,0.080350803,1620000000000 ,1620000000000 ,1620000000000 ,1616812331530 -1616812331561 ,112.5730103,26.890683,59.13498306,180.4327055,181.0318983,8.889326,0.080309452,1620000000000 ,1620000000000 ,1620000000000 ,1616812331540 -1616812331572 ,112.5730103,26.8906822,59.13378906,180.4280609,181.0359753,8.893465,0.080333301,1620000000000 ,1620000000000 ,1620000000000 ,1616812331550 -1616812331584 ,112.5730103,26.89068139,59.13259506,180.4230612,181.0384358,8.897427,0.080374218,1620000000000 ,1620000000000 ,1620000000000 ,1616812331560 -1616812331593 ,112.5730102,26.89068059,59.13145065,180.4150016,181.0359396,8.900863,0.080405942,1620000000000 ,1620000000000 ,1620000000000 ,1616812331570 -1616812331602 ,112.5730102,26.89067979,59.13035583,180.4079802,181.0297054,8.89886,0.080406847,1620000000000 ,1620000000000 ,1620000000000 ,1616812331580 -1616812331612 ,112.5730102,26.89067898,59.12923813,180.4051388,181.013535,8.890126,0.080342751,1620000000000 ,1620000000000 ,1620000000000 ,1616812331590 -1616812331622 ,112.5730102,26.89067818,59.12807083,180.3996747,181.0075778,8.8804655,0.080250081,1620000000000 ,1620000000000 ,1620000000000 ,1616812331600 -1616812331633 ,112.5730102,26.89067738,59.12688828,180.3944018,180.9999802,8.872746,0.080175743,1620000000000 ,1620000000000 ,1620000000000 ,1616812331610 -1616812331642 ,112.5730102,26.89067658,59.12570953,180.3907135,180.9825275,8.868694,0.080128835,1620000000000 ,1620000000000 ,1620000000000 ,1616812331620 -1616812331652 ,112.5730102,26.89067578,59.12451553,180.3883366,180.9802998,8.868196,0.080115464,1620000000000 ,1620000000000 ,1620000000000 ,1616812331630 -1616812331662 ,112.5730101,26.89067498,59.12330246,180.3847849,180.9870852,8.871215,0.080130759,1620000000000 ,1620000000000 ,1620000000000 ,1616812331640 -1616812331671 ,112.5730101,26.89067417,59.12205887,180.3809599,180.9938629,8.875389,0.080167042,1620000000000 ,1620000000000 ,1620000000000 ,1616812331650 -1616812331689 ,112.5730101,26.89067337,59.12080002,180.3764247,180.9964139,8.874751,0.080172568,1620000000000 ,1620000000000 ,1620000000000 ,1616812331660 -1616812331692 ,112.5730101,26.89067257,59.11955643,180.3698677,180.9892547,8.870749,0.080142718,1620000000000 ,1620000000000 ,1620000000000 ,1616812331670 -1616812331702 ,112.5730101,26.89067177,59.11835098,180.364267,180.9829316,8.862578,0.080079825,1620000000000 ,1620000000000 ,1620000000000 ,1616812331680 -1616812331712 ,112.5730101,26.89067097,59.11717224,180.357628,180.9798985,8.855128,0.080008,1620000000000 ,1620000000000 ,1620000000000 ,1616812331690 -1616812331722 ,112.5730101,26.89067017,59.11600494,180.3517267,180.9873657,8.849831,0.079955103,1620000000000 ,1620000000000 ,1620000000000 ,1616812331700 -1616812331733 ,112.5730101,26.89066937,59.11485291,180.3469729,181.0001772,8.8461485,0.079918165,1620000000000 ,1620000000000 ,1620000000000 ,1616812331710 -1616812331742 ,112.57301,26.89066857,59.11374283,180.3422191,180.9904818,8.844712,0.079901956,1620000000000 ,1620000000000 ,1620000000000 ,1616812331720 -1616812331753 ,112.57301,26.89066777,59.1126709,180.3370009,180.9846333,8.845585,0.079906214,1620000000000 ,1620000000000 ,1620000000000 ,1616812331730 -1616812331764 ,112.57301,26.89066698,59.1116066,180.3329027,180.9898702,8.846617,0.079914223,1620000000000 ,1620000000000 ,1620000000000 ,1616812331740 -1616812331774 ,112.57301,26.89066618,59.11050415,180.3278211,180.9945541,8.846901,0.079915489,1620000000000 ,1620000000000 ,1620000000000 ,1616812331750 -1616812331784 ,112.57301,26.89066538,59.10936356,180.3238596,180.9938021,8.845122,0.079903364,1620000000000 ,1620000000000 ,1620000000000 ,1616812331760 -1616812331793 ,112.57301,26.89066458,59.10823059,180.3183954,180.980406,8.840368,0.079865926,1620000000000 ,1620000000000 ,1620000000000 ,1616812331770 -1616812331803 ,112.57301,26.89066378,59.10708237,180.313505,180.9640928,8.831788,0.079795075,1620000000000 ,1620000000000 ,1620000000000 ,1616812331780 -1616812331813 ,112.5730099,26.89066298,59.10581589,180.3078223,180.9379085,8.831126,0.079752923,1620000000000 ,1620000000000 ,1620000000000 ,1616812331800 -1616812331823 ,112.5730099,26.89066219,59.10427475,180.3035876,180.9326096,8.827758,0.079743548,1620000000000 ,1620000000000 ,1620000000000 ,1616812331800 -1616812331835 ,112.5730099,26.89066139,59.10247421,180.2963202,180.96014,8.822523,0.079654236,1620000000000 ,1620000000000 ,1620000000000 ,1616812331820 -1616812331843 ,112.5730099,26.89066059,59.10076523,180.2868126,181.0058047,8.831182,0.079723485,1620000000000 ,1620000000000 ,1620000000000 ,1616812331830 -1616812331854 ,112.5730099,26.8906598,59.09941864,180.2821681,180.9098931,8.826712,0.079729878,1620000000000 ,1620000000000 ,1620000000000 ,1616812331840 -1616812331871 ,112.5730099,26.8906582,59.09755707,180.2732888,180.8789128,8.798771,0.159194557,1620000000000 ,1620000000000 ,1620000000000 ,1616812331850 -1616812331874 ,112.5730099,26.89065741,59.09679413,180.2727971,180.8857097,8.79164,0.079426492,1620000000000 ,1620000000000 ,1620000000000 ,1616812331860 -1616812331884 ,112.5730099,26.89065741,59.09679413,180.2727971,-400,8.79164,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812331870 -1616812331893 ,112.5730098,26.89065582,59.09451294,180.2685897,180.8790353,8.816863,0.159051308,1620000000000 ,1620000000000 ,1620000000000 ,1616812331880 -1616812331904 ,112.5730098,26.89065582,59.09451294,180.2685897,-400,8.816863,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812331880 -1616812331915 ,112.5730098,26.89065423,59.09160995,180.2552571,180.8972856,8.803947,0.159204658,1620000000000 ,1620000000000 ,1620000000000 ,1616812331900 -1616812331924 ,112.5730098,26.89065343,59.09077454,180.2487275,180.8660956,8.780931,0.079365202,1620000000000 ,1620000000000 ,1620000000000 ,1616812331910 -1616812331934 ,112.5730098,26.89065264,59.09039688,180.2442469,180.8647915,8.773281,0.079277446,1620000000000 ,1620000000000 ,1620000000000 ,1616812331920 -1616812331944 ,112.5730098,26.89065185,59.09010696,180.2400668,180.8732785,8.778896,0.079302115,1620000000000 ,1620000000000 ,1620000000000 ,1616812331930 -1616812331954 ,112.5730098,26.89065105,59.08964539,180.2359141,180.8797426,8.785837,0.07936616,1620000000000 ,1620000000000 ,1620000000000 ,1616812331940 -1616812331970 ,112.5730097,26.89065026,59.08898544,180.2291385,180.8811339,8.785237,0.079368007,1620000000000 ,1620000000000 ,1620000000000 ,1616812331950 -1616812331975 ,112.5730097,26.89064947,59.08831024,180.2239202,180.8794694,8.778783,0.07931924,1620000000000 ,1620000000000 ,1620000000000 ,1616812331960 -1616812331985 ,112.5730097,26.89064868,59.0878334,180.2175545,180.8755326,8.772123,0.079270574,1620000000000 ,1620000000000 ,1620000000000 ,1616812331970 -1616812331995 ,112.5730097,26.89064788,59.08761978,180.2109429,180.8728284,8.767802,0.07923731,1620000000000 ,1620000000000 ,1620000000000 ,1616812331980 -1616812332005 ,112.5730097,26.89064788,59.08761978,180.2109429,-400,8.767802,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812331990 -1616812332022 ,112.5730097,26.8906463,59.08744812,180.2002331,180.8807518,8.762729,0.15842416,1620000000000 ,1620000000000 ,1620000000000 ,1616812332000 -1616812332025 ,112.5730097,26.89064551,59.08738327,180.1936215,180.8704561,8.757044,0.079155395,1620000000000 ,1620000000000 ,1620000000000 ,1616812332010 -1616812332035 ,112.5730097,26.89064472,59.08736038,180.1865728,180.849852,8.754052,0.079121124,1620000000000 ,1620000000000 ,1620000000000 ,1616812332020 -1616812332045 ,112.5730096,26.89064393,59.08731461,180.1811906,180.8380075,8.754066,0.079116698,1620000000000 ,1620000000000 ,1620000000000 ,1616812332030 -1616812332057 ,112.5730096,26.89064313,59.08723831,180.1761089,180.8327299,8.7505455,0.079096425,1620000000000 ,1620000000000 ,1620000000000 ,1616812332040 -1616812332071 ,112.5730096,26.89064234,59.08720016,180.1699891,180.8248111,8.7457,0.079057604,1620000000000 ,1620000000000 ,1620000000000 ,1616812332050 -1616812332076 ,112.5730096,26.89064155,59.08722305,180.1637873,180.8218585,8.74083,0.079016147,1620000000000 ,1620000000000 ,1620000000000 ,1616812332060 -1616812332087 ,112.5730096,26.89064076,59.08722305,180.1600716,180.8208045,8.738827,0.078991722,1620000000000 ,1620000000000 ,1620000000000 ,1616812332070 -1616812332098 ,112.5730096,26.89063997,59.08710861,180.1561921,180.8158138,8.738428,0.078981361,1620000000000 ,1620000000000 ,1620000000000 ,1616812332080 -1616812332108 ,112.5730096,26.89063918,59.08686829,180.1510831,180.806056,8.73642,0.078960786,1620000000000 ,1620000000000 ,1620000000000 ,1616812332090 -1616812332117 ,112.5730096,26.8906384,59.08658981,180.1452365,180.7914513,8.733277,0.078935462,1620000000000 ,1620000000000 ,1620000000000 ,1616812332100 -1616812332126 ,112.5730096,26.89063761,59.0862999,180.1421765,180.7804448,8.730166,0.078906917,1620000000000 ,1620000000000 ,1620000000000 ,1616812332110 -1616812332137 ,112.5730095,26.89063682,59.08598709,180.1385702,180.7828734,8.727993,0.078884094,1620000000000 ,1620000000000 ,1620000000000 ,1616812332120 -1616812332146 ,112.5730095,26.89063603,59.08559799,180.1355649,180.787623,8.725341,0.078858754,1620000000000 ,1620000000000 ,1620000000000 ,1616812332130 -1616812332157 ,112.5730095,26.89063524,59.08512497,180.1305106,180.7850443,8.72211,0.078828501,1620000000000 ,1620000000000 ,1620000000000 ,1616812332140 -1616812332170 ,112.5730095,26.89063445,59.08456802,180.1257568,180.7708921,8.718534,0.078791337,1620000000000 ,1620000000000 ,1620000000000 ,1616812332150 -1616812332177 ,112.5730095,26.89063367,59.0839119,180.1207844,180.7578088,8.717117,0.078769135,1620000000000 ,1620000000000 ,1620000000000 ,1616812332160 -1616812332193 ,112.5730095,26.89063288,59.0831604,180.1160852,180.7644675,8.715817,0.078753998,1620000000000 ,1620000000000 ,1620000000000 ,1616812332170 -1616812332198 ,112.5730095,26.89063209,59.08235931,180.1117959,180.7648056,8.71358,0.078731104,1620000000000 ,1620000000000 ,1620000000000 ,1616812332180 -1616812332207 ,112.5730095,26.8906313,59.08156967,180.1052116,180.7601012,8.711105,0.078712634,1620000000000 ,1620000000000 ,1620000000000 ,1616812332190 -1616812332218 ,112.5730095,26.89063052,59.08071899,180.1095009,180.4379303,8.696186,0.078574163,1620000000000 ,1620000000000 ,1620000000000 ,1616812332200 -1616812332227 ,112.5730095,26.89062974,59.07959747,180.1056487,179.888047,8.693883,0.078320354,1620000000000 ,1620000000000 ,1620000000000 ,1616812332210 -1616812332236 ,112.5730095,26.89062895,59.07838821,180.101332,179.8952196,8.691715,0.078295014,1620000000000 ,1620000000000 ,1620000000000 ,1616812332220 -1616812332247 ,112.5730095,26.89062817,59.07709122,180.0952941,179.9021258,8.688676,0.078267484,1620000000000 ,1620000000000 ,1620000000000 ,1616812332230 -1616812332257 ,112.5730095,26.89062739,59.07575226,180.0901305,179.8935026,8.685321,0.078234539,1620000000000 ,1620000000000 ,1620000000000 ,1616812332240 -1616812332269 ,112.5730095,26.89062661,59.07444,180.0861417,179.8854326,8.68138,0.078203264,1620000000000 ,1620000000000 ,1620000000000 ,1616812332250 -1616812332277 ,112.5730095,26.89062582,59.07317352,180.0814698,179.8725496,8.677175,0.078166414,1620000000000 ,1620000000000 ,1620000000000 ,1616812332260 -1616812332287 ,112.5730095,26.89062504,59.07192993,180.0795574,179.8660715,8.674283,0.078137817,1620000000000 ,1620000000000 ,1620000000000 ,1616812332270 -1616812332298 ,112.5730095,26.89062426,59.07066727,180.0776176,179.8704859,8.672538,0.078118537,1620000000000 ,1620000000000 ,1620000000000 ,1616812332280 -1616812332309 ,112.5730095,26.89062348,59.06934738,180.0772897,179.8671194,8.671606,0.078105738,1620000000000 ,1620000000000 ,1620000000000 ,1616812332290 -1616812332326 ,112.5730095,26.8906227,59.06798935,180.0768253,179.8585345,8.669459,0.078088333,1620000000000 ,1620000000000 ,1620000000000 ,1616812332300 -1616812332331 ,112.5730095,26.89062192,59.06662369,180.0754592,179.8540085,8.665998,0.078060059,1620000000000 ,1620000000000 ,1620000000000 ,1616812332310 -1616812332338 ,112.5730095,26.89062114,59.06526947,180.0725086,179.851868,8.662292,0.078027038,1620000000000 ,1620000000000 ,1620000000000 ,1616812332320 -1616812332347 ,112.5730095,26.89062036,59.06392288,180.073055,179.8677681,8.658875,0.077991974,1620000000000 ,1620000000000 ,1620000000000 ,1616812332330 -1616812332360 ,112.5730095,26.89061958,59.06257629,180.0723993,179.8783611,8.655393,0.077963669,1620000000000 ,1620000000000 ,1620000000000 ,1616812332340 -1616812332372 ,112.5730095,26.8906188,59.06123734,180.0725086,179.8764472,8.6518955,0.077932307,1620000000000 ,1620000000000 ,1620000000000 ,1616812332350 -1616812332380 ,112.5730095,26.89061802,59.05991364,180.0729184,179.8661518,8.64954,0.077907276,1620000000000 ,1620000000000 ,1620000000000 ,1616812332360 -1616812332392 ,112.5730095,26.89061724,59.05859756,180.0736561,179.880491,8.648066,0.077892411,1620000000000 ,1620000000000 ,1620000000000 ,1616812332370 -1616812332398 ,112.5730095,26.89061646,59.05728531,180.0768526,179.9027275,8.645559,0.077872743,1620000000000 ,1620000000000 ,1620000000000 ,1616812332380 -1616812332408 ,112.5730095,26.89061568,59.05599976,180.0790383,179.907411,8.642265,0.077846581,1620000000000 ,1620000000000 ,1620000000000 ,1616812332390 -1616812332419 ,112.5730095,26.89061491,59.05477524,180.0828905,179.9023758,8.637316,0.077809,1620000000000 ,1620000000000 ,1620000000000 ,1616812332400 -1616812332428 ,112.5730095,26.89061413,59.05361938,180.0871799,179.8967844,8.633707,0.077772551,1620000000000 ,1620000000000 ,1620000000000 ,1616812332410 -1616812332439 ,112.5730095,26.89061335,59.05247879,180.089666,179.905462,8.631603,0.07775156,1620000000000 ,1620000000000 ,1620000000000 ,1616812332420 -1616812332448 ,112.5730095,26.89061257,59.0512886,180.09401,179.9129154,8.631248,0.07774156,1620000000000 ,1620000000000 ,1620000000000 ,1616812332430 -1616812332458 ,112.5730095,26.8906118,59.05005646,180.0960318,179.9240337,8.629455,0.077729438,1620000000000 ,1620000000000 ,1620000000000 ,1616812332440 -1616812332471 ,112.5730095,26.89061102,59.04896545,180.0992829,180.2316706,8.626064,0.077815914,1620000000000 ,1620000000000 ,1620000000000 ,1616812332450 -1616812332478 ,112.5730095,26.89061024,59.04807281,180.1013593,180.5318656,8.621885,0.077897451,1620000000000 ,1620000000000 ,1620000000000 ,1616812332460 -1616812332488 ,112.5730095,26.89060946,59.04724121,180.1026161,180.5277038,8.618088,0.077864814,1620000000000 ,1620000000000 ,1620000000000 ,1616812332470 -1616812332499 ,112.5730095,26.89060868,59.04641724,180.1061951,180.5301455,8.615937,0.077841017,1620000000000 ,1620000000000 ,1620000000000 ,1616812332480 -1616812332511 ,112.5730095,26.8906079,59.04557037,180.1096375,180.5390212,8.613557,0.077821394,1620000000000 ,1620000000000 ,1620000000000 ,1616812332490 -1616812332519 ,112.5730095,26.89060713,59.04470825,180.1121783,180.543943,8.612429,0.077807789,1620000000000 ,1620000000000 ,1620000000000 ,1616812332500 -1616812332529 ,112.5730095,26.89060635,59.04384613,180.1120691,180.543953,8.610405,0.077793625,1620000000000 ,1620000000000 ,1620000000000 ,1616812332510 -1616812332542 ,112.5730094,26.89060557,59.04297256,180.1138449,180.5454575,8.609164,0.077777892,1620000000000 ,1620000000000 ,1620000000000 ,1616812332520 -1616812332550 ,112.5730094,26.89060479,59.04208755,180.1147738,180.5555458,8.606752,0.077761583,1620000000000 ,1620000000000 ,1620000000000 ,1616812332530 -1616812332561 ,112.5730094,26.89060402,59.04120255,180.1167956,180.5681575,8.60376,0.077735341,1620000000000 ,1620000000000 ,1620000000000 ,1616812332540 -1616812332572 ,112.5730094,26.89060324,59.04034424,180.1174239,180.5752934,8.601058,0.077712199,1620000000000 ,1620000000000 ,1620000000000 ,1616812332550 -1616812332579 ,112.5730094,26.89060246,59.03951645,180.1168775,180.5790231,8.596823,0.077680905,1620000000000 ,1620000000000 ,1620000000000 ,1616812332560 -1616812332590 ,112.5730094,26.89060168,59.03871155,180.1178611,180.5887455,8.594203,0.07765544,1620000000000 ,1620000000000 ,1620000000000 ,1616812332570 -1616812332601 ,112.5730094,26.89060091,59.03790665,180.1160579,180.5923316,8.591122,0.0776311,1620000000000 ,1620000000000 ,1620000000000 ,1616812332580 -1616812332611 ,112.5730094,26.89060013,59.03707886,180.1153476,180.5968101,8.588366,0.077603302,1620000000000 ,1620000000000 ,1620000000000 ,1616812332590 -1616812332621 ,112.5730094,26.89059936,59.03622437,180.1135171,180.6053018,8.586342,0.077583662,1620000000000 ,1620000000000 ,1620000000000 ,1616812332600 -1616812332631 ,112.5730094,26.89059858,59.03533554,180.1126701,180.6129056,8.583775,0.077560424,1620000000000 ,1620000000000 ,1620000000000 ,1616812332610 -1616812332640 ,112.5730094,26.89059781,59.03443909,180.1120691,180.6224745,8.581832,0.077543751,1620000000000 ,1620000000000 ,1620000000000 ,1616812332620 -1616812332650 ,112.5730094,26.89059703,59.03355408,180.112233,180.6278293,8.579813,0.077527223,1620000000000 ,1620000000000 ,1620000000000 ,1616812332630 -1616812332660 ,112.5730094,26.89059626,59.0327034,180.1113314,180.6360695,8.577044,0.077508082,1620000000000 ,1620000000000 ,1620000000000 ,1616812332640 -1616812332673 ,112.5730093,26.89059548,59.03186798,180.1102386,180.6401604,8.573629,0.0774801,1620000000000 ,1620000000000 ,1620000000000 ,1616812332650 -1616812332681 ,112.5730093,26.89059471,59.03100967,180.1111402,180.649444,8.570314,0.07744868,1620000000000 ,1620000000000 ,1620000000000 ,1616812332660 -1616812332690 ,112.5730093,26.89059393,59.03011322,180.1106757,180.6557201,8.568401,0.077428889,1620000000000 ,1620000000000 ,1620000000000 ,1616812332670 -1616812332701 ,112.5730093,26.89059316,59.02917862,180.1074245,180.6561127,8.565334,0.077403151,1620000000000 ,1620000000000 ,1620000000000 ,1616812332680 -1616812332711 ,112.5730093,26.89059238,59.02822876,180.1053208,180.6629096,8.562795,0.077377733,1620000000000 ,1620000000000 ,1620000000000 ,1616812332690 -1616812332723 ,112.5730093,26.89059161,59.02727509,180.1037909,180.6632521,8.560613,0.077359753,1620000000000 ,1620000000000 ,1620000000000 ,1616812332700 -1616812332736 ,112.5730093,26.89059084,59.02633667,180.102698,180.654539,8.557988,0.077336711,1620000000000 ,1620000000000 ,1620000000000 ,1616812332710 -1616812332750 ,112.5730093,26.89059006,59.02541351,180.1007036,180.6411818,8.555968,0.077321122,1620000000000 ,1620000000000 ,1620000000000 ,1616812332720 -1616812332753 ,112.5730093,26.89058929,59.02449036,180.0981355,180.6269231,8.5534725,0.07729978,1620000000000 ,1620000000000 ,1620000000000 ,1616812332730 -1616812332763 ,112.5730093,26.89058852,59.02353668,180.0977803,180.620637,8.550751,0.077273207,1620000000000 ,1620000000000 ,1620000000000 ,1616812332740 -1616812332777 ,112.5730093,26.89058775,59.0225563,180.0963869,180.6108643,8.547608,0.077246846,1620000000000 ,1620000000000 ,1620000000000 ,1616812332750 -1616812332784 ,112.5730092,26.89058697,59.02154541,180.0964416,180.5963304,8.543855,0.077213088,1620000000000 ,1620000000000 ,1620000000000 ,1616812332760 -1616812332792 ,112.5730092,26.8905862,59.02049637,180.0964689,180.5920698,8.54235,0.077191659,1620000000000 ,1620000000000 ,1620000000000 ,1616812332770 -1616812332802 ,112.5730092,26.89058543,59.01937103,180.0975891,180.582163,8.540836,0.077175091,1620000000000 ,1620000000000 ,1620000000000 ,1616812332780 -1616812332812 ,112.5730092,26.89058466,59.01815796,180.1002392,180.5750055,8.539211,0.077156376,1620000000000 ,1620000000000 ,1620000000000 ,1616812332790 -1616812332824 ,112.5730092,26.89058389,59.01688766,180.1002392,180.5631146,8.537794,0.077139799,1620000000000 ,1620000000000 ,1620000000000 ,1616812332800 -1616812332837 ,112.5730092,26.89058312,59.01556778,180.1016872,180.5532429,8.535623,0.077118907,1620000000000 ,1620000000000 ,1620000000000 ,1616812332810 -1616812332842 ,112.5730092,26.89058235,59.01417923,180.1046378,180.545433,8.53371,0.077096938,1620000000000 ,1620000000000 ,1620000000000 ,1616812332820 -1616812332853 ,112.5730092,26.89058157,59.01271439,180.1066049,180.5367539,8.532024,0.077077472,1620000000000 ,1620000000000 ,1620000000000 ,1616812332830 -1616812332865 ,112.5730092,26.8905808,59.01116943,180.1076977,180.5307191,8.529676,0.077052387,1620000000000 ,1620000000000 ,1620000000000 ,1616812332840 -1616812332873 ,112.5730092,26.89058003,59.00957108,180.1075611,180.5250544,8.527802,0.077029501,1620000000000 ,1620000000000 ,1620000000000 ,1616812332850 -1616812332883 ,112.5730092,26.89057926,59.00790787,180.1099107,180.5173574,8.52628,0.077012426,1620000000000 ,1620000000000 ,1620000000000 ,1616812332860 -1616812332892 ,112.5730092,26.89057849,59.00615692,180.1109216,180.5161899,8.525407,0.076998734,1620000000000 ,1620000000000 ,1620000000000 ,1616812332880 -1616812332904 ,112.5730092,26.89057772,59.00432587,180.1112768,180.5276615,8.523118,0.07697468,1620000000000 ,1620000000000 ,1620000000000 ,1616812332880 -1616812332917 ,112.5730092,26.89057695,59.00246429,180.1123696,180.534462,8.520478,0.076949117,1620000000000 ,1620000000000 ,1620000000000 ,1616812332900 -1616812332924 ,112.5730091,26.89057542,58.99873352,180.1142001,180.5246292,8.514837,0.153819779,1620000000000 ,1620000000000 ,1620000000000 ,1616812332910 -1616812332934 ,112.5730091,26.89057465,58.99685287,180.1137903,180.5318075,8.511993,0.076869895,1620000000000 ,1620000000000 ,1620000000000 ,1616812332920 -1616812332944 ,112.5730091,26.89057465,58.99685287,180.1137903,-400,8.511993,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812332930 -1616812332954 ,112.5730091,26.89057311,58.99311066,180.1143367,180.5442762,8.50764,0.153672738,1620000000000 ,1620000000000 ,1620000000000 ,1616812332940 -1616812332972 ,112.5730091,26.89057234,58.99126816,180.1125062,180.5391554,8.506982,0.07681828,1620000000000 ,1620000000000 ,1620000000000 ,1616812332950 -1616812332977 ,112.5730091,26.89057158,58.98941803,180.1120417,180.5458385,8.505672,0.076806807,1620000000000 ,1620000000000 ,1620000000000 ,1616812332960 -1616812332994 ,112.5730091,26.89057081,58.98755646,180.1112494,180.5562104,8.504155,0.076794578,1620000000000 ,1620000000000 ,1620000000000 ,1616812332970 -1616812332997 ,112.5730091,26.89057004,58.98570251,180.1097468,180.5622021,8.501028,0.076769541,1620000000000 ,1620000000000 ,1620000000000 ,1616812332980 -1616812333005 ,112.5730091,26.89057004,58.98570251,180.1097468,-400,8.501028,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812332980 -1616812333015 ,112.5730091,26.89056851,58.98216248,180.1053755,180.5611512,8.493284,0.153443549,1620000000000 ,1620000000000 ,1620000000000 ,1616812333000 -1616812333024 ,112.5730091,26.89056774,58.98048401,180.1010315,180.5648753,8.490527,0.076679401,1620000000000 ,1620000000000 ,1620000000000 ,1616812333010 -1616812333034 ,112.5730091,26.89056697,58.97883606,180.098518,180.5728852,8.487486,0.076657094,1620000000000 ,1620000000000 ,1620000000000 ,1616812333020 -1616812333045 ,112.5730091,26.89056697,58.97883606,180.098518,-400,8.487486,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812333030 -1616812333055 ,112.573009,26.89056544,58.97562027,180.0906223,180.5873668,8.474018,0.153155213,1620000000000 ,1620000000000 ,1620000000000 ,1616812333040 -1616812333066 ,112.573009,26.89056468,58.97409821,180.085486,180.597348,8.4662,0.076477849,1620000000000 ,1620000000000 ,1620000000000 ,1616812333050 -1616812333075 ,112.573009,26.89056391,58.97263718,180.0811966,180.6048965,8.4601,0.076419876,1620000000000 ,1620000000000 ,1620000000000 ,1616812333060 -1616812333085 ,112.573009,26.89056315,58.97124481,180.0769346,180.609152,8.456052,0.076383676,1620000000000 ,1620000000000 ,1620000000000 ,1616812333070 -1616812333095 ,112.573009,26.89056238,58.96992493,180.0750768,180.6123916,8.453863,0.076362269,1620000000000 ,1620000000000 ,1620000000000 ,1616812333080 -1616812333108 ,112.573009,26.89056162,58.96866608,180.0715797,180.6162323,8.451421,0.076345246,1620000000000 ,1620000000000 ,1620000000000 ,1616812333090 -1616812333115 ,112.573009,26.89056086,58.96744156,180.0677275,180.6272229,8.447581,0.076314526,1620000000000 ,1620000000000 ,1620000000000 ,1616812333100 -1616812333125 ,112.573009,26.8905601,58.96620941,180.0652959,180.6349282,8.440607,0.076255465,1620000000000 ,1620000000000 ,1620000000000 ,1616812333110 -1616812333135 ,112.573009,26.89055933,58.96496582,180.0618535,180.6454208,8.431672,0.076178369,1620000000000 ,1620000000000 ,1620000000000 ,1616812333120 -1616812333146 ,112.573009,26.89055857,58.96371841,180.0571543,180.6633375,8.423949,0.076104136,1620000000000 ,1620000000000 ,1620000000000 ,1616812333130 -1616812333156 ,112.573009,26.89055781,58.96247482,180.0519634,180.6759207,8.416197,0.076032875,1620000000000 ,1620000000000 ,1620000000000 ,1616812333140 -1616812333165 ,112.5730089,26.89055705,58.96124268,180.0478926,180.68341,8.409873,0.075968652,1620000000000 ,1620000000000 ,1620000000000 ,1616812333150 -1616812333176 ,112.5730089,26.89055629,58.96001816,180.0420186,180.6761721,8.405931,0.075925982,1620000000000 ,1620000000000 ,1620000000000 ,1616812333160 -1616812333188 ,112.5730089,26.89055553,58.95878983,180.037538,180.6785788,8.40205,0.075889486,1620000000000 ,1620000000000 ,1620000000000 ,1616812333170 -1616812333196 ,112.5730089,26.89055478,58.95752716,180.0302434,180.6904955,8.398574,0.075852448,1620000000000 ,1620000000000 ,1620000000000 ,1616812333180 -1616812333207 ,112.5730089,26.89055402,58.95625305,180.02314,180.6962434,8.39294,0.075805973,1620000000000 ,1620000000000 ,1620000000000 ,1616812333190 -1616812333216 ,112.5730089,26.89055326,58.95495605,180.0086873,180.6536994,8.403115,0.075963757,1620000000000 ,1620000000000 ,1620000000000 ,1616812333200 -1616812333226 ,112.5730089,26.8905525,58.95358658,180.0015293,180.5875806,8.397196,0.076267749,1620000000000 ,1620000000000 ,1620000000000 ,1616812333210 -1616812333240 ,112.5730089,26.89055173,58.95224762,179.9951635,180.5614758,8.390686,0.076209589,1620000000000 ,1620000000000 ,1620000000000 ,1616812333220 -1616812333250 ,112.5730089,26.89055097,58.95092773,179.9877323,180.536707,8.384155,0.076147241,1620000000000 ,1620000000000 ,1620000000000 ,1616812333230 -1616812333258 ,112.5730089,26.89055021,58.94961548,179.9835522,180.5247288,8.37939,0.076098475,1620000000000 ,1620000000000 ,1620000000000 ,1616812333240 -1616812333271 ,112.5730089,26.89054945,58.94831085,179.9788257,180.5091705,8.373966,0.076050101,1620000000000 ,1620000000000 ,1620000000000 ,1616812333250 -1616812333278 ,112.5730089,26.89054869,58.94699478,179.9740173,180.4857413,8.370883,0.076011966,1620000000000 ,1620000000000 ,1620000000000 ,1616812333260 -1616812333288 ,112.5730089,26.89054793,58.9456749,179.9679794,180.4567756,8.367415,0.075980087,1620000000000 ,1620000000000 ,1620000000000 ,1616812333270 -1616812333298 ,112.5730088,26.89054717,58.94430923,179.9641272,180.4291922,8.363644,0.075940048,1620000000000 ,1620000000000 ,1620000000000 ,1616812333280 -1616812333309 ,112.5730088,26.89054641,58.94286728,179.95951,180.4186096,8.358782,0.075897227,1620000000000 ,1620000000000 ,1620000000000 ,1616812333290 -1616812333317 ,112.5730088,26.89054565,58.9413681,179.9539365,180.4138956,8.352148,0.075836626,1620000000000 ,1620000000000 ,1620000000000 ,1616812333300 -1616812333327 ,112.5730088,26.8905449,58.93984222,179.9507946,180.4000511,8.346371,0.075779734,1620000000000 ,1620000000000 ,1620000000000 ,1616812333310 -1616812333337 ,112.5730088,26.89054414,58.93832397,179.9453305,180.3775184,8.339437,0.07571649,1620000000000 ,1620000000000 ,1620000000000 ,1616812333320 -1616812333348 ,112.5730088,26.89054338,58.93678284,179.9436093,180.3702067,8.33569,0.075672536,1620000000000 ,1620000000000 ,1620000000000 ,1616812333330 -1616812333357 ,112.5730088,26.89054263,58.935215,179.9401122,180.3794407,8.328461,0.075615077,1620000000000 ,1620000000000 ,1620000000000 ,1616812333340 -1616812333368 ,112.5730088,26.89054187,58.93364716,179.9367518,180.3916389,8.326321,0.075582453,1620000000000 ,1620000000000 ,1620000000000 ,1616812333350 -1616812333378 ,112.5730088,26.89054112,58.9322319,179.9309324,180.394777,8.321349,0.075551305,1620000000000 ,1620000000000 ,1620000000000 ,1616812333360 -1616812333390 ,112.5730088,26.89054036,58.93103409,179.9259601,180.3805275,8.313161,0.07548899,1620000000000 ,1620000000000 ,1620000000000 ,1616812333370 -1616812333399 ,112.5730088,26.89053961,58.93011475,179.9191845,180.3660479,8.30205,0.075401834,1620000000000 ,1620000000000 ,1620000000000 ,1616812333380 -1616812333408 ,112.5730088,26.89053885,58.92945862,179.9139936,180.362196,8.290407,0.075303368,1620000000000 ,1620000000000 ,1620000000000 ,1616812333390 -1616812333418 ,112.5730088,26.8905381,58.92898941,179.9080923,180.363761,8.282748,0.075226971,1620000000000 ,1620000000000 ,1620000000000 ,1616812333400 -1616812333428 ,112.5730088,26.89053735,58.9285965,179.9051143,180.3649344,8.28057,0.075199061,1620000000000 ,1620000000000 ,1620000000000 ,1616812333410 -1616812333440 ,112.5730088,26.8905366,58.9282608,179.8997868,180.3715164,8.277973,0.075181565,1620000000000 ,1620000000000 ,1620000000000 ,1616812333420 -1616812333450 ,112.5730088,26.89053585,58.92811203,179.8930112,180.3615393,8.2714405,0.07513409,1620000000000 ,1620000000000 ,1620000000000 ,1616812333430 -1616812333463 ,112.5730088,26.8905351,58.92825699,179.8860444,180.350267,8.260948,0.075060774,1620000000000 ,1620000000000 ,1620000000000 ,1616812333440 -1616812333471 ,112.5730088,26.89053435,58.92874146,179.8824927,180.3926558,8.24699,0.074733504,1620000000000 ,1620000000000 ,1620000000000 ,1616812333450 -1616812333479 ,112.5730088,26.8905336,58.92951965,179.8794055,180.4343334,8.234901,0.074413709,1620000000000 ,1620000000000 ,1620000000000 ,1616812333460 -1616812333490 ,112.5730088,26.89053286,58.93053055,179.8750615,180.44812,8.227813,0.07434439,1620000000000 ,1620000000000 ,1620000000000 ,1616812333470 -1616812333500 ,112.5730087,26.89053212,58.93177032,179.871865,180.4494879,8.225967,0.074329727,1620000000000 ,1620000000000 ,1620000000000 ,1616812333480 -1616812333508 ,112.5730087,26.89053137,58.93318558,179.8708541,180.4400197,8.22096,0.074300333,1620000000000 ,1620000000000 ,1620000000000 ,1616812333490 -1616812333519 ,112.5730087,26.89053063,58.93480301,179.8676576,180.4370738,8.212673,0.074245974,1620000000000 ,1620000000000 ,1620000000000 ,1616812333500 -1616812333528 ,112.5730087,26.89052989,58.9366951,179.8622754,180.4309006,8.200724,0.074158095,1620000000000 ,1620000000000 ,1620000000000 ,1616812333510 -1616812333540 ,112.5730087,26.89052915,58.93883133,179.8551447,180.4265921,8.192111,0.074081561,1620000000000 ,1620000000000 ,1620000000000 ,1616812333520 -1616812333550 ,112.5730087,26.89052841,58.94104385,179.8491614,180.4276934,8.187375,0.074042151,1620000000000 ,1620000000000 ,1620000000000 ,1616812333530 -1616812333560 ,112.5730087,26.89052767,58.94317245,179.8472763,180.4349309,8.182868,0.074005786,1620000000000 ,1620000000000 ,1620000000000 ,1616812333540 -1616812333573 ,112.5730087,26.89052693,58.94519806,179.8441344,180.4307963,8.175761,0.073947916,1620000000000 ,1620000000000 ,1620000000000 ,1616812333550 -1616812333580 ,112.5730087,26.89052619,58.94722748,179.8416755,180.4008698,8.166872,0.073878988,1620000000000 ,1620000000000 ,1620000000000 ,1616812333560 -1616812333593 ,112.5730087,26.89052545,58.9493103,179.8406373,180.3755994,8.158655,0.073811522,1620000000000 ,1620000000000 ,1620000000000 ,1616812333570 -1616812333603 ,112.5730087,26.89052472,58.95133972,179.8395718,180.3708349,8.153832,0.073764543,1620000000000 ,1620000000000 ,1620000000000 ,1616812333580 -1616812333612 ,112.5730087,26.89052398,58.953228,179.8377413,180.3935224,8.149827,0.073725999,1620000000000 ,1620000000000 ,1620000000000 ,1616812333590 -1616812333620 ,112.5730087,26.89052324,58.95493317,179.8356376,180.4021157,8.145612,0.073689365,1620000000000 ,1620000000000 ,1620000000000 ,1616812333600 -1616812333631 ,112.5730087,26.8905225,58.95650101,179.8329056,180.3803237,8.140498,0.073643333,1620000000000 ,1620000000000 ,1620000000000 ,1616812333610 -1616812333641 ,112.5730087,26.89052177,58.95791245,179.8292719,180.345533,8.135815,0.073596965,1620000000000 ,1620000000000 ,1620000000000 ,1616812333620 -1616812333652 ,112.5730087,26.89052103,58.95919418,179.8276873,180.3428782,8.13062,0.073551032,1620000000000 ,1620000000000 ,1620000000000 ,1616812333630 -1616812333660 ,112.5730087,26.8905203,58.9603653,179.8249006,180.356812,8.125228,0.073502538,1620000000000 ,1620000000000 ,1620000000000 ,1616812333640 -1616812333671 ,112.5730087,26.89051956,58.96141434,179.8246001,180.3516534,8.119368,0.073449922,1620000000000 ,1620000000000 ,1620000000000 ,1616812333650 -1616812333681 ,112.5730087,26.89051883,58.96229935,179.8248186,180.336156,8.113582,0.073391971,1620000000000 ,1620000000000 ,1620000000000 ,1616812333660 -1616812333693 ,112.5730087,26.8905181,58.96297455,179.8215128,180.3185947,8.109131,0.073340863,1620000000000 ,1620000000000 ,1620000000000 ,1616812333670 -1616812333703 ,112.5730086,26.89051736,58.96338654,179.8202287,180.3234318,8.106998,0.073305378,1620000000000 ,1620000000000 ,1620000000000 ,1616812333680 -1616812333711 ,112.5730086,26.89051663,58.96354675,179.8192179,180.3274191,8.103061,0.073264903,1620000000000 ,1620000000000 ,1620000000000 ,1616812333690 -1616812333720 ,112.5730086,26.8905159,58.96350861,179.8164858,180.3261195,8.098412,0.073219316,1620000000000 ,1620000000000 ,1620000000000 ,1616812333700 -1616812333731 ,112.5730086,26.89051517,58.96336746,179.8132619,180.3206922,8.093672,0.073168403,1620000000000 ,1620000000000 ,1620000000000 ,1616812333710 -1616812333741 ,112.5730086,26.89051444,58.96309662,179.811049,180.3084896,8.090793,0.07313209,1620000000000 ,1620000000000 ,1620000000000 ,1616812333720 -1616812333751 ,112.5730086,26.8905137,58.96261978,179.8111856,180.3030041,8.087354,0.073093383,1620000000000 ,1620000000000 ,1620000000000 ,1616812333730 -1616812333761 ,112.5730086,26.89051297,58.96186066,179.8100381,180.3009163,8.084801,0.073054738,1620000000000 ,1620000000000 ,1620000000000 ,1616812333740 -1616812333774 ,112.5730086,26.89051224,58.96086502,179.8098469,180.3012269,8.081435,0.073013748,1620000000000 ,1620000000000 ,1620000000000 ,1616812333750 -1616812333782 ,112.5730086,26.89051151,58.95973969,179.8063771,180.2983059,8.0778475,0.072972609,1620000000000 ,1620000000000 ,1620000000000 ,1616812333760 -1616812333793 ,112.5730086,26.89051078,58.95855713,179.8045739,180.2915644,8.074433,0.072941281,1620000000000 ,1620000000000 ,1620000000000 ,1616812333770 -1616812333802 ,112.5730086,26.89051006,58.95730591,179.8061039,180.2943005,8.070293,0.07290004,1620000000000 ,1620000000000 ,1620000000000 ,1616812333780 -1616812333812 ,112.5730086,26.89050933,58.95596313,179.8051204,180.3083747,8.066486,0.0728578,1620000000000 ,1620000000000 ,1620000000000 ,1616812333790 -1616812333822 ,112.5730086,26.8905086,58.95449829,179.8056121,180.313323,8.063254,0.072820716,1620000000000 ,1620000000000 ,1620000000000 ,1616812333800 -1616812333832 ,112.5730086,26.89050787,58.95290375,179.8064591,180.3323079,8.060807,0.07279106,1620000000000 ,1620000000000 ,1620000000000 ,1616812333810 -1616812333842 ,112.5730086,26.89050714,58.95117569,179.8062405,180.3458063,8.058677,0.072761312,1620000000000 ,1620000000000 ,1620000000000 ,1616812333820 -1616812333853 ,112.5730086,26.89050642,58.94939041,179.8082349,180.3494441,8.054178,0.072725483,1620000000000 ,1620000000000 ,1620000000000 ,1616812333830 -1616812333863 ,112.5730086,26.89050569,58.94764328,179.8070601,180.3514423,8.046228,0.072662756,1620000000000 ,1620000000000 ,1620000000000 ,1616812333840 -1616812333879 ,112.5730086,26.89050496,58.94598389,179.8080983,180.3578564,8.040493,0.072606564,1620000000000 ,1620000000000 ,1620000000000 ,1616812333850 -1616812333887 ,112.5730086,26.89050424,58.94434738,179.8078251,180.3759793,8.036173,0.072563394,1620000000000 ,1620000000000 ,1620000000000 ,1616812333860 -1616812333893 ,112.5730086,26.89050351,58.9426651,179.8106665,180.4052409,8.033465,0.072534802,1620000000000 ,1620000000000 ,1620000000000 ,1616812333870 -1616812333902 ,112.5730086,26.89050279,58.94092941,179.8099561,180.4178285,8.031934,0.072514076,1620000000000 ,1620000000000 ,1620000000000 ,1616812333880 -1616812333912 ,112.5730086,26.89050206,58.93920517,179.813098,180.424089,8.027946,0.072486735,1620000000000 ,1620000000000 ,1620000000000 ,1616812333890 -1616812333925 ,112.5730086,26.89050134,58.93756866,179.8157481,180.4212681,8.022615,0.072443681,1620000000000 ,1620000000000 ,1620000000000 ,1616812333900 -1616812333938 ,112.5730085,26.89050061,58.93605042,179.8209118,180.4182305,8.0155,0.072388691,1620000000000 ,1620000000000 ,1620000000000 ,1616812333910 -1616812333943 ,112.5730085,26.89049989,58.93463516,179.8259934,180.4384381,8.007816,0.072322178,1620000000000 ,1620000000000 ,1620000000000 ,1616812333930 -1616812333953 ,112.5730085,26.89049917,58.93333054,179.8321406,180.4449633,7.999719,0.072254704,1620000000000 ,1620000000000 ,1620000000000 ,1616812333940 -1616812333963 ,112.5730085,26.89049845,58.93215561,179.8388615,180.4378317,7.9948554,0.072206803,1620000000000 ,1620000000000 ,1620000000000 ,1616812333950 -1616812333974 ,112.5730085,26.89049772,58.93109512,179.8459102,180.429613,7.9907975,0.07217484,1620000000000 ,1620000000000 ,1620000000000 ,1616812333960 -1616812333990 ,112.5730085,26.890497,58.93010712,179.8503362,180.4462126,7.987334,0.072145839,1620000000000 ,1620000000000 ,1620000000000 ,1616812333970 -1616812333993 ,112.5730085,26.89049556,58.92838287,179.8594067,180.4793767,7.974848,0.144160627,1620000000000 ,1620000000000 ,1620000000000 ,1616812333980 -1616812334003 ,112.5730085,26.89049556,58.92838287,179.8594067,-400,7.974848,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812333980 -1616812334013 ,112.5730085,26.89049412,58.92708969,179.870253,180.4745442,7.9606333,0.143919851,1620000000000 ,1620000000000 ,1620000000000 ,1616812334000 -1616812334025 ,112.5730085,26.8904934,58.92660904,179.8731217,180.4910836,7.9561186,0.071889741,1620000000000 ,1620000000000 ,1620000000000 ,1616812334010 -1616812334035 ,112.5730085,26.8904934,58.92660904,179.8731217,-400,7.9561186,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812334020 -1616812334044 ,112.5730085,26.89049197,58.92582321,179.8891863,180.5093519,7.9478917,0.143676567,1620000000000 ,1620000000000 ,1620000000000 ,1616812334030 -1616812334054 ,112.5730085,26.89049125,58.92553329,179.8953608,180.5137726,7.942639,0.071779296,1620000000000 ,1620000000000 ,1620000000000 ,1616812334040 -1616812334073 ,112.5730085,26.89049053,58.9253273,179.901508,180.4979601,7.93802,0.07174402,1620000000000 ,1620000000000 ,1620000000000 ,1616812334050 -1616812334077 ,112.5730085,26.89048981,58.92515945,179.9066443,180.4948883,7.9345098,0.071712195,1620000000000 ,1620000000000 ,1620000000000 ,1616812334060 -1616812334087 ,112.5730085,26.8904891,58.92500305,179.9113708,180.5136718,7.930018,0.071673709,1620000000000 ,1620000000000 ,1620000000000 ,1616812334070 -1616812334105 ,112.5730084,26.89048838,58.92489243,179.9148678,180.5399371,7.925801,0.071640277,1620000000000 ,1620000000000 ,1620000000000 ,1616812334080 -1616812334109 ,112.5730084,26.89048767,58.92483139,179.9178185,180.5342466,7.9188843,0.071585972,1620000000000 ,1620000000000 ,1620000000000 ,1616812334090 -1616812334116 ,112.5730084,26.89048695,58.92477798,179.9199495,180.5295303,7.91232,0.071528056,1620000000000 ,1620000000000 ,1620000000000 ,1616812334100 -1616812334125 ,112.5730084,26.89048624,58.92468262,179.9252497,180.5417027,7.9059815,0.07146932,1620000000000 ,1620000000000 ,1620000000000 ,1616812334110 -1616812334135 ,112.5730084,26.89048552,58.92451859,179.9274081,180.5688261,7.9021096,0.071427405,1620000000000 ,1620000000000 ,1620000000000 ,1616812334120 -1616812334145 ,112.5730084,26.89048481,58.92430878,179.9292659,180.5887237,7.89883,0.071394461,1620000000000 ,1620000000000 ,1620000000000 ,1616812334130 -1616812334157 ,112.5730084,26.89048409,58.92406464,179.9308505,180.5994396,7.8961697,0.071369916,1620000000000 ,1620000000000 ,1620000000000 ,1616812334140 -1616812334169 ,112.5730084,26.89048338,58.92378616,179.9322985,180.6125393,7.891482,0.071332331,1620000000000 ,1620000000000 ,1620000000000 ,1616812334150 -1616812334178 ,112.5730084,26.89048267,58.92346573,179.9339377,180.6273094,7.886821,0.071286894,1620000000000 ,1620000000000 ,1620000000000 ,1616812334160 -1616812334190 ,112.5730084,26.89048196,58.92311478,179.9342383,180.6481735,7.8805556,0.071240187,1620000000000 ,1620000000000 ,1620000000000 ,1616812334170 -1616812334197 ,112.5730084,26.89048124,58.92271805,179.9335279,180.6575982,7.8768806,0.071192694,1620000000000 ,1620000000000 ,1620000000000 ,1616812334180 -1616812334207 ,112.5730084,26.89048053,58.92228317,179.9324624,180.6700458,7.871186,0.071148702,1620000000000 ,1620000000000 ,1620000000000 ,1616812334190 -1616812334218 ,112.5730084,26.89047982,58.92192078,179.9362327,180.4585833,7.8692617,0.071081052,1620000000000 ,1620000000000 ,1620000000000 ,1616812334200 -1616812334228 ,112.5730084,26.89047911,58.92168045,179.9342109,180.1023411,7.8654523,0.071065882,1620000000000 ,1620000000000 ,1620000000000 ,1616812334210 -1616812334242 ,112.5730084,26.8904784,58.92132568,179.932517,180.1021296,7.8605065,0.07101374,1620000000000 ,1620000000000 ,1620000000000 ,1616812334220 -1616812334248 ,112.5730084,26.89047769,58.92089081,179.9309871,180.1032118,7.8567424,0.070974375,1620000000000 ,1620000000000 ,1620000000000 ,1616812334230 -1616812334259 ,112.5730084,26.89047698,58.92035675,179.9306319,180.0994465,7.8526344,0.070934389,1620000000000 ,1620000000000 ,1620000000000 ,1616812334240 -1616812334269 ,112.5730084,26.89047627,58.91974258,179.9300035,180.1033829,7.849002,0.07089398,1620000000000 ,1620000000000 ,1620000000000 ,1616812334250 -1616812334278 ,112.5730083,26.89047556,58.91906738,179.928255,180.0894072,7.842333,0.070838003,1620000000000 ,1620000000000 ,1620000000000 ,1616812334260 -1616812334288 ,112.5730083,26.89047486,58.91835785,179.9281184,180.0766948,7.8365335,0.070781596,1620000000000 ,1620000000000 ,1620000000000 ,1616812334270 -1616812334300 ,112.5730083,26.89047415,58.91763306,179.9300855,180.060571,7.830721,0.070730119,1620000000000 ,1620000000000 ,1620000000000 ,1616812334280 -1616812334308 ,112.5730083,26.89047344,58.9168663,179.929785,180.0325484,7.824962,0.070674404,1620000000000 ,1620000000000 ,1620000000000 ,1616812334290 -1616812334319 ,112.5730083,26.89047274,58.91609192,179.9288287,180.0231756,7.818791,0.070616914,1620000000000 ,1620000000000 ,1620000000000 ,1616812334300 -1616812334329 ,112.5730083,26.89047203,58.91532516,179.9291293,180.015212,7.8122725,0.070556823,1620000000000 ,1620000000000 ,1620000000000 ,1616812334310 -1616812334340 ,112.5730083,26.89047133,58.9145813,179.9279272,179.9985497,7.8072743,0.070512282,1620000000000 ,1620000000000 ,1620000000000 ,1616812334320 -1616812334351 ,112.5730083,26.89047062,58.91383362,179.9303314,179.984058,7.8019824,0.070461801,1620000000000 ,1620000000000 ,1620000000000 ,1616812334330 -1616812334361 ,112.5730083,26.89046992,58.91304016,179.9325444,179.9840196,7.7974386,0.070414902,1620000000000 ,1620000000000 ,1620000000000 ,1616812334340 -1616812334369 ,112.5730083,26.89046921,58.91220856,179.9358775,179.9668707,7.7912707,0.070361844,1620000000000 ,1620000000000 ,1620000000000 ,1616812334350 -1616812334380 ,112.5730083,26.89046851,58.91135406,179.9358229,179.9735136,7.784716,0.070298782,1620000000000 ,1620000000000 ,1620000000000 ,1616812334360 -1616812334390 ,112.5730083,26.89046781,58.91049576,179.939238,179.9758332,7.7784176,0.070247403,1620000000000 ,1620000000000 ,1620000000000 ,1616812334370 -1616812334400 ,112.5730083,26.89046711,58.90961075,179.9423252,179.9903539,7.7719364,0.070178285,1620000000000 ,1620000000000 ,1620000000000 ,1616812334380 -1616812334410 ,112.5730083,26.8904664,58.908741,179.9432541,179.9978531,7.7654376,0.070125439,1620000000000 ,1620000000000 ,1620000000000 ,1616812334390 -1616812334420 ,112.5730083,26.8904657,58.90787506,179.9477074,179.9905723,7.758257,0.070058822,1620000000000 ,1620000000000 ,1620000000000 ,1616812334400 -1616812334432 ,112.5730083,26.890465,58.90702057,179.949292,179.9957908,7.752873,0.070005991,1620000000000 ,1620000000000 ,1620000000000 ,1616812334410 -1616812334440 ,112.5730083,26.8904643,58.90613937,179.9545103,180.0050545,7.74613,0.06994416,1620000000000 ,1620000000000 ,1620000000000 ,1616812334420 -1616812334451 ,112.5730083,26.89046361,58.90523911,179.9569418,180.0301956,7.7402577,0.069887588,1620000000000 ,1620000000000 ,1620000000000 ,1616812334430 -1616812334460 ,112.5730083,26.89046291,58.90437317,179.9569418,180.0492031,7.7331014,0.069828325,1620000000000 ,1620000000000 ,1620000000000 ,1616812334440 -1616812334470 ,112.5730083,26.89046221,58.90344238,179.9562041,180.292954,7.726732,0.069780909,1620000000000 ,1620000000000 ,1620000000000 ,1616812334450 -1616812334480 ,112.5730083,26.89046151,58.9024086,179.9573243,180.5375112,7.7197523,0.069732112,1620000000000 ,1620000000000 ,1620000000000 ,1616812334460 -1616812334490 ,112.5730083,26.89046082,58.90136337,179.958062,180.5492529,7.7112617,0.069657628,1620000000000 ,1620000000000 ,1620000000000 ,1616812334470 -1616812334501 ,112.5730083,26.89046012,58.90031433,179.9582259,180.5777881,7.703115,0.069583357,1620000000000 ,1620000000000 ,1620000000000 ,1616812334480 -1616812334511 ,112.5730083,26.89045943,58.89928818,179.9594826,180.578903,7.695547,0.069510676,1620000000000 ,1620000000000 ,1620000000000 ,1616812334490 -1616812334520 ,112.5730083,26.89045873,58.89832306,179.960794,180.5721278,7.68972,0.069456987,1620000000000 ,1620000000000 ,1620000000000 ,1616812334500 -1616812334532 ,112.5730083,26.89045804,58.89746094,179.9645916,180.5743275,7.6825356,0.069402364,1620000000000 ,1620000000000 ,1620000000000 ,1616812334510 -1616812334541 ,112.5730083,26.89045734,58.89669037,179.9682253,180.5810615,7.674949,0.069336274,1620000000000 ,1620000000000 ,1620000000000 ,1616812334520 -1616812334550 ,112.5730083,26.89045665,58.89598846,179.9715584,180.5832621,7.6663213,0.069263559,1620000000000 ,1620000000000 ,1620000000000 ,1616812334530 -1616812334562 ,112.5730083,26.89045596,58.89537048,179.9737987,180.5849145,7.655817,0.069174388,1620000000000 ,1620000000000 ,1620000000000 ,1616812334540 -1616812334580 ,112.5730083,26.89045527,58.89483643,179.9746457,180.5804865,7.647091,0.069098183,1620000000000 ,1620000000000 ,1620000000000 ,1616812334550 -1616812334590 ,112.5730083,26.89045458,58.89435577,179.9757658,180.5850008,7.63661,0.069005795,1620000000000 ,1620000000000 ,1620000000000 ,1616812334560 -1616812334596 ,112.5730083,26.89045389,58.89393997,179.976722,180.5924146,7.62864,0.068930901,1620000000000 ,1620000000000 ,1620000000000 ,1616812334570 -1616812334602 ,112.5730083,26.8904532,58.89359665,179.9780881,180.572666,7.620285,0.068862936,1620000000000 ,1620000000000 ,1620000000000 ,1616812334580 -1616812334611 ,112.5730082,26.89045251,58.89328003,179.9803284,180.5706461,7.614611,0.068804755,1620000000000 ,1620000000000 ,1620000000000 ,1616812334590 -1616812334622 ,112.5730082,26.89045182,58.89294434,179.983279,180.5802371,7.6077833,0.068745774,1620000000000 ,1620000000000 ,1620000000000 ,1616812334600 -1616812334633 ,112.5730082,26.89045114,58.89260483,179.9868034,180.5712548,7.5975556,0.068662309,1620000000000 ,1620000000000 ,1620000000000 ,1616812334610 -1616812334643 ,112.5730082,26.89045045,58.89235306,179.9863936,180.5748535,7.5887523,0.068585458,1620000000000 ,1620000000000 ,1620000000000 ,1616812334620 -1616812334653 ,112.5730082,26.89044977,58.89221573,179.9882514,180.559812,7.5787396,0.068499421,1620000000000 ,1620000000000 ,1620000000000 ,1616812334630 -1616812334661 ,112.5730082,26.89044908,58.89213181,179.9896721,180.5490074,7.5679936,0.068409448,1620000000000 ,1620000000000 ,1620000000000 ,1616812334640 -1616812334672 ,112.5730082,26.8904484,58.89208603,179.9914752,180.5568484,7.557587,0.068315496,1620000000000 ,1620000000000 ,1620000000000 ,1616812334650 -1616812334682 ,112.5730082,26.89044772,58.8920784,179.9921583,180.5609059,7.5476747,0.068228948,1620000000000 ,1620000000000 ,1620000000000 ,1616812334660 -1616812334692 ,112.5730082,26.89044704,58.89211273,179.993415,180.5573078,7.5372405,0.068136318,1620000000000 ,1620000000000 ,1620000000000 ,1616812334670 -1616812334702 ,112.5730082,26.89044636,58.89215469,179.9939341,180.5667174,7.527253,0.068046397,1620000000000 ,1620000000000 ,1620000000000 ,1616812334680 -1616812334714 ,112.5730082,26.89044568,58.89218521,179.9932511,180.5809379,7.5159297,0.067949721,1620000000000 ,1620000000000 ,1620000000000 ,1616812334690 -1616812334723 ,112.5730082,26.890445,58.89221573,179.9935516,180.6061442,7.504598,0.0678473,1620000000000 ,1620000000000 ,1620000000000 ,1616812334700 -1616812334733 ,112.5730082,26.89044432,58.89227676,179.9917758,180.614907,7.4934707,0.067749919,1620000000000 ,1620000000000 ,1620000000000 ,1616812334710 -1616812334743 ,112.5730082,26.89044364,58.89235687,179.9909835,180.6083734,7.4801283,0.067635774,1620000000000 ,1620000000000 ,1620000000000 ,1616812334720 -1616812334754 ,112.5730082,26.89044297,58.89245605,179.9906829,180.6167923,7.467523,0.067521583,1620000000000 ,1620000000000 ,1620000000000 ,1616812334730 -1616812334764 ,112.5730081,26.8904423,58.89257431,179.9898906,180.6393272,7.4528856,0.067395172,1620000000000 ,1620000000000 ,1620000000000 ,1616812334740 -1616812334777 ,112.5730081,26.89044162,58.8927269,179.9884973,180.6565312,7.439363,0.067273355,1620000000000 ,1620000000000 ,1620000000000 ,1616812334750 -1616812334783 ,112.5730081,26.89044095,58.89292145,179.9882241,180.6696082,7.4242077,0.067145927,1620000000000 ,1620000000000 ,1620000000000 ,1616812334760 -1616812334796 ,112.5730081,26.89044028,58.89316177,179.9871039,180.6886522,7.4090204,0.067008089,1620000000000 ,1620000000000 ,1620000000000 ,1616812334780 -1616812334804 ,112.5730081,26.89043961,58.8934288,179.9866668,180.6948923,7.39469,0.066879422,1620000000000 ,1620000000000 ,1620000000000 ,1616812334780 -1616812334813 ,112.5730081,26.89043895,58.89365387,179.9856013,180.7137165,7.379865,0.06674859,1620000000000 ,1620000000000 ,1620000000000 ,1616812334800 -1616812334823 ,112.5730081,26.89043828,58.89383698,179.9853827,180.7265519,7.36572,0.066617305,1620000000000 ,1620000000000 ,1620000000000 ,1616812334800 -1616812334833 ,112.5730081,26.89043761,58.8939743,179.9843445,180.7311908,7.3502264,0.066479542,1620000000000 ,1620000000000 ,1620000000000 ,1616812334820 -1616812334843 ,112.5730081,26.89043695,58.89406586,179.9830604,180.7560648,7.335181,0.066342299,1620000000000 ,1620000000000 ,1620000000000 ,1616812334830 -1616812334854 ,112.5730081,26.89043629,58.89409256,179.9828146,180.7681707,7.3202457,0.066204192,1620000000000 ,1620000000000 ,1620000000000 ,1616812334840 -1616812334864 ,112.5730081,26.89043497,58.89402008,179.9812846,180.7745848,7.2892213,0.131982575,1620000000000 ,1620000000000 ,1620000000000 ,1616812334850 -1616812334873 ,112.573008,26.89043431,58.89393234,179.9795361,180.7630625,7.273028,0.065776516,1620000000000 ,1620000000000 ,1620000000000 ,1616812334860 -1616812334884 ,112.573008,26.89043366,58.89373398,179.9792355,180.7877879,7.259046,0.065640341,1620000000000 ,1620000000000 ,1620000000000 ,1616812334870 -1616812334894 ,112.573008,26.890433,58.8933754,179.9806016,180.8089232,7.2441335,0.065503447,1620000000000 ,1620000000000 ,1620000000000 ,1616812334880 -1616812334908 ,112.573008,26.890433,58.8933754,179.9806016,-400,7.2441335,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812334890 -1616812334914 ,112.573008,26.89043169,58.89232635,179.9807109,180.8132624,7.2147155,0.130586475,1620000000000 ,1620000000000 ,1620000000000 ,1616812334900 -1616812334924 ,112.573008,26.89043104,58.89174652,179.9800552,180.7839248,7.200166,0.065092754,1620000000000 ,1620000000000 ,1620000000000 ,1616812334910 -1616812334935 ,112.573008,26.89043039,58.89111328,179.9794814,180.7899891,7.185763,0.064958387,1620000000000 ,1620000000000 ,1620000000000 ,1616812334920 -1616812334944 ,112.573008,26.89042975,58.89041519,179.9818583,180.8056783,7.1718917,0.064828767,1620000000000 ,1620000000000 ,1620000000000 ,1616812334930 -1616812334957 ,112.573008,26.8904291,58.88965225,179.9824594,180.8048708,7.1580577,0.064702502,1620000000000 ,1620000000000 ,1620000000000 ,1616812334940 -1616812334969 ,112.573008,26.89042845,58.88883972,179.9817764,180.7861634,7.1439724,0.064572052,1620000000000 ,1620000000000 ,1620000000000 ,1616812334950 -1616812334979 ,112.573008,26.89042781,58.88798141,179.9827053,180.7701686,7.1291666,0.064435295,1620000000000 ,1620000000000 ,1620000000000 ,1616812334960 -1616812334991 ,112.5730079,26.89042717,58.88708496,179.9811207,180.7654344,7.114381,0.064300854,1620000000000 ,1620000000000 ,1620000000000 ,1616812334970 -1616812335000 ,112.5730079,26.89042652,58.88618088,179.9824867,180.7692866,7.100037,0.064167926,1620000000000 ,1620000000000 ,1620000000000 ,1616812334980 -1616812335009 ,112.5730079,26.89042652,58.88618088,179.9824867,-400,7.100037,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812334980 -1616812335017 ,112.5730079,26.89042524,58.88440704,179.984044,180.7665766,7.071828,0.127954007,1620000000000 ,1620000000000 ,1620000000000 ,1616812335000 -1616812335025 ,112.5730079,26.89042461,58.88351822,179.9862843,180.752397,7.0581317,0.063787032,1620000000000 ,1620000000000 ,1620000000000 ,1616812335010 -1616812335035 ,112.5730079,26.89042397,58.88265991,179.985492,180.7673423,7.0441356,0.06366338,1620000000000 ,1620000000000 ,1620000000000 ,1616812335020 -1616812335045 ,112.5730079,26.89042334,58.88181305,179.9873498,180.7681576,7.0305724,0.063539632,1620000000000 ,1620000000000 ,1620000000000 ,1616812335030 -1616812335056 ,112.5730079,26.8904227,58.8809967,179.9887705,180.7698642,7.0160074,0.063411798,1620000000000 ,1620000000000 ,1620000000000 ,1616812335040 -1616812335066 ,112.5730079,26.89042207,58.88023758,179.9892896,180.7716806,7.002489,0.0632903,1620000000000 ,1620000000000 ,1620000000000 ,1616812335050 -1616812335078 ,112.5730079,26.89042144,58.87955093,179.9903551,180.7754143,6.9883122,0.063167443,1620000000000 ,1620000000000 ,1620000000000 ,1616812335060 -1616812335087 ,112.5730079,26.89042081,58.87891769,179.9912567,180.7921686,6.9746594,0.063041135,1620000000000 ,1620000000000 ,1620000000000 ,1616812335070 -1616812335095 ,112.5730078,26.89042018,58.87834549,179.9927593,180.8079316,6.9636593,0.062941529,1620000000000 ,1620000000000 ,1620000000000 ,1616812335080 -1616812335106 ,112.5730078,26.89041955,58.87784195,179.9907376,180.80476,6.9511127,0.062838482,1620000000000 ,1620000000000 ,1620000000000 ,1616812335090 -1616812335118 ,112.5730078,26.89041892,58.87740326,179.9886066,180.8072267,6.9380727,0.062721421,1620000000000 ,1620000000000 ,1620000000000 ,1616812335100 -1616812335128 ,112.5730078,26.8904183,58.87702179,179.989071,180.8021972,6.9258804,0.062614737,1620000000000 ,1620000000000 ,1620000000000 ,1616812335110 -1616812335138 ,112.5730078,26.89041767,58.87667465,179.9888798,180.8124098,6.9132137,0.062499795,1620000000000 ,1620000000000 ,1620000000000 ,1616812335120 -1616812335147 ,112.5730078,26.89041705,58.87634277,179.989754,180.8141367,6.9023776,0.062397833,1620000000000 ,1620000000000 ,1620000000000 ,1616812335130 -1616812335163 ,112.5730078,26.89041642,58.87601089,179.9896174,180.8070324,6.8919144,0.062306404,1620000000000 ,1620000000000 ,1620000000000 ,1616812335140 -1616812335171 ,112.5730078,26.8904158,58.87572479,179.9899726,180.8093848,6.8807244,0.062209233,1620000000000 ,1620000000000 ,1620000000000 ,1616812335150 -1616812335179 ,112.5730078,26.89041518,58.87546921,179.9912567,180.8041027,6.8678474,0.062098076,1620000000000 ,1620000000000 ,1620000000000 ,1616812335160 -1616812335189 ,112.5730078,26.89041456,58.87520218,179.9916665,180.8072116,6.853997,0.061975236,1620000000000 ,1620000000000 ,1620000000000 ,1616812335170 -1616812335198 ,112.5730078,26.89041394,58.87490463,179.9911201,180.826194,6.8412595,0.061855872,1620000000000 ,1620000000000 ,1620000000000 ,1616812335180 -1616812335208 ,112.5730078,26.89041333,58.87459564,179.9904644,180.8393735,6.8284698,0.061740009,1620000000000 ,1620000000000 ,1620000000000 ,1616812335190 -1616812335220 ,112.5730077,26.89041271,58.87433624,179.9851641,180.2667758,6.786004,0.061246679,1620000000000 ,1620000000000 ,1620000000000 ,1616812335200 -1616812335229 ,112.5730078,26.89041211,58.87408066,179.9864755,179.305567,6.775692,0.060514742,1620000000000 ,1620000000000 ,1620000000000 ,1616812335210 -1616812335238 ,112.5730078,26.8904115,58.87382507,179.987022,179.3066256,6.7642236,0.060413711,1620000000000 ,1620000000000 ,1620000000000 ,1616812335220 -1616812335249 ,112.5730078,26.8904109,58.8735466,179.9872132,179.314486,6.7531233,0.060307863,1620000000000 ,1620000000000 ,1620000000000 ,1616812335230 -1616812335259 ,112.5730078,26.8904103,58.87324524,179.9871586,179.3295086,6.7428584,0.060218873,1620000000000 ,1620000000000 ,1620000000000 ,1616812335240 -1616812335270 ,112.5730078,26.8904097,58.87291718,179.9871859,179.333283,6.7321806,0.060118272,1620000000000 ,1620000000000 ,1620000000000 ,1616812335250 -1616812335279 ,112.5730078,26.8904091,58.87257385,179.9887978,179.3404265,6.722533,0.060030142,1620000000000 ,1620000000000 ,1620000000000 ,1616812335260 -1616812335289 ,112.5730078,26.8904085,58.87223434,179.9886612,179.3407573,6.712141,0.059938723,1620000000000 ,1620000000000 ,1620000000000 ,1616812335270 -1616812335299 ,112.5730078,26.8904079,58.87188339,179.991284,179.3379287,6.7023883,0.059847089,1620000000000 ,1620000000000 ,1620000000000 ,1616812335280 -1616812335314 ,112.5730078,26.8904073,58.87149048,179.9890164,179.3482947,6.6918054,0.059749727,1620000000000 ,1620000000000 ,1620000000000 ,1616812335290 -1616812335321 ,112.5730078,26.89040671,58.87106323,179.9885792,179.3603257,6.681286,0.059657962,1620000000000 ,1620000000000 ,1620000000000 ,1616812335300 -1616812335332 ,112.5730078,26.89040611,58.87062836,179.9899726,179.3798032,6.670257,0.059555994,1620000000000 ,1620000000000 ,1620000000000 ,1616812335310 -1616812335341 ,112.5730078,26.89040552,58.87018967,179.9901638,179.3964532,6.6595607,0.059457632,1620000000000 ,1620000000000 ,1620000000000 ,1616812335320 -1616812335350 ,112.5730078,26.89040492,58.86972809,179.9891257,179.3998434,6.6492405,0.059362866,1620000000000 ,1620000000000 ,1620000000000 ,1616812335330 -1616812335360 ,112.5730078,26.89040433,58.86922073,179.9900819,179.4095762,6.639588,0.059272342,1620000000000 ,1620000000000 ,1620000000000 ,1616812335340 -1616812335371 ,112.5730078,26.89040374,58.86867523,179.9906556,179.4339054,6.6286154,0.059175231,1620000000000 ,1620000000000 ,1620000000000 ,1616812335350 -1616812335380 ,112.5730079,26.89040315,58.8681221,179.98847,179.45187,6.619425,0.059086922,1620000000000 ,1620000000000 ,1620000000000 ,1616812335360 -1616812335391 ,112.5730079,26.89040256,58.86759949,179.9884426,179.4682019,6.610289,0.059005355,1620000000000 ,1620000000000 ,1620000000000 ,1616812335370 -1616812335400 ,112.5730079,26.89040197,58.86710358,179.985574,179.4794726,6.6033764,0.058937994,1620000000000 ,1620000000000 ,1620000000000 ,1616812335380 -1616812335411 ,112.5730079,26.89040138,58.86658478,179.9850275,179.4712177,6.595225,0.058868376,1620000000000 ,1620000000000 ,1620000000000 ,1616812335390 -1616812335421 ,112.5730079,26.89040079,58.86601639,179.9831424,179.4741264,6.586953,0.058790792,1620000000000 ,1620000000000 ,1620000000000 ,1616812335400 -1616812335430 ,112.5730079,26.8904002,58.86541748,179.9816671,179.4746662,6.5780606,0.058712163,1620000000000 ,1620000000000 ,1620000000000 ,1616812335410 -1616812335441 ,112.5730079,26.89039962,58.86479568,179.9795087,179.4638324,6.5697174,0.058631875,1620000000000 ,1620000000000 ,1620000000000 ,1616812335420 -1616812335452 ,112.5730079,26.89039903,58.86413956,179.9769679,179.452748,6.559248,0.058542831,1620000000000 ,1620000000000 ,1620000000000 ,1616812335430 -1616812335462 ,112.5730079,26.89039845,58.86345673,179.9763669,179.4473676,6.551469,0.058462629,1620000000000 ,1620000000000 ,1620000000000 ,1616812335440 -1616812335472 ,112.5730079,26.89039786,58.86272812,179.9736348,180.0466244,6.543289,0.058759263,1620000000000 ,1620000000000 ,1620000000000 ,1616812335450 -1616812335481 ,112.5730079,26.89039727,58.86193848,179.9730884,180.6408978,6.5346746,0.059052033,1620000000000 ,1620000000000 ,1620000000000 ,1616812335460 -1616812335492 ,112.5730079,26.89039668,58.86113358,179.9734162,180.6253622,6.5297832,0.059001464,1620000000000 ,1620000000000 ,1620000000000 ,1616812335470 -1616812335502 ,112.5730079,26.89039609,58.86029816,179.9737167,180.5982022,6.5231953,0.058941028,1620000000000 ,1620000000000 ,1620000000000 ,1616812335480 -1616812335512 ,112.5730079,26.8903955,58.85945511,179.9729791,180.5941143,6.5162697,0.058878531,1620000000000 ,1620000000000 ,1620000000000 ,1616812335490 -1616812335523 ,112.5730079,26.89039491,58.85858917,179.9732796,180.6056013,6.510275,0.058823666,1620000000000 ,1620000000000 ,1620000000000 ,1616812335500 -1616812335531 ,112.5730079,26.89039432,58.85771179,179.9740719,180.6051038,6.5032105,0.058761414,1620000000000 ,1620000000000 ,1620000000000 ,1616812335510 -1616812335544 ,112.5730079,26.89039374,58.85683823,179.9736075,180.5994164,6.4983416,0.058710795,1620000000000 ,1620000000000 ,1620000000000 ,1616812335520 -1616812335562 ,112.5730078,26.89039315,58.85596466,179.9711213,180.5875871,6.4918623,0.058653322,1620000000000 ,1620000000000 ,1620000000000 ,1616812335530 -1616812335567 ,112.5730078,26.89039257,58.85508347,179.9712032,180.5826014,6.486761,0.058603473,1620000000000 ,1620000000000 ,1620000000000 ,1616812335540 -1616812335574 ,112.5730078,26.89039198,58.85417938,179.9700558,180.5939468,6.4806895,0.058552138,1620000000000 ,1620000000000 ,1620000000000 ,1616812335550 -1616812335583 ,112.5730078,26.89039139,58.8532486,179.9703836,180.6027942,6.476431,0.058505541,1620000000000 ,1620000000000 ,1620000000000 ,1616812335560 -1616812335596 ,112.5730078,26.89039081,58.85231018,179.9704929,180.6067892,6.4732914,0.058474355,1620000000000 ,1620000000000 ,1620000000000 ,1616812335570 -1616812335605 ,112.5730078,26.89039023,58.85137177,179.9709574,180.6071541,6.470102,0.058445244,1620000000000 ,1620000000000 ,1620000000000 ,1616812335580 -1616812335616 ,112.5730078,26.89038964,58.85043335,179.9712032,180.5973146,6.467154,0.0584175,1620000000000 ,1620000000000 ,1620000000000 ,1616812335590 -1616812335624 ,112.5730078,26.89038906,58.84946823,179.9742085,180.593219,6.463726,0.05838638,1620000000000 ,1620000000000 ,1620000000000 ,1616812335600 -1616812335634 ,112.5730078,26.89038847,58.84848022,179.9749462,180.5992882,6.4613476,0.058361131,1620000000000 ,1620000000000 ,1620000000000 ,1616812335610 -1616812335643 ,112.5730078,26.89038789,58.84749222,179.9763122,180.5983794,6.457415,0.058327566,1620000000000 ,1620000000000 ,1620000000000 ,1616812335630 -1616812335654 ,112.5730078,26.89038731,58.84651566,179.9750555,180.5826367,6.4529953,0.058288278,1620000000000 ,1620000000000 ,1620000000000 ,1616812335630 -1616812335666 ,112.5730078,26.89038673,58.84552765,179.9763395,180.5850331,6.449006,0.058252306,1620000000000 ,1620000000000 ,1620000000000 ,1616812335640 -1616812335678 ,112.5730078,26.89038614,58.84453964,179.9741812,180.5967834,6.4453163,0.058213672,1620000000000 ,1620000000000 ,1620000000000 ,1616812335660 -1616812335685 ,112.5730078,26.89038556,58.84354782,179.9731157,180.5967508,6.443428,0.058194616,1620000000000 ,1620000000000 ,1620000000000 ,1616812335670 -1616812335695 ,112.5730078,26.89038498,58.84253311,179.9706022,180.6053597,6.4409046,0.058169778,1620000000000 ,1620000000000 ,1620000000000 ,1616812335670 -1616812335704 ,112.5730078,26.8903844,58.84152603,179.9661216,180.632942,6.4385366,0.058149546,1620000000000 ,1620000000000 ,1620000000000 ,1616812335680 -1616812335716 ,112.5730078,26.89038382,58.8405571,179.9642364,180.6338393,6.4342437,0.058117073,1620000000000 ,1620000000000 ,1620000000000 ,1616812335690 -1616812335723 ,112.5730077,26.89038266,58.83879471,179.9608214,180.6291073,6.427559,0.116135627,1620000000000 ,1620000000000 ,1620000000000 ,1616812335710 -1616812335733 ,112.5730077,26.89038208,58.83796692,179.9584444,180.6377583,6.4231243,0.058022197,1620000000000 ,1620000000000 ,1620000000000 ,1616812335720 -1616812335744 ,112.5730077,26.89038208,58.83796692,179.9584444,-400,6.4231243,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812335730 -1616812335754 ,112.5730077,26.89038092,58.8363533,179.9530349,180.6463605,6.4183927,0.115964253,1620000000000 ,1620000000000 ,1620000000000 ,1616812335740 -1616812335766 ,112.5730077,26.89038034,58.83555222,179.9517235,180.6365845,6.415482,0.057947814,1620000000000 ,1620000000000 ,1620000000000 ,1616812335750 -1616812335775 ,112.5730077,26.89037976,58.83475113,179.9485817,180.6389174,6.4125614,0.057923828,1620000000000 ,1620000000000 ,1620000000000 ,1616812335760 -1616812335784 ,112.5730077,26.89037918,58.83396149,179.9462321,180.6250614,6.409126,0.057892638,1620000000000 ,1620000000000 ,1620000000000 ,1616812335770 -1616812335796 ,112.5730077,26.8903786,58.83321381,179.9447841,180.6281006,6.405765,0.057862974,1620000000000 ,1620000000000 ,1620000000000 ,1616812335780 -1616812335806 ,112.5730077,26.89037802,58.83249664,179.9442923,180.6232543,6.402499,0.057831727,1620000000000 ,1620000000000 ,1620000000000 ,1616812335790 -1616812335815 ,112.5730077,26.89037744,58.83179474,179.9429809,180.6103748,6.3999925,0.057810573,1620000000000 ,1620000000000 ,1620000000000 ,1616812335800 -1616812335825 ,112.5730077,26.89037687,58.83109665,179.9419154,180.6024542,6.398,0.057791573,1620000000000 ,1620000000000 ,1620000000000 ,1616812335810 -1616812335835 ,112.5730077,26.89037629,58.8303833,179.9410411,180.5972687,6.3960133,0.057772122,1620000000000 ,1620000000000 ,1620000000000 ,1616812335820 -1616812335844 ,112.5730077,26.89037571,58.82965088,179.939921,180.5894212,6.3935213,0.057750543,1620000000000 ,1620000000000 ,1620000000000 ,1616812335830 -1616812335856 ,112.5730077,26.89037513,58.82891464,179.9393746,180.5844409,6.3888373,0.057712957,1620000000000 ,1620000000000 ,1620000000000 ,1616812335840 -1616812335869 ,112.5730077,26.89037456,58.82820892,179.9397297,180.5732687,6.3855786,0.057679374,1620000000000 ,1620000000000 ,1620000000000 ,1616812335850 -1616812335876 ,112.5730076,26.89037398,58.82754135,179.939238,180.5715607,6.3808002,0.057641326,1620000000000 ,1620000000000 ,1620000000000 ,1616812335860 -1616812335886 ,112.5730076,26.8903734,58.82688141,179.9401942,180.5859236,6.378023,0.057612083,1620000000000 ,1620000000000 ,1620000000000 ,1616812335870 -1616812335895 ,112.5730076,26.89037283,58.82621384,179.9413417,180.6030089,6.37549,0.057589879,1620000000000 ,1620000000000 ,1620000000000 ,1616812335880 -1616812335905 ,112.5730076,26.89037225,58.82555771,179.9418061,180.6164122,6.3727055,0.057564834,1620000000000 ,1620000000000 ,1620000000000 ,1616812335890 -1616812335919 ,112.5730076,26.89037168,58.82494354,179.9416695,180.6259503,6.3688884,0.057534009,1620000000000 ,1620000000000 ,1620000000000 ,1616812335900 -1616812335928 ,112.5730076,26.8903711,58.82437134,179.9416422,180.6385684,6.3648005,0.057499127,1620000000000 ,1620000000000 ,1620000000000 ,1616812335910 -1616812335940 ,112.5730076,26.89037053,58.82382584,179.9428716,180.6464971,6.361469,0.057467918,1620000000000 ,1620000000000 ,1620000000000 ,1616812335920 -1616812335949 ,112.5730076,26.89036995,58.82328796,179.9402488,180.6580829,6.358151,0.057438379,1620000000000 ,1620000000000 ,1620000000000 ,1616812335930 -1616812335964 ,112.5730076,26.89036938,58.82277298,179.939921,180.6647309,6.354809,0.057410518,1620000000000 ,1620000000000 ,1620000000000 ,1616812335940 -1616812335973 ,112.5730076,26.89036881,58.82228088,179.9375441,180.6763014,6.3512564,0.057379122,1620000000000 ,1620000000000 ,1620000000000 ,1616812335950 -1616812335981 ,112.5730076,26.89036823,58.82181549,179.9373801,180.6768893,6.347167,0.057345284,1620000000000 ,1620000000000 ,1620000000000 ,1616812335960 -1616812335990 ,112.5730076,26.89036766,58.82138062,179.9363966,180.6943545,6.343901,0.057318462,1620000000000 ,1620000000000 ,1620000000000 ,1616812335970 -1616812335999 ,112.5730076,26.89036709,58.82098007,179.93626,180.6932172,6.3403687,0.057285399,1620000000000 ,1620000000000 ,1620000000000 ,1616812335980 -1616812336010 ,112.5730076,26.89036651,58.82058334,179.9347027,180.6973245,6.337093,0.057253811,1620000000000 ,1620000000000 ,1620000000000 ,1616812335990 -1616812336022 ,112.5730076,26.89036594,58.82017517,179.9342656,180.7061481,6.3341947,0.057230514,1620000000000 ,1620000000000 ,1620000000000 ,1616812336000 -1616812336031 ,112.5730075,26.89036537,58.81974411,179.9332274,180.7039553,6.3315496,0.057202429,1620000000000 ,1620000000000 ,1620000000000 ,1616812336010 -1616812336041 ,112.5730075,26.8903648,58.81930923,179.9320526,180.7157286,6.3297615,0.057185869,1620000000000 ,1620000000000 ,1620000000000 ,1616812336020 -1616812336051 ,112.5730075,26.89036423,58.81887054,179.9315335,180.7009894,6.3260818,0.057154867,1620000000000 ,1620000000000 ,1620000000000 ,1616812336030 -1616812336061 ,112.5730075,26.89036366,58.81843567,179.9295937,180.6918467,6.323173,0.057132421,1620000000000 ,1620000000000 ,1620000000000 ,1616812336040 -1616812336070 ,112.5730075,26.89036308,58.81801224,179.9284189,180.6781902,6.319585,0.057098787,1620000000000 ,1620000000000 ,1620000000000 ,1616812336050 -1616812336080 ,112.5730075,26.89036251,58.81760406,179.9274627,180.6676041,6.315712,0.057061727,1620000000000 ,1620000000000 ,1620000000000 ,1616812336060 -1616812336091 ,112.5730075,26.89036194,58.81719971,179.9260967,180.6730889,6.3125467,0.05703481,1620000000000 ,1620000000000 ,1620000000000 ,1616812336070 -1616812336103 ,112.5730075,26.89036137,58.81679916,179.9259874,180.6685304,6.3086557,0.057002157,1620000000000 ,1620000000000 ,1620000000000 ,1616812336080 -1616812336114 ,112.5730075,26.8903608,58.81639099,179.9251678,180.6433602,6.3052616,0.056968746,1620000000000 ,1620000000000 ,1620000000000 ,1616812336090 -1616812336122 ,112.5730075,26.89036023,58.81597519,179.9244301,180.6277986,6.3014073,0.056934681,1620000000000 ,1620000000000 ,1620000000000 ,1616812336100 -1616812336134 ,112.5730075,26.89035967,58.81554794,179.9214521,180.624642,6.2970924,0.056895596,1620000000000 ,1620000000000 ,1620000000000 ,1616812336110 -1616812336141 ,112.5730075,26.8903591,58.81510925,179.9221078,180.6176249,6.2946305,0.056870285,1620000000000 ,1620000000000 ,1620000000000 ,1616812336120 -1616812336152 ,112.5730075,26.89035853,58.81468964,179.9204686,180.6232621,6.290972,0.056839958,1620000000000 ,1620000000000 ,1620000000000 ,1616812336130 -1616812336162 ,112.5730075,26.89035796,58.81429672,179.9200861,180.6046333,6.286757,0.056800478,1620000000000 ,1620000000000 ,1620000000000 ,1616812336140 -1616812336175 ,112.5730075,26.89035739,58.81390762,179.9199495,180.6020307,6.282282,0.056765115,1620000000000 ,1620000000000 ,1620000000000 ,1616812336150 -1616812336187 ,112.5730074,26.89035683,58.81350708,179.9179551,180.6039798,6.278758,0.056729281,1620000000000 ,1620000000000 ,1620000000000 ,1616812336160 -1616812336196 ,112.5730074,26.89035626,58.81309128,179.9155509,180.6124146,6.2762175,0.056704357,1620000000000 ,1620000000000 ,1620000000000 ,1616812336170 -1616812336202 ,112.5730074,26.89035569,58.81266022,179.9147859,180.6331542,6.270751,0.056659769,1620000000000 ,1620000000000 ,1620000000000 ,1616812336180 -1616812336213 ,112.5730074,26.89035513,58.81225586,179.9142121,180.6322789,6.265834,0.056616772,1620000000000 ,1620000000000 ,1620000000000 ,1616812336190 -1616812336223 ,112.5730074,26.89035456,58.81243896,179.8998141,180.1449959,6.2738295,0.056777091,1620000000000 ,1620000000000 ,1620000000000 ,1616812336200 -1616812336235 ,112.5730074,26.89035399,58.81348038,179.8999507,179.4770438,6.2705636,0.057085029,1620000000000 ,1620000000000 ,1620000000000 ,1616812336210 -1616812336243 ,112.5730074,26.89035342,58.81448364,179.8995682,179.481381,6.2666574,0.057049174,1620000000000 ,1620000000000 ,1620000000000 ,1616812336220 -1616812336253 ,112.5730074,26.89035285,58.81542206,179.8961531,179.4884118,6.2619915,0.057008913,1620000000000 ,1620000000000 ,1620000000000 ,1616812336230 -1616812336262 ,112.5730074,26.89035228,58.8163681,179.8898147,179.4960292,6.257329,0.056967265,1620000000000 ,1620000000000 ,1620000000000 ,1616812336240 -1616812336272 ,112.5730075,26.89035171,58.81733322,179.886263,179.495771,6.2534294,0.056930183,1620000000000 ,1620000000000 ,1620000000000 ,1616812336250 -1616812336285 ,112.5730075,26.89035114,58.81832123,179.8854707,179.5024141,6.24956,0.056894937,1620000000000 ,1620000000000 ,1620000000000 ,1616812336260 -1616812336293 ,112.5730075,26.89035057,58.81930542,179.8821376,179.5056695,6.2452035,0.056860139,1620000000000 ,1620000000000 ,1620000000000 ,1616812336270 -1616812336303 ,112.5730075,26.89035,58.82029724,179.8786405,179.5014823,6.238277,0.056801831,1620000000000 ,1620000000000 ,1620000000000 ,1616812336280 -1616812336313 ,112.5730075,26.89034943,58.82130432,179.8759358,179.4893865,6.2335744,0.056756864,1620000000000 ,1620000000000 ,1620000000000 ,1616812336290 -1616812336324 ,112.5730075,26.89034887,58.8223114,179.8729851,179.4976689,6.227633,0.056701949,1620000000000 ,1620000000000 ,1620000000000 ,1616812336310 -1616812336334 ,112.5730075,26.8903483,58.82331467,179.8714278,179.5025842,6.223773,0.05666444,1620000000000 ,1620000000000 ,1620000000000 ,1616812336320 -1616812336344 ,112.5730075,26.89034717,58.82527542,179.8658271,179.4995932,6.2145824,0.113211252,1620000000000 ,1620000000000 ,1620000000000 ,1616812336330 -1616812336354 ,112.5730075,26.8903466,58.82627106,179.864543,179.4790015,6.2078514,0.056525451,1620000000000 ,1620000000000 ,1620000000000 ,1616812336340 -1616812336364 ,112.5730075,26.89034604,58.82725143,179.8613465,179.4655747,6.201249,0.056468034,1620000000000 ,1620000000000 ,1620000000000 ,1616812336350 -1616812336377 ,112.5730075,26.89034547,58.82820129,179.8589696,179.4790459,6.195313,0.056413668,1620000000000 ,1620000000000 ,1620000000000 ,1616812336360 -1616812336391 ,112.5730075,26.89034547,58.82820129,179.8589696,-400,6.195313,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812336370 -1616812336396 ,112.5730075,26.89034435,58.82997513,179.8536967,179.4849185,6.1822834,0.112645304,1620000000000 ,1620000000000 ,1620000000000 ,1616812336380 -1616812336404 ,112.5730075,26.89034435,58.82997513,179.8536967,-400,6.1822834,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812336390 -1616812336416 ,112.5730075,26.89034322,58.83172607,179.8441344,179.478058,6.166299,0.112371672,1620000000000 ,1620000000000 ,1620000000000 ,1616812336400 -1616812336425 ,112.5730075,26.89034266,58.83258438,179.8392167,179.4795261,6.1574507,0.056073211,1620000000000 ,1620000000000 ,1620000000000 ,1616812336410 -1616812336436 ,112.5730075,26.8903421,58.83343887,179.8337525,179.4929356,6.1497526,0.056000683,1620000000000 ,1620000000000 ,1620000000000 ,1616812336420 -1616812336448 ,112.5730075,26.89034154,58.83430481,179.8296544,179.4897735,6.1409974,0.055923325,1620000000000 ,1620000000000 ,1620000000000 ,1616812336430 -1616812336456 ,112.5730076,26.89034099,58.83519745,179.824764,179.4846024,6.131426,0.055840145,1620000000000 ,1620000000000 ,1620000000000 ,1616812336440 -1616812336464 ,112.5730076,26.89034043,58.83556747,179.8197096,179.9496368,6.12045,0.055535257,1620000000000 ,1620000000000 ,1620000000000 ,1616812336450 -1616812336475 ,112.5730075,26.89033988,58.8354187,179.8170049,180.4280205,6.110308,0.055235785,1620000000000 ,1620000000000 ,1620000000000 ,1616812336460 -1616812336488 ,112.5730075,26.89033933,58.835289,179.8123604,180.4371788,6.100231,0.055148129,1620000000000 ,1620000000000 ,1620000000000 ,1616812336470 -1616812336495 ,112.5730075,26.89033878,58.83518982,179.8077705,180.4464012,6.0903473,0.055056704,1620000000000 ,1620000000000 ,1620000000000 ,1616812336480 -1616812336506 ,112.5730075,26.89033823,58.83512497,179.8025795,180.4345672,6.0795813,0.054963162,1620000000000 ,1620000000000 ,1620000000000 ,1616812336490 -1616812336515 ,112.5730075,26.89033768,58.83508301,179.7972247,180.4361396,6.0677233,0.054861153,1620000000000 ,1620000000000 ,1620000000000 ,1616812336500 -1616812336526 ,112.5730075,26.89033713,58.83508301,179.7909955,180.4267289,6.055812,0.054756894,1620000000000 ,1620000000000 ,1620000000000 ,1616812336510 -1616812336536 ,112.5730075,26.89033658,58.83509827,179.7865696,180.4146771,6.0437226,0.054645904,1620000000000 ,1620000000000 ,1620000000000 ,1616812336520 -1616812336547 ,112.5730075,26.89033604,58.83512878,179.7822256,180.4201418,6.0311522,0.054533396,1620000000000 ,1620000000000 ,1620000000000 ,1616812336530 -1616812336555 ,112.5730075,26.8903355,58.83521271,179.778346,180.4147978,6.018963,0.054428791,1620000000000 ,1620000000000 ,1620000000000 ,1616812336540 -1616812336565 ,112.5730075,26.89033495,58.83533096,179.7739201,180.3987022,6.005928,0.054313865,1620000000000 ,1620000000000 ,1620000000000 ,1616812336550 -1616812336575 ,112.5730075,26.89033441,58.83546829,179.7698493,180.3895288,5.9942403,0.054204786,1620000000000 ,1620000000000 ,1620000000000 ,1616812336560 -1616812336588 ,112.5730075,26.89033387,58.83560181,179.766161,180.3839853,5.9808197,0.054089078,1620000000000 ,1620000000000 ,1620000000000 ,1616812336570 -1616812336597 ,112.5730075,26.89033333,58.83571243,179.7645217,180.3810171,5.9683857,0.053974692,1620000000000 ,1620000000000 ,1620000000000 ,1616812336580 -1616812336607 ,112.5730075,26.89033279,58.83580399,179.7605875,180.3720814,5.9559846,0.053859011,1620000000000 ,1620000000000 ,1620000000000 ,1616812336590 -1616812336616 ,112.5730075,26.89033225,58.83589172,179.7569812,180.3521468,5.942136,0.053738776,1620000000000 ,1620000000000 ,1620000000000 ,1616812336600 -1616812336628 ,112.5730075,26.89033172,58.83599091,179.7513531,180.3494919,5.927544,0.053609771,1620000000000 ,1620000000000 ,1620000000000 ,1616812336610 -1616812336637 ,112.5730075,26.89033118,58.83607101,179.748785,180.3590863,5.914034,0.053484599,1620000000000 ,1620000000000 ,1620000000000 ,1616812336620 -1616812336646 ,112.5730075,26.89033065,58.83610535,179.7433754,180.3625491,5.899642,0.053355552,1620000000000 ,1620000000000 ,1620000000000 ,1616812336630 -1616812336657 ,112.5730075,26.89033012,58.83612061,179.7391954,180.3748903,5.8837347,0.05321373,1620000000000 ,1620000000000 ,1620000000000 ,1616812336640 -1616812336666 ,112.5730075,26.89032959,58.83614731,179.7334034,180.36337,5.86889,0.053077942,1620000000000 ,1620000000000 ,1620000000000 ,1616812336650 -1616812336680 ,112.5730075,26.89032906,58.8361702,179.7289774,180.3673235,5.8538413,0.05294202,1620000000000 ,1620000000000 ,1620000000000 ,1616812336660 -1616812336688 ,112.5730075,26.89032853,58.83618546,179.7245788,180.3717545,5.8386893,0.052805778,1620000000000 ,1620000000000 ,1620000000000 ,1616812336670 -1616812336701 ,112.5730075,26.890328,58.83616638,179.7188961,180.3715726,5.8226137,0.052660919,1620000000000 ,1620000000000 ,1620000000000 ,1616812336680 -1616812336708 ,112.5730075,26.89032748,58.83614349,179.713869,180.3773606,5.806857,0.052518007,1620000000000 ,1620000000000 ,1620000000000 ,1616812336690 -1616812336718 ,112.5730075,26.89032695,58.83609772,179.7115194,180.3678441,5.791433,0.052376797,1620000000000 ,1620000000000 ,1620000000000 ,1616812336700 -1616812336728 ,112.5730075,26.89032643,58.83598709,179.7081317,180.3640811,5.777035,0.052241404,1620000000000 ,1620000000000 ,1620000000000 ,1616812336710 -1616812336738 ,112.5730075,26.89032591,58.83582687,179.7038696,180.3709221,5.7613697,0.052101094,1620000000000 ,1620000000000 ,1620000000000 ,1616812336720 -1616812336748 ,112.5730074,26.89032539,58.83564377,179.6975585,180.3743445,5.7459345,0.0519593,1620000000000 ,1620000000000 ,1620000000000 ,1616812336730 -1616812336757 ,112.5730074,26.89032487,58.83547592,179.6927774,180.359879,5.7305827,0.051821049,1620000000000 ,1620000000000 ,1620000000000 ,1616812336740 -1616812336767 ,112.5730074,26.89032436,58.83529282,179.6880782,180.3495497,5.7137384,0.051671725,1620000000000 ,1620000000000 ,1620000000000 ,1616812336750 -1616812336777 ,112.5730074,26.89032384,58.83508301,179.6804831,180.352504,5.6981115,0.051526478,1620000000000 ,1620000000000 ,1620000000000 ,1616812336760 -1616812336790 ,112.5730074,26.89032333,58.83482361,179.6742813,180.3496711,5.682402,0.051381115,1620000000000 ,1620000000000 ,1620000000000 ,1616812336770 -1616812336798 ,112.5730074,26.89032281,58.83451462,179.6680794,180.3637062,5.6662364,0.051234334,1620000000000 ,1620000000000 ,1620000000000 ,1616812336780 -1616812336807 ,112.5730074,26.8903223,58.83420563,179.6627519,180.3511899,5.649096,0.051082855,1620000000000 ,1620000000000 ,1620000000000 ,1616812336790 -1616812336818 ,112.5730074,26.89032179,58.8339119,179.6565501,180.3398285,5.6314793,0.050922275,1620000000000 ,1620000000000 ,1620000000000 ,1616812336800 -1616812336828 ,112.5730074,26.89032129,58.83364868,179.651605,180.3301283,5.6155267,0.05077714,1620000000000 ,1620000000000 ,1620000000000 ,1616812336810 -1616812336844 ,112.5730074,26.89032078,58.8333931,179.6445836,180.3203113,5.599985,0.050637597,1620000000000 ,1620000000000 ,1620000000000 ,1616812336820 -1616812336850 ,112.5730074,26.89032027,58.83315659,179.6379446,180.3356214,5.5835366,0.050489505,1620000000000 ,1620000000000 ,1620000000000 ,1616812336830 -1616812336859 ,112.5730074,26.89031977,58.83295059,179.6339831,180.3275191,5.566396,0.05033714,1620000000000 ,1620000000000 ,1620000000000 ,1616812336840 -1616812336868 ,112.5730074,26.89031927,58.8327713,179.628519,180.3013899,5.549611,0.050186251,1620000000000 ,1620000000000 ,1620000000000 ,1616812336850 -1616812336878 ,112.5730074,26.89031877,58.83261871,179.621962,180.2931594,5.533468,0.050039589,1620000000000 ,1620000000000 ,1620000000000 ,1616812336860 -1616812336889 ,112.5730074,26.89031827,58.83247375,179.6154597,180.2846995,5.5165963,0.049887765,1620000000000 ,1620000000000 ,1620000000000 ,1616812336870 -1616812336899 ,112.5730074,26.89031777,58.83234406,179.611744,180.2696968,5.4999795,0.049737145,1620000000000 ,1620000000000 ,1620000000000 ,1616812336880 -1616812336909 ,112.5730074,26.89031728,58.8322258,179.6058154,180.2640348,5.484585,0.049597035,1620000000000 ,1620000000000 ,1620000000000 ,1616812336890 -1616812336919 ,112.5730074,26.89031678,58.83210373,179.60016,180.2811004,5.4692593,0.049456792,1620000000000 ,1620000000000 ,1620000000000 ,1616812336900 -1616812336929 ,112.5730074,26.89031629,58.83198929,179.5962259,180.2909695,5.4532394,0.049315896,1620000000000 ,1620000000000 ,1620000000000 ,1616812336910 -1616812336939 ,112.5730074,26.8903158,58.83190536,179.5908163,180.2957889,5.437844,0.049175231,1620000000000 ,1620000000000 ,1620000000000 ,1616812336920 -1616812336951 ,112.5730074,26.89031531,58.83184814,179.5874286,180.3067562,5.422662,0.049040223,1620000000000 ,1620000000000 ,1620000000000 ,1616812336930 -1616812336959 ,112.5730074,26.89031482,58.83181,179.5812814,180.3212738,5.4055266,0.048889236,1620000000000 ,1620000000000 ,1620000000000 ,1616812336940 -1616812336969 ,112.5730074,26.89031433,58.83177185,179.5773199,180.3357863,5.388334,0.048735081,1620000000000 ,1620000000000 ,1620000000000 ,1616812336950 -1616812336978 ,112.5730074,26.89031384,58.83172607,179.5723748,180.337068,5.371667,0.048581162,1620000000000 ,1620000000000 ,1620000000000 ,1616812336960 -1616812336992 ,112.5730074,26.89031336,58.83165741,179.5668287,180.3608599,5.35731,0.048448193,1620000000000 ,1620000000000 ,1620000000000 ,1616812336970 -1616812337000 ,112.5730074,26.89031288,58.8315773,179.5605176,180.376479,5.342057,0.048312686,1620000000000 ,1620000000000 ,1620000000000 ,1616812336980 -1616812337010 ,112.5730074,26.8903124,58.83149719,179.5529771,180.3923115,5.325828,0.048166956,1620000000000 ,1620000000000 ,1620000000000 ,1616812336990 -1616812337020 ,112.5730074,26.89031192,58.83145142,179.5471578,180.4029892,5.307814,0.048010882,1620000000000 ,1620000000000 ,1620000000000 ,1616812337000 -1616812337029 ,112.5730074,26.89031144,58.83143616,179.5436334,180.4099098,5.2904453,0.047854418,1620000000000 ,1620000000000 ,1620000000000 ,1616812337010 -1616812337041 ,112.5730074,26.89031096,58.83146286,179.5371584,180.4230435,5.2733026,0.047699123,1620000000000 ,1620000000000 ,1620000000000 ,1616812337020 -1616812337051 ,112.5730074,26.89031048,58.83149719,179.5339618,180.4421932,5.258026,0.047558983,1620000000000 ,1620000000000 ,1620000000000 ,1616812337030 -1616812337059 ,112.5730074,26.89031001,58.83152008,179.5286343,180.463798,5.24185,0.047414138,1620000000000 ,1620000000000 ,1620000000000 ,1616812337040 -1616812337070 ,112.5730074,26.89030954,58.83153152,179.5251099,180.4805569,5.2259955,0.047271858,1620000000000 ,1620000000000 ,1620000000000 ,1616812337050 -1616812337080 ,112.5730073,26.89030907,58.8315773,179.5212304,180.481443,5.209262,0.047124639,1620000000000 ,1620000000000 ,1620000000000 ,1616812337060 -1616812337091 ,112.5730073,26.8903086,58.83163452,179.5169137,180.4640914,5.1925044,0.046970287,1620000000000 ,1620000000000 ,1620000000000 ,1616812337070 -1616812337101 ,112.5730073,26.89030813,58.83166122,179.5143182,180.4839052,5.1770315,0.046830012,1620000000000 ,1620000000000 ,1620000000000 ,1616812337080 -1616812337111 ,112.5730073,26.89030766,58.83162689,179.5114222,180.5151776,5.1615944,0.046687357,1620000000000 ,1620000000000 ,1620000000000 ,1616812337090 -1616812337120 ,112.5730073,26.8903072,58.83158112,179.5080891,180.5190235,5.145502,0.046544262,1620000000000 ,1620000000000 ,1620000000000 ,1616812337100 -1616812337130 ,112.5730073,26.89030673,58.83154678,179.5037997,180.5125294,5.128862,0.046397803,1620000000000 ,1620000000000 ,1620000000000 ,1616812337110 -1616812337142 ,112.5730073,26.89030627,58.83149719,179.4998655,180.500381,5.1127753,0.046247358,1620000000000 ,1620000000000 ,1620000000000 ,1616812337120 -1616812337157 ,112.5730073,26.89030581,58.83141327,179.4970515,180.5195436,5.0974736,0.046106962,1620000000000 ,1620000000000 ,1620000000000 ,1616812337130 -1616812337161 ,112.5730073,26.89030535,58.83133316,179.4946473,180.5426403,5.082078,0.045968553,1620000000000 ,1620000000000 ,1620000000000 ,1616812337140 -1616812337171 ,112.5730073,26.89030489,58.83127594,179.4904126,180.5311929,5.0665345,0.045831454,1620000000000 ,1620000000000 ,1620000000000 ,1616812337150 -1616812337182 ,112.5730073,26.89030443,58.83123398,179.4850577,180.5415754,5.0506434,0.045688941,1620000000000 ,1620000000000 ,1620000000000 ,1616812337160 -1616812337193 ,112.5730073,26.89030398,58.83119202,179.4801946,180.5448537,5.034229,0.045544953,1620000000000 ,1620000000000 ,1620000000000 ,1616812337170 -1616812337206 ,112.5730073,26.89030352,58.83114624,179.4767795,180.5309462,5.0163345,0.045386546,1620000000000 ,1620000000000 ,1620000000000 ,1616812337180 -1616812337213 ,112.5730073,26.89030307,58.83112717,179.4731458,180.5157231,4.998135,0.045219558,1620000000000 ,1620000000000 ,1620000000000 ,1616812337190 -1616812337223 ,112.5730073,26.89030262,58.83091736,179.4648677,179.6955779,4.9868236,0.045093975,1620000000000 ,1620000000000 ,1620000000000 ,1616812337200 -1616812337233 ,112.5730073,26.89030217,58.83036041,179.4614252,178.3488466,4.970877,0.045022408,1620000000000 ,1620000000000 ,1620000000000 ,1616812337210 -1616812337242 ,112.5730073,26.89030172,58.82979965,179.4570266,178.3511138,4.9557104,0.044883489,1620000000000 ,1620000000000 ,1620000000000 ,1616812337220 -1616812337255 ,112.5730073,26.89030128,58.82923508,179.4542945,178.3529919,4.9402995,0.044747959,1620000000000 ,1620000000000 ,1620000000000 ,1616812337230 -1616812337262 ,112.5730073,26.89030083,58.82869339,179.4489397,178.35718,4.92315,0.044595223,1620000000000 ,1620000000000 ,1620000000000 ,1616812337240 -1616812337272 ,112.5730074,26.89030039,58.82816696,179.4463442,178.3353072,4.905638,0.044440945,1620000000000 ,1620000000000 ,1620000000000 ,1616812337250 -1616812337282 ,112.5730074,26.89029994,58.82765961,179.4408527,178.3175059,4.887481,0.044278127,1620000000000 ,1620000000000 ,1620000000000 ,1616812337260 -1616812337293 ,112.5730074,26.8902995,58.82717896,179.4367273,178.3423298,4.8710938,0.044126857,1620000000000 ,1620000000000 ,1620000000000 ,1616812337270 -1616812337303 ,112.5730074,26.89029906,58.82670975,179.4323286,178.3501195,4.854551,0.043980506,1620000000000 ,1620000000000 ,1620000000000 ,1616812337280 -1616812337314 ,112.5730074,26.89029862,58.82625961,179.4269738,178.3456502,4.837499,0.043829089,1620000000000 ,1620000000000 ,1620000000000 ,1616812337290 -1616812337323 ,112.5730074,26.89029819,58.82582474,179.4223566,178.3372427,4.820544,0.043676931,1620000000000 ,1620000000000 ,1620000000000 ,1616812337300 -1616812337336 ,112.5730074,26.89029775,58.82542419,179.418559,178.3100682,4.8027854,0.043520136,1620000000000 ,1620000000000 ,1620000000000 ,1616812337310 -1616812337344 ,112.5730075,26.89029732,58.82504654,179.4127123,178.2973948,4.786618,0.04337225,1620000000000 ,1620000000000 ,1620000000000 ,1616812337320 -1616812337353 ,112.5730075,26.89029689,58.82466888,179.4086415,178.291534,4.7708306,0.043231468,1620000000000 ,1620000000000 ,1620000000000 ,1616812337340 -1616812337364 ,112.5730075,26.89029646,58.82429123,179.4059914,178.267464,4.7537627,0.043080528,1620000000000 ,1620000000000 ,1620000000000 ,1616812337350 -1616812337373 ,112.5730075,26.89029603,58.82391357,179.4009917,178.2260234,4.7352395,0.042918022,1620000000000 ,1620000000000 ,1620000000000 ,1616812337360 -1616812337383 ,112.5730075,26.8902956,58.82353973,179.3972488,178.1936932,4.71629,0.042746338,1620000000000 ,1620000000000 ,1620000000000 ,1616812337370 -1616812337393 ,112.5730075,26.89029475,58.82271576,179.3894624,178.1365565,4.6833377,0.085033046,1620000000000 ,1620000000000 ,1620000000000 ,1616812337380 -1616812337403 ,112.5730075,26.89029475,58.82271576,179.3894624,-400,4.6833377,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812337380 -1616812337413 ,112.5730075,26.89029433,58.82228851,179.385856,178.1045103,4.6661854,0.042290699,1620000000000 ,1620000000000 ,1620000000000 ,1616812337400 -1616812337425 ,112.5730076,26.89029391,58.82187653,179.3822497,178.0694528,4.6470275,0.042123917,1620000000000 ,1620000000000 ,1620000000000 ,1616812337410 -1616812337434 ,112.5730076,26.89029307,58.82100677,179.3748731,178.03701,4.611412,0.083761886,1620000000000 ,1620000000000 ,1620000000000 ,1616812337420 -1616812337443 ,112.5730076,26.89029307,58.82100677,179.3748731,-400,4.611412,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812337430 -1616812337454 ,112.5730076,26.89029224,58.81998825,179.36848,178.0158267,4.575321,0.083103371,1620000000000 ,1620000000000 ,1620000000000 ,1616812337440 -1616812337465 ,112.5730076,26.89029183,58.81965637,179.3649283,178.8818749,4.5589604,0.041279057,1620000000000 ,1620000000000 ,1620000000000 ,1616812337450 -1616812337474 ,112.5730076,26.89029142,58.81951141,179.36124,179.7513336,4.542336,0.041093942,1620000000000 ,1620000000000 ,1620000000000 ,1616812337460 -1616812337484 ,112.5730076,26.89029101,58.81930923,179.3587538,179.7774913,4.526107,0.040948192,1620000000000 ,1620000000000 ,1620000000000 ,1616812337470 -1616812337495 ,112.5730076,26.8902906,58.81904221,179.3558305,179.8055688,4.508562,0.040788817,1620000000000 ,1620000000000 ,1620000000000 ,1616812337480 -1616812337505 ,112.5730076,26.8902906,58.81904221,179.3558305,-400,4.508562,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812337490 -1616812337516 ,112.5730076,26.89028979,58.8184433,179.3460497,179.8247418,4.4732246,0.081097955,1620000000000 ,1620000000000 ,1620000000000 ,1616812337500 -1616812337531 ,112.5730076,26.89028938,58.81812286,179.3416237,179.854507,4.4564586,0.040312408,1620000000000 ,1620000000000 ,1620000000000 ,1616812337510 -1616812337536 ,112.5730076,26.89028898,58.81775665,179.3370338,179.903995,4.43974,0.040159442,1620000000000 ,1620000000000 ,1620000000000 ,1616812337520 -1616812337545 ,112.5730076,26.89028858,58.81734467,179.3327718,179.9597845,4.4233894,0.040005029,1620000000000 ,1620000000000 ,1620000000000 ,1616812337530 -1616812337554 ,112.5730076,26.89028818,58.81691742,179.326488,180.0147668,4.406613,0.039854317,1620000000000 ,1620000000000 ,1620000000000 ,1616812337540 -1616812337578 ,112.5730076,26.89028779,58.81650162,179.3223079,180.0445301,4.3897185,0.039703482,1620000000000 ,1620000000000 ,1620000000000 ,1616812337550 -1616812337587 ,112.5730076,26.89028739,58.816082,179.3165159,180.0865975,4.3740835,0.039558639,1620000000000 ,1620000000000 ,1620000000000 ,1616812337560 -1616812337589 ,112.5730076,26.890287,58.81565094,179.3100409,180.1326975,4.3572507,0.039408015,1620000000000 ,1620000000000 ,1620000000000 ,1616812337570 -1616812337595 ,112.5730076,26.8902866,58.81521606,179.3040577,180.1722524,4.3392577,0.039246655,1620000000000 ,1620000000000 ,1620000000000 ,1616812337580 -1616812337607 ,112.5730076,26.89028621,58.81477737,179.2982657,180.2026561,4.3233657,0.039099643,1620000000000 ,1620000000000 ,1620000000000 ,1616812337590 -1616812337616 ,112.5730076,26.89028582,58.81431198,179.2919273,180.2335003,4.307227,0.038950551,1620000000000 ,1620000000000 ,1620000000000 ,1616812337600 -1616812337627 ,112.5730076,26.89028544,58.81380081,179.2829387,180.2720502,4.291642,0.038806526,1620000000000 ,1620000000000 ,1620000000000 ,1616812337610 -1616812337636 ,112.5730076,26.89028505,58.81324005,179.2752889,180.2862643,4.274532,0.038654502,1620000000000 ,1620000000000 ,1620000000000 ,1616812337620 -1616812337645 ,112.5730076,26.89028466,58.81266022,179.2671747,180.293216,4.258723,0.03850616,1620000000000 ,1620000000000 ,1620000000000 ,1616812337630 -1616812337655 ,112.5730076,26.89028428,58.81206131,179.2604538,180.3115352,4.2430105,0.038361264,1620000000000 ,1620000000000 ,1620000000000 ,1616812337640 -1616812337666 ,112.5730076,26.8902839,58.81141663,179.2545525,180.3267803,4.2280626,0.038223861,1620000000000 ,1620000000000 ,1620000000000 ,1616812337650 -1616812337678 ,112.5730076,26.89028352,58.81072617,179.2485146,180.3405959,4.211505,0.03807596,1620000000000 ,1620000000000 ,1620000000000 ,1616812337660 -1616812337687 ,112.5730076,26.89028314,58.81003189,179.2415478,180.3521789,4.193488,0.037913772,1620000000000 ,1620000000000 ,1620000000000 ,1616812337670 -1616812337697 ,112.5730076,26.89028276,58.80934525,179.233898,180.3205547,4.1759934,0.037754856,1620000000000 ,1620000000000 ,1620000000000 ,1616812337680 -1616812337714 ,112.5730076,26.89028238,58.80864716,179.2262208,180.3167076,4.160699,0.037609296,1620000000000 ,1620000000000 ,1620000000000 ,1616812337690 -1616812337718 ,112.5730076,26.89028201,58.80792618,179.221631,180.3146453,4.146156,0.037476949,1620000000000 ,1620000000000 ,1620000000000 ,1616812337700 -1616812337726 ,112.5730076,26.89028164,58.80719757,179.2148008,180.3003077,4.130223,0.037334393,1620000000000 ,1620000000000 ,1620000000000 ,1616812337710 -1616812337740 ,112.5730076,26.89028126,58.80647278,179.2085443,180.2992904,4.1145625,0.037194959,1620000000000 ,1620000000000 ,1620000000000 ,1616812337720 -1616812337748 ,112.5730076,26.89028089,58.80574036,179.2035993,180.2676223,4.097344,0.037037756,1620000000000 ,1620000000000 ,1620000000000 ,1616812337730 -1616812337757 ,112.5730076,26.89028053,58.80500793,179.1975341,180.2543066,4.0808573,0.03688633,1620000000000 ,1620000000000 ,1620000000000 ,1616812337740 -1616812337768 ,112.5730076,26.89028016,58.80427551,179.1917147,180.2436464,4.0637746,0.036736386,1620000000000 ,1620000000000 ,1620000000000 ,1616812337750 -1616812337778 ,112.5730076,26.89027979,58.80351639,179.1872341,180.2135389,4.0464015,0.036575819,1620000000000 ,1620000000000 ,1620000000000 ,1616812337760 -1616812337790 ,112.5730076,26.89027943,58.80277252,179.1824257,180.2301413,4.0269837,0.036407787,1620000000000 ,1620000000000 ,1620000000000 ,1616812337770 -1616812337797 ,112.5730076,26.89027907,58.80207443,179.1783276,180.2585972,4.0061216,0.036221426,1620000000000 ,1620000000000 ,1620000000000 ,1616812337780 -1616812337807 ,112.5730076,26.89027871,58.80142212,179.1734098,180.2934534,3.9858668,0.036039711,1620000000000 ,1620000000000 ,1620000000000 ,1616812337790 -1616812337818 ,112.5730076,26.89027835,58.80081558,179.1671807,180.3357188,3.9677653,0.035868836,1620000000000 ,1620000000000 ,1620000000000 ,1616812337800 -1616812337827 ,112.5730076,26.89027799,58.80021286,179.1619624,180.3515688,3.954166,0.035736998,1620000000000 ,1620000000000 ,1620000000000 ,1616812337810 -1616812337838 ,112.5730076,26.89027763,58.79960251,179.1560611,180.3616641,3.9436615,0.035635725,1620000000000 ,1620000000000 ,1620000000000 ,1616812337820 -1616812337851 ,112.5730076,26.89027728,58.79898453,179.1510068,180.3775814,3.934192,0.035548104,1620000000000 ,1620000000000 ,1620000000000 ,1616812337830 -1616812337858 ,112.5730076,26.89027692,58.79834747,179.1490943,180.3652338,3.924165,0.035458424,1620000000000 ,1620000000000 ,1620000000000 ,1616812337840 -1616812337869 ,112.5730076,26.89027657,58.79772568,179.1476463,180.3793352,3.9111588,0.035346838,1620000000000 ,1620000000000 ,1620000000000 ,1616812337850 -1616812337881 ,112.5730076,26.89027622,58.79716492,179.1429472,180.387594,3.8989813,0.035235237,1620000000000 ,1620000000000 ,1620000000000 ,1616812337860 -1616812337892 ,112.5730076,26.89027587,58.79664612,179.1392316,180.3917807,3.888032,0.035136575,1620000000000 ,1620000000000 ,1620000000000 ,1616812337870 -1616812337899 ,112.5730076,26.89027552,58.79611969,179.1368547,180.4370232,3.8815353,0.035064429,1620000000000 ,1620000000000 ,1620000000000 ,1616812337880 -1616812337911 ,112.5730076,26.89027517,58.79553223,179.1325653,180.4607916,3.8783524,0.035027407,1620000000000 ,1620000000000 ,1620000000000 ,1616812337890 -1616812337920 ,112.5730076,26.89027482,58.79491425,179.1286857,180.4537781,3.8739426,0.034990816,1620000000000 ,1620000000000 ,1620000000000 ,1616812337900 -1616812337929 ,112.5730076,26.89027447,58.79432297,179.1228937,180.42114,3.8693612,0.034949181,1620000000000 ,1620000000000 ,1620000000000 ,1616812337910 -1616812337939 ,112.5730076,26.89027412,58.79374313,179.1195333,180.391366,3.8637753,0.034902304,1620000000000 ,1620000000000 ,1620000000000 ,1616812337920 -1616812337949 ,112.5730076,26.89027377,58.79318237,179.1168559,180.3836519,3.855961,0.034834947,1620000000000 ,1620000000000 ,1620000000000 ,1616812337930 -1616812337959 ,112.5730076,26.89027342,58.79263687,179.1124845,180.3604125,3.8501086,0.034779672,1620000000000 ,1620000000000 ,1620000000000 ,1616812337940 -1616812337972 ,112.5730076,26.89027307,58.79210663,179.1083318,180.3049427,3.8437226,0.034721376,1620000000000 ,1620000000000 ,1620000000000 ,1616812337950 -1616812337979 ,112.5730076,26.89027273,58.79156113,179.106474,180.2456517,3.8393703,0.034676139,1620000000000 ,1620000000000 ,1620000000000 ,1616812337960 -1616812337989 ,112.5730076,26.89027238,58.79100037,179.1022119,180.1949156,3.8367546,0.034647051,1620000000000 ,1620000000000 ,1620000000000 ,1616812337970 -1616812338002 ,112.5730076,26.89027203,58.79047012,179.0995891,180.170433,3.8351448,0.0346317,1620000000000 ,1620000000000 ,1620000000000 ,1616812337980 -1616812338021 ,112.5730075,26.89027169,58.78997803,179.097704,180.1022433,3.8339503,0.034623255,1620000000000 ,1620000000000 ,1620000000000 ,1616812337990 -1616812338025 ,112.5730075,26.89027134,58.78951263,179.0954364,180.0233305,3.831476,0.034602867,1620000000000 ,1620000000000 ,1620000000000 ,1616812338000 -1616812338031 ,112.5730075,26.890271,58.78908157,179.094808,179.9782212,3.8284986,0.034578227,1620000000000 ,1620000000000 ,1620000000000 ,1616812338010 -1616812338040 ,112.5730076,26.89027065,58.78863907,179.0927316,179.9137047,3.8262217,0.034556782,1620000000000 ,1620000000000 ,1620000000000 ,1616812338020 -1616812338048 ,112.5730076,26.89027031,58.78820038,179.0899722,179.8736826,3.821966,0.034522659,1620000000000 ,1620000000000 ,1620000000000 ,1616812338030 -1616812338058 ,112.5730076,26.89026996,58.78779221,179.0878412,179.8447896,3.8182852,0.034487278,1620000000000 ,1620000000000 ,1620000000000 ,1616812338040 -1616812338070 ,112.5730076,26.89026962,58.78742981,179.0870762,179.8308173,3.8149555,0.034460272,1620000000000 ,1620000000000 ,1620000000000 ,1616812338050 -1616812338081 ,112.5730076,26.89026927,58.787117,179.0867757,179.8498799,3.8133607,0.034443372,1620000000000 ,1620000000000 ,1620000000000 ,1616812338060 -1616812338089 ,112.5730076,26.89026893,58.78686523,179.0835519,179.8610928,3.8108287,0.03442712,1620000000000 ,1620000000000 ,1620000000000 ,1616812338070 -1616812338100 ,112.5730076,26.89026858,58.78667831,179.0816667,179.9057697,3.807705,0.034403208,1620000000000 ,1620000000000 ,1620000000000 ,1616812338080 -1616812338110 ,112.5730076,26.89026824,58.78655624,179.0777599,179.9672611,3.805432,0.034385514,1620000000000 ,1620000000000 ,1620000000000 ,1616812338090 -1616812338119 ,112.5730076,26.8902679,58.78647995,179.0754922,180.0058202,3.8017638,0.034358678,1620000000000 ,1620000000000 ,1620000000000 ,1616812338100 -1616812338137 ,112.5730076,26.89026755,58.78647232,179.0718859,180.0425919,3.7968397,0.034320478,1620000000000 ,1620000000000 ,1620000000000 ,1616812338110 -1616812338145 ,112.5730076,26.89026721,58.78654861,179.0673233,180.0854392,3.7912502,0.034276001,1620000000000 ,1620000000000 ,1620000000000 ,1616812338120 -1616812338149 ,112.5730076,26.89026687,58.78668213,179.062269,180.1177261,3.7849634,0.034224357,1620000000000 ,1620000000000 ,1620000000000 ,1616812338130 -1616812338160 ,112.5730076,26.89026653,58.78684998,179.0593183,180.1522434,3.7793872,0.034177997,1620000000000 ,1620000000000 ,1620000000000 ,1616812338140 -1616812338170 ,112.5730076,26.89026618,58.78704453,179.0552476,180.177305,3.7731874,0.034121561,1620000000000 ,1620000000000 ,1620000000000 ,1616812338150 -1616812338180 ,112.5730076,26.89026584,58.78731155,179.0475977,180.1645721,3.7675474,0.034073051,1620000000000 ,1620000000000 ,1620000000000 ,1616812338160 -1616812338192 ,112.5730076,26.8902655,58.78765106,179.0396747,180.1494013,3.7615173,0.034025948,1620000000000 ,1620000000000 ,1620000000000 ,1616812338170 -1616812338204 ,112.5730075,26.89026516,58.7880249,179.0348389,180.1742453,3.7568526,0.033982416,1620000000000 ,1620000000000 ,1620000000000 ,1616812338180 -1616812338210 ,112.5730075,26.89026482,58.78839111,179.0308228,180.1959101,3.7503302,0.033928391,1620000000000 ,1620000000000 ,1620000000000 ,1616812338190 -1616812338221 ,112.5730076,26.89026449,58.78883362,179.0214245,178.5472345,3.7277224,0.033675356,1620000000000 ,1620000000000 ,1620000000000 ,1616812338200 -1616812338232 ,112.5730076,26.89026415,58.78945923,179.0164248,176.0110518,3.7200246,0.033353093,1620000000000 ,1620000000000 ,1620000000000 ,1616812338210 -1616812338242 ,112.5730076,26.89026382,58.79011917,179.0112885,175.9726801,3.7128808,0.033288712,1620000000000 ,1620000000000 ,1620000000000 ,1616812338220 -1616812338251 ,112.5730076,26.89026349,58.79078293,179.0085837,175.9931349,3.7055242,0.033224817,1620000000000 ,1620000000000 ,1620000000000 ,1616812338230 -1616812338262 ,112.5730076,26.89026316,58.79141617,179.0070264,176.0162926,3.6968775,0.033150435,1620000000000 ,1620000000000 ,1620000000000 ,1616812338240 -1616812338274 ,112.5730077,26.89026283,58.79204941,179.0032288,176.0242992,3.6880097,0.03306808,1620000000000 ,1620000000000 ,1620000000000 ,1616812338250 -1616812338281 ,112.5730077,26.8902625,58.79269791,179.0011798,175.9945795,3.6802695,0.032996246,1620000000000 ,1620000000000 ,1620000000000 ,1616812338260 -1616812338292 ,112.5730077,26.89026217,58.79332352,178.9977374,175.9926519,3.6736119,0.032933895,1620000000000 ,1620000000000 ,1620000000000 ,1616812338270 -1616812338302 ,112.5730077,26.89026185,58.79390335,178.9954151,176.0267984,3.6682017,0.03288158,1620000000000 ,1620000000000 ,1620000000000 ,1616812338280 -1616812338313 ,112.5730078,26.89026152,58.79442596,178.9929016,176.0535018,3.6594312,0.032806549,1620000000000 ,1620000000000 ,1620000000000 ,1616812338290 -1616812338326 ,112.5730078,26.89026119,58.79495621,178.9914809,176.0842716,3.6483462,0.032709629,1620000000000 ,1620000000000 ,1620000000000 ,1616812338300 -1616812338333 ,112.5730078,26.89026087,58.79549789,178.9876287,176.068273,3.6382847,0.032618188,1620000000000 ,1620000000000 ,1620000000000 ,1616812338310 -1616812338342 ,112.5730078,26.89026054,58.79602814,178.9844321,176.0946161,3.628947,0.032531506,1620000000000 ,1620000000000 ,1620000000000 ,1616812338320 -1616812338353 ,112.5730079,26.89026022,58.79650879,178.9808531,176.1524029,3.6198967,0.0324428,1620000000000 ,1620000000000 ,1620000000000 ,1616812338330 -1616812338362 ,112.5730079,26.89025989,58.79695511,178.9773288,176.1633009,3.6103392,0.032357053,1620000000000 ,1620000000000 ,1620000000000 ,1616812338340 -1616812338372 ,112.5730079,26.89025957,58.7973938,178.9755256,176.1715105,3.6010625,0.032271903,1620000000000 ,1620000000000 ,1620000000000 ,1616812338350 -1616812338382 ,112.5730079,26.89025925,58.79782104,178.9728481,176.1550112,3.5927422,0.032194915,1620000000000 ,1620000000000 ,1620000000000 ,1616812338360 -1616812338393 ,112.5730079,26.89025893,58.79824066,178.9700341,176.1644053,3.5831037,0.032110155,1620000000000 ,1620000000000 ,1620000000000 ,1616812338370 -1616812338402 ,112.573008,26.89025861,58.79865265,178.966619,176.1871235,3.5725613,0.032014188,1620000000000 ,1620000000000 ,1620000000000 ,1616812338380 -1616812338413 ,112.573008,26.89025829,58.79907608,178.9643787,176.1804066,3.5617728,0.031920342,1620000000000 ,1620000000000 ,1620000000000 ,1616812338390 -1616812338424 ,112.573008,26.89025798,58.79952621,178.9621657,176.1653271,3.5493817,0.031812578,1620000000000 ,1620000000000 ,1620000000000 ,1616812338400 -1616812338435 ,112.573008,26.89025766,58.79999924,178.9601986,176.1465609,3.5378733,0.03170675,1620000000000 ,1620000000000 ,1620000000000 ,1616812338410 -1616812338442 ,112.573008,26.89025734,58.80046463,178.9590512,176.1223843,3.528153,0.031615671,1620000000000 ,1620000000000 ,1620000000000 ,1616812338420 -1616812338453 ,112.5730081,26.89025703,58.80090714,178.9566469,176.1192099,3.5187557,0.031529442,1620000000000 ,1620000000000 ,1620000000000 ,1616812338430 -1616812338464 ,112.5730081,26.89025672,58.80134964,178.9545159,176.1163472,3.508267,0.031439536,1620000000000 ,1620000000000 ,1620000000000 ,1616812338450 -1616812338474 ,112.5730081,26.8902564,58.80176926,178.9532865,177.8451818,3.4954054,0.031471119,1620000000000 ,1620000000000 ,1620000000000 ,1616812338460 -1616812338484 ,112.5730081,26.89025609,58.80217743,178.9532045,179.5881281,3.4828615,0.03153015,1620000000000 ,1620000000000 ,1620000000000 ,1616812338460 -1616812338493 ,112.5730081,26.89025577,58.80264664,178.9533411,179.5863171,3.4697993,0.031415539,1620000000000 ,1620000000000 ,1620000000000 ,1616812338480 -1616812338503 ,112.5730081,26.89025546,58.80318832,178.951456,179.5976744,3.4572897,0.031305836,1620000000000 ,1620000000000 ,1620000000000 ,1616812338480 -1616812338513 ,112.5730081,26.89025515,58.8038063,178.9494069,179.635741,3.4444964,0.031197386,1620000000000 ,1620000000000 ,1620000000000 ,1616812338500 -1616812338524 ,112.5730081,26.89025453,58.80538559,178.9447351,179.6777147,3.4136243,0.062008075,1620000000000 ,1620000000000 ,1620000000000 ,1616812338510 -1616812338533 ,112.5730081,26.89025422,58.80646896,178.9403911,179.7447252,3.3987234,0.030812175,1620000000000 ,1620000000000 ,1620000000000 ,1616812338520 -1616812338544 ,112.5730081,26.89025391,58.80773163,178.9364296,179.7875356,3.3860033,0.030701568,1620000000000 ,1620000000000 ,1620000000000 ,1616812338530 -1616812338554 ,112.5730081,26.89025361,58.80909729,178.9324407,179.8137468,3.3752177,0.030608149,1620000000000 ,1620000000000 ,1620000000000 ,1616812338540 -1616812338564 ,112.5730081,26.8902533,58.81047821,178.9265395,179.847003,3.3640945,0.030511611,1620000000000 ,1620000000000 ,1620000000000 ,1616812338550 -1616812338574 ,112.5730081,26.890253,58.8118248,178.9220042,179.8629934,3.3536086,0.030416,1620000000000 ,1620000000000 ,1620000000000 ,1616812338560 -1616812338584 ,112.5730081,26.89025269,58.81310654,178.9182613,179.8643375,3.3429048,0.030314622,1620000000000 ,1620000000000 ,1620000000000 ,1616812338570 -1616812338595 ,112.5730081,26.89025239,58.81428528,178.9168679,179.8272242,3.3348875,0.030234161,1620000000000 ,1620000000000 ,1620000000000 ,1616812338580 -1616812338606 ,112.5730081,26.89025209,58.81532288,178.9147915,179.7793,3.3257966,0.030148425,1620000000000 ,1620000000000 ,1620000000000 ,1616812338590 -1616812338614 ,112.5730081,26.89025179,58.81619644,178.9140812,179.7788472,3.3160508,0.030053188,1620000000000 ,1620000000000 ,1620000000000 ,1616812338600 -1616812338624 ,112.5730081,26.89025149,58.81687164,178.9132616,179.779545,3.305985,0.029952198,1620000000000 ,1620000000000 ,1620000000000 ,1616812338610 -1616812338635 ,112.5730081,26.89025119,58.81726837,178.9135075,179.7314968,3.2980378,0.029859409,1620000000000 ,1620000000000 ,1620000000000 ,1616812338620 -1616812338651 ,112.5730081,26.89025089,58.81731033,178.9138353,179.6857243,3.2928245,0.029787223,1620000000000 ,1620000000000 ,1620000000000 ,1616812338630 -1616812338654 ,112.5730081,26.8902506,58.81698608,178.9136987,179.657659,3.2872396,0.029718927,1620000000000 ,1620000000000 ,1620000000000 ,1616812338640 -1616812338667 ,112.5730081,26.8902503,58.8163414,178.9146003,179.6167937,3.2791905,0.029636607,1620000000000 ,1620000000000 ,1620000000000 ,1616812338650 -1616812338675 ,112.5730081,26.89025,58.81545258,178.9151467,179.5892226,3.2696507,0.029539425,1620000000000 ,1620000000000 ,1620000000000 ,1616812338660 -1616812338687 ,112.5730081,26.89024971,58.8143692,178.9160483,179.5558776,3.260694,0.02944226,1620000000000 ,1620000000000 ,1620000000000 ,1616812338670 -1616812338696 ,112.5730081,26.89024942,58.81309128,178.9202284,179.5206425,3.2520823,0.029354851,1620000000000 ,1620000000000 ,1620000000000 ,1616812338680 -1616812338710 ,112.5730081,26.89024912,58.81162643,178.9242445,179.4868344,3.2436528,0.02926548,1620000000000 ,1620000000000 ,1620000000000 ,1616812338690 -1616812338716 ,112.5730081,26.89024883,58.81000519,178.9295447,179.4490557,3.235464,0.029185056,1620000000000 ,1620000000000 ,1620000000000 ,1616812338700 -1616812338725 ,112.5730081,26.89024854,58.80826569,178.9327959,179.3859034,3.2249708,0.029091153,1620000000000 ,1620000000000 ,1620000000000 ,1616812338710 -1616812338739 ,112.5730081,26.89024825,58.80643845,178.9369214,179.3896436,3.2154584,0.028994736,1620000000000 ,1620000000000 ,1620000000000 ,1616812338720 -1616812338746 ,112.5730082,26.89024796,58.8045311,178.9422762,179.3971344,3.2059114,0.028905914,1620000000000 ,1620000000000 ,1620000000000 ,1616812338730 -1616812338757 ,112.5730082,26.89024767,58.80254364,178.9451176,179.3978582,3.1956537,0.028811521,1620000000000 ,1620000000000 ,1620000000000 ,1616812338740 -1616812338766 ,112.5730082,26.89024739,58.80050659,178.9475491,179.3907999,3.1850998,0.028714025,1620000000000 ,1620000000000 ,1620000000000 ,1616812338750 -1616812338776 ,112.5730082,26.8902471,58.79846573,178.9482048,179.41882,3.173918,0.028614821,1620000000000 ,1620000000000 ,1620000000000 ,1616812338760 -1616812338792 ,112.5730082,26.89024682,58.79642487,178.9499534,179.4725725,3.1637795,0.028519536,1620000000000 ,1620000000000 ,1620000000000 ,1616812338770 -1616812338802 ,112.5730082,26.89024653,58.79436874,178.9503085,179.5394957,3.1526213,0.028423016,1620000000000 ,1620000000000 ,1620000000000 ,1616812338780 -1616812338808 ,112.5730082,26.89024625,58.79230881,178.9500353,179.5902589,3.1420138,0.028324453,1620000000000 ,1620000000000 ,1620000000000 ,1616812338790 -1616812338818 ,112.5730082,26.89024597,58.79030609,178.9481775,179.6263924,3.1312141,0.028232164,1620000000000 ,1620000000000 ,1620000000000 ,1616812338800 -1616812338834 ,112.5730082,26.89024568,58.78839874,178.9485873,179.6575369,3.118958,0.028127494,1620000000000 ,1620000000000 ,1620000000000 ,1616812338810 -1616812338838 ,112.5730082,26.8902454,58.78659058,178.9477404,179.686504,3.1085558,0.028034148,1620000000000 ,1620000000000 ,1620000000000 ,1616812338820 -1616812338851 ,112.5730082,26.89024512,58.78487015,178.9453361,179.7418256,3.0961666,0.027932699,1620000000000 ,1620000000000 ,1620000000000 ,1616812338830 -1616812338857 ,112.5730082,26.89024485,58.78325653,178.9450629,179.8132738,3.08337,0.027821433,1620000000000 ,1620000000000 ,1620000000000 ,1616812338840 -1616812338866 ,112.5730082,26.89024457,58.78178024,178.9402272,179.8570044,3.0712183,0.027718014,1620000000000 ,1620000000000 ,1620000000000 ,1616812338850 -1616812338876 ,112.5730082,26.89024429,58.78045654,178.9360744,179.8910658,3.0594494,0.027616566,1620000000000 ,1620000000000 ,1620000000000 ,1616812338860 -1616812338894 ,112.5730082,26.89024402,58.7792778,178.9322222,179.9073694,3.0483975,0.027520578,1620000000000 ,1620000000000 ,1620000000000 ,1616812338870 -1616812338899 ,112.5730082,26.89024374,58.77824402,178.9294628,179.9464383,3.0362618,0.027420572,1620000000000 ,1620000000000 ,1620000000000 ,1616812338880 -1616812338914 ,112.5730082,26.89024347,58.77739334,178.9237801,179.9702166,3.02406,0.027318954,1620000000000 ,1620000000000 ,1620000000000 ,1616812338890 -1616812338921 ,112.5730082,26.8902432,58.77673721,178.9205289,179.948227,3.011477,0.027212019,1620000000000 ,1620000000000 ,1620000000000 ,1616812338900 -1616812338929 ,112.5730082,26.89024293,58.77627563,178.9156931,179.9781159,2.9979966,0.027100947,1620000000000 ,1620000000000 ,1620000000000 ,1616812338910 -1616812338940 ,112.5730082,26.89024266,58.77600098,178.9124966,179.9919639,2.985452,0.026991736,1620000000000 ,1620000000000 ,1620000000000 ,1616812338920 -1616812338949 ,112.5730082,26.89024239,58.77590561,178.9077701,180.0038458,2.9730546,0.026887925,1620000000000 ,1620000000000 ,1620000000000 ,1616812338930 -1616812338959 ,112.5730082,26.89024212,58.7759819,178.9059123,179.9821637,2.9608269,0.026782658,1620000000000 ,1620000000000 ,1620000000000 ,1616812338940 -1616812338971 ,112.5730082,26.89024185,58.77620316,178.9053112,179.9399466,2.95021,0.026689514,1620000000000 ,1620000000000 ,1620000000000 ,1616812338950 -1616812338979 ,112.5730082,26.89024159,58.77657318,178.904355,179.9337662,2.9378533,0.02658761,1620000000000 ,1620000000000 ,1620000000000 ,1616812338960 -1616812338988 ,112.5730082,26.89024132,58.77711105,178.9030983,179.9306156,2.92514,0.026479895,1620000000000 ,1620000000000 ,1620000000000 ,1616812338970 -1616812338999 ,112.5730082,26.89024106,58.77780914,178.9017869,179.9382343,2.9129305,0.026375397,1620000000000 ,1620000000000 ,1620000000000 ,1616812338980 -1616812339009 ,112.5730082,26.8902408,58.77862549,178.9005028,179.9450738,2.9012616,0.026273916,1620000000000 ,1620000000000 ,1620000000000 ,1616812338990 -1616812339020 ,112.5730082,26.89024053,58.77950668,178.9011585,179.9579391,2.890336,0.026176122,1620000000000 ,1620000000000 ,1620000000000 ,1616812339000 -1616812339030 ,112.5730082,26.89024027,58.78042603,178.8997378,179.9566623,2.8789089,0.026077511,1620000000000 ,1620000000000 ,1620000000000 ,1616812339010 -1616812339039 ,112.5730082,26.89024001,58.7813797,178.900011,179.9279262,2.8682504,0.025978732,1620000000000 ,1620000000000 ,1620000000000 ,1616812339020 -1616812339050 ,112.5730082,26.89023976,58.78236771,178.8998471,179.9602172,2.8586242,0.025894439,1620000000000 ,1620000000000 ,1620000000000 ,1616812339030 -1616812339059 ,112.5730082,26.8902395,58.78336716,178.9014317,180.0057477,2.8472235,0.02579623,1620000000000 ,1620000000000 ,1620000000000 ,1616812339040 -1616812339071 ,112.5730082,26.89023924,58.78435516,178.9018415,180.0162279,2.8369653,0.025699158,1620000000000 ,1620000000000 ,1620000000000 ,1616812339050 -1616812339080 ,112.5730082,26.89023898,58.78533554,178.9035354,180.0264043,2.8264408,0.025606777,1620000000000 ,1620000000000 ,1620000000000 ,1616812339060 -1616812339089 ,112.5730082,26.89023873,58.78627777,178.9054752,180.0269981,2.81655,0.025514105,1620000000000 ,1620000000000 ,1620000000000 ,1616812339070 -1616812339098 ,112.5730082,26.89023847,58.78715515,178.9069778,180.0566088,2.8071318,0.025426822,1620000000000 ,1620000000000 ,1620000000000 ,1616812339080 -1616812339111 ,112.5730082,26.89023822,58.78794479,178.9078247,180.0949635,2.7978306,0.025338918,1620000000000 ,1620000000000 ,1620000000000 ,1616812339090 -1616812339120 ,112.5730082,26.89023797,58.78865051,178.9098192,180.116406,2.7894866,0.025259188,1620000000000 ,1620000000000 ,1620000000000 ,1616812339100 -1616812339129 ,112.5730082,26.89023772,58.78927994,178.9085351,180.1420577,2.7796834,0.02517162,1620000000000 ,1620000000000 ,1620000000000 ,1616812339110 -1616812339140 ,112.5730082,26.89023747,58.78983307,178.9082072,180.1599034,2.770052,0.025078452,1620000000000 ,1620000000000 ,1620000000000 ,1616812339120 -1616812339150 ,112.5730082,26.89023722,58.79031372,178.9071417,180.1735437,2.7607138,0.024993413,1620000000000 ,1620000000000 ,1620000000000 ,1616812339130 -1616812339159 ,112.5730082,26.89023697,58.79071426,178.9067866,180.1890285,2.7521346,0.024908893,1620000000000 ,1620000000000 ,1620000000000 ,1616812339140 -1616812339171 ,112.5730082,26.89023672,58.79103851,178.9054478,180.2213609,2.7442808,0.024833432,1620000000000 ,1620000000000 ,1620000000000 ,1616812339150 -1616812339180 ,112.5730082,26.89023647,58.79128647,178.9049561,180.2319416,2.7367077,0.024762509,1620000000000 ,1620000000000 ,1620000000000 ,1616812339160 -1616812339190 ,112.5730082,26.89023622,58.79143906,178.903672,180.2442658,2.7287283,0.02468682,1620000000000 ,1620000000000 ,1620000000000 ,1616812339170 -1616812339200 ,112.5730082,26.89023598,58.79149246,178.903754,180.2643466,2.7205422,0.024609408,1620000000000 ,1620000000000 ,1620000000000 ,1616812339180 -1616812339211 ,112.5730082,26.89023573,58.79145813,178.9039452,180.2463149,2.711261,0.024522773,1620000000000 ,1620000000000 ,1620000000000 ,1616812339190 -1616812339219 ,112.5730082,26.89023549,58.79127121,178.8922519,178.8566766,2.7251897,0.02472427,1620000000000 ,1620000000000 ,1620000000000 ,1616812339200 -1616812339232 ,112.5730082,26.89023523,58.7909317,178.8904214,176.7429583,2.7180982,0.025155609,1620000000000 ,1620000000000 ,1620000000000 ,1616812339210 -1616812339241 ,112.5730082,26.89023498,58.79050064,178.8890281,176.7404105,2.7114365,0.025088931,1620000000000 ,1620000000000 ,1620000000000 ,1616812339220 -1616812339250 ,112.5730082,26.89023473,58.78998566,178.885613,176.740984,2.703975,0.025022274,1620000000000 ,1620000000000 ,1620000000000 ,1616812339230 -1616812339260 ,112.5730082,26.89023449,58.78942108,178.8839191,176.7268762,2.6962557,0.024948415,1620000000000 ,1620000000000 ,1620000000000 ,1616812339240 -1616812339273 ,112.5730082,26.89023424,58.7888031,178.8823618,176.6848694,2.6894197,0.024883834,1620000000000 ,1620000000000 ,1620000000000 ,1616812339250 -1616812339283 ,112.5730083,26.89023399,58.78811264,178.881269,176.6698212,2.6818688,0.024813814,1620000000000 ,1620000000000 ,1620000000000 ,1616812339260 -1616812339293 ,112.5730083,26.89023374,58.7873764,178.8779358,176.6643385,2.6751626,0.024748871,1620000000000 ,1620000000000 ,1620000000000 ,1616812339270 -1616812339302 ,112.5730083,26.8902335,58.78662491,178.8756955,176.6374505,2.668096,0.024686801,1620000000000 ,1620000000000 ,1620000000000 ,1616812339280 -1616812339312 ,112.5730083,26.89023325,58.78585815,178.87463,176.6118737,2.661631,0.024625021,1620000000000 ,1620000000000 ,1620000000000 ,1616812339290 -1616812339322 ,112.5730083,26.890233,58.7850647,178.8734279,176.5740122,2.6562042,0.024573693,1620000000000 ,1620000000000 ,1620000000000 ,1616812339300 -1616812339331 ,112.5730083,26.89023276,58.78423691,178.8706958,176.576443,2.6500397,0.024519348,1620000000000 ,1620000000000 ,1620000000000 ,1616812339310 -1616812339342 ,112.5730083,26.89023252,58.78340912,178.8679911,176.5957114,2.642623,0.024453995,1620000000000 ,1620000000000 ,1620000000000 ,1616812339320 -1616812339353 ,112.5730084,26.89023227,58.78260422,178.8648219,176.5948547,2.6343703,0.024381743,1620000000000 ,1620000000000 ,1620000000000 ,1616812339330 -1616812339361 ,112.5730084,26.89023203,58.78183746,178.8612429,176.5708686,2.6261115,0.024308333,1620000000000 ,1620000000000 ,1620000000000 ,1616812339340 -1616812339371 ,112.5730084,26.89023179,58.78110123,178.8584015,176.5543615,2.6196113,0.024247064,1620000000000 ,1620000000000 ,1620000000000 ,1616812339350 -1616812339381 ,112.5730084,26.89023155,58.78038406,178.8565437,176.5532596,2.6125197,0.024185641,1620000000000 ,1620000000000 ,1620000000000 ,1616812339360 -1616812339392 ,112.5730084,26.89023131,58.77970123,178.8557514,176.5476351,2.6055617,0.024121814,1620000000000 ,1620000000000 ,1620000000000 ,1616812339370 -1616812339402 ,112.5730084,26.89023107,58.77907562,178.8531013,176.5237863,2.5997474,0.024070945,1620000000000 ,1620000000000 ,1620000000000 ,1616812339380 -1616812339412 ,112.5730084,26.89023083,58.77850342,178.8518172,176.4918775,2.5937207,0.024019603,1620000000000 ,1620000000000 ,1620000000000 ,1616812339390 -1616812339422 ,112.5730085,26.89023059,58.77796936,178.8504512,176.4784397,2.5864992,0.023958324,1620000000000 ,1620000000000 ,1620000000000 ,1616812339400 -1616812339435 ,112.5730085,26.89023035,58.77747345,178.8504512,176.4422615,2.578656,0.023890422,1620000000000 ,1620000000000 ,1620000000000 ,1616812339410 -1616812339443 ,112.5730085,26.89023011,58.77705002,178.8491124,176.4401902,2.5704474,0.023819939,1620000000000 ,1620000000000 ,1620000000000 ,1616812339420 -1616812339453 ,112.5730085,26.89022987,58.77670288,178.8479376,176.4236351,2.5628555,0.023751782,1620000000000 ,1620000000000 ,1620000000000 ,1616812339430 -1616812339463 ,112.5730085,26.89022964,58.77640533,178.8467629,176.4223219,2.5563722,0.023693361,1620000000000 ,1620000000000 ,1620000000000 ,1616812339440 -1616812339478 ,112.5730085,26.8902294,58.77626419,178.8455881,177.8442122,2.5492482,0.023330236,1620000000000 ,1620000000000 ,1620000000000 ,1616812339450 -1616812339482 ,112.5730085,26.89022917,58.77626801,178.8455334,179.299634,2.5427816,0.022983464,1620000000000 ,1620000000000 ,1620000000000 ,1616812339460 -1616812339493 ,112.5730085,26.89022894,58.77632141,178.8448777,179.3521291,2.536317,0.02292867,1620000000000 ,1620000000000 ,1620000000000 ,1616812339470 -1616812339507 ,112.5730085,26.89022872,58.77641678,178.8447958,179.3918025,2.5295894,0.02286862,1620000000000 ,1620000000000 ,1620000000000 ,1616812339480 -1616812339514 ,112.5730085,26.89022849,58.77654266,178.8439488,179.391935,2.52337,0.022812542,1620000000000 ,1620000000000 ,1620000000000 ,1616812339490 -1616812339523 ,112.5730085,26.89022826,58.7767067,178.8424189,179.426458,2.516656,0.022755898,1620000000000 ,1620000000000 ,1620000000000 ,1616812339500 -1616812339532 ,112.5730085,26.89022803,58.77690887,178.8411348,179.4575265,2.5092595,0.022691301,1620000000000 ,1620000000000 ,1620000000000 ,1616812339510 -1616812339544 ,112.5730085,26.89022781,58.77714157,178.8416539,179.4782025,2.5019858,0.022625745,1620000000000 ,1620000000000 ,1620000000000 ,1616812339520 -1616812339556 ,112.5730085,26.89022758,58.7773819,178.8407523,179.5281146,2.4958131,0.022567961,1620000000000 ,1620000000000 ,1620000000000 ,1616812339530 -1616812339565 ,112.5730086,26.89022736,58.77762604,178.8388398,179.52814,2.4898849,0.022514479,1620000000000 ,1620000000000 ,1620000000000 ,1616812339540 -1616812339575 ,112.5730086,26.89022713,58.77787018,178.8374192,179.5477909,2.4840524,0.022461827,1620000000000 ,1620000000000 ,1620000000000 ,1616812339560 -1616812339584 ,112.5730086,26.89022691,58.77813339,178.8365449,179.5920858,2.4771738,0.02240379,1620000000000 ,1620000000000 ,1620000000000 ,1616812339560 -1616812339598 ,112.5730086,26.89022668,58.77839279,178.8357526,179.5784838,2.470136,0.022339547,1620000000000 ,1620000000000 ,1620000000000 ,1616812339580 -1616812339608 ,112.5730086,26.89022646,58.77862549,178.8338128,179.5832951,2.4637716,0.02227898,1620000000000 ,1620000000000 ,1620000000000 ,1616812339580 -1616812339615 ,112.5730086,26.89022602,58.77898026,178.8295781,179.5831986,2.4525058,0.044398777,1620000000000 ,1620000000000 ,1620000000000 ,1616812339600 -1616812339625 ,112.5730086,26.89022602,58.77898026,178.8295781,-400,2.4525058,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812339610 -1616812339634 ,112.5730086,26.89022558,58.77921295,178.8264362,179.5601088,2.4379628,0.044160324,1620000000000 ,1620000000000 ,1620000000000 ,1616812339620 -1616812339643 ,112.5730086,26.89022536,58.77935791,178.8256166,179.5067485,2.4313092,0.021983127,1620000000000 ,1620000000000 ,1620000000000 ,1616812339630 -1616812339654 ,112.5730086,26.89022514,58.77948761,178.824633,179.5203416,2.4253821,0.021927762,1620000000000 ,1620000000000 ,1620000000000 ,1616812339640 -1616812339666 ,112.5730086,26.89022492,58.77954102,178.8253161,179.5546872,2.420672,0.021879361,1620000000000 ,1620000000000 ,1620000000000 ,1616812339650 -1616812339678 ,112.5730086,26.8902247,58.77951813,178.8252887,179.5682691,2.414165,0.021823643,1620000000000 ,1620000000000 ,1620000000000 ,1616812339660 -1616812339684 ,112.5730086,26.8902247,58.77951813,178.8252887,-400,2.414165,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812339670 -1616812339693 ,112.5730086,26.89022427,58.77952194,178.821819,179.5352441,2.4010468,0.043467031,1620000000000 ,1620000000000 ,1620000000000 ,1616812339680 -1616812339705 ,112.5730086,26.89022405,58.77952957,178.8220103,179.4939408,2.3949337,0.021647685,1620000000000 ,1620000000000 ,1620000000000 ,1616812339690 -1616812339718 ,112.5730086,26.89022383,58.77949142,178.8232124,179.5104636,2.3898213,0.021598079,1620000000000 ,1620000000000 ,1620000000000 ,1616812339700 -1616812339727 ,112.5730086,26.89022362,58.77941513,178.8202344,179.5440214,2.384116,0.021547411,1620000000000 ,1620000000000 ,1620000000000 ,1616812339710 -1616812339740 ,112.5730086,26.8902234,58.77937698,178.8190596,179.5475451,2.3791482,0.021501967,1620000000000 ,1620000000000 ,1620000000000 ,1616812339720 -1616812339749 ,112.5730086,26.89022319,58.77936172,178.8179941,179.5432518,2.3746943,0.021461012,1620000000000 ,1620000000000 ,1620000000000 ,1616812339730 -1616812339759 ,112.5730086,26.89022297,58.77931213,178.8170379,179.5322749,2.3708751,0.021423728,1620000000000 ,1620000000000 ,1620000000000 ,1616812339740 -1616812339768 ,112.5730086,26.89022276,58.77922058,178.815344,179.5454338,2.365606,0.021378814,1620000000000 ,1620000000000 ,1620000000000 ,1616812339750 -1616812339778 ,112.5730086,26.89022255,58.77913284,178.813814,179.5329135,2.3613963,0.021336746,1620000000000 ,1620000000000 ,1620000000000 ,1616812339760 -1616812339788 ,112.5730086,26.89022233,58.77908707,178.8124753,179.4808224,2.3586164,0.021310241,1620000000000 ,1620000000000 ,1620000000000 ,1616812339770 -1616812339798 ,112.5730086,26.89022212,58.77904892,178.8119562,179.4786492,2.3561075,0.021287163,1620000000000 ,1620000000000 ,1620000000000 ,1616812339780 -1616812339811 ,112.5730086,26.89022191,58.77898788,178.8111912,179.5194255,2.3538814,0.021266872,1620000000000 ,1620000000000 ,1620000000000 ,1616812339790 -1616812339818 ,112.5730086,26.8902217,58.77889252,178.810235,179.5217496,2.351427,0.02124372,1620000000000 ,1620000000000 ,1620000000000 ,1616812339800 -1616812339828 ,112.5730086,26.89022148,58.77879333,178.8075029,179.5352049,2.349201,0.02122278,1620000000000 ,1620000000000 ,1620000000000 ,1616812339810 -1616812339839 ,112.5730086,26.89022127,58.77869797,178.8057271,179.5458564,2.346398,0.021199156,1620000000000 ,1620000000000 ,1620000000000 ,1616812339820 -1616812339848 ,112.5730086,26.89022106,58.77859497,178.804525,179.5552835,2.3426008,0.021167002,1620000000000 ,1620000000000 ,1620000000000 ,1616812339830 -1616812339858 ,112.5730086,26.89022085,58.77851486,178.801547,179.5862335,2.3391256,0.021135066,1620000000000 ,1620000000000 ,1620000000000 ,1616812339840 -1616812339870 ,112.5730086,26.89022064,58.77846527,178.7999624,179.6008173,2.3360558,0.021107835,1620000000000 ,1620000000000 ,1620000000000 ,1616812339850 -1616812339878 ,112.5730086,26.89022043,58.77842712,178.7992521,179.5919785,2.3339424,0.021086618,1620000000000 ,1620000000000 ,1620000000000 ,1616812339860 -1616812339888 ,112.5730086,26.89022022,58.77839661,178.7975855,179.6067101,2.3322003,0.021070486,1620000000000 ,1620000000000 ,1620000000000 ,1616812339870 -1616812339898 ,112.5730086,26.89022,58.77838135,178.794225,179.6220449,2.3299787,0.021053306,1620000000000 ,1620000000000 ,1620000000000 ,1616812339880 -1616812339909 ,112.5730086,26.89021979,58.77839661,178.7912744,179.6260128,2.3274138,0.021031089,1620000000000 ,1620000000000 ,1620000000000 ,1616812339890 -1616812339923 ,112.5730086,26.89021958,58.77843857,178.7893346,179.6382193,2.325265,0.021011475,1620000000000 ,1620000000000 ,1620000000000 ,1616812339900 -1616812339931 ,112.5730086,26.89021937,58.77850342,178.7882418,179.6230295,2.3226967,0.020990797,1620000000000 ,1620000000000 ,1620000000000 ,1616812339910 -1616812339940 ,112.5730086,26.89021916,58.77858353,178.7862474,179.6007426,2.3204217,0.020969488,1620000000000 ,1620000000000 ,1620000000000 ,1616812339920 -1616812339949 ,112.5730086,26.89021896,58.77870178,178.7840344,179.6029461,2.317775,0.020948875,1620000000000 ,1620000000000 ,1620000000000 ,1616812339930 -1616812339958 ,112.5730086,26.89021875,58.77885056,178.7822859,179.5973924,2.3148525,0.020922614,1620000000000 ,1620000000000 ,1620000000000 ,1616812339940 -1616812339969 ,112.5730086,26.89021854,58.77900696,178.7800729,179.579933,2.3131664,0.020905687,1620000000000 ,1620000000000 ,1620000000000 ,1616812339950 -1616812339985 ,112.5730086,26.89021833,58.77917862,178.7773408,179.5700635,2.3107672,0.020887317,1620000000000 ,1620000000000 ,1620000000000 ,1616812339960 -1616812339990 ,112.5730086,26.89021812,58.77936935,178.7755376,179.5540492,2.3090906,0.020869051,1620000000000 ,1620000000000 ,1620000000000 ,1616812339970 -1616812340010 ,112.5730086,26.89021791,58.77957916,178.7739804,179.5638547,2.3085961,0.020864223,1620000000000 ,1620000000000 ,1620000000000 ,1616812339980 -1616812340012 ,112.5730086,26.8902177,58.77978897,178.7746361,179.5748665,2.3070207,0.02085305,1620000000000 ,1620000000000 ,1620000000000 ,1616812339990 -1616812340023 ,112.5730086,26.89021749,58.77998352,178.774035,179.5744407,2.304297,0.020830272,1620000000000 ,1620000000000 ,1620000000000 ,1616812340000 -1616812340031 ,112.5730086,26.89021729,58.78018188,178.7714395,179.5970902,2.3014152,0.020803856,1620000000000 ,1620000000000 ,1620000000000 ,1616812340010 -1616812340041 ,112.5730086,26.89021708,58.78040314,178.7714395,179.6136813,2.2995296,0.020786365,1620000000000 ,1620000000000 ,1620000000000 ,1616812340020 -1616812340052 ,112.5730086,26.89021687,58.78064728,178.7699642,179.640313,2.297768,0.020771357,1620000000000 ,1620000000000 ,1620000000000 ,1616812340030 -1616812340060 ,112.5730086,26.89021666,58.7808876,178.7682157,179.69035,2.2968838,0.020760725,1620000000000 ,1620000000000 ,1620000000000 ,1616812340040 -1616812340071 ,112.5730086,26.89021646,58.78110886,178.7664945,179.7305557,2.2963352,0.020756606,1620000000000 ,1620000000000 ,1620000000000 ,1616812340050 -1616812340080 ,112.5730086,26.89021625,58.78131485,178.7667404,179.757926,2.2945065,0.02074124,1620000000000 ,1620000000000 ,1620000000000 ,1616812340060 -1616812340092 ,112.5730086,26.89021604,58.78153229,178.7659481,179.803271,2.2931087,0.020728394,1620000000000 ,1620000000000 ,1620000000000 ,1616812340070 -1616812340101 ,112.5730086,26.89021583,58.7817688,178.7632706,179.8539418,2.2914524,0.020715394,1620000000000 ,1620000000000 ,1620000000000 ,1616812340080 -1616812340112 ,112.5730086,26.89021563,58.7820015,178.7631067,179.9140634,2.2901275,0.020703141,1620000000000 ,1620000000000 ,1620000000000 ,1616812340090 -1616812340121 ,112.5730086,26.89021542,58.7822113,178.7623964,179.9851708,2.288405,0.020688886,1620000000000 ,1620000000000 ,1620000000000 ,1616812340100 -1616812340131 ,112.5730086,26.89021521,58.78240585,178.7615221,180.0226585,2.2851207,0.020662317,1620000000000 ,1620000000000 ,1620000000000 ,1616812340110 -1616812340141 ,112.5730086,26.89021501,58.78262329,178.7607025,180.0310888,2.2826405,0.020637862,1620000000000 ,1620000000000 ,1620000000000 ,1616812340120 -1616812340154 ,112.5730086,26.8902148,58.78286362,178.7608118,180.0570084,2.2815728,0.020626791,1620000000000 ,1620000000000 ,1620000000000 ,1616812340130 -1616812340162 ,112.5730086,26.89021459,58.78308868,178.7602107,180.0954131,2.2818298,0.020624982,1620000000000 ,1620000000000 ,1620000000000 ,1616812340140 -1616812340172 ,112.5730086,26.89021439,58.7832756,178.7604019,180.1590325,2.281551,0.02062533,1620000000000 ,1620000000000 ,1620000000000 ,1616812340150 -1616812340184 ,112.5730086,26.89021418,58.78344345,178.7596916,180.1807792,2.2797358,0.020610595,1620000000000 ,1620000000000 ,1620000000000 ,1616812340160 -1616812340193 ,112.5730086,26.89021398,58.78362656,178.7603473,180.1303792,2.2777572,0.020594246,1620000000000 ,1620000000000 ,1620000000000 ,1616812340170 -1616812340205 ,112.5730086,26.89021377,58.78382492,178.7607025,180.0981251,2.2751386,0.020571075,1620000000000 ,1620000000000 ,1620000000000 ,1616812340180 -1616812340212 ,112.5730086,26.89021356,58.78403473,178.7602927,180.0897334,2.273406,0.020553947,1620000000000 ,1620000000000 ,1620000000000 ,1616812340190 -1616812340222 ,112.5730086,26.89021336,58.78399277,178.766877,177.6298629,2.2786877,0.020609277,1620000000000 ,1620000000000 ,1620000000000 ,1616812340200 -1616812340233 ,112.5730087,26.89021315,58.78394699,178.7671502,177.2702979,2.277369,0.020629345,1620000000000 ,1620000000000 ,1620000000000 ,1616812340210 -1616812340242 ,112.5730087,26.89021295,58.78390503,178.7676966,177.2228427,2.2769606,0.020626573,1620000000000 ,1620000000000 ,1620000000000 ,1616812340220 -1616812340253 ,112.5730087,26.89021274,58.78385544,178.7678332,177.1906607,2.2754033,0.020613963,1620000000000 ,1620000000000 ,1620000000000 ,1616812340230 -1616812340263 ,112.5730087,26.89021253,58.78380585,178.7687621,177.1770102,2.2747324,0.020607189,1620000000000 ,1620000000000 ,1620000000000 ,1616812340240 -1616812340272 ,112.5730087,26.89021233,58.78374863,178.7690626,177.1456783,2.2739398,0.020600623,1620000000000 ,1620000000000 ,1620000000000 ,1616812340250 -1616812340282 ,112.5730087,26.89021212,58.78370667,178.7700462,177.0821013,2.2716303,0.020583812,1620000000000 ,1620000000000 ,1620000000000 ,1616812340260 -1616812340295 ,112.5730087,26.89021192,58.78368759,178.7700462,177.0127117,2.2693357,0.020564788,1620000000000 ,1620000000000 ,1620000000000 ,1616812340270 -1616812340304 ,112.5730087,26.89021171,58.78367615,178.7715488,176.9489104,2.2668424,0.020544285,1620000000000 ,1620000000000 ,1620000000000 ,1616812340280 -1616812340314 ,112.5730087,26.89021151,58.7836647,178.7720133,176.9082356,2.2658482,0.020531105,1620000000000 ,1620000000000 ,1620000000000 ,1616812340290 -1616812340324 ,112.5730087,26.8902113,58.78364944,178.7730515,176.8783931,2.265139,0.020526201,1620000000000 ,1620000000000 ,1620000000000 ,1616812340300 -1616812340333 ,112.5730088,26.8902111,58.78363037,178.7743629,176.8583131,2.264245,0.020518071,1620000000000 ,1620000000000 ,1620000000000 ,1616812340310 -1616812340343 ,112.5730088,26.89021089,58.7836113,178.7753737,176.8475523,2.2638457,0.02051418,1620000000000 ,1620000000000 ,1620000000000 ,1616812340330 -1616812340355 ,112.5730088,26.89021069,58.78359222,178.7760567,176.8385105,2.2616742,0.020499013,1620000000000 ,1620000000000 ,1620000000000 ,1616812340340 -1616812340364 ,112.5730088,26.89021048,58.78357315,178.7741443,176.8358944,2.2594662,0.020478426,1620000000000 ,1620000000000 ,1620000000000 ,1616812340350 -1616812340374 ,112.5730088,26.89021028,58.78356552,178.7733247,176.836009,2.258018,0.020464593,1620000000000 ,1620000000000 ,1620000000000 ,1616812340350 -1616812340383 ,112.5730088,26.89021008,58.78355789,178.7728056,176.8116882,2.2566783,0.020452575,1620000000000 ,1620000000000 ,1620000000000 ,1616812340370 -1616812340395 ,112.5730088,26.89020987,58.78355789,178.7723411,176.7735703,2.254751,0.020437933,1620000000000 ,1620000000000 ,1620000000000 ,1616812340380 -1616812340403 ,112.5730088,26.89020967,58.78356934,178.7711117,176.7253351,2.2530653,0.020422655,1620000000000 ,1620000000000 ,1620000000000 ,1616812340380 -1616812340415 ,112.5730089,26.89020926,58.78355408,178.7701281,176.7004847,2.2539291,0.040846529,1620000000000 ,1620000000000 ,1620000000000 ,1616812340400 -1616812340424 ,112.5730089,26.89020926,58.78355408,178.7701281,-400,2.2539291,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812340410 -1616812340433 ,112.5730089,26.89020885,58.78342438,178.7649645,176.6692536,2.2520764,0.040838572,1620000000000 ,1620000000000 ,1620000000000 ,1616812340420 -1616812340443 ,112.5730089,26.89020865,58.78338623,178.7633253,176.6020398,2.2487009,0.020387529,1620000000000 ,1620000000000 ,1620000000000 ,1616812340430 -1616812340454 ,112.5730089,26.89020845,58.78336334,178.7596643,176.5781457,2.2477374,0.020372856,1620000000000 ,1620000000000 ,1620000000000 ,1616812340440 -1616812340464 ,112.5730089,26.89020824,58.78355789,178.7568229,178.6882151,2.2479603,0.020319076,1620000000000 ,1620000000000 ,1620000000000 ,1616812340450 -1616812340475 ,112.5730089,26.89020804,58.78372192,178.7526975,178.6751516,2.247187,0.020313226,1620000000000 ,1620000000000 ,1620000000000 ,1616812340460 -1616812340485 ,112.5730089,26.89020784,58.78388214,178.7479164,178.6450803,2.2456977,0.02030228,1620000000000 ,1620000000000 ,1620000000000 ,1616812340470 -1616812340494 ,112.5730089,26.89020763,58.78404617,178.7442554,178.626291,2.244013,0.020285166,1620000000000 ,1620000000000 ,1620000000000 ,1616812340480 -1616812340505 ,112.5730089,26.89020743,58.78421402,178.7426981,178.650319,2.24405,0.020283147,1620000000000 ,1620000000000 ,1620000000000 ,1616812340490 -1616812340516 ,112.5730089,26.89020723,58.78437805,178.7417965,178.6665638,2.2424653,0.0202736,1620000000000 ,1620000000000 ,1620000000000 ,1616812340500 -1616812340527 ,112.5730089,26.89020703,58.78453827,178.7366329,178.711012,2.2417138,0.020263139,1620000000000 ,1620000000000 ,1620000000000 ,1616812340510 -1616812340540 ,112.5730089,26.89020682,58.7847023,178.7331905,178.7443946,2.2412548,0.020258906,1620000000000 ,1620000000000 ,1620000000000 ,1616812340520 -1616812340547 ,112.573009,26.89020662,58.78485489,178.7297754,178.7816035,2.240435,0.020252615,1620000000000 ,1620000000000 ,1620000000000 ,1616812340530 -1616812340560 ,112.573009,26.89020642,58.78500366,178.7247484,178.7961487,2.2391195,0.02024099,1620000000000 ,1620000000000 ,1620000000000 ,1616812340540 -1616812340565 ,112.573009,26.89020622,58.78514099,178.7217431,178.8051585,2.2379906,0.020231263,1620000000000 ,1620000000000 ,1620000000000 ,1616812340550 -1616812340576 ,112.573009,26.89020601,58.78528976,178.719093,178.829609,2.2358818,0.020214079,1620000000000 ,1620000000000 ,1620000000000 ,1616812340560 -1616812340587 ,112.573009,26.89020581,58.78544617,178.7164155,178.8495303,2.2340634,0.02019608,1620000000000 ,1620000000000 ,1620000000000 ,1616812340570 -1616812340595 ,112.573009,26.89020561,58.7856102,178.7138201,178.8755766,2.234333,0.020194725,1620000000000 ,1620000000000 ,1620000000000 ,1616812340580 -1616812340605 ,112.573009,26.89020541,58.78576279,178.7104323,178.8901475,2.2346716,0.020198118,1620000000000 ,1620000000000 ,1620000000000 ,1616812340590 -1616812340616 ,112.573009,26.89020521,58.7858963,178.7094761,178.8914875,2.2343664,0.020195942,1620000000000 ,1620000000000 ,1620000000000 ,1616812340600 -1616812340626 ,112.573009,26.890205,58.78604507,178.7061429,178.9258347,2.2332106,0.0201879,1620000000000 ,1620000000000 ,1620000000000 ,1616812340610 -1616812340639 ,112.573009,26.8902048,58.78622437,178.7038753,178.9654724,2.2310195,0.02017217,1620000000000 ,1620000000000 ,1620000000000 ,1616812340620 -1616812340648 ,112.573009,26.8902046,58.78642273,178.7035748,179.0051911,2.2291205,0.020154136,1620000000000 ,1620000000000 ,1620000000000 ,1616812340630 -1616812340657 ,112.573009,26.8902044,58.78660583,178.7010613,179.04562,2.2286742,0.020146693,1620000000000 ,1620000000000 ,1620000000000 ,1616812340640 -1616812340667 ,112.573009,26.8902042,58.78678131,178.6998318,179.0790606,2.2287192,0.02014601,1620000000000 ,1620000000000 ,1620000000000 ,1616812340650 -1616812340676 ,112.573009,26.890204,58.78694916,178.6969358,179.1235933,2.2288558,0.02014733,1620000000000 ,1620000000000 ,1620000000000 ,1616812340660 -1616812340686 ,112.573009,26.89020379,58.78711319,178.6941218,179.1578155,2.2284877,0.020144051,1620000000000 ,1620000000000 ,1620000000000 ,1616812340670 -1616812340697 ,112.573009,26.89020359,58.78725815,178.6961435,179.1738951,2.228394,0.020142642,1620000000000 ,1620000000000 ,1620000000000 ,1616812340680 -1616812340705 ,112.573009,26.89020339,58.78740692,178.694477,179.1618336,2.2277834,0.020138123,1620000000000 ,1620000000000 ,1620000000000 ,1616812340690 -1616812340718 ,112.573009,26.89020319,58.78756332,178.6941218,179.1319933,2.226932,0.020131878,1620000000000 ,1620000000000 ,1620000000000 ,1616812340700 -1616812340728 ,112.573009,26.89020299,58.78770065,178.692264,179.1556066,2.226634,0.020125301,1620000000000 ,1620000000000 ,1620000000000 ,1616812340710 -1616812340738 ,112.573009,26.89020279,58.78778839,178.6928104,179.2097297,2.227025,0.020126781,1620000000000 ,1620000000000 ,1620000000000 ,1616812340720 -1616812340758 ,112.573009,26.89020259,58.78783798,178.6921547,179.2237083,2.2259574,0.020119969,1620000000000 ,1620000000000 ,1620000000000 ,1616812340730 -1616812340765 ,112.573009,26.89020239,58.78789902,178.690734,179.1877806,2.224703,0.020106723,1620000000000 ,1620000000000 ,1620000000000 ,1616812340740 -1616812340770 ,112.573009,26.89020219,58.78799438,178.6897231,179.1479725,2.224431,0.020104877,1620000000000 ,1620000000000 ,1620000000000 ,1616812340750 -1616812340779 ,112.573009,26.89020198,58.78808594,178.6895046,179.130514,2.2237222,0.020099597,1620000000000 ,1620000000000 ,1620000000000 ,1616812340760 -1616812340790 ,112.573009,26.89020178,58.78813553,178.6887123,179.1387511,2.2232704,0.020092141,1620000000000 ,1620000000000 ,1620000000000 ,1616812340770 -1616812340800 ,112.573009,26.89020158,58.78815842,178.6880566,179.176901,2.2226424,0.020086606,1620000000000 ,1620000000000 ,1620000000000 ,1616812340780 -1616812340810 ,112.573009,26.89020138,58.78820419,178.6868545,179.1441599,2.221776,0.02007935,1620000000000 ,1620000000000 ,1620000000000 ,1616812340790 -1616812340823 ,112.573009,26.89020118,58.78825378,178.6858709,179.1230475,2.22203,0.020079639,1620000000000 ,1620000000000 ,1620000000000 ,1616812340800 -1616812340830 ,112.573009,26.89020098,58.78827286,178.6846688,179.1484346,2.2220993,0.020079546,1620000000000 ,1620000000000 ,1620000000000 ,1616812340810 -1616812340839 ,112.573009,26.89020078,58.78824615,178.6845868,179.1691368,2.2217705,0.020075512,1620000000000 ,1620000000000 ,1620000000000 ,1616812340820 -1616812340849 ,112.573009,26.89020058,58.78820801,178.6821007,179.184281,2.2207513,0.020067784,1620000000000 ,1620000000000 ,1620000000000 ,1616812340830 -1616812340860 ,112.5730091,26.89020038,58.78816986,178.6812537,179.1487095,2.2189386,0.020052648,1620000000000 ,1620000000000 ,1620000000000 ,1616812340840 -1616812340871 ,112.5730091,26.89020018,58.78812408,178.6795871,179.1412056,2.2176354,0.020039387,1620000000000 ,1620000000000 ,1620000000000 ,1616812340850 -1616812340880 ,112.5730091,26.89019998,58.78807068,178.6788495,179.1589121,2.2162802,0.020025969,1620000000000 ,1620000000000 ,1620000000000 ,1616812340860 -1616812340890 ,112.5730091,26.89019978,58.78800201,178.674806,179.1466168,2.215717,0.020018936,1620000000000 ,1620000000000 ,1620000000000 ,1616812340870 -1616812340900 ,112.5730091,26.89019958,58.78793716,178.672757,179.1130203,2.2155957,0.020016981,1620000000000 ,1620000000000 ,1620000000000 ,1616812340880 -1616812340912 ,112.5730091,26.89019938,58.78787613,178.6707625,179.0656197,2.2151902,0.020015014,1620000000000 ,1620000000000 ,1620000000000 ,1616812340890 -1616812340921 ,112.5730091,26.89019918,58.78779602,178.6688501,179.0718448,2.2138658,0.020003437,1620000000000 ,1620000000000 ,1620000000000 ,1616812340900 -1616812340931 ,112.5730091,26.89019898,58.78769684,178.6660361,179.11826,2.21215,0.019988631,1620000000000 ,1620000000000 ,1620000000000 ,1616812340910 -1616812340940 ,112.5730091,26.89019878,58.78760147,178.6612822,179.1104804,2.2111545,0.019977499,1620000000000 ,1620000000000 ,1620000000000 ,1616812340920 -1616812340951 ,112.5730091,26.89019858,58.78753662,178.659643,179.0468885,2.2098694,0.019968298,1620000000000 ,1620000000000 ,1620000000000 ,1616812340930 -1616812340960 ,112.5730091,26.89019838,58.78746796,178.6565011,178.9858439,2.20838,0.019953394,1620000000000 ,1620000000000 ,1620000000000 ,1616812340940 -1616812340971 ,112.5730091,26.89019818,58.78738785,178.6535778,178.9836804,2.2076871,0.019946175,1620000000000 ,1620000000000 ,1620000000000 ,1616812340950 -1616812340980 ,112.5730091,26.89019798,58.7872963,178.6513921,178.9779146,2.2073212,0.019941057,1620000000000 ,1620000000000 ,1620000000000 ,1616812340960 -1616812340992 ,112.5730091,26.89019778,58.7871933,178.6490699,178.929763,2.2074995,0.019941224,1620000000000 ,1620000000000 ,1620000000000 ,1616812340970 -1616812341002 ,112.5730091,26.89019758,58.78708649,178.646529,178.9160331,2.2080832,0.019945354,1620000000000 ,1620000000000 ,1620000000000 ,1616812340980 -1616812341012 ,112.5730091,26.89019738,58.78698349,178.6459826,178.9263756,2.2065346,0.019937473,1620000000000 ,1620000000000 ,1620000000000 ,1616812340990 -1616812341024 ,112.5730091,26.89019718,58.78688431,178.6436057,178.9444851,2.2038026,0.019914068,1620000000000 ,1620000000000 ,1620000000000 ,1616812341000 -1616812341033 ,112.5730091,26.89019698,58.7868042,178.6419665,178.9383996,2.201722,0.019893734,1620000000000 ,1620000000000 ,1620000000000 ,1616812341010 -1616812341043 ,112.5730091,26.89019678,58.78673172,178.6396988,178.9521093,2.2016003,0.019888379,1620000000000 ,1620000000000 ,1620000000000 ,1616812341020 -1616812341053 ,112.5730091,26.89019659,58.78665924,178.6378957,178.9723419,2.201064,0.019886023,1620000000000 ,1620000000000 ,1620000000000 ,1616812341030 -1616812341066 ,112.5730091,26.89019639,58.78658295,178.6368848,178.9767958,2.200996,0.019883207,1620000000000 ,1620000000000 ,1620000000000 ,1616812341040 -1616812341073 ,112.5730091,26.89019619,58.78651047,178.6369121,178.9979317,2.200083,0.019878132,1620000000000 ,1620000000000 ,1620000000000 ,1616812341060 -1616812341085 ,112.5730091,26.89019599,58.78646469,178.635027,178.9984259,2.1998897,0.01987477,1620000000000 ,1620000000000 ,1620000000000 ,1616812341070 -1616812341093 ,112.5730091,26.89019579,58.78644562,178.6340161,178.987677,2.2001975,0.01987804,1620000000000 ,1620000000000 ,1620000000000 ,1616812341080 -1616812341104 ,112.5730091,26.89019559,58.78639984,178.6313933,178.9880942,2.2006662,0.019880682,1620000000000 ,1620000000000 ,1620000000000 ,1616812341080 -1616812341113 ,112.5730091,26.89019519,58.78627014,178.6301366,179.0706847,2.1999,0.039757079,1620000000000 ,1620000000000 ,1620000000000 ,1616812341100 -1616812341124 ,112.5730091,26.89019519,58.78627014,178.6301366,-400,2.1999,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812341110 -1616812341135 ,112.5730091,26.890195,58.78621674,178.6272952,179.0882603,2.1990423,0.019869062,1620000000000 ,1620000000000 ,1620000000000 ,1616812341120 -1616812341144 ,112.5730092,26.8901946,58.78604507,178.6283607,179.0958339,2.2002144,0.039742522,1620000000000 ,1620000000000 ,1620000000000 ,1616812341130 -1616812341154 ,112.5730092,26.8901944,58.78591537,178.6285793,179.1639171,2.2004035,0.019876171,1620000000000 ,1620000000000 ,1620000000000 ,1616812341140 -1616812341166 ,112.5730092,26.8901942,58.78578949,178.6281148,179.1626536,2.2002265,0.019875452,1620000000000 ,1620000000000 ,1620000000000 ,1616812341150 -1616812341180 ,112.5730092,26.890194,58.78569031,178.6257653,179.1953343,2.200491,0.019876631,1620000000000 ,1620000000000 ,1620000000000 ,1616812341160 -1616812341188 ,112.5730092,26.8901938,58.7855835,178.624044,179.2427208,2.2010906,0.019882313,1620000000000 ,1620000000000 ,1620000000000 ,1616812341170 -1616812341195 ,112.5730092,26.8901936,58.78543091,178.6247271,179.3321777,2.201545,0.019884702,1620000000000 ,1620000000000 ,1620000000000 ,1616812341180 -1616812341205 ,112.5730092,26.8901936,58.78543091,178.6247271,-400,2.201545,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812341190 -1616812341215 ,112.5730092,26.89019321,58.78465271,178.6148096,179.2475325,2.180037,0.039441154,1620000000000 ,1620000000000 ,1620000000000 ,1616812341200 -1616812341225 ,112.5730092,26.89019302,58.78337097,178.613307,178.5637121,2.1799564,0.019008733,1620000000000 ,1620000000000 ,1620000000000 ,1616812341210 -1616812341235 ,112.5730092,26.89019283,58.78207397,178.6129245,178.6059602,2.1809244,0.019013591,1620000000000 ,1620000000000 ,1620000000000 ,1616812341220 -1616812341248 ,112.5730092,26.89019264,58.78072739,178.6140447,178.6998577,2.1825473,0.019024535,1620000000000 ,1620000000000 ,1620000000000 ,1616812341230 -1616812341258 ,112.5730092,26.89019245,58.77936935,178.613908,178.7565015,2.1832817,0.019034079,1620000000000 ,1620000000000 ,1620000000000 ,1616812341240 -1616812341265 ,112.5730092,26.89019226,58.77802658,178.61246,178.7320646,2.183418,0.019036311,1620000000000 ,1620000000000 ,1620000000000 ,1616812341250 -1616812341276 ,112.5730092,26.89019207,58.77668381,178.6123781,178.7655484,2.1844597,0.019043077,1620000000000 ,1620000000000 ,1620000000000 ,1616812341260 -1616812341285 ,112.5730092,26.89019188,58.77530289,178.6113672,178.8167489,2.185352,0.019051137,1620000000000 ,1620000000000 ,1620000000000 ,1616812341270 -1616812341296 ,112.5730092,26.89019169,58.77387238,178.6106842,178.8808028,2.1859322,0.019054578,1620000000000 ,1620000000000 ,1620000000000 ,1616812341280 -1616812341306 ,112.5730092,26.8901915,58.77245712,178.607597,178.90992,2.18629,0.019058597,1620000000000 ,1620000000000 ,1620000000000 ,1616812341290 -1616812341316 ,112.5730092,26.89019131,58.77108765,178.6054386,178.8897085,2.1873643,0.019068566,1620000000000 ,1620000000000 ,1620000000000 ,1616812341300 -1616812341327 ,112.5730092,26.89019112,58.76974106,178.6028158,178.8878464,2.1882274,0.019078595,1620000000000 ,1620000000000 ,1620000000000 ,1616812341310 -1616812341336 ,112.5730092,26.89019093,58.76837158,178.6011766,178.9093686,2.1889436,0.019084051,1620000000000 ,1620000000000 ,1620000000000 ,1616812341320 -1616812341346 ,112.5730092,26.89019073,58.76700211,178.5982533,178.9430111,2.1891055,0.019087046,1620000000000 ,1620000000000 ,1620000000000 ,1616812341330 -1616812341356 ,112.5730092,26.89019054,58.76567841,178.5944557,178.8944955,2.1888802,0.019086971,1620000000000 ,1620000000000 ,1620000000000 ,1616812341340 -1616812341366 ,112.5730092,26.89019035,58.76439667,178.5935541,178.8151987,2.1892319,0.019090955,1620000000000 ,1620000000000 ,1620000000000 ,1616812341350 -1616812341375 ,112.5730092,26.89019016,58.76312637,178.5906854,178.7767818,2.1901677,0.019098307,1620000000000 ,1620000000000 ,1620000000000 ,1616812341360 -1616812341386 ,112.5730092,26.89018997,58.76185226,178.5884178,178.7686381,2.1924202,0.019115782,1620000000000 ,1620000000000 ,1620000000000 ,1616812341370 -1616812341402 ,112.5730092,26.89018978,58.76059723,178.58503,178.7169845,2.193694,0.019130507,1620000000000 ,1620000000000 ,1620000000000 ,1616812341380 -1616812341408 ,112.5730092,26.89018959,58.75934601,178.5830356,178.6137763,2.1944013,0.019137754,1620000000000 ,1620000000000 ,1620000000000 ,1616812341390 -1616812341426 ,112.5730093,26.8901894,58.75810242,178.5815876,178.5463032,2.1960852,0.019151689,1620000000000 ,1620000000000 ,1620000000000 ,1616812341400 -1616812341430 ,112.5730093,26.8901892,58.75685883,178.5812324,178.5042047,2.1973505,0.019164378,1620000000000 ,1620000000000 ,1620000000000 ,1616812341410 -1616812341437 ,112.5730093,26.89018901,58.75561523,178.578637,178.4414506,2.1986606,0.019175391,1620000000000 ,1620000000000 ,1620000000000 ,1616812341420 -1616812341448 ,112.5730093,26.89018882,58.75437546,178.5771343,178.3962366,2.2001808,0.019188994,1620000000000 ,1620000000000 ,1620000000000 ,1616812341430 -1616812341459 ,112.5730093,26.89018863,58.75315094,178.5766152,178.3548302,2.2016346,0.019204465,1620000000000 ,1620000000000 ,1620000000000 ,1616812341440 -1616812341472 ,112.5730093,26.89018843,58.75235748,178.5752765,178.6394428,2.2028341,0.019548567,1620000000000 ,1620000000000 ,1620000000000 ,1616812341450 -1616812341478 ,112.5730093,26.89018824,58.75198364,178.5739105,178.9265828,2.2045715,0.019898917,1620000000000 ,1620000000000 ,1620000000000 ,1616812341460 -1616812341490 ,112.5730093,26.89018804,58.75159454,178.5729542,178.911009,2.2058332,0.019910623,1620000000000 ,1620000000000 ,1620000000000 ,1616812341470 -1616812341499 ,112.5730093,26.89018784,58.75120544,178.5717794,178.8681504,2.206942,0.019920517,1620000000000 ,1620000000000 ,1620000000000 ,1616812341480 -1616812341509 ,112.5730093,26.89018764,58.75082397,178.5709871,178.8205349,2.2085233,0.01993487,1620000000000 ,1620000000000 ,1620000000000 ,1616812341490 -1616812341519 ,112.5730093,26.89018744,58.75045395,178.5698397,178.790462,2.209425,0.019944143,1620000000000 ,1620000000000 ,1620000000000 ,1616812341500 -1616812341528 ,112.5730093,26.89018724,58.75008011,178.5700582,178.7658915,2.2117722,0.019962084,1620000000000 ,1620000000000 ,1620000000000 ,1616812341510 -1616812341542 ,112.5730093,26.89018704,58.74969864,178.5685283,178.7308104,2.2134283,0.019978848,1620000000000 ,1620000000000 ,1620000000000 ,1616812341520 -1616812341553 ,112.5730093,26.89018684,58.74931335,178.5682277,178.6850097,2.2147408,0.019990092,1620000000000 ,1620000000000 ,1620000000000 ,1616812341530 -1616812341558 ,112.5730093,26.89018664,58.748909,178.5684736,178.6079656,2.2161942,0.020003199,1620000000000 ,1620000000000 ,1620000000000 ,1616812341540 -1616812341570 ,112.5730093,26.89018644,58.74848557,178.5677633,178.5368926,2.2176344,0.02001554,1620000000000 ,1620000000000 ,1620000000000 ,1616812341550 -1616812341579 ,112.5730093,26.89018624,58.74805832,178.5682004,178.4806072,2.2195942,0.0200318,1620000000000 ,1620000000000 ,1620000000000 ,1616812341560 -1616812341595 ,112.5730093,26.89018604,58.74762726,178.5679545,178.4337876,2.2206905,0.020043677,1620000000000 ,1620000000000 ,1620000000000 ,1616812341570 -1616812341600 ,112.5730093,26.89018584,58.74720001,178.5692386,178.3652881,2.2219393,0.020054042,1620000000000 ,1620000000000 ,1620000000000 ,1616812341580 -1616812341610 ,112.5730093,26.89018564,58.74677277,178.5675994,178.3036058,2.2227447,0.020063464,1620000000000 ,1620000000000 ,1620000000000 ,1616812341590 -1616812341624 ,112.5730093,26.89018544,58.74633789,178.5667524,178.2408302,2.2237554,0.0200707,1620000000000 ,1620000000000 ,1620000000000 ,1616812341600 -1616812341633 ,112.5730094,26.89018524,58.7458725,178.5670803,178.2335636,2.2252967,0.020083959,1620000000000 ,1620000000000 ,1620000000000 ,1616812341610 -1616812341644 ,112.5730094,26.89018504,58.74538803,178.5661514,178.2452388,2.2255938,0.020088159,1620000000000 ,1620000000000 ,1620000000000 ,1616812341620 -1616812341650 ,112.5730094,26.89018483,58.74492264,178.5653591,178.2329499,2.2256434,0.020088232,1620000000000 ,1620000000000 ,1620000000000 ,1616812341630 -1616812341660 ,112.5730094,26.89018463,58.7444725,178.5654957,178.2126338,2.226897,0.020098943,1620000000000 ,1620000000000 ,1620000000000 ,1616812341640 -1616812341669 ,112.5730094,26.89018443,58.74401093,178.5648673,178.2281449,2.2287033,0.020112917,1620000000000 ,1620000000000 ,1620000000000 ,1616812341650 -1616812341681 ,112.5730094,26.89018423,58.74352264,178.5638018,178.2453966,2.2291713,0.020120969,1620000000000 ,1620000000000 ,1620000000000 ,1616812341660 -1616812341689 ,112.5730094,26.89018403,58.74301529,178.561944,178.2681742,2.2281415,0.020113172,1620000000000 ,1620000000000 ,1620000000000 ,1616812341670 -1616812341702 ,112.5730094,26.89018383,58.74253845,178.5622172,178.2863402,2.2273068,0.020105349,1620000000000 ,1620000000000 ,1620000000000 ,1616812341680 -1616812341710 ,112.5730094,26.89018363,58.74210358,178.5612063,178.286892,2.2280083,0.020109446,1620000000000 ,1620000000000 ,1620000000000 ,1616812341690 -1616812341720 ,112.5730094,26.89018343,58.74168777,178.5588294,178.3338502,2.2291617,0.020119983,1620000000000 ,1620000000000 ,1620000000000 ,1616812341700 -1616812341730 ,112.5730094,26.89018323,58.74124908,178.5601135,178.3832513,2.2300117,0.020128814,1620000000000 ,1620000000000 ,1620000000000 ,1616812341710 -1616812341741 ,112.5730094,26.89018302,58.74080658,178.5584469,178.4143962,2.2296233,0.020126528,1620000000000 ,1620000000000 ,1620000000000 ,1616812341720 -1616812341749 ,112.5730094,26.89018282,58.74039841,178.5550591,178.4557092,2.2296011,0.020126435,1620000000000 ,1620000000000 ,1620000000000 ,1616812341730 -1616812341760 ,112.5730094,26.89018262,58.74002075,178.5522724,178.4996813,2.229626,0.020128793,1620000000000 ,1620000000000 ,1620000000000 ,1616812341740 -1616812341769 ,112.5730094,26.89018242,58.73962021,178.5497589,178.5930147,2.2298162,0.020128099,1620000000000 ,1620000000000 ,1620000000000 ,1616812341750 -1616812341779 ,112.5730094,26.89018222,58.73922348,178.5465897,178.6673641,2.2297478,0.020128368,1620000000000 ,1620000000000 ,1620000000000 ,1616812341760 -1616812341790 ,112.5730094,26.89018202,58.73888397,178.5434478,178.6788244,2.2288742,0.020125,1620000000000 ,1620000000000 ,1620000000000 ,1616812341770 -1616812341800 ,112.5730095,26.89018182,58.73859406,178.5419725,178.6746406,2.228369,0.02012071,1620000000000 ,1620000000000 ,1620000000000 ,1616812341780 -1616812341810 ,112.5730095,26.89018162,58.73828125,178.5408797,178.7307575,2.2298353,0.020128396,1620000000000 ,1620000000000 ,1620000000000 ,1616812341790 -1616812341823 ,112.5730095,26.89018142,58.73793411,178.5400874,178.8367645,2.230072,0.020133653,1620000000000 ,1620000000000 ,1620000000000 ,1616812341800 -1616812341831 ,112.5730095,26.89018121,58.73760605,178.5368362,178.8772092,2.229011,0.020126906,1620000000000 ,1620000000000 ,1620000000000 ,1616812341810 -1616812341840 ,112.5730095,26.89018101,58.73735428,178.5341861,178.8790609,2.2282867,0.020122158,1620000000000 ,1620000000000 ,1620000000000 ,1616812341820 -1616812341852 ,112.5730095,26.89018081,58.73714447,178.5320824,178.9087691,2.2285266,0.020123391,1620000000000 ,1620000000000 ,1620000000000 ,1616812341830 -1616812341860 ,112.5730095,26.89018061,58.73691559,178.5306617,178.9647454,2.2296355,0.020130948,1620000000000 ,1620000000000 ,1620000000000 ,1616812341840 -1616812341871 ,112.5730095,26.89018041,58.73664856,178.5290771,179.0506309,2.2302294,0.020136976,1620000000000 ,1620000000000 ,1620000000000 ,1616812341850 -1616812341880 ,112.5730095,26.89018021,58.73638535,178.5250883,179.0808707,2.2299852,0.020136867,1620000000000 ,1620000000000 ,1620000000000 ,1616812341860 -1616812341892 ,112.5730095,26.89018001,58.73617172,178.5230392,179.0825322,2.2285142,0.020128246,1620000000000 ,1620000000000 ,1620000000000 ,1616812341870 -1616812341901 ,112.5730095,26.89017981,58.73599625,178.5216185,179.0939208,2.2274508,0.020118181,1620000000000 ,1620000000000 ,1620000000000 ,1616812341880 -1616812341912 ,112.5730095,26.8901796,58.73581314,178.5211541,179.1496155,2.2273126,0.020114418,1620000000000 ,1620000000000 ,1620000000000 ,1616812341890 -1616812341925 ,112.5730095,26.8901794,58.7355957,178.5230392,179.2074482,2.228365,0.020120523,1620000000000 ,1620000000000 ,1620000000000 ,1616812341900 -1616812341930 ,112.5730095,26.8901792,58.73537445,178.5208536,179.2271132,2.2295105,0.020131906,1620000000000 ,1620000000000 ,1620000000000 ,1616812341910 -1616812341942 ,112.5730095,26.890179,58.73516846,178.5189957,179.2065035,2.229087,0.020132485,1620000000000 ,1620000000000 ,1620000000000 ,1616812341920 -1616812341954 ,112.5730095,26.8901788,58.73495483,178.5187499,179.2031524,2.2280602,0.020122419,1620000000000 ,1620000000000 ,1620000000000 ,1616812341930 -1616812341962 ,112.5730095,26.8901786,58.7347374,178.5184493,179.2403119,2.2272668,0.02011627,1620000000000 ,1620000000000 ,1620000000000 ,1616812341940 -1616812341973 ,112.5730095,26.8901784,58.73454285,178.516209,179.2213633,2.2260525,0.020106018,1620000000000 ,1620000000000 ,1620000000000 ,1616812341950 -1616812341981 ,112.5730095,26.8901782,58.73436356,178.515608,179.1802936,2.2263799,0.020106159,1620000000000 ,1620000000000 ,1620000000000 ,1616812341960 -1616812341991 ,112.5730095,26.89017799,58.73418045,178.5170833,179.169582,2.2263522,0.020106276,1620000000000 ,1620000000000 ,1620000000000 ,1616812341970 -1616812342001 ,112.5730095,26.89017779,58.73398209,178.5173565,179.1602233,2.2265675,0.020107364,1620000000000 ,1620000000000 ,1620000000000 ,1616812341980 -1616812342011 ,112.5730095,26.89017759,58.7338028,178.5185859,179.140268,2.2261655,0.020106279,1620000000000 ,1620000000000 ,1620000000000 ,1616812341990 -1616812342024 ,112.5730095,26.89017739,58.73364639,178.5183127,179.094734,2.226094,0.02010477,1620000000000 ,1620000000000 ,1620000000000 ,1616812342000 -1616812342032 ,112.5730095,26.89017719,58.73350525,178.5189684,179.0347003,2.2256486,0.020102447,1620000000000 ,1620000000000 ,1620000000000 ,1616812342010 -1616812342043 ,112.5730095,26.89017699,58.73335648,178.51987,179.0223125,2.225061,0.020096533,1620000000000 ,1620000000000 ,1620000000000 ,1616812342020 -1616812342052 ,112.5730095,26.89017679,58.73319244,178.5202525,179.0071537,2.2252007,0.020095966,1620000000000 ,1620000000000 ,1620000000000 ,1616812342030 -1616812342063 ,112.5730095,26.89017659,58.7330246,178.5210994,178.9851944,2.2248628,0.0200938,1620000000000 ,1620000000000 ,1620000000000 ,1616812342040 -1616812342074 ,112.5730095,26.89017639,58.73285675,178.5204711,178.9668448,2.2239075,0.02008744,1620000000000 ,1620000000000 ,1620000000000 ,1616812342050 -1616812342084 ,112.5730095,26.89017619,58.73270035,178.5209355,178.922283,2.2234027,0.020080426,1620000000000 ,1620000000000 ,1620000000000 ,1616812342070 -1616812342103 ,112.5730096,26.89017578,58.73239899,178.5242413,-400,2.2236516,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812342080 -1616812342098 ,112.5730096,26.89017578,58.73239899,178.5242413,178.8589309,2.2236516,0.040159991,1620000000000 ,1620000000000 ,1620000000000 ,1616812342080 -1616812342116 ,112.5730096,26.89017538,58.73200989,178.526427,178.8225711,2.2243457,0.040178655,1620000000000 ,1620000000000 ,1620000000000 ,1616812342100 -1616812342126 ,112.5730096,26.89017518,58.73182297,178.5262357,178.8183569,2.2232227,0.020079022,1620000000000 ,1620000000000 ,1620000000000 ,1616812342110 -1616812342134 ,112.5730096,26.89017498,58.73166275,178.5259899,178.8306438,2.2224228,0.020072362,1620000000000 ,1620000000000 ,1620000000000 ,1616812342120 -1616812342143 ,112.5730096,26.89017478,58.73151016,178.5232578,178.8126525,2.2216198,0.020066099,1620000000000 ,1620000000000 ,1620000000000 ,1616812342130 -1616812342154 ,112.5730096,26.89017458,58.73133469,178.5231485,178.7861759,2.2219758,0.020064784,1620000000000 ,1620000000000 ,1620000000000 ,1616812342140 -1616812342163 ,112.5730096,26.89017438,58.73114395,178.5238042,178.7973211,2.2226946,0.020071277,1620000000000 ,1620000000000 ,1620000000000 ,1616812342150 -1616812342175 ,112.5730096,26.89017418,58.7309494,178.5214819,178.7729183,2.223775,0.020078103,1620000000000 ,1620000000000 ,1620000000000 ,1616812342160 -1616812342185 ,112.5730096,26.89017398,58.73075867,178.5215092,178.7643912,2.2248356,0.02008995,1620000000000 ,1620000000000 ,1620000000000 ,1616812342170 -1616812342195 ,112.5730096,26.89017378,58.73056412,178.5188045,178.7737261,2.2243564,0.020088803,1620000000000 ,1620000000000 ,1620000000000 ,1616812342180 -1616812342208 ,112.5730096,26.89017378,58.73056412,178.5188045,-400,2.2243564,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812342180 -1616812342216 ,112.5730096,26.89017337,58.73051071,178.517056,178.8335264,2.2302697,0.040246288,1620000000000 ,1620000000000 ,1620000000000 ,1616812342200 -1616812342226 ,112.5730096,26.89017317,58.73121643,178.5151982,179.2161127,2.22973,0.020341661,1620000000000 ,1620000000000 ,1620000000000 ,1616812342210 -1616812342236 ,112.5730096,26.89017317,58.73121643,178.5151982,-400,2.22973,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812342220 -1616812342247 ,112.5730096,26.89017276,58.73254776,178.5114825,179.2394263,2.2314713,0.040697214,1620000000000 ,1620000000000 ,1620000000000 ,1616812342230 -1616812342261 ,112.5730096,26.89017256,58.73318863,178.5072751,179.2692563,2.2317655,0.02035778,1620000000000 ,1620000000000 ,1620000000000 ,1616812342240 -1616812342265 ,112.5730096,26.89017236,58.73384094,178.5041332,179.2984546,2.2316263,0.020356365,1620000000000 ,1620000000000 ,1620000000000 ,1616812342250 -1616812342276 ,112.5730096,26.89017215,58.73449707,178.5013465,179.3351043,2.2316391,0.020355894,1620000000000 ,1620000000000 ,1620000000000 ,1616812342260 -1616812342287 ,112.5730096,26.89017195,58.7351265,178.4997073,179.3440577,2.2318702,0.020357413,1620000000000 ,1620000000000 ,1620000000000 ,1616812342270 -1616812342297 ,112.5730096,26.89017175,58.73572922,178.4987511,179.3440897,2.2319598,0.020358158,1620000000000 ,1620000000000 ,1620000000000 ,1616812342280 -1616812342308 ,112.5730096,26.89017154,58.73631287,178.495172,179.3510348,2.2330801,0.020363601,1620000000000 ,1620000000000 ,1620000000000 ,1616812342290 -1616812342317 ,112.5730096,26.89017134,58.73687744,178.4923034,179.3969899,2.2342026,0.020374084,1620000000000 ,1620000000000 ,1620000000000 ,1616812342300 -1616812342327 ,112.5730096,26.89017114,58.73740768,178.49091,179.4601247,2.2343683,0.02037639,1620000000000 ,1620000000000 ,1620000000000 ,1616812342310 -1616812342336 ,112.5730096,26.89017093,58.73791885,178.4890795,179.5303877,2.2342584,0.020376743,1620000000000 ,1620000000000 ,1620000000000 ,1616812342320 -1616812342346 ,112.5730096,26.89017073,58.7384491,178.4857191,179.5499394,2.2340424,0.020374909,1620000000000 ,1620000000000 ,1620000000000 ,1616812342330 -1616812342356 ,112.5730096,26.89017052,58.73899841,178.4835334,179.5153231,2.234314,0.020376922,1620000000000 ,1620000000000 ,1620000000000 ,1616812342340 -1616812342365 ,112.5730096,26.89017032,58.7395134,178.4814843,179.5498867,2.2356837,0.020384281,1620000000000 ,1620000000000 ,1620000000000 ,1616812342350 -1616812342376 ,112.5730096,26.89017012,58.73996735,178.4799271,179.6310791,2.2371862,0.020397352,1620000000000 ,1620000000000 ,1620000000000 ,1616812342360 -1616812342386 ,112.5730096,26.89016991,58.74039841,178.4776321,179.6867377,2.2381947,0.020406186,1620000000000 ,1620000000000 ,1620000000000 ,1616812342370 -1616812342403 ,112.5730096,26.89016971,58.74087143,178.4754191,179.6938788,2.2383208,0.020411955,1620000000000 ,1620000000000 ,1620000000000 ,1616812342380 -1616812342413 ,112.5730096,26.8901695,58.74137497,178.4727144,179.6991494,2.2379746,0.020410677,1620000000000 ,1620000000000 ,1620000000000 ,1616812342390 -1616812342422 ,112.5730096,26.8901693,58.74185562,178.4720314,179.7161243,2.237697,0.020406712,1620000000000 ,1620000000000 ,1620000000000 ,1616812342400 -1616812342430 ,112.5730096,26.8901691,58.74228287,178.471403,179.7581514,2.2384975,0.02040943,1620000000000 ,1620000000000 ,1620000000000 ,1616812342410 -1616812342439 ,112.5730096,26.89016889,58.74269867,178.4690534,179.7874527,2.23905,0.020415807,1620000000000 ,1620000000000 ,1620000000000 ,1616812342420 -1616812342448 ,112.5730096,26.89016869,58.74314117,178.4677966,179.7348961,2.2396405,0.020420741,1620000000000 ,1620000000000 ,1620000000000 ,1616812342430 -1616812342472 ,112.5730096,26.89016848,58.74360275,178.4648187,179.7161233,2.2397916,0.020424134,1620000000000 ,1620000000000 ,1620000000000 ,1616812342440 -1616812342476 ,112.5730096,26.89016828,58.74373245,178.4648187,179.6454623,2.2393281,0.020323889,1620000000000 ,1620000000000 ,1620000000000 ,1616812342450 -1616812342479 ,112.5730096,26.89016808,58.74353027,178.4633707,179.5294775,2.2370229,0.020208406,1620000000000 ,1620000000000 ,1620000000000 ,1616812342460 -1616812342487 ,112.5730096,26.89016788,58.74334335,178.4621959,179.4914658,2.2358744,0.020193534,1620000000000 ,1620000000000 ,1620000000000 ,1616812342470 -1616812342497 ,112.5730096,26.89016767,58.74318314,178.4611031,179.441963,2.2351549,0.020187456,1620000000000 ,1620000000000 ,1620000000000 ,1616812342480 -1616812342508 ,112.5730097,26.89016747,58.74302673,178.4610757,179.4014035,2.235016,0.020185465,1620000000000 ,1620000000000 ,1620000000000 ,1616812342490 -1616812342520 ,112.5730097,26.89016727,58.74285507,178.4613216,179.4167491,2.233107,0.020173199,1620000000000 ,1620000000000 ,1620000000000 ,1616812342500 -1616812342528 ,112.5730097,26.89016707,58.74269104,178.4591906,179.3927916,2.2304235,0.020149677,1620000000000 ,1620000000000 ,1620000000000 ,1616812342510 -1616812342541 ,112.5730097,26.89016687,58.74256897,178.4579338,179.3534594,2.2284696,0.020130658,1620000000000 ,1620000000000 ,1620000000000 ,1616812342520 -1616812342549 ,112.5730097,26.89016667,58.74248886,178.4577426,179.3112609,2.2268414,0.020116429,1620000000000 ,1620000000000 ,1620000000000 ,1616812342530 -1616812342560 ,112.5730097,26.89016647,58.74241257,178.4572235,179.2674172,2.2243514,0.020097942,1620000000000 ,1620000000000 ,1620000000000 ,1616812342540 -1616812342569 ,112.5730097,26.89016627,58.74232864,178.457606,179.2354985,2.2213712,0.020070248,1620000000000 ,1620000000000 ,1620000000000 ,1616812342550 -1616812342580 ,112.5730097,26.89016606,58.74228287,178.4586715,179.2124734,2.2179782,0.020040981,1620000000000 ,1620000000000 ,1620000000000 ,1616812342560 -1616812342588 ,112.5730097,26.89016586,58.74228668,178.4611031,179.1701671,2.2161899,0.020022524,1620000000000 ,1620000000000 ,1620000000000 ,1616812342570 -1616812342602 ,112.5730097,26.89016566,58.74230194,178.4612943,179.1183321,2.2149522,0.020011598,1620000000000 ,1620000000000 ,1620000000000 ,1616812342580 -1616812342609 ,112.5730097,26.89016546,58.7423172,178.4620046,179.1242671,2.2122161,0.019991282,1620000000000 ,1620000000000 ,1620000000000 ,1616812342590 -1616812342619 ,112.5730097,26.89016527,58.74235153,178.4612123,179.0746218,2.2081518,0.019957518,1620000000000 ,1620000000000 ,1620000000000 ,1616812342600 -1616812342630 ,112.5730097,26.89016507,58.74241638,178.463398,179.0335577,2.2041762,0.019921045,1620000000000 ,1620000000000 ,1620000000000 ,1616812342610 -1616812342640 ,112.5730097,26.89016487,58.74248505,178.4637532,179.0278418,2.2021391,0.019897151,1620000000000 ,1620000000000 ,1620000000000 ,1616812342620 -1616812342651 ,112.5730097,26.89016467,58.74253464,178.4646821,179.0223726,2.2007759,0.019885381,1620000000000 ,1620000000000 ,1620000000000 ,1616812342630 -1616812342662 ,112.5730097,26.89016447,58.74256134,178.4649553,179.0112469,2.1976516,0.019861105,1620000000000 ,1620000000000 ,1620000000000 ,1616812342640 -1616812342670 ,112.5730097,26.89016427,58.74258804,178.4641357,179.0172544,2.1942227,0.019828392,1620000000000 ,1620000000000 ,1620000000000 ,1616812342650 -1616812342680 ,112.5730097,26.89016407,58.74263382,178.4629882,179.0182348,2.1905742,0.019797764,1620000000000 ,1620000000000 ,1620000000000 ,1616812342660 -1616812342690 ,112.5730097,26.89016388,58.74268723,178.4624964,179.0237828,2.1867397,0.019762797,1620000000000 ,1620000000000 ,1620000000000 ,1616812342670 -1616812342700 ,112.5730097,26.89016368,58.74271774,178.462032,179.0254046,2.1836364,0.019732769,1620000000000 ,1620000000000 ,1620000000000 ,1616812342680 -1616812342709 ,112.5730097,26.89016348,58.74272537,178.4605566,179.0473836,2.1802819,0.019702331,1620000000000 ,1620000000000 ,1620000000000 ,1616812342690 -1616812342719 ,112.5730097,26.89016328,58.74272537,178.4604747,179.0651703,2.1770945,0.019672924,1620000000000 ,1620000000000 ,1620000000000 ,1616812342700 -1616812342737 ,112.5730097,26.89016309,58.74272919,178.4579338,179.0808195,2.174093,0.019645427,1620000000000 ,1620000000000 ,1620000000000 ,1616812342710 -1616812342743 ,112.5730097,26.89016289,58.7427063,178.4543275,179.110913,2.1708145,0.019616029,1620000000000 ,1620000000000 ,1620000000000 ,1616812342720 -1616812342752 ,112.5730097,26.8901627,58.74264908,178.4512676,179.1047201,2.1673038,0.019583217,1620000000000 ,1620000000000 ,1620000000000 ,1616812342730 -1616812342760 ,112.5730097,26.8901625,58.74256897,178.4487541,179.0803736,2.164012,0.019552142,1620000000000 ,1620000000000 ,1620000000000 ,1616812342740 -1616812342770 ,112.5730097,26.89016231,58.74246979,178.4469509,179.0209016,2.1601949,0.01951786,1620000000000 ,1620000000000 ,1620000000000 ,1616812342750 -1616812342780 ,112.5730097,26.89016211,58.74232101,178.4454209,179.0032348,2.157835,0.019490551,1620000000000 ,1620000000000 ,1620000000000 ,1616812342760 -1616812342793 ,112.5730097,26.89016192,58.74213028,178.4422791,178.9954325,2.154012,0.019460284,1620000000000 ,1620000000000 ,1620000000000 ,1616812342770 -1616812342800 ,112.5730097,26.89016172,58.74191666,178.4410496,178.9673933,2.1495583,0.019418534,1620000000000 ,1620000000000 ,1620000000000 ,1616812342780 -1616812342810 ,112.5730097,26.89016153,58.74171448,178.4408311,178.9117483,2.1443446,0.019374118,1620000000000 ,1620000000000 ,1620000000000 ,1616812342790 -1616812342820 ,112.5730097,26.89016134,58.74151611,178.4391918,178.8751618,2.1396935,0.019328802,1620000000000 ,1620000000000 ,1620000000000 ,1616812342800 -1616812342831 ,112.5730098,26.89016114,58.74132156,178.4385908,178.8598033,2.136043,0.019295719,1620000000000 ,1620000000000 ,1620000000000 ,1616812342810 -1616812342842 ,112.5730098,26.89016095,58.74110031,178.4388913,178.8257669,2.1323748,0.019260393,1620000000000 ,1620000000000 ,1620000000000 ,1616812342820 -1616812342852 ,112.5730098,26.89016076,58.74086761,178.4390279,178.820445,2.12894,0.019229285,1620000000000 ,1620000000000 ,1620000000000 ,1616812342830 -1616812342861 ,112.5730098,26.89016057,58.74064636,178.4367329,178.8097771,2.1242545,0.019190572,1620000000000 ,1620000000000 ,1620000000000 ,1616812342840 -1616812342874 ,112.5730098,26.89016037,58.74043655,178.4362685,178.8005392,2.1188476,0.019143742,1620000000000 ,1620000000000 ,1620000000000 ,1616812342850 -1616812342881 ,112.5730098,26.89016018,58.74024963,178.4358314,178.8426859,2.1132963,0.019093949,1620000000000 ,1620000000000 ,1620000000000 ,1616812342860 -1616812342892 ,112.5730098,26.89015999,58.74009323,178.436651,178.8772509,2.1084769,0.019049134,1620000000000 ,1620000000000 ,1620000000000 ,1616812342870 -1616812342904 ,112.5730098,26.8901598,58.73997116,178.4334544,178.8800835,2.1038759,0.019008676,1620000000000 ,1620000000000 ,1620000000000 ,1616812342880 -1616812342913 ,112.5730098,26.89015961,58.73986053,178.4325802,178.9039646,2.0982394,0.018962184,1620000000000 ,1620000000000 ,1620000000000 ,1616812342890 -1616812342928 ,112.5730098,26.89015942,58.73976135,178.4293017,178.9725767,2.0925014,0.018909729,1620000000000 ,1620000000000 ,1620000000000 ,1616812342900 -1616812342933 ,112.5730098,26.89015924,58.7396965,178.4256407,179.0660459,2.0865152,0.018857887,1620000000000 ,1620000000000 ,1620000000000 ,1616812342910 -1616812342944 ,112.5730098,26.89015905,58.73968124,178.4215972,179.1210022,2.0808966,0.018807183,1620000000000 ,1620000000000 ,1620000000000 ,1616812342920 -1616812342956 ,112.5730098,26.89015886,58.73970032,178.4183461,179.1796105,2.0757651,0.018762127,1620000000000 ,1620000000000 ,1620000000000 ,1616812342930 -1616812342964 ,112.5730098,26.89015867,58.73972321,178.4150949,179.2539096,2.0698578,0.018710632,1620000000000 ,1620000000000 ,1620000000000 ,1616812342940 -1616812342977 ,112.5730098,26.89015849,58.7397728,178.4104231,179.3334337,2.0630698,0.018652618,1620000000000 ,1620000000000 ,1620000000000 ,1616812342950 -1616812342990 ,112.5730098,26.8901583,58.73986816,178.4030738,179.4107494,2.0552046,0.018585572,1620000000000 ,1620000000000 ,1620000000000 ,1616812342960 -1616812342993 ,112.5730098,26.89015812,58.73999405,178.39679,179.4746426,2.0493095,0.018528334,1620000000000 ,1620000000000 ,1620000000000 ,1616812342970 -1616812343003 ,112.5730098,26.89015793,58.74012375,178.3903696,179.552392,2.0444622,0.01848448,1620000000000 ,1620000000000 ,1620000000000 ,1616812342980 -1616812343013 ,112.5730098,26.89015775,58.74023819,178.3820914,179.6229817,2.0380554,0.018430243,1620000000000 ,1620000000000 ,1620000000000 ,1616812342990 -1616812343023 ,112.5730098,26.89015756,58.74036407,178.3732941,179.6489764,2.030518,0.0183655,1620000000000 ,1620000000000 ,1620000000000 ,1616812343000 -1616812343032 ,112.5730098,26.89015738,58.74052048,178.3649613,179.6737021,2.0224624,0.018294134,1620000000000 ,1620000000000 ,1620000000000 ,1616812343010 -1616812343043 ,112.5730098,26.8901572,58.7407074,178.3558089,179.7055241,2.0157654,0.018231852,1620000000000 ,1620000000000 ,1620000000000 ,1616812343020 -1616812343053 ,112.5730098,26.89015702,58.74089813,178.3483503,179.70822,2.0083132,0.018167294,1620000000000 ,1620000000000 ,1620000000000 ,1616812343030 -1616812343063 ,112.5730098,26.89015683,58.74107742,178.3391432,179.7318617,2.0009549,0.018100175,1620000000000 ,1620000000000 ,1620000000000 ,1616812343050 -1616812343074 ,112.5730098,26.89015665,58.74126434,178.3303186,179.6991848,1.9930744,0.018031429,1620000000000 ,1620000000000 ,1620000000000 ,1616812343060 -1616812343083 ,112.5730098,26.89015647,58.74144363,178.3211388,179.6588962,1.9844354,0.01795361,1620000000000 ,1620000000000 ,1620000000000 ,1616812343070 -1616812343093 ,112.5730098,26.8901563,58.74162292,178.3141174,179.6350178,1.9760674,0.017877293,1620000000000 ,1620000000000 ,1620000000000 ,1616812343070 -1616812343103 ,112.5730098,26.89015612,58.7417984,178.3049649,179.6180895,1.9673818,0.017800167,1620000000000 ,1620000000000 ,1620000000000 ,1616812343080 -1616812343114 ,112.5730098,26.89015594,58.74198532,178.2962769,179.6032042,1.9586323,0.017721559,1620000000000 ,1620000000000 ,1620000000000 ,1616812343100 -1616812343124 ,112.5730098,26.89015576,58.7421875,178.2891735,179.5556309,1.9492215,0.017637993,1620000000000 ,1620000000000 ,1620000000000 ,1616812343110 -1616812343134 ,112.5730098,26.89015541,58.74256516,178.2773163,179.5410335,1.9313335,0.035030619,1620000000000 ,1620000000000 ,1620000000000 ,1616812343120 -1616812343144 ,112.5730098,26.89015524,58.74274063,178.27218,179.5234051,1.9220304,0.017391868,1620000000000 ,1620000000000 ,1620000000000 ,1616812343130 -1616812343154 ,112.5730098,26.89015507,58.74292755,178.2669071,179.4978809,1.9120984,0.017303199,1620000000000 ,1620000000000 ,1620000000000 ,1616812343140 -1616812343164 ,112.5730098,26.89015489,58.7431221,178.2614156,179.4752563,1.9030643,0.017219903,1620000000000 ,1620000000000 ,1620000000000 ,1616812343150 -1616812343175 ,112.5730098,26.89015472,58.74330521,178.2568531,179.4886024,1.8927991,0.017130494,1620000000000 ,1620000000000 ,1620000000000 ,1616812343160 -1616812343185 ,112.5730098,26.89015455,58.74346542,178.2521539,179.4893867,1.8826933,0.017037049,1620000000000 ,1620000000000 ,1620000000000 ,1616812343170 -1616812343194 ,112.5730098,26.89015438,58.74362564,178.2469356,179.4720578,1.8727167,0.016947783,1620000000000 ,1620000000000 ,1620000000000 ,1616812343180 -1616812343204 ,112.5730098,26.89015422,58.74380875,178.2424277,179.4459674,1.8624252,0.016855724,1620000000000 ,1620000000000 ,1620000000000 ,1616812343190 -1616812343216 ,112.5730098,26.89015405,58.74404526,178.2471269,178.5650579,1.8636171,0.016785334,1620000000000 ,1620000000000 ,1620000000000 ,1616812343200 -1616812343226 ,112.5730098,26.89015388,58.74430847,178.2445587,177.2232242,1.8543881,0.016830499,1620000000000 ,1620000000000 ,1620000000000 ,1616812343210 -1616812343236 ,112.5730099,26.89015371,58.74452972,178.243302,177.2320513,1.8452382,0.01674688,1620000000000 ,1620000000000 ,1620000000000 ,1616812343220 -1616812343246 ,112.5730099,26.89015355,58.74473572,178.2378105,177.1889253,1.8350358,0.016656832,1620000000000 ,1620000000000 ,1620000000000 ,1616812343230 -1616812343255 ,112.5730099,26.89015338,58.74495697,178.2351058,177.1433606,1.8238727,0.016558259,1620000000000 ,1620000000000 ,1620000000000 ,1616812343240 -1616812343265 ,112.5730099,26.89015322,58.74518585,178.229505,177.1315717,1.8132044,0.016460929,1620000000000 ,1620000000000 ,1620000000000 ,1616812343250 -1616812343276 ,112.5730099,26.89015305,58.74539566,178.2260626,177.1697058,1.8026781,0.016364285,1620000000000 ,1620000000000 ,1620000000000 ,1616812343260 -1616812343286 ,112.5730099,26.89015289,58.74559021,178.2235764,177.1779122,1.7933649,0.016276924,1620000000000 ,1620000000000 ,1620000000000 ,1616812343270 -1616812343296 ,112.5730099,26.89015273,58.74578094,178.2205984,177.164873,1.783891,0.016192155,1620000000000 ,1620000000000 ,1620000000000 ,1616812343280 -1616812343307 ,112.5730099,26.89015257,58.74596024,178.2179756,177.1741655,1.7738538,0.016103135,1620000000000 ,1620000000000 ,1620000000000 ,1616812343290 -1616812343316 ,112.5730099,26.89015241,58.74613571,178.2130033,177.2062628,1.7628472,0.016004685,1620000000000 ,1620000000000 ,1620000000000 ,1616812343300 -1616812343326 ,112.5730099,26.89015225,58.746315,178.2068561,177.2479926,1.7523644,0.01590787,1620000000000 ,1620000000000 ,1620000000000 ,1616812343310 -1616812343337 ,112.5730099,26.89015209,58.74649811,178.2023482,177.2682033,1.7426436,0.015818871,1620000000000 ,1620000000000 ,1620000000000 ,1616812343320 -1616812343347 ,112.5730099,26.89015193,58.7466774,178.1966928,177.2731949,1.733127,0.015732325,1620000000000 ,1620000000000 ,1620000000000 ,1616812343330 -1616812343356 ,112.5730099,26.89015178,58.74684525,178.1916384,177.2823552,1.7241621,0.015649991,1620000000000 ,1620000000000 ,1620000000000 ,1616812343340 -1616812343367 ,112.57301,26.89015162,58.74700546,178.1871032,177.3051075,1.7139742,0.015560444,1620000000000 ,1620000000000 ,1620000000000 ,1616812343350 -1616812343378 ,112.57301,26.89015147,58.74714661,178.181038,177.3501746,1.7033372,0.015463874,1620000000000 ,1620000000000 ,1620000000000 ,1616812343360 -1616812343388 ,112.57301,26.89015131,58.74729156,178.1749181,177.3644494,1.6927152,0.015369065,1620000000000 ,1620000000000 ,1620000000000 ,1616812343370 -1616812343397 ,112.57301,26.89015116,58.74745941,178.1692627,177.3596051,1.682214,0.015273053,1620000000000 ,1620000000000 ,1620000000000 ,1616812343380 -1616812343407 ,112.57301,26.89015101,58.74763107,178.162214,177.3380328,1.672761,0.015186057,1620000000000 ,1620000000000 ,1620000000000 ,1616812343390 -1616812343418 ,112.57301,26.89015086,58.74776459,178.1560122,177.3335808,1.6632786,0.015099686,1620000000000 ,1620000000000 ,1620000000000 ,1616812343400 -1616812343428 ,112.57301,26.89015071,58.74786758,178.1503568,177.3878551,1.6537154,0.0150118,1620000000000 ,1620000000000 ,1620000000000 ,1616812343410 -1616812343437 ,112.57301,26.89015056,58.74798965,178.1430894,177.3837674,1.643702,0.01492373,1620000000000 ,1620000000000 ,1620000000000 ,1616812343420 -1616812343448 ,112.57301,26.89015041,58.7481308,178.1370516,177.3291177,1.6338735,0.014834895,1620000000000 ,1620000000000 ,1620000000000 ,1616812343430 -1616812343457 ,112.57301,26.89015026,58.74827576,178.1320519,177.3017907,1.6246601,0.014750809,1620000000000 ,1620000000000 ,1620000000000 ,1616812343440 -1616812343468 ,112.57301,26.89015012,58.74835205,178.127462,178.2727046,1.6147143,0.014635012,1620000000000 ,1620000000000 ,1620000000000 ,1616812343450 -1616812343477 ,112.57301,26.89014997,58.74837112,178.1228174,179.2418536,1.6043293,0.014517948,1620000000000 ,1620000000000 ,1620000000000 ,1616812343460 -1616812343488 ,112.57301,26.89014983,58.74841309,178.1178451,179.2269563,1.5944977,0.014428943,1620000000000 ,1620000000000 ,1620000000000 ,1616812343470 -1616812343498 ,112.57301,26.89014968,58.74847412,178.1123536,179.2198614,1.584406,0.014339266,1620000000000 ,1620000000000 ,1620000000000 ,1616812343480 -1616812343508 ,112.57301,26.89014954,58.74853134,178.1090751,179.2111307,1.5740874,0.014245605,1620000000000 ,1620000000000 ,1620000000000 ,1616812343490 -1616812343517 ,112.57301,26.8901494,58.7485733,178.1045399,179.2130912,1.5649256,0.014159616,1620000000000 ,1620000000000 ,1620000000000 ,1616812343500 -1616812343527 ,112.57301,26.89014926,58.74860001,178.098502,179.2070661,1.5556393,0.014076574,1620000000000 ,1620000000000 ,1620000000000 ,1616812343510 -1616812343539 ,112.57301,26.89014912,58.74862671,178.0928193,179.1893382,1.5457066,0.013988228,1620000000000 ,1620000000000 ,1620000000000 ,1616812343520 -1616812343549 ,112.57301,26.89014898,58.74866104,178.0889397,179.1674079,1.5359516,0.013898821,1620000000000 ,1620000000000 ,1620000000000 ,1616812343530 -1616812343561 ,112.57301,26.89014884,58.74872971,178.0861257,179.1632806,1.5265021,0.0138146,1620000000000 ,1620000000000 ,1620000000000 ,1616812343540 -1616812343568 ,112.57301,26.89014871,58.74881744,178.0828472,179.1411315,1.5171319,0.013729982,1620000000000 ,1620000000000 ,1620000000000 ,1616812343550 -1616812343578 ,112.57301,26.89014857,58.74889374,178.0805522,179.1341515,1.5080569,0.013647425,1620000000000 ,1620000000000 ,1620000000000 ,1616812343560 -1616812343588 ,112.57301,26.89014843,58.7489357,178.078066,179.1476918,1.4988551,0.01356338,1620000000000 ,1620000000000 ,1620000000000 ,1616812343570 -1616812343598 ,112.57301,26.8901483,58.74896622,178.0733122,179.1447206,1.4900029,0.013481992,1620000000000 ,1620000000000 ,1620000000000 ,1616812343580 -1616812343609 ,112.57301,26.89014816,58.74901581,178.0704436,179.1421013,1.4806265,0.01339964,1620000000000 ,1620000000000 ,1620000000000 ,1616812343590 -1616812343620 ,112.5730101,26.89014803,58.74911499,178.067411,179.1050376,1.4719579,0.013320409,1620000000000 ,1620000000000 ,1620000000000 ,1616812343600 -1616812343628 ,112.5730101,26.8901479,58.74923706,178.0645423,179.127837,1.4643251,0.013250432,1620000000000 ,1620000000000 ,1620000000000 ,1616812343610 -1616812343638 ,112.5730101,26.89014777,58.74934006,178.0635587,179.1735415,1.4566921,0.013181467,1620000000000 ,1620000000000 ,1620000000000 ,1616812343620 -1616812343649 ,112.5730101,26.89014764,58.74940109,178.0609086,179.2006589,1.449299,0.013112158,1620000000000 ,1620000000000 ,1620000000000 ,1616812343630 -1616812343660 ,112.5730101,26.89014751,58.74944305,178.0580126,179.2043103,1.4419203,0.013045535,1620000000000 ,1620000000000 ,1620000000000 ,1616812343640 -1616812343671 ,112.5730101,26.89014738,58.74947357,178.0532588,179.1959733,1.4344958,0.012977315,1620000000000 ,1620000000000 ,1620000000000 ,1616812343650 -1616812343680 ,112.5730101,26.89014725,58.74950409,178.050718,179.2302073,1.4275696,0.012914043,1620000000000 ,1620000000000 ,1620000000000 ,1616812343660 -1616812343691 ,112.5730101,26.89014712,58.74954224,178.0466472,179.2806951,1.4208418,0.012853253,1620000000000 ,1620000000000 ,1620000000000 ,1616812343670 -1616812343701 ,112.5730101,26.89014699,58.74959183,178.0425764,179.3383458,1.4135808,0.012790251,1620000000000 ,1620000000000 ,1620000000000 ,1616812343680 -1616812343710 ,112.5730101,26.89014686,58.74964142,178.038287,179.3829121,1.4065328,0.012724841,1620000000000 ,1620000000000 ,1620000000000 ,1616812343690 -1616812343721 ,112.5730101,26.89014674,58.74968338,178.0346807,179.4184285,1.4009765,0.012671817,1620000000000 ,1620000000000 ,1620000000000 ,1616812343700 -1616812343731 ,112.5730101,26.89014661,58.7497139,178.0307192,179.4743134,1.3959845,0.012625044,1620000000000 ,1620000000000 ,1620000000000 ,1616812343710 -1616812343740 ,112.5730101,26.89014648,58.74973297,178.0249818,179.5330556,1.3911288,0.012581455,1620000000000 ,1620000000000 ,1620000000000 ,1616812343720 -1616812343750 ,112.5730101,26.89014636,58.74973297,178.0201734,179.5592606,1.3850511,0.012529375,1620000000000 ,1620000000000 ,1620000000000 ,1616812343730 -1616812343760 ,112.5730101,26.89014623,58.7497406,178.0153649,179.6045843,1.3782649,0.012469925,1620000000000 ,1620000000000 ,1620000000000 ,1616812343740 -1616812343770 ,112.5730101,26.89014611,58.74976349,178.0084801,179.6495137,1.3712108,0.012406702,1620000000000 ,1620000000000 ,1620000000000 ,1616812343750 -1616812343780 ,112.5730101,26.89014599,58.74979782,178.0039448,179.6942069,1.3653312,0.012350791,1620000000000 ,1620000000000 ,1620000000000 ,1616812343760 -1616812343790 ,112.5730101,26.89014586,58.74981689,177.9994916,179.7470003,1.3607163,0.012306714,1620000000000 ,1620000000000 ,1620000000000 ,1616812343770 -1616812343800 ,112.5730101,26.89014574,58.74981689,177.9928253,179.7632895,1.3554505,0.012260979,1620000000000 ,1620000000000 ,1620000000000 ,1616812343780 -1616812343811 ,112.5730101,26.89014562,58.74981308,177.9871152,179.7533598,1.3495078,0.012207744,1620000000000 ,1620000000000 ,1620000000000 ,1616812343790 -1616812343822 ,112.5730101,26.8901455,58.74980164,177.9815965,179.7896436,1.3435935,0.012154731,1620000000000 ,1620000000000 ,1620000000000 ,1616812343800 -1616812343831 ,112.5730101,26.89014538,58.74979401,177.9770885,179.8341507,1.337157,0.012097778,1620000000000 ,1620000000000 ,1620000000000 ,1616812343810 -1616812343840 ,112.5730101,26.89014526,58.74979401,177.9734002,179.8460053,1.3307866,0.01204034,1620000000000 ,1620000000000 ,1620000000000 ,1616812343820 -1616812343851 ,112.5730101,26.89014514,58.74981308,177.9685645,179.8347421,1.323947,0.011980945,1620000000000 ,1620000000000 ,1620000000000 ,1616812343830 -1616812343862 ,112.5730101,26.89014502,58.74983978,177.9629091,179.80933,1.3165461,0.011915068,1620000000000 ,1620000000000 ,1620000000000 ,1616812343840 -1616812343876 ,112.5730101,26.8901449,58.7498703,177.9579094,179.7885837,1.3085788,0.011844236,1620000000000 ,1620000000000 ,1620000000000 ,1616812343850 -1616812343883 ,112.5730101,26.89014478,58.74990463,177.954303,179.769642,1.3008444,0.011773765,1620000000000 ,1620000000000 ,1620000000000 ,1616812343860 -1616812343892 ,112.5730101,26.89014466,58.74995422,177.9512704,179.7303724,1.2925702,0.011701775,1620000000000 ,1620000000000 ,1620000000000 ,1616812343870 -1616812343901 ,112.5730101,26.89014455,58.7500267,177.9475002,179.6620247,1.2831879,0.011619238,1620000000000 ,1620000000000 ,1620000000000 ,1616812343880 -1616812343911 ,112.5730101,26.89014443,58.75012589,177.9453145,179.6060467,1.2731735,0.011531377,1620000000000 ,1620000000000 ,1620000000000 ,1616812343890 -1616812343922 ,112.5730101,26.89014432,58.75024033,177.9421726,179.5867382,1.2622018,0.011434345,1620000000000 ,1620000000000 ,1620000000000 ,1616812343900 -1616812343932 ,112.5730101,26.89014421,58.75035477,177.9393859,179.6153108,1.2510772,0.01133411,1620000000000 ,1620000000000 ,1620000000000 ,1616812343910 -1616812343942 ,112.5730101,26.89014409,58.7504921,177.9372002,179.6420993,1.2399043,0.011233994,1620000000000 ,1620000000000 ,1620000000000 ,1616812343920 -1616812343951 ,112.5730101,26.89014398,58.75067902,177.9344408,179.6462528,1.228967,0.011137103,1620000000000 ,1620000000000 ,1620000000000 ,1616812343930 -1616812343961 ,112.5730101,26.89014387,58.75089645,177.9319,179.6529247,1.2173501,0.011035189,1620000000000 ,1620000000000 ,1620000000000 ,1616812343940 -1616812343972 ,112.5730101,26.89014376,58.75112534,177.9294685,179.6952987,1.2055088,0.010928535,1620000000000 ,1620000000000 ,1620000000000 ,1616812343950 -1616812343982 ,112.5730101,26.89014365,58.75134277,177.9266817,179.7758418,1.1937305,0.0108219,1620000000000 ,1620000000000 ,1620000000000 ,1616812343960 -1616812343992 ,112.5730101,26.89014355,58.75156021,177.9242502,179.8250529,1.1820229,0.010717023,1620000000000 ,1620000000000 ,1620000000000 ,1616812343970 -1616812344002 ,112.5730101,26.89014344,58.75178909,177.9221465,179.8602556,1.170029,0.010609499,1620000000000 ,1620000000000 ,1620000000000 ,1616812343980 -1616812344012 ,112.5730101,26.89014334,58.75202179,177.91895,179.9342505,1.1583251,0.010503854,1620000000000 ,1620000000000 ,1620000000000 ,1616812343990 -1616812344023 ,112.5730101,26.89014323,58.75225067,177.9163272,180.0318506,1.146731,0.010399341,1620000000000 ,1620000000000 ,1620000000000 ,1616812344000 -1616812344033 ,112.5730101,26.89014313,58.75246048,177.9130487,180.1063877,1.1349509,0.010292991,1620000000000 ,1620000000000 ,1620000000000 ,1616812344010 -1616812344043 ,112.5730101,26.89014303,58.75265503,177.9088686,180.1728724,1.1234039,0.010188129,1620000000000 ,1620000000000 ,1620000000000 ,1616812344020 -1616812344054 ,112.5730101,26.89014293,58.75284195,177.9035411,180.238098,1.111402,0.010081284,1620000000000 ,1620000000000 ,1620000000000 ,1616812344030 -1616812344063 ,112.5730101,26.89014283,58.75302124,177.9002626,180.3260103,1.0990388,0.009969963,1620000000000 ,1620000000000 ,1620000000000 ,1616812344040 -1616812344074 ,112.5730101,26.89014273,58.75318146,177.89723,180.4388796,1.0872995,0.009862863,1620000000000 ,1620000000000 ,1620000000000 ,1616812344060 -1616812344086 ,112.5730101,26.89014263,58.75332642,177.892804,180.536136,1.0756631,0.009757392,1620000000000 ,1620000000000 ,1620000000000 ,1616812344060 -1616812344095 ,112.5730101,26.89014253,58.75345612,177.8888971,180.6137899,1.0642519,0.009654273,1620000000000 ,1620000000000 ,1620000000000 ,1616812344080 -1616812344104 ,112.5730101,26.89014244,58.75357056,177.8840887,180.6742121,1.0526508,0.009549102,1620000000000 ,1620000000000 ,1620000000000 ,1616812344080 -1616812344114 ,112.5730101,26.89014225,58.75374985,177.876876,180.7136102,1.0287505,0.018778781,1620000000000 ,1620000000000 ,1620000000000 ,1616812344100 -1616812344124 ,112.5730101,26.89014225,58.75374985,177.876876,-400,1.0287505,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812344110 -1616812344134 ,112.5730101,26.89014207,58.75387955,177.8687891,180.7175495,1.0051513,0.018339125,1620000000000 ,1620000000000 ,1620000000000 ,1616812344120 -1616812344145 ,112.5730101,26.89014198,58.75391769,177.8661116,180.7627902,0.99431586,0.009018093,1620000000000 ,1620000000000 ,1620000000000 ,1616812344130 -1616812344155 ,112.5730101,26.89014189,58.75393677,177.8632156,180.8029994,0.9831473,0.008917702,1620000000000 ,1620000000000 ,1620000000000 ,1616812344140 -1616812344163 ,112.5730101,26.8901418,58.75394821,177.8605655,180.8212033,0.97154284,0.008813832,1620000000000 ,1620000000000 ,1620000000000 ,1616812344150 -1616812344174 ,112.5730101,26.8901418,58.75394821,177.8605655,-400,0.97154284,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812344160 -1616812344183 ,112.5730101,26.89014163,58.75397873,177.8547735,180.7978113,0.94870466,0.017314524,1620000000000 ,1620000000000 ,1620000000000 ,1616812344170 -1616812344194 ,112.5730101,26.89014154,58.75398254,177.8519321,180.8296766,0.9380724,0.008507523,1620000000000 ,1620000000000 ,1620000000000 ,1616812344180 -1616812344205 ,112.5730101,26.89014154,58.75398254,177.8519321,-400,0.9380724,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812344180 -1616812344215 ,112.5730101,26.89014138,58.75408173,177.858052,178.8130203,0.9095646,0.016460609,1620000000000 ,1620000000000 ,1620000000000 ,1616812344200 -1616812344224 ,112.5730101,26.8901413,58.75452042,177.8551833,169.0822897,0.899967,0.007729989,1620000000000 ,1620000000000 ,1620000000000 ,1616812344210 -1616812344234 ,112.5730101,26.8901413,58.75452042,177.8551833,-400,0.899967,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812344220 -1616812344245 ,112.5730101,26.89014115,58.75539398,177.8528884,168.9504035,0.8829455,0.015223265,1620000000000 ,1620000000000 ,1620000000000 ,1616812344230 -1616812344257 ,112.5730101,26.89014108,58.75580978,177.8503749,168.8760275,0.87615883,0.007508931,1620000000000 ,1620000000000 ,1620000000000 ,1616812344240 -1616812344268 ,112.5730101,26.890141,58.7562027,177.8502656,168.8452289,0.87065965,0.007455339,1620000000000 ,1620000000000 ,1620000000000 ,1616812344250 -1616812344277 ,112.5730102,26.89014093,58.75657272,177.8498284,168.8276842,0.86626136,0.007412301,1620000000000 ,1620000000000 ,1620000000000 ,1616812344260 -1616812344286 ,112.5730102,26.89014086,58.75690842,177.8488722,168.8275844,0.861924,0.007372279,1620000000000 ,1620000000000 ,1620000000000 ,1616812344270 -1616812344300 ,112.5730102,26.89014079,58.75722885,177.8464134,168.8579581,0.8573354,0.007328907,1620000000000 ,1620000000000 ,1620000000000 ,1616812344280 -1616812344305 ,112.5730102,26.89014072,58.75754547,177.8446375,168.8539471,0.85293895,0.00728873,1620000000000 ,1620000000000 ,1620000000000 ,1616812344290 -1616812344315 ,112.5730102,26.89014064,58.75786972,177.8428617,168.8026151,0.8487518,0.007250427,1620000000000 ,1620000000000 ,1620000000000 ,1616812344300 -1616812344325 ,112.5730102,26.89014057,58.75819016,177.8402389,168.7549385,0.84493715,0.007215774,1620000000000 ,1620000000000 ,1620000000000 ,1616812344310 -1616812344335 ,112.5730102,26.8901405,58.75849533,177.837862,168.6864799,0.84111416,0.007182012,1620000000000 ,1620000000000 ,1620000000000 ,1616812344320 -1616812344345 ,112.5730103,26.89014043,58.75880051,177.8350206,168.6749836,0.83754516,0.007148497,1620000000000 ,1620000000000 ,1620000000000 ,1616812344330 -1616812344355 ,112.5730103,26.89014036,58.75911331,177.834201,168.6844671,0.83397895,0.00711627,1620000000000 ,1620000000000 ,1620000000000 ,1616812344340 -1616812344366 ,112.5730103,26.89014029,58.75944519,177.8337092,168.6694748,0.83039033,0.007084207,1620000000000 ,1620000000000 ,1620000000000 ,1616812344350 -1616812344376 ,112.5730103,26.89014022,58.75978851,177.8315782,168.6084157,0.8271404,0.007055115,1620000000000 ,1620000000000 ,1620000000000 ,1616812344360 -1616812344386 ,112.5730103,26.89014016,58.76013565,177.8288734,168.5691649,0.8239839,0.007027166,1620000000000 ,1620000000000 ,1620000000000 ,1616812344370 -1616812344395 ,112.5730103,26.89014009,58.76048279,177.827562,168.5639455,0.8208137,0.006998213,1620000000000 ,1620000000000 ,1620000000000 ,1616812344380 -1616812344407 ,112.5730103,26.89014002,58.76082993,177.8248573,168.5789642,0.8175067,0.006967794,1620000000000 ,1620000000000 ,1620000000000 ,1616812344390 -1616812344417 ,112.5730104,26.89013995,58.76119614,177.8225077,168.5833582,0.8143288,0.006939002,1620000000000 ,1620000000000 ,1620000000000 ,1616812344400 -1616812344426 ,112.5730104,26.89013988,58.76158142,177.8199669,168.5866124,0.81070936,0.006907683,1620000000000 ,1620000000000 ,1620000000000 ,1616812344410 -1616812344436 ,112.5730104,26.89013982,58.76200485,177.8174533,168.5693773,0.8069095,0.006874345,1620000000000 ,1620000000000 ,1620000000000 ,1616812344420 -1616812344447 ,112.5730104,26.89013975,58.76244736,177.8142568,168.5428375,0.8038257,0.006845455,1620000000000 ,1620000000000 ,1620000000000 ,1616812344430 -1616812344456 ,112.5730104,26.89013968,58.76290131,177.8119346,168.5533718,0.8014357,0.006822584,1620000000000 ,1620000000000 ,1620000000000 ,1616812344440 -1616812344467 ,112.5730104,26.89013961,58.76318359,177.8087653,173.8103952,0.79924554,0.006987544,1620000000000 ,1620000000000 ,1620000000000 ,1616812344450 -1616812344477 ,112.5730104,26.89013954,58.76330566,177.8047492,178.7607696,0.7967697,0.00720755,1620000000000 ,1620000000000 ,1620000000000 ,1616812344460 -1616812344487 ,112.5730104,26.89013947,58.76344299,177.8024269,178.7928306,0.79378384,0.007182418,1620000000000 ,1620000000000 ,1620000000000 ,1616812344470 -1616812344496 ,112.5730104,26.8901394,58.76359558,177.7984108,178.8547366,0.7898145,0.007149905,1620000000000 ,1620000000000 ,1620000000000 ,1616812344480 -1616812344507 ,112.5730104,26.89013933,58.76375198,177.7962251,178.909353,0.78456694,0.00710549,1620000000000 ,1620000000000 ,1620000000000 ,1616812344490 -1616812344517 ,112.5730104,26.89013926,58.76393127,177.7923456,178.9302604,0.77893233,0.007055496,1620000000000 ,1620000000000 ,1620000000000 ,1616812344500 -1616812344528 ,112.5730104,26.89013919,58.76413727,177.787783,178.9136399,0.77377796,0.007008502,1620000000000 ,1620000000000 ,1620000000000 ,1616812344510 -1616812344537 ,112.5730104,26.89013912,58.76436615,177.785652,178.8712264,0.76910335,0.006965789,1620000000000 ,1620000000000 ,1620000000000 ,1616812344520 -1616812344548 ,112.5730104,26.89013905,58.76461792,177.781308,178.8327696,0.7654553,0.006931092,1620000000000 ,1620000000000 ,1620000000000 ,1616812344530 -1616812344558 ,112.5730104,26.89013898,58.7648735,177.7805157,178.8091692,0.76243573,0.006903154,1620000000000 ,1620000000000 ,1620000000000 ,1616812344540 -1616812344567 ,112.5730104,26.89013891,58.76512909,177.7785759,178.7696804,0.7582003,0.00686846,1620000000000 ,1620000000000 ,1620000000000 ,1616812344550 -1616812344577 ,112.5730104,26.89013884,58.7653923,177.7757619,178.6662047,0.7523007,0.006818849,1620000000000 ,1620000000000 ,1620000000000 ,1616812344560 -1616812344591 ,112.5730104,26.89013877,58.76568222,177.7739587,178.5432769,0.7458273,0.006761788,1620000000000 ,1620000000000 ,1620000000000 ,1616812344570 -1616812344598 ,112.5730104,26.89013871,58.7659874,177.7721829,178.5138012,0.73956406,0.006705242,1620000000000 ,1620000000000 ,1620000000000 ,1616812344580 -1616812344608 ,112.5730104,26.89013864,58.76628876,177.7715545,178.53615,0.7329207,0.006645878,1620000000000 ,1620000000000 ,1620000000000 ,1616812344590 -1616812344619 ,112.5730104,26.89013857,58.7665863,177.7699972,178.5537929,0.72657394,0.00658769,1620000000000 ,1620000000000 ,1620000000000 ,1616812344600 -1616812344629 ,112.5730104,26.89013851,58.76689529,177.7698333,178.5367514,0.7206728,0.006533912,1620000000000 ,1620000000000 ,1620000000000 ,1616812344610 -1616812344639 ,112.5730104,26.89013844,58.76721191,177.7687404,178.5410929,0.71499854,0.006482353,1620000000000 ,1620000000000 ,1620000000000 ,1616812344620 -1616812344648 ,112.5730104,26.89013838,58.7675209,177.7684399,178.6172841,0.7092311,0.006430708,1620000000000 ,1620000000000 ,1620000000000 ,1616812344630 -1616812344660 ,112.5730104,26.89013832,58.76782227,177.7669099,178.7283473,0.70296276,0.006375407,1620000000000 ,1620000000000 ,1620000000000 ,1616812344640 -1616812344669 ,112.5730104,26.89013825,58.76813126,177.7665001,178.770615,0.69589466,0.006313663,1620000000000 ,1620000000000 ,1620000000000 ,1616812344650 -1616812344680 ,112.5730104,26.89013819,58.76844025,177.7651068,178.7685545,0.6884226,0.00624663,1620000000000 ,1620000000000 ,1620000000000 ,1616812344660 -1616812344692 ,112.5730104,26.89013813,58.76873398,177.7654893,178.7998763,0.6812539,0.006180574,1620000000000 ,1620000000000 ,1620000000000 ,1616812344670 -1616812344700 ,112.5730104,26.89013807,58.76900864,177.7642052,178.8908351,0.6741676,0.006116196,1620000000000 ,1620000000000 ,1620000000000 ,1616812344680 -1616812344709 ,112.5730105,26.89013801,58.76927185,177.7624567,178.9680644,0.6668964,0.006050721,1620000000000 ,1620000000000 ,1620000000000 ,1616812344690 -1616812344719 ,112.5730105,26.89013795,58.76953506,177.7604623,179.020363,0.6596345,0.005985129,1620000000000 ,1620000000000 ,1620000000000 ,1616812344700 -1616812344730 ,112.5730105,26.89013789,58.76979446,177.7586864,179.0559203,0.65253764,0.005920387,1620000000000 ,1620000000000 ,1620000000000 ,1616812344710 -1616812344740 ,112.5730105,26.89013783,58.7700386,177.7575389,179.1407776,0.6455612,0.005857121,1620000000000 ,1620000000000 ,1620000000000 ,1616812344720 -1616812344749 ,112.5730105,26.89013777,58.77026367,177.7549161,179.2569416,0.63856405,0.005793505,1620000000000 ,1620000000000 ,1620000000000 ,1616812344730 -1616812344759 ,112.5730105,26.89013771,58.77048111,177.7549161,179.3317543,0.63157856,0.005730243,1620000000000 ,1620000000000 ,1620000000000 ,1616812344740 -1616812344770 ,112.5730105,26.89013766,58.77069473,177.7528124,179.3541921,0.6243908,0.005665816,1620000000000 ,1620000000000 ,1620000000000 ,1616812344750 -1616812344779 ,112.5730105,26.8901376,58.77090073,177.7517196,179.3922713,0.61691964,0.005598638,1620000000000 ,1620000000000 ,1620000000000 ,1616812344760 -1616812344792 ,112.5730105,26.89013755,58.77108765,177.7511186,179.4799089,0.60926616,0.005529553,1620000000000 ,1620000000000 ,1620000000000 ,1616812344770 -1616812344800 ,112.5730105,26.89013749,58.77126694,177.7497252,179.5543644,0.6017699,0.005461082,1620000000000 ,1620000000000 ,1620000000000 ,1616812344780 -1616812344811 ,112.5730105,26.89013744,58.7714386,177.7473756,179.610608,0.59435743,0.005394007,1620000000000 ,1620000000000 ,1620000000000 ,1616812344790 -1616812344821 ,112.5730105,26.89013738,58.77160263,177.7453812,179.6558014,0.58693045,0.005326798,1620000000000 ,1620000000000 ,1620000000000 ,1616812344800 -1616812344830 ,112.5730105,26.89013733,58.77175522,177.7437693,179.7112584,0.579745,0.005260825,1620000000000 ,1620000000000 ,1620000000000 ,1616812344810 -1616812344840 ,112.5730105,26.89013728,58.77188873,177.7419661,179.7528353,0.57266635,0.005196364,1620000000000 ,1620000000000 ,1620000000000 ,1616812344820 -1616812344850 ,112.5730105,26.89013723,58.77201462,177.7398624,179.7928365,0.56561804,0.005132242,1620000000000 ,1620000000000 ,1620000000000 ,1616812344830 -1616812344862 ,112.5730105,26.89013718,58.77213287,177.7369937,179.8591321,0.5586658,0.005069098,1620000000000 ,1620000000000 ,1620000000000 ,1616812344840 -1616812344871 ,112.5730105,26.89013713,58.77223969,177.7376494,179.9274246,0.55182797,0.00500703,1620000000000 ,1620000000000 ,1620000000000 ,1616812344850 -1616812344880 ,112.5730105,26.89013708,58.77233505,177.7357916,179.9847021,0.5449217,0.004944541,1620000000000 ,1620000000000 ,1620000000000 ,1616812344860 -1616812344890 ,112.5730105,26.89013703,58.77241898,177.7348354,180.0146279,0.5380235,0.004881565,1620000000000 ,1620000000000 ,1620000000000 ,1616812344870 -1616812344901 ,112.5730105,26.89013698,58.77248764,177.7315296,180.0258496,0.53119177,0.00481927,1620000000000 ,1620000000000 ,1620000000000 ,1616812344880 -1616812344912 ,112.5730105,26.89013693,58.77254868,177.7318847,180.0499056,0.5246145,0.00475916,1620000000000 ,1620000000000 ,1620000000000 ,1616812344890 -1616812344921 ,112.5730105,26.89013689,58.77260971,177.7300269,180.0655896,0.5178451,0.004698655,1620000000000 ,1620000000000 ,1620000000000 ,1616812344900 -1616812344931 ,112.5730105,26.89013684,58.77267456,177.7283877,180.0757493,0.5108635,0.004636003,1620000000000 ,1620000000000 ,1620000000000 ,1616812344910 -1616812344941 ,112.5730105,26.89013679,58.77275085,177.7274041,180.042203,0.50407296,0.004574372,1620000000000 ,1620000000000 ,1620000000000 ,1616812344920 -1616812344952 ,112.5730105,26.89013675,58.77283478,177.727049,179.9894655,0.49738362,0.004513792,1620000000000 ,1620000000000 ,1620000000000 ,1616812344930 -1616812344963 ,112.5730105,26.8901367,58.77291107,177.7274041,179.974675,0.4906616,0.004452906,1620000000000 ,1620000000000 ,1620000000000 ,1616812344940 -1616812344974 ,112.5730105,26.89013666,58.77299118,177.7271856,179.9879675,0.48384702,0.004391702,1620000000000 ,1620000000000 ,1620000000000 ,1616812344950 -1616812344983 ,112.5730105,26.89013662,58.77308273,177.7276227,180.0356075,0.4771174,0.004330932,1620000000000 ,1620000000000 ,1620000000000 ,1616812344960 -1616812344992 ,112.5730105,26.89013657,58.77318954,177.7282511,180.103014,0.4705321,0.004272111,1620000000000 ,1620000000000 ,1620000000000 ,1616812344970 -1616812345002 ,112.5730105,26.89013653,58.7733078,177.7287702,180.1922869,0.46383658,0.004212402,1620000000000 ,1620000000000 ,1620000000000 ,1616812344980 -1616812345011 ,112.5730105,26.89013649,58.77343369,177.7279779,180.2556616,0.45716408,0.00415231,1620000000000 ,1620000000000 ,1620000000000 ,1616812344990 -1616812345021 ,112.5730105,26.89013645,58.7735672,177.7265572,180.3546294,0.45048678,0.004092611,1620000000000 ,1620000000000 ,1620000000000 ,1616812345000 -1616812345031 ,112.5730105,26.89013641,58.77370834,177.7257649,180.4819212,0.44363502,0.00403195,1620000000000 ,1620000000000 ,1620000000000 ,1616812345010 -1616812345042 ,112.5730105,26.89013637,58.77386093,177.7253004,180.5760172,0.4368003,0.003970553,1620000000000 ,1620000000000 ,1620000000000 ,1616812345020 -1616812345052 ,112.5730105,26.89013633,58.77402115,177.7219946,180.6792844,0.43025842,0.003911156,1620000000000 ,1620000000000 ,1620000000000 ,1616812345030 -1616812345061 ,112.5730105,26.89013629,58.77418518,177.7222952,180.8051591,0.42406014,0.003854934,1620000000000 ,1620000000000 ,1620000000000 ,1616812345040 -1616812345074 ,112.5730105,26.89013625,58.7743454,177.7201641,180.9630023,0.4177655,0.003798773,1620000000000 ,1620000000000 ,1620000000000 ,1616812345050 -1616812345084 ,112.5730105,26.89013622,58.7745018,177.7198363,181.089047,0.41127145,0.003740924,1620000000000 ,1620000000000 ,1620000000000 ,1616812345060 -1616812345095 ,112.5730105,26.89013618,58.77466583,177.7187708,181.2105659,0.4048415,0.003683074,1620000000000 ,1620000000000 ,1620000000000 ,1616812345070 -1616812345102 ,112.5730105,26.89013614,58.77482605,177.7187161,181.3413066,0.39833426,0.003624885,1620000000000 ,1620000000000 ,1620000000000 ,1616812345080 -1616812345115 ,112.5730105,26.89013611,58.77498245,177.7163119,181.4856792,0.3918119,0.003566377,1620000000000 ,1620000000000 ,1620000000000 ,1616812345090 -1616812345124 ,112.5730105,26.89013607,58.77513504,177.7127875,181.6145829,0.3852911,0.003507566,1620000000000 ,1620000000000 ,1620000000000 ,1616812345100 -1616812345132 ,112.5730105,26.89013604,58.77528763,177.7122411,181.7693399,0.37916768,0.003451607,1620000000000 ,1620000000000 ,1620000000000 ,1616812345110 -1616812345142 ,112.5730104,26.890136,58.77543259,177.7096183,181.9372587,0.3731321,0.003397521,1620000000000 ,1620000000000 ,1620000000000 ,1616812345120 -1616812345153 ,112.5730104,26.89013597,58.77557755,177.7098096,182.0868627,0.366911,0.003342351,1620000000000 ,1620000000000 ,1620000000000 ,1616812345130 -1616812345164 ,112.5730104,26.89013594,58.7757225,177.7076512,182.2033624,0.36076662,0.003286725,1620000000000 ,1620000000000 ,1620000000000 ,1616812345150 -1616812345175 ,112.5730104,26.89013591,58.77585983,177.7060939,182.329348,0.3547322,0.003232299,1620000000000 ,1620000000000 ,1620000000000 ,1616812345160 -1616812345185 ,112.5730104,26.89013587,58.77598953,177.7041542,182.4415156,0.3484749,0.003176323,1620000000000 ,1620000000000 ,1620000000000 ,1616812345160 -1616812345195 ,112.5730104,26.89013584,58.77611542,177.7034438,182.5421111,0.3420626,0.003118889,1620000000000 ,1620000000000 ,1620000000000 ,1616812345170 -1616812345203 ,112.5730104,26.89013581,58.7762413,177.7015587,182.6494246,0.3357839,0.003062094,1620000000000 ,1620000000000 ,1620000000000 ,1616812345180 -1616812345213 ,112.5730104,26.89013576,58.77635193,177.7082796,179.7707602,0.30651256,0.005610495,1620000000000 ,1620000000000 ,1620000000000 ,1616812345200 -1616812345224 ,112.5730104,26.89013576,58.77635193,177.7082796,-400,0.30651256,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812345200 -1616812345235 ,112.5730105,26.89013572,58.77578354,177.7086894,161.2224846,0.29283747,0.004277258,1620000000000 ,1620000000000 ,1620000000000 ,1616812345220 -1616812345244 ,112.5730105,26.8901357,58.77549744,177.7068043,160.39368,0.28603283,0.002051149,1620000000000 ,1620000000000 ,1620000000000 ,1616812345230 -1616812345253 ,112.5730105,26.89013568,58.77521133,177.7047552,159.8105816,0.279271,0.00199356,1620000000000 ,1620000000000 ,1620000000000 ,1616812345240 -1616812345265 ,112.5730105,26.89013566,58.77492523,177.7039902,159.2422401,0.27256253,0.001936104,1620000000000 ,1620000000000 ,1620000000000 ,1616812345250 -1616812345276 ,112.5730105,26.89013564,58.77463913,177.7023783,158.6223498,0.26560304,0.001877572,1620000000000 ,1620000000000 ,1620000000000 ,1616812345260 -1616812345284 ,112.5730105,26.89013563,58.77435684,177.7034438,157.9020222,0.25825983,0.001816375,1620000000000 ,1620000000000 ,1620000000000 ,1616812345270 -1616812345295 ,112.5730105,26.89013561,58.77408218,177.703034,157.0761637,0.25075597,0.001753905,1620000000000 ,1620000000000 ,1620000000000 ,1616812345280 -1616812345306 ,112.5730105,26.89013559,58.77381516,177.7017499,156.2245352,0.24351746,0.001693367,1620000000000 ,1620000000000 ,1620000000000 ,1616812345290 -1616812345314 ,112.5730105,26.89013558,58.77355194,177.7026788,155.4159168,0.23647235,0.001634049,1620000000000 ,1620000000000 ,1620000000000 ,1616812345300 -1616812345324 ,112.5730105,26.89013556,58.77329254,177.7026242,154.4943476,0.22957236,0.00157721,1620000000000 ,1620000000000 ,1620000000000 ,1616812345310 -1616812345334 ,112.5730105,26.89013555,58.77303696,177.700903,153.4746465,0.2227843,0.001521992,1620000000000 ,1620000000000 ,1620000000000 ,1616812345320 -1616812345345 ,112.5730105,26.89013554,58.77278519,177.7020232,152.5203505,0.21607763,0.001467039,1620000000000 ,1620000000000 ,1620000000000 ,1616812345330 -1616812345356 ,112.5730105,26.89013553,58.7725296,177.7028974,151.5271576,0.20911527,0.001409791,1620000000000 ,1620000000000 ,1620000000000 ,1616812345340 -1616812345366 ,112.5730105,26.89013551,58.77228165,177.7050831,150.3543331,0.20191956,0.001351904,1620000000000 ,1620000000000 ,1620000000000 ,1616812345350 -1616812345376 ,112.5730106,26.8901355,58.77203369,177.7035258,149.0850274,0.19474588,0.001293961,1620000000000 ,1620000000000 ,1620000000000 ,1616812345360 -1616812345396 ,112.5730106,26.89013549,58.77178955,177.7040449,147.7278549,0.18757816,0.001236632,1620000000000 ,1620000000000 ,1620000000000 ,1616812345370 -1616812345400 ,112.5730106,26.89013548,58.77153778,177.7053563,146.3069266,0.18045667,0.001179152,1620000000000 ,1620000000000 ,1620000000000 ,1616812345380 -1616812345407 ,112.5730106,26.89013547,58.7712822,177.7052743,144.7656151,0.17349312,0.001123572,1620000000000 ,1620000000000 ,1620000000000 ,1616812345390 -1616812345417 ,112.5730106,26.89013547,58.77102661,177.7043181,143.2306125,0.16687347,0.001070423,1620000000000 ,1620000000000 ,1620000000000 ,1616812345400 -1616812345426 ,112.5730106,26.89013546,58.7707634,177.7054656,141.5841127,0.16019616,0.001017931,1620000000000 ,1620000000000 ,1620000000000 ,1616812345410 -1616812345436 ,112.5730106,26.89013545,58.770504,177.7049465,139.7000654,0.15324809,9.65E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345420 -1616812345445 ,112.5730106,26.89013544,58.77024078,177.7040176,137.5839862,0.14635512,9.12E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345430 -1616812345456 ,112.5730106,26.89013544,58.76996994,177.7033892,135.2608355,0.1394719,8.61E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345440 -1616812345466 ,112.5730106,26.89013543,58.7698288,177.7018319,162.2981086,0.13259722,9.26E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345450 -1616812345475 ,112.5730106,26.89013542,58.76981735,177.7015041,182.0231242,0.12560172,0.001152919,1620000000000 ,1620000000000 ,1620000000000 ,1616812345460 -1616812345485 ,112.5730106,26.89013541,58.76980972,177.6997555,182.5131652,0.1189312,0.001092301,1620000000000 ,1620000000000 ,1620000000000 ,1616812345470 -1616812345495 ,112.5730106,26.8901354,58.76979446,177.7006844,183.1443726,0.112344354,0.001033479,1620000000000 ,1620000000000 ,1620000000000 ,1616812345480 -1616812345506 ,112.5730106,26.89013539,58.76977158,177.6985807,183.8285351,0.10559378,9.74E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345490 -1616812345517 ,112.5730106,26.89013538,58.7697525,177.6975152,184.4109144,0.09862741,9.12E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345500 -1616812345526 ,112.5730106,26.89013537,58.76973724,177.6961492,185.0573011,0.0917785,8.51E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345510 -1616812345536 ,112.5730106,26.89013536,58.76971817,177.6945919,185.8382906,0.084981024,7.90E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345520 -1616812345547 ,112.5730106,26.89013535,58.7696991,177.6933898,186.6088597,0.077845015,7.27E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345530 -1616812345557 ,112.5730106,26.89013535,58.76968002,177.6933078,187.3981168,0.07072481,6.63E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345540 -1616812345568 ,112.5730106,26.89013534,58.76966858,177.6944553,188.4055069,0.063645385,6.00E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345550 -1616812345579 ,112.5730106,26.89013534,58.76965332,177.6954115,189.6686977,0.056540985,5.38E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345560 -1616812345588 ,112.5730106,26.89013533,58.76964569,177.6948378,191.1042247,0.048949238,4.71E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345570 -1616812345599 ,112.5730106,26.89013533,58.76963806,177.6965317,193.0460356,0.041520014,4.06E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345580 -1616812345609 ,112.5730106,26.89013532,58.76963806,177.6970235,195.9799303,0.034226235,3.42E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345590 -1616812345618 ,112.5730106,26.89013532,58.76963806,177.6964224,200.3048833,0.02686355,2.81E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345600 -1616812345627 ,112.5730106,26.89013532,58.76964188,177.6979797,206.8864162,0.019386234,2.20E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345610 -1616812345638 ,112.5730106,26.89013532,58.76964951,177.6991818,218.5819679,0.011653282,1.63E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345620 -1616812345647 ,112.5730106,26.89013532,58.76966095,177.7006298,241.793836,0.003876033,1.20E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345630 -1616812345657 ,112.5730106,26.89013532,58.76967239,177.7006844,276.2837581,-0.003728428,1.10E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345640 -1616812345667 ,112.5730106,26.89013532,58.76968765,177.7001107,303.3897739,-0.010336371,1.36E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345650 -1616812345678 ,112.5730106,26.89013532,58.76969147,177.7010669,316.4310711,-0.015461537,1.72E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345660 -1616812345687 ,112.5730106,26.89013532,58.76968384,177.7015587,323.1362976,-0.019324811,2.03E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345670 -1616812345697 ,112.5730106,26.89013532,58.76965332,177.7019958,327.3083711,-0.022591606,2.30E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345680 -1616812345708 ,112.5730106,26.89013532,58.7695961,177.7016953,329.6851347,-0.024696175,2.51E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345690 -1616812345717 ,112.5730106,26.89013533,58.76951981,177.7034985,330.3217291,-0.025835078,2.64E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345700 -1616812345729 ,112.5730106,26.89013533,58.76942062,177.7054929,330.0803471,-0.026070138,2.70E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345710 -1616812345742 ,112.5730106,26.89013533,58.76929855,177.7063398,329.723549,-0.026105521,2.72E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345720 -1616812345750 ,112.5730106,26.89013533,58.76916504,177.7051924,328.9654301,-0.02536314,2.70E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345730 -1616812345760 ,112.5730106,26.89013534,58.76901245,177.7054382,326.8542585,-0.023375062,2.59E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345740 -1616812345771 ,112.5730106,26.89013534,58.76884079,177.7056022,323.3578507,-0.02036385,2.39E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345750 -1616812345778 ,112.5730106,26.89013534,58.76865387,177.7042635,318.4782956,-0.016800623,2.16E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345760 -1616812345793 ,112.5730106,26.89013534,58.76844788,177.7046733,311.7180809,-0.012943246,1.92E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345770 -1616812345798 ,112.5730106,26.89013534,58.76823044,177.7034985,302.534968,-0.008873806,1.70E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345780 -1616812345808 ,112.5730106,26.89013534,58.76800919,177.7042635,291.7259522,-0.005196307,1.55E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345790 -1616812345819 ,112.5730106,26.89013534,58.76779175,177.7031433,280.7805905,-0.001951132,1.45E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345800 -1616812345828 ,112.5730106,26.89013534,58.76758194,177.700985,268.7957768,0.001373817,1.41E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345810 -1616812345839 ,112.5730106,26.89013534,58.76737595,177.6994823,255.9918134,0.004953498,1.45E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345820 -1616812345849 ,112.5730106,26.89013534,58.7671814,177.6983622,244.0817583,0.008360806,1.52E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345830 -1616812345860 ,112.5730106,26.89013534,58.76700592,177.6999468,234.0991303,0.011443588,1.63E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345840 -1616812345869 ,112.5730106,26.89013534,58.76684189,177.6985261,226.1505113,0.014300091,1.76E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345850 -1616812345880 ,112.5730106,26.89013534,58.76669693,177.6975152,220.1833246,0.01692402,1.93E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345860 -1616812345891 ,112.5730106,26.89013534,58.76657104,177.6975425,216.1422303,0.018543838,2.04E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345870 -1616812345900 ,112.5730106,26.89013533,58.76647568,177.6986627,213.7584319,0.019252349,2.09E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345880 -1616812345911 ,112.5730106,26.89013533,58.76641083,177.6986354,212.6195785,0.01960816,2.12E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345890 -1616812345921 ,112.5730106,26.89013533,58.76637268,177.6997282,211.980605,0.019807838,2.14E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345900 -1616812345929 ,112.5730106,26.89013533,58.76636505,177.6998921,211.6810438,0.019473191,2.13E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345910 -1616812345942 ,112.5730106,26.89013533,58.76638794,177.7011489,212.0167875,0.018794902,2.08E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345920 -1616812345951 ,112.5730106,26.89013533,58.76644135,177.7020778,213.1929232,0.018160231,2.05E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345930 -1616812345960 ,112.5730105,26.89013532,58.7665062,177.7025422,214.5796382,0.017580388,2.02E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345940 -1616812345971 ,112.5730105,26.89013532,58.76659012,177.703116,216.4169317,0.016461056,1.97E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345950 -1616812345980 ,112.5730105,26.89013532,58.76670074,177.7028155,219.0129126,0.014713579,1.86E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345960 -1616812345992 ,112.5730105,26.89013532,58.76683044,177.7038263,222.2434899,0.013281798,1.78E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345970 -1616812346000 ,112.5730105,26.89013532,58.76696396,177.7043181,225.2932213,0.012186785,1.72E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345980 -1616812346011 ,112.5730105,26.89013532,58.76709747,177.7051104,228.3865242,0.01091734,1.66E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812345990 -1616812346022 ,112.5730105,26.89013532,58.7672348,177.7054929,231.2322027,0.009758831,1.59E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346000 -1616812346030 ,112.5730105,26.89013532,58.76737213,177.70593,233.0485253,0.009411713,1.57E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346010 -1616812346040 ,112.5730105,26.89013531,58.7674942,177.7049738,233.6982537,0.00958213,1.60E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346020 -1616812346050 ,112.5730105,26.89013531,58.76760483,177.7048372,234.1902684,0.009584419,1.63E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346030 -1616812346062 ,112.5730105,26.89013531,58.76770782,177.7044001,234.9748697,0.009356986,1.62E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346040 -1616812346074 ,112.5730105,26.89013531,58.76779556,177.7058481,235.4937987,0.009535642,1.64E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346050 -1616812346081 ,112.5730105,26.89013531,58.76786041,177.7062579,235.0050308,0.010147353,1.70E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346060 -1616812346091 ,112.5730105,26.89013531,58.76790237,177.7061486,234.4721623,0.010667677,1.75E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346070 -1616812346101 ,112.5730105,26.89013531,58.76793289,177.7069682,233.8184273,0.01111487,1.79E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346080 -1616812346114 ,112.5730105,26.89013531,58.76794815,177.7059027,232.5485512,0.01208067,1.85E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346090 -1616812346129 ,112.5730105,26.89013531,58.76793671,177.7061213,230.5209892,0.013400214,1.94E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346100 -1616812346132 ,112.5730105,26.8901353,58.76790237,177.7060666,229.0419716,0.014335555,2.02E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346110 -1616812346142 ,112.5730105,26.8901353,58.7678566,177.7044001,228.4443313,0.014662335,2.05E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346120 -1616812346152 ,112.5730105,26.8901353,58.76780319,177.704482,228.0727167,0.015001656,2.07E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346130 -1616812346163 ,112.5730105,26.8901353,58.76773834,177.7041542,227.3122263,0.015515282,2.10E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346140 -1616812346181 ,112.5730105,26.8901353,58.76766968,177.7031433,226.77658,0.015538744,2.10E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346150 -1616812346184 ,112.5730105,26.8901353,58.7675972,177.7043727,226.8163832,0.015227977,2.07E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346160 -1616812346194 ,112.5730105,26.8901353,58.76752472,177.7027062,226.8683593,0.015101984,2.04E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346170 -1616812346202 ,112.5730105,26.8901353,58.76744843,177.7039902,226.6189688,0.015214906,2.04E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346180 -1616812346212 ,112.5730105,26.89013529,58.76737976,177.7025422,226.9035872,0.014798875,2.02E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346190 -1616812346223 ,112.5730105,26.89013529,58.76729965,177.7022964,223.3409598,0.011414306,1.51E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346200 -1616812346233 ,112.5730105,26.89013529,58.76717758,177.7021871,197.6755659,0.010519864,5.78E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346210 -1616812346243 ,112.5730105,26.89013529,58.76705933,177.7023237,199.2053542,0.009944944,5.25E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346220 -1616812346253 ,112.5730105,26.89013529,58.76695251,177.7032253,201.4735476,0.009146564,4.63E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346230 -1616812346262 ,112.5730105,26.89013529,58.76685715,177.7034985,202.5358816,0.008210389,3.81E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346240 -1616812346274 ,112.5730105,26.89013529,58.76678085,177.7033892,204.1786418,0.007700517,3.26E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346260 -1616812346283 ,112.5730105,26.89013529,58.76662445,177.7050558,209.1304386,0.007621784,6.70E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346270 -1616812346293 ,112.5730105,26.89013529,58.76662445,177.7050558,-400,0.007621784,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812346270 -1616812346303 ,112.5730105,26.89013529,58.76655579,177.7042635,209.5539965,0.007338035,3.08E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346280 -1616812346313 ,112.5730105,26.89013529,58.76644135,177.7059027,212.3613701,0.007549652,6.28E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346300 -1616812346324 ,112.5730105,26.89013529,58.76644135,177.7059027,-400,0.007549652,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812346310 -1616812346333 ,112.5730105,26.89013529,58.76631546,177.7055749,210.0531216,0.008216684,7.46E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346320 -1616812346345 ,112.5730105,26.89013529,58.76625443,177.7048645,203.4332296,0.008963591,4.25E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346330 -1616812346354 ,112.5730105,26.89013529,58.76618195,177.7061213,202.6774794,0.010206186,5.32E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346340 -1616812346364 ,112.5730105,26.89013529,58.76609421,177.7056295,201.9604781,0.011290149,6.43E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346350 -1616812346375 ,112.5730105,26.89013529,58.76601028,177.7056295,199.6042597,0.011919786,7.02E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346360 -1616812346386 ,112.5730105,26.89013529,58.76592636,177.7055749,198.1378164,0.012386398,7.42E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346370 -1616812346395 ,112.5730105,26.89013528,58.76583481,177.7050284,198.9083504,0.013079444,8.04E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346380 -1616812346405 ,112.5730105,26.89013528,58.76573563,177.7041815,199.0650875,0.013595958,8.61E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346390 -1616812346414 ,112.5730105,26.89013528,58.76564026,177.7046186,198.3640177,0.013686103,8.75E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346400 -1616812346424 ,112.5730105,26.89013528,58.76555252,177.7046733,196.9495526,0.013812979,8.80E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346410 -1616812346435 ,112.5730105,26.89013528,58.76546097,177.7041542,197.4443431,0.014285823,9.17E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346420 -1616812346449 ,112.5730105,26.89013528,58.76536179,177.7042088,198.3695392,0.014713312,9.67E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346430 -1616812346459 ,112.5730105,26.89013528,58.76526642,177.7034985,198.0958803,0.014461912,9.58E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812346440 -1616812346465 ,112.5730105,26.89013528,58.76521683,177.7032799,212.2187179,0.013879151,1.28E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346450 -1616812346475 ,112.5730105,26.89013528,58.76519012,177.7040449,221.203609,0.013556089,1.68E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346460 -1616812346485 ,112.5730105,26.89013528,58.76516342,177.7035531,222.3199518,0.013267316,1.68E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346470 -1616812346496 ,112.5730105,26.89013527,58.76514053,177.7042361,223.0106797,0.01261748,1.63E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346480 -1616812346506 ,112.5730105,26.89013527,58.76512527,177.704564,223.3991458,0.012077089,1.56E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346490 -1616812346516 ,112.5730105,26.89013527,58.76511002,177.7040995,223.757146,0.011941858,1.54E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346500 -1616812346526 ,112.5730105,26.89013527,58.76508713,177.7043181,223.9561052,0.012218903,1.57E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346510 -1616812346535 ,112.5730105,26.89013527,58.76506042,177.7045913,223.8018969,0.012111821,1.57E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346520 -1616812346549 ,112.5730105,26.89013527,58.76504898,177.7045367,223.9605147,0.011723483,1.53E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346530 -1616812346556 ,112.5730105,26.89013527,58.76502991,177.7058754,224.8272489,0.011423646,1.51E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346540 -1616812346566 ,112.5730105,26.89013527,58.76499939,177.706613,225.9093911,0.011477292,1.53E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346550 -1616812346575 ,112.5730105,26.89013527,58.76496124,177.7065857,226.2759533,0.011298414,1.52E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346560 -1616812346586 ,112.5730105,26.89013527,58.76493073,177.7086348,226.4211301,0.011149928,1.51E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346570 -1616812346596 ,112.5730105,26.89013526,58.76490021,177.7100008,226.0657408,0.011473248,1.52E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346580 -1616812346607 ,112.5730105,26.89013526,58.76485443,177.709591,225.4390837,0.012294605,1.59E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346590 -1616812346616 ,112.5730105,26.89013526,58.7647934,177.7128422,224.8575479,0.012800849,1.65E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346600 -1616812346627 ,112.5730105,26.89013526,58.76473999,177.7130061,224.3777888,0.01288869,1.66E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346610 -1616812346636 ,112.5730105,26.89013526,58.76469421,177.7112849,224.3875732,0.012888477,1.67E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346620 -1616812346647 ,112.5730105,26.89013526,58.76464081,177.7097822,224.8558094,0.012996728,1.69E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346630 -1616812346663 ,112.5730105,26.89013526,58.76458359,177.7107658,225.4385354,0.012983968,1.71E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346640 -1616812346669 ,112.5730105,26.89013526,58.76452637,177.7115854,225.4789565,0.012742398,1.69E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346650 -1616812346677 ,112.5730105,26.89013525,58.76447678,177.7118313,225.3860531,0.012784957,1.68E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346660 -1616812346686 ,112.5730105,26.89013525,58.76441956,177.7116401,225.1788326,0.013310765,1.72E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346670 -1616812346697 ,112.5730105,26.89013525,58.76436234,177.7114215,224.564066,0.013806705,1.78E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346680 -1616812346709 ,112.5730105,26.89013525,58.76431274,177.7107112,223.8352502,0.01384379,1.78E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346690 -1616812346717 ,112.5730105,26.89013525,58.76427841,177.7123231,223.7598793,0.013599525,1.76E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346700 -1616812346728 ,112.5730105,26.89013525,58.76424408,177.7135252,224.5089757,0.013491374,1.76E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346710 -1616812346739 ,112.5730105,26.89013525,58.7641983,177.7137711,225.1805886,0.013380527,1.76E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346720 -1616812346748 ,112.5730105,26.89013525,58.76416397,177.7140716,225.3944213,0.013053997,1.74E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346730 -1616812346757 ,112.5730105,26.89013524,58.76414108,177.7149459,224.9860095,0.012945554,1.71E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346740 -1616812346771 ,112.5730105,26.89013524,58.76412201,177.7153284,224.5733447,0.013344295,1.72E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346750 -1616812346778 ,112.5730105,26.89013524,58.76408386,177.7143721,223.6281988,0.01410441,1.78E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346760 -1616812346788 ,112.5730105,26.89013524,58.76404572,177.7142629,222.5148359,0.014474386,1.81E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346770 -1616812346797 ,112.5730105,26.89013524,58.7640152,177.7138257,221.5303833,0.014587397,1.80E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346780 -1616812346807 ,112.5730105,26.89013524,58.76398849,177.7142902,221.565392,0.014513796,1.80E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346790 -1616812346819 ,112.5730105,26.89013524,58.76395416,177.7132793,221.543305,0.014656065,1.81E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346800 -1616812346830 ,112.5730105,26.89013524,58.76391602,177.7138257,221.0646337,0.0146022,1.79E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346810 -1616812346839 ,112.5730105,26.89013523,58.76387787,177.7125143,220.2722415,0.014634027,1.77E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346820 -1616812346850 ,112.5730105,26.89013523,58.76383972,177.7130607,219.6106871,0.014986237,1.78E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346830 -1616812346860 ,112.5730105,26.89013523,58.76379395,177.7141536,219.1325497,0.015720304,1.84E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346840 -1616812346870 ,112.5730105,26.89013523,58.76373672,177.7145087,218.332129,0.016246788,1.89E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346850 -1616812346879 ,112.5730105,26.89013523,58.76368713,177.7159294,217.8704941,0.016329838,1.90E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346860 -1616812346890 ,112.5730105,26.89013523,58.76364517,177.7141809,218.2087768,0.016075268,1.89E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346870 -1616812346899 ,112.5730105,26.89013523,58.76359558,177.7149185,219.3004638,0.01596517,1.90E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346880 -1616812346910 ,112.5730105,26.89013522,58.76354218,177.7157109,220.1183442,0.015802795,1.91E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346890 -1616812346919 ,112.5730105,26.89013522,58.7634964,177.7162573,220.7027108,0.015386592,1.88E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346900 -1616812346931 ,112.5730105,26.89013522,58.76346207,177.7156016,221.2813122,0.015072054,1.86E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346910 -1616812346942 ,112.5730105,26.89013522,58.7634201,177.7160387,221.8041288,0.015297797,1.89E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346920 -1616812346950 ,112.5730105,26.89013522,58.76337051,177.7163939,221.7252355,0.015677655,1.93E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346930 -1616812346960 ,112.5730105,26.89013522,58.76332092,177.7163119,221.6969076,0.015608072,1.93E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346940 -1616812346970 ,112.5730104,26.89013522,58.76328659,177.7166124,221.9640657,0.015299789,1.92E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346950 -1616812346980 ,112.5730104,26.89013521,58.76325607,177.7165032,223.014468,0.014880992,1.90E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346960 -1616812346992 ,112.5730104,26.89013521,58.76322174,177.7155196,223.8384001,0.014667731,1.89E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346970 -1616812347001 ,112.5730104,26.89013521,58.76317978,177.7151644,224.1426681,0.014350379,1.87E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346980 -1616812347010 ,112.5730104,26.89013521,58.76314926,177.7162299,224.3395779,0.014068782,1.83E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812346990 -1616812347021 ,112.5730104,26.89013521,58.76311493,177.7158475,224.3781119,0.01420016,1.83E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347000 -1616812347031 ,112.5730104,26.89013521,58.76306915,177.7167217,223.7352504,0.014780864,1.87E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347010 -1616812347042 ,112.5730104,26.89013521,58.76301575,177.7166671,222.7004679,0.015260423,1.90E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347020 -1616812347053 ,112.5730104,26.8901352,58.76297379,177.7168856,222.103106,0.015344554,1.91E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347030 -1616812347061 ,112.5730104,26.8901352,58.76293182,177.7156289,222.0693726,0.01530248,1.91E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347040 -1616812347073 ,112.5730104,26.8901352,58.76287842,177.7153557,222.2611587,0.015432989,1.92E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347050 -1616812347082 ,112.5730104,26.8901352,58.76281738,177.7163119,222.3259424,0.015528977,1.93E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347060 -1616812347104 ,112.5730104,26.8901352,58.76276398,177.7149732,221.9249062,0.015502669,1.92E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347070 -1616812347106 ,112.5730104,26.8901352,58.76271439,177.7152464,221.1929413,0.015699737,1.92E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347080 -1616812347113 ,112.5730104,26.8901352,58.76266098,177.7140443,220.5197047,0.016333127,1.95E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347090 -1616812347123 ,112.5730104,26.89013519,58.76259232,177.7145634,219.6207101,0.017041393,2.01E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347100 -1616812347132 ,112.5730104,26.89013519,58.76252747,177.7150552,218.7596779,0.017354207,2.04E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347110 -1616812347143 ,112.5730104,26.89013519,58.76247787,177.7163665,218.3638544,0.017397001,2.04E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347120 -1616812347153 ,112.5730104,26.89013519,58.7624321,177.7171862,218.7809443,0.017311297,2.05E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347130 -1616812347162 ,112.5730104,26.89013519,58.76238632,177.7175687,219.1268243,0.017290518,2.05E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347140 -1616812347173 ,112.5730104,26.89013519,58.76233673,177.7165305,219.0975193,0.017063895,2.03E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347150 -1616812347185 ,112.5730104,26.89013518,58.76229477,177.7163119,218.9469399,0.017004078,2.02E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347160 -1616812347193 ,112.5730104,26.89013518,58.76226044,177.7165305,218.9719376,0.017219108,2.04E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347170 -1616812347207 ,112.5730104,26.89013518,58.76221466,177.7169676,218.7334258,0.017734839,2.08E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347180 -1616812347214 ,112.5730104,26.89013518,58.7621727,177.7162573,218.2519497,0.01804821,2.11E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347200 -1616812347224 ,112.5730104,26.89013518,58.76213074,177.7094817,31.19855573,-0.016482582,4.81E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347200 -1616812347234 ,112.5730104,26.8901352,58.76210403,177.7115035,33.4847142,-0.01680843,0.001573554,1620000000000 ,1620000000000 ,1620000000000 ,1616812347220 -1616812347243 ,112.5730104,26.89013522,58.76202774,177.7113395,33.35383648,-0.017171148,0.003149357,1620000000000 ,1620000000000 ,1620000000000 ,1616812347230 -1616812347254 ,112.5730105,26.89013524,58.76199722,177.7119952,33.30820913,-0.01745388,0.001577707,1620000000000 ,1620000000000 ,1620000000000 ,1616812347240 -1616812347264 ,112.5730105,26.89013525,58.76197052,177.7128695,33.31062836,-0.0174409,0.001578392,1620000000000 ,1620000000000 ,1620000000000 ,1616812347250 -1616812347275 ,112.5730105,26.89013526,58.76193237,177.7127875,33.33499675,-0.017014526,0.001575701,1620000000000 ,1620000000000 ,1620000000000 ,1616812347260 -1616812347283 ,112.5730105,26.89013528,58.76188278,177.711804,33.37961093,-0.016500775,0.001571222,1620000000000 ,1620000000000 ,1620000000000 ,1616812347270 -1616812347293 ,112.5730105,26.89013529,58.76182938,177.7130061,33.41007735,-0.016456017,0.00156987,1620000000000 ,1620000000000 ,1620000000000 ,1616812347280 -1616812347304 ,112.5730105,26.89013529,58.76182938,177.7130061,-400,-0.016456017,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812347280 -1616812347315 ,112.5730105,26.89013532,58.76175308,177.7124324,33.35158742,-0.017008565,0.003143509,1620000000000 ,1620000000000 ,1620000000000 ,1616812347300 -1616812347325 ,112.5730105,26.89013533,58.76170349,177.712487,33.24425872,-0.017218638,0.001574656,1620000000000 ,1620000000000 ,1620000000000 ,1616812347310 -1616812347334 ,112.5730105,26.89013534,58.76164627,177.7134432,33.23319554,-0.01748543,0.001577503,1620000000000 ,1620000000000 ,1620000000000 ,1616812347320 -1616812347344 ,112.5730105,26.89013536,58.76159668,177.7125416,33.2711976,-0.017579123,0.00157969,1620000000000 ,1620000000000 ,1620000000000 ,1616812347330 -1616812347355 ,112.5730105,26.89013537,58.7615509,177.7120772,33.28489117,-0.017418351,0.001579014,1620000000000 ,1620000000000 ,1620000000000 ,1616812347340 -1616812347364 ,112.5730106,26.89013538,58.76149368,177.7121865,33.32893066,-0.016835973,0.001574716,1620000000000 ,1620000000000 ,1620000000000 ,1616812347350 -1616812347374 ,112.5730106,26.89013539,58.76142883,177.711121,33.39395736,-0.016458169,0.00157093,1620000000000 ,1620000000000 ,1620000000000 ,1616812347360 -1616812347384 ,112.5730106,26.89013541,58.76137543,177.7112849,33.43273478,-0.016480915,0.001570665,1620000000000 ,1620000000000 ,1620000000000 ,1616812347370 -1616812347394 ,112.5730106,26.89013542,58.76132965,177.7108751,33.39396367,-0.01684893,0.001572794,1620000000000 ,1620000000000 ,1620000000000 ,1616812347380 -1616812347404 ,112.5730106,26.89013543,58.76128006,177.7105745,33.31330994,-0.017163312,0.001575421,1620000000000 ,1620000000000 ,1620000000000 ,1616812347390 -1616812347416 ,112.5730106,26.89013545,58.76122284,177.7097276,33.25387373,-0.017377883,0.001577034,1620000000000 ,1620000000000 ,1620000000000 ,1616812347400 -1616812347425 ,112.5730106,26.89013546,58.76117325,177.7101374,33.26629897,-0.017514622,0.001578722,1620000000000 ,1620000000000 ,1620000000000 ,1616812347410 -1616812347435 ,112.5730106,26.89013547,58.76113892,177.7113122,33.33790876,-0.017363453,0.001578791,1620000000000 ,1620000000000 ,1620000000000 ,1616812347420 -1616812347445 ,112.5730106,26.89013549,58.76110077,177.7104653,33.39438792,-0.016726742,0.001574477,1620000000000 ,1620000000000 ,1620000000000 ,1616812347430 -1616812347455 ,112.5730106,26.8901355,58.76104736,177.7118313,33.48411192,-0.015899166,0.001567636,1620000000000 ,1620000000000 ,1620000000000 ,1616812347440 -1616812347466 ,112.5730106,26.89013551,58.76100159,177.7106565,33.76589573,-0.015530061,8.71E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347450 -1616812347476 ,112.5730106,26.89013551,58.7609787,177.7111483,36.03722529,-0.015506148,1.79E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347460 -1616812347486 ,112.5730106,26.89013551,58.76096344,177.7102467,35.82057032,-0.015694352,1.80E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347470 -1616812347496 ,112.5730106,26.89013551,58.76093674,177.7113395,35.52385939,-0.015740436,1.81E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347480 -1616812347507 ,112.5730106,26.89013551,58.76090622,177.7102194,35.5471483,-0.015753018,1.81E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347490 -1616812347517 ,112.5730106,26.89013551,58.76088715,177.7092358,36.12674119,-0.015698737,1.82E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347500 -1616812347527 ,112.5730106,26.89013552,58.76087189,177.7094544,36.64966493,-0.015403224,1.80E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347510 -1616812347536 ,112.5730106,26.89013552,58.76084518,177.7096456,37.32518673,-0.014634851,1.75E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347520 -1616812347551 ,112.5730106,26.89013552,58.76081085,177.7078971,37.99816809,-0.01400487,1.68E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347530 -1616812347557 ,112.5730106,26.89013552,58.76078415,177.706613,38.32925957,-0.01394415,1.67E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347540 -1616812347566 ,112.5730106,26.89013552,58.76076508,177.7079518,38.26473279,-0.01422892,1.68E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347550 -1616812347576 ,112.5730106,26.89013552,58.760746,177.7073507,37.50199777,-0.01454866,1.71E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347560 -1616812347589 ,112.5730106,26.89013552,58.76071167,177.7072961,36.73952994,-0.014677526,1.71E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347570 -1616812347597 ,112.5730106,26.89013553,58.76068497,177.7078425,36.39721659,-0.014929229,1.73E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347580 -1616812347608 ,112.5730106,26.89013553,58.76066589,177.7072961,36.66363492,-0.014950944,1.74E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347590 -1616812347620 ,112.5730106,26.89013553,58.76064682,177.7068043,36.93850393,-0.01467256,1.73E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347600 -1616812347632 ,112.5730107,26.89013553,58.76060867,177.7074873,37.26467784,-0.014070613,1.68E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347610 -1616812347639 ,112.5730107,26.89013553,58.76056671,177.7084435,37.53469485,-0.013940292,1.65E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347620 -1616812347650 ,112.5730107,26.89013553,58.76054001,177.7086621,37.63653168,-0.014199939,1.67E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347630 -1616812347659 ,112.5730107,26.89013553,58.76052094,177.7093998,36.99704754,-0.014715896,1.71E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347640 -1616812347667 ,112.5730107,26.89013553,58.76049042,177.708826,36.34977711,-0.015012209,1.73E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347650 -1616812347678 ,112.5730107,26.89013554,58.76045227,177.7085801,35.64639111,-0.015282267,1.75E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347660 -1616812347688 ,112.5730107,26.89013554,58.76042175,177.7087441,35.60485499,-0.015504728,1.78E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347670 -1616812347698 ,112.5730107,26.89013554,58.76039886,177.7091812,35.87551577,-0.015406372,1.78E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347680 -1616812347709 ,112.5730107,26.89013554,58.76036453,177.7099462,36.16990356,-0.014859876,1.74E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347690 -1616812347719 ,112.5730107,26.89013554,58.76032257,177.7103013,36.50437117,-0.014397605,1.69E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347700 -1616812347728 ,112.5730107,26.89013554,58.76028061,177.7099735,36.66026091,-0.014417237,1.68E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347710 -1616812347738 ,112.5730107,26.89013554,58.76025391,177.709673,36.71530046,-0.014674094,1.70E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347720 -1616812347752 ,112.5730107,26.89013555,58.76022339,177.7106292,36.05502359,-0.014962906,1.72E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347730 -1616812347760 ,112.5730107,26.89013555,58.76018143,177.7107658,35.41216266,-0.015078592,1.73E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347740 -1616812347770 ,112.5730107,26.89013555,58.76014328,177.7116127,35.28587169,-0.015249868,1.74E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347750 -1616812347779 ,112.5730107,26.89013555,58.76011276,177.7114215,35.95520187,-0.015235062,1.76E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347760 -1616812347790 ,112.5730107,26.89013555,58.76008224,177.7115035,36.87498631,-0.014731366,1.74E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347770 -1616812347800 ,112.5730107,26.89013555,58.76003647,177.7121865,37.9243301,-0.013868886,1.68E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347780 -1616812347810 ,112.5730107,26.89013555,58.75998688,177.7127875,39.22709247,-0.013307199,1.63E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347790 -1616812347821 ,112.5730107,26.89013556,58.75995255,177.7128422,39.99962826,-0.013282526,1.63E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347800 -1616812347830 ,112.5730107,26.89013556,58.75992966,177.7129241,40.16549597,-0.013572251,1.65E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347810 -1616812347839 ,112.5730107,26.89013556,58.75990295,177.7114761,39.9460147,-0.013705619,1.68E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347820 -1616812347850 ,112.5730107,26.89013556,58.75986481,177.7112849,39.37195844,-0.013787782,1.67E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347830 -1616812347860 ,112.5730107,26.89013556,58.75983047,177.7130607,39.65233686,-0.01388255,1.69E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347840 -1616812347871 ,112.5730107,26.89013556,58.75981522,177.7130061,40.79296197,-0.013629728,1.70E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347850 -1616812347880 ,112.5730107,26.89013556,58.75979233,177.7133613,41.80720435,-0.012949963,1.66E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347860 -1616812347890 ,112.5730107,26.89013556,58.75975418,177.7137984,42.677474,-0.012156691,1.58E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347870 -1616812347899 ,112.5730107,26.89013557,58.75972366,177.7130607,43.35766483,-0.011908626,1.55E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347880 -1616812347910 ,112.5730107,26.89013557,58.75970459,177.7132247,43.86046295,-0.012065616,1.57E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347890 -1616812347923 ,112.5730107,26.89013557,58.75968933,177.7131973,43.40396406,-0.012376137,1.59E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347900 -1616812347930 ,112.5730107,26.89013557,58.75965881,177.7125963,42.43392844,-0.012472834,1.59E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347910 -1616812347941 ,112.5730107,26.89013557,58.7596283,177.7125963,41.79077384,-0.012651601,1.59E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347920 -1616812347952 ,112.5730107,26.89013557,58.75960922,177.7125143,42.28733883,-0.012689717,1.61E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347930 -1616812347961 ,112.5730107,26.89013557,58.75959396,177.7113395,42.99216806,-0.012374422,1.60E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347940 -1616812347974 ,112.5730107,26.89013557,58.75955963,177.711804,43.88040161,-0.011615054,1.55E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347950 -1616812347988 ,112.5730107,26.89013557,58.75951385,177.711804,44.36304332,-0.011162174,1.49E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347960 -1616812347992 ,112.5730107,26.89013558,58.75947952,177.7131154,44.7908367,-0.011289161,1.50E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347970 -1616812348001 ,112.5730107,26.89013558,58.75945663,177.7138804,44.58425289,-0.011820923,1.55E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347980 -1616812348011 ,112.5730107,26.89013558,58.75942612,177.7147,43.55206319,-0.012221581,1.58E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812347990 -1616812348023 ,112.5730107,26.89013558,58.75938797,177.7143995,42.60293078,-0.012440911,1.59E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348000 -1616812348033 ,112.5730107,26.89013558,58.75934982,177.7138257,42.47503168,-0.012721631,1.62E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348010 -1616812348042 ,112.5730107,26.89013558,58.75932312,177.7143448,42.98252446,-0.012708759,1.64E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348020 -1616812348051 ,112.5730107,26.89013558,58.75929642,177.7159294,43.66638451,-0.01230101,1.62E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348030 -1616812348061 ,112.5730107,26.89013558,58.75925064,177.7168037,44.5998782,-0.011636595,1.57E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348040 -1616812348078 ,112.5730107,26.89013558,58.75920486,177.7177053,45.12517274,-0.011418086,1.54E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348050 -1616812348081 ,112.5730107,26.89013559,58.75917053,177.7172955,45.39262473,-0.011642884,1.56E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348060 -1616812348092 ,112.5730107,26.89013559,58.75914764,177.7184156,44.52739609,-0.01209947,1.59E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348070 -1616812348104 ,112.5730107,26.89013559,58.75911331,177.7187981,43.58866662,-0.012319409,1.60E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348080 -1616812348114 ,112.5730107,26.89013559,58.75907135,177.7178692,42.66264508,-0.012429219,1.59E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348090 -1616812348126 ,112.5730107,26.89013559,58.75904465,177.7190167,42.75772653,-0.01248335,1.60E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348100 -1616812348134 ,112.5730107,26.89013559,58.75902557,177.7182244,43.39622586,-0.012308035,1.60E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348110 -1616812348142 ,112.5730107,26.89013559,58.75899506,177.719044,44.28092956,-0.011533499,1.55E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348120 -1616812348155 ,112.5730107,26.89013559,58.75894928,177.719809,44.91602271,-0.010801522,1.47E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348130 -1616812348162 ,112.5730107,26.89013559,58.75891113,177.7184156,45.34331706,-0.010694831,1.44E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348140 -1616812348172 ,112.5730107,26.8901356,58.75888824,177.718361,45.26655477,-0.010986889,1.46E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348150 -1616812348182 ,112.5730107,26.8901356,58.75886536,177.7190167,44.59655912,-0.011241279,1.48E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348160 -1616812348194 ,112.5730107,26.8901356,58.75883102,177.719727,43.73866014,-0.011191462,1.47E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348170 -1616812348203 ,112.5730107,26.8901356,58.75879288,177.7195904,43.13339655,-0.011255668,1.46E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348180 -1616812348213 ,112.5730107,26.8901356,58.75876999,177.7187708,43.91155592,-0.011152947,1.46E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348190 -1616812348224 ,112.5730107,26.8901356,58.75876236,177.7187435,44.10673294,-0.007727416,1.08E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348200 -1616812348233 ,112.5730107,26.8901356,58.75876617,177.7193172,41.97623759,-0.006897015,2.26E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348210 -1616812348249 ,112.5730107,26.8901356,58.75876236,177.7190167,47.56819476,-0.006466691,1.76E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348220 -1616812348257 ,112.5730107,26.8901356,58.75876999,177.7174047,51.38465696,-0.006630756,1.90E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348240 -1616812348264 ,112.5730107,26.8901356,58.75878525,177.7178692,52.20686835,-0.006963897,2.34E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348250 -1616812348274 ,112.5730107,26.8901356,58.75879669,177.7177053,48.87173657,-0.007091952,2.51E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348260 -1616812348292 ,112.5730107,26.8901356,58.75879288,177.7189074,43.4385846,-0.007095665,2.32E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348270 -1616812348298 ,112.5730107,26.8901356,58.75880051,177.7184702,45.49593292,-0.007230812,2.53E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348280 -1616812348306 ,112.5730107,26.8901356,58.75882339,177.7192625,52.93344411,-0.007167438,2.87E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348280 -1616812348316 ,112.5730107,26.8901356,58.75882339,177.7197543,64.88130053,-0.005937771,5.07E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348300 -1616812348328 ,112.5730107,26.8901356,58.75882339,177.7197543,-400,-0.005937771,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812348310 -1616812348333 ,112.5730107,26.8901356,58.75882339,177.7181151,72.98481526,-0.006328738,5.35E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348320 -1616812348344 ,112.5730107,26.8901356,58.75883102,177.7189347,68.25768663,-0.006591148,3.30E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348330 -1616812348354 ,112.5730107,26.8901356,58.75882721,177.7189074,66.92448461,-0.006634374,3.39E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348340 -1616812348365 ,112.5730107,26.8901356,58.75881958,177.719645,66.35508211,-0.006710318,3.48E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348350 -1616812348376 ,112.5730107,26.8901356,58.75882721,177.7202188,68.32514598,-0.006723856,3.82E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348360 -1616812348385 ,112.5730107,26.8901356,58.75883865,177.7195084,71.9018044,-0.006468357,4.01E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348370 -1616812348394 ,112.5730107,26.8901356,58.75883865,177.718962,78.12857312,-0.005877438,3.89E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348380 -1616812348405 ,112.5730107,26.8901356,58.75882721,177.7186615,82.84110122,-0.005583407,3.61E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348390 -1616812348415 ,112.5730107,26.8901356,58.75882721,177.717596,81.1841552,-0.005861777,3.67E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348400 -1616812348425 ,112.5730107,26.8901356,58.75884247,177.7182517,76.7918761,-0.006315979,3.98E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348410 -1616812348434 ,112.5730107,26.8901356,58.7588501,177.7171042,73.68425063,-0.006447441,4.10E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348420 -1616812348447 ,112.5730107,26.8901356,58.75884628,177.718197,73.08463604,-0.006339628,3.83E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348430 -1616812348455 ,112.5730107,26.8901356,58.75884628,177.7178145,72.66413792,-0.006434107,3.80E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348440 -1616812348473 ,112.5730107,26.8901356,58.75884628,177.7174047,61.05944939,-0.006418265,7.58E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348450 -1616812348477 ,112.5730107,26.8901356,58.75882721,177.7180058,58.09116375,-0.005977728,1.12E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348460 -1616812348487 ,112.5730107,26.89013561,58.75878906,177.7171589,59.67289424,-0.005404451,1.08E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348470 -1616812348495 ,112.5730107,26.89013561,58.75875092,177.7179785,60.05438059,-0.005317658,1.05E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348480 -1616812348505 ,112.5730107,26.89013561,58.75872421,177.7171862,59.75397125,-0.005627478,1.08E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348490 -1616812348515 ,112.5730107,26.89013561,58.75870895,177.7174321,58.82697832,-0.005920483,1.10E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348500 -1616812348525 ,112.5730107,26.89013561,58.75867844,177.716066,58.03089393,-0.005868652,1.08E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348510 -1616812348537 ,112.5730107,26.89013561,58.75864029,177.7155196,57.58459372,-0.005774213,1.06E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348520 -1616812348547 ,112.5730107,26.89013561,58.75861359,177.713252,58.14435812,-0.005681206,1.06E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348530 -1616812348556 ,112.5730107,26.89013561,58.75859451,177.7145634,59.53682995,-0.005351966,1.05E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348540 -1616812348565 ,112.5730107,26.89013561,58.75856781,177.7146453,61.87812709,-0.004510806,9.93E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348550 -1616812348576 ,112.5730107,26.89013561,58.75852966,177.7133886,64.02469234,-0.003919071,9.26E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348560 -1616812348586 ,112.5730107,26.89013561,58.75850296,177.7143448,64.60919967,-0.003899222,9.07E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348570 -1616812348596 ,112.5730107,26.89013561,58.75849533,177.7151371,64.28683719,-0.00405802,9.13E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348580 -1616812348606 ,112.5730107,26.89013561,58.75848389,177.7145907,63.3371482,-0.004077629,8.97E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348590 -1616812348616 ,112.5730107,26.89013561,58.758461,177.7140443,62.5450694,-0.003972828,8.59E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348600 -1616812348627 ,112.5730107,26.89013561,58.75843811,177.7120225,62.06411092,-0.003974439,8.38E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348610 -1616812348638 ,112.5730107,26.89013561,58.75843048,177.7128968,63.08446561,-0.003862695,8.42E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348620 -1616812348647 ,112.5730107,26.89013561,58.75841904,177.7143995,65.09208711,-0.003319835,8.23E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348630 -1616812348657 ,112.5730107,26.89013561,58.75839233,177.7148639,68.51508741,-0.002546797,7.72E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348640 -1616812348666 ,112.5730107,26.89013561,58.758358,177.7147546,70.64068991,-0.002314294,7.44E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348650 -1616812348676 ,112.5730107,26.89013561,58.75833893,177.714618,70.21597806,-0.002587969,7.62E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348660 -1616812348687 ,112.5730107,26.89013561,58.75832367,177.715383,68.30255659,-0.002946031,7.83E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348670 -1616812348698 ,112.5730107,26.89013561,58.75829697,177.7148093,66.90926851,-0.0030414,7.83E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348680 -1616812348708 ,112.5730107,26.89013561,58.75826263,177.715465,65.83508937,-0.003199538,7.86E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348690 -1616812348718 ,112.5730107,26.89013561,58.75823593,177.7154103,65.67398216,-0.00338229,8.24E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348700 -1616812348729 ,112.5730107,26.89013562,58.75821304,177.717514,66.19293068,-0.00343428,8.58E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348710 -1616812348738 ,112.5730107,26.89013562,58.75817871,177.7187435,68.41850775,-0.00288669,8.53E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348720 -1616812348751 ,112.5730107,26.89013562,58.75813293,177.7201641,70.40944492,-0.002554008,8.31E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348730 -1616812348759 ,112.5730107,26.89013562,58.75809097,177.7202734,70.18018393,-0.00284787,8.57E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348740 -1616812348769 ,112.5730107,26.89013562,58.75806427,177.7203281,68.4987535,-0.003386441,9.07E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348750 -1616812348781 ,112.5730107,26.89013562,58.75803375,177.7196724,66.56281629,-0.003782434,9.43E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348760 -1616812348792 ,112.5730107,26.89013562,58.75799179,177.7201368,65.0758161,-0.004033504,9.56E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348770 -1616812348800 ,112.5730107,26.89013562,58.75795364,177.7182517,63.94526949,-0.004371542,9.82E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348780 -1616812348809 ,112.5730107,26.89013562,58.75793076,177.718361,64.19562545,-0.004511255,1.02E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348790 -1616812348818 ,112.5730107,26.89013562,58.75790787,177.7185522,65.19579653,-0.004260968,1.04E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348800 -1616812348829 ,112.5730107,26.89013562,58.75786972,177.7203007,67.73636577,-0.003591922,1.02E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348810 -1616812348839 ,112.5730108,26.89013562,58.75782776,177.7207925,69.44205015,-0.003347112,1.00E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348820 -1616812348849 ,112.5730108,26.89013562,58.75780487,177.7198909,69.4504695,-0.003579329,1.02E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348830 -1616812348860 ,112.5730108,26.89013562,58.75779343,177.7221585,68.62949357,-0.003861615,1.05E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348840 -1616812348869 ,112.5730108,26.89013562,58.75777054,177.721175,68.49429687,-0.00380911,1.06E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348850 -1616812348879 ,112.5730108,26.89013562,58.75774002,177.7237978,68.5506091,-0.00373538,1.05E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348860 -1616812348889 ,112.5730108,26.89013562,58.75771713,177.7237705,68.96084934,-0.003691424,1.05E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348870 -1616812348899 ,112.5730108,26.89013562,58.75770187,177.7251092,70.39639309,-0.003383943,1.05E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348880 -1616812348910 ,112.5730108,26.89013562,58.75767899,177.7249999,73.38622437,-0.002526528,1.02E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812348890 -1616812348920 ,112.5730108,26.89013562,58.75764084,177.7256556,77.10637656,-0.001717571,9.74E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348900 -1616812348929 ,112.5730108,26.89013562,58.75761032,177.7261201,78.87164519,-0.001538867,9.59E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348910 -1616812348940 ,112.5730108,26.89013562,58.75758743,177.7258195,79.39229814,-0.001519875,9.71E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348920 -1616812348950 ,112.5730108,26.89013562,58.75755692,177.7251092,79.54563821,-0.001424357,9.62E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348930 -1616812348961 ,112.5730108,26.89013562,58.75751877,177.7242349,79.75103558,-0.001312835,9.34E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348940 -1616812348972 ,112.5730108,26.89013562,58.75748444,177.7256829,79.91780475,-0.00128899,9.16E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348950 -1616812348980 ,112.5730108,26.89013562,58.75746155,177.7249726,80.84530446,-0.001135461,9.18E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348960 -1616812348990 ,112.5730108,26.89013562,58.75743103,177.724754,82.67248344,-6.52E-04,9.06E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348970 -1616812349000 ,112.5730108,26.89013562,58.75738907,177.7257102,86.69503579,1.46E-04,8.63E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348980 -1616812349012 ,112.5730108,26.89013562,58.75734329,177.7259835,90.03427207,5.42E-04,8.32E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812348990 -1616812349022 ,112.5730108,26.89013562,58.75730896,177.7271309,90.02140679,3.83E-04,8.18E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349000 -1616812349030 ,112.5730108,26.89013562,58.75728607,177.7253278,88.13362962,3.18E-05,8.03E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349010 -1616812349041 ,112.5730108,26.89013562,58.75725555,177.724071,86.61988428,-1.19E-04,7.90E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349020 -1616812349050 ,112.5730108,26.89013562,58.75721359,177.7250545,84.85587688,-4.03E-04,7.77E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349030 -1616812349061 ,112.5730108,26.89013562,58.75717926,177.7258469,82.43407169,-8.00E-04,7.82E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349040 -1616812349073 ,112.5730108,26.89013562,58.75715637,177.7241256,81.25221412,-9.40E-04,7.83E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349050 -1616812349083 ,112.5730108,26.89013562,58.75712585,177.7246994,82.77617981,-5.43E-04,7.66E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349060 -1616812349092 ,112.5730108,26.89013562,58.75708008,177.7243169,84.58520915,-3.04E-04,7.45E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349070 -1616812349101 ,112.5730108,26.89013562,58.75704575,177.7242622,83.47653079,-6.43E-04,7.55E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349080 -1616812349113 ,112.5730108,26.89013562,58.75702667,177.7243442,80.61561293,-0.00117269,7.85E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349090 -1616812349127 ,112.5730108,26.89013562,58.75699997,177.7230055,77.97595127,-0.001523863,8.08E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349100 -1616812349136 ,112.5730108,26.89013562,58.75696564,177.7226776,76.26515031,-0.00174977,8.07E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349110 -1616812349145 ,112.5730108,26.89013562,58.7569313,177.7225137,74.64457463,-0.002107021,8.39E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349120 -1616812349153 ,112.5730108,26.89013562,58.75691223,177.7225957,74.08735631,-0.002312289,8.87E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349130 -1616812349162 ,112.5730108,26.89013562,58.75688553,177.7216395,75.20258695,-0.002021645,9.16E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349140 -1616812349172 ,112.5730108,26.89013563,58.75684357,177.7219946,78.37442051,-0.001342963,9.03E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349150 -1616812349183 ,112.5730108,26.89013563,58.75679398,177.7214482,80.45970108,-0.001118673,9.12E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349160 -1616812349195 ,112.5730108,26.89013563,58.75675964,177.7223225,80.69805937,-0.001253578,9.53E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349170 -1616812349202 ,112.5730108,26.89013563,58.75673294,177.7221585,80.04635925,-0.001478391,9.90E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349180 -1616812349212 ,112.5730108,26.89013563,58.75669861,177.7213662,79.76194207,-0.001461045,1.02E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349190 -1616812349225 ,112.5730108,26.89013562,58.75672913,177.7200275,236.5777636,0.001499329,2.18E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349200 -1616812349233 ,112.5730108,26.89013562,58.75678253,177.7205739,238.2168066,0.001531509,2.57E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349210 -1616812349243 ,112.5730108,26.89013562,58.75683975,177.7217761,237.5008945,0.001741123,2.54E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349220 -1616812349252 ,112.5730108,26.89013562,58.75689316,177.721858,236.3463221,0.002586081,2.57E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349230 -1616812349264 ,112.5730108,26.89013562,58.75693512,177.721858,235.2453496,0.003397289,2.64E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349250 -1616812349273 ,112.5730108,26.89013562,58.75698471,177.7224591,234.670806,0.003652153,2.67E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349250 -1616812349284 ,112.5730108,26.89013562,58.75704956,177.7234426,234.5036868,0.003555336,2.66E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349270 -1616812349295 ,112.5730108,26.89013561,58.7571106,177.7235519,234.7161037,0.003473206,2.65E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349280 -1616812349304 ,112.5730108,26.89013561,58.75716019,177.723306,235.0198971,0.00353168,2.68E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349280 -1616812349313 ,112.5730108,26.89013561,58.75727463,177.7231148,235.3899907,0.003464288,5.38E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349300 -1616812349323 ,112.5730108,26.89013561,58.75727463,177.7231148,-400,0.003464288,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812349310 -1616812349335 ,112.5730108,26.89013561,58.75738525,177.7228689,234.5439594,0.00499073,5.55E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349320 -1616812349349 ,112.5730108,26.89013561,58.75738525,177.7228689,-400,0.00499073,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812349330 -1616812349356 ,112.5730108,26.8901356,58.75749207,177.7207652,233.7470437,0.005413542,5.79E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349340 -1616812349365 ,112.5730107,26.8901356,58.75756454,177.7195904,234.1545414,0.00519119,2.91E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349350 -1616812349377 ,112.5730107,26.8901356,58.75762558,177.7214482,234.7328453,0.005032541,2.92E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349360 -1616812349386 ,112.5730107,26.8901356,58.75767899,177.721257,235.2925344,0.004939102,2.94E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349370 -1616812349396 ,112.5730107,26.8901356,58.75773621,177.7207105,235.5062853,0.004851108,2.94E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349380 -1616812349405 ,112.5730107,26.89013559,58.75780487,177.7209291,235.3983773,0.004971541,2.95E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349390 -1616812349415 ,112.5730107,26.89013559,58.75786972,177.719727,234.8413948,0.005663598,2.99E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349400 -1616812349425 ,112.5730107,26.89013559,58.75792313,177.7189074,234.2079261,0.00630561,3.05E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349410 -1616812349434 ,112.5730107,26.89013559,58.75798035,177.7174867,234.0389926,0.006307756,3.07E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349420 -1616812349444 ,112.5730107,26.89013559,58.7580452,177.7187708,234.2476501,0.005839498,3.03E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349430 -1616812349455 ,112.5730107,26.89013559,58.75811386,177.7186069,234.8265873,0.005336584,2.99E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349440 -1616812349466 ,112.5730107,26.89013559,58.7580986,177.7172408,180.1915372,0.005010532,4.55E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349450 -1616812349476 ,112.5730107,26.89013558,58.75808334,177.7169676,179.4830552,0.004526764,4.16E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349460 -1616812349485 ,112.5730107,26.89013558,58.75807953,177.7177326,174.4782397,0.004197658,3.86E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349470 -1616812349495 ,112.5730107,26.89013558,58.75807571,177.7166944,170.6288663,0.004414336,3.90E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349480 -1616812349506 ,112.5730107,26.89013558,58.75805283,177.7171042,170.709414,0.005145478,4.44E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349490 -1616812349516 ,112.5730107,26.89013558,58.75802231,177.7162846,170.7340955,0.005557604,4.92E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349500 -1616812349526 ,112.5730107,26.89013558,58.75800705,177.7168583,167.0531757,0.005331182,4.92E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349510 -1616812349536 ,112.5730107,26.89013558,58.75799942,177.7170496,163.2181036,0.004946034,4.68E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349520 -1616812349546 ,112.5730107,26.89013558,58.75798035,177.7174594,160.5568824,0.004733045,4.47E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349530 -1616812349555 ,112.5730107,26.89013558,58.75794983,177.7167764,159.348134,0.004555156,4.27E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349540 -1616812349567 ,112.5730107,26.89013558,58.75792313,177.7164485,154.9741386,0.004366377,4.25E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349550 -1616812349581 ,112.5730107,26.89013558,58.75790787,177.7166398,152.0021726,0.004576287,4.48E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349560 -1616812349588 ,112.5730107,26.89013558,58.75788498,177.7180604,154.5086611,0.005322352,4.91E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349570 -1616812349596 ,112.5730107,26.89013558,58.75784683,177.7190986,157.875658,0.00598893,5.49E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349580 -1616812349606 ,112.5730107,26.89013558,58.7578125,177.7190167,159.8418763,0.006188755,5.80E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349590 -1616812349616 ,112.5730107,26.89013558,58.75778198,177.7180058,158.2874767,0.006277639,5.89E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349600 -1616812349627 ,112.5730107,26.89013558,58.75774765,177.7187981,158.5648185,0.006892514,6.29E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349610 -1616812349642 ,112.5730107,26.89013558,58.75769424,177.7184429,160.2593164,0.007958306,7.12E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349620 -1616812349647 ,112.5730107,26.89013558,58.75764084,177.7180058,161.4109752,0.008747911,7.89E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349630 -1616812349656 ,112.5730107,26.89013558,58.75759125,177.7184976,159.9338225,0.009328062,8.57E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349640 -1616812349668 ,112.5730107,26.89013558,58.75754547,177.7184156,158.6661882,0.009677823,8.99E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349650 -1616812349679 ,112.5730107,26.89013557,58.75749207,177.7187161,160.2305914,0.010554629,9.63E-05,1620000000000 ,1620000000000 ,1620000000000 ,1616812349660 -1616812349687 ,112.5730107,26.89013557,58.75743484,177.7172955,161.4476311,0.011007493,1.01E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349670 -1616812349697 ,112.5730107,26.89013557,58.75738525,177.7189074,162.266189,0.011217017,1.03E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349680 -1616812349707 ,112.5730107,26.89013557,58.75734711,177.7203827,163.8085863,0.011482963,1.05E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349690 -1616812349717 ,112.5730107,26.89013557,58.75729752,177.7180878,166.1674522,0.011851431,1.07E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349700 -1616812349727 ,112.5730107,26.89013557,58.7572403,177.7158201,168.4658562,0.011965425,1.08E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349710 -1616812349737 ,112.5730107,26.89013557,58.75719452,177.7160114,169.3139013,0.01153633,1.05E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349720 -1616812349747 ,112.5730107,26.89013557,58.75716019,177.7152464,169.399656,0.011370533,1.03E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349730 -1616812349758 ,112.5730107,26.89013557,58.75712967,177.7157109,171.5233859,0.012037559,1.06E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349740 -1616812349767 ,112.5730107,26.89013556,58.75708771,177.7143721,173.8787132,0.012689521,1.12E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349750 -1616812349778 ,112.5730107,26.89013556,58.75704956,177.7149732,174.2370623,0.012757615,1.15E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349760 -1616812349790 ,112.5730107,26.89013556,58.75702667,177.7137711,173.9736325,0.012454319,1.13E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349770 -1616812349799 ,112.5730107,26.89013556,58.75699615,177.7155196,174.1597865,0.012415629,1.11E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349780 -1616812349808 ,112.5730107,26.89013556,58.75696182,177.7154376,175.2159139,0.012504597,1.12E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349790 -1616812349819 ,112.5730107,26.89013556,58.75692368,177.7142355,175.8426083,0.012235167,1.10E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349800 -1616812349829 ,112.5730107,26.89013556,58.75690079,177.7137711,175.9326866,0.012092208,1.09E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349810 -1616812349838 ,112.5730107,26.89013556,58.75688171,177.7137164,176.7295122,0.012734766,1.12E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349820 -1616812349851 ,112.5730107,26.89013556,58.75684738,177.713853,177.9270182,0.013977853,1.22E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349830 -1616812349860 ,112.5730107,26.89013555,58.75680923,177.7139896,178.8071549,0.014593855,1.30E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349840 -1616812349874 ,112.5730107,26.89013555,58.75677872,177.7155469,179.4155113,0.014478263,1.30E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349850 -1616812349880 ,112.5730107,26.89013555,58.75675583,177.7151918,179.8542443,0.014459144,1.30E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349860 -1616812349889 ,112.5730107,26.89013555,58.75672913,177.7146453,180.0226382,0.014937681,1.33E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349870 -1616812349900 ,112.5730107,26.89013555,58.75669479,177.7142082,180.281713,0.015280006,1.36E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349880 -1616812349916 ,112.5730107,26.89013555,58.75666428,177.7147,180.4807834,0.015385381,1.38E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349890 -1616812349920 ,112.5730107,26.89013555,58.75664139,177.7132793,180.4041477,0.01596678,1.42E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349900 -1616812349930 ,112.5730107,26.89013554,58.75661469,177.7160387,180.487096,0.017171822,1.51E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349910 -1616812349940 ,112.5730107,26.89013554,58.75658035,177.7156562,180.5092982,0.018081943,1.61E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349920 -1616812349950 ,112.5730107,26.89013554,58.75654602,177.7171042,180.1266184,0.01808161,1.63E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349930 -1616812349963 ,112.5730107,26.89013554,58.7565155,177.7166398,179.500268,0.017975558,1.61E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349940 -1616812349974 ,112.5730107,26.89013554,58.75648499,177.7183883,178.8406474,0.018490413,1.64E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349950 -1616812349981 ,112.5730107,26.89013554,58.75644684,177.7184702,178.1912176,0.018912507,1.69E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349960 -1616812349992 ,112.5730107,26.89013554,58.75641632,177.7180058,177.4647395,0.018935397,1.70E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349970 -1616812350002 ,112.5730107,26.89013553,58.75639343,177.7178965,176.5029932,0.019427186,1.73E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349980 -1616812350012 ,112.5730107,26.89013553,58.75636292,177.7172408,175.5999119,0.020683732,1.83E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812349990 -1616812350020 ,112.5730107,26.89013553,58.75632858,177.7159294,174.5744539,0.021729449,1.94E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350000 -1616812350030 ,112.5730107,26.89013553,58.75629425,177.7180878,173.7783673,0.021931563,1.97E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350010 -1616812350041 ,112.5730107,26.89013553,58.75626755,177.7169403,173.392026,0.022116322,1.99E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350020 -1616812350051 ,112.5730107,26.89013552,58.75624084,177.7164485,173.2888815,0.022825234,2.04E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350030 -1616812350061 ,112.5730107,26.89013552,58.75621414,177.7178419,172.4697894,0.023447692,2.11E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350040 -1616812350074 ,112.5730107,26.89013552,58.75618744,177.7187161,171.5525848,0.023688285,2.14E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350050 -1616812350081 ,112.5730107,26.89013552,58.75616074,177.7189074,171.3440855,0.024361925,2.19E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350060 -1616812350092 ,112.5730107,26.89013551,58.75613022,177.7185795,171.6146866,0.025683124,2.29E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350070 -1616812350101 ,112.5730107,26.89013551,58.75609589,177.7188527,171.3167993,0.026842901,2.41E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350080 -1616812350113 ,112.5730107,26.89013551,58.75606155,177.7173774,170.5923659,0.027299616,2.47E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350090 -1616812350122 ,112.5730107,26.89013551,58.75602722,177.7179512,170.4006002,0.028036898,2.52E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350100 -1616812350132 ,112.5730107,26.89013551,58.75598145,177.7178419,170.870689,0.029356644,2.63E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350110 -1616812350143 ,112.5730107,26.8901355,58.75593567,177.7157928,170.6898123,0.030484498,2.74E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350120 -1616812350151 ,112.5730107,26.8901355,58.75589371,177.7168037,170.1525383,0.031058421,2.80E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350130 -1616812350162 ,112.5730107,26.8901355,58.75584793,177.7168037,170.0724375,0.03223406,2.89E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350140 -1616812350172 ,112.5730107,26.89013549,58.7557869,177.7168856,170.7664835,0.033877876,3.03E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350150 -1616812350182 ,112.5730107,26.89013549,58.75572586,177.716831,170.9203848,0.035214115,3.16E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350160 -1616812350194 ,112.5730107,26.89013549,58.75566864,177.7174047,170.7510084,0.036034875,3.24E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350170 -1616812350202 ,112.5730107,26.89013548,58.7556076,177.7174594,171.2274019,0.03748641,3.35E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350180 -1616812350213 ,112.5730107,26.89013548,58.75553513,177.7189893,172.0506431,0.039382033,3.51E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350190 -1616812350224 ,112.5730107,26.89013548,58.75556946,177.7188801,220.8636107,0.031735763,1.33E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350200 -1616812350233 ,112.5730107,26.89013548,58.75561523,177.7191533,234.6316378,0.0331409,1.25E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350210 -1616812350243 ,112.5730107,26.89013548,58.7556572,177.7187161,229.1530924,0.035063196,1.35E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350220 -1616812350254 ,112.5730107,26.89013548,58.7556839,177.7186888,224.7717375,0.037286732,1.52E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350230 -1616812350264 ,112.5730107,26.89013548,58.75570679,177.7178692,221.4189922,0.039135676,1.68E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350240 -1616812350274 ,112.5730107,26.89013547,58.75573349,177.7158748,217.8522868,0.041123837,1.81E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350250 -1616812350285 ,112.5730107,26.89013547,58.75575256,177.7154923,214.2750135,0.043750588,2.00E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350270 -1616812350293 ,112.5730107,26.89013547,58.75575638,177.7162846,211.5536735,0.046857525,2.25E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350280 -1616812350307 ,112.5730107,26.89013547,58.75574493,177.715383,209.1206498,0.04982519,2.51E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350280 -1616812350315 ,112.5730107,26.89013546,58.75571442,177.7129788,204.8131828,0.05650998,5.79E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350300 -1616812350324 ,112.5730107,26.89013546,58.7556839,177.7127056,202.4769665,0.05980168,3.33E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350310 -1616812350333 ,112.5730107,26.89013546,58.75564957,177.711804,201.1442662,0.06336061,3.64E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350320 -1616812350345 ,112.5730107,26.89013545,58.75561523,177.7119679,199.2846003,0.06730583,3.97E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350330 -1616812350355 ,112.5730107,26.89013545,58.75559235,177.7091812,197.5180618,0.07161733,4.33E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350340 -1616812350364 ,112.5730107,26.89013544,58.75555038,177.7093998,196.2664464,0.076700754,4.75E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350350 -1616812350375 ,112.5730107,26.89013544,58.75550079,177.7089899,194.8385218,0.08223829,5.23E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350360 -1616812350384 ,112.5730107,26.89013543,58.75545883,177.70746,193.3789991,0.087414555,5.69E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350370 -1616812350396 ,112.5730107,26.89013543,58.75541687,177.7050831,191.9691675,0.09280188,6.14E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350380 -1616812350405 ,112.5730107,26.89013542,58.75537109,177.7056022,190.8509036,0.09916815,6.68E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350390 -1616812350415 ,112.5730107,26.89013541,58.75532913,177.7047552,189.745008,0.10546429,7.24E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350400 -1616812350427 ,112.5730107,26.89013541,58.75527954,177.7031433,188.471152,0.11281786,7.84E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350410 -1616812350436 ,112.5730107,26.8901354,58.75521851,177.7006571,187.2603084,0.12168795,8.60E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350420 -1616812350445 ,112.5730107,26.89013539,58.75514221,177.7004112,186.2428017,0.13028696,9.37E-04,1620000000000 ,1620000000000 ,1620000000000 ,1616812350430 -1616812350455 ,112.5730107,26.89013538,58.75505447,177.6997009,185.3173632,0.13879792,0.001011066,1620000000000 ,1620000000000 ,1620000000000 ,1616812350440 -1616812350466 ,112.5730107,26.89013537,58.75485992,177.698007,178.5528293,0.1483456,0.001311968,1620000000000 ,1620000000000 ,1620000000000 ,1616812350450 -1616812350475 ,112.5730107,26.89013535,58.75465775,177.6971054,178.2924449,0.15850534,0.001402198,1620000000000 ,1620000000000 ,1620000000000 ,1616812350460 -1616812350484 ,112.5730107,26.89013534,58.75444412,177.6956301,178.0056698,0.16962285,0.001499873,1620000000000 ,1620000000000 ,1620000000000 ,1616812350470 -1616812350496 ,112.5730107,26.89013532,58.75419998,177.6947285,177.7658934,0.18114723,0.001602641,1620000000000 ,1620000000000 ,1620000000000 ,1616812350480 -1616812350504 ,112.5730107,26.8901353,58.75392914,177.6931439,177.6441392,0.19195083,0.001701322,1620000000000 ,1620000000000 ,1620000000000 ,1616812350490 -1616812350516 ,112.5730107,26.89013529,58.75364304,177.6925975,177.4793939,0.20298657,0.00179974,1620000000000 ,1620000000000 ,1620000000000 ,1616812350500 -1616812350526 ,112.5730107,26.89013527,58.7533493,177.6914773,177.2867146,0.21388415,0.00189852,1620000000000 ,1620000000000 ,1620000000000 ,1616812350510 -1616812350536 ,112.5730107,26.89013525,58.75305176,177.6910129,177.1310049,0.22615515,0.002004639,1620000000000 ,1620000000000 ,1620000000000 ,1616812350520 -1616812350546 ,112.5730107,26.89013523,58.75274658,177.6892644,177.1259369,0.23915794,0.002122042,1620000000000 ,1620000000000 ,1620000000000 ,1616812350530 -1616812350556 ,112.5730107,26.8901352,58.75243378,177.6880349,177.1095573,0.2509779,0.002231291,1620000000000 ,1620000000000 ,1620000000000 ,1616812350540 -1616812350566 ,112.5730107,26.89013518,58.75211334,177.6861771,177.0190772,0.2635928,0.002342613,1620000000000 ,1620000000000 ,1620000000000 ,1616812350550 -1616812350580 ,112.5730107,26.89013515,58.75179291,177.6835543,176.9387212,0.27519888,0.002451483,1620000000000 ,1620000000000 ,1620000000000 ,1616812350560 -1616812350586 ,112.5730107,26.89013513,58.7514801,177.6810681,176.8882953,0.28708953,0.002555858,1620000000000 ,1620000000000 ,1620000000000 ,1616812350570 -1616812350597 ,112.5730107,26.8901351,58.75118256,177.6806037,176.8557975,0.30026257,0.002673859,1620000000000 ,1620000000000 ,1620000000000 ,1616812350580 -1616812350607 ,112.5730107,26.89013507,58.75088882,177.6784453,176.8662972,0.3123512,0.002785647,1620000000000 ,1620000000000 ,1620000000000 ,1616812350590 -1616812350616 ,112.5730107,26.89013505,58.75060272,177.6788278,176.8475098,0.3257136,0.002902867,1620000000000 ,1620000000000 ,1620000000000 ,1616812350600 -1616812350626 ,112.5730107,26.89013502,58.75032425,177.6766695,176.8326069,0.33875167,0.003023427,1620000000000 ,1620000000000 ,1620000000000 ,1616812350610 -1616812350639 ,112.5730107,26.89013498,58.75004196,177.6731998,176.8528049,0.3522967,0.003143424,1620000000000 ,1620000000000 ,1620000000000 ,1616812350620 -1616812350648 ,112.5730107,26.89013495,58.74977112,177.6709321,176.8417356,0.36538312,0.003263862,1620000000000 ,1620000000000 ,1620000000000 ,1616812350630 -1616812350658 ,112.5730107,26.89013492,58.74951553,177.6678176,176.8410776,0.3783156,0.003379489,1620000000000 ,1620000000000 ,1620000000000 ,1616812350640 -1616812350668 ,112.5730107,26.89013488,58.74927902,177.664785,176.8255683,0.39194533,0.003502804,1620000000000 ,1620000000000 ,1620000000000 ,1616812350650 -1616812350677 ,112.5730107,26.89013485,58.74904251,177.6632277,176.8097056,0.4060496,0.003628401,1620000000000 ,1620000000000 ,1620000000000 ,1616812350660 -1616812350687 ,112.5730107,26.89013481,58.748806,177.6602497,176.8787831,0.42018774,0.00375748,1620000000000 ,1620000000000 ,1620000000000 ,1616812350670 -1616812350697 ,112.5730107,26.89013477,58.74856567,177.6556325,176.9205465,0.43355724,0.003878701,1620000000000 ,1620000000000 ,1620000000000 ,1616812350680 -1616812350708 ,112.5730107,26.89013473,58.74834824,177.6537474,176.9316239,0.4474894,0.004004513,1620000000000 ,1620000000000 ,1620000000000 ,1616812350690 -1616812350718 ,112.5730107,26.89013469,58.74814224,177.649458,176.897284,0.46195427,0.004132967,1620000000000 ,1620000000000 ,1620000000000 ,1616812350700 -1616812350727 ,112.5730107,26.89013465,58.74793243,177.6466167,176.9178337,0.47717893,0.004270815,1620000000000 ,1620000000000 ,1620000000000 ,1616812350710 -1616812350737 ,112.5730108,26.8901346,58.74770737,177.6428464,176.9415213,0.4914872,0.004400436,1620000000000 ,1620000000000 ,1620000000000 ,1616812350720 -1616812350748 ,112.5730108,26.89013456,58.74747467,177.6400324,176.8952532,0.50652605,0.00453538,1620000000000 ,1620000000000 ,1620000000000 ,1616812350730 -1616812350758 ,112.5730108,26.89013451,58.74725723,177.6360708,176.8442493,0.52179056,0.004670755,1620000000000 ,1620000000000 ,1620000000000 ,1616812350740 -1616812350768 ,112.5730108,26.89013446,58.74704361,177.6319454,176.8184933,0.53867036,0.004822462,1620000000000 ,1620000000000 ,1620000000000 ,1616812350750 -1616812350777 ,112.5730108,26.89013441,58.74682236,177.6285303,176.8785013,0.55446506,0.00496586,1620000000000 ,1620000000000 ,1620000000000 ,1616812350760 -1616812350788 ,112.5730108,26.89013436,58.74659729,177.6235033,176.8710189,0.5718305,0.005120152,1620000000000 ,1620000000000 ,1620000000000 ,1616812350770 -1616812350797 ,112.5730108,26.89013431,58.74637604,177.6191047,176.8704199,0.5886688,0.005271812,1620000000000 ,1620000000000 ,1620000000000 ,1616812350780 -1616812350808 ,112.5730108,26.89013426,58.74615479,177.6160174,176.920882,0.60644084,0.005432598,1620000000000 ,1620000000000 ,1620000000000 ,1616812350790 -1616812350818 ,112.5730108,26.8901342,58.74593735,177.6117281,177.0590105,0.6232542,0.00558417,1620000000000 ,1620000000000 ,1620000000000 ,1616812350800 -1616812350828 ,112.5730108,26.89013414,58.74573135,177.6064278,177.1183123,0.64124256,0.005746559,1620000000000 ,1620000000000 ,1620000000000 ,1616812350810 -1616812350838 ,112.5730108,26.89013408,58.7455368,177.602357,177.1353704,0.65917826,0.005905892,1620000000000 ,1620000000000 ,1620000000000 ,1616812350820 -1616812350848 ,112.5730108,26.89013402,58.74534607,177.596729,177.2056923,0.6781422,0.00607766,1620000000000 ,1620000000000 ,1620000000000 ,1616812350830 -1616812350859 ,112.5730108,26.89013396,58.74517059,177.5930953,177.3054192,0.69669485,0.006243627,1620000000000 ,1620000000000 ,1620000000000 ,1616812350840 -1616812350872 ,112.5730108,26.8901339,58.74501801,177.5870301,177.3306557,0.71577483,0.006418594,1620000000000 ,1620000000000 ,1620000000000 ,1616812350850 -1616812350879 ,112.5730108,26.89013383,58.74487686,177.5812108,177.2915222,0.73463297,0.006586507,1620000000000 ,1620000000000 ,1620000000000 ,1616812350860 -1616812350890 ,112.5730108,26.89013376,58.74474716,177.5772493,177.3257716,0.75315017,0.006756721,1620000000000 ,1620000000000 ,1620000000000 ,1616812350870 -1616812350899 ,112.5730108,26.89013369,58.74463654,177.571184,177.3297504,0.77292436,0.006930524,1620000000000 ,1620000000000 ,1620000000000 ,1616812350880 -1616812350909 ,112.5730108,26.89013362,58.7445488,177.5641353,177.2855237,0.79297537,0.007114395,1620000000000 ,1620000000000 ,1620000000000 ,1616812350890 -1616812350919 ,112.5730108,26.89013355,58.74445343,177.5589717,177.2267498,0.8138485,0.007299887,1620000000000 ,1620000000000 ,1620000000000 ,1616812350900 -1616812350929 ,112.5730108,26.89013347,58.74435806,177.5517317,177.2283938,0.8332598,0.007479077,1620000000000 ,1620000000000 ,1620000000000 ,1616812350910 -1616812350940 ,112.5730108,26.8901334,58.74428177,177.5459943,177.1620769,0.8537959,0.007661416,1620000000000 ,1620000000000 ,1620000000000 ,1616812350920 -1616812350949 ,112.5730108,26.89013332,58.74423599,177.540776,177.0590033,0.8737115,0.007843848,1620000000000 ,1620000000000 ,1620000000000 ,1616812350930 -1616812350959 ,112.5730108,26.89013324,58.74419403,177.5356397,177.0031884,0.89488167,0.008033722,1620000000000 ,1620000000000 ,1620000000000 ,1616812350940 -1616812350970 ,112.5730108,26.89013316,58.74415207,177.5300117,177.0063401,0.91518927,0.008216918,1620000000000 ,1620000000000 ,1620000000000 ,1616812350950 -1616812350980 ,112.5730108,26.89013307,58.74410629,177.5247388,176.9356237,0.9370182,0.008412184,1620000000000 ,1620000000000 ,1620000000000 ,1616812350960 -1616812350990 ,112.5730108,26.89013299,58.74406433,177.5185096,176.8349005,0.958618,0.008605995,1620000000000 ,1620000000000 ,1620000000000 ,1616812350970 -1616812350999 ,112.5730108,26.8901329,58.74401474,177.5137558,176.791645,0.9800289,0.008802528,1620000000000 ,1620000000000 ,1620000000000 ,1616812350980 -1616812351009 ,112.5730108,26.89013281,58.74395752,177.5080458,176.7958037,1.0016385,0.00899392,1620000000000 ,1620000000000 ,1620000000000 ,1616812350990 -1616812351019 ,112.5730108,26.89013272,58.74390411,177.5014342,176.7671471,1.0239441,0.009197594,1620000000000 ,1620000000000 ,1620000000000 ,1616812351000 -1616812351030 ,112.5730109,26.89013262,58.74384689,177.4968716,176.7121389,1.0465981,0.009398823,1620000000000 ,1620000000000 ,1620000000000 ,1616812351010 -1616812351040 ,112.5730109,26.89013253,58.74378586,177.4922544,176.6995828,1.0676897,0.009594394,1620000000000 ,1620000000000 ,1620000000000 ,1616812351020 -1616812351051 ,112.5730109,26.89013243,58.74372864,177.4855062,176.6729708,1.0897591,0.009789465,1620000000000 ,1620000000000 ,1620000000000 ,1616812351030 -1616812351061 ,112.5730109,26.89013233,58.74367905,177.4801513,176.6709201,1.1129134,0.009997275,1620000000000 ,1620000000000 ,1620000000000 ,1616812351040 -1616812351070 ,112.5730109,26.89013223,58.74362564,177.4756434,176.7026642,1.1362851,0.010209783,1620000000000 ,1620000000000 ,1620000000000 ,1616812351050 -1616812351084 ,112.5730109,26.89013213,58.74357224,177.4691957,176.7361113,1.157557,0.010404723,1620000000000 ,1620000000000 ,1620000000000 ,1616812351060 -1616812351091 ,112.5730109,26.89013202,58.74353027,177.4636769,176.6815713,1.1803919,0.010607114,1620000000000 ,1620000000000 ,1620000000000 ,1616812351070 -1616812351101 ,112.5730109,26.89013191,58.74350357,177.4561637,176.625603,1.2027504,0.010810359,1620000000000 ,1620000000000 ,1620000000000 ,1616812351080 -1616812351111 ,112.5730109,26.8901318,58.74346924,177.4497979,176.6077792,1.2252005,0.011015309,1620000000000 ,1620000000000 ,1620000000000 ,1616812351090 -1616812351125 ,112.5730109,26.89013169,58.74342346,177.4430224,176.6285278,1.2462103,0.011206089,1620000000000 ,1620000000000 ,1620000000000 ,1616812351100 -1616812351132 ,112.5730109,26.89013158,58.7433815,177.4335967,176.6226516,1.2682508,0.011403064,1620000000000 ,1620000000000 ,1620000000000 ,1616812351110 -1616812351144 ,112.5730109,26.89013146,58.7433548,177.4262201,176.5681792,1.2909225,0.011606269,1620000000000 ,1620000000000 ,1620000000000 ,1616812351120 -1616812351153 ,112.5730109,26.89013134,58.74334717,177.4180512,176.5602392,1.3117406,0.01180054,1620000000000 ,1620000000000 ,1620000000000 ,1616812351130 -1616812351162 ,112.5730109,26.89013122,58.74335098,177.4107019,176.5722917,1.33311,0.011990155,1620000000000 ,1620000000000 ,1620000000000 ,1616812351140 -1616812351171 ,112.5730109,26.8901311,58.74337387,177.4023145,176.5551466,1.3535931,0.01218129,1620000000000 ,1620000000000 ,1620000000000 ,1616812351150 -1616812351182 ,112.573011,26.89013098,58.7434082,177.392397,176.531838,1.3745167,0.012366807,1620000000000 ,1620000000000 ,1620000000000 ,1616812351160 -1616812351191 ,112.573011,26.89013085,58.74346161,177.382944,176.508245,1.3951458,0.012554967,1620000000000 ,1620000000000 ,1620000000000 ,1616812351170 -1616812351203 ,112.573011,26.89013072,58.74354553,177.3739009,176.4618829,1.4167086,0.012746685,1620000000000 ,1620000000000 ,1620000000000 ,1616812351180 -1616812351212 ,112.573011,26.8901306,58.74364853,177.3651036,176.4334015,1.4381485,0.012943502,1620000000000 ,1620000000000 ,1620000000000 ,1616812351190 -1616812351222 ,112.573011,26.89013047,58.74375916,177.3416624,176.8109546,1.4395874,0.012959989,1620000000000 ,1620000000000 ,1620000000000 ,1616812351200 -1616812351232 ,112.573011,26.89013034,58.74383545,177.3317449,177.5976601,1.4596173,0.012793189,1620000000000 ,1620000000000 ,1620000000000 ,1616812351210 -1616812351241 ,112.573011,26.89013021,58.74393845,177.3211445,177.5097481,1.4806819,0.012982192,1620000000000 ,1620000000000 ,1620000000000 ,1616812351220 -1616812351251 ,112.573011,26.89013008,58.74404144,177.3103801,177.4100009,1.5010048,0.013166119,1620000000000 ,1620000000000 ,1620000000000 ,1616812351230 -1616812351262 ,112.573011,26.89012994,58.74413681,177.3009818,177.3680148,1.521758,0.01335498,1620000000000 ,1620000000000 ,1620000000000 ,1616812351240 -1616812351277 ,112.573011,26.89012981,58.74425507,177.2911463,177.3058272,1.5409307,0.013530721,1620000000000 ,1620000000000 ,1620000000000 ,1616812351250 -1616812351283 ,112.573011,26.89012967,58.74442673,177.2805458,177.1957223,1.561124,0.013712084,1620000000000 ,1620000000000 ,1620000000000 ,1616812351260 -1616812351292 ,112.573011,26.89012953,58.74461746,177.2708743,177.1298224,1.5814278,0.01389467,1620000000000 ,1620000000000 ,1620000000000 ,1616812351270 -1616812351302 ,112.573011,26.89012939,58.74479294,177.2626234,177.0929059,1.6012185,0.014077396,1620000000000 ,1620000000000 ,1620000000000 ,1616812351280 -1616812351313 ,112.573011,26.89012925,58.74494934,177.2511487,177.0587216,1.6198252,0.014245543,1620000000000 ,1620000000000 ,1620000000000 ,1616812351290 -1616812351325 ,112.573011,26.89012911,58.745121,177.2420236,176.9798493,1.6386966,0.014417173,1620000000000 ,1620000000000 ,1620000000000 ,1616812351300 -1616812351333 ,112.5730111,26.89012896,58.74530411,177.2321061,176.9245318,1.6584349,0.01459077,1620000000000 ,1620000000000 ,1620000000000 ,1616812351310 -1616812351343 ,112.5730111,26.89012881,58.7455101,177.2218335,176.9490733,1.6771153,0.014765672,1620000000000 ,1620000000000 ,1620000000000 ,1616812351320 -1616812351353 ,112.5730111,26.89012866,58.74571609,177.2116429,176.9199654,1.695735,0.014931897,1620000000000 ,1620000000000 ,1620000000000 ,1616812351330 -1616812351363 ,112.5730111,26.89012851,58.74591827,177.1987748,176.8892089,1.715376,0.015108524,1620000000000 ,1620000000000 ,1620000000000 ,1616812351340 -1616812351376 ,112.5730111,26.89012836,58.74611664,177.1876279,176.8813668,1.7365673,0.015294585,1620000000000 ,1620000000000 ,1620000000000 ,1616812351360 -1616812351385 ,112.5730111,26.89012821,58.74631119,177.1750058,176.8773374,1.7558967,0.015476003,1620000000000 ,1620000000000 ,1620000000000 ,1616812351370 -1616812351395 ,112.5730111,26.89012789,58.74666595,177.152029,176.9238544,1.7931554,0.031455454,1620000000000 ,1620000000000 ,1620000000000 ,1616812351380 -1616812351403 ,112.5730111,26.89012789,58.74666595,177.152029,-400,1.7931554,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812351380 -1616812351413 ,112.5730111,26.89012757,58.74698639,177.1277955,176.9270358,1.8321772,0.032149096,1620000000000 ,1620000000000 ,1620000000000 ,1616812351400 -1616812351424 ,112.5730111,26.89012741,58.74712372,177.1158836,176.9428114,1.851572,0.016337128,1620000000000 ,1620000000000 ,1620000000000 ,1616812351410 -1616812351434 ,112.5730111,26.89012724,58.7472496,177.1030156,176.9402288,1.8701893,0.016507451,1620000000000 ,1620000000000 ,1620000000000 ,1616812351420 -1616812351445 ,112.5730112,26.89012708,58.74734497,177.0911857,176.8992269,1.8902642,0.016683164,1620000000000 ,1620000000000 ,1620000000000 ,1616812351430 -1616812351454 ,112.5730112,26.89012708,58.74734497,177.0911857,-400,1.8902642,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812351440 -1616812351464 ,112.5730112,26.89012674,58.74751282,177.0669795,176.7210177,1.926687,0.034043409,1620000000000 ,1620000000000 ,1620000000000 ,1616812351450 -1616812351474 ,112.5730112,26.89012656,58.74757004,177.0547398,176.1973452,1.9442202,0.017524035,1620000000000 ,1620000000000 ,1620000000000 ,1616812351460 -1616812351484 ,112.5730112,26.89012638,58.74759293,177.0428826,176.2244688,1.9635481,0.017691267,1620000000000 ,1620000000000 ,1620000000000 ,1616812351470 -1616812351495 ,112.5730112,26.89012621,58.74760437,177.0313805,176.2399465,1.9810052,0.017856148,1620000000000 ,1620000000000 ,1620000000000 ,1616812351480 -1616812351505 ,112.5730112,26.89012603,58.74763107,177.0175836,176.2273755,1.9967978,0.017999582,1620000000000 ,1620000000000 ,1620000000000 ,1616812351490 -1616812351515 ,112.5730112,26.89012585,58.74767303,177.0077208,176.2124529,2.013954,0.018153471,1620000000000 ,1620000000000 ,1620000000000 ,1616812351500 -1616812351525 ,112.5730112,26.89012566,58.74769592,176.9987049,176.2051722,2.0322456,0.018315203,1620000000000 ,1620000000000 ,1620000000000 ,1616812351510 -1616812351538 ,112.5730113,26.89012548,58.74769592,176.9899623,176.2327699,2.0483775,0.018467305,1620000000000 ,1620000000000 ,1620000000000 ,1616812351520 -1616812351546 ,112.5730113,26.89012529,58.74769592,176.9795257,176.2356883,2.0650988,0.018612926,1620000000000 ,1620000000000 ,1620000000000 ,1616812351530 -1616812351555 ,112.5730113,26.89012529,58.74769592,176.9795257,-400,2.0650988,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812351540 -1616812351564 ,112.5730113,26.89012492,58.74775314,176.959363,176.1837375,2.0988135,0.037688435,1620000000000 ,1620000000000 ,1620000000000 ,1616812351550 -1616812351577 ,112.5730113,26.89012473,58.74776077,176.9514946,176.1704894,2.1145627,0.019064275,1620000000000 ,1620000000000 ,1620000000000 ,1616812351560 -1616812351584 ,112.5730113,26.89012453,58.74774933,176.9439268,176.1395295,2.130636,0.019207495,1620000000000 ,1620000000000 ,1620000000000 ,1616812351570 -1616812351595 ,112.5730113,26.89012434,58.74775696,176.9349929,176.0787866,2.1479259,0.019363657,1620000000000 ,1620000000000 ,1620000000000 ,1616812351580 -1616812351607 ,112.5730113,26.89012415,58.74777222,176.9289277,176.0102407,2.165267,0.019520095,1620000000000 ,1620000000000 ,1620000000000 ,1616812351590 -1616812351615 ,112.5730114,26.89012395,58.74777985,176.9239826,175.9767272,2.1807451,0.019665545,1620000000000 ,1620000000000 ,1620000000000 ,1616812351600 -1616812351626 ,112.5730114,26.89012375,58.74778748,176.9170432,175.9774112,2.196322,0.019803355,1620000000000 ,1620000000000 ,1620000000000 ,1616812351610 -1616812351635 ,112.5730114,26.89012355,58.74782181,176.9107321,175.9534736,2.2122333,0.019948962,1620000000000 ,1620000000000 ,1620000000000 ,1616812351620 -1616812351646 ,112.5730114,26.89012335,58.74787521,176.9049947,175.9207075,2.2290373,0.020096815,1620000000000 ,1620000000000 ,1620000000000 ,1616812351630 -1616812351656 ,112.5730114,26.89012315,58.74793243,176.8990115,175.924222,2.2441936,0.020241677,1620000000000 ,1620000000000 ,1620000000000 ,1616812351640 -1616812351668 ,112.5730114,26.89012295,58.74798203,176.8943396,175.9293885,2.259036,0.020372446,1620000000000 ,1620000000000 ,1620000000000 ,1616812351650 -1616812351676 ,112.5730114,26.89012274,58.74803543,176.8896405,175.9057793,2.27502,0.020516985,1620000000000 ,1620000000000 ,1620000000000 ,1616812351660 -1616812351685 ,112.5730115,26.89012254,58.74809647,176.8849413,175.8821832,2.290796,0.020658513,1620000000000 ,1620000000000 ,1620000000000 ,1616812351670 -1616812351696 ,112.5730115,26.89012233,58.74816513,176.8806519,175.8739434,2.3052728,0.0207955,1620000000000 ,1620000000000 ,1620000000000 ,1616812351680 -1616812351706 ,112.5730115,26.89012212,58.74824905,176.8775647,175.858371,2.3186808,0.020916277,1620000000000 ,1620000000000 ,1620000000000 ,1616812351690 -1616812351717 ,112.5730115,26.89012191,58.74834442,176.874778,175.8464058,2.3335736,0.021049425,1620000000000 ,1620000000000 ,1620000000000 ,1616812351700 -1616812351727 ,112.5730115,26.8901217,58.74844742,176.8705706,175.8396435,2.3478982,0.021178461,1620000000000 ,1620000000000 ,1620000000000 ,1616812351710 -1616812351737 ,112.5730115,26.89012149,58.74855042,176.8672374,175.8379751,2.3618684,0.02130789,1620000000000 ,1620000000000 ,1620000000000 ,1616812351720 -1616812351747 ,112.5730116,26.89012127,58.74866486,176.8648878,175.8261476,2.3753393,0.02142994,1620000000000 ,1620000000000 ,1620000000000 ,1616812351730 -1616812351757 ,112.5730116,26.89012106,58.74879456,176.8600794,175.8162838,2.389099,0.021555011,1620000000000 ,1620000000000 ,1620000000000 ,1616812351740 -1616812351770 ,112.5730116,26.89012084,58.748909,176.8566916,175.7920828,2.4028022,0.021677245,1620000000000 ,1620000000000 ,1620000000000 ,1616812351750 -1616812351780 ,112.5730116,26.89012063,58.74900436,176.8541508,175.794394,2.4165478,0.021802477,1620000000000 ,1620000000000 ,1620000000000 ,1616812351760 -1616812351789 ,112.5730116,26.89012041,58.74910736,176.8516919,175.7975271,2.4294667,0.021920162,1620000000000 ,1620000000000 ,1620000000000 ,1616812351770 -1616812351798 ,112.5730116,26.89012019,58.74925232,176.8488506,175.77318,2.441582,0.022033573,1620000000000 ,1620000000000 ,1620000000000 ,1616812351780 -1616812351807 ,112.5730117,26.89011997,58.74942398,176.8462551,175.7433225,2.4541845,0.022144627,1620000000000 ,1620000000000 ,1620000000000 ,1616812351790 -1616812351818 ,112.5730117,26.89011974,58.74960327,176.8422116,175.7578369,2.4688804,0.022276485,1620000000000 ,1620000000000 ,1620000000000 ,1616812351800 -1616812351828 ,112.5730117,26.89011952,58.74975586,176.8381681,175.765969,2.482199,0.022396897,1620000000000 ,1620000000000 ,1620000000000 ,1616812351810 -1616812351838 ,112.5730117,26.8901193,58.74988556,176.8360918,175.7305883,2.4948997,0.022513692,1620000000000 ,1620000000000 ,1620000000000 ,1616812351820 -1616812351848 ,112.5730117,26.89011907,58.75003433,176.8308462,175.6854796,2.5066013,0.022623311,1620000000000 ,1620000000000 ,1620000000000 ,1616812351830 -1616812351858 ,112.5730117,26.89011884,58.75022507,176.8296167,175.634068,2.5186837,0.022732108,1620000000000 ,1620000000000 ,1620000000000 ,1616812351840 -1616812351869 ,112.5730118,26.89011862,58.75041199,176.8278136,175.6431323,2.531019,0.022842089,1620000000000 ,1620000000000 ,1620000000000 ,1616812351850 -1616812351879 ,112.5730118,26.89011839,58.75056839,176.826147,175.6859579,2.54339,0.022953131,1620000000000 ,1620000000000 ,1620000000000 ,1616812351860 -1616812351890 ,112.5730118,26.89011816,58.75072098,176.8233057,175.6945333,2.5549963,0.023060565,1620000000000 ,1620000000000 ,1620000000000 ,1616812351870 -1616812351899 ,112.5730118,26.89011793,58.75090027,176.8223221,175.6627304,2.567727,0.023173296,1620000000000 ,1620000000000 ,1620000000000 ,1616812351880 -1616812351909 ,112.5730118,26.89011769,58.75108719,176.819754,175.6746683,2.580126,0.023286179,1620000000000 ,1620000000000 ,1620000000000 ,1616812351890 -1616812351920 ,112.5730118,26.89011746,58.75124741,176.8181694,175.7140969,2.5918024,0.02339275,1620000000000 ,1620000000000 ,1620000000000 ,1616812351900 -1616812351930 ,112.5730119,26.89011723,58.75139236,176.8133336,175.7675524,2.602327,0.023488399,1620000000000 ,1620000000000 ,1620000000000 ,1616812351910 -1616812351941 ,112.5730119,26.89011699,58.75156403,176.8101097,175.7726905,2.6130672,0.023586704,1620000000000 ,1620000000000 ,1620000000000 ,1616812351920 -1616812351949 ,112.5730119,26.89011676,58.7517662,176.8080607,175.7879159,2.6240273,0.023684346,1620000000000 ,1620000000000 ,1620000000000 ,1616812351930 -1616812351959 ,112.5730119,26.89011652,58.75197601,176.8041538,175.8130273,2.635068,0.023785069,1620000000000 ,1620000000000 ,1620000000000 ,1616812351940 -1616812351969 ,112.5730119,26.89011628,58.75216675,176.8024053,175.844416,2.646165,0.023883141,1620000000000 ,1620000000000 ,1620000000000 ,1616812351950 -1616812351979 ,112.5730119,26.89011604,58.75235367,176.7983891,175.8969503,2.6576114,0.023987683,1620000000000 ,1620000000000 ,1620000000000 ,1616812351960 -1616812351992 ,112.573012,26.8901158,58.75255585,176.7947555,175.9039142,2.666745,0.02407491,1620000000000 ,1620000000000 ,1620000000000 ,1616812351970 -1616812352001 ,112.573012,26.89011556,58.75278473,176.7918868,175.903794,2.6753497,0.024153942,1620000000000 ,1620000000000 ,1620000000000 ,1616812351980 -1616812352010 ,112.573012,26.89011532,58.75302505,176.7891001,175.92377,2.6837115,0.024229927,1620000000000 ,1620000000000 ,1620000000000 ,1616812351990 -1616812352019 ,112.573012,26.89011508,58.75325775,176.7882804,175.9213863,2.693707,0.02431611,1620000000000 ,1620000000000 ,1620000000000 ,1616812352000 -1616812352030 ,112.573012,26.89011483,58.75349808,176.7865866,175.8918295,2.7028708,0.024403443,1620000000000 ,1620000000000 ,1620000000000 ,1616812352010 -1616812352040 ,112.573012,26.89011459,58.75376129,176.7851659,175.8586804,2.70978,0.024469708,1620000000000 ,1620000000000 ,1620000000000 ,1616812352020 -1616812352050 ,112.5730121,26.89011434,58.75405121,176.7844282,175.8274727,2.7178195,0.024540701,1620000000000 ,1620000000000 ,1620000000000 ,1616812352030 -1616812352062 ,112.5730121,26.8901141,58.75434494,176.7843189,175.8303025,2.7253249,0.024610858,1620000000000 ,1620000000000 ,1620000000000 ,1616812352040 -1616812352071 ,112.5730121,26.89011385,58.75464249,176.7845102,175.8397567,2.7329333,0.02467893,1620000000000 ,1620000000000 ,1620000000000 ,1616812352050 -1616812352080 ,112.5730121,26.89011361,58.75495529,176.7845648,175.8091825,2.7399871,0.02474504,1620000000000 ,1620000000000 ,1620000000000 ,1616812352060 -1616812352090 ,112.5730121,26.89011336,58.75528336,176.7859855,175.7742794,2.7462099,0.024803286,1620000000000 ,1620000000000 ,1620000000000 ,1616812352070 -1616812352100 ,112.5730122,26.89011311,58.75561523,176.7874881,175.7740349,2.7527914,0.024863429,1620000000000 ,1620000000000 ,1620000000000 ,1616812352080 -1616812352114 ,112.5730122,26.89011286,58.75593948,176.7917229,175.8007837,2.7589564,0.024919323,1620000000000 ,1620000000000 ,1620000000000 ,1616812352090 -1616812352122 ,112.5730122,26.89011261,58.75628662,176.7919961,175.8388751,2.7653532,0.024977585,1620000000000 ,1620000000000 ,1620000000000 ,1616812352100 -1616812352131 ,112.5730122,26.89011236,58.75665283,176.7966679,175.8436698,2.770929,0.025029112,1620000000000 ,1620000000000 ,1620000000000 ,1616812352110 -1616812352141 ,112.5730122,26.89011211,58.75702286,176.7991814,175.8492047,2.7781467,0.025091584,1620000000000 ,1620000000000 ,1620000000000 ,1616812352120 -1616812352151 ,112.5730122,26.89011186,58.75737381,176.8024053,175.8573308,2.7841113,0.025146973,1620000000000 ,1620000000000 ,1620000000000 ,1616812352130 -1616812352161 ,112.5730123,26.89011161,58.75770569,176.8043177,175.8825331,2.7913792,0.025209028,1620000000000 ,1620000000000 ,1620000000000 ,1616812352140 -1616812352172 ,112.5730123,26.89011136,58.75804901,176.8084432,175.888678,2.797176,0.025266721,1620000000000 ,1620000000000 ,1620000000000 ,1616812352150 -1616812352185 ,112.5730123,26.89011111,58.75839615,176.8130057,175.8829435,2.8028662,0.025317454,1620000000000 ,1620000000000 ,1620000000000 ,1616812352160 -1616812352193 ,112.5730123,26.89011085,58.75874329,176.8176229,175.8970378,2.808741,0.025371065,1620000000000 ,1620000000000 ,1620000000000 ,1616812352170 -1616812352205 ,112.5730123,26.8901106,58.75908279,176.8242619,175.9003944,2.813392,0.025414741,1620000000000 ,1620000000000 ,1620000000000 ,1616812352180 -1616812352213 ,112.5730124,26.89011034,58.75942612,176.8294801,175.9368234,2.8195891,0.025467166,1620000000000 ,1620000000000 ,1620000000000 ,1616812352190 -1616812352224 ,112.5730124,26.89011009,58.76004028,176.848714,177.1099052,2.8170915,0.025574152,1620000000000 ,1620000000000 ,1620000000000 ,1616812352200 -1616812352235 ,112.5730124,26.89010983,58.76107407,176.8564457,179.0851643,2.8217297,0.025638024,1620000000000 ,1620000000000 ,1620000000000 ,1616812352210 -1616812352244 ,112.5730124,26.89010958,58.76212311,176.8629754,179.0970289,2.8260026,0.025679093,1620000000000 ,1620000000000 ,1620000000000 ,1616812352220 -1616812352253 ,112.5730124,26.89010932,58.76320648,176.8678931,179.0831953,2.8298137,0.025713967,1620000000000 ,1620000000000 ,1620000000000 ,1616812352230 -1616812352263 ,112.5730124,26.89010906,58.76433563,176.8742862,179.0875603,2.8340292,0.025755315,1620000000000 ,1620000000000 ,1620000000000 ,1616812352240 -1616812352283 ,112.5730124,26.8901088,58.7654953,176.8811437,179.1296443,2.836147,0.025779203,1620000000000 ,1620000000000 ,1620000000000 ,1616812352250 -1616812352285 ,112.5730124,26.89010855,58.76668549,176.8881378,179.1567058,2.8386374,0.025802859,1620000000000 ,1620000000000 ,1620000000000 ,1616812352260 -1616812352297 ,112.5730124,26.89010829,58.76791,176.8970171,179.1586631,2.840909,0.025823979,1620000000000 ,1620000000000 ,1620000000000 ,1616812352270 -1616812352305 ,112.5730124,26.89010803,58.76915741,176.9030276,179.138699,2.8445203,0.025854783,1620000000000 ,1620000000000 ,1620000000000 ,1616812352280 -1616812352314 ,112.5730124,26.89010777,58.77040482,176.9111146,179.1232555,2.8471355,0.025882427,1620000000000 ,1620000000000 ,1620000000000 ,1616812352290 -1616812352323 ,112.5730124,26.89010751,58.77163315,176.9182999,179.1533396,2.8483381,0.025896469,1620000000000 ,1620000000000 ,1620000000000 ,1616812352300 -1616812352333 ,112.5730124,26.89010725,58.7728653,176.9266054,179.1744148,2.848936,0.025903206,1620000000000 ,1620000000000 ,1620000000000 ,1616812352320 -1616812352343 ,112.5730124,26.89010699,58.77411652,176.9331624,179.1692881,2.8496575,0.025910576,1620000000000 ,1620000000000 ,1620000000000 ,1616812352330 -1616812352355 ,112.5730124,26.89010647,58.776577,176.9500466,179.1298008,2.85324,0.051862705,1620000000000 ,1620000000000 ,1620000000000 ,1616812352340 -1616812352366 ,112.5730124,26.89010622,58.77772141,176.9582975,179.0957408,2.8536744,0.025944261,1620000000000 ,1620000000000 ,1620000000000 ,1616812352350 -1616812352374 ,112.5730124,26.89010596,58.77882767,176.9669855,179.0828861,2.8543673,0.025949544,1620000000000 ,1620000000000 ,1620000000000 ,1616812352360 -1616812352384 ,112.5730124,26.8901057,58.77991486,176.9778865,179.0647119,2.8537378,0.025944982,1620000000000 ,1620000000000 ,1620000000000 ,1616812352370 -1616812352394 ,112.5730124,26.89010544,58.78097153,176.9882411,179.0309761,2.8545108,0.025947307,1620000000000 ,1620000000000 ,1620000000000 ,1616812352380 -1616812352406 ,112.5730124,26.89010518,58.78197098,176.9996611,179.0255117,2.85737,0.025966848,1620000000000 ,1620000000000 ,1620000000000 ,1616812352390 -1616812352417 ,112.5730124,26.89010492,58.78290939,177.0090322,179.0359811,2.860666,0.025993908,1620000000000 ,1620000000000 ,1620000000000 ,1616812352400 -1616812352426 ,112.5730125,26.89010466,58.78378677,177.0196053,178.9977789,2.8643243,0.026024603,1620000000000 ,1620000000000 ,1620000000000 ,1616812352410 -1616812352434 ,112.5730125,26.8901044,58.78462219,177.0291402,178.9783597,2.8692665,0.02606486,1620000000000 ,1620000000000 ,1620000000000 ,1616812352420 -1616812352444 ,112.5730125,26.89010414,58.78539658,177.0392489,178.9392127,2.874934,0.026111865,1620000000000 ,1620000000000 ,1620000000000 ,1616812352430 -1616812352454 ,112.5730125,26.89010387,58.78608704,177.0490297,178.8966976,2.8802335,0.026157693,1620000000000 ,1620000000000 ,1620000000000 ,1616812352440 -1616812352465 ,112.5730125,26.89010361,58.78643036,177.0585374,177.7834343,2.8848457,0.026121861,1620000000000 ,1620000000000 ,1620000000000 ,1616812352450 -1616812352475 ,112.5730125,26.89010335,58.78642273,177.0675532,176.6539425,2.8893974,0.026090751,1620000000000 ,1620000000000 ,1620000000000 ,1616812352460 -1616812352484 ,112.5730125,26.89010309,58.78635788,177.0777712,176.6789314,2.8943205,0.026133896,1620000000000 ,1620000000000 ,1620000000000 ,1616812352470 -1616812352495 ,112.5730125,26.89010283,58.78625107,177.0863226,176.6770116,2.8990963,0.026173953,1620000000000 ,1620000000000 ,1620000000000 ,1616812352480 -1616812352505 ,112.5730125,26.89010257,58.78610611,177.0936172,176.6788604,2.9064667,0.026233544,1620000000000 ,1620000000000 ,1620000000000 ,1616812352490 -1616812352518 ,112.5730126,26.89010231,58.78592682,177.1025238,176.7000797,2.9127548,0.026291937,1620000000000 ,1620000000000 ,1620000000000 ,1616812352500 -1616812352527 ,112.5730126,26.89010204,58.78569031,177.1102009,176.7467052,2.9199393,0.026352516,1620000000000 ,1620000000000 ,1620000000000 ,1616812352510 -1616812352543 ,112.5730126,26.89010178,58.78541946,177.1169218,176.7696801,2.9271617,0.026418665,1620000000000 ,1620000000000 ,1620000000000 ,1616812352520 -1616812352551 ,112.5730126,26.89010152,58.78512573,177.1242711,176.7888079,2.9337955,0.02647525,1620000000000 ,1620000000000 ,1620000000000 ,1616812352530 -1616812352556 ,112.5730126,26.89010125,58.784832,177.1306095,176.8134496,2.943036,0.026554246,1620000000000 ,1620000000000 ,1620000000000 ,1616812352540 -1616812352565 ,112.5730126,26.89010098,58.7845192,177.1371392,176.853121,2.9509642,0.026627462,1620000000000 ,1620000000000 ,1620000000000 ,1616812352550 -1616812352578 ,112.5730126,26.89010072,58.78419495,177.1438055,176.8963346,2.9602342,0.026707414,1620000000000 ,1620000000000 ,1620000000000 ,1616812352560 -1616812352586 ,112.5730127,26.89010045,58.78386307,177.1494882,176.9196961,2.971787,0.02680536,1620000000000 ,1620000000000 ,1620000000000 ,1616812352570 -1616812352599 ,112.5730127,26.89010018,58.78352737,177.1528486,176.9448751,2.9844992,0.026917919,1620000000000 ,1620000000000 ,1620000000000 ,1616812352580 -1616812352606 ,112.5730127,26.89009991,58.78317261,177.156291,176.9541031,2.9968772,0.027031327,1620000000000 ,1620000000000 ,1620000000000 ,1616812352590 -1616812352616 ,112.5730127,26.89009964,58.78281021,177.1597335,176.9839814,3.008692,0.027136214,1620000000000 ,1620000000000 ,1620000000000 ,1616812352600 -1616812352626 ,112.5730127,26.89009937,58.78245926,177.1629846,176.9928018,3.020341,0.027243553,1620000000000 ,1620000000000 ,1620000000000 ,1616812352610 -1616812352636 ,112.5730127,26.89009909,58.78212738,177.165143,176.9927456,3.0335999,0.027358276,1620000000000 ,1620000000000 ,1620000000000 ,1616812352620 -1616812352646 ,112.5730127,26.89009882,58.7818222,177.1693504,177.0004058,3.047922,0.02748861,1620000000000 ,1620000000000 ,1620000000000 ,1616812352630 -1616812352657 ,112.5730128,26.89009854,58.78149414,177.1697328,177.0008413,3.062656,0.027618324,1620000000000 ,1620000000000 ,1620000000000 ,1616812352640 -1616812352666 ,112.5730128,26.89009827,58.78116226,177.1710442,177.0232251,3.0758135,0.027740925,1620000000000 ,1620000000000 ,1620000000000 ,1616812352650 -1616812352676 ,112.5730128,26.89009799,58.78085327,177.1726015,177.0207877,3.087109,0.027847854,1620000000000 ,1620000000000 ,1620000000000 ,1616812352660 -1616812352691 ,112.5730128,26.89009771,58.7806015,177.1740222,177.0240383,3.1012635,0.027967176,1620000000000 ,1620000000000 ,1620000000000 ,1616812352670 -1616812352700 ,112.5730128,26.89009743,58.78039169,177.1747599,177.0003836,3.1171796,0.028110728,1620000000000 ,1620000000000 ,1620000000000 ,1616812352680 -1616812352707 ,112.5730128,26.89009715,58.78018188,177.1763991,177.0121331,3.133138,0.028255221,1620000000000 ,1620000000000 ,1620000000000 ,1616812352690 -1616812352717 ,112.5730128,26.89009686,58.77997208,177.1761805,177.0326477,3.1485622,0.028395647,1620000000000 ,1620000000000 ,1620000000000 ,1616812352700 -1616812352726 ,112.5730129,26.89009658,58.77980042,177.1766177,177.0260598,3.163292,0.028530125,1620000000000 ,1620000000000 ,1620000000000 ,1616812352710 -1616812352736 ,112.5730129,26.89009629,58.7796669,177.1783116,177.0019114,3.1783786,0.028665242,1620000000000 ,1620000000000 ,1620000000000 ,1616812352720 -1616812352748 ,112.5730129,26.890096,58.77955627,177.1808797,176.9545295,3.1938589,0.02880658,1620000000000 ,1620000000000 ,1620000000000 ,1616812352730 -1616812352758 ,112.5730129,26.89009572,58.77949142,177.1821638,176.9467181,3.2091022,0.028945297,1620000000000 ,1620000000000 ,1620000000000 ,1616812352740 -1616812352766 ,112.5730129,26.89009543,58.77949524,177.1855789,176.9363813,3.2235074,0.029078925,1620000000000 ,1620000000000 ,1620000000000 ,1616812352750 -1616812352777 ,112.5730129,26.89009513,58.77956009,177.1877919,176.9257527,3.2394934,0.029220783,1620000000000 ,1620000000000 ,1620000000000 ,1616812352760 -1616812352787 ,112.573013,26.89009484,58.77968216,177.1906605,176.9218688,3.2539167,0.029355757,1620000000000 ,1620000000000 ,1620000000000 ,1616812352770 -1616812352798 ,112.573013,26.89009455,58.77984238,177.1931741,176.91958,3.2685306,0.029489065,1620000000000 ,1620000000000 ,1620000000000 ,1616812352780 -1616812352807 ,112.573013,26.89009425,58.78006363,177.1953051,176.9270509,3.2830563,0.029620441,1620000000000 ,1620000000000 ,1620000000000 ,1616812352790 -1616812352817 ,112.573013,26.89009395,58.78035355,177.1958515,176.9410862,3.2978737,0.029756565,1620000000000 ,1620000000000 ,1620000000000 ,1616812352800 -1616812352828 ,112.573013,26.89009365,58.78071213,177.1989934,176.9423396,3.3132284,0.029893807,1620000000000 ,1620000000000 ,1620000000000 ,1616812352810 -1616812352837 ,112.573013,26.89009335,58.78113174,177.2011517,176.9454131,3.3267221,0.030024877,1620000000000 ,1620000000000 ,1620000000000 ,1616812352820 -1616812352847 ,112.573013,26.89009305,58.78162766,177.2037199,176.9289615,3.3384733,0.030135702,1620000000000 ,1620000000000 ,1620000000000 ,1616812352830 -1616812352858 ,112.5730131,26.89009275,58.78222275,177.2058782,176.9043477,3.3499281,0.030240758,1620000000000 ,1620000000000 ,1620000000000 ,1616812352840 -1616812352868 ,112.5730131,26.89009245,58.78289795,177.2071896,176.9045223,3.3647034,0.030369491,1620000000000 ,1620000000000 ,1620000000000 ,1616812352850 -1616812352878 ,112.5730131,26.89009214,58.78359222,177.209867,176.9198596,3.3785853,0.030498694,1620000000000 ,1620000000000 ,1620000000000 ,1616812352860 -1616812352888 ,112.5730131,26.89009184,58.78429794,177.2114243,176.9299321,3.3908095,0.030613599,1620000000000 ,1620000000000 ,1620000000000 ,1616812352870 -1616812352898 ,112.5730131,26.89009153,58.78504181,177.2124079,176.9237865,3.401259,0.030712073,1620000000000 ,1620000000000 ,1620000000000 ,1616812352880 -1616812352910 ,112.5730131,26.89009122,58.78583527,177.2141291,176.9024689,3.4127567,0.030815948,1620000000000 ,1620000000000 ,1620000000000 ,1616812352890 -1616812352924 ,112.5730132,26.89009092,58.78665543,177.2170524,176.9170761,3.4240997,0.030918454,1620000000000 ,1620000000000 ,1620000000000 ,1616812352900 -1616812352930 ,112.5730132,26.89009061,58.7874794,177.220003,176.9615714,3.4372268,0.031034143,1620000000000 ,1620000000000 ,1620000000000 ,1616812352910 -1616812352940 ,112.5730132,26.89009029,58.78830719,177.2223526,176.9750803,3.4494958,0.031146781,1620000000000 ,1620000000000 ,1620000000000 ,1616812352920 -1616812352949 ,112.5730132,26.89008998,58.78914261,177.2245656,176.9689111,3.4612203,0.031256252,1620000000000 ,1620000000000 ,1620000000000 ,1616812352930 -1616812352959 ,112.5730132,26.89008967,58.78998184,177.2257404,176.9905293,3.4709282,0.031349427,1620000000000 ,1620000000000 ,1620000000000 ,1616812352940 -1616812352971 ,112.5730132,26.89008936,58.79080582,177.2269972,177.0166219,3.4806294,0.031434439,1620000000000 ,1620000000000 ,1620000000000 ,1616812352950 -1616812352979 ,112.5730133,26.89008904,58.7916069,177.229538,177.0667842,3.4930265,0.03154164,1620000000000 ,1620000000000 ,1620000000000 ,1616812352960 -1616812352993 ,112.5730133,26.89008872,58.79239273,177.2292648,177.1081979,3.5038998,0.031643926,1620000000000 ,1620000000000 ,1620000000000 ,1616812352970 -1616812352999 ,112.5730133,26.89008841,58.79318237,177.2314504,177.1018506,3.5134299,0.031733146,1620000000000 ,1620000000000 ,1620000000000 ,1616812352980 -1616812353009 ,112.5730133,26.89008809,58.79399872,177.2325979,177.1204511,3.5216854,0.031811053,1620000000000 ,1620000000000 ,1620000000000 ,1616812352990 -1616812353019 ,112.5730133,26.89008777,58.79482269,177.2340732,177.1435817,3.531484,0.031895537,1620000000000 ,1620000000000 ,1620000000000 ,1616812353000 -1616812353031 ,112.5730133,26.89008745,58.79562378,177.2354393,177.1789736,3.5413313,0.03198658,1620000000000 ,1620000000000 ,1620000000000 ,1616812353010 -1616812353040 ,112.5730134,26.89008713,58.79640961,177.2359037,177.1855625,3.5512626,0.032076222,1620000000000 ,1620000000000 ,1620000000000 ,1616812353020 -1616812353050 ,112.5730134,26.89008681,58.79717255,177.2370512,177.1370546,3.5598059,0.032156536,1620000000000 ,1620000000000 ,1620000000000 ,1616812353030 -1616812353060 ,112.5730134,26.89008649,58.79792023,177.2386631,177.0899799,3.5671177,0.032223832,1620000000000 ,1620000000000 ,1620000000000 ,1616812353040 -1616812353071 ,112.5730134,26.89008617,58.79861832,177.2404936,177.0760053,3.5759723,0.032300736,1620000000000 ,1620000000000 ,1620000000000 ,1616812353050 -1616812353080 ,112.5730134,26.89008584,58.79926682,177.2416411,177.0769531,3.584366,0.032377078,1620000000000 ,1620000000000 ,1620000000000 ,1616812353060 -1616812353093 ,112.5730134,26.89008552,58.79986954,177.2457392,177.0481429,3.5926545,0.032448629,1620000000000 ,1620000000000 ,1620000000000 ,1616812353070 -1616812353101 ,112.5730135,26.89008519,58.8004303,177.2478702,176.998618,3.6012084,0.032525813,1620000000000 ,1620000000000 ,1620000000000 ,1616812353080 -1616812353112 ,112.5730135,26.89008487,58.80093002,177.2509028,176.9661048,3.6100566,0.032604857,1620000000000 ,1620000000000 ,1620000000000 ,1616812353090 -1616812353120 ,112.5730135,26.89008454,58.80133438,177.2530065,176.9635662,3.6180465,0.03267659,1620000000000 ,1620000000000 ,1620000000000 ,1616812353100 -1616812353131 ,112.5730135,26.89008421,58.80164337,177.2573505,176.9579514,3.626333,0.032746986,1620000000000 ,1620000000000 ,1620000000000 ,1616812353110 -1616812353141 ,112.5730135,26.89008389,58.80189133,177.2603831,176.9275412,3.633428,0.032810824,1620000000000 ,1620000000000 ,1620000000000 ,1616812353120 -1616812353151 ,112.5730135,26.89008356,58.80212402,177.2662298,176.9081571,3.641752,0.032885732,1620000000000 ,1620000000000 ,1620000000000 ,1616812353130 -1616812353160 ,112.5730136,26.89008323,58.80234909,177.2695629,176.8963765,3.6488948,0.032951766,1620000000000 ,1620000000000 ,1620000000000 ,1616812353140 -1616812353171 ,112.5730136,26.8900829,58.80252838,177.2737703,176.9125775,3.6567929,0.033019207,1620000000000 ,1620000000000 ,1620000000000 ,1616812353150 -1616812353181 ,112.5730136,26.89008257,58.80265045,177.2770761,176.9229764,3.6637847,0.033083273,1620000000000 ,1620000000000 ,1620000000000 ,1616812353160 -1616812353198 ,112.5730136,26.89008224,58.80273056,177.2787427,176.9179433,3.6703234,0.033143243,1620000000000 ,1620000000000 ,1620000000000 ,1616812353170 -1616812353208 ,112.5730136,26.89008191,58.8028183,177.2798628,176.9066265,3.6769066,0.033200418,1620000000000 ,1620000000000 ,1620000000000 ,1616812353180 -1616812353214 ,112.5730137,26.89008157,58.80290985,177.283114,176.8887445,3.6835344,0.033260828,1620000000000 ,1620000000000 ,1620000000000 ,1616812353190 -1616812353225 ,112.5730137,26.89008124,58.80297852,177.2920206,177.2064724,3.6794813,0.033305144,1620000000000 ,1620000000000 ,1620000000000 ,1616812353200 -1616812353232 ,112.5730137,26.89008091,58.80303574,177.2970749,177.555943,3.6854277,0.033254085,1620000000000 ,1620000000000 ,1620000000000 ,1616812353210 -1616812353242 ,112.5730137,26.89008058,58.80312347,177.3016921,177.5525863,3.691083,0.033306277,1620000000000 ,1620000000000 ,1620000000000 ,1616812353220 -1616812353252 ,112.5730137,26.89008024,58.8032608,177.3051892,177.515955,3.6974413,0.033362725,1620000000000 ,1620000000000 ,1620000000000 ,1616812353230 -1616812353262 ,112.5730137,26.89007991,58.80339813,177.3087135,177.5035446,3.7038496,0.033421995,1620000000000 ,1620000000000 ,1620000000000 ,1616812353240 -1616812353273 ,112.5730137,26.89007958,58.80351257,177.3120467,177.5388456,3.7098331,0.033475993,1620000000000 ,1620000000000 ,1620000000000 ,1616812353250 -1616812353282 ,112.5730138,26.89007924,58.80362701,177.3133854,177.5747209,3.715554,0.033527388,1620000000000 ,1620000000000 ,1620000000000 ,1616812353260 -1616812353292 ,112.5730138,26.8900789,58.8038063,177.3152159,177.5461267,3.7211525,0.033581402,1620000000000 ,1620000000000 ,1620000000000 ,1616812353270 -1616812353302 ,112.5730138,26.89007857,58.80404282,177.3167458,177.5234921,3.7263522,0.033629627,1620000000000 ,1620000000000 ,1620000000000 ,1616812353280 -1616812353312 ,112.5730138,26.89007823,58.80429077,177.3216636,177.5635508,3.7325585,0.033685724,1620000000000 ,1620000000000 ,1620000000000 ,1616812353290 -1616812353323 ,112.5730138,26.8900779,58.8045311,177.3239858,177.6126475,3.7376413,0.033731683,1620000000000 ,1620000000000 ,1620000000000 ,1616812353300 -1616812353332 ,112.5730138,26.89007756,58.80478668,177.325024,177.6325048,3.7431011,0.033781511,1620000000000 ,1620000000000 ,1620000000000 ,1616812353310 -1616812353344 ,112.5730138,26.89007722,58.80508804,177.3276195,177.6037799,3.7485209,0.033831322,1620000000000 ,1620000000000 ,1620000000000 ,1616812353320 -1616812353352 ,112.5730139,26.89007688,58.80540466,177.3295046,177.6042328,3.7555206,0.033890714,1620000000000 ,1620000000000 ,1620000000000 ,1616812353330 -1616812353362 ,112.5730139,26.89007654,58.80573273,177.3320181,177.6589774,3.7615373,0.033949514,1620000000000 ,1620000000000 ,1620000000000 ,1616812353340 -1616812353374 ,112.5730139,26.8900762,58.80606842,177.3342038,177.6920361,3.766484,0.033997072,1620000000000 ,1620000000000 ,1620000000000 ,1616812353350 -1616812353384 ,112.5730139,26.89007586,58.80642319,177.3366354,177.6786578,3.7711267,0.034040246,1620000000000 ,1620000000000 ,1620000000000 ,1616812353370 -1616812353396 ,112.5730139,26.89007552,58.80679703,177.3408974,177.6746876,3.777035,0.034089581,1620000000000 ,1620000000000 ,1620000000000 ,1616812353380 -1616812353405 ,112.5730139,26.89007518,58.8071785,177.3445857,177.6923785,3.7832885,0.034146711,1620000000000 ,1620000000000 ,1620000000000 ,1616812353380 -1616812353414 ,112.5730139,26.89007484,58.80753326,177.3462249,177.7084325,3.7903655,0.034208385,1620000000000 ,1620000000000 ,1620000000000 ,1616812353400 -1616812353425 ,112.5730139,26.8900745,58.80784225,177.3515252,177.7182837,3.7961078,0.03426041,1620000000000 ,1620000000000 ,1620000000000 ,1616812353400 -1616812353433 ,112.573014,26.89007381,58.80843353,177.3584646,177.7290113,3.8068857,0.068676917,1620000000000 ,1620000000000 ,1620000000000 ,1616812353420 -1616812353447 ,112.573014,26.89007347,58.80876541,177.3625354,177.7089553,3.8113644,0.034404061,1620000000000 ,1620000000000 ,1620000000000 ,1616812353430 -1616812353458 ,112.573014,26.89007312,58.80908585,177.3677264,177.7158054,3.8174376,0.03445352,1620000000000 ,1620000000000 ,1620000000000 ,1616812353440 -1616812353466 ,112.573014,26.89007278,58.80940247,177.372125,177.4360973,3.8218033,0.034511226,1620000000000 ,1620000000000 ,1620000000000 ,1616812353450 -1616812353476 ,112.573014,26.89007243,58.80974579,177.3745292,177.1253945,3.8264575,0.034561395,1620000000000 ,1620000000000 ,1620000000000 ,1616812353460 -1616812353486 ,112.5730141,26.89007209,58.81010056,177.3803486,177.1166618,3.8331375,0.034618599,1620000000000 ,1620000000000 ,1620000000000 ,1616812353470 -1616812353497 ,112.5730141,26.89007174,58.81043625,177.3852936,177.1049301,3.8409424,0.034687262,1620000000000 ,1620000000000 ,1620000000000 ,1616812353480 -1616812353505 ,112.5730141,26.89007174,58.81043625,177.3852936,-400,3.8409424,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812353490 -1616812353514 ,112.5730141,26.89007105,58.81106949,177.3979431,177.1043842,3.8504636,0.069526698,1620000000000 ,1620000000000 ,1620000000000 ,1616812353500 -1616812353525 ,112.5730141,26.8900707,58.81140518,177.4046094,177.0998655,3.8554242,0.034825596,1620000000000 ,1620000000000 ,1620000000000 ,1616812353510 -1616812353534 ,112.5730141,26.89007035,58.81172562,177.4086529,177.1112866,3.8620043,0.03487846,1620000000000 ,1620000000000 ,1620000000000 ,1616812353520 -1616812353546 ,112.5730142,26.89007,58.81202316,177.4162207,177.1164624,3.869516,0.034944205,1620000000000 ,1620000000000 ,1620000000000 ,1616812353530 -1616812353554 ,112.5730142,26.89006965,58.81227112,177.4216849,177.1267974,3.8767824,0.035009125,1620000000000 ,1620000000000 ,1620000000000 ,1616812353540 -1616812353568 ,112.5730142,26.8900693,58.81249237,177.4277228,177.1251501,3.8840766,0.035075755,1620000000000 ,1620000000000 ,1620000000000 ,1616812353550 -1616812353575 ,112.5730142,26.89006895,58.81268692,177.4329957,177.1209647,3.889723,0.035128756,1620000000000 ,1620000000000 ,1620000000000 ,1616812353560 -1616812353585 ,112.5730142,26.8900686,58.81287003,177.4387057,177.1411452,3.8974047,0.035193085,1620000000000 ,1620000000000 ,1620000000000 ,1616812353570 -1616812353594 ,112.5730142,26.89006825,58.81301117,177.4446616,177.1410557,3.905299,0.035261988,1620000000000 ,1620000000000 ,1620000000000 ,1616812353580 -1616812353607 ,112.5730143,26.89006789,58.8131218,177.4480494,177.1514963,3.9120445,0.035324868,1620000000000 ,1620000000000 ,1620000000000 ,1616812353590 -1616812353617 ,112.5730143,26.89006754,58.81322479,177.4539234,177.1629507,3.9181013,0.0353821,1620000000000 ,1620000000000 ,1620000000000 ,1616812353600 -1616812353626 ,112.5730143,26.89006719,58.81332016,177.4597154,177.1643821,3.9238505,0.035432838,1620000000000 ,1620000000000 ,1620000000000 ,1616812353610 -1616812353635 ,112.5730143,26.89006683,58.8134079,177.4660265,177.1772703,3.9315557,0.035496894,1620000000000 ,1620000000000 ,1620000000000 ,1616812353620 -1616812353645 ,112.5730143,26.89006648,58.81350708,177.4731572,177.1984877,3.937658,0.035557568,1620000000000 ,1620000000000 ,1620000000000 ,1616812353630 -1616812353656 ,112.5730144,26.89006612,58.81361008,177.4779383,177.1949737,3.9443312,0.03561606,1620000000000 ,1620000000000 ,1620000000000 ,1616812353640 -1616812353666 ,112.5730144,26.89006576,58.81373215,177.4856974,177.2258166,3.9514647,0.035679053,1620000000000 ,1620000000000 ,1620000000000 ,1616812353650 -1616812353676 ,112.5730144,26.89006541,58.81385803,177.4919812,177.2471823,3.958439,0.03574526,1620000000000 ,1620000000000 ,1620000000000 ,1616812353660 -1616812353685 ,112.5730144,26.89006505,58.81396866,177.4968169,177.2361735,3.965204,0.035802953,1620000000000 ,1620000000000 ,1620000000000 ,1616812353670 -1616812353696 ,112.5730144,26.89006469,58.81407166,177.5013522,177.2429434,3.9726615,0.035868996,1620000000000 ,1620000000000 ,1620000000000 ,1616812353680 -1616812353706 ,112.5730144,26.89006469,58.81407166,177.5013522,-400,3.9726615,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812353680 -1616812353717 ,112.5730145,26.89006397,58.81428528,177.509685,177.2430674,3.985199,0.071912104,1620000000000 ,1620000000000 ,1620000000000 ,1616812353700 -1616812353727 ,112.5730145,26.89006361,58.81438828,177.514712,177.2613863,3.9934871,0.03605329,1620000000000 ,1620000000000 ,1620000000000 ,1616812353710 -1616812353736 ,112.5730145,26.89006325,58.81446075,177.5181545,177.2509168,4.0026526,0.03613671,1620000000000 ,1620000000000 ,1620000000000 ,1616812353720 -1616812353746 ,112.5730145,26.89006289,58.81450653,177.5223619,177.2461195,4.009796,0.036202974,1620000000000 ,1620000000000 ,1620000000000 ,1616812353730 -1616812353756 ,112.5730145,26.89006253,58.81454849,177.5261868,177.2295142,4.015628,0.036260931,1620000000000 ,1620000000000 ,1620000000000 ,1616812353740 -1616812353766 ,112.5730145,26.89006217,58.81458664,177.5313777,177.2073257,4.0208464,0.036307603,1620000000000 ,1620000000000 ,1620000000000 ,1616812353750 -1616812353776 ,112.5730146,26.8900618,58.81465149,177.5363774,177.2265718,4.02661,0.036360029,1620000000000 ,1620000000000 ,1620000000000 ,1616812353760 -1616812353787 ,112.5730146,26.89006144,58.81474686,177.5414317,177.2233576,4.033291,0.03641959,1620000000000 ,1620000000000 ,1620000000000 ,1616812353770 -1616812353796 ,112.5730146,26.89006107,58.81489182,177.5470871,177.2180415,4.040254,0.036480285,1620000000000 ,1620000000000 ,1620000000000 ,1616812353780 -1616812353806 ,112.5730146,26.89006107,58.81489182,177.5470871,-400,4.040254,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812353780 -1616812353817 ,112.5730146,26.89006034,58.81532288,177.554573,177.2317049,4.0539575,0.07315936,1620000000000 ,1620000000000 ,1620000000000 ,1616812353800 -1616812353827 ,112.5730146,26.89005998,58.81560135,177.5593815,177.2279478,4.0613723,0.036677163,1620000000000 ,1620000000000 ,1620000000000 ,1616812353810 -1616812353837 ,112.5730147,26.89005961,58.8158989,177.5638894,177.2037334,4.069787,0.0367509,1620000000000 ,1620000000000 ,1620000000000 ,1616812353820 -1616812353847 ,112.5730147,26.89005924,58.81620789,177.5666488,177.2164454,4.0784125,0.036830258,1620000000000 ,1620000000000 ,1620000000000 ,1616812353830 -1616812353857 ,112.5730147,26.89005887,58.81652451,177.56837,177.2377578,4.0851874,0.036895843,1620000000000 ,1620000000000 ,1620000000000 ,1616812353840 -1616812353869 ,112.5730147,26.8900585,58.81684113,177.5712933,177.2309667,4.0933447,0.036964507,1620000000000 ,1620000000000 ,1620000000000 ,1616812353850 -1616812353877 ,112.5730147,26.89005813,58.817173,177.576375,177.22452,4.101124,0.037036782,1620000000000 ,1620000000000 ,1620000000000 ,1616812353860 -1616812353887 ,112.5730148,26.89005776,58.81752777,177.5802819,177.1988845,4.1093574,0.037113141,1620000000000 ,1620000000000 ,1620000000000 ,1616812353870 -1616812353898 ,112.5730148,26.89005739,58.81789017,177.5830139,177.1973507,4.1167035,0.037180415,1620000000000 ,1620000000000 ,1620000000000 ,1616812353880 -1616812353909 ,112.5730148,26.89005702,58.81822205,177.5867296,177.2102388,4.12494,0.037253181,1620000000000 ,1620000000000 ,1620000000000 ,1616812353890 -1616812353918 ,112.5730148,26.89005665,58.81852341,177.591538,177.2423174,4.131582,0.037314197,1620000000000 ,1620000000000 ,1620000000000 ,1616812353900 -1616812353927 ,112.5730148,26.89005627,58.81884003,177.5933412,177.2437672,4.1379066,0.037372938,1620000000000 ,1620000000000 ,1620000000000 ,1616812353910 -1616812353937 ,112.5730148,26.8900559,58.81919861,177.5955542,177.2282065,4.1437755,0.037427535,1620000000000 ,1620000000000 ,1620000000000 ,1616812353920 -1616812353948 ,112.5730149,26.89005553,58.81958008,177.5991878,177.2316745,4.1505947,0.037487685,1620000000000 ,1620000000000 ,1620000000000 ,1616812353930 -1616812353959 ,112.5730149,26.89005515,58.81993103,177.6037231,177.2562815,4.158632,0.037555736,1620000000000 ,1620000000000 ,1620000000000 ,1616812353940 -1616812353970 ,112.5730149,26.89005477,58.82023239,177.6070289,177.3022151,4.1679754,0.037637189,1620000000000 ,1620000000000 ,1620000000000 ,1616812353950 -1616812353978 ,112.5730149,26.8900544,58.82052231,177.6100068,177.3112881,4.1764116,0.037713147,1620000000000 ,1620000000000 ,1620000000000 ,1616812353960 -1616812353988 ,112.5730149,26.89005402,58.82081604,177.6130941,177.3150533,4.1841006,0.037786593,1620000000000 ,1620000000000 ,1620000000000 ,1616812353970 -1616812354003 ,112.573015,26.89005364,58.82110596,177.6159354,177.321765,4.191862,0.03785187,1620000000000 ,1620000000000 ,1620000000000 ,1616812353980 -1616812354009 ,112.573015,26.89005326,58.82135773,177.6204161,177.3429874,4.2014422,0.037936057,1620000000000 ,1620000000000 ,1620000000000 ,1616812353990 -1616812354019 ,112.573015,26.89005288,58.82157898,177.6257709,177.3601135,4.210873,0.03801979,1620000000000 ,1620000000000 ,1620000000000 ,1616812354000 -1616812354031 ,112.573015,26.8900525,58.82178497,177.6300603,177.3472296,4.2212167,0.038112435,1620000000000 ,1620000000000 ,1620000000000 ,1616812354010 -1616812354038 ,112.573015,26.89005212,58.82197189,177.6350053,177.3500567,4.231077,0.038199079,1620000000000 ,1620000000000 ,1620000000000 ,1616812354020 -1616812354049 ,112.573015,26.89005174,58.82212448,177.6424639,177.3620266,4.240889,0.038288641,1620000000000 ,1620000000000 ,1620000000000 ,1616812354030 -1616812354061 ,112.5730151,26.89005136,58.82223129,177.6478734,177.384902,4.25019,0.038369927,1620000000000 ,1620000000000 ,1620000000000 ,1616812354040 -1616812354070 ,112.5730151,26.89005097,58.82234192,177.6530097,177.3888312,4.2594624,0.038454108,1620000000000 ,1620000000000 ,1620000000000 ,1616812354050 -1616812354079 ,112.5730151,26.89005059,58.82247162,177.6589383,177.3743221,4.2703514,0.038549522,1620000000000 ,1620000000000 ,1620000000000 ,1616812354060 -1616812354089 ,112.5730151,26.8900502,58.82260513,177.6659051,177.3557769,4.28075,0.038647508,1620000000000 ,1620000000000 ,1620000000000 ,1616812354070 -1616812354099 ,112.5730151,26.89004981,58.82270432,177.6724621,177.3534219,4.29001,0.038730954,1620000000000 ,1620000000000 ,1620000000000 ,1616812354080 -1616812354112 ,112.5730151,26.89004943,58.82278824,177.6829533,177.3934947,4.2985373,0.038808945,1620000000000 ,1620000000000 ,1620000000000 ,1616812354090 -1616812354120 ,112.5730152,26.89004904,58.82288742,177.6914773,177.3971098,4.305657,0.038875107,1620000000000 ,1620000000000 ,1620000000000 ,1616812354100 -1616812354131 ,112.5730152,26.89004865,58.82302094,177.6995096,177.3863475,4.3143277,0.038952668,1620000000000 ,1620000000000 ,1620000000000 ,1616812354110 -1616812354143 ,112.5730152,26.89004826,58.82317734,177.7089626,177.3808325,4.322407,0.039028247,1620000000000 ,1620000000000 ,1620000000000 ,1616812354120 -1616812354154 ,112.5730152,26.89004787,58.82333374,177.719727,177.3949282,4.3307157,0.039100455,1620000000000 ,1620000000000 ,1620000000000 ,1616812354130 -1616812354162 ,112.5730152,26.89004748,58.82351685,177.7314203,177.4094396,4.337309,0.03916678,1620000000000 ,1620000000000 ,1620000000000 ,1616812354140 -1616812354172 ,112.5730153,26.89004708,58.82372665,177.7444796,177.405324,4.342361,0.039217548,1620000000000 ,1620000000000 ,1620000000000 ,1616812354150 -1616812354182 ,112.5730153,26.89004669,58.82397461,177.7565007,177.4044405,4.346731,0.039257493,1620000000000 ,1620000000000 ,1620000000000 ,1616812354160 -1616812354193 ,112.5730153,26.8900463,58.82427597,177.7674017,177.4220847,4.350737,0.0392976,1620000000000 ,1620000000000 ,1620000000000 ,1616812354170 -1616812354203 ,112.5730153,26.89004591,58.82463074,177.7801605,177.4159848,4.3556905,0.03934012,1620000000000 ,1620000000000 ,1620000000000 ,1616812354180 -1616812354212 ,112.5730153,26.89004551,58.82501984,177.792209,177.4126242,4.359723,0.039381198,1620000000000 ,1620000000000 ,1620000000000 ,1616812354190 -1616812354221 ,112.5730153,26.89004512,58.82534409,177.8175353,178.2466232,4.3839083,0.039768619,1620000000000 ,1620000000000 ,1620000000000 ,1616812354200 -1616812354232 ,112.5730153,26.89004471,58.82548141,177.831141,179.4275743,4.388037,0.04034225,1620000000000 ,1620000000000 ,1620000000000 ,1616812354210 -1616812354243 ,112.5730153,26.89004431,58.82564926,177.8467958,179.4443357,4.395264,0.040402527,1620000000000 ,1620000000000 ,1620000000000 ,1616812354220 -1616812354252 ,112.5730153,26.8900439,58.82582855,177.8617403,179.4195513,4.4016685,0.040464715,1620000000000 ,1620000000000 ,1620000000000 ,1616812354230 -1616812354263 ,112.5730154,26.8900435,58.8259964,177.8763842,179.4209828,4.4088607,0.040525103,1620000000000 ,1620000000000 ,1620000000000 ,1616812354240 -1616812354272 ,112.5730154,26.89004309,58.82614136,177.8910555,179.4582533,4.413679,0.04057458,1620000000000 ,1620000000000 ,1620000000000 ,1616812354250 -1616812354281 ,112.5730154,26.89004269,58.82623672,177.9054535,179.4821326,4.419912,0.040627426,1620000000000 ,1620000000000 ,1620000000000 ,1616812354260 -1616812354292 ,112.5730154,26.89004228,58.82628632,177.9193051,179.5213036,4.426421,0.040683642,1620000000000 ,1620000000000 ,1620000000000 ,1616812354270 -1616812354304 ,112.5730154,26.89004187,58.82628632,177.9344135,179.5307222,4.435167,0.040755292,1620000000000 ,1620000000000 ,1620000000000 ,1616812354280 -1616812354313 ,112.5730154,26.89004146,58.82624817,177.9483744,179.5321029,4.4444075,0.04083988,1620000000000 ,1620000000000 ,1620000000000 ,1616812354290 -1616812354324 ,112.5730154,26.89004105,58.82616425,177.9630183,179.5525356,4.4540076,0.040923651,1620000000000 ,1620000000000 ,1620000000000 ,1616812354300 -1616812354332 ,112.5730154,26.89004064,58.82601929,177.9779628,179.5787979,4.4614143,0.040994468,1620000000000 ,1620000000000 ,1620000000000 ,1616812354310 -1616812354342 ,112.5730154,26.89004023,58.82583618,177.9947104,179.6103775,4.4686933,0.041058684,1620000000000 ,1620000000000 ,1620000000000 ,1616812354320 -1616812354352 ,112.5730154,26.89003982,58.82565308,178.0076878,179.6330666,4.4767456,0.041130391,1620000000000 ,1620000000000 ,1620000000000 ,1616812354330 -1616812354363 ,112.5730154,26.89003941,58.82545853,178.0214574,179.6360572,4.4862466,0.04121242,1620000000000 ,1620000000000 ,1620000000000 ,1616812354340 -1616812354373 ,112.5730154,26.890039,58.82521439,178.0366478,179.6458802,4.4944105,0.041288505,1620000000000 ,1620000000000 ,1620000000000 ,1616812354350 -1616812354383 ,112.5730154,26.89003858,58.82487488,178.0514283,179.683036,4.5008626,0.041348372,1620000000000 ,1620000000000 ,1620000000000 ,1616812354360 -1616812354394 ,112.5730154,26.89003817,58.82449722,178.0651706,179.713828,4.5076,0.041407785,1620000000000 ,1620000000000 ,1620000000000 ,1616812354380 -1616812354406 ,112.5730154,26.89003776,58.82413101,178.0770005,179.7229167,4.5145874,0.041469505,1620000000000 ,1620000000000 ,1620000000000 ,1616812354380 -1616812354414 ,112.5730154,26.89003734,58.82378006,178.0900599,179.7290671,4.521833,0.041535463,1620000000000 ,1620000000000 ,1620000000000 ,1616812354400 -1616812354424 ,112.5730154,26.89003692,58.82341003,178.1032285,179.7212304,4.5289626,0.041601273,1620000000000 ,1620000000000 ,1620000000000 ,1616812354410 -1616812354433 ,112.5730154,26.89003651,58.82299805,178.1175719,179.7298641,4.5353365,0.0416568,1620000000000 ,1620000000000 ,1620000000000 ,1616812354420 -1616812354443 ,112.5730154,26.89003567,58.822155,178.1446741,179.7466263,4.5446935,0.083457675,1620000000000 ,1620000000000 ,1620000000000 ,1616812354430 -1616812354453 ,112.5730154,26.89003526,58.82176208,178.159919,179.725213,4.547549,0.04177634,1620000000000 ,1620000000000 ,1620000000000 ,1616812354440 -1616812354464 ,112.5730154,26.89003484,58.82152176,178.173115,178.9618339,4.5513535,0.04144777,1620000000000 ,1620000000000 ,1620000000000 ,1616812354450 -1616812354475 ,112.5730154,26.89003443,58.82144547,178.1867753,178.1828402,4.5550485,0.041127448,1620000000000 ,1620000000000 ,1620000000000 ,1616812354460 -1616812354487 ,112.5730154,26.89003402,58.82142639,178.2022935,178.1627719,4.5589833,0.041165408,1620000000000 ,1620000000000 ,1620000000000 ,1616812354470 -1616812354497 ,112.5730155,26.89003361,58.82145691,178.2174565,178.1634111,4.562369,0.041199594,1620000000000 ,1620000000000 ,1620000000000 ,1616812354480 -1616812354505 ,112.5730155,26.89003361,58.82145691,178.2174565,-400,4.562369,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812354490 -1616812354515 ,112.5730155,26.89003278,58.82172394,178.246799,178.1691839,4.5682187,0.082487707,1620000000000 ,1620000000000 ,1620000000000 ,1616812354500 -1616812354525 ,112.5730155,26.89003237,58.82197571,178.2594486,178.191735,4.5711656,0.041286676,1620000000000 ,1620000000000 ,1620000000000 ,1616812354510 -1616812354535 ,112.5730155,26.89003196,58.82229996,178.2732455,178.2296052,4.5747333,0.041319494,1620000000000 ,1620000000000 ,1620000000000 ,1616812354520 -1616812354546 ,112.5730155,26.89003154,58.82267761,178.2882993,178.2617591,4.579232,0.041360231,1620000000000 ,1620000000000 ,1620000000000 ,1616812354530 -1616812354555 ,112.5730155,26.89003113,58.82309341,178.3037355,178.2802593,4.583261,0.04139756,1620000000000 ,1620000000000 ,1620000000000 ,1616812354540 -1616812354565 ,112.5730155,26.89003072,58.82357025,178.3189805,178.2985149,4.587729,0.041442097,1620000000000 ,1620000000000 ,1620000000000 ,1616812354550 -1616812354577 ,112.5730156,26.8900303,58.82412338,178.3326682,178.324389,4.5918016,0.041480666,1620000000000 ,1620000000000 ,1620000000000 ,1616812354560 -1616812354589 ,112.5730156,26.89002989,58.82471085,178.3475307,178.3671498,4.597568,0.041528669,1620000000000 ,1620000000000 ,1620000000000 ,1616812354570 -1616812354596 ,112.5730156,26.89002947,58.82526398,178.3613823,178.4204603,4.603206,0.041581245,1620000000000 ,1620000000000 ,1620000000000 ,1616812354580 -1616812354605 ,112.5730156,26.89002905,58.82577515,178.3734034,178.4522638,4.6077085,0.041624682,1620000000000 ,1620000000000 ,1620000000000 ,1616812354590 -1616812354615 ,112.5730156,26.89002864,58.82629013,178.3851787,178.4499359,4.612369,0.041665206,1620000000000 ,1620000000000 ,1620000000000 ,1616812354600 -1616812354625 ,112.5730156,26.89002822,58.8268013,178.3971998,178.4612761,4.618548,0.0417159,1620000000000 ,1620000000000 ,1620000000000 ,1616812354610 -1616812354636 ,112.5730156,26.8900278,58.82727432,178.4108602,178.5010982,4.624284,0.041767853,1620000000000 ,1620000000000 ,1620000000000 ,1616812354620 -1616812354645 ,112.5730156,26.89002738,58.8276825,178.4246572,178.551717,4.6290183,0.041811865,1620000000000 ,1620000000000 ,1620000000000 ,1616812354630 -1616812354655 ,112.5730156,26.89002697,58.82808304,178.4370881,178.5795552,4.6320777,0.041844369,1620000000000 ,1620000000000 ,1620000000000 ,1616812354640 -1616812354665 ,112.5730157,26.89002655,58.82849121,178.4497103,178.5644273,4.6361294,0.041875958,1620000000000 ,1620000000000 ,1620000000000 ,1616812354650 -1616812354676 ,112.5730157,26.89002613,58.82886505,178.4618134,178.5617482,4.643254,0.041931872,1620000000000 ,1620000000000 ,1620000000000 ,1616812354660 -1616812354685 ,112.5730157,26.89002571,58.82915497,178.4760475,178.5826325,4.648589,0.04198438,1620000000000 ,1620000000000 ,1620000000000 ,1616812354670 -1616812354695 ,112.5730157,26.89002529,58.8293457,178.4899265,178.6153724,4.6525984,0.042019598,1620000000000 ,1620000000000 ,1620000000000 ,1616812354680 -1616812354714 ,112.5730157,26.89002487,58.82951355,178.5006635,178.6322344,4.656881,0.04205523,1620000000000 ,1620000000000 ,1620000000000 ,1616812354690 -1616812354718 ,112.5730157,26.89002445,58.82970047,178.5146517,178.6093478,4.6613154,0.042096002,1620000000000 ,1620000000000 ,1620000000000 ,1616812354700 -1616812354726 ,112.5730157,26.89002403,58.82987213,178.5276291,178.6051414,4.6683116,0.042150931,1620000000000 ,1620000000000 ,1620000000000 ,1616812354710 -1616812354735 ,112.5730157,26.8900236,58.82996368,178.5404425,178.6257898,4.673365,0.042201133,1620000000000 ,1620000000000 ,1620000000000 ,1616812354720 -1616812354746 ,112.5730157,26.89002318,58.82997513,178.5547586,178.6538132,4.6769204,0.042232676,1620000000000 ,1620000000000 ,1620000000000 ,1616812354730 -1616812354756 ,112.5730157,26.89002276,58.82995224,178.5681458,178.6756722,4.682355,0.042276264,1620000000000 ,1620000000000 ,1620000000000 ,1616812354740 -1616812354766 ,112.5730158,26.89002234,58.82989883,178.5806587,178.6741718,4.6878185,0.042324304,1620000000000 ,1620000000000 ,1620000000000 ,1616812354750 -1616812354781 ,112.5730158,26.89002191,58.82980347,178.5948655,178.6873932,4.6948614,0.042381552,1620000000000 ,1620000000000 ,1620000000000 ,1616812354760 -1616812354786 ,112.5730158,26.89002149,58.82966614,178.6094274,178.722407,4.700826,0.042437933,1620000000000 ,1620000000000 ,1620000000000 ,1616812354770 -1616812354796 ,112.5730158,26.89002106,58.82951355,178.6209295,178.7452441,4.705005,0.042479075,1620000000000 ,1620000000000 ,1620000000000 ,1616812354780 -1616812354806 ,112.5730158,26.89002064,58.82937622,178.6331419,178.7756095,4.7097483,0.042519533,1620000000000 ,1620000000000 ,1620000000000 ,1616812354790 -1616812354819 ,112.5730158,26.89002021,58.82922745,178.6432232,178.8006848,4.715497,0.042568462,1620000000000 ,1620000000000 ,1620000000000 ,1616812354800 -1616812354828 ,112.5730158,26.89001979,58.82904816,178.6551077,178.8245513,4.721133,0.042617025,1620000000000 ,1620000000000 ,1620000000000 ,1616812354810 -1616812354836 ,112.5730158,26.89001936,58.82884598,178.6658994,178.8499073,4.7271657,0.042671667,1620000000000 ,1620000000000 ,1620000000000 ,1616812354820 -1616812354847 ,112.5730158,26.89001893,58.82863998,178.6758169,178.8633034,4.73183,0.042716526,1620000000000 ,1620000000000 ,1620000000000 ,1616812354830 -1616812354856 ,112.5730158,26.89001851,58.82845306,178.6847781,178.8800678,4.7370224,0.042760834,1620000000000 ,1620000000000 ,1620000000000 ,1616812354840 -1616812354867 ,112.5730158,26.89001808,58.82827759,178.695078,178.9065793,4.7435856,0.042818516,1620000000000 ,1620000000000 ,1620000000000 ,1616812354850 -1616812354877 ,112.5730159,26.89001765,58.82810974,178.7046403,178.9171128,4.749313,0.042873136,1620000000000 ,1620000000000 ,1620000000000 ,1616812354860 -1616812354887 ,112.5730159,26.89001765,58.82810974,178.7128092,-400,4.753896,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812354870 -1616812354897 ,112.5730159,26.89001679,58.82785416,178.720459,178.9246484,4.7582583,0.08587616,1620000000000 ,1620000000000 ,1620000000000 ,1616812354880 -1616812354908 ,112.5730159,26.89001636,58.82775497,178.7286552,178.9307668,4.7638826,0.043003304,1620000000000 ,1620000000000 ,1620000000000 ,1616812354890 -1616812354918 ,112.5730159,26.89001593,58.82764053,178.7369061,178.9373609,4.7704477,0.043059711,1620000000000 ,1620000000000 ,1620000000000 ,1616812354900 -1616812354930 ,112.5730159,26.8900155,58.82752609,178.7441734,178.9368089,4.7767167,0.043121524,1620000000000 ,1620000000000 ,1620000000000 ,1616812354910 -1616812354938 ,112.5730159,26.89001507,58.82744598,178.7504299,178.9460098,4.7819285,0.043166953,1620000000000 ,1620000000000 ,1620000000000 ,1616812354920 -1616812354947 ,112.5730159,26.89001463,58.82739639,178.7553203,178.9523302,4.78696,0.043215005,1620000000000 ,1620000000000 ,1620000000000 ,1616812354930 -1616812354957 ,112.5730159,26.8900142,58.82735443,178.7618226,178.9788445,4.791926,0.043260316,1620000000000 ,1620000000000 ,1620000000000 ,1616812354940 -1616812354967 ,112.5730159,26.89001377,58.82730103,178.7670682,179.001093,4.799084,0.043318762,1620000000000 ,1620000000000 ,1620000000000 ,1616812354950 -1616812354979 ,112.5730159,26.89001334,58.82726288,178.7719859,179.0028956,4.8051786,0.043379346,1620000000000 ,1620000000000 ,1620000000000 ,1616812354960 -1616812354988 ,112.5730159,26.8900129,58.82725525,178.7773135,178.9846997,4.811418,0.043434705,1620000000000 ,1620000000000 ,1620000000000 ,1616812354970 -1616812354997 ,112.5730159,26.89001247,58.82724762,178.7809472,178.9939491,4.8176775,0.043489928,1620000000000 ,1620000000000 ,1620000000000 ,1616812354980 -1616812355008 ,112.573016,26.89001203,58.82722473,178.7864659,179.0185027,4.824314,0.04354732,1620000000000 ,1620000000000 ,1620000000000 ,1616812354990 -1616812355018 ,112.573016,26.89001159,58.82720184,178.7916296,179.0328086,4.8312974,0.043613424,1620000000000 ,1620000000000 ,1620000000000 ,1616812355000 -1616812355028 ,112.573016,26.89001116,58.8271904,178.7947168,179.0209081,4.836344,0.043661867,1620000000000 ,1620000000000 ,1620000000000 ,1616812355010 -1616812355038 ,112.573016,26.89001072,58.82717896,178.7976948,179.0086783,4.842269,0.043712944,1620000000000 ,1620000000000 ,1620000000000 ,1616812355020 -1616812355049 ,112.573016,26.89001028,58.82719421,178.7997985,179.0238695,4.8475537,0.043761448,1620000000000 ,1620000000000 ,1620000000000 ,1616812355030 -1616812355059 ,112.573016,26.89000985,58.82723618,178.8031043,179.032437,4.854037,0.043819773,1620000000000 ,1620000000000 ,1620000000000 ,1616812355040 -1616812355069 ,112.573016,26.89000941,58.82729721,178.8052899,179.0319759,4.860089,0.043877885,1620000000000 ,1620000000000 ,1620000000000 ,1616812355050 -1616812355078 ,112.573016,26.89000897,58.82738495,178.8090329,179.0284615,4.8656073,0.043929129,1620000000000 ,1620000000000 ,1620000000000 ,1616812355060 -1616812355088 ,112.573016,26.89000853,58.82751846,178.8114098,179.033836,4.870538,0.043973563,1620000000000 ,1620000000000 ,1620000000000 ,1616812355070 -1616812355100 ,112.573016,26.89000809,58.82770538,178.8129671,179.0394693,4.877117,0.044030354,1620000000000 ,1620000000000 ,1620000000000 ,1616812355080 -1616812355111 ,112.573016,26.89000765,58.82788849,178.8166007,179.0404965,4.8830557,0.04408903,1620000000000 ,1620000000000 ,1620000000000 ,1616812355090 -1616812355119 ,112.573016,26.89000721,58.82806015,178.8189503,179.0454002,4.8893137,0.044141905,1620000000000 ,1620000000000 ,1620000000000 ,1616812355100 -1616812355129 ,112.573016,26.89000676,58.82827377,178.8202071,179.0566309,4.893741,0.044187629,1620000000000 ,1620000000000 ,1620000000000 ,1616812355110 -1616812355139 ,112.573016,26.89000632,58.8285408,178.8242779,179.0434582,4.901074,0.044248425,1620000000000 ,1620000000000 ,1620000000000 ,1616812355120 -1616812355150 ,112.5730161,26.89000588,58.82880783,178.828977,179.0280322,4.9075203,0.044310254,1620000000000 ,1620000000000 ,1620000000000 ,1616812355130 -1616812355162 ,112.5730161,26.89000543,58.82904053,178.8340587,179.0328201,4.9130616,0.044360366,1620000000000 ,1620000000000 ,1620000000000 ,1616812355140 -1616812355170 ,112.5730161,26.89000499,58.82928848,178.8374192,179.0332779,4.918492,0.044411272,1620000000000 ,1620000000000 ,1620000000000 ,1616812355150 -1616812355180 ,112.5730161,26.89000455,58.82958603,178.8415992,179.022524,4.9236994,0.044458935,1620000000000 ,1620000000000 ,1620000000000 ,1616812355160 -1616812355191 ,112.5730161,26.8900041,58.82988739,178.8452602,179.0051248,4.9307127,0.044517122,1620000000000 ,1620000000000 ,1620000000000 ,1616812355170 -1616812355200 ,112.5730161,26.89000366,58.83017731,178.8512981,179.0012188,4.9361258,0.044573844,1620000000000 ,1620000000000 ,1620000000000 ,1616812355180 -1616812355213 ,112.5730161,26.89000321,58.83045959,178.8566803,178.9835901,4.9422054,0.044621733,1620000000000 ,1620000000000 ,1620000000000 ,1616812355190 -1616812355220 ,112.5730161,26.89000277,58.83064651,178.8502326,179.5774169,4.9152355,0.044188064,1620000000000 ,1620000000000 ,1620000000000 ,1616812355200 -1616812355231 ,112.5730161,26.89000233,58.8307457,178.8563251,180.5777654,4.9218726,0.043450349,1620000000000 ,1620000000000 ,1620000000000 ,1616812355210 -1616812355240 ,112.5730161,26.8900019,58.83083725,178.8610243,180.5776205,4.9288955,0.04351397,1620000000000 ,1620000000000 ,1620000000000 ,1616812355220 -1616812355250 ,112.5730161,26.89000146,58.83092499,178.8649585,180.5686592,4.9342194,0.043566793,1620000000000 ,1620000000000 ,1620000000000 ,1616812355230 -1616812355260 ,112.5730161,26.89000103,58.83105469,178.8684282,180.5701576,4.9387307,0.04361353,1620000000000 ,1620000000000 ,1620000000000 ,1616812355240 -1616812355270 ,112.5730161,26.89000059,58.83123398,178.8724717,180.5680655,4.9448857,0.043662636,1620000000000 ,1620000000000 ,1620000000000 ,1616812355250 -1616812355280 ,112.5730161,26.89000015,58.83141327,178.876843,180.5793057,4.9517345,0.043723597,1620000000000 ,1620000000000 ,1620000000000 ,1616812355260 -1616812355290 ,112.5730161,26.88999971,58.83156967,178.8818154,180.6016952,4.9586296,0.043785376,1620000000000 ,1620000000000 ,1620000000000 ,1616812355270 -1616812355300 ,112.5730161,26.88999928,58.831707,178.885613,180.6177589,4.9653535,0.043849183,1620000000000 ,1620000000000 ,1620000000000 ,1616812355280 -1616812355318 ,112.5730161,26.88999884,58.83185577,178.8874981,180.6453767,4.9725523,0.043911839,1620000000000 ,1620000000000 ,1620000000000 ,1616812355290 -1616812355324 ,112.5730161,26.8899984,58.83204269,178.8893286,180.6495662,4.9785266,0.043972343,1620000000000 ,1620000000000 ,1620000000000 ,1616812355300 -1616812355336 ,112.5730161,26.88999796,58.83221436,178.8909132,180.6327488,4.9841824,0.044019793,1620000000000 ,1620000000000 ,1620000000000 ,1616812355310 -1616812355342 ,112.5730161,26.88999752,58.83236694,178.8937272,180.6810402,4.9919696,0.044091485,1620000000000 ,1620000000000 ,1620000000000 ,1616812355320 -1616812355351 ,112.573016,26.88999707,58.83250427,178.894984,180.7000438,4.998374,0.044149639,1620000000000 ,1620000000000 ,1620000000000 ,1616812355330 -1616812355365 ,112.573016,26.88999663,58.83265305,178.897115,180.7063088,5.0043426,0.044204306,1620000000000 ,1620000000000 ,1620000000000 ,1616812355340 -1616812355374 ,112.573016,26.88999619,58.83280563,178.9011038,180.6913717,5.0110264,0.044263516,1620000000000 ,1620000000000 ,1620000000000 ,1616812355350 -1616812355385 ,112.573016,26.88999575,58.83293152,178.90359,180.6768128,5.0196247,0.044336072,1620000000000 ,1620000000000 ,1620000000000 ,1616812355360 -1616812355394 ,112.573016,26.8899953,58.83303452,178.9050654,180.6920406,5.0265718,0.044404752,1620000000000 ,1620000000000 ,1620000000000 ,1616812355370 -1616812355403 ,112.573016,26.88999486,58.83311844,178.9071964,180.664708,5.0318503,0.044452548,1620000000000 ,1620000000000 ,1620000000000 ,1616812355380 -1616812355412 ,112.573016,26.88999441,58.8331871,178.9105568,180.6349588,5.038645,0.044509432,1620000000000 ,1620000000000 ,1620000000000 ,1616812355390 -1616812355422 ,112.573016,26.88999397,58.83323288,178.9121141,180.647243,5.0462747,0.044576391,1620000000000 ,1620000000000 ,1620000000000 ,1616812355400 -1616812355432 ,112.573016,26.88999352,58.83325577,178.915338,180.637708,5.052106,0.044630882,1620000000000 ,1620000000000 ,1620000000000 ,1616812355410 -1616812355442 ,112.573016,26.88999307,58.83326721,178.9186164,180.6295867,5.059722,0.044695204,1620000000000 ,1620000000000 ,1620000000000 ,1616812355420 -1616812355452 ,112.573016,26.88999263,58.83327484,178.9209387,180.6150831,5.0663185,0.044759944,1620000000000 ,1620000000000 ,1620000000000 ,1616812355430 -1616812355462 ,112.573016,26.88999218,58.83326721,178.924709,180.6017562,5.0723624,0.044811462,1620000000000 ,1620000000000 ,1620000000000 ,1616812355440 -1616812355472 ,112.573016,26.88999172,58.83338165,178.9274684,180.0265954,5.080922,0.045377829,1620000000000 ,1620000000000 ,1620000000000 ,1616812355460 -1616812355490 ,112.573016,26.88999127,58.83360672,178.9324134,179.4464988,5.0875525,0.045937889,1620000000000 ,1620000000000 ,1620000000000 ,1616812355470 -1616812355496 ,112.573016,26.88999081,58.83381271,178.9366755,179.4536822,5.0936713,0.045992533,1620000000000 ,1620000000000 ,1620000000000 ,1616812355470 -1616812355505 ,112.573016,26.88999034,58.83401489,178.941402,179.4593809,5.0998487,0.046047483,1620000000000 ,1620000000000 ,1620000000000 ,1616812355480 -1616812355515 ,112.573016,26.88998942,58.83439255,178.9504724,179.4794937,5.1141925,0.092274269,1620000000000 ,1620000000000 ,1620000000000 ,1616812355500 -1616812355523 ,112.573016,26.88998896,58.83456421,178.9543793,179.5126524,5.120069,0.04623225,1620000000000 ,1620000000000 ,1620000000000 ,1616812355510 -1616812355534 ,112.573016,26.88998896,58.83456421,178.9543793,-400,5.120069,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812355520 -1616812355545 ,112.573016,26.88998803,58.83490753,178.9654169,179.5212147,5.1345263,0.092648202,1620000000000 ,1620000000000 ,1620000000000 ,1616812355530 -1616812355554 ,112.573016,26.88998757,58.83503723,178.9702527,179.5439807,5.1426935,0.04642882,1620000000000 ,1620000000000 ,1620000000000 ,1616812355540 -1616812355564 ,112.573016,26.8899871,58.83514404,178.9769463,179.5658542,5.149992,0.046496031,1620000000000 ,1620000000000 ,1620000000000 ,1616812355550 -1616812355574 ,112.573016,26.88998664,58.83521652,178.9825197,179.5840845,5.1572137,0.046557334,1620000000000 ,1620000000000 ,1620000000000 ,1616812355560 -1616812355584 ,112.573016,26.88998617,58.83528137,178.9878472,179.5978316,5.165084,0.046629288,1620000000000 ,1620000000000 ,1620000000000 ,1616812355570 -1616812355595 ,112.573016,26.88998571,58.83534241,178.9938578,179.5938084,5.1724844,0.046698851,1620000000000 ,1620000000000 ,1620000000000 ,1616812355580 -1616812355603 ,112.573016,26.88998571,58.83534241,178.9938578,-400,5.1724844,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812355590 -1616812355617 ,112.573016,26.88998477,58.83539581,179.0054418,179.6080175,5.184417,0.093555076,1620000000000 ,1620000000000 ,1620000000000 ,1616812355600 -1616812355626 ,112.573016,26.8899843,58.83544159,179.0113704,179.6091329,5.190863,0.046865298,1620000000000 ,1620000000000 ,1620000000000 ,1616812355610 -1616812355639 ,112.5730161,26.88998383,58.83550644,179.0171078,179.616193,5.199432,0.046937758,1620000000000 ,1620000000000 ,1620000000000 ,1616812355620 -1616812355644 ,112.5730161,26.88998336,58.83556747,179.0232823,179.6148361,5.2070923,0.047008963,1620000000000 ,1620000000000 ,1620000000000 ,1616812355630 -1616812355658 ,112.5730161,26.88998289,58.83560562,179.0315878,179.610128,5.2138214,0.047069911,1620000000000 ,1620000000000 ,1620000000000 ,1616812355640 -1616812355665 ,112.5730161,26.88998242,58.83564758,179.0391283,179.6309047,5.2211857,0.047137783,1620000000000 ,1620000000000 ,1620000000000 ,1616812355650 -1616812355678 ,112.5730161,26.88998195,58.83570099,179.0469694,179.6176811,5.2275176,0.047196485,1620000000000 ,1620000000000 ,1620000000000 ,1616812355660 -1616812355685 ,112.5730161,26.88998148,58.83576965,179.0549743,179.6143357,5.234221,0.047255997,1620000000000 ,1620000000000 ,1620000000000 ,1616812355670 -1616812355695 ,112.5730161,26.889981,58.83585739,179.0639082,179.6263477,5.2409306,0.047315574,1620000000000 ,1620000000000 ,1620000000000 ,1616812355680 -1616812355705 ,112.5730161,26.88998053,58.8359642,179.0730334,179.6325857,5.2484818,0.047383147,1620000000000 ,1620000000000 ,1620000000000 ,1616812355690 -1616812355715 ,112.5730161,26.88998005,58.83610535,179.0809291,179.6279153,5.255066,0.04744664,1620000000000 ,1620000000000 ,1620000000000 ,1616812355700 -1616812355728 ,112.5730161,26.88997958,58.83626175,179.090464,179.6355932,5.261863,0.047508979,1620000000000 ,1620000000000 ,1620000000000 ,1616812355710 -1616812355737 ,112.5730161,26.8899791,58.83641434,179.0993159,179.649438,5.269358,0.047573348,1620000000000 ,1620000000000 ,1620000000000 ,1616812355720 -1616812355747 ,112.5730161,26.88997863,58.83657837,179.1068018,179.6566331,5.275877,0.047633547,1620000000000 ,1620000000000 ,1620000000000 ,1616812355730 -1616812355757 ,112.5730161,26.88997815,58.83677292,179.1152986,179.6459942,5.2839146,0.047704184,1620000000000 ,1620000000000 ,1620000000000 ,1616812355740 -1616812355767 ,112.5730161,26.88997767,58.83696747,179.1261722,179.6493663,5.2905436,0.047768886,1620000000000 ,1620000000000 ,1620000000000 ,1616812355750 -1616812355778 ,112.5730161,26.88997719,58.83714676,179.1358711,179.6605931,5.2972107,0.047826812,1620000000000 ,1620000000000 ,1620000000000 ,1616812355760 -1616812355787 ,112.5730161,26.88997671,58.83733749,179.1455427,179.6597142,5.3039126,0.047887523,1620000000000 ,1620000000000 ,1620000000000 ,1616812355770 -1616812355797 ,112.5730161,26.88997624,58.83756638,179.1557333,179.6613433,5.3111334,0.047953431,1620000000000 ,1620000000000 ,1620000000000 ,1616812355780 -1616812355805 ,112.5730161,26.88997576,58.83779907,179.1663064,179.6665939,5.3196335,0.048026763,1620000000000 ,1620000000000 ,1620000000000 ,1616812355790 -1616812355818 ,112.5730161,26.88997527,58.83800888,179.1788467,179.6784373,5.327628,0.04810038,1620000000000 ,1620000000000 ,1620000000000 ,1616812355800 -1616812355826 ,112.5730161,26.88997479,58.83820724,179.1889827,179.6852659,5.333909,0.0481596,1620000000000 ,1620000000000 ,1620000000000 ,1616812355810 -1616812355836 ,112.5730161,26.88997431,58.83840561,179.2009765,179.6849103,5.340813,0.048221018,1620000000000 ,1620000000000 ,1620000000000 ,1616812355820 -1616812355846 ,112.5730161,26.88997383,58.83860397,179.2108939,179.6835429,5.346933,0.04827587,1620000000000 ,1620000000000 ,1620000000000 ,1616812355830 -1616812355856 ,112.5730161,26.88997334,58.83879471,179.2222593,179.6963265,5.3558707,0.048349712,1620000000000 ,1620000000000 ,1620000000000 ,1616812355840 -1616812355866 ,112.5730161,26.88997286,58.83899307,179.233215,179.7123091,5.3635626,0.048425733,1620000000000 ,1620000000000 ,1620000000000 ,1616812355850 -1616812355876 ,112.5730161,26.88997237,58.83917618,179.2450995,179.7148773,5.371761,0.04849524,1620000000000 ,1620000000000 ,1620000000000 ,1616812355860 -1616812355891 ,112.5730161,26.88997189,58.83934784,179.2558092,179.7118922,5.380471,0.04857439,1620000000000 ,1620000000000 ,1620000000000 ,1616812355870 -1616812355898 ,112.5730161,26.8899714,58.83950424,179.2684041,179.7069955,5.3871183,0.048636579,1620000000000 ,1620000000000 ,1620000000000 ,1616812355880 -1616812355907 ,112.5730161,26.88997092,58.83965302,179.280234,179.7129154,5.3947954,0.048705258,1620000000000 ,1620000000000 ,1620000000000 ,1616812355890 -1616812355918 ,112.5730161,26.88997043,58.83978653,179.2903427,179.7420144,5.403265,0.048780473,1620000000000 ,1620000000000 ,1620000000000 ,1616812355900 -1616812355927 ,112.5730161,26.88996994,58.83993912,179.301954,179.7622837,5.4103765,0.048846685,1620000000000 ,1620000000000 ,1620000000000 ,1616812355910 -1616812355937 ,112.5730161,26.88996945,58.84010315,179.3129916,179.7617037,5.4171233,0.048907872,1620000000000 ,1620000000000 ,1620000000000 ,1616812355920 -1616812355948 ,112.5730161,26.88996896,58.84025574,179.3235101,179.768873,5.4261527,0.048984085,1620000000000 ,1620000000000 ,1620000000000 ,1616812355930 -1616812355959 ,112.5730161,26.88996847,58.84037018,179.336023,179.7879516,5.436001,0.049072295,1620000000000 ,1620000000000 ,1620000000000 ,1616812355940 -1616812355967 ,112.5730161,26.88996798,58.84047699,179.3452847,179.8190301,5.4449944,0.049153966,1620000000000 ,1620000000000 ,1620000000000 ,1616812355950 -1616812355977 ,112.5730161,26.88996749,58.8406105,179.3542732,179.8248261,5.453442,0.049229726,1620000000000 ,1620000000000 ,1620000000000 ,1616812355960 -1616812355988 ,112.5730161,26.88996699,58.84080124,179.3637535,179.8428282,5.460779,0.049304035,1620000000000 ,1620000000000 ,1620000000000 ,1616812355970 -1616812355998 ,112.5730161,26.8899665,58.84101105,179.3746272,179.8711381,5.4684463,0.04937328,1620000000000 ,1620000000000 ,1620000000000 ,1616812355980 -1616812356008 ,112.5730161,26.889966,58.84120178,179.3837523,179.8991367,5.4781494,0.049453953,1620000000000 ,1620000000000 ,1620000000000 ,1616812355990 -1616812356018 ,112.5730161,26.88996551,58.84137344,179.3938337,179.9187229,5.486944,0.049536279,1620000000000 ,1620000000000 ,1620000000000 ,1616812356000 -1616812356028 ,112.5730161,26.88996501,58.84154129,179.4024124,179.942434,5.495911,0.049616277,1620000000000 ,1620000000000 ,1620000000000 ,1616812356010 -1616812356038 ,112.5730161,26.88996452,58.84172821,179.4106086,179.9626849,5.5047107,0.049697625,1620000000000 ,1620000000000 ,1620000000000 ,1616812356020 -1616812356049 ,112.5730161,26.88996402,58.84192657,179.4170563,179.97441,5.513093,0.049772857,1620000000000 ,1620000000000 ,1620000000000 ,1616812356030 -1616812356059 ,112.5730161,26.88996352,58.84212494,179.425034,179.9986253,5.524477,0.049869177,1620000000000 ,1620000000000 ,1620000000000 ,1616812356040 -1616812356068 ,112.5730161,26.88996302,58.84233093,179.4324379,180.0033877,5.5348086,0.04996735,1620000000000 ,1620000000000 ,1620000000000 ,1616812356050 -1616812356078 ,112.5730161,26.88996252,58.84251785,179.4389676,180.0228791,5.5448327,0.050058125,1620000000000 ,1620000000000 ,1620000000000 ,1616812356060 -1616812356088 ,112.5730161,26.88996202,58.84268951,179.4469726,180.0335076,5.554856,0.050147168,1620000000000 ,1620000000000 ,1620000000000 ,1616812356070 -1616812356098 ,112.5730161,26.88996152,58.84285355,179.4554147,180.0166393,5.5625143,0.050220692,1620000000000 ,1620000000000 ,1620000000000 ,1616812356080 -1616812356114 ,112.5730161,26.88996101,58.84302902,179.4624907,180.0311689,5.5717816,0.050299569,1620000000000 ,1620000000000 ,1620000000000 ,1616812356090 -1616812356119 ,112.5730161,26.88996051,58.84318161,179.4719437,180.0391802,5.581167,0.050388829,1620000000000 ,1620000000000 ,1620000000000 ,1616812356100 -1616812356130 ,112.5730161,26.88996,58.84330368,179.4796209,180.0498683,5.5912094,0.05047469,1620000000000 ,1620000000000 ,1620000000000 ,1616812356110 -1616812356138 ,112.5730161,26.8899595,58.84343338,179.4861778,180.0630996,5.600839,0.05056208,1620000000000 ,1620000000000 ,1620000000000 ,1616812356120 -1616812356149 ,112.5730161,26.88995899,58.84358597,179.4929534,180.0600092,5.6090593,0.050640937,1620000000000 ,1620000000000 ,1620000000000 ,1616812356130 -1616812356159 ,112.5730161,26.88995848,58.84376526,179.5004393,180.0745597,5.6184397,0.050725284,1620000000000 ,1620000000000 ,1620000000000 ,1616812356140 -1616812356169 ,112.5730161,26.88995798,58.84397125,179.5047013,180.0776995,5.6269436,0.050802762,1620000000000 ,1620000000000 ,1620000000000 ,1616812356150 -1616812356179 ,112.5730161,26.88995747,58.84418488,179.5115315,180.076506,5.636222,0.050883315,1620000000000 ,1620000000000 ,1620000000000 ,1616812356160 -1616812356189 ,112.5730161,26.88995696,58.84440994,179.5156296,180.0870125,5.646447,0.050976098,1620000000000 ,1620000000000 ,1620000000000 ,1616812356170 -1616812356199 ,112.5730161,26.88995645,58.84463501,179.5224871,180.105478,5.6558013,0.051065097,1620000000000 ,1620000000000 ,1620000000000 ,1616812356180 -1616812356210 ,112.5730161,26.88995594,58.84487534,179.5277874,180.0962372,5.664158,0.051142495,1620000000000 ,1620000000000 ,1620000000000 ,1616812356190 -1616812356220 ,112.5730161,26.88995543,58.84472275,179.5383332,179.1306039,5.6515436,0.050534499,1620000000000 ,1620000000000 ,1620000000000 ,1616812356200 -1616812356230 ,112.5730162,26.88995493,58.84450912,179.5458737,178.9912898,5.6614413,0.050524304,1620000000000 ,1620000000000 ,1620000000000 ,1616812356210 -1616812356240 ,112.5730162,26.88995442,58.84426498,179.5520209,178.9872442,5.6716104,0.050616845,1620000000000 ,1620000000000 ,1620000000000 ,1616812356220 -1616812356250 ,112.5730162,26.88995391,58.84396362,179.5581407,178.9763377,5.6812367,0.050703065,1620000000000 ,1620000000000 ,1620000000000 ,1616812356230 -1616812356260 ,112.5730162,26.8899534,58.84362793,179.5627579,178.9666021,5.6898656,0.0507841,1620000000000 ,1620000000000 ,1620000000000 ,1616812356240 -1616812356273 ,112.5730162,26.8899529,58.84329224,179.5681128,178.9621131,5.6999826,0.050870526,1620000000000 ,1620000000000 ,1620000000000 ,1616812356250 -1616812356281 ,112.5730162,26.88995239,58.84297562,179.5737682,178.9543548,5.709831,0.050960052,1620000000000 ,1620000000000 ,1620000000000 ,1616812356260 -1616812356292 ,112.5730162,26.88995188,58.84265137,179.5799427,178.95764,5.719992,0.051050651,1620000000000 ,1620000000000 ,1620000000000 ,1616812356270 -1616812356300 ,112.5730162,26.88995136,58.84230042,179.5844779,178.9700258,5.730313,0.051145162,1620000000000 ,1620000000000 ,1620000000000 ,1616812356280 -1616812356311 ,112.5730162,26.88995085,58.84191895,179.5879477,178.9772966,5.740239,0.051234524,1620000000000 ,1620000000000 ,1620000000000 ,1616812356290 -1616812356322 ,112.5730162,26.88995034,58.84154892,179.592319,178.9608887,5.748242,0.051310777,1620000000000 ,1620000000000 ,1620000000000 ,1616812356300 -1616812356331 ,112.5730162,26.88994983,58.84119797,179.5970728,178.9449542,5.756835,0.051386186,1620000000000 ,1620000000000 ,1620000000000 ,1616812356310 -1616812356341 ,112.5730163,26.88994931,58.84088135,179.6031926,178.9566113,5.7669883,0.051476997,1620000000000 ,1620000000000 ,1620000000000 ,1616812356320 -1616812356352 ,112.5730163,26.8899488,58.84056091,179.6078918,178.956293,5.775291,0.051554997,1620000000000 ,1620000000000 ,1620000000000 ,1616812356330 -1616812356362 ,112.5730163,26.88994828,58.84022522,179.6136292,178.956385,5.7863855,0.051646226,1620000000000 ,1620000000000 ,1620000000000 ,1616812356340 -1616812356371 ,112.5730163,26.88994776,58.83986664,179.6185742,178.9594261,5.797792,0.051750353,1620000000000 ,1620000000000 ,1620000000000 ,1616812356350 -1616812356382 ,112.5730163,26.88994724,58.83946991,179.6230275,178.9581545,5.8077555,0.051840304,1620000000000 ,1620000000000 ,1620000000000 ,1616812356360 -1616812356392 ,112.5730163,26.88994672,58.83906555,179.6276447,178.9806431,5.8169,0.051928317,1620000000000 ,1620000000000 ,1620000000000 ,1616812356370 -1616812356401 ,112.5730163,26.8899462,58.83869553,179.6301582,178.9968081,5.826398,0.052011991,1620000000000 ,1620000000000 ,1620000000000 ,1616812356380 -1616812356411 ,112.5730163,26.88994568,58.83836746,179.6359776,178.9993799,5.8369102,0.052105053,1620000000000 ,1620000000000 ,1620000000000 ,1616812356390 -1616812356421 ,112.5730163,26.88994516,58.83805466,179.6418515,179.0135273,5.845961,0.052190328,1620000000000 ,1620000000000 ,1620000000000 ,1616812356400 -1616812356432 ,112.5730163,26.88994464,58.83774948,179.6466873,179.0321009,5.8554807,0.052273754,1620000000000 ,1620000000000 ,1620000000000 ,1616812356410 -1616812356442 ,112.5730163,26.88994412,58.83743286,179.6517963,179.0552013,5.866275,0.052371879,1620000000000 ,1620000000000 ,1620000000000 ,1616812356420 -1616812356452 ,112.5730164,26.88994359,58.83710098,179.6572331,179.0619366,5.8755927,0.052456479,1620000000000 ,1620000000000 ,1620000000000 ,1616812356430 -1616812356462 ,112.5730164,26.88994307,58.8367424,179.6622601,179.0962057,5.886579,0.052552258,1620000000000 ,1620000000000 ,1620000000000 ,1616812356440 -1616812356472 ,112.5730164,26.88994253,58.83671951,179.6655933,179.9158127,5.89565,0.053219669,1620000000000 ,1620000000000 ,1620000000000 ,1616812356450 -1616812356482 ,112.5730164,26.889942,58.83669281,179.6716585,179.9207386,5.905521,0.053304594,1620000000000 ,1620000000000 ,1620000000000 ,1616812356460 -1616812356492 ,112.5730164,26.88994147,58.83667755,179.6764942,179.9191551,5.915073,0.053393599,1620000000000 ,1620000000000 ,1620000000000 ,1616812356470 -1616812356504 ,112.5730164,26.88994093,58.83670425,179.6814939,179.9234798,5.925006,0.053487207,1620000000000 ,1620000000000 ,1620000000000 ,1616812356480 -1616812356514 ,112.5730164,26.8899404,58.8367691,179.6879143,179.9257303,5.9355884,0.053578608,1620000000000 ,1620000000000 ,1620000000000 ,1616812356500 -1616812356523 ,112.5730164,26.88993986,58.83684921,179.69428,179.9323624,5.9456177,0.053666627,1620000000000 ,1620000000000 ,1620000000000 ,1616812356500 -1616812356533 ,112.5730164,26.88993932,58.83690262,179.7015474,179.9264649,5.9561353,0.053765081,1620000000000 ,1620000000000 ,1620000000000 ,1616812356520 -1616812356543 ,112.5730164,26.88993878,58.83690262,179.7066837,179.9396854,5.965796,0.053852541,1620000000000 ,1620000000000 ,1620000000000 ,1616812356530 -1616812356553 ,112.5730164,26.8899377,58.83670044,179.7168197,179.960486,5.985582,0.107977067,1620000000000 ,1620000000000 ,1620000000000 ,1616812356540 -1616812356568 ,112.5730164,26.88993716,58.83652878,179.7214642,179.97525,5.9964347,0.054120219,1620000000000 ,1620000000000 ,1620000000000 ,1616812356550 -1616812356575 ,112.5730164,26.88993662,58.83636093,179.7256716,179.9882468,6.006896,0.054216028,1620000000000 ,1620000000000 ,1620000000000 ,1616812356560 -1616812356587 ,112.5730164,26.88993662,58.83636093,179.7256716,-400,6.006896,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812356570 -1616812356596 ,112.5730164,26.88993608,58.83620834,179.7302342,180.0113051,6.0166707,0.054305037,1620000000000 ,1620000000000 ,1620000000000 ,1616812356580 -1616812356604 ,112.5730164,26.88993553,58.83607864,179.7365999,180.0360484,6.0263515,0.054393769,1620000000000 ,1620000000000 ,1620000000000 ,1616812356580 -1616812356614 ,112.5730164,26.88993444,58.83584976,179.7462441,180.0439061,6.0461664,0.109051654,1620000000000 ,1620000000000 ,1620000000000 ,1616812356600 -1616812356625 ,112.5730164,26.88993444,58.83584976,179.7462441,-400,6.0461664,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812356610 -1616812356637 ,112.5730164,26.88993335,58.83553314,179.7559157,180.0463016,6.0656843,0.10941673,1620000000000 ,1620000000000 ,1620000000000 ,1616812356620 -1616812356645 ,112.5730164,26.8899328,58.83534241,179.7600411,180.0418675,6.0743814,0.054826629,1620000000000 ,1620000000000 ,1620000000000 ,1616812356630 -1616812356655 ,112.5730164,26.88993225,58.83516312,179.7642212,180.0315702,6.084533,0.054916423,1620000000000 ,1620000000000 ,1620000000000 ,1616812356640 -1616812356663 ,112.5730164,26.8899317,58.83501053,179.7679641,180.0102023,6.093827,0.055003585,1620000000000 ,1620000000000 ,1620000000000 ,1616812356650 -1616812356674 ,112.5730164,26.88993115,58.83485794,179.7722535,179.9994841,6.1019464,0.055078223,1620000000000 ,1620000000000 ,1620000000000 ,1616812356660 -1616812356685 ,112.5730164,26.8899306,58.83472824,179.7765702,179.9770254,6.111166,0.055162493,1620000000000 ,1620000000000 ,1620000000000 ,1616812356670 -1616812356695 ,112.5730164,26.88993005,58.83462143,179.7816518,179.9516454,6.119832,0.055240615,1620000000000 ,1620000000000 ,1620000000000 ,1616812356680 -1616812356704 ,112.5730164,26.88992949,58.83452225,179.7874165,179.9485069,6.1287518,0.055320753,1620000000000 ,1620000000000 ,1620000000000 ,1616812356690 -1616812356715 ,112.5730164,26.88992894,58.83441544,179.7932632,179.9395299,6.13586,0.05538771,1620000000000 ,1620000000000 ,1620000000000 ,1616812356700 -1616812356724 ,112.5730164,26.88992838,58.83433151,179.7972793,179.9445197,6.1451488,0.055470431,1620000000000 ,1620000000000 ,1620000000000 ,1616812356710 -1616812356738 ,112.5730164,26.88992783,58.83428955,179.8033992,179.9313609,6.154243,0.055552683,1620000000000 ,1620000000000 ,1620000000000 ,1616812356720 -1616812356747 ,112.5730164,26.88992727,58.83425903,179.8114861,179.9116041,6.16157,0.055620253,1620000000000 ,1620000000000 ,1620000000000 ,1616812356730 -1616812356756 ,112.5730164,26.88992672,58.83423996,179.8176333,179.9349775,6.1687837,0.055689816,1620000000000 ,1620000000000 ,1620000000000 ,1616812356740 -1616812356765 ,112.5730164,26.88992616,58.83425903,179.8245727,179.9196327,6.174414,0.055745269,1620000000000 ,1620000000000 ,1620000000000 ,1616812356750 -1616812356775 ,112.5730164,26.8899256,58.83433533,179.8299276,179.9100199,6.1836796,0.055820035,1620000000000 ,1620000000000 ,1620000000000 ,1616812356760 -1616812356784 ,112.5730164,26.88992504,58.83448029,179.8338891,179.9357225,6.193124,0.055904555,1620000000000 ,1620000000000 ,1620000000000 ,1616812356770 -1616812356796 ,112.5730164,26.88992448,58.83464432,179.8394899,179.939787,6.2029033,0.055996085,1620000000000 ,1620000000000 ,1620000000000 ,1616812356780 -1616812356806 ,112.5730164,26.88992392,58.83481598,179.8458283,179.9604195,6.210698,0.056073245,1620000000000 ,1620000000000 ,1620000000000 ,1616812356790 -1616812356818 ,112.5730164,26.88992336,58.83501816,179.8495439,179.9698059,6.2182593,0.056143687,1620000000000 ,1620000000000 ,1620000000000 ,1616812356800 -1616812356826 ,112.5730164,26.8899228,58.83526611,179.8534781,179.9664228,6.226347,0.056212214,1620000000000 ,1620000000000 ,1620000000000 ,1616812356810 -1616812356835 ,112.5730164,26.88992223,58.83552933,179.8578494,179.9897483,6.2345343,0.056287013,1620000000000 ,1620000000000 ,1620000000000 ,1616812356820 -1616812356845 ,112.5730164,26.88992167,58.83576584,179.8631496,180.0185867,6.243896,0.056370582,1620000000000 ,1620000000000 ,1620000000000 ,1616812356830 -1616812356856 ,112.5730164,26.88992111,58.83596802,179.8683679,180.0385887,6.253294,0.056457337,1620000000000 ,1620000000000 ,1620000000000 ,1616812356840 -1616812356866 ,112.5730164,26.88992054,58.8361702,179.8715644,180.0574305,6.2623158,0.056534329,1620000000000 ,1620000000000 ,1620000000000 ,1616812356850 -1616812356876 ,112.5730164,26.88991997,58.83638763,179.8746517,180.0659111,6.271545,0.056621497,1620000000000 ,1620000000000 ,1620000000000 ,1616812356860 -1616812356886 ,112.5730164,26.88991941,58.836586,179.8784766,180.0692346,6.2800384,0.056695442,1620000000000 ,1620000000000 ,1620000000000 ,1616812356870 -1616812356896 ,112.5730164,26.88991884,58.83677673,179.883367,180.0935268,6.2907705,0.056790304,1620000000000 ,1620000000000 ,1620000000000 ,1616812356880 -1616812356907 ,112.5730164,26.88991827,58.8369751,179.8857986,180.1236782,6.298177,0.056866079,1620000000000 ,1620000000000 ,1620000000000 ,1616812356890 -1616812356921 ,112.5730164,26.8899177,58.83721161,179.8882574,180.1378498,6.3068204,0.056943094,1620000000000 ,1620000000000 ,1620000000000 ,1616812356900 -1616812356928 ,112.5730164,26.88991713,58.83746719,179.89129,180.1376643,6.315746,0.057018638,1620000000000 ,1620000000000 ,1620000000000 ,1616812356910 -1616812356937 ,112.5730164,26.88991656,58.83769608,179.8953062,180.15618,6.324743,0.057100908,1620000000000 ,1620000000000 ,1620000000000 ,1616812356920 -1616812356947 ,112.5730164,26.88991599,58.837883,179.8968088,180.1601988,6.3336453,0.05718563,1620000000000 ,1620000000000 ,1620000000000 ,1616812356930 -1616812356956 ,112.5730164,26.88991542,58.83802795,179.902191,180.1734892,6.3415117,0.05725213,1620000000000 ,1620000000000 ,1620000000000 ,1616812356940 -1616812356967 ,112.5730164,26.88991484,58.8381424,179.9068629,180.1821779,6.350954,0.057332842,1620000000000 ,1620000000000 ,1620000000000 ,1616812356950 -1616812356980 ,112.5730164,26.88991427,58.83823776,179.909513,180.1892868,6.3592467,0.05741255,1620000000000 ,1620000000000 ,1620000000000 ,1616812356960 -1616812356989 ,112.5730164,26.88991369,58.83834076,179.9121631,180.1933108,6.3672366,0.05748441,1620000000000 ,1620000000000 ,1620000000000 ,1616812356970 -1616812356998 ,112.5730164,26.88991312,58.83842468,179.9150864,180.1994955,6.377258,0.057568348,1620000000000 ,1620000000000 ,1620000000000 ,1616812356980 -1616812357009 ,112.5730164,26.88991254,58.83847046,179.9179551,180.2001377,6.3849654,0.057645608,1620000000000 ,1620000000000 ,1620000000000 ,1616812356990 -1616812357020 ,112.5730164,26.88991196,58.83847809,179.9224903,180.1993982,6.3935876,0.057717287,1620000000000 ,1620000000000 ,1620000000000 ,1616812357000 -1616812357029 ,112.5730164,26.88991139,58.8384552,179.925277,180.2046241,6.4029565,0.057797093,1620000000000 ,1620000000000 ,1620000000000 ,1616812357010 -1616812357038 ,112.5730164,26.88991081,58.83838654,179.9274081,180.2075068,6.4113374,0.057878236,1620000000000 ,1620000000000 ,1620000000000 ,1616812357020 -1616812357049 ,112.5730163,26.88991023,58.83827591,179.931998,180.1979505,6.419906,0.057951843,1620000000000 ,1620000000000 ,1620000000000 ,1616812357030 -1616812357059 ,112.5730163,26.88990965,58.83815002,179.9365332,180.2010987,6.4279523,0.058024845,1620000000000 ,1620000000000 ,1620000000000 ,1616812357040 -1616812357069 ,112.5730163,26.88990907,58.83804703,179.939839,180.2022552,6.4351816,0.058090399,1620000000000 ,1620000000000 ,1620000000000 ,1616812357050 -1616812357079 ,112.5730163,26.88990848,58.83795929,179.944265,180.1945955,6.4441786,0.058168531,1620000000000 ,1620000000000 ,1620000000000 ,1616812357060 -1616812357088 ,112.5730163,26.8899079,58.83785248,179.947844,180.1908532,6.4533997,0.058251093,1620000000000 ,1620000000000 ,1620000000000 ,1616812357070 -1616812357098 ,112.5730163,26.88990732,58.83771896,179.9533355,180.1914734,6.46305,0.058336265,1620000000000 ,1620000000000 ,1620000000000 ,1616812357080 -1616812357109 ,112.5730163,26.88990673,58.83755112,179.9555484,180.1913033,6.471594,0.058416232,1620000000000 ,1620000000000 ,1620000000000 ,1616812357090 -1616812357119 ,112.5730163,26.88990615,58.83736801,179.959346,180.1805736,6.4794426,0.058484766,1620000000000 ,1620000000000 ,1620000000000 ,1616812357100 -1616812357129 ,112.5730163,26.88990556,58.83716965,179.9614497,180.1791077,6.4882283,0.058563836,1620000000000 ,1620000000000 ,1620000000000 ,1616812357110 -1616812357139 ,112.5730163,26.88990498,58.83698273,179.9655752,180.1806206,6.4955616,0.058633628,1620000000000 ,1620000000000 ,1620000000000 ,1616812357120 -1616812357149 ,112.5730163,26.88990439,58.83682251,179.9675696,180.1820242,6.5028725,0.058699044,1620000000000 ,1620000000000 ,1620000000000 ,1616812357130 -1616812357162 ,112.5730163,26.8899038,58.83671951,179.9711213,180.1808317,6.5100365,0.05876509,1620000000000 ,1620000000000 ,1620000000000 ,1616812357140 -1616812357173 ,112.5730163,26.88990321,58.83666611,179.9748369,180.1702556,6.5174932,0.058832556,1620000000000 ,1620000000000 ,1620000000000 ,1616812357150 -1616812357180 ,112.5730163,26.88990263,58.83664703,179.9767494,180.1669659,6.5249186,0.058902289,1620000000000 ,1620000000000 ,1620000000000 ,1616812357160 -1616812357192 ,112.5730163,26.88990204,58.83665466,179.9814212,180.1764551,6.533606,0.058978601,1620000000000 ,1620000000000 ,1620000000000 ,1616812357170 -1616812357202 ,112.5730163,26.88990145,58.83668137,179.9847543,180.190565,6.5436926,0.059067692,1620000000000 ,1620000000000 ,1620000000000 ,1616812357180 -1616812357213 ,112.5730163,26.88990085,58.83673096,179.9872678,180.2004768,6.5521436,0.059145873,1620000000000 ,1620000000000 ,1620000000000 ,1616812357190 -1616812357223 ,112.5730163,26.88990026,58.83717346,180.0025948,180.4063319,6.551596,0.059169333,1620000000000 ,1620000000000 ,1620000000000 ,1616812357200 -1616812357230 ,112.5730163,26.88989967,58.83813858,180.005846,180.7412732,6.5582128,0.059103581,1620000000000 ,1620000000000 ,1620000000000 ,1616812357210 -1616812357241 ,112.5730163,26.88989908,58.83907318,180.0095069,180.7425485,6.5663443,0.059170616,1620000000000 ,1620000000000 ,1620000000000 ,1616812357220 -1616812357251 ,112.5730163,26.88989849,58.84001923,180.0128401,180.7609494,6.57425,0.059242952,1620000000000 ,1620000000000 ,1620000000000 ,1616812357230 -1616812357262 ,112.5730163,26.88989789,58.84099579,180.0150804,180.7626045,6.5811844,0.059307746,1620000000000 ,1620000000000 ,1620000000000 ,1616812357240 -1616812357272 ,112.5730163,26.8898973,58.84200668,180.0186048,180.758784,6.59015,0.059384001,1620000000000 ,1620000000000 ,1620000000000 ,1616812357250 -1616812357281 ,112.5730163,26.88989671,58.84305573,180.0213641,180.7453893,6.5978956,0.059460721,1620000000000 ,1620000000000 ,1620000000000 ,1616812357260 -1616812357291 ,112.5730163,26.88989611,58.84410858,180.0218286,180.7613681,6.6059217,0.059532919,1620000000000 ,1620000000000 ,1620000000000 ,1616812357270 -1616812357300 ,112.5730163,26.88989551,58.84517288,180.0223204,180.765962,6.614776,0.059611096,1620000000000 ,1620000000000 ,1620000000000 ,1616812357280 -1616812357312 ,112.5730162,26.88989492,58.84625626,180.023058,180.771576,6.623299,0.05968784,1620000000000 ,1620000000000 ,1620000000000 ,1616812357290 -1616812357321 ,112.5730162,26.88989432,58.84738922,180.0224023,180.7889351,6.6294,0.059751395,1620000000000 ,1620000000000 ,1620000000000 ,1616812357300 -1616812357335 ,112.5730162,26.88989372,58.84855652,180.0233586,180.8001929,6.6361694,0.059814519,1620000000000 ,1620000000000 ,1620000000000 ,1616812357310 -1616812357342 ,112.5730162,26.88989312,58.84977341,180.0240143,180.7939349,6.642576,0.0598746,1620000000000 ,1620000000000 ,1620000000000 ,1616812357320 -1616812357352 ,112.5730162,26.88989252,58.85101318,180.0242328,180.7922004,6.649541,0.05993271,1620000000000 ,1620000000000 ,1620000000000 ,1616812357330 -1616812357362 ,112.5730162,26.88989192,58.85226822,180.0247519,180.8025913,6.6578455,0.060006186,1620000000000 ,1620000000000 ,1620000000000 ,1616812357340 -1616812357371 ,112.5730162,26.88989132,58.85349655,180.0234405,180.8078424,6.6654596,0.0600787,1620000000000 ,1620000000000 ,1620000000000 ,1616812357350 -1616812357382 ,112.5730162,26.88989072,58.854702,180.0235498,180.8264564,6.6734147,0.060151783,1620000000000 ,1620000000000 ,1620000000000 ,1616812357360 -1616812357395 ,112.5730162,26.88989012,58.85592651,180.0215281,180.8284307,6.679004,0.060205312,1620000000000 ,1620000000000 ,1620000000000 ,1616812357370 -1616812357402 ,112.5730162,26.88988952,58.85715866,180.0193697,180.8183571,6.685359,0.060259626,1620000000000 ,1620000000000 ,1620000000000 ,1616812357380 -1616812357412 ,112.5730162,26.88988891,58.85837173,180.0186594,180.8117415,6.6916385,0.06032238,1620000000000 ,1620000000000 ,1620000000000 ,1616812357390 -1616812357422 ,112.5730161,26.88988831,58.85955429,180.0162005,180.8107036,6.694522,0.060348678,1620000000000 ,1620000000000 ,1620000000000 ,1616812357400 -1616812357433 ,112.5730161,26.88988771,58.86075211,180.0147252,180.8242729,6.6998324,0.060394686,1620000000000 ,1620000000000 ,1620000000000 ,1616812357410 -1616812357443 ,112.5730161,26.8898871,58.86196899,180.0118565,180.8111041,6.7052207,0.060444169,1620000000000 ,1620000000000 ,1620000000000 ,1616812357420 -1616812357454 ,112.5730161,26.8898865,58.86319733,180.0100807,180.7989758,6.711449,0.06049814,1620000000000 ,1620000000000 ,1620000000000 ,1616812357430 -1616812357464 ,112.5730161,26.88988589,58.86439133,180.0062011,180.7889401,6.7182894,0.060556558,1620000000000 ,1620000000000 ,1620000000000 ,1616812357440 -1616812357474 ,112.5730161,26.88988529,58.86518097,180.0042614,180.5887572,6.725143,0.060672201,1620000000000 ,1620000000000 ,1620000000000 ,1616812357460 -1616812357483 ,112.5730161,26.88988468,58.86558914,180.0016659,180.3865503,6.728074,0.060767219,1620000000000 ,1620000000000 ,1620000000000 ,1616812357470 -1616812357494 ,112.5730161,26.88988407,58.86600876,180.0016659,180.3822342,6.7286863,0.060777688,1620000000000 ,1620000000000 ,1620000000000 ,1616812357480 -1616812357505 ,112.5730161,26.88988346,58.86646271,179.9984694,180.3681114,6.729522,0.060782053,1620000000000 ,1620000000000 ,1620000000000 ,1616812357480 -1616812357514 ,112.5730161,26.88988225,58.86732864,179.9948357,180.3512774,6.7344155,0.121612747,1620000000000 ,1620000000000 ,1620000000000 ,1616812357500 -1616812357524 ,112.5730161,26.88988164,58.86767578,179.9937429,180.3584771,6.7391095,0.060863125,1620000000000 ,1620000000000 ,1620000000000 ,1616812357510 -1616812357535 ,112.5730161,26.88988103,58.86800385,179.9921583,180.3693573,6.741684,0.060887422,1620000000000 ,1620000000000 ,1620000000000 ,1616812357520 -1616812357545 ,112.5730161,26.88988042,58.86837769,179.9899453,180.3653218,6.742369,0.060900713,1620000000000 ,1620000000000 ,1620000000000 ,1616812357530 -1616812357557 ,112.5730161,26.88987981,58.8687973,179.9886339,180.3460447,6.7435827,0.060910899,1620000000000 ,1620000000000 ,1620000000000 ,1616812357540 -1616812357566 ,112.5730161,26.8898792,58.86924744,179.9871859,180.3502727,6.7451587,0.060925808,1620000000000 ,1620000000000 ,1620000000000 ,1616812357550 -1616812357576 ,112.5730161,26.88987859,58.8697052,179.9851915,180.3537933,6.7457685,0.060934018,1620000000000 ,1620000000000 ,1620000000000 ,1616812357560 -1616812357584 ,112.5730161,26.88987798,58.87015152,179.9850549,180.3489956,6.7478166,0.060951608,1620000000000 ,1620000000000 ,1620000000000 ,1616812357570 -1616812357596 ,112.5730161,26.88987737,58.87059021,179.9837435,180.3441203,6.7506247,0.06097256,1620000000000 ,1620000000000 ,1620000000000 ,1616812357580 -1616812357606 ,112.5730161,26.88987676,58.87101364,179.9859291,180.3467582,6.7531314,0.060997124,1620000000000 ,1620000000000 ,1620000000000 ,1616812357590 -1616812357616 ,112.5730161,26.88987615,58.87138748,179.9854647,180.3454073,6.754865,0.061015282,1620000000000 ,1620000000000 ,1620000000000 ,1616812357600 -1616812357629 ,112.573016,26.88987554,58.87172699,179.9865302,180.3433853,6.7553835,0.06101818,1620000000000 ,1620000000000 ,1620000000000 ,1616812357610 -1616812357636 ,112.573016,26.88987493,58.87204361,179.9882514,180.3352667,6.75733,0.061036146,1620000000000 ,1620000000000 ,1620000000000 ,1616812357620 -1616812357646 ,112.573016,26.88987432,58.8723526,179.98541,180.3357932,6.7576394,0.061041566,1620000000000 ,1620000000000 ,1620000000000 ,1616812357630 -1616812357657 ,112.573016,26.88987371,58.87266159,179.984044,180.3352192,6.7596035,0.061053058,1620000000000 ,1620000000000 ,1620000000000 ,1616812357640 -1616812357667 ,112.573016,26.8898731,58.8729744,179.9815851,180.3364635,6.7614117,0.061074112,1620000000000 ,1620000000000 ,1620000000000 ,1616812357650 -1616812357678 ,112.573016,26.88987249,58.87330627,179.9789077,180.3454856,6.7632594,0.061088889,1620000000000 ,1620000000000 ,1620000000000 ,1616812357660 -1616812357685 ,112.573016,26.88987188,58.87362289,179.9783886,180.3279912,6.76531,0.061106852,1620000000000 ,1620000000000 ,1620000000000 ,1616812357670 -1616812357696 ,112.573016,26.88987127,58.87389374,179.9775143,180.3197245,6.7666435,0.061122641,1620000000000 ,1620000000000 ,1620000000000 ,1616812357680 -1616812357706 ,112.573016,26.88987066,58.87412262,179.9779241,180.3219624,6.7682614,0.061133024,1620000000000 ,1620000000000 ,1620000000000 ,1616812357690 -1616812357718 ,112.573016,26.88987004,58.87431335,179.976886,180.3216037,6.7700105,0.061145516,1620000000000 ,1620000000000 ,1620000000000 ,1616812357700 -1616812357731 ,112.573016,26.88986943,58.87448883,179.9762849,180.3224392,6.770797,0.06115424,1620000000000 ,1620000000000 ,1620000000000 ,1616812357710 -1616812357739 ,112.573016,26.88986882,58.87464142,179.9748096,180.3113683,6.7725725,0.061170709,1620000000000 ,1620000000000 ,1620000000000 ,1616812357720 -1616812357750 ,112.573016,26.88986821,58.87475967,179.975274,180.3085578,6.77452,0.06118587,1620000000000 ,1620000000000 ,1620000000000 ,1616812357730 -1616812357760 ,112.573016,26.8898676,58.87483978,179.9735255,180.3048618,6.775614,0.061196652,1620000000000 ,1620000000000 ,1620000000000 ,1616812357740 -1616812357769 ,112.573016,26.88986699,58.87488174,179.9712852,180.2997078,6.7777176,0.061210146,1620000000000 ,1620000000000 ,1620000000000 ,1616812357750 -1616812357778 ,112.573016,26.88986637,58.874897,179.9701924,180.2926196,6.7792664,0.061225321,1620000000000 ,1620000000000 ,1620000000000 ,1616812357760 -1616812357789 ,112.573016,26.88986576,58.87489319,179.9683346,180.3108512,6.780852,0.061239193,1620000000000 ,1620000000000 ,1620000000000 ,1616812357770 -1616812357798 ,112.573016,26.88986515,58.87490082,179.9671324,180.3102086,6.782872,0.061256346,1620000000000 ,1620000000000 ,1620000000000 ,1616812357780 -1616812357809 ,112.573016,26.88986454,58.87495041,179.9669412,180.3025268,6.781442,0.061250728,1620000000000 ,1620000000000 ,1620000000000 ,1616812357790 -1616812357821 ,112.573016,26.88986392,58.87508011,179.9680887,180.3054847,6.782522,0.061260036,1620000000000 ,1620000000000 ,1620000000000 ,1616812357800 -1616812357829 ,112.573016,26.88986331,58.87529373,179.9679521,180.3068072,6.7823906,0.06126269,1620000000000 ,1620000000000 ,1620000000000 ,1616812357810 -1616812357840 ,112.573016,26.8898627,58.87559128,179.9671871,180.3134569,6.7824707,0.061264716,1620000000000 ,1620000000000 ,1620000000000 ,1616812357820 -1616812357850 ,112.573016,26.88986208,58.87593079,179.9689356,180.3202802,6.7825775,0.061268011,1620000000000 ,1620000000000 ,1620000000000 ,1616812357830 -1616812357859 ,112.573016,26.88986147,58.87623596,179.9704656,180.324427,6.784967,0.06127873,1620000000000 ,1620000000000 ,1620000000000 ,1616812357840 -1616812357869 ,112.573016,26.88986086,58.87643433,179.9715311,180.3348735,6.7901893,0.06132154,1620000000000 ,1620000000000 ,1620000000000 ,1616812357850 -1616812357880 ,112.573016,26.88986025,58.87648392,179.9714764,180.356786,6.7924647,0.061341474,1620000000000 ,1620000000000 ,1620000000000 ,1616812357860 -1616812357889 ,112.573016,26.88985963,58.8764534,179.97093,180.3678393,6.7954545,0.061363578,1620000000000 ,1620000000000 ,1620000000000 ,1616812357870 -1616812357899 ,112.573016,26.88985902,58.8764801,179.9692088,180.3824842,6.7925973,0.061355514,1620000000000 ,1620000000000 ,1620000000000 ,1616812357880 -1616812357914 ,112.573016,26.88985841,58.87666702,179.9672417,180.3780436,6.7910757,0.061340252,1620000000000 ,1620000000000 ,1620000000000 ,1616812357890 -1616812357922 ,112.5730159,26.88985779,58.87696457,179.9677062,180.3654636,6.7914333,0.06134228,1620000000000 ,1620000000000 ,1620000000000 ,1616812357900 -1616812357930 ,112.5730159,26.88985718,58.87727737,179.9688263,180.3704222,6.791562,0.061344764,1620000000000 ,1620000000000 ,1620000000000 ,1616812357910 -1616812357940 ,112.5730159,26.88985656,58.87747955,179.9722961,180.3740139,6.795143,0.061366545,1620000000000 ,1620000000000 ,1620000000000 ,1616812357920 -1616812357950 ,112.5730159,26.88985595,58.87756348,179.9754926,180.3754939,6.79717,0.061385097,1620000000000 ,1620000000000 ,1620000000000 ,1616812357930 -1616812357961 ,112.5730159,26.88985534,58.87761688,179.9760937,180.3720914,6.7979007,0.061394545,1620000000000 ,1620000000000 ,1620000000000 ,1616812357940 -1616812357971 ,112.5730159,26.88985472,58.87771225,179.9762303,180.364134,6.796682,0.061391174,1620000000000 ,1620000000000 ,1620000000000 ,1616812357950 -1616812357981 ,112.5730159,26.88985411,58.8778801,179.9797,180.3729032,6.796202,0.061380104,1620000000000 ,1620000000000 ,1620000000000 ,1616812357960 -1616812357991 ,112.5730159,26.8898535,58.87807083,179.9824867,180.3846759,6.7977457,0.061392248,1620000000000 ,1620000000000 ,1620000000000 ,1616812357970 -1616812358000 ,112.5730159,26.88985288,58.87824249,179.9854374,180.3776162,6.7991343,0.061406667,1620000000000 ,1620000000000 ,1620000000000 ,1616812357980 -1616812358010 ,112.5730159,26.88985227,58.87837601,179.9871859,180.3623744,6.8008714,0.061419416,1620000000000 ,1620000000000 ,1620000000000 ,1616812357990 -1616812358022 ,112.5730159,26.88985165,58.87845993,179.9889071,180.3579643,6.801658,0.061426373,1620000000000 ,1620000000000 ,1620000000000 ,1616812358000 -1616812358031 ,112.5730159,26.88985104,58.87851334,179.9914752,180.3813798,6.802679,0.061432857,1620000000000 ,1620000000000 ,1620000000000 ,1616812358010 -1616812358041 ,112.5730159,26.88985042,58.8785553,179.9969667,180.3949501,6.8020687,0.061431707,1620000000000 ,1620000000000 ,1620000000000 ,1616812358020 -1616812358051 ,112.5730159,26.88984981,58.87862015,180.0020211,180.4005774,6.801187,0.061424883,1620000000000 ,1620000000000 ,1620000000000 ,1616812358030 -1616812358061 ,112.5730159,26.8898492,58.87872696,180.0044526,180.3956766,6.8013024,0.061424075,1620000000000 ,1620000000000 ,1620000000000 ,1616812358040 -1616812358072 ,112.5730159,26.88984858,58.87886047,180.0083321,180.3997709,6.802426,0.061433524,1620000000000 ,1620000000000 ,1620000000000 ,1616812358050 -1616812358083 ,112.5730159,26.88984797,58.8789711,180.0131406,180.4138677,6.804277,0.061449283,1620000000000 ,1620000000000 ,1620000000000 ,1616812358060 -1616812358092 ,112.5730159,26.88984735,58.87906265,180.0160093,180.4074841,6.805291,0.061458792,1620000000000 ,1620000000000 ,1620000000000 ,1616812358070 -1616812358103 ,112.5730159,26.88984674,58.87918854,180.0198615,180.401238,6.8053565,0.061459714,1620000000000 ,1620000000000 ,1620000000000 ,1616812358080 -1616812358113 ,112.5730159,26.88984612,58.8793869,180.0237137,180.4003949,6.804474,0.06145939,1620000000000 ,1620000000000 ,1620000000000 ,1616812358090 -1616812358125 ,112.5730159,26.88984551,58.87961197,180.0276206,180.4083132,6.804851,0.061458236,1620000000000 ,1620000000000 ,1620000000000 ,1616812358100 -1616812358132 ,112.5730159,26.88984489,58.87982559,180.0298336,180.4249935,6.8057523,0.061468179,1620000000000 ,1620000000000 ,1620000000000 ,1616812358110 -1616812358142 ,112.5730159,26.88984428,58.88002777,180.0344235,180.4223418,6.80521,0.061464666,1620000000000 ,1620000000000 ,1620000000000 ,1616812358120 -1616812358151 ,112.5730159,26.88984366,58.88027954,180.03609,180.4173771,6.8054967,0.061466368,1620000000000 ,1620000000000 ,1620000000000 ,1616812358130 -1616812358162 ,112.5730158,26.88984305,58.88061142,180.0404614,180.4316689,6.805521,0.061469814,1620000000000 ,1620000000000 ,1620000000000 ,1616812358140 -1616812358172 ,112.5730158,26.88984244,58.88100815,180.0451878,180.4402887,6.806661,0.061481587,1620000000000 ,1620000000000 ,1620000000000 ,1616812358150 -1616812358183 ,112.5730158,26.88984182,58.88143921,180.0490947,180.4657643,6.806731,0.061485623,1620000000000 ,1620000000000 ,1620000000000 ,1616812358160 -1616812358196 ,112.5730158,26.88984121,58.88190842,180.0524552,180.4853521,6.806,0.061479555,1620000000000 ,1620000000000 ,1620000000000 ,1616812358170 -1616812358204 ,112.5730158,26.88984059,58.88243103,180.0555697,180.493745,6.806143,0.061482526,1620000000000 ,1620000000000 ,1620000000000 ,1616812358180 -1616812358213 ,112.5730158,26.88983998,58.88298798,180.0584657,180.5042302,6.806918,0.061488954,1620000000000 ,1620000000000 ,1620000000000 ,1616812358190 -1616812358223 ,112.5730158,26.88983936,58.8840065,180.0477833,180.2146556,6.828519,0.061953378,1620000000000 ,1620000000000 ,1620000000000 ,1616812358200 -1616812358232 ,112.5730158,26.88983873,58.88570023,180.051335,179.790651,6.8298473,0.062607059,1620000000000 ,1620000000000 ,1620000000000 ,1616812358210 -1616812358244 ,112.5730158,26.8898381,58.88743591,180.0519634,179.7915143,6.829943,0.062609313,1620000000000 ,1620000000000 ,1620000000000 ,1616812358220 -1616812358255 ,112.5730158,26.88983748,58.88921356,180.0522366,179.7835724,6.8301945,0.062612011,1620000000000 ,1620000000000 ,1620000000000 ,1616812358230 -1616812358266 ,112.5730158,26.88983685,58.89095306,180.0541764,179.7791716,6.8317146,0.062625254,1620000000000 ,1620000000000 ,1620000000000 ,1616812358240 -1616812358274 ,112.5730158,26.88983623,58.89260864,180.0575368,179.795146,6.8337092,0.062637747,1620000000000 ,1620000000000 ,1620000000000 ,1616812358250 -1616812358283 ,112.5730158,26.8898356,58.89421082,180.0597498,179.8113547,6.83553,0.062654684,1620000000000 ,1620000000000 ,1620000000000 ,1616812358270 -1616812358293 ,112.5730158,26.88983497,58.89583588,180.0612525,179.7953083,6.8355274,0.062658374,1620000000000 ,1620000000000 ,1620000000000 ,1616812358280 -1616812358303 ,112.5730158,26.88983435,58.89746475,180.0645036,179.7719558,6.83724,0.062670606,1620000000000 ,1620000000000 ,1620000000000 ,1616812358280 -1616812358314 ,112.5730158,26.88983309,58.90052032,180.070842,179.7746639,6.842602,0.125410551,1620000000000 ,1620000000000 ,1620000000000 ,1616812358300 -1616812358324 ,112.5730158,26.88983246,58.90190887,180.0740659,179.8067001,6.843705,0.062722192,1620000000000 ,1620000000000 ,1620000000000 ,1616812358310 -1616812358335 ,112.5730158,26.88983184,58.90331268,180.0756232,179.8062854,6.844842,0.062735878,1620000000000 ,1620000000000 ,1620000000000 ,1616812358320 -1616812358343 ,112.5730158,26.88983121,58.90478134,180.0770165,179.7865335,6.845853,0.062745896,1620000000000 ,1620000000000 ,1620000000000 ,1616812358330 -1616812358354 ,112.5730159,26.88983058,58.90628433,180.079612,179.7786364,6.848584,0.062767715,1620000000000 ,1620000000000 ,1620000000000 ,1616812358340 -1616812358364 ,112.5730159,26.88982995,58.90774155,180.0816884,179.7821206,6.8504033,0.062784129,1620000000000 ,1620000000000 ,1620000000000 ,1616812358350 -1616812358376 ,112.5730159,26.88982933,58.90913391,180.0833003,179.8000475,6.8530545,0.062805798,1620000000000 ,1620000000000 ,1620000000000 ,1616812358360 -1616812358385 ,112.5730159,26.8898287,58.91046143,180.0849942,179.7933362,6.857073,0.062836215,1620000000000 ,1620000000000 ,1620000000000 ,1616812358370 -1616812358394 ,112.5730159,26.88982807,58.91173172,180.0873165,179.7949463,6.860552,0.062867432,1620000000000 ,1620000000000 ,1620000000000 ,1616812358380 -1616812358412 ,112.5730159,26.88982807,58.91173172,180.0873165,-400,6.860552,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812358390 -1616812358416 ,112.5730159,26.88982681,58.91419601,180.0914692,179.7981488,6.8655896,0.125806771,1620000000000 ,1620000000000 ,1620000000000 ,1616812358400 -1616812358426 ,112.5730159,26.88982618,58.91543198,180.0948023,179.8048826,6.86763,0.062933322,1620000000000 ,1620000000000 ,1620000000000 ,1616812358410 -1616812358439 ,112.5730159,26.88982555,58.91665268,180.0978623,179.812458,6.8707857,0.062957712,1620000000000 ,1620000000000 ,1620000000000 ,1616812358420 -1616812358445 ,112.5730159,26.88982492,58.91785431,180.098354,179.8052658,6.8749356,0.062994039,1620000000000 ,1620000000000 ,1620000000000 ,1616812358430 -1616812358455 ,112.5730159,26.88982429,58.91905212,180.0982448,179.800498,6.878817,0.063028851,1620000000000 ,1620000000000 ,1620000000000 ,1616812358440 -1616812358464 ,112.5730159,26.88982367,58.91976929,180.0997747,180.1189132,6.8821054,0.062608054,1620000000000 ,1620000000000 ,1620000000000 ,1616812358450 -1616812358475 ,112.5730159,26.88982304,58.91999054,180.1006217,180.4487469,6.8873835,0.062201095,1620000000000 ,1620000000000 ,1620000000000 ,1616812358460 -1616812358484 ,112.5730159,26.88982242,58.92020416,180.1022063,180.4612936,6.891141,0.062240895,1620000000000 ,1620000000000 ,1620000000000 ,1616812358470 -1616812358496 ,112.5730159,26.8898218,58.92044449,180.1014686,180.4507986,6.893118,0.062259019,1620000000000 ,1620000000000 ,1620000000000 ,1616812358480 -1616812358508 ,112.5730159,26.88982118,58.92074203,180.1006763,180.4423999,6.896929,0.062294683,1620000000000 ,1620000000000 ,1620000000000 ,1616812358490 -1616812358516 ,112.5730158,26.88982055,58.92108917,180.1007036,180.4529484,6.89804,0.06231352,1620000000000 ,1620000000000 ,1620000000000 ,1616812358500 -1616812358525 ,112.5730158,26.88981993,58.92145538,180.1009222,180.4539174,6.9016767,0.062340326,1620000000000 ,1620000000000 ,1620000000000 ,1616812358510 -1616812358535 ,112.5730158,26.88981931,58.9218483,180.1002119,180.4522335,6.904279,0.062369716,1620000000000 ,1620000000000 ,1620000000000 ,1616812358520 -1616812358547 ,112.5730158,26.88981868,58.92227173,180.0987092,180.4513385,6.9089727,0.06240607,1620000000000 ,1620000000000 ,1620000000000 ,1616812358530 -1616812358559 ,112.5730158,26.88981806,58.92271042,180.0984633,180.4432431,6.9144416,0.062459258,1620000000000 ,1620000000000 ,1620000000000 ,1616812358540 -1616812358566 ,112.5730158,26.88981743,58.92316818,180.0963323,180.4425866,6.9168043,0.062484026,1620000000000 ,1620000000000 ,1620000000000 ,1616812358550 -1616812358576 ,112.5730158,26.88981681,58.92367554,180.0958132,180.441383,6.921261,0.062524354,1620000000000 ,1620000000000 ,1620000000000 ,1616812358560 -1616812358585 ,112.5730158,26.88981618,58.92424011,180.0968514,180.4437087,6.9238844,0.062559063,1620000000000 ,1620000000000 ,1620000000000 ,1616812358570 -1616812358596 ,112.5730158,26.88981556,58.92483521,180.0989278,180.4455476,6.9269495,0.06257938,1620000000000 ,1620000000000 ,1620000000000 ,1616812358580 -1616812358609 ,112.5730158,26.88981493,58.9254303,180.0999113,180.4416719,6.9312525,0.062621358,1620000000000 ,1620000000000 ,1620000000000 ,1616812358590 -1616812358620 ,112.5730158,26.8898143,58.92604065,180.1015232,180.4368434,6.9331884,0.062643809,1620000000000 ,1620000000000 ,1620000000000 ,1616812358600 -1616812358632 ,112.5730158,26.88981368,58.92667007,180.0995835,180.4367614,6.9380183,0.062679805,1620000000000 ,1620000000000 ,1620000000000 ,1616812358610 -1616812358637 ,112.5730158,26.88981305,58.92730331,180.099884,180.441837,6.94272,0.062726028,1620000000000 ,1620000000000 ,1620000000000 ,1616812358620 -1616812358646 ,112.5730158,26.88981242,58.92793274,180.1006217,180.4509916,6.9458556,0.06275811,1620000000000 ,1620000000000 ,1620000000000 ,1616812358630 -1616812358656 ,112.5730158,26.88981179,58.92856979,180.0987365,180.4512713,6.950432,0.062798064,1620000000000 ,1620000000000 ,1620000000000 ,1616812358640 -1616812358667 ,112.5730158,26.88981117,58.92923355,180.0978076,180.4389436,6.9533777,0.062829159,1620000000000 ,1620000000000 ,1620000000000 ,1616812358650 -1616812358678 ,112.5730158,26.88981054,58.92989349,180.0962777,180.4271696,6.9555936,0.062849762,1620000000000 ,1620000000000 ,1620000000000 ,1616812358660 -1616812358687 ,112.5730158,26.88980991,58.93052673,180.0943379,180.4260518,6.959422,0.062881648,1620000000000 ,1620000000000 ,1620000000000 ,1616812358670 -1616812358696 ,112.5730158,26.88980928,58.93110657,180.0946111,180.4240447,6.9622974,0.062907567,1620000000000 ,1620000000000 ,1620000000000 ,1616812358680 -1616812358707 ,112.5730158,26.88980865,58.9316597,180.0957859,180.4094934,6.9655457,0.062935434,1620000000000 ,1620000000000 ,1620000000000 ,1616812358690 -1616812358717 ,112.5730158,26.88980802,58.93219376,180.0966055,180.3779001,6.9698114,0.062972393,1620000000000 ,1620000000000 ,1620000000000 ,1616812358700 -1616812358728 ,112.5730157,26.88980739,58.93268204,180.0981082,180.3510384,6.973362,0.063001751,1620000000000 ,1620000000000 ,1620000000000 ,1616812358710 -1616812358738 ,112.5730157,26.88980676,58.93309402,180.0988185,180.3510351,6.9775577,0.063036441,1620000000000 ,1620000000000 ,1620000000000 ,1616812358720 -1616812358750 ,112.5730157,26.88980613,58.93341446,180.0972339,180.3532836,6.983473,0.063084211,1620000000000 ,1620000000000 ,1620000000000 ,1616812358730 -1616812358757 ,112.5730157,26.8898055,58.93365479,180.0980808,180.3527343,6.987439,0.063120351,1620000000000 ,1620000000000 ,1620000000000 ,1616812358740 -1616812358768 ,112.5730157,26.88980487,58.93383408,180.0989005,180.3570182,6.990032,0.063146382,1620000000000 ,1620000000000 ,1620000000000 ,1616812358750 -1616812358777 ,112.5730157,26.88980423,58.93396378,180.0972339,180.3485177,6.9950495,0.06317777,1620000000000 ,1620000000000 ,1620000000000 ,1616812358760 -1616812358790 ,112.5730157,26.8898036,58.93401337,180.0957859,180.3667103,7.000956,0.063231312,1620000000000 ,1620000000000 ,1620000000000 ,1616812358770 -1616812358798 ,112.5730157,26.88980297,58.93396759,180.0952941,180.400724,7.004896,0.063264839,1620000000000 ,1620000000000 ,1620000000000 ,1616812358780 -1616812358808 ,112.5730157,26.88980234,58.93381119,180.0943925,180.4093389,7.0099463,0.063305111,1620000000000 ,1620000000000 ,1620000000000 ,1616812358790 -1616812358818 ,112.5730157,26.8898017,58.93357086,180.0930538,180.4093983,7.0137715,0.063340675,1620000000000 ,1620000000000 ,1620000000000 ,1616812358800 -1616812358828 ,112.5730157,26.88980107,58.9332428,180.0887098,180.4119041,7.0182242,0.063371642,1620000000000 ,1620000000000 ,1620000000000 ,1616812358810 -1616812358838 ,112.5730157,26.88980043,58.93286896,180.0843385,180.4150333,7.0241814,0.063424147,1620000000000 ,1620000000000 ,1620000000000 ,1616812358820 -1616812358848 ,112.5730157,26.8897998,58.93242645,180.0802677,180.4160644,7.0284166,0.063461296,1620000000000 ,1620000000000 ,1620000000000 ,1616812358830 -1616812358861 ,112.5730157,26.88979917,58.93194199,180.0761969,180.3987935,7.033725,0.063504734,1620000000000 ,1620000000000 ,1620000000000 ,1616812358840 -1616812358869 ,112.5730157,26.88979853,58.93141174,180.071689,180.4066037,7.0373797,0.063536711,1620000000000 ,1620000000000 ,1620000000000 ,1616812358850 -1616812358878 ,112.5730157,26.88979789,58.93082809,180.0670445,180.411359,7.0411663,0.063571015,1620000000000 ,1620000000000 ,1620000000000 ,1616812358860 -1616812358888 ,112.5730157,26.88979726,58.93017197,180.0630283,180.4065012,7.0456214,0.0636062,1620000000000 ,1620000000000 ,1620000000000 ,1616812358870 -1616812358898 ,112.5730157,26.88979662,58.92950439,180.0570451,180.4188402,7.0499907,0.063645885,1620000000000 ,1620000000000 ,1620000000000 ,1616812358880 -1616812358911 ,112.5730157,26.88979598,58.9288559,180.0503242,180.426085,7.0543575,0.063684887,1620000000000 ,1620000000000 ,1620000000000 ,1616812358890 -1616812358919 ,112.5730157,26.88979535,58.92823792,180.0442863,180.4382139,7.0573583,0.063715835,1620000000000 ,1620000000000 ,1620000000000 ,1616812358900 -1616812358935 ,112.5730157,26.88979471,58.92765808,180.038303,180.4506865,7.061349,0.063747644,1620000000000 ,1620000000000 ,1620000000000 ,1616812358910 -1616812358938 ,112.5730157,26.88979407,58.92715836,180.0313089,180.4607481,7.0635753,0.063777814,1620000000000 ,1620000000000 ,1620000000000 ,1616812358920 -1616812358949 ,112.5730156,26.88979343,58.92674255,180.0241509,180.4666633,7.06468,0.063791559,1620000000000 ,1620000000000 ,1620000000000 ,1616812358930 -1616812358959 ,112.5730156,26.8897928,58.92638779,180.0164737,180.4753271,7.0692463,0.06382658,1620000000000 ,1620000000000 ,1620000000000 ,1616812358940 -1616812358969 ,112.5730156,26.88979216,58.92606735,180.0089059,180.4643506,7.0710135,0.063853087,1620000000000 ,1620000000000 ,1620000000000 ,1616812358950 -1616812358988 ,112.5730156,26.88979152,58.92578888,180.0026221,180.4769556,7.073779,0.063873095,1620000000000 ,1620000000000 ,1620000000000 ,1616812358960 -1616812358994 ,112.5730156,26.88979088,58.92560577,179.9950816,180.4752073,7.076542,0.06390624,1620000000000 ,1620000000000 ,1620000000000 ,1616812358970 -1616812358999 ,112.5730156,26.88979024,58.92552567,179.9865029,180.4514,7.07769,0.06391636,1620000000000 ,1620000000000 ,1620000000000 ,1616812358980 -1616812359009 ,112.5730156,26.8897896,58.92555618,179.9776509,180.4381006,7.0813484,0.063949019,1620000000000 ,1620000000000 ,1620000000000 ,1616812358990 -1616812359019 ,112.5730156,26.88978896,58.92565918,179.9712306,180.40424,7.083356,0.063975485,1620000000000 ,1620000000000 ,1620000000000 ,1616812359000 -1616812359030 ,112.5730156,26.88978832,58.92584229,179.964455,180.3918507,7.08718,0.064008187,1620000000000 ,1620000000000 ,1620000000000 ,1616812359010 -1616812359041 ,112.5730156,26.88978768,58.92609787,179.9609306,180.3718376,7.0912232,0.064047266,1620000000000 ,1620000000000 ,1620000000000 ,1616812359020 -1616812359050 ,112.5730156,26.88978704,58.92638397,179.9586903,180.3452685,7.094776,0.064079109,1620000000000 ,1620000000000 ,1620000000000 ,1616812359030 -1616812359061 ,112.5730156,26.8897864,58.92671585,179.9538819,180.3321472,7.0987988,0.064116188,1620000000000 ,1620000000000 ,1620000000000 ,1616812359040 -1616812359071 ,112.5730156,26.88978576,58.92708969,179.9512591,180.314264,7.1005225,0.064138976,1620000000000 ,1620000000000 ,1620000000000 ,1616812359050 -1616812359080 ,112.5730156,26.88978512,58.92751312,179.9487729,180.3006715,7.1032124,0.064163922,1620000000000 ,1620000000000 ,1620000000000 ,1616812359060 -1616812359090 ,112.5730156,26.88978447,58.92799377,179.9463687,180.2977136,7.106521,0.064193445,1620000000000 ,1620000000000 ,1620000000000 ,1616812359070 -1616812359101 ,112.5730156,26.88978383,58.9285202,179.9418061,180.2875263,7.112167,0.064240332,1620000000000 ,1620000000000 ,1620000000000 ,1616812359080 -1616812359112 ,112.5730156,26.88978319,58.92909241,179.9375167,180.2868012,7.116287,0.064283779,1620000000000 ,1620000000000 ,1620000000000 ,1616812359090 -1616812359122 ,112.5730156,26.88978255,58.9296875,179.9333093,180.2757183,7.1193333,0.0643145,1620000000000 ,1620000000000 ,1620000000000 ,1616812359100 -1616812359138 ,112.5730156,26.8897819,58.93028641,179.9311783,180.2707455,7.1214542,0.064335813,1620000000000 ,1620000000000 ,1620000000000 ,1616812359110 -1616812359144 ,112.5730156,26.88978126,58.93090439,179.9271075,180.2705337,7.1233797,0.064356091,1620000000000 ,1620000000000 ,1620000000000 ,1616812359120 -1616812359152 ,112.5730156,26.88978062,58.93152618,179.9242662,180.2720215,7.1241937,0.064364787,1620000000000 ,1620000000000 ,1620000000000 ,1616812359130 -1616812359163 ,112.5730156,26.88977997,58.93218231,179.9230641,180.2640088,7.1308193,0.064408888,1620000000000 ,1620000000000 ,1620000000000 ,1616812359140 -1616812359173 ,112.5730156,26.88977933,58.93281937,179.921698,180.2442141,7.1317415,0.064439715,1620000000000 ,1620000000000 ,1620000000000 ,1616812359150 -1616812359182 ,112.5730156,26.88977868,58.93336105,179.9220805,180.2446387,7.1364117,0.064460008,1620000000000 ,1620000000000 ,1620000000000 ,1616812359160 -1616812359192 ,112.5730156,26.88977804,58.93382263,179.9212609,180.2646769,7.141295,0.064506876,1620000000000 ,1620000000000 ,1620000000000 ,1616812359170 -1616812359202 ,112.5730156,26.88977739,58.93425369,179.9199768,180.2655655,7.1431212,0.064525895,1620000000000 ,1620000000000 ,1620000000000 ,1616812359180 -1616812359212 ,112.5730156,26.88977675,58.9346962,179.9185288,180.2268071,7.1487446,0.064574072,1620000000000 ,1620000000000 ,1620000000000 ,1616812359190 -1616812359223 ,112.5730155,26.8897761,58.93610001,179.9056881,180.4539912,7.122123,0.064305185,1620000000000 ,1620000000000 ,1620000000000 ,1616812359200 -1616812359234 ,112.5730155,26.88977547,58.93866348,179.9039669,180.8846027,7.124596,0.063814941,1620000000000 ,1620000000000 ,1620000000000 ,1616812359210 -1616812359244 ,112.5730155,26.88977483,58.94115829,179.9031199,180.8764326,7.1286798,0.06385011,1620000000000 ,1620000000000 ,1620000000000 ,1616812359220 -1616812359253 ,112.5730155,26.88977419,58.94356155,179.9033385,180.886897,7.13446,0.063892985,1620000000000 ,1620000000000 ,1620000000000 ,1616812359230 -1616812359262 ,112.5730155,26.88977355,58.94591904,179.9053056,180.8818845,7.139125,0.06394126,1620000000000 ,1620000000000 ,1620000000000 ,1616812359240 -1616812359272 ,112.5730155,26.88977291,58.94828415,179.9058247,180.8625254,7.139294,0.06395127,1620000000000 ,1620000000000 ,1620000000000 ,1616812359250 -1616812359283 ,112.5730155,26.88977227,58.95070648,179.9072453,180.8462474,7.1402254,0.063955002,1620000000000 ,1620000000000 ,1620000000000 ,1616812359260 -1616812359294 ,112.5730155,26.88977163,58.95308304,179.9078737,180.8408408,7.1438947,0.063981566,1620000000000 ,1620000000000 ,1620000000000 ,1616812359280 -1616812359303 ,112.5730155,26.88977099,58.95537186,179.9116167,180.8564817,7.1494894,0.064024129,1620000000000 ,1620000000000 ,1620000000000 ,1616812359280 -1616812359313 ,112.5730155,26.88977035,58.95756149,179.9128188,180.8531784,7.152685,0.064057642,1620000000000 ,1620000000000 ,1620000000000 ,1616812359300 -1616812359323 ,112.5730154,26.88976907,58.96183395,179.9166437,180.8355997,7.15715,0.128171076,1620000000000 ,1620000000000 ,1620000000000 ,1616812359310 -1616812359333 ,112.5730154,26.88976843,58.96396637,179.9186108,180.8388471,7.15942,0.064114591,1620000000000 ,1620000000000 ,1620000000000 ,1616812359320 -1616812359345 ,112.5730154,26.88976843,58.96396637,179.9186108,-400,7.15942,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812359330 -1616812359354 ,112.5730154,26.88976714,58.96833801,179.9237471,180.8372329,7.163202,0.128280133,1620000000000 ,1620000000000 ,1620000000000 ,1616812359340 -1616812359364 ,112.5730154,26.8897665,58.97057343,179.9289107,180.8372823,7.1655684,0.064170324,1620000000000 ,1620000000000 ,1620000000000 ,1616812359350 -1616812359374 ,112.5730154,26.88976586,58.97283173,179.9336918,180.8560783,7.1684465,0.064198583,1620000000000 ,1620000000000 ,1620000000000 ,1616812359360 -1616812359383 ,112.5730154,26.88976586,58.97283173,179.9336918,-400,7.1684465,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812359370 -1616812359394 ,112.5730154,26.88976458,58.97748947,179.9422432,180.8910854,7.1713243,0.12845133,1620000000000 ,1620000000000 ,1620000000000 ,1616812359380 -1616812359404 ,112.5730154,26.88976458,58.97748947,179.9422432,-400,7.1713243,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812359390 -1616812359417 ,112.5730154,26.88976329,58.98245239,179.9479806,180.9199781,7.1717634,0.128471209,1620000000000 ,1620000000000 ,1620000000000 ,1616812359400 -1616812359425 ,112.5730153,26.88976265,58.98496246,179.9514503,180.9510856,7.1728535,0.064248018,1620000000000 ,1620000000000 ,1620000000000 ,1616812359410 -1616812359435 ,112.5730153,26.88976201,58.98743057,179.953636,180.9736668,7.17577,0.064268863,1620000000000 ,1620000000000 ,1620000000000 ,1616812359420 -1616812359444 ,112.5730153,26.88976136,58.98989487,179.9545922,180.9914196,7.1811547,0.064313401,1620000000000 ,1620000000000 ,1620000000000 ,1616812359430 -1616812359455 ,112.5730153,26.88976072,58.99237823,179.9578434,180.9814846,7.1825404,0.0643325,1620000000000 ,1620000000000 ,1620000000000 ,1616812359440 -1616812359465 ,112.5730153,26.88976007,58.99389648,179.9608487,180.724569,7.186495,0.064634117,1620000000000 ,1620000000000 ,1620000000000 ,1616812359450 -1616812359476 ,112.5730153,26.88975942,58.9944191,179.9634168,180.4780555,7.1887727,0.064936106,1620000000000 ,1620000000000 ,1620000000000 ,1616812359460 -1616812359485 ,112.5730153,26.88975878,58.99489594,179.9674876,180.4820318,7.19027,0.064941661,1620000000000 ,1620000000000 ,1620000000000 ,1616812359470 -1616812359495 ,112.5730153,26.88975813,58.99531937,179.9697279,180.47814,7.1917167,0.064959198,1620000000000 ,1620000000000 ,1620000000000 ,1616812359480 -1616812359507 ,112.5730153,26.88975748,58.99571991,179.9710666,180.4847368,7.191722,0.06495856,1620000000000 ,1620000000000 ,1620000000000 ,1616812359490 -1616812359516 ,112.5730153,26.88975683,58.99616623,179.9751101,180.4889342,7.1937847,0.064974625,1620000000000 ,1620000000000 ,1620000000000 ,1616812359500 -1616812359528 ,112.5730153,26.88975618,58.99668121,179.9765035,180.4938003,7.1958995,0.064993427,1620000000000 ,1620000000000 ,1620000000000 ,1616812359510 -1616812359535 ,112.5730153,26.88975553,58.99728775,179.9805469,180.5069899,7.197691,0.065014475,1620000000000 ,1620000000000 ,1620000000000 ,1616812359520 -1616812359546 ,112.5730153,26.88975488,58.99796295,179.9856013,180.5187247,7.199484,0.065034151,1620000000000 ,1620000000000 ,1620000000000 ,1616812359530 -1616812359556 ,112.5730153,26.88975423,58.99868011,179.9897267,180.5345289,7.201401,0.065051552,1620000000000 ,1620000000000 ,1620000000000 ,1616812359540 -1616812359566 ,112.5730152,26.88975357,58.99940491,179.9934423,180.5553921,7.204541,0.065076807,1620000000000 ,1620000000000 ,1620000000000 ,1616812359550 -1616812359575 ,112.5730152,26.88975292,59.00012207,179.9979503,180.5849294,7.2053485,0.065090379,1620000000000 ,1620000000000 ,1620000000000 ,1616812359560 -1616812359586 ,112.5730152,26.88975227,59.00088501,180.0023216,180.6092048,7.2057476,0.065099312,1620000000000 ,1620000000000 ,1620000000000 ,1616812359570 -1616812359596 ,112.5730152,26.88975162,59.00173569,180.0068022,180.6116253,7.2052546,0.065098629,1620000000000 ,1620000000000 ,1620000000000 ,1616812359580 -1616812359609 ,112.5730152,26.88975097,59.00262451,180.0112008,180.6119776,7.206349,0.065102529,1620000000000 ,1620000000000 ,1620000000000 ,1616812359590 -1616812359618 ,112.5730152,26.88975032,59.00348663,180.0125942,180.6217387,7.2072268,0.065110362,1620000000000 ,1620000000000 ,1620000000000 ,1616812359600 -1616812359627 ,112.5730152,26.88974967,59.00429153,180.0162005,180.6307502,7.2106423,0.065135444,1620000000000 ,1620000000000 ,1620000000000 ,1616812359610 -1616812359639 ,112.5730152,26.88974902,59.00506973,180.0192331,180.6263642,7.2138624,0.065167213,1620000000000 ,1620000000000 ,1620000000000 ,1616812359620 -1616812359646 ,112.5730152,26.88974837,59.00584412,180.024588,180.6089168,7.2171197,0.065189877,1620000000000 ,1620000000000 ,1620000000000 ,1616812359630 -1616812359656 ,112.5730152,26.88974771,59.0066452,180.0278665,180.598035,7.2217116,0.065233701,1620000000000 ,1620000000000 ,1620000000000 ,1616812359640 -1616812359666 ,112.5730152,26.88974706,59.00746155,180.0313089,180.5725535,7.224297,0.06526288,1620000000000 ,1620000000000 ,1620000000000 ,1616812359650 -1616812359677 ,112.5730152,26.88974641,59.008255,180.0371282,180.5670537,7.226237,0.065279401,1620000000000 ,1620000000000 ,1620000000000 ,1616812359660 -1616812359686 ,112.5730152,26.88974575,59.00901413,180.0434393,180.5665989,7.2273912,0.065291272,1620000000000 ,1620000000000 ,1620000000000 ,1616812359670 -1616812359696 ,112.5730152,26.8897451,59.0097847,180.0487122,180.5755234,7.228359,0.065302441,1620000000000 ,1620000000000 ,1620000000000 ,1616812359680 -1616812359707 ,112.5730151,26.88974445,59.01059723,180.054231,180.5723334,7.2294116,0.065313582,1620000000000 ,1620000000000 ,1620000000000 ,1616812359690 -1616812359718 ,112.5730151,26.8897438,59.01141357,180.061471,180.5660022,7.230849,0.065324137,1620000000000 ,1620000000000 ,1620000000000 ,1616812359700 -1616812359729 ,112.5730151,26.88974314,59.0121994,180.068028,180.5934617,7.233736,0.065348652,1620000000000 ,1620000000000 ,1620000000000 ,1616812359710 -1616812359740 ,112.5730151,26.88974249,59.01296234,180.0728365,180.6075626,7.237481,0.065380602,1620000000000 ,1620000000000 ,1620000000000 ,1616812359720 -1616812359749 ,112.5730151,26.88974183,59.01371384,180.0761423,180.6084631,7.2407694,0.065412713,1620000000000 ,1620000000000 ,1620000000000 ,1616812359730 -1616812359760 ,112.5730151,26.88974118,59.01446915,180.0792568,180.6194174,7.241573,0.065426133,1620000000000 ,1620000000000 ,1620000000000 ,1616812359740 -1616812359769 ,112.5730151,26.88974053,59.01524734,180.0816884,180.6299492,7.2412367,0.065427646,1620000000000 ,1620000000000 ,1620000000000 ,1616812359750 -1616812359779 ,112.5730151,26.88973987,59.01607895,180.0825626,180.635569,7.2416506,0.065429754,1620000000000 ,1620000000000 ,1620000000000 ,1616812359760 -1616812359790 ,112.5730151,26.88973922,59.01697922,180.0849122,180.6253335,7.2419786,0.065438814,1620000000000 ,1620000000000 ,1620000000000 ,1616812359770 -1616812359801 ,112.5730151,26.88973856,59.01791763,180.0891469,180.5905612,7.241909,0.065438933,1620000000000 ,1620000000000 ,1620000000000 ,1616812359780 -1616812359810 ,112.5730151,26.88973791,59.01890182,180.0927806,180.5696608,7.2440643,0.065459201,1620000000000 ,1620000000000 ,1620000000000 ,1616812359790 -1616812359820 ,112.5730151,26.88973725,59.01991653,180.0976437,180.5789484,7.2456446,0.065475314,1620000000000 ,1620000000000 ,1620000000000 ,1616812359800 -1616812359830 ,112.5730151,26.8897366,59.02090073,180.1038728,180.5641452,7.24863,0.065500916,1620000000000 ,1620000000000 ,1620000000000 ,1616812359810 -1616812359840 ,112.5730151,26.88973594,59.02179718,180.1097468,180.5593957,7.25203,0.065529678,1620000000000 ,1620000000000 ,1620000000000 ,1616812359820 -1616812359850 ,112.5730151,26.88973529,59.0226326,180.1142001,180.5525413,7.2540545,0.065548424,1620000000000 ,1620000000000 ,1620000000000 ,1616812359830 -1616812359862 ,112.573015,26.88973463,59.02344894,180.1188992,180.537606,7.2556725,0.065562825,1620000000000 ,1620000000000 ,1620000000000 ,1616812359840 -1616812359871 ,112.573015,26.88973398,59.02425766,180.1225602,180.5236821,7.2570906,0.06557842,1620000000000 ,1620000000000 ,1620000000000 ,1616812359850 -1616812359880 ,112.573015,26.88973332,59.02505493,180.1278058,180.5231316,7.2566075,0.065580649,1620000000000 ,1620000000000 ,1620000000000 ,1616812359860 -1616812359891 ,112.573015,26.88973266,59.02587509,180.1333793,180.5348962,7.254718,0.065566458,1620000000000 ,1620000000000 ,1620000000000 ,1616812359870 -1616812359901 ,112.573015,26.88973201,59.02671432,180.1365211,180.5358796,7.2551413,0.065565266,1620000000000 ,1620000000000 ,1620000000000 ,1616812359880 -1616812359911 ,112.573015,26.88973135,59.02754211,180.1416848,180.5400578,7.257615,0.065583748,1620000000000 ,1620000000000 ,1620000000000 ,1616812359890 -1616812359926 ,112.573015,26.8897307,59.02829742,180.1477226,180.5713793,7.260715,0.065607332,1620000000000 ,1620000000000 ,1620000000000 ,1616812359900 -1616812359932 ,112.573015,26.88973004,59.02899551,180.1540884,180.6078567,7.263939,0.065637631,1620000000000 ,1620000000000 ,1620000000000 ,1616812359910 -1616812359941 ,112.573015,26.88972938,59.02965546,180.1581045,180.6211312,7.2658,0.065657367,1620000000000 ,1620000000000 ,1620000000000 ,1616812359920 -1616812359951 ,112.573015,26.88972873,59.03030014,180.1651806,180.6376764,7.2675815,0.065671041,1620000000000 ,1620000000000 ,1620000000000 ,1616812359930 -1616812359961 ,112.573015,26.88972807,59.03091812,180.1699617,180.664885,7.2675223,0.065674748,1620000000000 ,1620000000000 ,1620000000000 ,1616812359940 -1616812359974 ,112.573015,26.88972741,59.03153229,180.1752893,180.7186438,7.267692,0.065677308,1620000000000 ,1620000000000 ,1620000000000 ,1616812359950 -1616812359982 ,112.573015,26.88972676,59.03217316,180.1785678,180.7596762,7.2682233,0.065682768,1620000000000 ,1620000000000 ,1620000000000 ,1616812359960 -1616812359992 ,112.573015,26.8897261,59.03287888,180.1830484,180.7792676,7.269391,0.065691559,1620000000000 ,1620000000000 ,1620000000000 ,1616812359970 -1616812360002 ,112.5730149,26.88972544,59.03364182,180.1844691,180.7894256,7.2715063,0.065713253,1620000000000 ,1620000000000 ,1620000000000 ,1616812359980 -1616812360014 ,112.5730149,26.88972479,59.03439713,180.1868733,180.8195916,7.2738047,0.065735049,1620000000000 ,1620000000000 ,1620000000000 ,1616812359990 -1616812360022 ,112.5730149,26.88972413,59.0350914,180.189059,180.8554497,7.2777476,0.065760991,1620000000000 ,1620000000000 ,1620000000000 ,1616812360000 -1616812360032 ,112.5730149,26.88972347,59.03567505,180.1918457,180.8687268,7.2807846,0.065790136,1620000000000 ,1620000000000 ,1620000000000 ,1616812360010 -1616812360044 ,112.5730149,26.88972281,59.03611374,180.1945777,180.8688709,7.283744,0.065809777,1620000000000 ,1620000000000 ,1620000000000 ,1616812360020 -1616812360052 ,112.5730149,26.88972215,59.03639603,180.1975284,180.8654493,7.286984,0.065834063,1620000000000 ,1620000000000 ,1620000000000 ,1616812360030 -1616812360063 ,112.5730149,26.8897215,59.0365448,180.2002605,180.8659309,7.28729,0.06583591,1620000000000 ,1620000000000 ,1620000000000 ,1616812360040 -1616812360072 ,112.5730149,26.88972084,59.03662872,180.2002058,180.8682504,7.2886295,0.065840761,1620000000000 ,1620000000000 ,1620000000000 ,1616812360050 -1616812360083 ,112.5730149,26.88972018,59.03664017,180.2025281,180.8724093,7.290864,0.065857508,1620000000000 ,1620000000000 ,1620000000000 ,1616812360060 -1616812360092 ,112.5730149,26.88971952,59.03654861,180.2059978,180.8841341,7.29425,0.065881323,1620000000000 ,1620000000000 ,1620000000000 ,1616812360070 -1616812360110 ,112.5730148,26.88971886,59.03634644,180.2111068,180.8893614,7.296755,0.065900634,1620000000000 ,1620000000000 ,1620000000000 ,1616812360080 -1616812360114 ,112.5730148,26.8897182,59.03607178,180.2152049,180.8720243,7.297985,0.065911603,1620000000000 ,1620000000000 ,1620000000000 ,1616812360090 -1616812360123 ,112.5730148,26.88971754,59.03578186,180.2202319,180.8471281,7.298851,0.065916537,1620000000000 ,1620000000000 ,1620000000000 ,1616812360110 -1616812360134 ,112.5730148,26.88971688,59.03549194,180.2235651,180.845688,7.300001,0.065926712,1620000000000 ,1620000000000 ,1620000000000 ,1616812360120 -1616812360144 ,112.5730148,26.88971623,59.03523636,180.2272534,180.8396818,7.3008747,0.065935021,1620000000000 ,1620000000000 ,1620000000000 ,1616812360120 -1616812360153 ,112.5730148,26.88971557,59.03502655,180.2331273,180.8299389,7.2993746,0.065927063,1620000000000 ,1620000000000 ,1620000000000 ,1616812360140 -1616812360163 ,112.5730148,26.88971491,59.03487396,180.2370069,180.8290811,7.300234,0.065933394,1620000000000 ,1620000000000 ,1620000000000 ,1616812360150 -1616812360175 ,112.5730148,26.88971425,59.03473282,180.2413236,180.816972,7.300812,0.065935347,1620000000000 ,1620000000000 ,1620000000000 ,1616812360160 -1616812360183 ,112.5730148,26.88971359,59.03458786,180.2463233,180.8197674,7.301987,0.065943243,1620000000000 ,1620000000000 ,1620000000000 ,1616812360170 -1616812360194 ,112.5730148,26.88971227,59.03442764,180.2585903,180.8332019,7.3021674,0.131899714,1620000000000 ,1620000000000 ,1620000000000 ,1616812360180 -1616812360207 ,112.5730148,26.88971227,59.03442764,180.2585903,-400,7.3021674,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812360180 -1616812360214 ,112.5730147,26.88971095,59.03425217,180.2638359,180.8106498,7.2866282,0.131726189,1620000000000 ,1620000000000 ,1620000000000 ,1616812360200 -1616812360226 ,112.5730147,26.88971095,59.03425217,180.2638359,-400,7.2866282,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812360210 -1616812360234 ,112.5730147,26.88970964,59.03261948,180.2796273,180.7931806,7.2899485,0.131004949,1620000000000 ,1620000000000 ,1620000000000 ,1616812360220 -1616812360244 ,112.5730147,26.88970964,59.03261948,180.2796273,-400,7.2899485,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812360230 -1616812360254 ,112.5730147,26.88970833,59.03117371,180.292468,180.8239493,7.2871065,0.130988283,1620000000000 ,1620000000000 ,1620000000000 ,1616812360240 -1616812360264 ,112.5730147,26.88970768,59.03067398,180.2988884,180.8537206,7.285861,0.065487581,1620000000000 ,1620000000000 ,1620000000000 ,1616812360250 -1616812360274 ,112.5730147,26.88970702,59.03030777,180.3032051,180.8953037,7.2865424,0.065492654,1620000000000 ,1620000000000 ,1620000000000 ,1616812360260 -1616812360285 ,112.5730147,26.88970637,59.03000641,180.3056366,180.9184413,7.286401,0.065490917,1620000000000 ,1620000000000 ,1620000000000 ,1616812360270 -1616812360301 ,112.5730147,26.88970571,59.02975082,180.3076037,180.9648674,7.2858276,0.065493258,1620000000000 ,1620000000000 ,1620000000000 ,1616812360280 -1616812360310 ,112.5730146,26.88970506,59.02952194,180.3096255,180.9799874,7.287415,0.065503128,1620000000000 ,1620000000000 ,1620000000000 ,1616812360290 -1616812360320 ,112.5730146,26.8897044,59.02931213,180.3141607,180.968596,7.291526,0.065535569,1620000000000 ,1620000000000 ,1620000000000 ,1616812360300 -1616812360331 ,112.5730146,26.88970375,59.02914429,180.3155267,180.9696252,7.291449,0.065547639,1620000000000 ,1620000000000 ,1620000000000 ,1616812360310 -1616812360344 ,112.5730146,26.88970309,59.0290451,180.3182861,180.9729089,7.2897654,0.065536327,1620000000000 ,1620000000000 ,1620000000000 ,1616812360320 -1616812360347 ,112.5730146,26.88970244,59.02900314,180.3188872,180.9813405,7.2881913,0.065522927,1620000000000 ,1620000000000 ,1620000000000 ,1616812360330 -1616812360357 ,112.5730146,26.88970178,59.02898407,180.3211275,180.9755677,7.2878513,0.065518159,1620000000000 ,1620000000000 ,1620000000000 ,1616812360340 -1616812360366 ,112.5730146,26.88970113,59.02895355,180.3218105,180.9791819,7.290007,0.065533219,1620000000000 ,1620000000000 ,1620000000000 ,1616812360350 -1616812360377 ,112.5730146,26.88970047,59.02890778,180.3202259,180.9920039,7.2924438,0.065553877,1620000000000 ,1620000000000 ,1620000000000 ,1616812360360 -1616812360386 ,112.5730146,26.88969982,59.02883911,180.3171933,180.9903592,7.292368,0.065558479,1620000000000 ,1620000000000 ,1620000000000 ,1616812360370 -1616812360396 ,112.5730145,26.88969916,59.02876282,180.3122209,181.0009505,7.292223,0.065557299,1620000000000 ,1620000000000 ,1620000000000 ,1616812360380 -1616812360406 ,112.5730145,26.88969851,59.02871323,180.3088605,181.0151714,7.292739,0.065560173,1620000000000 ,1620000000000 ,1620000000000 ,1616812360390 -1616812360416 ,112.5730145,26.88969785,59.02866745,180.3044072,181.0223025,7.2934117,0.065564558,1620000000000 ,1620000000000 ,1620000000000 ,1616812360400 -1616812360427 ,112.5730145,26.88969719,59.02859116,180.3017298,181.0347417,7.296036,0.065588085,1620000000000 ,1620000000000 ,1620000000000 ,1616812360410 -1616812360437 ,112.5730145,26.88969654,59.02843857,180.2953913,181.0388704,7.297115,0.065598178,1620000000000 ,1620000000000 ,1620000000000 ,1616812360420 -1616812360446 ,112.5730145,26.88969588,59.02822876,180.2891622,181.0481039,7.29955,0.065612725,1620000000000 ,1620000000000 ,1620000000000 ,1616812360430 -1616812360456 ,112.5730145,26.88969523,59.02800751,180.2808567,181.0448753,7.2979064,0.065607835,1620000000000 ,1620000000000 ,1620000000000 ,1616812360440 -1616812360466 ,112.5730145,26.88969457,59.02811432,180.273043,181.0659779,7.298182,0.065768096,1620000000000 ,1620000000000 ,1620000000000 ,1616812360450 -1616812360481 ,112.5730144,26.88969391,59.02855682,180.2636173,181.091226,7.298565,0.065935963,1620000000000 ,1620000000000 ,1620000000000 ,1616812360460 -1616812360487 ,112.5730144,26.88969325,59.02898026,180.2567325,181.0846156,7.299208,0.065938606,1620000000000 ,1620000000000 ,1620000000000 ,1616812360470 -1616812360498 ,112.5730144,26.88969259,59.02938461,180.2465691,181.0746608,7.301,0.065953405,1620000000000 ,1620000000000 ,1620000000000 ,1616812360480 -1616812360508 ,112.5730144,26.88969193,59.02974701,180.2370615,181.0437592,7.300538,0.065950876,1620000000000 ,1620000000000 ,1620000000000 ,1616812360490 -1616812360517 ,112.5730144,26.88969127,59.03007126,180.2268709,181.0399315,7.301654,0.065958851,1620000000000 ,1620000000000 ,1620000000000 ,1616812360500 -1616812360528 ,112.5730144,26.88969061,59.03036499,180.2176365,181.0388497,7.3022842,0.065964115,1620000000000 ,1620000000000 ,1620000000000 ,1616812360510 -1616812360545 ,112.5730144,26.88968995,59.03063583,180.206954,181.0266431,7.3009257,0.065952345,1620000000000 ,1620000000000 ,1620000000000 ,1616812360520 -1616812360555 ,112.5730144,26.88968929,59.03091812,180.1961077,181.0051725,7.300449,0.06594907,1620000000000 ,1620000000000 ,1620000000000 ,1616812360530 -1616812360564 ,112.5730144,26.88968863,59.03121948,180.1854799,180.9930747,7.299893,0.065946546,1620000000000 ,1620000000000 ,1620000000000 ,1616812360540 -1616812360571 ,112.5730143,26.88968797,59.03150558,180.1763821,180.9903565,7.3013473,0.065950676,1620000000000 ,1620000000000 ,1620000000000 ,1616812360550 -1616812360581 ,112.5730143,26.88968731,59.03175354,180.166492,180.9852678,7.3016005,0.065953172,1620000000000 ,1620000000000 ,1620000000000 ,1616812360560 -1616812360589 ,112.5730143,26.88968666,59.03200912,180.1551812,180.962802,7.3013515,0.065955959,1620000000000 ,1620000000000 ,1620000000000 ,1616812360570 -1616812360601 ,112.5730143,26.889686,59.03232193,180.1447174,180.9487809,7.3006444,0.065951176,1620000000000 ,1620000000000 ,1620000000000 ,1616812360580 -1616812360611 ,112.5730143,26.88968534,59.0326767,180.1342262,180.9195002,7.299659,0.06594355,1620000000000 ,1620000000000 ,1620000000000 ,1616812360590 -1616812360619 ,112.5730143,26.88968468,59.03300858,180.1245273,180.8864045,7.300196,0.065943619,1620000000000 ,1620000000000 ,1620000000000 ,1616812360600 -1616812360630 ,112.5730143,26.88968402,59.03332138,180.1149651,180.8765014,7.301712,0.065954538,1620000000000 ,1620000000000 ,1620000000000 ,1616812360610 -1616812360640 ,112.5730143,26.88968336,59.03363419,180.1049383,180.8476801,7.302124,0.065960639,1620000000000 ,1620000000000 ,1620000000000 ,1616812360620 -1616812360648 ,112.5730143,26.8896827,59.03396606,180.0966602,180.8121657,7.301859,0.065958478,1620000000000 ,1620000000000 ,1620000000000 ,1616812360630 -1616812360658 ,112.5730142,26.88968204,59.03430176,180.0882454,180.7755421,7.300587,0.065951358,1620000000000 ,1620000000000 ,1620000000000 ,1616812360640 -1616812360669 ,112.5730142,26.88968138,59.03462219,180.0801584,180.7613141,7.299233,0.06593377,1620000000000 ,1620000000000 ,1620000000000 ,1616812360650 -1616812360680 ,112.5730142,26.88968072,59.03492737,180.0722627,180.7514137,7.3001857,0.065939123,1620000000000 ,1620000000000 ,1620000000000 ,1616812360660 -1616812360688 ,112.5730142,26.88968006,59.0352211,180.065214,180.7285828,7.300251,0.065942349,1620000000000 ,1620000000000 ,1620000000000 ,1616812360670 -1616812360698 ,112.5730142,26.8896794,59.03551102,180.0588209,180.707253,7.301827,0.065950439,1620000000000 ,1620000000000 ,1620000000000 ,1616812360680 -1616812360708 ,112.5730142,26.88967874,59.03580475,180.0518541,180.6892681,7.301688,0.065953668,1620000000000 ,1620000000000 ,1620000000000 ,1616812360690 -1616812360723 ,112.5730142,26.88967808,59.03614426,180.0424831,180.6849968,7.30209,0.065958851,1620000000000 ,1620000000000 ,1620000000000 ,1616812360700 -1616812360730 ,112.5730142,26.88967742,59.03652573,180.0342595,180.6808383,7.30125,0.065957472,1620000000000 ,1620000000000 ,1620000000000 ,1616812360710 -1616812360744 ,112.5730142,26.88967676,59.03693008,180.0277845,180.6822628,7.3003464,0.065945442,1620000000000 ,1620000000000 ,1620000000000 ,1616812360720 -1616812360751 ,112.5730142,26.8896761,59.03738403,180.0209817,180.6801925,7.2977138,0.065928997,1620000000000 ,1620000000000 ,1620000000000 ,1616812360730 -1616812360760 ,112.5730142,26.88967545,59.03789139,180.0115287,180.6644078,7.2966876,0.065917269,1620000000000 ,1620000000000 ,1620000000000 ,1616812360740 -1616812360771 ,112.5730142,26.88967479,59.0384407,180.0046712,180.6614229,7.2977886,0.065925307,1620000000000 ,1620000000000 ,1620000000000 ,1616812360750 -1616812360780 ,112.5730142,26.88967413,59.03899002,179.9978956,180.6565855,7.299789,0.065938634,1620000000000 ,1620000000000 ,1620000000000 ,1616812360760 -1616812360790 ,112.5730141,26.88967347,59.03952026,179.9899999,180.6541916,7.301685,0.065958367,1620000000000 ,1620000000000 ,1620000000000 ,1616812360770 -1616812360801 ,112.5730141,26.88967281,59.04003906,179.9827053,180.6526233,7.3024178,0.065965395,1620000000000 ,1620000000000 ,1620000000000 ,1616812360780 -1616812360810 ,112.5730141,26.88967215,59.04052734,179.9749189,180.643362,7.302945,0.065969664,1620000000000 ,1620000000000 ,1620000000000 ,1616812360790 -1616812360820 ,112.5730141,26.88967149,59.04096603,179.9679794,180.635337,7.303651,0.065974734,1620000000000 ,1620000000000 ,1620000000000 ,1616812360800 -1616812360831 ,112.5730141,26.88967083,59.04138565,179.9605208,180.6277806,7.3031077,0.065972721,1620000000000 ,1620000000000 ,1620000000000 ,1616812360810 -1616812360839 ,112.5730141,26.88967017,59.04180527,179.9528164,180.6214304,7.3021502,0.065962625,1620000000000 ,1620000000000 ,1620000000000 ,1616812360820 -1616812360851 ,112.5730141,26.88966951,59.04222107,179.9458769,180.6107805,7.3018928,0.065958399,1620000000000 ,1620000000000 ,1620000000000 ,1616812360830 -1616812360864 ,112.5730141,26.88966885,59.04262543,179.9391287,180.6057159,7.303041,0.065966933,1620000000000 ,1620000000000 ,1620000000000 ,1616812360840 -1616812360871 ,112.5730141,26.88966819,59.04299927,179.9330908,180.5929018,7.3047934,0.065979052,1620000000000 ,1620000000000 ,1620000000000 ,1616812360850 -1616812360880 ,112.5730141,26.88966753,59.04333496,179.9274354,180.5960674,7.306728,0.06599653,1620000000000 ,1620000000000 ,1620000000000 ,1616812360860 -1616812360890 ,112.5730141,26.88966687,59.04367828,179.9200041,180.5937926,7.3060517,0.065996761,1620000000000 ,1620000000000 ,1620000000000 ,1616812360870 -1616812360900 ,112.5730141,26.88966621,59.04407501,179.9109883,180.5842535,7.3039594,0.065984151,1620000000000 ,1620000000000 ,1620000000000 ,1616812360880 -1616812360911 ,112.5730141,26.88966555,59.04454422,179.9038849,180.584005,7.3019657,0.065966082,1620000000000 ,1620000000000 ,1620000000000 ,1616812360890 -1616812360922 ,112.5730141,26.88966489,59.0450325,179.8981202,180.5819102,7.30045,0.065952373,1620000000000 ,1620000000000 ,1620000000000 ,1616812360900 -1616812360932 ,112.573014,26.88966423,59.04551315,179.8905797,180.5816472,7.300348,0.065947765,1620000000000 ,1620000000000 ,1620000000000 ,1616812360910 -1616812360941 ,112.573014,26.88966357,59.04597092,179.8864816,180.5835275,7.30155,0.065958106,1620000000000 ,1620000000000 ,1620000000000 ,1616812360920 -1616812360951 ,112.573014,26.88966291,59.04640198,179.8807989,180.5799397,7.3025746,0.065964322,1620000000000 ,1620000000000 ,1620000000000 ,1616812360930 -1616812360961 ,112.573014,26.88966225,59.04683685,179.876209,180.5785409,7.3032255,0.065970253,1620000000000 ,1620000000000 ,1620000000000 ,1616812360940 -1616812360979 ,112.573014,26.88966159,59.0472908,179.8723567,180.5722282,7.3019857,0.065968755,1620000000000 ,1620000000000 ,1620000000000 ,1616812360950 -1616812360984 ,112.573014,26.88966093,59.04777145,179.8674936,180.567358,7.29988,0.065952341,1620000000000 ,1620000000000 ,1620000000000 ,1616812360960 -1616812360994 ,112.573014,26.88966027,59.04825592,179.8626032,180.5715524,7.298745,0.065936057,1620000000000 ,1620000000000 ,1620000000000 ,1616812360970 -1616812361002 ,112.573014,26.88965962,59.04870987,179.858751,180.5586268,7.297333,0.065924067,1620000000000 ,1620000000000 ,1620000000000 ,1616812360980 -1616812361012 ,112.573014,26.88965896,59.04911041,179.8530683,180.5616323,7.297387,0.065920976,1620000000000 ,1620000000000 ,1620000000000 ,1616812360990 -1616812361022 ,112.573014,26.8896583,59.04947662,179.8470031,180.5686828,7.298343,0.06592685,1620000000000 ,1620000000000 ,1620000000000 ,1616812361000 -1616812361033 ,112.573014,26.88965764,59.04985809,179.8430142,180.5585551,7.2975626,0.065923199,1620000000000 ,1620000000000 ,1620000000000 ,1616812361010 -1616812361044 ,112.573014,26.88965698,59.05030823,179.8399543,180.5411558,7.29721,0.065924194,1620000000000 ,1620000000000 ,1620000000000 ,1616812361030 -1616812361054 ,112.573014,26.88965632,59.05082321,179.8350912,180.5447872,7.2957687,0.06591522,1620000000000 ,1620000000000 ,1620000000000 ,1616812361040 -1616812361064 ,112.573014,26.88965566,59.05138016,179.8324958,180.5430779,7.294227,0.065901529,1620000000000 ,1620000000000 ,1620000000000 ,1616812361050 -1616812361073 ,112.5730139,26.88965434,59.05250168,179.8284523,180.5470221,7.2920523,0.131769508,1620000000000 ,1620000000000 ,1620000000000 ,1616812361060 -1616812361084 ,112.5730139,26.88965368,59.05305862,179.8268404,180.5406422,7.290597,0.065871149,1620000000000 ,1620000000000 ,1620000000000 ,1616812361070 -1616812361093 ,112.5730139,26.88965303,59.05364227,179.8245454,180.5419781,7.289111,0.065856927,1620000000000 ,1620000000000 ,1620000000000 ,1616812361080 -1616812361103 ,112.5730139,26.88965303,59.05364227,179.8245454,-400,7.289111,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812361090 -1616812361114 ,112.5730139,26.88965171,59.05494308,179.8174967,180.5407238,7.2870336,0.131695617,1620000000000 ,1620000000000 ,1620000000000 ,1616812361100 -1616812361125 ,112.5730139,26.88965105,59.0556488,179.815229,180.5454489,7.2873473,0.06584556,1620000000000 ,1620000000000 ,1620000000000 ,1616812361110 -1616812361134 ,112.5730139,26.88965039,59.05638123,179.8118686,180.5391456,7.286246,0.065840297,1620000000000 ,1620000000000 ,1620000000000 ,1616812361120 -1616812361144 ,112.5730139,26.88964973,59.05712509,179.8094097,180.5410123,7.2844896,0.065825644,1620000000000 ,1620000000000 ,1620000000000 ,1616812361130 -1616812361154 ,112.5730139,26.88964908,59.057827,179.8064591,180.5283884,7.282591,0.065809971,1620000000000 ,1620000000000 ,1620000000000 ,1616812361140 -1616812361163 ,112.5730139,26.88964842,59.05846405,179.8034265,180.5270702,7.2816834,0.065795971,1620000000000 ,1620000000000 ,1620000000000 ,1616812361150 -1616812361174 ,112.5730139,26.88964776,59.05905533,179.8017326,180.5392531,7.281743,0.065792897,1620000000000 ,1620000000000 ,1620000000000 ,1616812361160 -1616812361184 ,112.5730139,26.8896471,59.0595932,179.7976345,180.5450824,7.2820873,0.065794224,1620000000000 ,1620000000000 ,1620000000000 ,1616812361170 -1616812361194 ,112.5730139,26.88964644,59.0600853,179.7964324,180.5411229,7.282726,0.065798341,1620000000000 ,1620000000000 ,1620000000000 ,1616812361180 -1616812361204 ,112.5730139,26.88964579,59.06053543,179.7945199,180.5343467,7.28387,0.065807899,1620000000000 ,1620000000000 ,1620000000000 ,1616812361190 -1616812361214 ,112.5730139,26.88964513,59.06072617,179.785586,180.1895992,7.277511,0.06572176,1620000000000 ,1620000000000 ,1620000000000 ,1616812361200 -1616812361233 ,112.5730139,26.88964447,59.06051254,179.7850942,179.5973788,7.2762885,0.065581993,1620000000000 ,1620000000000 ,1620000000000 ,1616812361210 -1616812361238 ,112.5730139,26.88964382,59.06023407,179.7838375,179.5946855,7.276342,0.065577118,1620000000000 ,1620000000000 ,1620000000000 ,1616812361220 -1616812361247 ,112.5730139,26.88964316,59.05989456,179.7801219,179.5933867,7.275721,0.065571103,1620000000000 ,1620000000000 ,1620000000000 ,1616812361230 -1616812361256 ,112.5730139,26.88964251,59.0594902,179.7803678,179.5943265,7.276206,0.065566656,1620000000000 ,1620000000000 ,1620000000000 ,1616812361240 -1616812361265 ,112.5730139,26.88964185,59.05904388,179.7792749,179.5993314,7.276716,0.065576655,1620000000000 ,1620000000000 ,1620000000000 ,1616812361250 -1616812361275 ,112.5730139,26.88964119,59.05858612,179.7771439,179.5872736,7.275641,0.0655666,1620000000000 ,1620000000000 ,1620000000000 ,1616812361260 -1616812361284 ,112.5730139,26.88964054,59.05816269,179.7746031,179.5798774,7.2767863,0.065571286,1620000000000 ,1620000000000 ,1620000000000 ,1616812361270 -1616812361296 ,112.5730139,26.88963988,59.05775833,179.7744391,179.5668111,7.2755256,0.06556973,1620000000000 ,1620000000000 ,1620000000000 ,1616812361280 -1616812361307 ,112.5730139,26.88963923,59.05730438,179.7706142,179.5675423,7.2745748,0.065554451,1620000000000 ,1620000000000 ,1620000000000 ,1616812361290 -1616812361315 ,112.5730139,26.88963857,59.05676651,179.7677182,179.5719583,7.275916,0.065559636,1620000000000 ,1620000000000 ,1620000000000 ,1616812361300 -1616812361325 ,112.5730139,26.88963792,59.05614471,179.7668713,179.5781048,7.2770796,0.06556503,1620000000000 ,1620000000000 ,1620000000000 ,1616812361310 -1616812361337 ,112.5730139,26.88963726,59.05547333,179.7667347,179.5758291,7.279249,0.065583937,1620000000000 ,1620000000000 ,1620000000000 ,1616812361320 -1616812361346 ,112.5730139,26.8896366,59.05480576,179.764713,179.5581929,7.2788167,0.065585382,1620000000000 ,1620000000000 ,1620000000000 ,1616812361330 -1616812361356 ,112.5730139,26.88963595,59.05418777,179.7621721,179.5530036,7.277184,0.06557412,1620000000000 ,1620000000000 ,1620000000000 ,1616812361340 -1616812361365 ,112.5730139,26.88963529,59.05361557,179.7609154,179.5496268,7.276018,0.065564082,1620000000000 ,1620000000000 ,1620000000000 ,1616812361350 -1616812361376 ,112.5730139,26.88963464,59.05304337,179.7597406,179.5466293,7.2757006,0.065559485,1620000000000 ,1620000000000 ,1620000000000 ,1616812361360 -1616812361386 ,112.5730139,26.88963398,59.05244064,179.7586204,179.548214,7.2755394,0.065554795,1620000000000 ,1620000000000 ,1620000000000 ,1616812361370 -1616812361396 ,112.573014,26.88963333,59.05183029,179.7568719,179.5412945,7.276449,0.065562623,1620000000000 ,1620000000000 ,1620000000000 ,1616812361380 -1616812361407 ,112.573014,26.88963267,59.05124664,179.7567626,179.5251317,7.277074,0.065570139,1620000000000 ,1620000000000 ,1620000000000 ,1616812361390 -1616812361417 ,112.573014,26.88963202,59.05067825,179.7570905,179.5193624,7.278348,0.065578459,1620000000000 ,1620000000000 ,1620000000000 ,1616812361400 -1616812361431 ,112.573014,26.88963136,59.05014801,179.7590576,179.5261111,7.277939,0.065581596,1620000000000 ,1620000000000 ,1620000000000 ,1616812361410 -1616812361437 ,112.573014,26.8896307,59.04965591,179.7611613,179.5188786,7.2752423,0.06556261,1620000000000 ,1620000000000 ,1620000000000 ,1616812361420 -1616812361449 ,112.573014,26.88963005,59.04921341,179.7624453,179.5059087,7.273421,0.06554461,1620000000000 ,1620000000000 ,1620000000000 ,1616812361430 -1616812361459 ,112.573014,26.88962939,59.04881287,179.764713,179.5053045,7.2710567,0.065528258,1620000000000 ,1620000000000 ,1620000000000 ,1616812361440 -1616812361471 ,112.573014,26.88962874,59.04867935,179.7687564,179.8510461,7.271075,0.065596929,1620000000000 ,1620000000000 ,1620000000000 ,1616812361450 -1616812361479 ,112.573014,26.88962808,59.04879761,179.7752588,180.1961335,7.2720714,0.06568223,1620000000000 ,1620000000000 ,1620000000000 ,1616812361460 -1616812361490 ,112.573014,26.88962742,59.04891968,179.7808595,180.1885685,7.27388,0.065693676,1620000000000 ,1620000000000 ,1620000000000 ,1616812361470 -1616812361500 ,112.573014,26.88962677,59.04904175,179.7870067,180.1842943,7.275879,0.065713777,1620000000000 ,1620000000000 ,1620000000000 ,1616812361480 -1616812361511 ,112.573014,26.88962611,59.04914856,179.7933998,180.1932257,7.275536,0.065716217,1620000000000 ,1620000000000 ,1620000000000 ,1616812361490 -1616812361519 ,112.573014,26.88962545,59.04927826,179.8030167,180.2071278,7.2746263,0.06570897,1620000000000 ,1620000000000 ,1620000000000 ,1616812361500 -1616812361529 ,112.573014,26.8896248,59.04945755,179.8117047,180.2003061,7.272343,0.065691988,1620000000000 ,1620000000000 ,1620000000000 ,1616812361510 -1616812361540 ,112.573014,26.88962414,59.04973602,179.8208571,180.2005694,7.270515,0.065675581,1620000000000 ,1620000000000 ,1620000000000 ,1616812361520 -1616812361551 ,112.573014,26.88962348,59.05008316,179.8323592,180.2099945,7.2706122,0.065677407,1620000000000 ,1620000000000 ,1620000000000 ,1616812361530 -1616812361563 ,112.573014,26.88962282,59.05042648,179.8449267,180.2160914,7.2700834,0.065673282,1620000000000 ,1620000000000 ,1620000000000 ,1616812361540 -1616812361571 ,112.573014,26.88962217,59.05072784,179.8570571,180.2358216,7.2720695,0.065681298,1620000000000 ,1620000000000 ,1620000000000 ,1616812361550 -1616812361581 ,112.573014,26.88962151,59.05097961,179.8692695,180.2511841,7.274128,0.065702233,1620000000000 ,1620000000000 ,1620000000000 ,1616812361560 -1616812361591 ,112.573014,26.88962085,59.05121231,179.8823288,180.2582621,7.2751822,0.065712818,1620000000000 ,1620000000000 ,1620000000000 ,1616812361570 -1616812361600 ,112.573014,26.8896202,59.0514679,179.8972733,180.2791093,7.2740707,0.065708209,1620000000000 ,1620000000000 ,1620000000000 ,1616812361580 -1616812361612 ,112.573014,26.88961954,59.05176926,179.9119445,180.2976962,7.271871,0.065692735,1620000000000 ,1620000000000 ,1620000000000 ,1616812361590 -1616812361621 ,112.5730139,26.88961888,59.05210876,179.9272441,180.3205048,7.270328,0.065674175,1620000000000 ,1620000000000 ,1620000000000 ,1616812361600 -1616812361636 ,112.5730139,26.88961823,59.05245972,179.9431721,180.3527453,7.2710347,0.065678713,1620000000000 ,1620000000000 ,1620000000000 ,1616812361610 -1616812361640 ,112.5730139,26.88961757,59.05277634,179.959346,180.3757288,7.27167,0.0656841,1620000000000 ,1620000000000 ,1620000000000 ,1616812361620 -1616812361651 ,112.5730139,26.88961691,59.05303574,179.9778149,180.3947948,7.2735734,0.065695988,1620000000000 ,1620000000000 ,1620000000000 ,1616812361630 -1616812361661 ,112.5730139,26.88961626,59.05328369,179.9933057,180.4325025,7.273744,0.065698822,1620000000000 ,1620000000000 ,1620000000000 ,1616812361640 -1616812361671 ,112.5730139,26.8896156,59.05353928,180.0099987,180.4789049,7.2741365,0.065703674,1620000000000 ,1620000000000 ,1620000000000 ,1616812361650 -1616812361682 ,112.5730139,26.88961494,59.05381012,180.0275386,180.5082176,7.274508,0.065710241,1620000000000 ,1620000000000 ,1620000000000 ,1616812361660 -1616812361691 ,112.5730139,26.88961428,59.05406189,180.0423738,180.5259359,7.2750545,0.065711845,1620000000000 ,1620000000000 ,1620000000000 ,1616812361670 -1616812361702 ,112.5730139,26.88961363,59.05428696,180.0587389,180.5560377,7.2752967,0.065712924,1620000000000 ,1620000000000 ,1620000000000 ,1616812361680 -1616812361712 ,112.5730139,26.88961297,59.05444717,180.0759783,180.5910163,7.2752466,0.065710097,1620000000000 ,1620000000000 ,1620000000000 ,1616812361690 -1616812361722 ,112.5730139,26.88961231,59.0545311,180.0918244,180.6118992,7.276252,0.065714063,1620000000000 ,1620000000000 ,1620000000000 ,1616812361700 -1616812361733 ,112.5730139,26.88961166,59.05457306,180.1091184,180.6420174,7.2764435,0.065718717,1620000000000 ,1620000000000 ,1620000000000 ,1616812361710 -1616812361743 ,112.5730139,26.889611,59.05461884,180.1235711,180.6669633,7.276887,0.065722092,1620000000000 ,1620000000000 ,1620000000000 ,1616812361720 -1616812361752 ,112.5730139,26.88961034,59.05467224,180.1397723,180.6806205,7.276135,0.065715629,1620000000000 ,1620000000000 ,1620000000000 ,1616812361730 -1616812361763 ,112.5730139,26.88960968,59.05472183,180.1549626,180.7006613,7.2768865,0.065717062,1620000000000 ,1620000000000 ,1620000000000 ,1616812361740 -1616812361772 ,112.5730139,26.88960903,59.05474472,180.170235,180.7219659,7.277239,0.065725642,1620000000000 ,1620000000000 ,1620000000000 ,1616812361750 -1616812361782 ,112.5730138,26.88960837,59.05472565,180.1850974,180.747943,7.2778206,0.065725908,1620000000000 ,1620000000000 ,1620000000000 ,1616812361760 -1616812361805 ,112.5730138,26.88960771,59.05468369,180.1978836,180.7709383,7.2776647,0.065724567,1620000000000 ,1620000000000 ,1620000000000 ,1616812361770 -1616812361807 ,112.5730138,26.88960706,59.05463791,180.2115986,180.7820823,7.2772837,0.065722619,1620000000000 ,1620000000000 ,1620000000000 ,1616812361780 -1616812361812 ,112.5730138,26.8896064,59.05463409,180.2244393,180.7898032,7.275716,0.065711117,1620000000000 ,1620000000000 ,1620000000000 ,1616812361790 -1616812361822 ,112.5730138,26.88960574,59.05469894,180.2376899,180.8103094,7.275684,0.065710436,1620000000000 ,1620000000000 ,1620000000000 ,1616812361800 -1616812361833 ,112.5730138,26.88960508,59.05482483,180.2493012,180.8135844,7.274064,0.065701656,1620000000000 ,1620000000000 ,1620000000000 ,1616812361810 -1616812361843 ,112.5730138,26.88960443,59.05501175,180.2626884,180.8256392,7.273045,0.06569127,1620000000000 ,1620000000000 ,1620000000000 ,1616812361830 -1616812361856 ,112.5730138,26.88960377,59.05526352,180.2752559,180.8395058,7.2717357,0.06568182,1620000000000 ,1620000000000 ,1620000000000 ,1616812361840 -1616812361865 ,112.5730138,26.88960311,59.05554962,180.2881513,180.8439088,7.2723403,0.06568651,1620000000000 ,1620000000000 ,1620000000000 ,1616812361850 -1616812361873 ,112.5730138,26.8896018,59.0561409,180.3129859,180.8613262,7.2730923,0.131377505,1620000000000 ,1620000000000 ,1620000000000 ,1616812361860 -1616812361883 ,112.5730137,26.88960114,59.05643082,180.327903,180.8801148,7.271448,0.065685906,1620000000000 ,1620000000000 ,1620000000000 ,1616812361870 -1616812361893 ,112.5730137,26.88960049,59.05675507,180.3402793,180.8863656,7.2695804,0.065666692,1620000000000 ,1620000000000 ,1620000000000 ,1616812361880 -1616812361903 ,112.5730137,26.88960049,59.05675507,180.3402793,-400,7.2695804,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812361880 -1616812361924 ,112.5730137,26.88959917,59.05762482,180.3647041,180.8766627,7.2675095,0.131314051,1620000000000 ,1620000000000 ,1620000000000 ,1616812361900 -1616812361933 ,112.5730137,26.88959852,59.05810165,180.3781459,180.880691,7.2678776,0.065653383,1620000000000 ,1620000000000 ,1620000000000 ,1616812361910 -1616812361936 ,112.5730137,26.88959852,59.05810165,180.3781459,-400,7.2678776,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812361920 -1616812361944 ,112.5730137,26.88959721,59.05904007,180.4042646,180.9144772,7.2652373,0.131290636,1620000000000 ,1620000000000 ,1620000000000 ,1616812361930 -1616812361955 ,112.5730137,26.88959655,59.05958939,180.4160944,180.9258132,7.2648683,0.065631835,1620000000000 ,1620000000000 ,1620000000000 ,1616812361940 -1616812361965 ,112.5730137,26.88959589,59.06017303,180.4277877,180.9414214,7.264575,0.065630142,1620000000000 ,1620000000000 ,1620000000000 ,1616812361950 -1616812361975 ,112.5730136,26.88959524,59.0607605,180.4403553,180.9628081,7.263568,0.065622499,1620000000000 ,1620000000000 ,1620000000000 ,1616812361960 -1616812361985 ,112.5730136,26.88959458,59.06134033,180.4524584,180.9830047,7.263197,0.065622075,1620000000000 ,1620000000000 ,1620000000000 ,1616812361970 -1616812361999 ,112.5730136,26.88959392,59.06193161,180.4657089,181.0006688,7.262998,0.065619536,1620000000000 ,1620000000000 ,1620000000000 ,1616812361980 -1616812362005 ,112.5730136,26.88959392,59.06193161,180.4657089,-400,7.262998,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812361980 -1616812362014 ,112.5730136,26.88959261,59.06315994,180.4912812,181.0320996,7.2606826,0.131215934,1620000000000 ,1620000000000 ,1620000000000 ,1616812362000 -1616812362025 ,112.5730136,26.88959196,59.06378555,180.502428,181.0560697,7.259129,0.065588972,1620000000000 ,1620000000000 ,1620000000000 ,1616812362010 -1616812362034 ,112.5730136,26.8895913,59.06441498,180.5142852,181.0813566,7.257314,0.065576695,1620000000000 ,1620000000000 ,1620000000000 ,1616812362020 -1616812362045 ,112.5730136,26.88959065,59.06500626,180.5263883,181.1013707,7.2567983,0.065568764,1620000000000 ,1620000000000 ,1620000000000 ,1616812362030 -1616812362064 ,112.5730136,26.88958999,59.06555557,180.5390105,181.1102461,7.256124,0.065560773,1620000000000 ,1620000000000 ,1620000000000 ,1616812362040 -1616812362066 ,112.5730135,26.88958933,59.06605911,180.5535998,181.1282431,7.255873,0.065554033,1620000000000 ,1620000000000 ,1620000000000 ,1616812362050 -1616812362075 ,112.5730135,26.88958868,59.06652451,180.5678886,181.1496293,7.2550497,0.06555312,1620000000000 ,1620000000000 ,1620000000000 ,1616812362060 -1616812362085 ,112.5730135,26.88958802,59.06697083,180.5810298,181.1648597,7.2529063,0.065535539,1620000000000 ,1620000000000 ,1620000000000 ,1616812362070 -1616812362094 ,112.5730135,26.88958737,59.06739426,180.5938979,181.1882439,7.2513695,0.065518226,1620000000000 ,1620000000000 ,1620000000000 ,1616812362080 -1616812362107 ,112.5730135,26.88958671,59.06777954,180.6080774,181.2017956,7.2489634,0.065497882,1620000000000 ,1620000000000 ,1620000000000 ,1616812362090 -1616812362119 ,112.5730135,26.88958606,59.06811905,180.6212733,181.2170041,7.2474723,0.065481062,1620000000000 ,1620000000000 ,1620000000000 ,1616812362100 -1616812362125 ,112.5730135,26.88958541,59.06842804,180.634961,181.2270624,7.2461586,0.065469568,1620000000000 ,1620000000000 ,1620000000000 ,1616812362110 -1616812362135 ,112.5730134,26.88958475,59.06871033,180.6478291,181.2408548,7.2438745,0.065449451,1620000000000 ,1620000000000 ,1620000000000 ,1616812362120 -1616812362145 ,112.5730134,26.8895841,59.06896973,180.6625823,181.2685947,7.242757,0.065436306,1620000000000 ,1620000000000 ,1620000000000 ,1616812362130 -1616812362155 ,112.5730134,26.88958344,59.06920624,180.6737019,181.2826415,7.241595,0.065425189,1620000000000 ,1620000000000 ,1620000000000 ,1616812362140 -1616812362166 ,112.5730134,26.88958279,59.0694313,180.6866246,181.2860565,7.2386436,0.065400914,1620000000000 ,1620000000000 ,1620000000000 ,1616812362150 -1616812362176 ,112.5730134,26.88958213,59.06961823,180.700203,181.2935817,7.237067,0.065383546,1620000000000 ,1620000000000 ,1620000000000 ,1616812362160 -1616812362186 ,112.5730134,26.88958148,59.06974411,180.7136721,181.3112006,7.23719,0.065380772,1620000000000 ,1620000000000 ,1620000000000 ,1616812362170 -1616812362199 ,112.5730134,26.88958083,59.0698204,180.72848,181.3302658,7.2358575,0.065366998,1620000000000 ,1620000000000 ,1620000000000 ,1616812362180 -1616812362209 ,112.5730133,26.88958017,59.06986618,180.7431512,181.3402669,7.2348857,0.065358137,1620000000000 ,1620000000000 ,1620000000000 ,1616812362190 -1616812362216 ,112.5730133,26.88957952,59.0698967,180.758123,181.3448895,7.2323475,0.065340121,1620000000000 ,1620000000000 ,1620000000000 ,1616812362200 -1616812362226 ,112.5730133,26.88957886,59.0702858,180.7825204,180.5428694,7.246956,0.065817791,1620000000000 ,1620000000000 ,1620000000000 ,1616812362210 -1616812362238 ,112.5730133,26.8895782,59.07072067,180.7966726,180.4343348,7.243962,0.065868406,1620000000000 ,1620000000000 ,1620000000000 ,1616812362220 -1616812362247 ,112.5730133,26.88957755,59.07114029,180.8090762,180.4595796,7.242252,0.06584665,1620000000000 ,1620000000000 ,1620000000000 ,1616812362230 -1616812362256 ,112.5730133,26.88957689,59.07156754,180.8227366,180.4846999,7.240973,0.065839059,1620000000000 ,1620000000000 ,1620000000000 ,1616812362240 -1616812362267 ,112.5730133,26.88957623,59.07199478,180.8367521,180.4973086,7.240572,0.065831325,1620000000000 ,1620000000000 ,1620000000000 ,1616812362250 -1616812362278 ,112.5730133,26.88957557,59.07242584,180.8495109,180.5248946,7.239735,0.065824051,1620000000000 ,1620000000000 ,1620000000000 ,1616812362260 -1616812362286 ,112.5730133,26.88957491,59.07286072,180.8627888,180.5454078,7.2379065,0.065807668,1620000000000 ,1620000000000 ,1620000000000 ,1616812362270 -1616812362297 ,112.5730133,26.88957426,59.07328415,180.8739084,180.5704549,7.2372913,0.065799565,1620000000000 ,1620000000000 ,1620000000000 ,1616812362280 -1616812362309 ,112.5730133,26.8895736,59.07369614,180.8875687,180.5927942,7.2358522,0.065791727,1620000000000 ,1620000000000 ,1620000000000 ,1616812362290 -1616812362318 ,112.5730133,26.88957294,59.07411957,180.8989888,180.6079748,7.233228,0.065765642,1620000000000 ,1620000000000 ,1620000000000 ,1616812362300 -1616812362328 ,112.5730133,26.88957228,59.07458878,180.910928,180.625428,7.230483,0.065743598,1620000000000 ,1620000000000 ,1620000000000 ,1616812362310 -1616812362340 ,112.5730132,26.88957162,59.07508469,180.923195,180.6416097,7.228374,0.065722787,1620000000000 ,1620000000000 ,1620000000000 ,1616812362320 -1616812362350 ,112.5730132,26.88957097,59.07557678,180.9343419,180.6754456,7.2280006,0.065715193,1620000000000 ,1620000000000 ,1620000000000 ,1616812362330 -1616812362358 ,112.5730132,26.88957031,59.0760231,180.9468001,180.694621,7.2264876,0.065703797,1620000000000 ,1620000000000 ,1620000000000 ,1616812362340 -1616812362368 ,112.5730132,26.88956965,59.07645035,180.9593677,180.7036663,7.2249503,0.065687993,1620000000000 ,1620000000000 ,1620000000000 ,1616812362350 -1616812362382 ,112.5730132,26.889569,59.07688522,180.9708424,180.7184683,7.2229424,0.065671367,1620000000000 ,1620000000000 ,1620000000000 ,1616812362360 -1616812362387 ,112.5730132,26.88956834,59.07732773,180.9810057,180.7359184,7.2213154,0.065653736,1620000000000 ,1620000000000 ,1620000000000 ,1616812362370 -1616812362397 ,112.5730132,26.88956768,59.07777023,180.9924258,180.7661771,7.220106,0.065644106,1620000000000 ,1620000000000 ,1620000000000 ,1616812362380 -1616812362408 ,112.5730132,26.88956703,59.07824707,181.0012231,180.7894372,7.217761,0.065625955,1620000000000 ,1620000000000 ,1620000000000 ,1616812362390 -1616812362418 ,112.5730132,26.88956637,59.07876205,181.0108673,180.7945876,7.214941,0.065602301,1620000000000 ,1620000000000 ,1620000000000 ,1616812362400 -1616812362429 ,112.5730132,26.88956572,59.07930756,181.0213312,180.8119808,7.2128496,0.065581204,1620000000000 ,1620000000000 ,1620000000000 ,1616812362410 -1616812362439 ,112.5730132,26.88956506,59.0798645,181.0305109,180.8317612,7.2109256,0.065563546,1620000000000 ,1620000000000 ,1620000000000 ,1616812362420 -1616812362450 ,112.5730132,26.88956441,59.08041,181.0415212,180.8508092,7.2089553,0.065544179,1620000000000 ,1620000000000 ,1620000000000 ,1616812362430 -1616812362459 ,112.5730131,26.88956375,59.08095932,181.0516026,180.8671968,7.207961,0.065534092,1620000000000 ,1620000000000 ,1620000000000 ,1616812362440 -1616812362468 ,112.5730131,26.8895631,59.08153534,181.0621211,180.8829117,7.206309,0.06552183,1620000000000 ,1620000000000 ,1620000000000 ,1616812362450 -1616812362478 ,112.5730131,26.88956244,59.08185577,181.0718472,181.5839254,7.2036095,0.065082495,1620000000000 ,1620000000000 ,1620000000000 ,1616812362460 -1616812362488 ,112.5730131,26.88956179,59.08221436,181.0798249,181.6005754,7.2010765,0.065061403,1620000000000 ,1620000000000 ,1620000000000 ,1616812362470 -1616812362506 ,112.5730131,26.88956114,59.08258057,181.0867917,181.6156432,7.1983013,0.065037797,1620000000000 ,1620000000000 ,1620000000000 ,1616812362480 -1616812362509 ,112.5730131,26.88956049,59.08293915,181.0956709,181.6337081,7.1943026,0.065002857,1620000000000 ,1620000000000 ,1620000000000 ,1616812362490 -1616812362520 ,112.573013,26.88955985,59.08332825,181.1020094,181.6476833,7.1900845,0.064962554,1620000000000 ,1620000000000 ,1620000000000 ,1616812362500 -1616812362529 ,112.573013,26.8895592,59.08377075,181.1088395,181.653156,7.1859794,0.064931493,1620000000000 ,1620000000000 ,1620000000000 ,1616812362510 -1616812362541 ,112.573013,26.88955855,59.08426666,181.1173909,181.6629458,7.1820245,0.064897861,1620000000000 ,1620000000000 ,1620000000000 ,1616812362520 -1616812362550 ,112.573013,26.8895579,59.08479691,181.1258331,181.6811248,7.1806955,0.064882873,1620000000000 ,1620000000000 ,1620000000000 ,1616812362530 -1616812362561 ,112.573013,26.88955725,59.08535004,181.1315158,181.6930879,7.178394,0.06486306,1620000000000 ,1620000000000 ,1620000000000 ,1616812362540 -1616812362575 ,112.5730129,26.8895566,59.08589554,181.138947,181.6828177,7.1751723,0.064834848,1620000000000 ,1620000000000 ,1620000000000 ,1616812362550 -1616812362581 ,112.5730129,26.88955595,59.08642578,181.1439467,181.6868801,7.1706915,0.064800213,1620000000000 ,1620000000000 ,1620000000000 ,1616812362560 -1616812362589 ,112.5730129,26.88955531,59.08693695,181.1522522,181.696154,7.165762,0.064755975,1620000000000 ,1620000000000 ,1620000000000 ,1616812362570 -1616812362600 ,112.5730129,26.88955466,59.08746719,181.1579349,181.725922,7.160924,0.064712976,1620000000000 ,1620000000000 ,1620000000000 ,1616812362580 -1616812362609 ,112.5730129,26.88955401,59.08806229,181.1640821,181.7305668,7.1556273,0.064669407,1620000000000 ,1620000000000 ,1620000000000 ,1616812362590 -1616812362621 ,112.5730129,26.88955337,59.08871078,181.1671147,181.7163099,7.150897,0.064628858,1620000000000 ,1620000000000 ,1620000000000 ,1616812362600 -1616812362634 ,112.5730128,26.88955272,59.08937073,181.1723057,181.7232354,7.147869,0.064596457,1620000000000 ,1620000000000 ,1620000000000 ,1616812362610 -1616812362641 ,112.5730128,26.88955208,59.09003067,181.1767863,181.7375217,7.1460648,0.064578839,1620000000000 ,1620000000000 ,1620000000000 ,1616812362620 -1616812362650 ,112.5730128,26.88955143,59.09067154,181.1825236,181.7215904,7.1436768,0.064562231,1620000000000 ,1620000000000 ,1620000000000 ,1616812362630 -1616812362660 ,112.5730128,26.88955079,59.09127808,181.1868676,181.729504,7.1408553,0.064535812,1620000000000 ,1620000000000 ,1620000000000 ,1616812362640 -1616812362670 ,112.5730128,26.88955014,59.09185028,181.1925503,181.7354078,7.1365075,0.064498074,1620000000000 ,1620000000000 ,1620000000000 ,1616812362650 -1616812362682 ,112.5730127,26.8895495,59.09237671,181.1978779,181.7368012,7.1313205,0.064451405,1620000000000 ,1620000000000 ,1620000000000 ,1616812362660 -1616812362691 ,112.5730127,26.88954885,59.09285736,181.2018667,181.7551846,7.1286383,0.06442046,1620000000000 ,1620000000000 ,1620000000000 ,1616812362670 -1616812362701 ,112.5730127,26.88954821,59.09327316,181.2064293,181.7498788,7.1276264,0.06440659,1620000000000 ,1620000000000 ,1620000000000 ,1616812362680 -1616812362711 ,112.5730127,26.88954757,59.09362411,181.2112651,181.7568005,7.1254206,0.064385285,1620000000000 ,1620000000000 ,1620000000000 ,1616812362690 -1616812362721 ,112.5730127,26.88954692,59.09392166,181.2132868,181.7558827,7.124013,0.064369254,1620000000000 ,1620000000000 ,1620000000000 ,1616812362700 -1616812362731 ,112.5730126,26.88954628,59.09420395,181.2170571,181.7570791,7.1217546,0.064349866,1620000000000 ,1620000000000 ,1620000000000 ,1616812362710 -1616812362750 ,112.5730126,26.88954564,59.09449768,181.2203902,181.7718234,7.119311,0.064328206,1620000000000 ,1620000000000 ,1620000000000 ,1616812362720 -1616812362752 ,112.5730126,26.88954499,59.09481049,181.223696,181.7769874,7.115718,0.0643003,1620000000000 ,1620000000000 ,1620000000000 ,1616812362730 -1616812362762 ,112.5730126,26.88954435,59.09516144,181.227275,181.7873559,7.1102133,0.064255549,1620000000000 ,1620000000000 ,1620000000000 ,1616812362740 -1616812362772 ,112.5730126,26.88954371,59.0955658,181.2312912,181.8005205,7.104316,0.064204398,1620000000000 ,1620000000000 ,1620000000000 ,1616812362750 -1616812362781 ,112.5730125,26.88954307,59.09598541,181.2337774,181.813972,7.100462,0.064164861,1620000000000 ,1620000000000 ,1620000000000 ,1616812362760 -1616812362792 ,112.5730125,26.88954243,59.09637833,181.237575,181.8249824,7.097441,0.0641349,1620000000000 ,1620000000000 ,1620000000000 ,1616812362770 -1616812362803 ,112.5730125,26.88954179,59.09675217,181.2392142,181.8396987,7.0946994,0.06410888,1620000000000 ,1620000000000 ,1620000000000 ,1616812362780 -1616812362813 ,112.5730125,26.88954115,59.09712982,181.2395147,181.8355137,7.0917525,0.06408454,1620000000000 ,1620000000000 ,1620000000000 ,1616812362790 -1616812362827 ,112.5730125,26.88954051,59.09751892,181.2408808,181.8471952,7.087511,0.064049166,1620000000000 ,1620000000000 ,1620000000000 ,1616812362800 -1616812362833 ,112.5730124,26.88953987,59.09789276,181.2415638,181.8597121,7.08483,0.064020134,1620000000000 ,1620000000000 ,1620000000000 ,1616812362810 -1616812362846 ,112.5730124,26.88953923,59.0982399,181.2435855,181.8595887,7.0805483,0.063981946,1620000000000 ,1620000000000 ,1620000000000 ,1616812362820 -1616812362854 ,112.5730124,26.88953859,59.09854889,181.2459624,181.8604752,7.075729,0.063939912,1620000000000 ,1620000000000 ,1620000000000 ,1616812362830 -1616812362865 ,112.5730124,26.88953795,59.0988121,181.2463176,181.8592585,7.0726256,0.063907411,1620000000000 ,1620000000000 ,1620000000000 ,1616812362840 -1616812362880 ,112.5730123,26.88953731,59.09902954,181.2462903,181.8626316,7.068881,0.063870245,1620000000000 ,1620000000000 ,1620000000000 ,1616812362850 -1616812362884 ,112.5730123,26.88953667,59.09919739,181.2471372,181.8651182,7.0652366,0.063837036,1620000000000 ,1620000000000 ,1620000000000 ,1616812362860 -1616812362893 ,112.5730123,26.88953604,59.09931183,181.2477383,181.8775464,7.0617647,0.063802432,1620000000000 ,1620000000000 ,1620000000000 ,1616812362870 -1616812362906 ,112.5730123,26.8895354,59.09938431,181.2472192,181.8557253,7.058208,0.063766665,1620000000000 ,1620000000000 ,1620000000000 ,1616812362880 -1616812362913 ,112.5730123,26.88953476,59.09941483,181.2464815,181.8462353,7.054655,0.063736507,1620000000000 ,1620000000000 ,1620000000000 ,1616812362890 -1616812362923 ,112.5730122,26.88953412,59.09937668,181.2457165,181.8641231,7.051263,0.063698846,1620000000000 ,1620000000000 ,1620000000000 ,1616812362910 -1616812362933 ,112.5730122,26.88953349,59.09926224,181.2465088,181.8779923,7.0477524,0.063665653,1620000000000 ,1620000000000 ,1620000000000 ,1616812362920 -1616812362945 ,112.5730122,26.88953285,59.09912872,181.2453614,181.8836771,7.042459,0.063622995,1620000000000 ,1620000000000 ,1620000000000 ,1616812362930 -1616812362953 ,112.5730122,26.88953222,59.0990181,181.2456892,181.8735787,7.0383472,0.063582686,1620000000000 ,1620000000000 ,1620000000000 ,1616812362940 -1616812362963 ,112.5730122,26.88953158,59.09896088,181.2440773,181.857898,7.0342283,0.063546549,1620000000000 ,1620000000000 ,1620000000000 ,1616812362940 -1616812362973 ,112.5730121,26.88953095,59.09894943,181.2435855,181.8545473,7.0301905,0.063509826,1620000000000 ,1620000000000 ,1620000000000 ,1616812362960 -1616812362988 ,112.5730121,26.88952968,59.09899521,181.2429025,181.86617,7.021157,0.126909769,1620000000000 ,1620000000000 ,1620000000000 ,1616812362970 -1616812362995 ,112.5730121,26.88952904,59.09913254,181.2425473,181.8564912,7.015775,0.063387902,1620000000000 ,1620000000000 ,1620000000000 ,1616812362980 -1616812363004 ,112.5730121,26.88952904,59.09913254,181.2425473,-400,7.015775,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812362980 -1616812363014 ,112.573012,26.88952778,59.09967804,181.2416184,181.8347865,7.005371,0.126640218,1620000000000 ,1620000000000 ,1620000000000 ,1616812363000 -1616812363030 ,112.573012,26.88952715,59.09995651,181.2430937,181.8500949,7.000837,0.063254044,1620000000000 ,1620000000000 ,1620000000000 ,1616812363010 -1616812363033 ,112.573012,26.88952651,59.10023499,181.2429845,181.8629331,6.996415,0.063215038,1620000000000 ,1620000000000 ,1620000000000 ,1616812363020 -1616812363044 ,112.573012,26.88952588,59.10059738,181.2421648,181.8671172,6.9920235,0.063176974,1620000000000 ,1620000000000 ,1620000000000 ,1616812363030 -1616812363055 ,112.573012,26.88952525,59.10106277,181.2415091,181.8604434,6.9883776,0.063145483,1620000000000 ,1620000000000 ,1620000000000 ,1616812363040 -1616812363065 ,112.5730119,26.88952462,59.10161972,181.2409081,181.8659999,6.9836807,0.063111313,1620000000000 ,1620000000000 ,1620000000000 ,1616812363050 -1616812363074 ,112.5730119,26.88952399,59.10225677,181.241837,181.8857983,6.9768023,0.063057817,1620000000000 ,1620000000000 ,1620000000000 ,1616812363060 -1616812363084 ,112.5730119,26.88952336,59.10297394,181.2402524,181.8800576,6.9701214,0.062998193,1620000000000 ,1620000000000 ,1620000000000 ,1616812363070 -1616812363095 ,112.5730119,26.88952273,59.10377502,181.2385039,181.8746025,6.965641,0.062956595,1620000000000 ,1620000000000 ,1620000000000 ,1616812363080 -1616812363106 ,112.5730119,26.8895221,59.10461044,181.2378208,181.8590367,6.9618826,0.06292266,1620000000000 ,1620000000000 ,1620000000000 ,1616812363090 -1616812363119 ,112.5730118,26.88952147,59.10541534,181.2363182,181.8427484,6.958768,0.062892385,1620000000000 ,1620000000000 ,1620000000000 ,1616812363100 -1616812363126 ,112.5730118,26.88952085,59.10620499,181.2338593,181.8453619,6.9531984,0.062846414,1620000000000 ,1620000000000 ,1620000000000 ,1616812363110 -1616812363135 ,112.5730118,26.88952022,59.10700989,181.2312092,181.8101013,6.94744,0.062797123,1620000000000 ,1620000000000 ,1620000000000 ,1616812363120 -1616812363145 ,112.5730118,26.88951959,59.10782623,181.2283405,181.7898392,6.9440284,0.062760379,1620000000000 ,1620000000000 ,1620000000000 ,1616812363130 -1616812363155 ,112.5730118,26.88951896,59.10861588,181.2254719,181.7830383,6.9414434,0.062734649,1620000000000 ,1620000000000 ,1620000000000 ,1616812363140 -1616812363168 ,112.5730118,26.88951896,59.10861588,181.2254719,-400,6.9414434,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812363140 -1616812363176 ,112.5730117,26.88951771,59.11005402,181.2220021,181.7969945,6.9327307,0.125357743,1620000000000 ,1620000000000 ,1620000000000 ,1616812363160 -1616812363185 ,112.5730117,26.88951709,59.11076736,181.2203082,181.796573,6.928455,0.062620277,1620000000000 ,1620000000000 ,1620000000000 ,1616812363170 -1616812363196 ,112.5730117,26.88951646,59.11145782,181.218587,181.7974496,6.922985,0.062572666,1620000000000 ,1620000000000 ,1620000000000 ,1616812363180 -1616812363206 ,112.5730117,26.88951584,59.11207962,181.2179313,181.8166408,6.919159,0.062533396,1620000000000 ,1620000000000 ,1620000000000 ,1616812363190 -1616812363215 ,112.5730116,26.88951521,59.11233902,181.2261822,181.8086693,6.919579,0.062427324,1620000000000 ,1620000000000 ,1620000000000 ,1616812363200 -1616812363232 ,112.5730116,26.88951459,59.11210251,181.2227944,181.8028749,6.915595,0.062361305,1620000000000 ,1620000000000 ,1620000000000 ,1616812363210 -1616812363241 ,112.5730116,26.88951397,59.11184692,181.2178767,181.8031833,6.9114046,0.062324176,1620000000000 ,1620000000000 ,1620000000000 ,1616812363220 -1616812363249 ,112.5730116,26.88951334,59.11157608,181.2135054,181.8224351,6.9082704,0.062290135,1620000000000 ,1620000000000 ,1620000000000 ,1616812363230 -1616812363261 ,112.5730116,26.88951272,59.11126328,181.2094892,181.8384828,6.905789,0.062269022,1620000000000 ,1620000000000 ,1620000000000 ,1616812363240 -1616812363266 ,112.5730115,26.8895121,59.11090088,181.2045715,181.8573789,6.90171,0.06223094,1620000000000 ,1620000000000 ,1620000000000 ,1616812363250 -1616812363276 ,112.5730115,26.88951148,59.11052704,181.1986975,181.8686594,6.897551,0.062194197,1620000000000 ,1620000000000 ,1620000000000 ,1616812363260 -1616812363286 ,112.5730115,26.88951086,59.11016846,181.1934246,181.8661664,6.8922033,0.062148432,1620000000000 ,1620000000000 ,1620000000000 ,1616812363270 -1616812363298 ,112.5730115,26.88951023,59.10982895,181.1894631,181.8727356,6.8869653,0.06210079,1620000000000 ,1620000000000 ,1620000000000 ,1616812363280 -1616812363309 ,112.5730115,26.88950961,59.10950089,181.1852011,181.8795379,6.88351,0.062067542,1620000000000 ,1620000000000 ,1620000000000 ,1616812363290 -1616812363318 ,112.5730114,26.88950899,59.10917664,181.1825509,181.8756427,6.878041,0.062023809,1620000000000 ,1620000000000 ,1620000000000 ,1616812363300 -1616812363328 ,112.5730114,26.88950838,59.10887146,181.1779337,181.8634184,6.8746667,0.061986179,1620000000000 ,1620000000000 ,1620000000000 ,1616812363310 -1616812363338 ,112.5730114,26.88950776,59.10855865,181.1739176,181.8502824,6.8714027,0.061958324,1620000000000 ,1620000000000 ,1620000000000 ,1616812363320 -1616812363349 ,112.5730114,26.88950714,59.10820389,181.1701746,181.8448616,6.8680754,0.06192662,1620000000000 ,1620000000000 ,1620000000000 ,1616812363330 -1616812363361 ,112.5730114,26.88950652,59.10782242,181.1678251,181.8456268,6.8646393,0.061895394,1620000000000 ,1620000000000 ,1620000000000 ,1616812363340 -1616812363377 ,112.5730113,26.8895059,59.10743713,181.1621423,181.8424892,6.859002,0.061847657,1620000000000 ,1620000000000 ,1620000000000 ,1616812363350 -1616812363382 ,112.5730113,26.88950528,59.10706329,181.1590278,181.8603918,6.853302,0.061797205,1620000000000 ,1620000000000 ,1620000000000 ,1616812363360 -1616812363390 ,112.5730113,26.88950467,59.10669327,181.1550389,181.8663512,6.847993,0.061750705,1620000000000 ,1620000000000 ,1620000000000 ,1616812363370 -1616812363400 ,112.5730113,26.88950405,59.1063118,181.1524981,181.8528962,6.842863,0.061700158,1620000000000 ,1620000000000 ,1620000000000 ,1616812363380 -1616812363411 ,112.5730113,26.88950343,59.10596085,181.1485093,181.854618,6.8384266,0.061661557,1620000000000 ,1620000000000 ,1620000000000 ,1616812363390 -1616812363421 ,112.5730112,26.88950282,59.10565948,181.1438648,181.8421667,6.835204,0.061631213,1620000000000 ,1620000000000 ,1620000000000 ,1616812363400 -1616812363430 ,112.5730112,26.8895022,59.10535431,181.1409961,181.8324813,6.831508,0.061599814,1620000000000 ,1620000000000 ,1620000000000 ,1616812363410 -1616812363439 ,112.5730112,26.88950159,59.10499954,181.1378815,181.847056,6.8281207,0.061566976,1620000000000 ,1620000000000 ,1620000000000 ,1616812363420 -1616812363449 ,112.5730112,26.88950097,59.1045723,181.1358598,181.8505473,6.825364,0.0615365,1620000000000 ,1620000000000 ,1620000000000 ,1616812363430 -1616812363459 ,112.5730112,26.88950036,59.10408401,181.1333189,181.8256509,6.8214893,0.061501318,1620000000000 ,1620000000000 ,1620000000000 ,1616812363440 -1616812363470 ,112.5730111,26.88949974,59.10384369,181.1301771,181.8336186,6.8178887,0.061535636,1620000000000 ,1620000000000 ,1620000000000 ,1616812363450 -1616812363481 ,112.5730111,26.88949913,59.10387039,181.1278548,181.8332372,6.812409,0.061554431,1620000000000 ,1620000000000 ,1620000000000 ,1616812363460 -1616812363491 ,112.5730111,26.88949851,59.10390854,181.123019,181.794759,6.805122,0.061488213,1620000000000 ,1620000000000 ,1620000000000 ,1616812363470 -1616812363500 ,112.5730111,26.8894979,59.10396957,181.1196586,181.7407919,6.801405,0.061446829,1620000000000 ,1620000000000 ,1620000000000 ,1616812363480 -1616812363511 ,112.5730111,26.88949728,59.10403061,181.1170085,181.6877186,6.7987967,0.061422454,1620000000000 ,1620000000000 ,1620000000000 ,1616812363490 -1616812363521 ,112.573011,26.88949667,59.10405731,181.115014,181.6643757,6.7977386,0.061405851,1620000000000 ,1620000000000 ,1620000000000 ,1616812363500 -1616812363531 ,112.573011,26.88949606,59.10403442,181.1134568,181.6400183,6.79562,0.06138921,1620000000000 ,1620000000000 ,1620000000000 ,1616812363510 -1616812363541 ,112.573011,26.88949544,59.10401154,181.111517,181.6304562,6.79163,0.061356224,1620000000000 ,1620000000000 ,1620000000000 ,1616812363520 -1616812363551 ,112.573011,26.88949483,59.10406494,181.110069,181.6124161,6.7872796,0.061319246,1620000000000 ,1620000000000 ,1620000000000 ,1616812363530 -1616812363562 ,112.573011,26.88949422,59.10414505,181.1106427,181.6105275,6.784533,0.061293649,1620000000000 ,1620000000000 ,1620000000000 ,1616812363540 -1616812363570 ,112.573011,26.8894936,59.10419083,181.1106974,181.6547682,6.7834444,0.061278622,1620000000000 ,1620000000000 ,1620000000000 ,1616812363550 -1616812363580 ,112.5730109,26.88949299,59.10417175,181.1091128,181.6991052,6.7817454,0.061262236,1620000000000 ,1620000000000 ,1620000000000 ,1616812363560 -1616812363591 ,112.5730109,26.88949238,59.10415268,181.1043863,181.7480236,6.778968,0.06124194,1620000000000 ,1620000000000 ,1620000000000 ,1616812363570 -1616812363603 ,112.5730109,26.88949177,59.10421371,181.0997144,181.7513262,6.775066,0.061211208,1620000000000 ,1620000000000 ,1620000000000 ,1616812363580 -1616812363611 ,112.5730109,26.88949116,59.10435867,181.0938131,181.757464,6.771636,0.061180853,1620000000000 ,1620000000000 ,1620000000000 ,1616812363590 -1616812363621 ,112.5730109,26.88949054,59.10459518,181.0867917,181.7921206,6.7663336,0.061144747,1620000000000 ,1620000000000 ,1620000000000 ,1616812363600 -1616812363632 ,112.5730108,26.88948993,59.1048851,181.0808085,181.821487,6.762345,0.06110594,1620000000000 ,1620000000000 ,1620000000000 ,1616812363610 -1616812363641 ,112.5730108,26.88948932,59.10523987,181.0734592,181.8467423,6.759524,0.061079838,1620000000000 ,1620000000000 ,1620000000000 ,1616812363620 -1616812363652 ,112.5730108,26.88948871,59.10564041,181.0669841,181.8507172,6.75818,0.061064204,1620000000000 ,1620000000000 ,1620000000000 ,1616812363630 -1616812363663 ,112.5730108,26.8894881,59.10603333,181.0588426,181.8504725,6.759327,0.061074874,1620000000000 ,1620000000000 ,1620000000000 ,1616812363640 -1616812363682 ,112.5730108,26.88948749,59.10637665,181.0518211,181.8739033,6.757758,0.061065521,1620000000000 ,1620000000000 ,1620000000000 ,1616812363650 -1616812363686 ,112.5730107,26.88948688,59.10668182,181.0464663,181.8852383,6.75558,0.061044548,1620000000000 ,1620000000000 ,1620000000000 ,1616812363660 -1616812363691 ,112.5730107,26.88948627,59.10696793,181.0412207,181.8801242,6.7521763,0.061014926,1620000000000 ,1620000000000 ,1620000000000 ,1616812363670 -1616812363701 ,112.5730107,26.88948566,59.10725021,181.0351555,181.8700847,6.75132,0.060999608,1620000000000 ,1620000000000 ,1620000000000 ,1616812363680 -1616812363712 ,112.5730107,26.88948505,59.10751724,181.0298552,181.8543037,6.7504697,0.060996161,1620000000000 ,1620000000000 ,1620000000000 ,1616812363690 -1616812363723 ,112.5730107,26.88948444,59.10773468,181.0245004,181.8589428,6.7496386,0.060982429,1620000000000 ,1620000000000 ,1620000000000 ,1616812363700 -1616812363732 ,112.5730106,26.88948383,59.10791397,181.0177795,181.8609862,6.748627,0.060975748,1620000000000 ,1620000000000 ,1620000000000 ,1616812363710 -1616812363744 ,112.5730106,26.88948322,59.10806656,181.011441,181.8609593,6.7456975,0.06095243,1620000000000 ,1620000000000 ,1620000000000 ,1616812363720 -1616812363752 ,112.5730106,26.88948262,59.1082077,181.007179,181.8694361,6.745084,0.060940349,1620000000000 ,1620000000000 ,1620000000000 ,1616812363730 -1616812363763 ,112.5730106,26.88948201,59.10835266,181.0019061,181.8499483,6.7427025,0.060923662,1620000000000 ,1620000000000 ,1620000000000 ,1616812363740 -1616812363773 ,112.5730106,26.8894814,59.10848999,180.9949393,181.8377311,6.740386,0.060900873,1620000000000 ,1620000000000 ,1620000000000 ,1616812363750 -1616812363782 ,112.5730105,26.88948079,59.10862732,180.9893659,181.8460049,6.7399206,0.060892917,1620000000000 ,1620000000000 ,1620000000000 ,1616812363760 -1616812363794 ,112.5730105,26.88948018,59.10877228,180.9846121,181.8466999,6.7396564,0.060889103,1620000000000 ,1620000000000 ,1620000000000 ,1616812363770 -1616812363803 ,112.5730105,26.88947957,59.10891342,180.9817707,181.8425575,6.742015,0.060904622,1620000000000 ,1620000000000 ,1620000000000 ,1616812363780 -1616812363813 ,112.5730105,26.88947896,59.10902405,180.9769623,181.8250085,6.743891,0.060923993,1620000000000 ,1620000000000 ,1620000000000 ,1616812363790 -1616812363823 ,112.5730105,26.88947835,59.10907364,180.9748312,181.8096031,6.74479,0.060927877,1620000000000 ,1620000000000 ,1620000000000 ,1616812363800 -1616812363833 ,112.5730105,26.88947775,59.10905075,180.9733013,181.7911891,6.7456546,0.0609378,1620000000000 ,1620000000000 ,1620000000000 ,1616812363820 -1616812363843 ,112.5730104,26.88947714,59.10896683,180.9701321,181.7872018,6.745328,0.060932411,1620000000000 ,1620000000000 ,1620000000000 ,1616812363830 -1616812363854 ,112.5730104,26.88947653,59.10885239,180.96893,181.776319,6.7464294,0.060937741,1620000000000 ,1620000000000 ,1620000000000 ,1616812363840 -1616812363865 ,112.5730104,26.88947592,59.1087265,180.9664164,181.7532154,6.7450714,0.060926726,1620000000000 ,1620000000000 ,1620000000000 ,1616812363850 -1616812363873 ,112.5730104,26.8894747,59.10849762,180.9650231,181.7291411,6.7495856,0.121898955,1620000000000 ,1620000000000 ,1620000000000 ,1616812363860 -1616812363883 ,112.5730103,26.88947409,59.10838699,180.9640669,181.713381,6.752388,0.060983938,1620000000000 ,1620000000000 ,1620000000000 ,1616812363870 -1616812363894 ,112.5730103,26.88947348,59.10824966,180.9627281,181.7037317,6.755824,0.061015625,1620000000000 ,1620000000000 ,1620000000000 ,1616812363880 -1616812363904 ,112.5730103,26.88947287,59.10807419,180.9623183,181.6848337,6.756347,0.0610243,1620000000000 ,1620000000000 ,1620000000000 ,1616812363890 -1616812363914 ,112.5730103,26.88947226,59.10787582,180.963657,181.6723344,6.7573814,0.061028874,1620000000000 ,1620000000000 ,1620000000000 ,1616812363900 -1616812363925 ,112.5730103,26.88947165,59.10767365,180.9641488,181.660789,6.7581716,0.06103584,1620000000000 ,1620000000000 ,1620000000000 ,1616812363910 -1616812363935 ,112.5730102,26.88947104,59.10747528,180.9667443,181.6618892,6.760093,0.061052578,1620000000000 ,1620000000000 ,1620000000000 ,1616812363920 -1616812363944 ,112.5730102,26.88947043,59.10726929,180.9699135,181.6519812,6.7623467,0.06107053,1620000000000 ,1620000000000 ,1620000000000 ,1616812363930 -1616812363954 ,112.5730102,26.88946982,59.10707855,180.9720992,181.6401025,6.7652564,0.061095402,1620000000000 ,1620000000000 ,1620000000000 ,1616812363940 -1616812363964 ,112.5730102,26.88946921,59.10691833,180.9768257,181.6264723,6.7681017,0.061122755,1620000000000 ,1620000000000 ,1620000000000 ,1616812363950 -1616812363975 ,112.5730102,26.8894686,59.10676193,180.9814975,181.616177,6.771154,0.061148174,1620000000000 ,1620000000000 ,1620000000000 ,1616812363960 -1616812363986 ,112.5730102,26.88946799,59.10657883,180.9853224,181.6222613,6.774572,0.061179368,1620000000000 ,1620000000000 ,1620000000000 ,1616812363970 -1616812363995 ,112.5730101,26.88946737,59.10638809,180.9884097,181.6186002,6.775433,0.061194151,1620000000000 ,1620000000000 ,1620000000000 ,1616812363980 -1616812364005 ,112.5730101,26.88946737,59.10638809,180.9884097,-400,6.775433,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812363990 -1616812364015 ,112.5730101,26.88946615,59.10616302,180.9928356,181.6117205,6.774796,0.122384309,1620000000000 ,1620000000000 ,1620000000000 ,1616812364000 -1616812364026 ,112.5730101,26.88946554,59.10614014,180.9964146,181.6040187,6.7753673,0.06119525,1620000000000 ,1620000000000 ,1620000000000 ,1616812364010 -1616812364038 ,112.5730101,26.88946493,59.10613632,180.9991194,181.6180126,6.778718,0.061219941,1620000000000 ,1620000000000 ,1620000000000 ,1616812364020 -1616812364046 ,112.5730101,26.88946431,59.10614777,181.0020427,181.632789,6.782098,0.061252229,1620000000000 ,1620000000000 ,1620000000000 ,1616812364030 -1616812364057 ,112.57301,26.8894637,59.10619736,181.0038459,181.6444379,6.7854357,0.061282056,1620000000000 ,1620000000000 ,1620000000000 ,1616812364040 -1616812364066 ,112.57301,26.88946309,59.10629272,181.0074522,181.6513425,6.788411,0.061314084,1620000000000 ,1620000000000 ,1620000000000 ,1616812364050 -1616812364075 ,112.57301,26.88946248,59.10641861,181.0105941,181.6571038,6.7888274,0.061323925,1620000000000 ,1620000000000 ,1620000000000 ,1616812364060 -1616812364086 ,112.57301,26.88946186,59.10659409,181.0116869,181.679198,6.7892365,0.0613274,1620000000000 ,1620000000000 ,1620000000000 ,1616812364070 -1616812364096 ,112.57301,26.88946125,59.10681152,181.0135174,181.686785,6.789671,0.061334876,1620000000000 ,1620000000000 ,1620000000000 ,1616812364080 -1616812364108 ,112.57301,26.88946064,59.10703278,181.015949,181.7023877,6.790413,0.06134008,1620000000000 ,1620000000000 ,1620000000000 ,1616812364090 -1616812364121 ,112.5730099,26.88946002,59.10723877,181.0189543,181.7249968,6.79418,0.061369954,1620000000000 ,1620000000000 ,1620000000000 ,1616812364100 -1616812364128 ,112.5730099,26.88945941,59.10744858,181.0212765,181.7348539,6.7967143,0.061395154,1620000000000 ,1620000000000 ,1620000000000 ,1616812364110 -1616812364138 ,112.5730099,26.8894588,59.10770798,181.0228884,181.754874,6.8006973,0.06142463,1620000000000 ,1620000000000 ,1620000000000 ,1616812364120 -1616812364148 ,112.5730099,26.88945818,59.10802078,181.0218229,181.7631931,6.803013,0.061455624,1620000000000 ,1620000000000 ,1620000000000 ,1616812364130 -1616812364158 ,112.5730099,26.88945757,59.10834122,181.0201837,181.7656892,6.8043857,0.061472499,1620000000000 ,1620000000000 ,1620000000000 ,1616812364140 -1616812364168 ,112.5730098,26.88945695,59.10864258,181.0230524,181.7748118,6.8066688,0.061490432,1620000000000 ,1620000000000 ,1620000000000 ,1616812364150 -1616812364179 ,112.5730098,26.88945634,59.10891342,181.0234075,181.7715546,6.807786,0.061498737,1620000000000 ,1620000000000 ,1620000000000 ,1616812364160 -1616812364193 ,112.5730098,26.88945572,59.10916519,181.0240086,181.7653792,6.809054,0.061511843,1620000000000 ,1620000000000 ,1620000000000 ,1616812364170 -1616812364198 ,112.5730098,26.88945511,59.10937119,181.0254566,181.7677014,6.810397,0.061520803,1620000000000 ,1620000000000 ,1620000000000 ,1616812364180 -1616812364212 ,112.5730098,26.88945449,59.10950851,181.026686,181.7774119,6.8120165,0.061532233,1620000000000 ,1620000000000 ,1620000000000 ,1616812364190 -1616812364219 ,112.5730097,26.88945388,59.10984421,181.0392536,181.517171,6.793098,0.061141778,1620000000000 ,1620000000000 ,1620000000000 ,1616812364200 -1616812364231 ,112.5730097,26.88945328,59.11057281,181.03827,181.0977586,6.7953305,0.060593289,1620000000000 ,1620000000000 ,1620000000000 ,1616812364210 -1616812364240 ,112.5730097,26.88945267,59.11128235,181.0373411,181.1037299,6.7978835,0.060615056,1620000000000 ,1620000000000 ,1620000000000 ,1616812364220 -1616812364250 ,112.5730097,26.88945206,59.11196899,181.0387345,181.1190458,6.800033,0.060635224,1620000000000 ,1620000000000 ,1620000000000 ,1616812364230 -1616812364258 ,112.5730097,26.88945146,59.11264038,181.0383793,181.1320346,6.803785,0.060665442,1620000000000 ,1620000000000 ,1620000000000 ,1616812364240 -1616812364268 ,112.5730097,26.88945085,59.11329269,181.0382427,181.1349878,6.8066945,0.060693932,1620000000000 ,1620000000000 ,1620000000000 ,1616812364250 -1616812364279 ,112.5730097,26.88945024,59.1139183,181.0379422,181.1379719,6.808441,0.060706527,1620000000000 ,1620000000000 ,1620000000000 ,1616812364260 -1616812364290 ,112.5730097,26.88944964,59.11450195,181.0382154,181.1394253,6.810647,0.060727933,1620000000000 ,1620000000000 ,1620000000000 ,1616812364270 -1616812364306 ,112.5730097,26.88944903,59.11506271,181.0385159,181.1514897,6.8124475,0.060742551,1620000000000 ,1620000000000 ,1620000000000 ,1616812364280 -1616812364310 ,112.5730096,26.88944842,59.1156311,181.0403191,181.1466198,6.815219,0.060762742,1620000000000 ,1620000000000 ,1620000000000 ,1616812364290 -1616812364318 ,112.5730096,26.88944781,59.11623383,181.0402371,181.1310676,6.8176675,0.060789724,1620000000000 ,1620000000000 ,1620000000000 ,1616812364300 -1616812364329 ,112.5730096,26.88944721,59.11684418,181.0410294,181.1356119,6.8204083,0.060812591,1620000000000 ,1620000000000 ,1620000000000 ,1616812364310 -1616812364340 ,112.5730096,26.8894466,59.11744308,181.0417671,181.1384578,6.8243356,0.06084255,1620000000000 ,1620000000000 ,1620000000000 ,1616812364320 -1616812364349 ,112.5730096,26.88944599,59.1180191,181.0410294,181.138077,6.8270288,0.060870274,1620000000000 ,1620000000000 ,1620000000000 ,1616812364330 -1616812364359 ,112.5730096,26.88944538,59.1186142,181.0402098,181.1309221,6.8292503,0.060892154,1620000000000 ,1620000000000 ,1620000000000 ,1616812364340 -1616812364369 ,112.5730096,26.88944477,59.11923981,181.0414939,181.1215168,6.831985,0.060916512,1620000000000 ,1620000000000 ,1620000000000 ,1616812364350 -1616812364379 ,112.5730096,26.88944416,59.11987305,181.0410568,181.1055835,6.833193,0.060930159,1620000000000 ,1620000000000 ,1620000000000 ,1616812364360 -1616812364389 ,112.5730095,26.88944355,59.12050247,181.0434337,181.1088177,6.8364377,0.060954851,1620000000000 ,1620000000000 ,1620000000000 ,1616812364370 -1616812364399 ,112.5730095,26.88944294,59.12113571,181.0473132,181.1047849,6.8376584,0.060972576,1620000000000 ,1620000000000 ,1620000000000 ,1616812364380 -1616812364410 ,112.5730095,26.88944233,59.12178421,181.0484334,181.0871704,6.839499,0.06098614,1620000000000 ,1620000000000 ,1620000000000 ,1616812364390 -1616812364420 ,112.5730095,26.88944172,59.12246323,181.0514386,181.0777983,6.842757,0.061012854,1620000000000 ,1620000000000 ,1620000000000 ,1616812364400 -1616812364432 ,112.5730095,26.88944111,59.12313843,181.054963,181.0830306,6.844697,0.061031345,1620000000000 ,1620000000000 ,1620000000000 ,1616812364410 -1616812364440 ,112.5730095,26.8894405,59.12381363,181.0584601,181.0763611,6.847468,0.061056336,1620000000000 ,1620000000000 ,1620000000000 ,1616812364420 -1616812364451 ,112.5730095,26.88943989,59.12450027,181.0613561,181.0734878,6.849625,0.061077742,1620000000000 ,1620000000000 ,1620000000000 ,1616812364430 -1616812364461 ,112.5730095,26.88943928,59.12521362,181.0640608,181.0745988,6.8520546,0.061099319,1620000000000 ,1620000000000 ,1620000000000 ,1616812364440 -1616812364472 ,112.5730094,26.88943867,59.1257019,181.0648531,181.3363127,6.8536215,0.061509184,1620000000000 ,1620000000000 ,1620000000000 ,1616812364450 -1616812364485 ,112.5730094,26.88943805,59.12596893,181.0656454,181.6159233,6.8568864,0.061931068,1620000000000 ,1620000000000 ,1620000000000 ,1616812364460 -1616812364493 ,112.5730094,26.88943743,59.12626266,181.0688146,181.6304725,6.858147,0.061948502,1620000000000 ,1620000000000 ,1620000000000 ,1616812364470 -1616812364503 ,112.5730094,26.88943681,59.12659836,181.0709457,181.6368359,6.8603578,0.06196624,1620000000000 ,1620000000000 ,1620000000000 ,1616812364480 -1616812364512 ,112.5730094,26.88943619,59.12697601,181.0727761,181.6315283,6.8633275,0.061994621,1620000000000 ,1620000000000 ,1620000000000 ,1616812364490 -1616812364521 ,112.5730094,26.88943557,59.1273613,181.0749618,181.631548,6.8665533,0.062021376,1620000000000 ,1620000000000 ,1620000000000 ,1616812364500 -1616812364531 ,112.5730093,26.88943495,59.12771988,181.0766011,181.6453895,6.8690896,0.062045224,1620000000000 ,1620000000000 ,1620000000000 ,1616812364510 -1616812364545 ,112.5730093,26.88943433,59.12802124,181.0792512,181.6567593,6.8708386,0.06206241,1620000000000 ,1620000000000 ,1620000000000 ,1616812364520 -1616812364561 ,112.5730093,26.88943371,59.12829208,181.0811363,181.6550372,6.8733225,0.062082932,1620000000000 ,1620000000000 ,1620000000000 ,1616812364530 -1616812364564 ,112.5730093,26.88943309,59.12855911,181.0803713,181.64715,6.8768616,0.062111226,1620000000000 ,1620000000000 ,1620000000000 ,1616812364540 -1616812364574 ,112.5730093,26.88943246,59.12879562,181.0814915,181.6412782,6.8800006,0.062139425,1620000000000 ,1620000000000 ,1620000000000 ,1616812364550 -1616812364582 ,112.5730093,26.88943184,59.12899017,181.0819286,181.6423807,6.882857,0.062162875,1620000000000 ,1620000000000 ,1620000000000 ,1616812364560 -1616812364592 ,112.5730092,26.88943122,59.12918854,181.0815188,181.6474875,6.885024,0.062184363,1620000000000 ,1620000000000 ,1620000000000 ,1616812364570 -1616812364602 ,112.5730092,26.8894306,59.1294632,181.0802074,181.6507162,6.8867784,0.062206474,1620000000000 ,1620000000000 ,1620000000000 ,1616812364580 -1616812364616 ,112.5730092,26.88942998,59.12982941,181.0794424,181.6432896,6.8887415,0.062223006,1620000000000 ,1620000000000 ,1620000000000 ,1616812364590 -1616812364623 ,112.5730092,26.88942936,59.13026428,181.0804533,181.6515358,6.8905616,0.06224494,1620000000000 ,1620000000000 ,1620000000000 ,1616812364600 -1616812364634 ,112.5730092,26.88942873,59.13075638,181.0804533,181.6576643,6.890536,0.062249109,1620000000000 ,1620000000000 ,1620000000000 ,1616812364610 -1616812364643 ,112.5730091,26.88942811,59.13130569,181.0814368,181.6563701,6.8920865,0.0622615,1620000000000 ,1620000000000 ,1620000000000 ,1616812364620 -1616812364652 ,112.5730091,26.88942749,59.13190842,181.0836771,181.6593398,6.8939037,0.062279023,1620000000000 ,1620000000000 ,1620000000000 ,1616812364630 -1616812364663 ,112.5730091,26.88942687,59.13253021,181.0839503,181.6548131,6.8983417,0.062313518,1620000000000 ,1620000000000 ,1620000000000 ,1616812364640 -1616812364673 ,112.5730091,26.88942624,59.13315964,181.0851525,181.6630449,6.9013324,0.062346166,1620000000000 ,1620000000000 ,1620000000000 ,1616812364650 -1616812364683 ,112.5730091,26.88942562,59.13379669,181.0859721,181.6765503,6.9027066,0.062362883,1620000000000 ,1620000000000 ,1620000000000 ,1616812364660 -1616812364693 ,112.5730091,26.889425,59.13447189,181.0877479,181.6833611,6.9050264,0.062383089,1620000000000 ,1620000000000 ,1620000000000 ,1616812364680 -1616812364702 ,112.573009,26.88942437,59.13515854,181.0870103,181.6790752,6.9076304,0.062406869,1620000000000 ,1620000000000 ,1620000000000 ,1616812364680 -1616812364713 ,112.573009,26.88942375,59.13580704,181.0872835,181.6893304,6.911027,0.062431319,1620000000000 ,1620000000000 ,1620000000000 ,1616812364700 -1616812364726 ,112.573009,26.88942312,59.1363678,181.0904527,181.7031057,6.9153457,0.062469106,1620000000000 ,1620000000000 ,1620000000000 ,1616812364710 -1616812364733 ,112.573009,26.8894225,59.13685989,181.0907259,181.709704,6.917739,0.062493817,1620000000000 ,1620000000000 ,1620000000000 ,1616812364720 -1616812364745 ,112.573009,26.88942187,59.13734818,181.0919826,181.7150602,6.92029,0.062513418,1620000000000 ,1620000000000 ,1620000000000 ,1616812364730 -1616812364754 ,112.5730089,26.88942125,59.13786316,181.0930755,181.7193172,6.9231753,0.062544445,1620000000000 ,1620000000000 ,1620000000000 ,1616812364740 -1616812364763 ,112.5730089,26.88942,59.13880539,181.0964632,181.7347711,6.928415,0.125148274,1620000000000 ,1620000000000 ,1620000000000 ,1616812364750 -1616812364773 ,112.5730089,26.88941937,59.13920975,181.0967365,181.7439685,6.9315996,0.062617699,1620000000000 ,1620000000000 ,1620000000000 ,1616812364760 -1616812364784 ,112.5730089,26.88941875,59.13956451,181.0978839,181.7532681,6.9353986,0.062645078,1620000000000 ,1620000000000 ,1620000000000 ,1616812364770 -1616812364794 ,112.5730088,26.88941812,59.13989258,181.0987035,181.7554879,6.939027,0.062679404,1620000000000 ,1620000000000 ,1620000000000 ,1616812364780 -1616812364805 ,112.5730088,26.88941749,59.14020538,181.0983757,181.7698434,6.940136,0.062697406,1620000000000 ,1620000000000 ,1620000000000 ,1616812364790 -1616812364815 ,112.5730088,26.88941687,59.14052582,181.0995505,181.7786533,6.9427867,0.062715052,1620000000000 ,1620000000000 ,1620000000000 ,1616812364800 -1616812364824 ,112.5730088,26.88941624,59.14083481,181.0995778,181.7749383,6.946154,0.062744787,1620000000000 ,1620000000000 ,1620000000000 ,1616812364810 -1616812364835 ,112.5730088,26.88941561,59.14110184,181.1004521,181.7706512,6.948717,0.062767419,1620000000000 ,1620000000000 ,1620000000000 ,1616812364820 -1616812364844 ,112.5730088,26.88941498,59.14128876,181.1013537,181.7783494,6.952244,0.062795644,1620000000000 ,1620000000000 ,1620000000000 ,1616812364830 -1616812364855 ,112.5730087,26.88941436,59.14140701,181.1019547,181.7949281,6.9556994,0.062824686,1620000000000 ,1620000000000 ,1620000000000 ,1616812364840 -1616812364865 ,112.5730087,26.88941373,59.14152908,181.1000423,181.7872156,6.957834,0.062847698,1620000000000 ,1620000000000 ,1620000000000 ,1616812364850 -1616812364875 ,112.5730087,26.8894131,59.1416626,181.1007799,181.7690102,6.9605193,0.062869496,1620000000000 ,1620000000000 ,1620000000000 ,1616812364860 -1616812364886 ,112.5730087,26.88941247,59.14178085,181.1003155,181.7696384,6.963976,0.062898265,1620000000000 ,1620000000000 ,1620000000000 ,1616812364870 -1616812364896 ,112.5730087,26.88941184,59.14186478,181.1008619,181.7762745,6.9662704,0.062921146,1620000000000 ,1620000000000 ,1620000000000 ,1616812364880 -1616812364907 ,112.5730086,26.88941121,59.1419487,181.1005887,181.7752534,6.967987,0.062938152,1620000000000 ,1620000000000 ,1620000000000 ,1616812364890 -1616812364916 ,112.5730086,26.88941058,59.14207458,181.1000696,181.7733485,6.96935,0.062952147,1620000000000 ,1620000000000 ,1620000000000 ,1616812364900 -1616812364925 ,112.5730086,26.88940995,59.14226151,181.100534,181.7630765,6.97142,0.062970719,1620000000000 ,1620000000000 ,1620000000000 ,1616812364910 -1616812364935 ,112.5730086,26.88940932,59.1424942,181.1007253,181.7629389,6.975248,0.063002977,1620000000000 ,1620000000000 ,1620000000000 ,1616812364920 -1616812364946 ,112.5730086,26.88940869,59.14275742,181.1018181,181.7732619,6.97783,0.063031179,1620000000000 ,1620000000000 ,1620000000000 ,1616812364930 -1616812364955 ,112.5730085,26.88940806,59.14300919,181.1014083,181.7689769,6.9792705,0.063043403,1620000000000 ,1620000000000 ,1620000000000 ,1616812364940 -1616812364965 ,112.5730085,26.88940743,59.14326859,181.1010258,181.7702762,6.9820614,0.06307351,1620000000000 ,1620000000000 ,1620000000000 ,1616812364950 -1616812364975 ,112.5730085,26.8894068,59.14354706,181.101299,181.7778657,6.9849706,0.063093922,1620000000000 ,1620000000000 ,1620000000000 ,1616812364960 -1616812364985 ,112.5730085,26.88940617,59.14384842,181.1005614,181.7737433,6.9887834,0.063128718,1620000000000 ,1620000000000 ,1620000000000 ,1616812364970 -1616812364996 ,112.5730085,26.88940554,59.14417267,181.1002335,181.772471,6.990341,0.063147186,1620000000000 ,1620000000000 ,1620000000000 ,1616812364980 -1616812365006 ,112.5730084,26.88940491,59.14455795,181.099851,181.7714587,6.9915895,0.063162251,1620000000000 ,1620000000000 ,1620000000000 ,1616812364990 -1616812365019 ,112.5730084,26.88940428,59.14497757,181.0993319,181.7549271,6.9949474,0.06319019,1620000000000 ,1620000000000 ,1620000000000 ,1616812365000 -1616812365026 ,112.5730084,26.88940365,59.14539337,181.101299,181.755843,6.9991183,0.063225789,1620000000000 ,1620000000000 ,1620000000000 ,1616812365010 -1616812365035 ,112.5730084,26.88940301,59.14578629,181.1027743,181.7702286,7.0027747,0.063260457,1620000000000 ,1620000000000 ,1620000000000 ,1616812365020 -1616812365046 ,112.5730084,26.88940238,59.14616013,181.1026377,181.7733091,7.003929,0.063276931,1620000000000 ,1620000000000 ,1620000000000 ,1616812365030 -1616812365057 ,112.5730083,26.88940175,59.14654541,181.1038672,181.7719748,7.0071573,0.063300393,1620000000000 ,1620000000000 ,1620000000000 ,1616812365040 -1616812365067 ,112.5730083,26.88940112,59.14696503,181.1044682,181.7746365,7.009744,0.063325753,1620000000000 ,1620000000000 ,1620000000000 ,1616812365050 -1616812365079 ,112.5730083,26.88940048,59.14739227,181.1056157,181.7871036,7.0130057,0.063354074,1620000000000 ,1620000000000 ,1620000000000 ,1616812365060 -1616812365086 ,112.5730083,26.88939985,59.14783096,181.1043589,181.8050091,7.015574,0.063382751,1620000000000 ,1620000000000 ,1620000000000 ,1616812365070 -1616812365097 ,112.5730083,26.88939921,59.14826965,181.1052332,181.8137051,7.0185957,0.063410278,1620000000000 ,1620000000000 ,1620000000000 ,1616812365080 -1616812365107 ,112.5730082,26.88939858,59.14871979,181.1058069,181.8243929,7.0217395,0.063437717,1620000000000 ,1620000000000 ,1620000000000 ,1616812365090 -1616812365117 ,112.5730082,26.88939795,59.14916611,181.1058069,181.8380703,7.0238886,0.063456638,1620000000000 ,1620000000000 ,1620000000000 ,1616812365100 -1616812365127 ,112.5730082,26.88939731,59.14956665,181.1089762,181.8388429,7.0264726,0.063481977,1620000000000 ,1620000000000 ,1620000000000 ,1616812365110 -1616812365138 ,112.5730082,26.88939668,59.1499176,181.1094406,181.8437914,7.0289125,0.063505115,1620000000000 ,1620000000000 ,1620000000000 ,1616812365120 -1616812365148 ,112.5730082,26.88939604,59.15023804,181.1087029,181.845558,7.0321164,0.063525803,1620000000000 ,1620000000000 ,1620000000000 ,1616812365130 -1616812365157 ,112.5730081,26.88939541,59.15054703,181.1073642,181.8432492,7.0349045,0.063554583,1620000000000 ,1620000000000 ,1620000000000 ,1616812365140 -1616812365168 ,112.5730081,26.88939477,59.15081406,181.1066812,181.8395688,7.0385947,0.063583723,1620000000000 ,1620000000000 ,1620000000000 ,1616812365150 -1616812365177 ,112.5730081,26.88939414,59.15102386,181.1065446,181.8344455,7.0430303,0.063621272,1620000000000 ,1620000000000 ,1620000000000 ,1616812365160 -1616812365188 ,112.5730081,26.8893935,59.15116882,181.1051239,181.815144,7.0453305,0.063643482,1620000000000 ,1620000000000 ,1620000000000 ,1616812365170 -1616812365200 ,112.5730081,26.88939286,59.15128708,181.1028563,181.8100068,7.0480337,0.063667527,1620000000000 ,1620000000000 ,1620000000000 ,1616812365180 -1616812365208 ,112.573008,26.88939223,59.15138245,181.1014903,181.7993421,7.0505085,0.063689661,1620000000000 ,1620000000000 ,1620000000000 ,1616812365190 -1616812365218 ,112.573008,26.88939159,59.15147781,181.0893598,181.5600448,7.0240393,0.063261236,1620000000000 ,1620000000000 ,1620000000000 ,1616812365200 -1616812365229 ,112.573008,26.88939097,59.15166092,181.0899882,181.1975834,7.026311,0.062566034,1620000000000 ,1620000000000 ,1620000000000 ,1616812365210 -1616812365238 ,112.573008,26.88939034,59.1518631,181.0907805,181.1865646,7.028661,0.062585741,1620000000000 ,1620000000000 ,1620000000000 ,1616812365220 -1616812365248 ,112.573008,26.88938972,59.15207291,181.0895238,181.184832,7.0305467,0.062605915,1620000000000 ,1620000000000 ,1620000000000 ,1616812365230 -1616812365258 ,112.573008,26.88938909,59.1522522,181.0904254,181.1791343,7.0338917,0.062629465,1620000000000 ,1620000000000 ,1620000000000 ,1616812365240 -1616812365272 ,112.573008,26.88938846,59.15237808,181.0921466,181.1793908,7.037136,0.062658444,1620000000000 ,1620000000000 ,1620000000000 ,1616812365250 -1616812365282 ,112.5730079,26.88938784,59.15250397,181.0906712,181.1857675,7.0397096,0.06268199,1620000000000 ,1620000000000 ,1620000000000 ,1616812365260 -1616812365288 ,112.5730079,26.88938721,59.15267944,181.0880211,181.184654,7.0423937,0.062708591,1620000000000 ,1620000000000 ,1620000000000 ,1616812365270 -1616812365298 ,112.5730079,26.88938658,59.15287781,181.0877206,181.1815857,7.0444946,0.062729996,1620000000000 ,1620000000000 ,1620000000000 ,1616812365280 -1616812365308 ,112.5730079,26.88938596,59.15308762,181.0866278,181.1828132,7.046176,0.062741803,1620000000000 ,1620000000000 ,1620000000000 ,1616812365290 -1616812365319 ,112.5730079,26.88938533,59.15333939,181.0849339,181.1973315,7.048442,0.062766081,1620000000000 ,1620000000000 ,1620000000000 ,1616812365300 -1616812365332 ,112.5730079,26.8893847,59.15363312,181.084005,181.1831785,7.05045,0.062788502,1620000000000 ,1620000000000 ,1620000000000 ,1616812365310 -1616812365347 ,112.5730079,26.88938407,59.15393448,181.0841689,181.1762519,7.054058,0.062813515,1620000000000 ,1620000000000 ,1620000000000 ,1616812365320 -1616812365358 ,112.5730079,26.88938345,59.1542244,181.0856715,181.1643772,7.056849,0.062842599,1620000000000 ,1620000000000 ,1620000000000 ,1616812365330 -1616812365362 ,112.5730078,26.88938282,59.15452957,181.0865731,181.1721073,7.057627,0.0628524,1620000000000 ,1620000000000 ,1620000000000 ,1616812365340 -1616812365374 ,112.5730078,26.88938219,59.15486145,181.0858901,181.1654704,7.061946,0.0628842,1620000000000 ,1620000000000 ,1620000000000 ,1616812365350 -1616812365379 ,112.5730078,26.88938156,59.15518951,181.0865458,181.1579998,7.0643406,0.062908917,1620000000000 ,1620000000000 ,1620000000000 ,1616812365360 -1616812365390 ,112.5730078,26.88938093,59.15551376,181.0880758,181.1688933,7.067701,0.062934421,1620000000000 ,1620000000000 ,1620000000000 ,1616812365370 -1616812365400 ,112.5730078,26.8893803,59.15583801,181.0878026,181.1685876,7.0711217,0.062968656,1620000000000 ,1620000000000 ,1620000000000 ,1616812365380 -1616812365409 ,112.5730078,26.88937967,59.15616608,181.0877479,181.1546453,7.07399,0.062993563,1620000000000 ,1620000000000 ,1620000000000 ,1616812365390 -1616812365420 ,112.5730078,26.88937904,59.15647125,181.0888954,181.1654418,7.0776763,0.063023383,1620000000000 ,1620000000000 ,1620000000000 ,1616812365400 -1616812365429 ,112.5730078,26.88937841,59.15675735,181.087502,181.1775386,7.079965,0.063048463,1620000000000 ,1620000000000 ,1620000000000 ,1616812365410 -1616812365439 ,112.5730077,26.88937778,59.15704727,181.0880211,181.1828863,7.082316,0.063070005,1620000000000 ,1620000000000 ,1620000000000 ,1616812365420 -1616812365450 ,112.5730077,26.88937715,59.15733719,181.0885402,181.1929148,7.085879,0.063095776,1620000000000 ,1620000000000 ,1620000000000 ,1616812365430 -1616812365461 ,112.5730077,26.88937652,59.15758133,181.0885675,181.1953933,7.089461,0.063127161,1620000000000 ,1620000000000 ,1620000000000 ,1616812365440 -1616812365470 ,112.5730077,26.88937588,59.1577034,181.0873108,181.4390915,7.092253,0.063603452,1620000000000 ,1620000000000 ,1620000000000 ,1616812365450 -1616812365480 ,112.5730077,26.88937524,59.15770721,181.0868737,181.6877778,7.0971665,0.064092535,1620000000000 ,1620000000000 ,1620000000000 ,1616812365460 -1616812365490 ,112.5730077,26.8893746,59.15764618,181.083923,181.7055989,7.1004815,0.064123431,1620000000000 ,1620000000000 ,1620000000000 ,1616812365470 -1616812365500 ,112.5730076,26.88937396,59.15756607,181.0826116,181.7114115,7.103269,0.064149046,1620000000000 ,1620000000000 ,1620000000000 ,1616812365480 -1616812365512 ,112.5730076,26.88937332,59.15752411,181.0812456,181.7077556,7.106335,0.064178183,1620000000000 ,1620000000000 ,1620000000000 ,1616812365490 -1616812365520 ,112.5730076,26.88937268,59.15752411,181.0786228,181.7047267,7.1081214,0.064196163,1620000000000 ,1620000000000 ,1620000000000 ,1616812365500 -1616812365531 ,112.5730076,26.88937203,59.15753174,181.0770655,181.7000123,7.1114826,0.064222765,1620000000000 ,1620000000000 ,1620000000000 ,1616812365510 -1616812365542 ,112.5730076,26.88937139,59.15751648,181.0763278,181.7042963,7.114013,0.064249066,1620000000000 ,1620000000000 ,1620000000000 ,1616812365520 -1616812365550 ,112.5730075,26.88937075,59.1574707,181.0764371,181.6886181,7.117911,0.064277617,1620000000000 ,1620000000000 ,1620000000000 ,1616812365530 -1616812365562 ,112.5730075,26.88937011,59.15743256,181.0728035,181.6743001,7.121473,0.064309925,1620000000000 ,1620000000000 ,1620000000000 ,1616812365540 -1616812365571 ,112.5730075,26.88936946,59.15740204,181.0722297,181.6739522,7.123917,0.064334671,1620000000000 ,1620000000000 ,1620000000000 ,1616812365550 -1616812365584 ,112.5730075,26.88936882,59.15739059,181.0722844,181.6706754,7.1264052,0.064357728,1620000000000 ,1620000000000 ,1620000000000 ,1616812365560 -1616812365592 ,112.5730075,26.88936818,59.15741348,181.0713828,181.6543921,7.1282163,0.064376394,1620000000000 ,1620000000000 ,1620000000000 ,1616812365570 -1616812365603 ,112.5730074,26.88936753,59.15748978,181.0696343,181.6486709,7.1312203,0.064402454,1620000000000 ,1620000000000 ,1620000000000 ,1616812365580 -1616812365614 ,112.5730074,26.88936689,59.15761566,181.068678,181.6450964,7.1342072,0.064429438,1620000000000 ,1620000000000 ,1620000000000 ,1616812365590 -1616812365622 ,112.5730074,26.88936624,59.15777969,181.0682136,181.635564,7.1389103,0.064466676,1620000000000 ,1620000000000 ,1620000000000 ,1616812365600 -1616812365633 ,112.5730074,26.8893656,59.15800476,181.0675852,181.6361818,7.1421843,0.064504204,1620000000000 ,1620000000000 ,1620000000000 ,1616812365610 -1616812365642 ,112.5730074,26.88936495,59.15830612,181.0647438,181.6329392,7.143098,0.064519405,1620000000000 ,1620000000000 ,1620000000000 ,1616812365620 -1616812365654 ,112.5730074,26.88936431,59.15869904,181.0634871,181.6304825,7.143722,0.064531589,1620000000000 ,1620000000000 ,1620000000000 ,1616812365630 -1616812365664 ,112.5730073,26.88936366,59.15916061,181.0624489,181.6143652,7.1442986,0.064533592,1620000000000 ,1620000000000 ,1620000000000 ,1616812365640 -1616812365673 ,112.5730073,26.88936302,59.15966797,181.0626128,181.6143923,7.147048,0.064555006,1620000000000 ,1620000000000 ,1620000000000 ,1616812365650 -1616812365683 ,112.5730073,26.88936237,59.16019058,181.0624489,181.6153824,7.1496863,0.064582243,1620000000000 ,1620000000000 ,1620000000000 ,1616812365660 -1616812365692 ,112.5730073,26.88936173,59.16074371,181.0621211,181.6056107,7.1525936,0.064609865,1620000000000 ,1620000000000 ,1620000000000 ,1616812365670 -1616812365702 ,112.5730073,26.88936108,59.16134644,181.0633232,181.5964496,7.156882,0.064646471,1620000000000 ,1620000000000 ,1620000000000 ,1616812365680 -1616812365718 ,112.5730072,26.88936043,59.16199493,181.0664104,181.5954685,7.160681,0.064680601,1620000000000 ,1620000000000 ,1620000000000 ,1616812365690 -1616812365721 ,112.5730072,26.88935979,59.16268539,181.0663011,181.5940269,7.164719,0.064720844,1620000000000 ,1620000000000 ,1620000000000 ,1616812365700 -1616812365732 ,112.5730072,26.88935914,59.16340637,181.0648531,181.6015181,7.1642756,0.064732674,1620000000000 ,1620000000000 ,1620000000000 ,1616812365710 -1616812365743 ,112.5730072,26.88935849,59.1641655,181.064498,181.6017213,7.1660666,0.064740126,1620000000000 ,1620000000000 ,1620000000000 ,1616812365720 -1616812365752 ,112.5730072,26.88935785,59.16497803,181.0642248,181.5906853,7.1687236,0.064763442,1620000000000 ,1620000000000 ,1620000000000 ,1616812365730 -1616812365765 ,112.5730072,26.8893572,59.16583633,181.0650444,181.6000771,7.1725054,0.064798437,1620000000000 ,1620000000000 ,1620000000000 ,1616812365740 -1616812365773 ,112.5730071,26.88935655,59.16667938,181.0657274,181.6021409,7.1774163,0.064842518,1620000000000 ,1620000000000 ,1620000000000 ,1616812365750 -1616812365786 ,112.5730071,26.8893559,59.16745377,181.0645253,181.6106837,7.180439,0.064871559,1620000000000 ,1620000000000 ,1620000000000 ,1616812365760 -1616812365793 ,112.5730071,26.88935525,59.16818237,181.0648258,181.6002962,7.1839314,0.064900042,1620000000000 ,1620000000000 ,1620000000000 ,1616812365780 -1616812365802 ,112.5730071,26.8893546,59.16890717,181.0638423,181.5981213,7.1861353,0.064924497,1620000000000 ,1620000000000 ,1620000000000 ,1616812365780 -1616812365813 ,112.5730071,26.88935395,59.16962814,181.063733,181.5917211,7.189889,0.064952811,1620000000000 ,1620000000000 ,1620000000000 ,1616812365800 -1616812365823 ,112.573007,26.88935331,59.17030716,181.061438,181.5909294,7.1935863,0.06498712,1620000000000 ,1620000000000 ,1620000000000 ,1616812365800 -1616812365843 ,112.573007,26.88935201,59.17160034,181.0610009,181.5983661,7.1984925,0.130041967,1620000000000 ,1620000000000 ,1620000000000 ,1616812365820 -1616812365850 ,112.573007,26.88935201,59.17160034,181.0610009,-400,7.1984925,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812365830 -1616812365856 ,112.573007,26.8893507,59.17272186,181.0615746,181.6113511,7.2071953,0.130171619,1620000000000 ,1620000000000 ,1620000000000 ,1616812365840 -1616812365864 ,112.573007,26.88935005,59.173172,181.0614654,181.610898,7.2104874,0.065137674,1620000000000 ,1620000000000 ,1620000000000 ,1616812365850 -1616812365873 ,112.5730069,26.8893494,59.17358398,181.0595529,181.6383182,7.2123985,0.065156102,1620000000000 ,1620000000000 ,1620000000000 ,1616812365860 -1616812365883 ,112.5730069,26.88934875,59.17399597,181.0587606,181.6442055,7.2144456,0.065171938,1620000000000 ,1620000000000 ,1620000000000 ,1616812365870 -1616812365894 ,112.5730069,26.8893481,59.17440414,181.0577224,181.6324559,7.2168565,0.065191482,1620000000000 ,1620000000000 ,1620000000000 ,1616812365880 -1616812365904 ,112.5730069,26.8893481,59.17440414,181.0577224,-400,7.2168565,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812365890 -1616812365914 ,112.5730069,26.88934679,59.17512512,181.0544439,181.6534108,7.2248416,0.130490986,1620000000000 ,1620000000000 ,1620000000000 ,1616812365900 -1616812365924 ,112.5730068,26.88934614,59.17544937,181.0525861,181.6503308,7.226854,0.065282774,1620000000000 ,1620000000000 ,1620000000000 ,1616812365910 -1616812365934 ,112.5730068,26.88934549,59.17579269,181.0496081,181.6438463,7.2298017,0.065306703,1620000000000 ,1620000000000 ,1620000000000 ,1616812365920 -1616812365944 ,112.5730068,26.88934484,59.17614365,181.0475864,181.6358165,7.2329583,0.06533721,1620000000000 ,1620000000000 ,1620000000000 ,1616812365930 -1616812365956 ,112.5730068,26.88934418,59.17649078,181.0469307,181.6456598,7.2368655,0.065367817,1620000000000 ,1620000000000 ,1620000000000 ,1616812365940 -1616812365965 ,112.5730068,26.88934353,59.17684555,181.0457832,181.6336128,7.2404494,0.065403692,1620000000000 ,1620000000000 ,1620000000000 ,1616812365950 -1616812365974 ,112.5730068,26.88934287,59.17717743,181.0447724,181.5923479,7.242739,0.065423153,1620000000000 ,1620000000000 ,1620000000000 ,1616812365960 -1616812365984 ,112.5730067,26.88934222,59.17749023,181.0443079,181.5757765,7.246996,0.065458922,1620000000000 ,1620000000000 ,1620000000000 ,1616812365970 -1616812365994 ,112.5730067,26.88934157,59.177742,181.0439254,181.5559844,7.249026,0.065479636,1620000000000 ,1620000000000 ,1620000000000 ,1616812365980 -1616812366005 ,112.5730067,26.88934157,59.177742,181.0439254,-400,7.249026,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812365990 -1616812366015 ,112.5730067,26.88934026,59.17801285,181.0432697,181.5544087,7.2544694,0.131024306,1620000000000 ,1620000000000 ,1620000000000 ,1616812366000 -1616812366025 ,112.5730067,26.8893396,59.17816162,181.04133,181.5371669,7.2569776,0.065546249,1620000000000 ,1620000000000 ,1620000000000 ,1616812366010 -1616812366035 ,112.5730066,26.88933895,59.17842484,181.0374777,181.5470615,7.260103,0.065574492,1620000000000 ,1620000000000 ,1620000000000 ,1616812366020 -1616812366045 ,112.5730066,26.88933829,59.17876053,181.0345271,181.5617934,7.263994,0.065610463,1620000000000 ,1620000000000 ,1620000000000 ,1616812366030 -1616812366057 ,112.5730066,26.88933763,59.17912674,181.0317131,181.5849858,7.2672,0.065641056,1620000000000 ,1620000000000 ,1620000000000 ,1616812366040 -1616812366066 ,112.5730066,26.88933698,59.17949295,181.0256205,181.5962108,7.2700953,0.065668965,1620000000000 ,1620000000000 ,1620000000000 ,1616812366050 -1616812366077 ,112.5730066,26.88933632,59.17982101,181.0232163,181.6091882,7.2723947,0.065687514,1620000000000 ,1620000000000 ,1620000000000 ,1616812366060 -1616812366086 ,112.5730066,26.88933566,59.18009186,181.0191728,181.6358847,7.2772555,0.065726499,1620000000000 ,1620000000000 ,1620000000000 ,1616812366070 -1616812366099 ,112.5730065,26.88933501,59.18032455,181.0124246,181.6673867,7.280712,0.065759867,1620000000000 ,1620000000000 ,1620000000000 ,1616812366080 -1616812366106 ,112.5730065,26.88933435,59.18058014,181.0062228,181.6767383,7.28466,0.06579447,1620000000000 ,1620000000000 ,1620000000000 ,1616812366090 -1616812366115 ,112.5730065,26.88933369,59.1808815,180.999174,181.6670277,7.287076,0.065821361,1620000000000 ,1620000000000 ,1620000000000 ,1616812366100 -1616812366125 ,112.5730065,26.88933303,59.18119049,180.9902675,181.6614672,7.290664,0.06584769,1620000000000 ,1620000000000 ,1620000000000 ,1616812366110 -1616812366136 ,112.5730065,26.88933237,59.18144608,180.9845847,181.6441622,7.295903,0.065889691,1620000000000 ,1620000000000 ,1620000000000 ,1616812366120 -1616812366148 ,112.5730064,26.88933171,59.18160629,180.9776999,181.6339785,7.3012357,0.065932832,1620000000000 ,1620000000000 ,1620000000000 ,1616812366130 -1616812366156 ,112.5730064,26.88933105,59.18169785,180.9706785,181.6195868,7.3069067,0.065983122,1620000000000 ,1620000000000 ,1620000000000 ,1616812366140 -1616812366166 ,112.5730064,26.88933039,59.18177032,180.9637117,181.5861689,7.3089676,0.066007545,1620000000000 ,1620000000000 ,1620000000000 ,1616812366150 -1616812366176 ,112.5730064,26.88932973,59.18188095,180.9557887,181.5750165,7.3125215,0.066036633,1620000000000 ,1620000000000 ,1620000000000 ,1616812366160 -1616812366186 ,112.5730064,26.88932907,59.18202209,180.9480569,181.5644793,7.3172393,0.066077121,1620000000000 ,1620000000000 ,1620000000000 ,1616812366170 -1616812366196 ,112.5730063,26.88932841,59.18215561,180.9426201,181.5549696,7.3219223,0.06611512,1620000000000 ,1620000000000 ,1620000000000 ,1616812366180 -1616812366207 ,112.5730063,26.88932775,59.18227768,180.9354347,181.5428816,7.324778,0.066147258,1620000000000 ,1620000000000 ,1620000000000 ,1616812366190 -1616812366217 ,112.5730063,26.88932709,59.18227005,180.9291509,181.2416771,7.3279724,0.066154641,1620000000000 ,1620000000000 ,1620000000000 ,1616812366200 -1616812366227 ,112.5730063,26.88932643,59.18208313,180.9242605,180.7252495,7.332786,0.066175243,1620000000000 ,1620000000000 ,1620000000000 ,1616812366210 -1616812366236 ,112.5730063,26.88932577,59.18190384,180.9184685,180.7284774,7.335919,0.066205615,1620000000000 ,1620000000000 ,1620000000000 ,1616812366220 -1616812366246 ,112.5730063,26.8893251,59.18175507,180.9117749,180.7286859,7.3402963,0.066242433,1620000000000 ,1620000000000 ,1620000000000 ,1616812366230 -1616812366258 ,112.5730063,26.88932444,59.18166733,180.9074036,180.7216275,7.343516,0.066278767,1620000000000 ,1620000000000 ,1620000000000 ,1616812366240 -1616812366268 ,112.5730063,26.88932378,59.181633,180.8983331,180.7127818,7.347459,0.066311661,1620000000000 ,1620000000000 ,1620000000000 ,1616812366250 -1616812366278 ,112.5730063,26.88932312,59.18161011,180.8912844,180.7203918,7.3525124,0.066355608,1620000000000 ,1620000000000 ,1620000000000 ,1616812366260 -1616812366287 ,112.5730063,26.88932245,59.18157959,180.8848913,180.7256844,7.356021,0.066387255,1620000000000 ,1620000000000 ,1620000000000 ,1616812366270 -1616812366298 ,112.5730063,26.88932179,59.18160248,180.8765312,180.7167182,7.3610787,0.066434512,1620000000000 ,1620000000000 ,1620000000000 ,1616812366280 -1616812366308 ,112.5730062,26.88932112,59.18169403,180.8695644,180.6766934,7.3647003,0.066472165,1620000000000 ,1620000000000 ,1620000000000 ,1616812366290 -1616812366318 ,112.5730062,26.88932046,59.18183136,180.8633625,180.6613748,7.3698235,0.066516374,1620000000000 ,1620000000000 ,1620000000000 ,1616812366300 -1616812366330 ,112.5730062,26.88931979,59.18197632,180.8588273,180.6413393,7.375318,0.066565699,1620000000000 ,1620000000000 ,1620000000000 ,1616812366310 -1616812366338 ,112.5730062,26.88931913,59.18210602,180.8528714,180.6223469,7.379349,0.066605217,1620000000000 ,1620000000000 ,1620000000000 ,1616812366320 -1616812366348 ,112.5730062,26.88931846,59.18226624,180.8494016,180.609098,7.38483,0.06665566,1620000000000 ,1620000000000 ,1620000000000 ,1616812366330 -1616812366358 ,112.5730062,26.88931779,59.18245316,180.8444566,180.5815928,7.388144,0.066687811,1620000000000 ,1620000000000 ,1620000000000 ,1616812366340 -1616812366368 ,112.5730062,26.88931713,59.18269348,180.8394022,180.5763769,7.392322,0.066723098,1620000000000 ,1620000000000 ,1620000000000 ,1616812366350 -1616812366378 ,112.5730062,26.88931646,59.18299866,180.8350036,180.5685072,7.395752,0.066763872,1620000000000 ,1620000000000 ,1620000000000 ,1616812366360 -1616812366389 ,112.5730062,26.88931579,59.18339539,180.8295395,180.5753231,7.399986,0.066799745,1620000000000 ,1620000000000 ,1620000000000 ,1616812366370 -1616812366399 ,112.5730062,26.88931512,59.1838913,180.823966,180.5792628,7.4051247,0.06684739,1620000000000 ,1620000000000 ,1620000000000 ,1616812366380 -1616812366410 ,112.5730062,26.88931445,59.18444061,180.8180921,180.5709931,7.4088607,0.066886191,1620000000000 ,1620000000000 ,1620000000000 ,1616812366390 -1616812366418 ,112.5730062,26.88931378,59.18502426,180.810169,180.5647954,7.4128165,0.066924105,1620000000000 ,1620000000000 ,1620000000000 ,1616812366400 -1616812366431 ,112.5730062,26.88931311,59.18561172,180.8038306,180.5602373,7.4179153,0.066967752,1620000000000 ,1620000000000 ,1620000000000 ,1616812366410 -1616812366438 ,112.5730062,26.88931244,59.18619919,180.7981752,180.5728788,7.4232492,0.067016522,1620000000000 ,1620000000000 ,1620000000000 ,1616812366420 -1616812366449 ,112.5730061,26.88931177,59.18681717,180.7936127,180.5551442,7.4272094,0.06705791,1620000000000 ,1620000000000 ,1620000000000 ,1616812366430 -1616812366462 ,112.5730061,26.8893111,59.18748856,180.7865366,180.5483347,7.4309745,0.067093391,1620000000000 ,1620000000000 ,1620000000000 ,1616812366440 -1616812366471 ,112.5730061,26.88931043,59.18834305,180.7808812,180.8344831,7.4349723,0.067145095,1620000000000 ,1620000000000 ,1620000000000 ,1616812366450 -1616812366479 ,112.5730061,26.88930976,59.18927765,180.7744881,181.105305,7.4399076,0.067205796,1620000000000 ,1620000000000 ,1620000000000 ,1616812366460 -1616812366488 ,112.5730061,26.88930909,59.19013214,180.7673028,181.1187282,7.4468045,0.067264139,1620000000000 ,1620000000000 ,1620000000000 ,1616812366470 -1616812366499 ,112.5730061,26.88930841,59.19092941,180.7584235,181.0994718,7.451938,0.067311913,1620000000000 ,1620000000000 ,1620000000000 ,1616812366480 -1616812366509 ,112.5730061,26.88930774,59.19171906,180.7520578,181.0859486,7.4562197,0.067352373,1620000000000 ,1620000000000 ,1620000000000 ,1616812366490 -1616812366519 ,112.5730061,26.88930707,59.19255066,180.744326,181.0815469,7.4601607,0.067392308,1620000000000 ,1620000000000 ,1620000000000 ,1616812366500 -1616812366531 ,112.5730061,26.88930639,59.193367,180.7375231,181.0570979,7.4658813,0.067437882,1620000000000 ,1620000000000 ,1620000000000 ,1616812366510 -1616812366541 ,112.573006,26.88930572,59.19409943,180.7297094,181.059513,7.4717865,0.067490069,1620000000000 ,1620000000000 ,1620000000000 ,1616812366520 -1616812366550 ,112.573006,26.88930504,59.1946907,180.7224421,181.0729073,7.478486,0.067542476,1620000000000 ,1620000000000 ,1620000000000 ,1616812366530 -1616812366559 ,112.573006,26.88930437,59.19516373,180.715366,181.0756637,7.484474,0.067598332,1620000000000 ,1620000000000 ,1620000000000 ,1616812366540 -1616812366571 ,112.573006,26.88930369,59.19554138,180.708044,181.0695071,7.4890547,0.067637497,1620000000000 ,1620000000000 ,1620000000000 ,1616812366550 -1616812366582 ,112.573006,26.88930301,59.195858,180.6995473,181.0648463,7.49364,0.06767551,1620000000000 ,1620000000000 ,1620000000000 ,1616812366560 -1616812366590 ,112.573006,26.88930234,59.1961441,180.6896299,181.0689731,7.498363,0.067719272,1620000000000 ,1620000000000 ,1620000000000 ,1616812366570 -1616812366599 ,112.573006,26.88930166,59.19641113,180.6816522,181.0646614,7.5041738,0.067767948,1620000000000 ,1620000000000 ,1620000000000 ,1616812366580 -1616812366610 ,112.573006,26.88930098,59.19665527,180.6731281,181.0680811,7.510149,0.067821791,1620000000000 ,1620000000000 ,1620000000000 ,1616812366590 -1616812366620 ,112.5730059,26.8893003,59.19688034,180.6649865,181.0620294,7.514797,0.067863881,1620000000000 ,1620000000000 ,1620000000000 ,1616812366600 -1616812366631 ,112.5730059,26.88929962,59.19709015,180.6574187,181.0607149,7.5191083,0.067904757,1620000000000 ,1620000000000 ,1620000000000 ,1616812366610 -1616812366640 ,112.5730059,26.88929894,59.19727707,180.6490859,181.0604614,7.5241933,0.067949853,1620000000000 ,1620000000000 ,1620000000000 ,1616812366620 -1616812366652 ,112.5730059,26.88929826,59.19744873,180.6394143,181.0543966,7.5280666,0.067983563,1620000000000 ,1620000000000 ,1620000000000 ,1616812366630 -1616812366660 ,112.5730059,26.88929758,59.19761658,180.6309449,181.0440589,7.532214,0.068020375,1620000000000 ,1620000000000 ,1620000000000 ,1616812366640 -1616812366671 ,112.5730059,26.8892969,59.19778061,180.6222022,181.0248268,7.5372453,0.068063352,1620000000000 ,1620000000000 ,1620000000000 ,1616812366650 -1616812366680 ,112.5730059,26.88929622,59.19794464,180.6158911,181.0236147,7.5429387,0.068114746,1620000000000 ,1620000000000 ,1620000000000 ,1616812366660 -1616812366690 ,112.5730059,26.88929554,59.1980896,180.6108641,181.0092377,7.54961,0.068170773,1620000000000 ,1620000000000 ,1620000000000 ,1616812366670 -1616812366700 ,112.5730058,26.88929486,59.19821548,180.6025586,180.9939009,7.5550227,0.068223591,1620000000000 ,1620000000000 ,1620000000000 ,1616812366680 -1616812366712 ,112.5730058,26.88929418,59.19834518,180.5931876,180.9923843,7.559615,0.068264749,1620000000000 ,1620000000000 ,1620000000000 ,1616812366690 -1616812366722 ,112.5730058,26.88929349,59.1984787,180.5853192,180.9720751,7.5647345,0.068309383,1620000000000 ,1620000000000 ,1620000000000 ,1616812366700 -1616812366733 ,112.5730058,26.88929281,59.19863129,180.5773142,180.9699696,7.5688567,0.06834927,1620000000000 ,1620000000000 ,1620000000000 ,1616812366710 -1616812366741 ,112.5730058,26.88929213,59.19881058,180.5691726,180.9528002,7.573917,0.068392913,1620000000000 ,1620000000000 ,1620000000000 ,1616812366720 -1616812366751 ,112.5730058,26.88929144,59.19901276,180.5595831,180.9238429,7.5780683,0.068433653,1620000000000 ,1620000000000 ,1620000000000 ,1616812366730 -1616812366763 ,112.5730058,26.88929076,59.19923782,180.5528075,180.9176473,7.5837398,0.068479316,1620000000000 ,1620000000000 ,1620000000000 ,1616812366740 -1616812366774 ,112.5730058,26.88929007,59.19946289,180.5423983,180.881072,7.5894384,0.068533242,1620000000000 ,1620000000000 ,1620000000000 ,1616812366750 -1616812366785 ,112.5730058,26.88928939,59.19968033,180.5334098,180.8638816,7.593887,0.068574107,1620000000000 ,1620000000000 ,1620000000000 ,1616812366760 -1616812366792 ,112.5730057,26.8892887,59.19989395,180.5253775,180.8540727,7.599682,0.068627891,1620000000000 ,1620000000000 ,1620000000000 ,1616812366770 -1616812366802 ,112.5730057,26.88928801,59.2001152,180.5172905,180.8315091,7.603767,0.068664903,1620000000000 ,1620000000000 ,1620000000000 ,1616812366780 -1616812366812 ,112.5730057,26.88928733,59.2003746,180.5104603,180.8155633,7.6083503,0.068704144,1620000000000 ,1620000000000 ,1620000000000 ,1616812366790 -1616812366823 ,112.5730057,26.88928664,59.20068359,180.5035755,180.7937105,7.612463,0.068744723,1620000000000 ,1620000000000 ,1620000000000 ,1616812366800 -1616812366833 ,112.5730057,26.88928595,59.2009964,180.496035,180.7850503,7.617394,0.068788296,1620000000000 ,1620000000000 ,1620000000000 ,1616812366810 -1616812366846 ,112.5730057,26.88928526,59.20129013,180.4891775,180.7867599,7.6211395,0.068822017,1620000000000 ,1620000000000 ,1620000000000 ,1616812366820 -1616812366854 ,112.5730057,26.88928457,59.20157623,180.4821287,180.7854703,7.625868,0.068865651,1620000000000 ,1620000000000 ,1620000000000 ,1616812366830 -1616812366866 ,112.5730057,26.88928388,59.20188141,180.4748614,180.7775555,7.6306553,0.068906762,1620000000000 ,1620000000000 ,1620000000000 ,1616812366840 -1616812366875 ,112.5730057,26.8892832,59.20221329,180.4679219,180.7795853,7.6349206,0.068944508,1620000000000 ,1620000000000 ,1620000000000 ,1616812366850 -1616812366883 ,112.5730057,26.88928251,59.2025528,180.4598896,180.7880862,7.6415176,0.069001596,1620000000000 ,1620000000000 ,1620000000000 ,1616812366870 -1616812366893 ,112.5730056,26.88928182,59.2028923,180.4528409,180.7946562,7.646529,0.069054234,1620000000000 ,1620000000000 ,1620000000000 ,1616812366880 -1616812366903 ,112.5730056,26.88928112,59.2032547,180.4447812,180.7933284,7.652164,0.069100116,1620000000000 ,1620000000000 ,1620000000000 ,1616812366880 -1616812366914 ,112.5730056,26.88927974,59.20403671,180.4256021,180.791875,7.6616344,0.138335824,1620000000000 ,1620000000000 ,1620000000000 ,1616812366900 -1616812366923 ,112.5730056,26.88927974,59.20403671,180.4256021,-400,7.6616344,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812366910 -1616812366934 ,112.5730056,26.88927836,59.20471954,180.4090184,180.7901205,7.671336,0.138510565,1620000000000 ,1620000000000 ,1620000000000 ,1616812366920 -1616812366943 ,112.5730056,26.88927766,59.20511627,180.3998932,180.75584,7.677195,0.069329159,1620000000000 ,1620000000000 ,1620000000000 ,1616812366930 -1616812366953 ,112.5730056,26.88927697,59.20554733,180.3909867,180.7340852,7.683138,0.069383857,1620000000000 ,1620000000000 ,1620000000000 ,1616812366940 -1616812366963 ,112.5730056,26.88927627,59.20598984,180.3825446,180.7297252,7.689159,0.069434302,1620000000000 ,1620000000000 ,1620000000000 ,1616812366940 -1616812366979 ,112.5730056,26.88927558,59.2064209,180.3745122,180.725777,7.693669,0.069479922,1620000000000 ,1620000000000 ,1620000000000 ,1616812366960 -1616812366990 ,112.5730056,26.88927488,59.20688629,180.3672176,180.7257869,7.6984553,0.069524746,1620000000000 ,1620000000000 ,1620000000000 ,1616812366970 -1616812366995 ,112.5730055,26.88927419,59.20743561,180.3592126,180.6946203,7.702734,0.06956794,1620000000000 ,1620000000000 ,1620000000000 ,1616812366980 -1616812367004 ,112.5730055,26.88927419,59.20743561,180.3592126,-400,7.702734,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812366980 -1616812367013 ,112.5730055,26.8892728,59.20869827,180.343148,180.6804678,7.7115784,0.139254031,1620000000000 ,1620000000000 ,1620000000000 ,1616812367000 -1616812367024 ,112.5730055,26.8892721,59.20934677,180.3351977,180.691047,7.7152653,0.069687282,1620000000000 ,1620000000000 ,1620000000000 ,1616812367010 -1616812367034 ,112.5730055,26.8892714,59.20998383,180.327302,180.6890972,7.7203727,0.069729542,1620000000000 ,1620000000000 ,1620000000000 ,1616812367020 -1616812367045 ,112.5730055,26.8892707,59.21060944,180.3204172,180.6733943,7.725864,0.069779236,1620000000000 ,1620000000000 ,1620000000000 ,1616812367030 -1616812367054 ,112.5730055,26.88927001,59.21121979,180.3115379,180.6599902,7.729758,0.06981903,1620000000000 ,1620000000000 ,1620000000000 ,1616812367040 -1616812367064 ,112.5730055,26.88926931,59.21180344,180.302604,180.6469605,7.7360606,0.069870396,1620000000000 ,1620000000000 ,1620000000000 ,1616812367050 -1616812367074 ,112.5730055,26.88926861,59.21234131,180.2967574,180.6345187,7.7399397,0.069909409,1620000000000 ,1620000000000 ,1620000000000 ,1616812367060 -1616812367084 ,112.5730055,26.88926791,59.21286011,180.2898179,180.6316252,7.7456293,0.069956996,1620000000000 ,1620000000000 ,1620000000000 ,1616812367070 -1616812367097 ,112.5730055,26.88926721,59.21342087,180.283862,180.6070965,7.74877,0.069992745,1620000000000 ,1620000000000 ,1620000000000 ,1616812367080 -1616812367106 ,112.5730055,26.88926651,59.21398544,180.2771957,180.5777939,7.75429,0.070034882,1620000000000 ,1620000000000 ,1620000000000 ,1616812367090 -1616812367117 ,112.5730055,26.88926581,59.21453094,180.27083,180.5746822,7.7590084,0.070082825,1620000000000 ,1620000000000 ,1620000000000 ,1616812367100 -1616812367126 ,112.5730054,26.88926511,59.2150116,180.2667319,180.5627611,7.7652493,0.070130479,1620000000000 ,1620000000000 ,1620000000000 ,1616812367110 -1616812367137 ,112.5730054,26.88926441,59.21546555,180.2608852,180.550298,7.7713747,0.070191911,1620000000000 ,1620000000000 ,1620000000000 ,1616812367120 -1616812367145 ,112.5730054,26.8892637,59.21588898,180.2561041,180.5384312,7.7760825,0.07023525,1620000000000 ,1620000000000 ,1620000000000 ,1616812367130 -1616812367155 ,112.5730054,26.889263,59.21628189,180.2536725,180.5424743,7.7807994,0.07027721,1620000000000 ,1620000000000 ,1620000000000 ,1616812367140 -1616812367166 ,112.5730054,26.8892623,59.21667099,180.2490827,180.5398243,7.784895,0.070311175,1620000000000 ,1620000000000 ,1620000000000 ,1616812367150 -1616812367176 ,112.5730054,26.88926159,59.21708298,180.2447113,180.5501138,7.789146,0.070355137,1620000000000 ,1620000000000 ,1620000000000 ,1616812367160 -1616812367185 ,112.5730054,26.88926089,59.21750641,180.2400395,180.5506557,7.7935677,0.070393994,1620000000000 ,1620000000000 ,1620000000000 ,1616812367170 -1616812367197 ,112.5730054,26.88926019,59.21793747,180.233865,180.548628,7.79628,0.070425313,1620000000000 ,1620000000000 ,1620000000000 ,1616812367180 -1616812367208 ,112.5730054,26.88925948,59.21839905,180.2275812,180.5606555,7.8004813,0.070458335,1620000000000 ,1620000000000 ,1620000000000 ,1616812367190 -1616812367219 ,112.5730054,26.88925878,59.21883011,180.224494,180.7209387,7.8097696,0.070565333,1620000000000 ,1620000000000 ,1620000000000 ,1616812367200 -1616812367228 ,112.5730054,26.88925807,59.21924973,180.2217892,181.001851,7.816908,0.070716217,1620000000000 ,1620000000000 ,1620000000000 ,1616812367210 -1616812367237 ,112.5730054,26.88925736,59.21965027,180.2189479,180.9810799,7.8209767,0.070761389,1620000000000 ,1620000000000 ,1620000000000 ,1616812367220 -1616812367247 ,112.5730053,26.88925665,59.22003174,180.2173086,180.9801366,7.8249254,0.070794669,1620000000000 ,1620000000000 ,1620000000000 ,1616812367230 -1616812367257 ,112.5730053,26.88925594,59.22036743,180.2150137,180.9784445,7.8299165,0.070837535,1620000000000 ,1620000000000 ,1620000000000 ,1616812367240 -1616812367267 ,112.5730053,26.88925524,59.22062683,180.2143853,180.9735742,7.83448,0.070877979,1620000000000 ,1620000000000 ,1620000000000 ,1616812367250 -1616812367277 ,112.5730053,26.88925453,59.22083664,180.2122816,180.9690305,7.8374534,0.070903411,1620000000000 ,1620000000000 ,1620000000000 ,1616812367260 -1616812367288 ,112.5730053,26.88925382,59.22105789,180.2097954,180.9569948,7.840894,0.070933817,1620000000000 ,1620000000000 ,1620000000000 ,1616812367270 -1616812367300 ,112.5730053,26.88925311,59.22128677,180.2069267,180.9424073,7.8456864,0.070972587,1620000000000 ,1620000000000 ,1620000000000 ,1616812367280 -1616812367309 ,112.5730053,26.8892524,59.22145844,180.2059432,180.9457452,7.8532543,0.071032409,1620000000000 ,1620000000000 ,1620000000000 ,1616812367290 -1616812367318 ,112.5730053,26.88925169,59.22153091,180.2062164,180.9551889,7.8600583,0.071096133,1620000000000 ,1620000000000 ,1620000000000 ,1616812367300 -1616812367331 ,112.5730053,26.88925098,59.2215271,180.2034297,180.9594151,7.8660216,0.071145889,1620000000000 ,1620000000000 ,1620000000000 ,1616812367310 -1616812367337 ,112.5730052,26.88925026,59.22150421,180.2006156,180.9560438,7.871073,0.071193872,1620000000000 ,1620000000000 ,1620000000000 ,1616812367320 -1616812367348 ,112.5730052,26.88924955,59.22145081,180.1985393,180.9557331,7.8731604,0.071215227,1620000000000 ,1620000000000 ,1620000000000 ,1616812367330 -1616812367358 ,112.5730052,26.88924884,59.22135925,180.1977196,180.9504492,7.8779345,0.071251967,1620000000000 ,1620000000000 ,1620000000000 ,1616812367340 -1616812367370 ,112.5730052,26.88924813,59.22121048,180.196299,180.9501988,7.882122,0.071288229,1620000000000 ,1620000000000 ,1620000000000 ,1616812367350 -1616812367378 ,112.5730052,26.88924741,59.22102356,180.1943865,180.9476546,7.8881006,0.071334473,1620000000000 ,1620000000000 ,1620000000000 ,1616812367360 -1616812367389 ,112.5730052,26.8892467,59.22079468,180.1920916,180.9338057,7.8936663,0.071384306,1620000000000 ,1620000000000 ,1620000000000 ,1616812367370 -1616812367398 ,112.5730052,26.88924599,59.22053146,180.1875017,180.9277984,7.89896,0.071430641,1620000000000 ,1620000000000 ,1620000000000 ,1616812367380 -1616812367409 ,112.5730052,26.88924527,59.22027206,180.184715,180.9344149,7.9055934,0.071486865,1620000000000 ,1620000000000 ,1620000000000 ,1616812367390 -1616812367420 ,112.5730051,26.88924456,59.22006607,180.1805349,180.9276442,7.9101524,0.071534335,1620000000000 ,1620000000000 ,1620000000000 ,1616812367400 -1616812367431 ,112.5730051,26.88924384,59.2199173,180.1784585,180.9108425,7.913166,0.071566373,1620000000000 ,1620000000000 ,1620000000000 ,1616812367410 -1616812367439 ,112.5730051,26.88924312,59.21980667,180.1743877,180.9104427,7.917454,0.071599141,1620000000000 ,1620000000000 ,1620000000000 ,1616812367420 -1616812367450 ,112.5730051,26.88924241,59.21971512,180.1728577,180.9027947,7.9206805,0.071632009,1620000000000 ,1620000000000 ,1620000000000 ,1616812367430 -1616812367459 ,112.5730051,26.88924169,59.21959686,180.170754,180.9047988,7.9277773,0.071684932,1620000000000 ,1620000000000 ,1620000000000 ,1616812367440 -1616812367469 ,112.5730051,26.88924097,59.21949005,180.1684045,180.7516737,7.9338074,0.071687184,1620000000000 ,1620000000000 ,1620000000000 ,1616812367450 -1616812367480 ,112.5730051,26.88924026,59.21940231,180.1648801,180.5936342,7.938519,0.071674886,1620000000000 ,1620000000000 ,1620000000000 ,1616812367460 -1616812367489 ,112.5730051,26.88923954,59.21935654,180.1616562,180.5968232,7.9433346,0.071721528,1620000000000 ,1620000000000 ,1620000000000 ,1616812367470 -1616812367504 ,112.5730051,26.88923882,59.21933746,180.1568478,180.602161,7.9478536,0.071761069,1620000000000 ,1620000000000 ,1620000000000 ,1616812367480 -1616812367512 ,112.5730051,26.8892381,59.21936035,180.1533234,180.5967764,7.951867,0.071796878,1620000000000 ,1620000000000 ,1620000000000 ,1616812367490 -1616812367522 ,112.5730051,26.88923739,59.21943665,180.1496078,180.5849274,7.9556403,0.07183762,1620000000000 ,1620000000000 ,1620000000000 ,1616812367500 -1616812367530 ,112.573005,26.88923667,59.21956253,180.1457556,180.5843208,7.961289,0.071881124,1620000000000 ,1620000000000 ,1620000000000 ,1616812367510 -1616812367540 ,112.573005,26.88923595,59.21970749,180.1412203,180.5961333,7.966708,0.071934701,1620000000000 ,1620000000000 ,1620000000000 ,1616812367520 -1616812367552 ,112.573005,26.88923523,59.21987534,180.1372042,180.6093686,7.970929,0.071972449,1620000000000 ,1620000000000 ,1620000000000 ,1616812367530 -1616812367560 ,112.573005,26.88923451,59.22011566,180.1332426,180.6090917,7.9758554,0.072020549,1620000000000 ,1620000000000 ,1620000000000 ,1616812367540 -1616812367570 ,112.573005,26.88923379,59.22043991,180.1289533,180.6106382,7.9802237,0.072063506,1620000000000 ,1620000000000 ,1620000000000 ,1616812367550 -1616812367581 ,112.573005,26.88923307,59.22079468,180.1234345,180.5947316,7.984233,0.07209931,1620000000000 ,1620000000000 ,1620000000000 ,1616812367560 -1616812367590 ,112.573005,26.88923235,59.22117996,180.1177245,180.6012104,7.9895425,0.072147292,1620000000000 ,1620000000000 ,1620000000000 ,1616812367570 -1616812367600 ,112.573005,26.88923162,59.22165298,180.1119598,180.6117283,7.9935513,0.072190913,1620000000000 ,1620000000000 ,1620000000000 ,1616812367580 -1616812367610 ,112.573005,26.8892309,59.22219849,180.1087632,180.5930969,7.9980607,0.072232804,1620000000000 ,1620000000000 ,1620000000000 ,1616812367590 -1616812367627 ,112.573005,26.88923018,59.22283554,180.1053208,180.5783397,8.000571,0.072262229,1620000000000 ,1620000000000 ,1620000000000 ,1616812367600 -1616812367631 ,112.573005,26.88922946,59.22359848,180.0994742,180.5753064,8.003068,0.072289967,1620000000000 ,1620000000000 ,1620000000000 ,1616812367610 -1616812367640 ,112.573005,26.88922873,59.22446442,180.0972066,180.5657917,8.00771,0.072330413,1620000000000 ,1620000000000 ,1620000000000 ,1616812367620 -1616812367651 ,112.573005,26.88922801,59.22537231,180.0922888,180.5542695,8.012786,0.072377449,1620000000000 ,1620000000000 ,1620000000000 ,1616812367630 -1616812367661 ,112.5730049,26.88922728,59.22629166,180.0898846,180.5471729,8.018596,0.072433691,1620000000000 ,1620000000000 ,1620000000000 ,1616812367640 -1616812367672 ,112.5730049,26.88922656,59.2272377,180.0869066,180.5292622,8.021282,0.072466577,1620000000000 ,1620000000000 ,1620000000000 ,1616812367650 -1616812367683 ,112.5730049,26.88922583,59.22822189,180.0826992,180.5198263,8.025567,0.072500827,1620000000000 ,1620000000000 ,1620000000000 ,1616812367660 -1616812367692 ,112.5730049,26.88922511,59.22922134,180.0797759,180.497574,8.030432,0.072546709,1620000000000 ,1620000000000 ,1620000000000 ,1616812367670 -1616812367701 ,112.5730049,26.88922438,59.23020935,180.0754319,180.4826682,8.035288,0.072594875,1620000000000 ,1620000000000 ,1620000000000 ,1616812367680 -1616812367712 ,112.5730049,26.88922366,59.23120499,180.0728911,180.4757375,8.038854,0.072623986,1620000000000 ,1620000000000 ,1620000000000 ,1616812367690 -1616812367722 ,112.5730049,26.88922293,59.23220825,180.0706508,180.4539834,8.043454,0.072668781,1620000000000 ,1620000000000 ,1620000000000 ,1616812367700 -1616812367735 ,112.5730049,26.8892222,59.23319626,180.0708694,180.4326469,8.047435,0.072708706,1620000000000 ,1620000000000 ,1620000000000 ,1616812367710 -1616812367742 ,112.5730049,26.88922148,59.23413086,180.0702956,180.4245562,8.053851,0.072759269,1620000000000 ,1620000000000 ,1620000000000 ,1616812367720 -1616812367752 ,112.5730049,26.88922075,59.23497391,180.070842,180.4254865,8.059323,0.072809165,1620000000000 ,1620000000000 ,1620000000000 ,1616812367730 -1616812367762 ,112.5730049,26.88922002,59.23574066,180.0711426,180.4101734,8.064122,0.072852007,1620000000000 ,1620000000000 ,1620000000000 ,1616812367740 -1616812367772 ,112.5730049,26.88921929,59.23646545,180.0702956,180.4071916,8.068929,0.072893379,1620000000000 ,1620000000000 ,1620000000000 ,1616812367750 -1616812367782 ,112.5730049,26.88921856,59.2371788,180.068711,180.4013789,8.073399,0.072937544,1620000000000 ,1620000000000 ,1620000000000 ,1616812367760 -1616812367795 ,112.5730049,26.88921783,59.23785782,180.0708147,180.4023934,8.077758,0.072975438,1620000000000 ,1620000000000 ,1620000000000 ,1616812367770 -1616812367802 ,112.5730049,26.8892171,59.23849869,180.0693121,180.4062327,8.08277,0.073021149,1620000000000 ,1620000000000 ,1620000000000 ,1616812367780 -1616812367813 ,112.5730049,26.88921637,59.23907471,180.0716617,180.4064238,8.087203,0.073059941,1620000000000 ,1620000000000 ,1620000000000 ,1616812367790 -1616812367823 ,112.5730049,26.88921564,59.23955917,180.0711699,180.3906657,8.092759,0.07310212,1620000000000 ,1620000000000 ,1620000000000 ,1616812367800 -1616812367833 ,112.5730049,26.88921491,59.23994064,180.0704049,180.4019029,8.0999365,0.073160107,1620000000000 ,1620000000000 ,1620000000000 ,1616812367810 -1616812367843 ,112.5730048,26.88921418,59.24025345,180.0704869,180.4096465,8.105773,0.073216039,1620000000000 ,1620000000000 ,1620000000000 ,1616812367830 -1616812367853 ,112.5730048,26.88921344,59.24053192,180.0677821,180.3935741,8.11153,0.073269037,1620000000000 ,1620000000000 ,1620000000000 ,1616812367840 -1616812367863 ,112.5730048,26.88921271,59.24079514,180.0685198,180.3885733,8.1143465,0.073297518,1620000000000 ,1620000000000 ,1620000000000 ,1616812367850 -1616812367874 ,112.5730048,26.88921198,59.24102402,180.0697765,180.3685214,8.119,0.073331909,1620000000000 ,1620000000000 ,1620000000000 ,1616812367860 -1616812367884 ,112.5730048,26.88921051,59.24123383,180.0735195,180.3752089,8.130575,0.146800133,1620000000000 ,1620000000000 ,1620000000000 ,1616812367870 -1616812367894 ,112.5730048,26.88920977,59.2412262,180.0745577,180.3797456,8.1352825,0.073472624,1620000000000 ,1620000000000 ,1620000000000 ,1616812367880 -1616812367904 ,112.5730048,26.88920977,59.2412262,180.0745577,-400,8.1352825,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812367880 -1616812367914 ,112.5730048,26.8892083,59.24110413,180.0764974,180.3833229,8.147392,0.147082677,1620000000000 ,1620000000000 ,1620000000000 ,1616812367900 -1616812367924 ,112.5730048,26.88920757,59.24091721,180.0782186,180.3978711,8.154615,0.073635844,1620000000000 ,1620000000000 ,1620000000000 ,1616812367910 -1616812367935 ,112.5730048,26.88920683,59.24058533,180.0782733,180.4169246,8.161414,0.073687002,1620000000000 ,1620000000000 ,1620000000000 ,1616812367920 -1616812367947 ,112.5730048,26.88920609,59.24015045,180.0787104,180.4314206,8.16621,0.07373523,1620000000000 ,1620000000000 ,1620000000000 ,1616812367930 -1616812367955 ,112.5730048,26.88920536,59.23968124,180.078164,180.434683,8.170029,0.073768878,1620000000000 ,1620000000000 ,1620000000000 ,1616812367930 -1616812367964 ,112.5730048,26.88920462,59.23920059,180.0799672,180.4328404,8.173009,0.073793776,1620000000000 ,1620000000000 ,1620000000000 ,1616812367950 -1616812367974 ,112.5730048,26.88920388,59.23871613,180.080295,180.4426884,8.176767,0.0738243,1620000000000 ,1620000000000 ,1620000000000 ,1616812367960 -1616812367990 ,112.5730048,26.88920314,59.23823166,180.0817703,180.4755777,8.181701,0.073867221,1620000000000 ,1620000000000 ,1620000000000 ,1616812367970 -1616812367996 ,112.5730048,26.8892024,59.23774338,180.0829998,180.5058786,8.188073,0.073922053,1620000000000 ,1620000000000 ,1620000000000 ,1616812367980 -1616812368005 ,112.5730048,26.8892024,59.23774338,180.0829998,-400,8.188073,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812367980 -1616812368015 ,112.5730048,26.88920092,59.23678589,180.0789563,180.542006,8.2006445,0.148018015,1620000000000 ,1620000000000 ,1620000000000 ,1616812368000 -1616812368024 ,112.5730047,26.88920018,59.23637772,180.0762515,180.5433692,8.203963,0.07407493,1620000000000 ,1620000000000 ,1620000000000 ,1616812368010 -1616812368034 ,112.5730047,26.88919944,59.23602295,180.0747216,180.5555187,8.206908,0.074104591,1620000000000 ,1620000000000 ,1620000000000 ,1616812368020 -1616812368044 ,112.5730047,26.8891987,59.23571014,180.0730823,180.5542523,8.208924,0.07412186,1620000000000 ,1620000000000 ,1620000000000 ,1616812368030 -1616812368055 ,112.5730047,26.88919796,59.23545074,180.0706508,180.5424103,8.211316,0.074142539,1620000000000 ,1620000000000 ,1620000000000 ,1616812368040 -1616812368065 ,112.5730047,26.88919722,59.23527527,180.0690935,180.5555016,8.21515,0.074175183,1620000000000 ,1620000000000 ,1620000000000 ,1616812368050 -1616812368074 ,112.5730047,26.88919647,59.23519135,180.0664707,180.5462712,8.221522,0.074234416,1620000000000 ,1620000000000 ,1620000000000 ,1616812368060 -1616812368086 ,112.5730047,26.88919573,59.23518753,180.064367,180.540424,8.225845,0.074274915,1620000000000 ,1620000000000 ,1620000000000 ,1616812368070 -1616812368095 ,112.5730047,26.88919499,59.23527908,180.0611705,180.51005,8.231513,0.07432482,1620000000000 ,1620000000000 ,1620000000000 ,1616812368080 -1616812368107 ,112.5730047,26.88919424,59.23544312,180.0596405,180.4828269,8.234244,0.074360438,1620000000000 ,1620000000000 ,1620000000000 ,1616812368090 -1616812368116 ,112.5730047,26.8891935,59.23568344,180.0588755,180.4616308,8.239456,0.0743996,1620000000000 ,1620000000000 ,1620000000000 ,1616812368100 -1616812368131 ,112.5730047,26.88919276,59.23598862,180.0585204,180.4381618,8.242965,0.07444126,1620000000000 ,1620000000000 ,1620000000000 ,1616812368110 -1616812368145 ,112.5730047,26.88919201,59.2363472,180.0586023,180.4136779,8.245882,0.074464695,1620000000000 ,1620000000000 ,1620000000000 ,1616812368120 -1616812368148 ,112.5730047,26.88919127,59.23678589,180.0589302,180.3974494,8.24993,0.074505148,1620000000000 ,1620000000000 ,1620000000000 ,1616812368130 -1616812368157 ,112.5730047,26.88919052,59.23728561,180.0589848,180.3867887,8.252928,0.074533951,1620000000000 ,1620000000000 ,1620000000000 ,1616812368140 -1616812368166 ,112.5730047,26.88918977,59.23781586,180.0554605,180.3863916,8.258348,0.074575144,1620000000000 ,1620000000000 ,1620000000000 ,1616812368150 -1616812368176 ,112.5730047,26.88918903,59.2383461,180.0539578,180.3809634,8.264252,0.074627632,1620000000000 ,1620000000000 ,1620000000000 ,1616812368160 -1616812368186 ,112.5730046,26.88918828,59.2388649,180.0541764,180.370166,8.268797,0.074671007,1620000000000 ,1620000000000 ,1620000000000 ,1616812368170 -1616812368195 ,112.5730046,26.88918753,59.23940277,180.0534387,180.3697114,8.275599,0.074729781,1620000000000 ,1620000000000 ,1620000000000 ,1616812368180 -1616812368206 ,112.5730046,26.88918679,59.23999405,180.0512257,180.3676466,8.27965,0.074772539,1620000000000 ,1620000000000 ,1620000000000 ,1616812368190 -1616812368216 ,112.5730046,26.88918604,59.24031448,180.0588482,180.4305522,8.278425,0.074766336,1620000000000 ,1620000000000 ,1620000000000 ,1616812368200 -1616812368226 ,112.5730046,26.88918529,59.24013138,180.0589848,180.4934991,8.281269,0.074655728,1620000000000 ,1620000000000 ,1620000000000 ,1616812368210 -1616812368238 ,112.5730046,26.88918455,59.23992538,180.0568811,180.5217178,8.2875,0.074707913,1620000000000 ,1620000000000 ,1620000000000 ,1616812368220 -1616812368250 ,112.5730046,26.8891838,59.23970413,180.0563074,180.5482325,8.291932,0.074754382,1620000000000 ,1620000000000 ,1620000000000 ,1616812368230 -1616812368256 ,112.5730046,26.88918305,59.23940659,180.0577008,180.5441992,8.297954,0.074796992,1620000000000 ,1620000000000 ,1620000000000 ,1616812368240 -1616812368266 ,112.5730046,26.8891823,59.23902893,180.0570724,180.5632775,8.302279,0.07484294,1620000000000 ,1620000000000 ,1620000000000 ,1616812368250 -1616812368280 ,112.5730046,26.88918155,59.23862076,180.0518541,180.5917089,8.307667,0.074884267,1620000000000 ,1620000000000 ,1620000000000 ,1616812368260 -1616812368288 ,112.5730046,26.8891808,59.23823166,180.0440404,180.6401234,8.31392,0.074944763,1620000000000 ,1620000000000 ,1620000000000 ,1616812368270 -1616812368298 ,112.5730046,26.88918005,59.23785019,180.0395325,180.6724247,8.319404,0.074990098,1620000000000 ,1620000000000 ,1620000000000 ,1616812368280 -1616812368308 ,112.5730046,26.8891793,59.23750687,180.0336038,180.6977458,8.324347,0.075041188,1620000000000 ,1620000000000 ,1620000000000 ,1616812368290 -1616812368316 ,112.5730046,26.88917855,59.23725128,180.0287681,180.6876919,8.325259,0.075060049,1620000000000 ,1620000000000 ,1620000000000 ,1616812368300 -1616812368326 ,112.5730045,26.8891778,59.23706818,180.0244241,180.670939,8.329586,0.075093888,1620000000000 ,1620000000000 ,1620000000000 ,1616812368310 -1616812368337 ,112.5730045,26.88917705,59.23685455,180.0195063,180.6679313,8.338685,0.075164562,1620000000000 ,1620000000000 ,1620000000000 ,1616812368320 -1616812368347 ,112.5730045,26.8891763,59.23656464,180.0177305,180.660806,8.346433,0.07523914,1620000000000 ,1620000000000 ,1620000000000 ,1616812368330 -1616812368359 ,112.5730045,26.88917554,59.23627472,180.012321,180.6526966,8.349218,0.07527258,1620000000000 ,1620000000000 ,1620000000000 ,1616812368340 -1616812368367 ,112.5730045,26.88917479,59.23608017,180.0071847,180.6155825,8.349733,0.075287903,1620000000000 ,1620000000000 ,1620000000000 ,1616812368350 -1616812368378 ,112.5730045,26.88917404,59.23600388,180.0047531,180.5753868,8.352226,0.075308202,1620000000000 ,1620000000000 ,1620000000000 ,1616812368360 -1616812368387 ,112.5730045,26.88917329,59.23601913,180.0035783,180.5409965,8.35546,0.075338806,1620000000000 ,1620000000000 ,1620000000000 ,1616812368370 -1616812368398 ,112.5730045,26.88917253,59.23608017,180.0037423,180.5131619,8.358426,0.075363537,1620000000000 ,1620000000000 ,1620000000000 ,1616812368380 -1616812368408 ,112.5730045,26.88917178,59.23616409,180.0045072,180.4953107,8.364414,0.075415855,1620000000000 ,1620000000000 ,1620000000000 ,1616812368390 -1616812368420 ,112.5730045,26.88917102,59.23625946,180.0042614,180.4667195,8.369844,0.075469451,1620000000000 ,1620000000000 ,1620000000000 ,1616812368400 -1616812368432 ,112.5730045,26.88917027,59.23637009,180.0034144,180.4534586,8.375354,0.075517392,1620000000000 ,1620000000000 ,1620000000000 ,1616812368410 -1616812368440 ,112.5730045,26.88916951,59.23649597,180.0016659,180.4397482,8.381559,0.075574742,1620000000000 ,1620000000000 ,1620000000000 ,1616812368420 -1616812368450 ,112.5730045,26.88916876,59.23659515,180.0026768,180.4357659,8.38518,0.075615127,1620000000000 ,1620000000000 ,1620000000000 ,1616812368430 -1616812368459 ,112.5730045,26.889168,59.23670959,180.0037696,180.4464368,8.389864,0.075654243,1620000000000 ,1620000000000 ,1620000000000 ,1616812368440 -1616812368469 ,112.5730044,26.88916724,59.23715973,180.0057094,180.3765368,8.394111,0.075762503,1620000000000 ,1620000000000 ,1620000000000 ,1616812368450 -1616812368478 ,112.5730044,26.88916648,59.23796082,180.0074852,180.317899,8.398072,0.075863885,1620000000000 ,1620000000000 ,1620000000000 ,1616812368460 -1616812368488 ,112.5730044,26.88916572,59.23875427,180.0087146,180.3279333,8.401963,0.075896363,1620000000000 ,1620000000000 ,1620000000000 ,1616812368470 -1616812368498 ,112.5730044,26.88916497,59.23951721,180.0093977,180.3490196,8.407192,0.075940483,1620000000000 ,1620000000000 ,1620000000000 ,1616812368480 -1616812368509 ,112.5730044,26.88916421,59.24023819,180.0085234,180.3544174,8.413361,0.075995091,1620000000000 ,1620000000000 ,1620000000000 ,1616812368490 -1616812368522 ,112.5730044,26.88916344,59.24092484,180.0092064,180.3460246,8.419121,0.076047851,1620000000000 ,1620000000000 ,1620000000000 ,1616812368500 -1616812368531 ,112.5730044,26.88916268,59.24155807,180.0066383,180.3431084,8.426242,0.076109235,1620000000000 ,1620000000000 ,1620000000000 ,1616812368510 -1616812368541 ,112.5730044,26.88916192,59.24209213,180.0042887,180.3514626,8.431164,0.076157213,1620000000000 ,1620000000000 ,1620000000000 ,1616812368520 -1616812368550 ,112.5730044,26.88916116,59.24248886,180.0018025,180.3711181,8.436005,0.076193604,1620000000000 ,1620000000000 ,1620000000000 ,1616812368530 -1616812368560 ,112.5730044,26.8891604,59.24277878,179.9984147,180.3924505,8.4410305,0.076236537,1620000000000 ,1620000000000 ,1620000000000 ,1616812368540 -1616812368569 ,112.5730044,26.88915964,59.24300003,179.9956826,180.4008445,8.445982,0.076281588,1620000000000 ,1620000000000 ,1620000000000 ,1616812368550 -1616812368579 ,112.5730044,26.88915887,59.24315262,179.9927593,180.3904849,8.450916,0.076321887,1620000000000 ,1620000000000 ,1620000000000 ,1616812368560 -1616812368590 ,112.5730044,26.88915811,59.24322891,179.9903824,180.3964059,8.456873,0.076367697,1620000000000 ,1620000000000 ,1620000000000 ,1616812368570 -1616812368600 ,112.5730044,26.88915734,59.24325562,179.9882514,180.4069461,8.462756,0.076424604,1620000000000 ,1620000000000 ,1620000000000 ,1616812368580 -1616812368610 ,112.5730044,26.88915658,59.24323654,179.986257,180.4081635,8.467898,0.076469957,1620000000000 ,1620000000000 ,1620000000000 ,1616812368590 -1616812368620 ,112.5730044,26.88915581,59.24318314,179.9834156,180.4193089,8.473187,0.076514375,1620000000000 ,1620000000000 ,1620000000000 ,1616812368600 -1616812368631 ,112.5730044,26.88915505,59.24310684,179.9791809,180.4046616,8.477631,0.076557443,1620000000000 ,1620000000000 ,1620000000000 ,1616812368610 -1616812368640 ,112.5730044,26.88915428,59.24301147,179.9747549,180.4009162,8.480622,0.076587005,1620000000000 ,1620000000000 ,1620000000000 ,1616812368620 -1616812368650 ,112.5730044,26.88915352,59.2428627,179.9718043,180.3930316,8.486028,0.076625983,1620000000000 ,1620000000000 ,1620000000000 ,1616812368630 -1616812368660 ,112.5730044,26.88915275,59.24263,179.9687444,180.3807004,8.492541,0.07667851,1620000000000 ,1620000000000 ,1620000000000 ,1616812368640 -1616812368670 ,112.5730043,26.88915198,59.24230576,179.9648648,180.3778223,8.498165,0.076729439,1620000000000 ,1620000000000 ,1620000000000 ,1616812368650 -1616812368681 ,112.5730043,26.88915121,59.24190521,179.9603023,180.3799398,8.504027,0.076778652,1620000000000 ,1620000000000 ,1620000000000 ,1616812368660 -1616812368690 ,112.5730043,26.88915045,59.24148178,179.9564227,180.3802004,8.509068,0.076822608,1620000000000 ,1620000000000 ,1620000000000 ,1616812368670 -1616812368700 ,112.5730043,26.88914968,59.24110413,179.9517235,180.3706363,8.514566,0.076875021,1620000000000 ,1620000000000 ,1620000000000 ,1616812368680 -1616812368712 ,112.5730043,26.88914891,59.24079132,179.946997,180.3638447,8.518314,0.076916023,1620000000000 ,1620000000000 ,1620000000000 ,1616812368690 -1616812368723 ,112.5730043,26.88914814,59.24052048,179.9414236,180.3691742,8.521174,0.076940188,1620000000000 ,1620000000000 ,1620000000000 ,1616812368700 -1616812368733 ,112.5730043,26.88914737,59.2402916,179.9350306,180.365717,8.524358,0.076968417,1620000000000 ,1620000000000 ,1620000000000 ,1616812368710 -1616812368746 ,112.5730043,26.8891466,59.24011993,179.92902,180.3491519,8.528575,0.077007526,1620000000000 ,1620000000000 ,1620000000000 ,1616812368720 -1616812368753 ,112.5730043,26.88914583,59.23999786,179.9211789,180.3411968,8.5355215,0.077064944,1620000000000 ,1620000000000 ,1620000000000 ,1616812368730 -1616812368761 ,112.5730043,26.88914506,59.23991013,179.9142941,180.3414759,8.543367,0.077133575,1620000000000 ,1620000000000 ,1620000000000 ,1616812368740 -1616812368772 ,112.5730043,26.88914429,59.2398262,179.906535,180.3347,8.546152,0.077170039,1620000000000 ,1620000000000 ,1620000000000 ,1616812368750 -1616812368782 ,112.5730043,26.88914351,59.23976898,179.8956067,180.3376215,8.549822,0.07719974,1620000000000 ,1620000000000 ,1620000000000 ,1616812368760 -1616812368792 ,112.5730043,26.88914274,59.23976135,179.8851975,180.3409237,8.55435,0.077244195,1620000000000 ,1620000000000 ,1620000000000 ,1616812368770 -1616812368802 ,112.5730043,26.88914197,59.23977661,179.8724114,180.3292788,8.558985,0.077282068,1620000000000 ,1620000000000 ,1620000000000 ,1616812368780 -1616812368812 ,112.5730043,26.8891412,59.23977661,179.8585598,180.3295856,8.56562,0.077339821,1620000000000 ,1620000000000 ,1620000000000 ,1616812368790 -1616812368822 ,112.5730043,26.88914042,59.23974609,179.8436153,180.3353436,8.570976,0.077388082,1620000000000 ,1620000000000 ,1620000000000 ,1616812368800 -1616812368834 ,112.5730043,26.88913965,59.23966599,179.8285889,180.3369821,8.575867,0.077429098,1620000000000 ,1620000000000 ,1620000000000 ,1616812368810 -1616812368842 ,112.5730043,26.88913887,59.2395668,179.8099288,180.3469468,8.582979,0.077492017,1620000000000 ,1620000000000 ,1620000000000 ,1616812368820 -1616812368851 ,112.5730043,26.8891381,59.23947144,179.7897661,180.34821,8.588454,0.07754413,1620000000000 ,1620000000000 ,1620000000000 ,1616812368830 -1616812368863 ,112.5730043,26.88913732,59.23942184,179.7699859,180.3528354,8.594059,0.077593967,1620000000000 ,1620000000000 ,1620000000000 ,1616812368840 -1616812368874 ,112.5730043,26.88913654,59.23944855,179.7477468,180.3451342,8.59748,0.077636188,1620000000000 ,1620000000000 ,1620000000000 ,1616812368860 -1616812368886 ,112.5730042,26.88913577,59.23957825,179.7248793,180.3338406,8.601617,0.077669906,1620000000000 ,1620000000000 ,1620000000000 ,1616812368870 -1616812368894 ,112.5730042,26.88913421,59.24003983,179.6761117,180.315971,8.607098,0.155426579,1620000000000 ,1620000000000 ,1620000000000 ,1616812368880 -1616812368904 ,112.5730042,26.88913421,59.24003983,179.6761117,-400,8.607098,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812368880 -1616812368917 ,112.5730042,26.88913344,59.24030304,179.6499111,180.3046395,8.612489,0.077770922,1620000000000 ,1620000000000 ,1620000000000 ,1616812368890 -1616812368923 ,112.5730042,26.88913266,59.24060059,179.6233554,180.2909908,8.617063,0.077818915,1620000000000 ,1620000000000 ,1620000000000 ,1616812368910 -1616812368933 ,112.5730042,26.8891311,59.2413063,179.5672112,180.2400744,8.628018,0.155790509,1620000000000 ,1620000000000 ,1620000000000 ,1616812368920 -1616812368943 ,112.5730042,26.88913032,59.24167633,179.536448,180.191982,8.631005,0.077949685,1620000000000 ,1620000000000 ,1620000000000 ,1616812368930 -1616812368953 ,112.5730042,26.88913032,59.24167633,179.536448,-400,8.631005,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812368940 -1616812368964 ,112.5730042,26.88912876,59.24258804,179.4777084,180.1396591,8.638239,0.155994089,1620000000000 ,1620000000000 ,1620000000000 ,1616812368950 -1616812368977 ,112.5730042,26.88912798,59.2431221,179.4469179,180.0801359,8.643516,0.078062197,1620000000000 ,1620000000000 ,1620000000000 ,1616812368960 -1616812368984 ,112.5730042,26.8891272,59.24365616,179.4179033,180.0412107,8.648744,0.078109411,1620000000000 ,1620000000000 ,1620000000000 ,1616812368970 -1616812368994 ,112.5730042,26.88912642,59.24419022,179.3872494,179.9950618,8.653314,0.078154768,1620000000000 ,1620000000000 ,1620000000000 ,1616812368980 -1616812369004 ,112.5730042,26.88912642,59.24419022,179.3872494,-400,8.653314,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812368980 -1616812369016 ,112.5730042,26.88912485,59.24536896,179.3252586,179.9136906,8.662766,0.156441915,1620000000000 ,1620000000000 ,1620000000000 ,1616812369000 -1616812369024 ,112.5730042,26.88912407,59.24601364,179.2952331,179.8317382,8.666789,0.078280452,1620000000000 ,1620000000000 ,1620000000000 ,1616812369010 -1616812369034 ,112.5730042,26.88912329,59.24669266,179.2649617,179.7777993,8.671295,0.07832391,1620000000000 ,1620000000000 ,1620000000000 ,1616812369020 -1616812369044 ,112.5730042,26.8891225,59.24737167,179.2347176,179.7109365,8.67495,0.078356919,1620000000000 ,1620000000000 ,1620000000000 ,1616812369030 -1616812369055 ,112.5730042,26.88912172,59.24803925,179.2036266,179.6649726,8.679299,0.078395098,1620000000000 ,1620000000000 ,1620000000000 ,1616812369040 -1616812369065 ,112.5730042,26.88912093,59.2486763,179.1715793,179.6254574,8.684415,0.078440459,1620000000000 ,1620000000000 ,1620000000000 ,1616812369050 -1616812369075 ,112.5730042,26.88912015,59.24929047,179.1411713,179.5796896,8.689737,0.078488179,1620000000000 ,1620000000000 ,1620000000000 ,1616812369060 -1616812369087 ,112.5730043,26.88911936,59.24987793,179.1103535,179.5394146,8.696425,0.07854695,1620000000000 ,1620000000000 ,1620000000000 ,1616812369070 -1616812369095 ,112.5730043,26.88911858,59.25043488,179.0805466,179.4926686,8.70091,0.078593064,1620000000000 ,1620000000000 ,1620000000000 ,1616812369080 -1616812369105 ,112.5730043,26.88911779,59.25093079,179.052133,179.4517222,8.706012,0.078634939,1620000000000 ,1620000000000 ,1620000000000 ,1616812369090 -1616812369115 ,112.5730043,26.88911701,59.25135803,179.0228451,179.4226624,8.711078,0.078680401,1620000000000 ,1620000000000 ,1620000000000 ,1616812369100 -1616812369128 ,112.5730043,26.88911622,59.25170135,178.9953605,179.3796171,8.716168,0.078722205,1620000000000 ,1620000000000 ,1620000000000 ,1616812369110 -1616812369137 ,112.5730043,26.88911543,59.25200653,178.9670015,179.3573153,8.7211485,0.078763259,1620000000000 ,1620000000000 ,1620000000000 ,1616812369120 -1616812369147 ,112.5730043,26.88911464,59.25230408,178.939189,179.3206762,8.725582,0.078808289,1620000000000 ,1620000000000 ,1620000000000 ,1616812369130 -1616812369161 ,112.5730043,26.88911385,59.25258636,178.9103929,179.2879805,8.730887,0.078855326,1620000000000 ,1620000000000 ,1620000000000 ,1616812369140 -1616812369169 ,112.5730043,26.88911307,59.25279999,178.8799849,179.2541078,8.737602,0.078909889,1620000000000 ,1620000000000 ,1620000000000 ,1616812369150 -1616812369176 ,112.5730043,26.88911228,59.25290298,178.8517079,179.2304763,8.744376,0.078965192,1620000000000 ,1620000000000 ,1620000000000 ,1616812369160 -1616812369188 ,112.5730043,26.88911149,59.25294113,178.8216278,179.222738,8.750308,0.07902363,1620000000000 ,1620000000000 ,1620000000000 ,1616812369170 -1616812369197 ,112.5730044,26.88911069,59.25294495,178.7910832,179.184526,8.756303,0.079075081,1620000000000 ,1620000000000 ,1620000000000 ,1616812369180 -1616812369209 ,112.5730044,26.8891099,59.25291061,178.7609484,179.1569808,8.762641,0.079130003,1620000000000 ,1620000000000 ,1620000000000 ,1616812369190 -1616812369217 ,112.5730044,26.88910911,59.25313187,178.7254587,179.1129208,8.764001,0.07921952,1620000000000 ,1620000000000 ,1620000000000 ,1616812369200 -1616812369227 ,112.5730044,26.88910832,59.25373459,178.6947228,179.049745,8.769659,0.079290234,1620000000000 ,1620000000000 ,1620000000000 ,1616812369210 -1616812369236 ,112.5730044,26.88910753,59.25432205,178.6637957,179.0282078,8.774658,0.079333019,1620000000000 ,1620000000000 ,1620000000000 ,1616812369220 -1616812369246 ,112.5730044,26.88910673,59.25489426,178.6328413,178.9836524,8.779632,0.079378311,1620000000000 ,1620000000000 ,1620000000000 ,1616812369230 -1616812369257 ,112.5730044,26.88910594,59.25548935,178.6040453,178.9430218,8.7848625,0.079428529,1620000000000 ,1620000000000 ,1620000000000 ,1616812369240 -1616812369267 ,112.5730044,26.88910514,59.25610733,178.5756043,178.9188619,8.791884,0.079486576,1620000000000 ,1620000000000 ,1620000000000 ,1616812369250 -1616812369277 ,112.5730045,26.88910435,59.25674438,178.545852,178.8938499,8.797773,0.079545035,1620000000000 ,1620000000000 ,1620000000000 ,1616812369260 -1616812369289 ,112.5730045,26.88910355,59.25737762,178.516209,178.8551116,8.801921,0.079587283,1620000000000 ,1620000000000 ,1620000000000 ,1616812369270 -1616812369300 ,112.5730045,26.88910276,59.25798798,178.4862108,178.8229187,8.8066,0.079621671,1620000000000 ,1620000000000 ,1620000000000 ,1616812369280 -1616812369311 ,112.5730045,26.88910196,59.25857544,178.4568137,178.7835493,8.81134,0.079669642,1620000000000 ,1620000000000 ,1620000000000 ,1616812369290 -1616812369322 ,112.5730045,26.88910116,59.25915909,178.4273346,178.7376295,8.817026,0.079717829,1620000000000 ,1620000000000 ,1620000000000 ,1616812369300 -1616812369330 ,112.5730045,26.88910036,59.25973892,178.3976916,178.700745,8.823749,0.079776154,1620000000000 ,1620000000000 ,1620000000000 ,1616812369310 -1616812369338 ,112.5730046,26.88909957,59.26034164,178.3678027,178.6704378,8.82839,0.079823147,1620000000000 ,1620000000000 ,1620000000000 ,1616812369320 -1616812369348 ,112.5730046,26.88909877,59.26097107,178.3391432,178.6412933,8.832709,0.079868504,1620000000000 ,1620000000000 ,1620000000000 ,1616812369330 -1616812369358 ,112.5730046,26.88909797,59.26161957,178.3102378,178.5976853,8.836886,0.079900936,1620000000000 ,1620000000000 ,1620000000000 ,1616812369340 -1616812369367 ,112.5730046,26.88909717,59.26227951,178.2816876,178.55945,8.84296,0.079956933,1620000000000 ,1620000000000 ,1620000000000 ,1616812369350 -1616812369380 ,112.5730046,26.88909637,59.26292038,178.2534107,178.5139376,8.847286,0.079999469,1620000000000 ,1620000000000 ,1620000000000 ,1616812369360 -1616812369390 ,112.5730047,26.88909557,59.26353455,178.2238223,178.490219,8.855246,0.080062615,1620000000000 ,1620000000000 ,1620000000000 ,1616812369370 -1616812369401 ,112.5730047,26.88909477,59.2641449,178.1920756,178.4574045,8.859077,0.080106848,1620000000000 ,1620000000000 ,1620000000000 ,1616812369380 -1616812369409 ,112.5730047,26.88909397,59.26480103,178.161449,178.4280578,8.865275,0.080157305,1620000000000 ,1620000000000 ,1620000000000 ,1616812369390 -1616812369419 ,112.5730047,26.88909317,59.26550293,178.1314781,178.4028464,8.8691435,0.080199358,1620000000000 ,1620000000000 ,1620000000000 ,1616812369400 -1616812369429 ,112.5730048,26.88909236,59.2662468,178.1010428,178.3787759,8.8745,0.080244631,1620000000000 ,1620000000000 ,1620000000000 ,1616812369410 -1616812369439 ,112.5730048,26.88909156,59.26701355,178.072438,178.3378186,8.879229,0.080295368,1620000000000 ,1620000000000 ,1620000000000 ,1616812369420 -1616812369449 ,112.5730048,26.88909076,59.26779175,178.0412377,178.3208453,8.883572,0.08033124,1620000000000 ,1620000000000 ,1620000000000 ,1616812369430 -1616812369458 ,112.5730048,26.88908996,59.26860428,178.0085347,178.3022761,8.889678,0.080388204,1620000000000 ,1620000000000 ,1620000000000 ,1616812369440 -1616812369469 ,112.5730048,26.88908915,59.26914215,177.9768153,178.3036308,8.895717,0.080396648,1620000000000 ,1620000000000 ,1620000000000 ,1616812369450 -1616812369478 ,112.5730049,26.88908835,59.26943588,177.9443036,178.3148597,8.900624,0.080398129,1620000000000 ,1620000000000 ,1620000000000 ,1616812369460 -1616812369489 ,112.5730049,26.88908754,59.26976395,177.9116826,178.2874311,8.904509,0.08043585,1620000000000 ,1620000000000 ,1620000000000 ,1616812369470 -1616812369500 ,112.5730049,26.88908674,59.27010727,177.876958,178.2620538,8.907479,0.08046727,1620000000000 ,1620000000000 ,1620000000000 ,1616812369480 -1616812369510 ,112.5730049,26.88908593,59.27042007,177.8423426,178.2428822,8.914794,0.080520661,1620000000000 ,1620000000000 ,1620000000000 ,1616812369490 -1616812369520 ,112.573005,26.88908513,59.27065277,177.8101587,178.2094083,8.919766,0.080568035,1620000000000 ,1620000000000 ,1620000000000 ,1616812369500 -1616812369530 ,112.573005,26.88908432,59.27082443,177.7744778,178.1738497,8.924371,0.080610662,1620000000000 ,1620000000000 ,1620000000000 ,1616812369510 -1616812369540 ,112.573005,26.88908352,59.27096558,177.7397804,178.1392014,8.929405,0.080652931,1620000000000 ,1620000000000 ,1620000000000 ,1616812369520 -1616812369551 ,112.573005,26.88908271,59.27105713,177.7054656,178.1085215,8.93597,0.080708484,1620000000000 ,1620000000000 ,1620000000000 ,1616812369530 -1616812369560 ,112.5730051,26.8890819,59.27109528,177.6732544,178.0754679,8.941924,0.080759655,1620000000000 ,1620000000000 ,1620000000000 ,1616812369540 -1616812369571 ,112.5730051,26.8890811,59.27109528,177.6388576,178.0377719,8.947148,0.080809259,1620000000000 ,1620000000000 ,1620000000000 ,1616812369550 -1616812369581 ,112.5730051,26.88908029,59.2710762,177.6049798,178.0055058,8.954008,0.08086483,1620000000000 ,1620000000000 ,1620000000000 ,1616812369560 -1616812369590 ,112.5730052,26.88907948,59.27101898,177.571949,177.9423836,8.958562,0.080910942,1620000000000 ,1620000000000 ,1620000000000 ,1616812369570 -1616812369599 ,112.5730052,26.88907867,59.27090836,177.5371424,177.9079924,8.963379,0.080950928,1620000000000 ,1620000000000 ,1620000000000 ,1616812369580 -1616812369609 ,112.5730052,26.88907786,59.27078629,177.5030734,177.8705178,8.9672575,0.080987396,1620000000000 ,1620000000000 ,1620000000000 ,1616812369590 -1616812369620 ,112.5730053,26.88907705,59.27068329,177.4674471,177.8124841,8.970974,0.081019272,1620000000000 ,1620000000000 ,1620000000000 ,1616812369600 -1616812369633 ,112.5730053,26.88907624,59.27061844,177.4333782,177.7529329,8.977261,0.081072581,1620000000000 ,1620000000000 ,1620000000000 ,1616812369610 -1616812369641 ,112.5730053,26.88907543,59.27052689,177.4009757,177.6939685,8.984809,0.081136936,1620000000000 ,1620000000000 ,1620000000000 ,1616812369620 -1616812369650 ,112.5730053,26.88907462,59.27040863,177.369912,177.6489432,8.991746,0.081198929,1620000000000 ,1620000000000 ,1620000000000 ,1616812369630 -1616812369662 ,112.5730054,26.88907381,59.27030563,177.3351054,177.6045538,8.995184,0.081238889,1620000000000 ,1620000000000 ,1620000000000 ,1616812369640 -1616812369670 ,112.5730054,26.889073,59.27030563,177.3025117,177.5445153,8.997675,0.081270907,1620000000000 ,1620000000000 ,1620000000000 ,1616812369650 -1616812369681 ,112.5730055,26.88907218,59.27037811,177.270164,177.4843987,9.000248,0.08129482,1620000000000 ,1620000000000 ,1620000000000 ,1616812369660 -1616812369691 ,112.5730055,26.88907137,59.27048492,177.2399199,177.4296869,9.005089,0.081331913,1620000000000 ,1620000000000 ,1620000000000 ,1616812369670 -1616812369701 ,112.5730055,26.88907056,59.27058792,177.2100583,177.3821983,9.011583,0.081383085,1620000000000 ,1620000000000 ,1620000000000 ,1616812369680 -1616812369711 ,112.5730056,26.88906974,59.27070236,177.1783935,177.348046,9.018476,0.081454257,1620000000000 ,1620000000000 ,1620000000000 ,1616812369690 -1616812369721 ,112.5730056,26.88906893,59.27082062,177.1470839,177.300822,9.024658,0.0815086,1620000000000 ,1620000000000 ,1620000000000 ,1616812369700 -1616812369731 ,112.5730056,26.88906812,59.27098465,177.1151733,177.2675515,9.028831,0.081554168,1620000000000 ,1620000000000 ,1620000000000 ,1616812369710 -1616812369741 ,112.5730057,26.8890673,59.27122116,177.0845467,177.2346774,9.03188,0.081584581,1620000000000 ,1620000000000 ,1620000000000 ,1616812369720 -1616812369751 ,112.5730057,26.88906649,59.27152634,177.054248,177.2001013,9.036275,0.081627137,1620000000000 ,1620000000000 ,1620000000000 ,1616812369730 -1616812369761 ,112.5730058,26.88906567,59.27185059,177.0231023,177.1693422,9.042668,0.081678897,1620000000000 ,1620000000000 ,1620000000000 ,1616812369740 -1616812369771 ,112.5730058,26.88906485,59.27212906,176.9934047,177.129918,9.049066,0.081734821,1620000000000 ,1620000000000 ,1620000000000 ,1616812369750 -1616812369782 ,112.5730058,26.88906404,59.27235413,176.9610296,177.1110741,9.053758,0.081779838,1620000000000 ,1620000000000 ,1620000000000 ,1616812369760 -1616812369792 ,112.5730059,26.88906322,59.27258301,176.9269879,177.0948808,9.059817,0.081835619,1620000000000 ,1620000000000 ,1620000000000 ,1616812369770 -1616812369802 ,112.5730059,26.8890624,59.27283859,176.8950773,177.0740068,9.063322,0.081870979,1620000000000 ,1620000000000 ,1620000000000 ,1616812369780 -1616812369814 ,112.573006,26.88906158,59.27316284,176.8620192,177.0413813,9.067498,0.081912716,1620000000000 ,1620000000000 ,1620000000000 ,1616812369790 -1616812369823 ,112.573006,26.88906077,59.27356339,176.8297534,177.0093264,9.071053,0.081945823,1620000000000 ,1620000000000 ,1620000000000 ,1616812369800 -1616812369833 ,112.5730061,26.88905995,59.27402878,176.7953292,176.9881065,9.072918,0.081970487,1620000000000 ,1620000000000 ,1620000000000 ,1616812369810 -1616812369845 ,112.5730061,26.88905913,59.27453995,176.7601674,176.9679908,9.0780115,0.082010303,1620000000000 ,1620000000000 ,1620000000000 ,1616812369820 -1616812369852 ,112.5730061,26.88905831,59.27506256,176.726918,176.9382181,9.082175,0.082054432,1620000000000 ,1620000000000 ,1620000000000 ,1616812369830 -1616812369863 ,112.5730062,26.88905749,59.27561569,176.6918655,176.9114516,9.087896,0.082098625,1620000000000 ,1620000000000 ,1620000000000 ,1616812369850 -1616812369873 ,112.5730062,26.88905667,59.27619171,176.6553923,176.8728804,9.091875,0.082142248,1620000000000 ,1620000000000 ,1620000000000 ,1616812369860 -1616812369883 ,112.5730063,26.88905585,59.27675629,176.6212687,176.8231969,9.096724,0.082185277,1620000000000 ,1620000000000 ,1620000000000 ,1616812369870 -1616812369892 ,112.5730063,26.88905503,59.27729797,176.588675,176.7767995,9.101639,0.082229402,1620000000000 ,1620000000000 ,1620000000000 ,1616812369880 -1616812369903 ,112.5730064,26.88905421,59.27781296,176.5541962,176.7327635,9.105879,0.082268666,1620000000000 ,1620000000000 ,1620000000000 ,1616812369880 -1616812369913 ,112.5730065,26.88905256,59.27887344,176.4904296,176.6688825,9.11353,0.164643444,1620000000000 ,1620000000000 ,1620000000000 ,1616812369900 -1616812369923 ,112.5730065,26.88905174,59.27943039,176.4590653,176.5842797,9.11782,0.082379354,1620000000000 ,1620000000000 ,1620000000000 ,1616812369910 -1616812369934 ,112.5730066,26.88905092,59.2799263,176.4298868,176.5361042,9.122893,0.082423782,1620000000000 ,1620000000000 ,1620000000000 ,1616812369920 -1616812369944 ,112.5730066,26.88905009,59.28030396,176.39967,176.4942902,9.128625,0.082468332,1620000000000 ,1620000000000 ,1620000000000 ,1616812369930 -1616812369954 ,112.5730067,26.88904927,59.28055954,176.3673769,176.4722226,9.133122,0.082509971,1620000000000 ,1620000000000 ,1620000000000 ,1616812369940 -1616812369964 ,112.5730067,26.88904845,59.2807579,176.3390999,176.4439188,9.137593,0.082549307,1620000000000 ,1620000000000 ,1620000000000 ,1616812369950 -1616812369974 ,112.5730068,26.88904762,59.28096771,176.3117245,176.3932243,9.141736,0.082588254,1620000000000 ,1620000000000 ,1620000000000 ,1616812369960 -1616812369984 ,112.5730068,26.88904762,59.28096771,176.3117245,-400,9.141736,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812369960 -1616812369995 ,112.5730069,26.88904597,59.28157425,176.257083,176.3395289,9.147693,0.165260362,1620000000000 ,1620000000000 ,1620000000000 ,1616812369980 -1616812370004 ,112.5730069,26.88904597,59.28157425,176.257083,-400,9.147693,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812369980 -1616812370015 ,112.573007,26.88904432,59.28223038,176.2036163,176.2801028,9.156975,0.165407898,1620000000000 ,1620000000000 ,1620000000000 ,1616812370000 -1616812370024 ,112.573007,26.8890435,59.28250122,176.178727,176.2422335,9.1612835,0.082766796,1620000000000 ,1620000000000 ,1620000000000 ,1616812370010 -1616812370035 ,112.5730071,26.88904267,59.28277206,176.152827,176.2035281,9.163529,0.082789542,1620000000000 ,1620000000000 ,1620000000000 ,1616812370020 -1616812370047 ,112.5730071,26.88904184,59.28305817,176.1283202,176.1474632,9.168355,0.082827288,1620000000000 ,1620000000000 ,1620000000000 ,1616812370030 -1616812370056 ,112.5730072,26.88904102,59.28331375,176.1059172,176.114578,9.173422,0.082871781,1620000000000 ,1620000000000 ,1620000000000 ,1616812370040 -1616812370065 ,112.5730073,26.88904019,59.28350449,176.0840333,176.1060043,9.179254,0.082923356,1620000000000 ,1620000000000 ,1620000000000 ,1616812370050 -1616812370075 ,112.5730073,26.88903936,59.28367233,176.0603189,176.0714552,9.183091,0.082962413,1620000000000 ,1620000000000 ,1620000000000 ,1616812370060 -1616812370085 ,112.5730074,26.88903853,59.28390503,176.0355116,176.0340026,9.185534,0.082988556,1620000000000 ,1620000000000 ,1620000000000 ,1616812370070 -1616812370095 ,112.5730074,26.88903771,59.2841835,176.0137916,175.9914359,9.188564,0.083013997,1620000000000 ,1620000000000 ,1620000000000 ,1616812370080 -1616812370105 ,112.5730075,26.88903688,59.2844429,175.9914979,175.9748322,9.194011,0.083058723,1620000000000 ,1620000000000 ,1620000000000 ,1616812370090 -1616812370117 ,112.5730075,26.88903605,59.2846756,175.9717996,175.9629358,9.199425,0.083105079,1620000000000 ,1620000000000 ,1620000000000 ,1616812370100 -1616812370126 ,112.5730076,26.88903522,59.28491211,175.9535767,175.939615,9.204958,0.083155045,1620000000000 ,1620000000000 ,1620000000000 ,1616812370110 -1616812370137 ,112.5730077,26.88903439,59.2851944,175.932567,175.9248228,9.209209,0.083202739,1620000000000 ,1620000000000 ,1620000000000 ,1616812370120 -1616812370146 ,112.5730077,26.88903356,59.28553391,175.9128688,175.9055647,9.21239,0.083231154,1620000000000 ,1620000000000 ,1620000000000 ,1616812370130 -1616812370155 ,112.5730078,26.88903273,59.28595734,175.8937716,175.8761669,9.213472,0.08324938,1620000000000 ,1620000000000 ,1620000000000 ,1616812370140 -1616812370167 ,112.5730078,26.8890319,59.28646851,175.8735815,175.8512828,9.215488,0.083266386,1620000000000 ,1620000000000 ,1620000000000 ,1616812370150 -1616812370175 ,112.5730079,26.88903107,59.28704453,175.853774,175.8313551,9.218775,0.083296212,1620000000000 ,1620000000000 ,1620000000000 ,1616812370160 -1616812370186 ,112.573008,26.88903024,59.28763962,175.8360974,175.8005424,9.222372,0.083329573,1620000000000 ,1620000000000 ,1620000000000 ,1616812370170 -1616812370196 ,112.573008,26.8890294,59.28824615,175.8174647,175.7847652,9.225345,0.083358065,1620000000000 ,1620000000000 ,1620000000000 ,1616812370180 -1616812370208 ,112.5730081,26.88902857,59.28889465,175.8005531,175.7770914,9.229913,0.08339728,1620000000000 ,1620000000000 ,1620000000000 ,1616812370190 -1616812370217 ,112.5730082,26.88902774,59.28978348,175.783505,175.7065688,9.246506,0.083671005,1620000000000 ,1620000000000 ,1620000000000 ,1616812370200 -1616812370227 ,112.5730082,26.8890269,59.29098892,175.7651454,175.6277808,9.248661,0.084045615,1620000000000 ,1620000000000 ,1620000000000 ,1616812370210 -1616812370236 ,112.5730083,26.88902606,59.2922554,175.7479607,175.6068116,9.250748,0.084060911,1620000000000 ,1620000000000 ,1620000000000 ,1616812370220 -1616812370246 ,112.5730083,26.88902522,59.29359055,175.7313223,175.5908637,9.251908,0.08407734,1620000000000 ,1620000000000 ,1620000000000 ,1616812370230 -1616812370256 ,112.5730084,26.88902439,59.29497528,175.7140829,175.5782033,9.255993,0.084112243,1620000000000 ,1620000000000 ,1620000000000 ,1616812370240 -1616812370267 ,112.5730085,26.88902355,59.29639053,175.6990838,175.5743,9.260056,0.08415128,1620000000000 ,1620000000000 ,1620000000000 ,1616812370250 -1616812370277 ,112.5730085,26.88902271,59.29782486,175.6815712,175.5597586,9.262646,0.084179275,1620000000000 ,1620000000000 ,1620000000000 ,1616812370260 -1616812370289 ,112.5730086,26.88902187,59.29927444,175.6636761,175.5422889,9.265213,0.084205699,1620000000000 ,1620000000000 ,1620000000000 ,1616812370270 -1616812370298 ,112.5730087,26.88902103,59.30071259,175.6464641,175.5215893,9.267948,0.084230792,1620000000000 ,1620000000000 ,1620000000000 ,1616812370280 -1616812370307 ,112.5730087,26.88902019,59.30210114,175.6282684,175.4934439,9.272457,0.084267728,1620000000000 ,1620000000000 ,1620000000000 ,1616812370290 -1616812370318 ,112.5730088,26.88901935,59.30342484,175.6096903,175.4909623,9.276676,0.084307056,1620000000000 ,1620000000000 ,1620000000000 ,1616812370300 -1616812370328 ,112.5730089,26.88901851,59.30474854,175.5906751,175.4714679,9.280202,0.08433977,1620000000000 ,1620000000000 ,1620000000000 ,1616812370310 -1616812370343 ,112.5730089,26.88901767,59.30610275,175.5743919,175.4544954,9.285416,0.084390596,1620000000000 ,1620000000000 ,1620000000000 ,1616812370320 -1616812370350 ,112.573009,26.88901682,59.30748367,175.5578902,175.428977,9.286761,0.084412116,1620000000000 ,1620000000000 ,1620000000000 ,1616812370330 -1616812370359 ,112.5730091,26.88901598,59.30882263,175.5420441,175.3996271,9.289993,0.084434721,1620000000000 ,1620000000000 ,1620000000000 ,1616812370340 -1616812370368 ,112.5730091,26.88901514,59.31008911,175.5248321,175.3907891,9.294577,0.084474201,1620000000000 ,1620000000000 ,1620000000000 ,1616812370350 -1616812370378 ,112.5730092,26.8890143,59.31129456,175.5095324,175.3862541,9.298835,0.084514115,1620000000000 ,1620000000000 ,1620000000000 ,1616812370360 -1616812370389 ,112.5730093,26.88901346,59.31245804,175.4922657,175.3659562,9.302,0.084545827,1620000000000 ,1620000000000 ,1620000000000 ,1616812370370 -1616812370398 ,112.5730093,26.88901261,59.31366348,175.4762284,175.3487013,9.303597,0.084564542,1620000000000 ,1620000000000 ,1620000000000 ,1616812370380 -1616812370409 ,112.5730094,26.88901177,59.314888,175.4619123,175.321483,9.305983,0.084584594,1620000000000 ,1620000000000 ,1620000000000 ,1616812370390 -1616812370420 ,112.5730095,26.88901093,59.31606293,175.4448369,175.2868541,9.309354,0.084614271,1620000000000 ,1620000000000 ,1620000000000 ,1616812370400 -1616812370429 ,112.5730096,26.88901008,59.31713867,175.4295373,175.2833746,9.313436,0.08465145,1620000000000 ,1620000000000 ,1620000000000 ,1616812370410 -1616812370441 ,112.5730096,26.88900924,59.31811142,175.4142923,175.2554255,9.316982,0.084680184,1620000000000 ,1620000000000 ,1620000000000 ,1616812370420 -1616812370450 ,112.5730097,26.88900839,59.31904602,175.396042,175.2260272,9.318621,0.084700311,1620000000000 ,1620000000000 ,1620000000000 ,1616812370430 -1616812370459 ,112.5730098,26.88900755,59.32001877,175.3819991,175.196231,9.32008,0.084713538,1620000000000 ,1620000000000 ,1620000000000 ,1616812370440 -1616812370474 ,112.5730098,26.88900671,59.32083893,175.3669454,175.2155233,9.320643,0.084494431,1620000000000 ,1620000000000 ,1620000000000 ,1616812370450 -1616812370484 ,112.5730099,26.88900587,59.32146835,175.3540227,175.2605759,9.321897,0.084273094,1620000000000 ,1620000000000 ,1620000000000 ,1616812370460 -1616812370491 ,112.57301,26.88900503,59.32206345,175.3409907,175.2409255,9.324138,0.084287764,1620000000000 ,1620000000000 ,1620000000000 ,1616812370470 -1616812370500 ,112.57301,26.88900419,59.32260895,175.3276308,175.2119265,9.328487,0.084322709,1620000000000 ,1620000000000 ,1620000000000 ,1616812370480 -1616812370512 ,112.5730101,26.88900335,59.32310104,175.3147901,175.1843202,9.330803,0.084348364,1620000000000 ,1620000000000 ,1620000000000 ,1616812370490 -1616812370521 ,112.5730102,26.88900251,59.32351685,175.3011843,175.1674871,9.334075,0.084370642,1620000000000 ,1620000000000 ,1620000000000 ,1616812370500 -1616812370534 ,112.5730103,26.88900167,59.32389832,175.2883982,175.1667538,9.336379,0.084396193,1620000000000 ,1620000000000 ,1620000000000 ,1616812370510 -1616812370541 ,112.5730103,26.88900083,59.32424545,175.2755028,175.1500075,9.337519,0.084404293,1620000000000 ,1620000000000 ,1620000000000 ,1616812370520 -1616812370551 ,112.5730104,26.88899998,59.32455444,175.2630992,175.121305,9.33924,0.08442066,1620000000000 ,1620000000000 ,1620000000000 ,1616812370530 -1616812370561 ,112.5730105,26.88899914,59.32476807,175.2496574,175.0966934,9.342319,0.084439047,1620000000000 ,1620000000000 ,1620000000000 ,1616812370540 -1616812370571 ,112.5730105,26.8889983,59.32484055,175.2373631,175.0826912,9.347945,0.084478576,1620000000000 ,1620000000000 ,1620000000000 ,1616812370550 -1616812370581 ,112.5730106,26.88899746,59.32478714,175.2238393,175.0784409,9.354492,0.084531423,1620000000000 ,1620000000000 ,1620000000000 ,1616812370560 -1616812370592 ,112.5730107,26.88899662,59.32466125,175.2122006,175.0825236,9.358437,0.084572718,1620000000000 ,1620000000000 ,1620000000000 ,1616812370570 -1616812370602 ,112.5730108,26.88899577,59.32452774,175.1989501,175.0787399,9.359773,0.084590814,1620000000000 ,1620000000000 ,1620000000000 ,1616812370580 -1616812370610 ,112.5730108,26.88899493,59.32441711,175.1879671,175.0718228,9.359741,0.08459353,1620000000000 ,1620000000000 ,1620000000000 ,1616812370590 -1616812370621 ,112.5730109,26.88899409,59.3243103,175.1757001,175.0595455,9.361883,0.084598526,1620000000000 ,1620000000000 ,1620000000000 ,1616812370600 -1616812370633 ,112.573011,26.88899324,59.32417297,175.1662198,175.0578947,9.365206,0.084635431,1620000000000 ,1620000000000 ,1620000000000 ,1616812370610 -1616812370645 ,112.5730111,26.8889924,59.32398224,175.1539801,175.0921427,9.369542,0.084664301,1620000000000 ,1620000000000 ,1620000000000 ,1616812370620 -1616812370652 ,112.5730111,26.88899156,59.32379532,175.1412759,175.1008446,9.375323,0.08471336,1620000000000 ,1620000000000 ,1620000000000 ,1616812370630 -1616812370661 ,112.5730112,26.88899071,59.32368088,175.1304023,175.0651167,9.376498,0.084733691,1620000000000 ,1620000000000 ,1620000000000 ,1616812370640 -1616812370671 ,112.5730113,26.88898987,59.32365036,175.1174522,175.0485181,9.378643,0.084758119,1620000000000 ,1620000000000 ,1620000000000 ,1616812370650 -1616812370681 ,112.5730113,26.88898902,59.32363892,175.1064966,175.0514673,9.380859,0.084776513,1620000000000 ,1620000000000 ,1620000000000 ,1616812370660 -1616812370692 ,112.5730114,26.88898818,59.32359314,175.0967704,175.0435183,9.380852,0.0847756,1620000000000 ,1620000000000 ,1620000000000 ,1616812370670 -1616812370702 ,112.5730115,26.88898733,59.32361221,175.0841482,175.0270981,9.383617,0.08479897,1620000000000 ,1620000000000 ,1620000000000 ,1616812370680 -1616812370712 ,112.5730116,26.88898649,59.3237381,175.0733565,174.9834779,9.387018,0.084833397,1620000000000 ,1620000000000 ,1620000000000 ,1616812370690 -1616812370721 ,112.5730116,26.88898564,59.32395172,175.0634664,174.9586511,9.390354,0.084861707,1620000000000 ,1620000000000 ,1620000000000 ,1616812370700 -1616812370732 ,112.5730117,26.8889848,59.32418823,175.0545325,174.9466598,9.393686,0.084894759,1620000000000 ,1620000000000 ,1620000000000 ,1616812370710 -1616812370741 ,112.5730118,26.88898395,59.32441711,175.0461451,174.9307628,9.395025,0.08491291,1620000000000 ,1620000000000 ,1620000000000 ,1616812370720 -1616812370752 ,112.5730119,26.88898311,59.32470322,175.0359818,174.9108895,9.398015,0.084939923,1620000000000 ,1620000000000 ,1620000000000 ,1616812370730 -1616812370762 ,112.5730119,26.88898226,59.32508469,175.0267747,174.875222,9.397661,0.084948581,1620000000000 ,1620000000000 ,1620000000000 ,1616812370740 -1616812370773 ,112.573012,26.88898141,59.32554245,175.0186331,174.8478675,9.398466,0.0849534,1620000000000 ,1620000000000 ,1620000000000 ,1616812370750 -1616812370783 ,112.5730121,26.88898057,59.32608032,175.0119941,174.8409421,9.400736,0.084974679,1620000000000 ,1620000000000 ,1620000000000 ,1616812370760 -1616812370794 ,112.5730122,26.88897972,59.3266716,175.0058743,174.8339008,9.4016285,0.084986819,1620000000000 ,1620000000000 ,1620000000000 ,1616812370770 -1616812370803 ,112.5730122,26.88897887,59.32730484,174.9986343,174.8301852,9.406103,0.085024095,1620000000000 ,1620000000000 ,1620000000000 ,1616812370780 -1616812370816 ,112.5730123,26.88897803,59.32795715,174.9901922,174.8063933,9.408038,0.085046012,1620000000000 ,1620000000000 ,1620000000000 ,1616812370800 -1616812370833 ,112.5730124,26.88897718,59.32862854,174.9818593,174.7969125,9.411177,0.085071884,1620000000000 ,1620000000000 ,1620000000000 ,1616812370810 -1616812370836 ,112.5730125,26.88897633,59.32935715,174.9715594,174.8003926,9.410835,0.085081435,1620000000000 ,1620000000000 ,1620000000000 ,1616812370820 -1616812370844 ,112.5730126,26.88897549,59.33016205,174.9610956,174.8101116,9.410728,0.085084295,1620000000000 ,1620000000000 ,1620000000000 ,1616812370830 -1616812370853 ,112.5730126,26.88897464,59.33103561,174.9516153,174.7966888,9.411765,0.08509124,1620000000000 ,1620000000000 ,1620000000000 ,1616812370840 -1616812370864 ,112.5730128,26.88897294,59.33277512,174.9328186,174.7913473,9.417811,0.170254119,1620000000000 ,1620000000000 ,1620000000000 ,1616812370850 -1616812370874 ,112.5730129,26.88897209,59.3335495,174.9215078,174.7921774,9.420883,0.085169673,1620000000000 ,1620000000000 ,1620000000000 ,1616812370860 -1616812370883 ,112.5730129,26.88897125,59.33432388,174.9104702,174.8026221,9.424631,0.085201399,1620000000000 ,1620000000000 ,1620000000000 ,1616812370870 -1616812370894 ,112.573013,26.8889704,59.33516312,174.8973562,174.7962872,9.426332,0.085228605,1620000000000 ,1620000000000 ,1620000000000 ,1616812370880 -1616812370904 ,112.573013,26.8889704,59.33516312,174.8973562,-400,9.426332,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812370890 -1616812370913 ,112.5730132,26.8889687,59.33704376,174.874762,174.7820374,9.426896,0.170487172,1620000000000 ,1620000000000 ,1620000000000 ,1616812370900 -1616812370924 ,112.5730133,26.88896785,59.33798981,174.8624676,174.7792969,9.428357,0.08524872,1620000000000 ,1620000000000 ,1620000000000 ,1616812370910 -1616812370935 ,112.5730133,26.888967,59.33887482,174.8495449,174.7713666,9.430492,0.08527059,1620000000000 ,1620000000000 ,1620000000000 ,1616812370920 -1616812370945 ,112.5730134,26.88896615,59.33968353,174.836267,174.7548046,9.434113,0.08529684,1620000000000 ,1620000000000 ,1620000000000 ,1616812370930 -1616812370954 ,112.5730135,26.8889653,59.34046936,174.821787,174.7455746,9.437908,0.085331837,1620000000000 ,1620000000000 ,1620000000000 ,1616812370940 -1616812370964 ,112.5730136,26.88896445,59.34123611,174.8078534,174.7150342,9.438524,0.085343168,1620000000000 ,1620000000000 ,1620000000000 ,1616812370950 -1616812370974 ,112.5730136,26.8889636,59.34196854,174.7959689,174.6855174,9.440721,0.085360323,1620000000000 ,1620000000000 ,1620000000000 ,1616812370960 -1616812370984 ,112.5730137,26.88896275,59.34262466,174.7839205,174.6638775,9.442413,0.085374631,1620000000000 ,1620000000000 ,1620000000000 ,1616812370970 -1616812370996 ,112.5730138,26.8889619,59.34315872,174.7718993,174.6417207,9.445383,0.085395277,1620000000000 ,1620000000000 ,1620000000000 ,1616812370980 -1616812371006 ,112.5730138,26.8889619,59.34315872,174.7718993,-400,9.445383,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812370990 -1616812371015 ,112.573014,26.8889602,59.34373093,174.7505345,174.6178193,9.453413,0.170879542,1620000000000 ,1620000000000 ,1620000000000 ,1616812371000 -1616812371025 ,112.573014,26.88895935,59.34381866,174.7378577,174.6040345,9.457243,0.085484284,1620000000000 ,1620000000000 ,1620000000000 ,1616812371010 -1616812371035 ,112.5730141,26.8889585,59.34386826,174.7287872,174.5877083,9.458584,0.085503077,1620000000000 ,1620000000000 ,1620000000000 ,1616812371020 -1616812371046 ,112.5730142,26.88895765,59.34389496,174.7171485,174.5794104,9.462875,0.085528382,1620000000000 ,1620000000000 ,1620000000000 ,1616812371030 -1616812371056 ,112.5730143,26.8889568,59.34390259,174.7064388,174.571943,9.464816,0.085554103,1620000000000 ,1620000000000 ,1620000000000 ,1616812371040 -1616812371066 ,112.5730144,26.88895594,59.34385681,174.6970951,174.5584881,9.467363,0.08557093,1620000000000 ,1620000000000 ,1620000000000 ,1616812371050 -1616812371075 ,112.5730144,26.88895509,59.34375381,174.6868771,174.5510035,9.469491,0.085591291,1620000000000 ,1620000000000 ,1620000000000 ,1616812371060 -1616812371085 ,112.5730145,26.88895424,59.34362411,174.6786536,174.5433291,9.471872,0.085609287,1620000000000 ,1620000000000 ,1620000000000 ,1616812371070 -1616812371095 ,112.5730146,26.88895339,59.34350586,174.6699929,174.5277672,9.47492,0.085637289,1620000000000 ,1620000000000 ,1620000000000 ,1616812371080 -1616812371106 ,112.5730147,26.88895253,59.34342575,174.6613049,174.5142845,9.47725,0.085659619,1620000000000 ,1620000000000 ,1620000000000 ,1616812371090 -1616812371119 ,112.5730148,26.88895168,59.34338379,174.6536551,174.5104901,9.478966,0.085676351,1620000000000 ,1620000000000 ,1620000000000 ,1616812371100 -1616812371126 ,112.5730149,26.88895083,59.34337616,174.6462785,174.5104295,9.480313,0.085690664,1620000000000 ,1620000000000 ,1620000000000 ,1616812371110 -1616812371135 ,112.5730149,26.88894998,59.34341049,174.6403226,174.4958696,9.484327,0.085720893,1620000000000 ,1620000000000 ,1620000000000 ,1616812371120 -1616812371145 ,112.573015,26.88894912,59.34348679,174.6336016,174.4729094,9.485567,0.085741453,1620000000000 ,1620000000000 ,1620000000000 ,1616812371130 -1616812371155 ,112.5730151,26.88894827,59.34360123,174.625624,174.4628568,9.487747,0.085758706,1620000000000 ,1620000000000 ,1620000000000 ,1616812371140 -1616812371166 ,112.5730152,26.88894741,59.34375,174.6192309,174.4553545,9.48858,0.085771987,1620000000000 ,1620000000000 ,1620000000000 ,1616812371150 -1616812371177 ,112.5730153,26.88894656,59.34389496,174.6142586,174.4410846,9.490947,0.08578722,1620000000000 ,1620000000000 ,1620000000000 ,1616812371160 -1616812371186 ,112.5730154,26.88894571,59.34404755,174.608849,174.435916,9.494079,0.08581555,1620000000000 ,1620000000000 ,1620000000000 ,1616812371170 -1616812371196 ,112.5730154,26.88894485,59.34423065,174.6047509,174.4110549,9.497246,0.085843865,1620000000000 ,1620000000000 ,1620000000000 ,1616812371180 -1616812371206 ,112.5730155,26.888944,59.34448624,174.5985764,174.3892377,9.4980345,0.085861637,1620000000000 ,1620000000000 ,1620000000000 ,1616812371190 -1616812371216 ,112.5730156,26.88894314,59.34518814,174.5853532,174.2674054,9.499487,0.085930751,1620000000000 ,1620000000000 ,1620000000000 ,1616812371200 -1616812371227 ,112.5730157,26.88894229,59.34657288,174.5815556,174.0882038,9.501134,0.086038139,1620000000000 ,1620000000000 ,1620000000000 ,1616812371210 -1616812371237 ,112.5730158,26.88894143,59.34805298,174.5779493,174.0797729,9.503216,0.086057671,1620000000000 ,1620000000000 ,1620000000000 ,1616812371220 -1616812371246 ,112.5730159,26.88894058,59.34962082,174.5711737,174.0690455,9.505941,0.086085265,1620000000000 ,1620000000000 ,1620000000000 ,1616812371230 -1616812371257 ,112.573016,26.88893972,59.35123062,174.5658189,174.0599847,9.50903,0.086113727,1620000000000 ,1620000000000 ,1620000000000 ,1616812371240 -1616812371266 ,112.5730161,26.88893886,59.35285568,174.5609284,174.0653858,9.5103445,0.086131974,1620000000000 ,1620000000000 ,1620000000000 ,1616812371250 -1616812371276 ,112.5730161,26.88893801,59.35452652,174.5546173,174.0770378,9.5109825,0.086138986,1620000000000 ,1620000000000 ,1620000000000 ,1616812371260 -1616812371288 ,112.5730162,26.88893715,59.3562851,174.5469948,174.068543,9.511613,0.08614941,1620000000000 ,1620000000000 ,1620000000000 ,1616812371270 -1616812371300 ,112.5730163,26.88893629,59.35810089,174.5431426,174.0640084,9.514891,0.086173209,1620000000000 ,1620000000000 ,1620000000000 ,1616812371280 -1616812371308 ,112.5730164,26.88893543,59.35994339,174.5371047,174.0706705,9.516963,0.086195014,1620000000000 ,1620000000000 ,1620000000000 ,1616812371290 -1616812371317 ,112.5730165,26.88893458,59.36175156,174.5315586,174.0614865,9.519885,0.08621913,1620000000000 ,1620000000000 ,1620000000000 ,1616812371300 -1616812371327 ,112.5730166,26.88893372,59.36352158,174.5253022,174.073827,9.524232,0.086255433,1620000000000 ,1620000000000 ,1620000000000 ,1616812371310 -1616812371337 ,112.5730167,26.88893286,59.36526489,174.5181168,174.0795625,9.527771,0.086288312,1620000000000 ,1620000000000 ,1620000000000 ,1616812371320 -1616812371347 ,112.5730168,26.888932,59.36696625,174.508937,174.0843358,9.530742,0.086315526,1620000000000 ,1620000000000 ,1620000000000 ,1616812371330 -1616812371361 ,112.5730169,26.88893114,59.36867523,174.5004676,174.0978733,9.530592,0.086325722,1620000000000 ,1620000000000 ,1620000000000 ,1616812371340 -1616812371368 ,112.5730169,26.88893028,59.37038803,174.4906868,174.1050483,9.5323715,0.086335323,1620000000000 ,1620000000000 ,1620000000000 ,1616812371350 -1616812371377 ,112.573017,26.88892942,59.37211609,174.4803868,174.098505,9.535083,0.086358329,1620000000000 ,1620000000000 ,1620000000000 ,1616812371360 -1616812371388 ,112.5730171,26.88892857,59.37385178,174.471371,174.1025127,9.53859,0.086390681,1620000000000 ,1620000000000 ,1620000000000 ,1616812371370 -1616812371398 ,112.5730172,26.88892771,59.37553787,174.463366,174.0917056,9.54226,0.086422534,1620000000000 ,1620000000000 ,1620000000000 ,1616812371380 -1616812371408 ,112.5730173,26.88892685,59.37715912,174.454678,174.0880462,9.545601,0.086453419,1620000000000 ,1620000000000 ,1620000000000 ,1616812371390 -1616812371419 ,112.5730174,26.88892599,59.37874985,174.4448972,174.0877628,9.547448,0.086474633,1620000000000 ,1620000000000 ,1620000000000 ,1616812371400 -1616812371429 ,112.5730175,26.88892513,59.38032532,174.4343514,174.0732391,9.549487,0.086493161,1620000000000 ,1620000000000 ,1620000000000 ,1616812371410 -1616812371438 ,112.5730176,26.88892427,59.38186646,174.4247345,174.0592433,9.550694,0.086503297,1620000000000 ,1620000000000 ,1620000000000 ,1616812371420 -1616812371449 ,112.5730177,26.8889234,59.38338089,174.4168114,174.0628889,9.552109,0.08651579,1620000000000 ,1620000000000 ,1620000000000 ,1616812371430 -1616812371459 ,112.5730177,26.88892254,59.38489914,174.406293,174.0523671,9.554373,0.086538213,1620000000000 ,1620000000000 ,1620000000000 ,1616812371440 -1616812371468 ,112.5730178,26.88892168,59.38607407,174.3963755,174.1365439,9.556207,0.08648445,1620000000000 ,1620000000000 ,1620000000000 ,1616812371450 -1616812371479 ,112.5730179,26.88892082,59.38689423,174.3879334,174.2481274,9.559597,0.086446812,1620000000000 ,1620000000000 ,1620000000000 ,1616812371460 -1616812371491 ,112.573018,26.88891996,59.38769913,174.3793274,174.2263204,9.5623665,0.086474136,1620000000000 ,1620000000000 ,1620000000000 ,1616812371470 -1616812371501 ,112.5730181,26.8889191,59.38848495,174.371541,174.2162713,9.562817,0.086483819,1620000000000 ,1620000000000 ,1620000000000 ,1616812371480 -1616812371510 ,112.5730182,26.88891824,59.38929749,174.3618694,174.2033011,9.564159,0.086494538,1620000000000 ,1620000000000 ,1620000000000 ,1616812371490 -1616812371519 ,112.5730183,26.88891738,59.39009476,174.3531814,174.180177,9.564738,0.086503976,1620000000000 ,1620000000000 ,1620000000000 ,1616812371500 -1616812371529 ,112.5730184,26.88891652,59.39084625,174.3451764,174.1812293,9.566635,0.086516412,1620000000000 ,1620000000000 ,1620000000000 ,1616812371510 -1616812371542 ,112.5730184,26.88891566,59.39151001,174.338155,174.1713192,9.570411,0.086547424,1620000000000 ,1620000000000 ,1620000000000 ,1616812371520 -1616812371552 ,112.5730185,26.8889148,59.39210892,174.3318166,174.1641006,9.572335,0.086564542,1620000000000 ,1620000000000 ,1620000000000 ,1616812371530 -1616812371560 ,112.5730186,26.88891394,59.39268494,174.3257514,174.1467806,9.574135,0.086580439,1620000000000 ,1620000000000 ,1620000000000 ,1616812371540 -1616812371570 ,112.5730187,26.88891308,59.39325714,174.3175005,174.1318411,9.576581,0.086606585,1620000000000 ,1620000000000 ,1620000000000 ,1616812371550 -1616812371580 ,112.5730188,26.88891221,59.39382935,174.3099326,174.1295358,9.578417,0.086623213,1620000000000 ,1620000000000 ,1620000000000 ,1616812371560 -1616812371590 ,112.5730189,26.88891135,59.39437866,174.3020096,174.1303601,9.581028,0.086642506,1620000000000 ,1620000000000 ,1620000000000 ,1616812371570 -1616812371610 ,112.573019,26.88891049,59.39489365,174.2953434,174.1383403,9.581564,0.086655508,1620000000000 ,1620000000000 ,1620000000000 ,1616812371580 -1616812371612 ,112.5730191,26.88890963,59.39539719,174.2902617,174.1352808,9.582652,0.086660986,1620000000000 ,1620000000000 ,1620000000000 ,1616812371590 -1616812371623 ,112.5730192,26.88890877,59.39588547,174.2849068,174.12904,9.58483,0.086677386,1620000000000 ,1620000000000 ,1620000000000 ,1616812371600 -1616812371632 ,112.5730192,26.8889079,59.39636612,174.2794973,174.128572,9.586809,0.086699021,1620000000000 ,1620000000000 ,1620000000000 ,1616812371610 -1616812371642 ,112.5730193,26.88890704,59.39685822,174.276492,174.123916,9.587953,0.086711477,1620000000000 ,1620000000000 ,1620000000000 ,1616812371620 -1616812371651 ,112.5730194,26.88890618,59.39738083,174.2716289,174.1104373,9.58823,0.086716687,1620000000000 ,1620000000000 ,1620000000000 ,1616812371630 -1616812371668 ,112.5730195,26.88890532,59.39792633,174.2679953,174.0978873,9.589317,0.086727753,1620000000000 ,1620000000000 ,1620000000000 ,1616812371640 -1616812371675 ,112.5730196,26.88890445,59.39844131,174.265673,174.0795338,9.5911255,0.086743438,1620000000000 ,1620000000000 ,1620000000000 ,1616812371650 -1616812371682 ,112.5730197,26.88890359,59.39887238,174.2646895,174.0648638,9.595077,0.086770262,1620000000000 ,1620000000000 ,1620000000000 ,1616812371660 -1616812371690 ,112.5730198,26.88890273,59.39920425,174.263624,174.0593782,9.597964,0.086794859,1620000000000 ,1620000000000 ,1620000000000 ,1616812371670 -1616812371701 ,112.5730199,26.88890186,59.39946365,174.2644709,174.0362739,9.599315,0.086807565,1620000000000 ,1620000000000 ,1620000000000 ,1616812371680 -1616812371711 ,112.57302,26.888901,59.39970779,174.2670664,174.0214383,9.599253,0.086811973,1620000000000 ,1620000000000 ,1620000000000 ,1616812371690 -1616812371721 ,112.57302,26.88890014,59.39995193,174.2703995,174.0078661,9.599103,0.086811064,1620000000000 ,1620000000000 ,1620000000000 ,1616812371700 -1616812371732 ,112.5730201,26.88889927,59.40019226,174.2744157,173.9979199,9.600241,0.086816847,1620000000000 ,1620000000000 ,1620000000000 ,1616812371710 -1616812371742 ,112.5730202,26.88889841,59.40040207,174.2812732,173.9749054,9.600426,0.08682016,1620000000000 ,1620000000000 ,1620000000000 ,1616812371720 -1616812371752 ,112.5730203,26.88889755,59.40055466,174.2874203,173.9654822,9.6032,0.086836823,1620000000000 ,1620000000000 ,1620000000000 ,1616812371730 -1616812371761 ,112.5730204,26.88889668,59.40068436,174.2933763,173.9647284,9.606404,0.086863781,1620000000000 ,1620000000000 ,1620000000000 ,1616812371740 -1616812371772 ,112.5730205,26.88889582,59.40081406,174.3014359,173.9589638,9.607057,0.086875573,1620000000000 ,1620000000000 ,1620000000000 ,1616812371750 -1616812371782 ,112.5730206,26.88889495,59.40095901,174.3101239,173.9579707,9.608218,0.086886849,1620000000000 ,1620000000000 ,1620000000000 ,1616812371760 -1616812371792 ,112.5730207,26.88889409,59.40111923,174.3168721,173.9572547,9.609995,0.086901932,1620000000000 ,1620000000000 ,1620000000000 ,1616812371770 -1616812371808 ,112.5730208,26.88889323,59.40129471,174.3271447,173.9581982,9.610233,0.086901396,1620000000000 ,1620000000000 ,1620000000000 ,1616812371780 -1616812371815 ,112.5730209,26.88889236,59.40143585,174.3362425,173.9625196,9.613822,0.086929427,1620000000000 ,1620000000000 ,1620000000000 ,1616812371790 -1616812371823 ,112.573021,26.8888915,59.40153885,174.346761,173.9617334,9.614784,0.086940846,1620000000000 ,1620000000000 ,1620000000000 ,1616812371800 -1616812371832 ,112.5730211,26.88889063,59.40163422,174.3570609,173.9694992,9.615528,0.086946044,1620000000000 ,1620000000000 ,1620000000000 ,1616812371810 -1616812371843 ,112.5730211,26.88888977,59.40176392,174.368481,173.9872474,9.616338,0.086954165,1620000000000 ,1620000000000 ,1620000000000 ,1616812371820 -1616812371852 ,112.5730212,26.8888889,59.4019165,174.381513,174.0016684,9.618843,0.0869742,1620000000000 ,1620000000000 ,1620000000000 ,1616812371830 -1616812371863 ,112.5730213,26.88888804,59.40205765,174.3964302,174.020426,9.620165,0.086987259,1620000000000 ,1620000000000 ,1620000000000 ,1616812371840 -1616812371874 ,112.5730214,26.88888717,59.40220261,174.4104184,174.0502052,9.6222925,0.087003235,1620000000000 ,1620000000000 ,1620000000000 ,1616812371850 -1616812371883 ,112.5730215,26.88888631,59.40236282,174.4237236,174.0604329,9.623832,0.087014304,1620000000000 ,1620000000000 ,1620000000000 ,1616812371860 -1616812371893 ,112.5730216,26.88888544,59.40255737,174.4368922,174.0678199,9.625453,0.087033072,1620000000000 ,1620000000000 ,1620000000000 ,1616812371880 -1616812371903 ,112.5730217,26.88888458,59.4027977,174.4507438,174.0990737,9.625913,0.087040669,1620000000000 ,1620000000000 ,1620000000000 ,1616812371880 -1616812371914 ,112.5730218,26.88888371,59.40307617,174.4638305,174.1254189,9.62675,0.087045619,1620000000000 ,1620000000000 ,1620000000000 ,1616812371900 -1616812371923 ,112.5730219,26.88888284,59.40339279,174.4774908,174.1467963,9.627613,0.087054208,1620000000000 ,1620000000000 ,1620000000000 ,1616812371910 -1616812371934 ,112.573022,26.88888198,59.40372849,174.4920255,174.1605007,9.629125,0.087066612,1620000000000 ,1620000000000 ,1620000000000 ,1616812371920 -1616812371943 ,112.573022,26.88888111,59.40404892,174.5065055,174.1755283,9.631116,0.087078924,1620000000000 ,1620000000000 ,1620000000000 ,1616812371930 -1616812371954 ,112.5730221,26.88888024,59.40436554,174.5204937,174.2058486,9.633055,0.087097297,1620000000000 ,1620000000000 ,1620000000000 ,1616812371940 -1616812371963 ,112.5730222,26.88887938,59.40470505,174.5366403,174.2290166,9.634542,0.087110987,1620000000000 ,1620000000000 ,1620000000000 ,1616812371950 -1616812371973 ,112.5730223,26.88887851,59.40506363,174.5513935,174.2495698,9.635902,0.087121627,1620000000000 ,1620000000000 ,1620000000000 ,1616812371960 -1616812371984 ,112.5730225,26.88887678,59.40574646,174.5819654,174.2775119,9.640071,0.174294298,1620000000000 ,1620000000000 ,1620000000000 ,1616812371970 -1616812371993 ,112.5730226,26.88887591,59.40607071,174.5952433,174.3023702,9.643588,0.087182199,1620000000000 ,1620000000000 ,1620000000000 ,1616812371980 -1616812372004 ,112.5730226,26.88887591,59.40607071,174.5952433,-400,9.643588,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812371980 -1616812372014 ,112.5730227,26.88887417,59.4068222,174.6246404,174.3383575,9.644947,0.174396375,1620000000000 ,1620000000000 ,1620000000000 ,1616812372000 -1616812372024 ,112.5730228,26.88887331,59.40730667,174.640186,174.3636466,9.646202,0.087209887,1620000000000 ,1620000000000 ,1620000000000 ,1616812372010 -1616812372034 ,112.5730229,26.88887244,59.40787125,174.6580537,174.3787778,9.6470585,0.087222257,1620000000000 ,1620000000000 ,1620000000000 ,1616812372020 -1616812372044 ,112.573023,26.88887157,59.40842438,174.6751838,174.3857132,9.649448,0.087237316,1620000000000 ,1620000000000 ,1620000000000 ,1616812372030 -1616812372055 ,112.5730231,26.8888707,59.40895844,174.6935161,174.417864,9.651969,0.087261491,1620000000000 ,1620000000000 ,1620000000000 ,1616812372040 -1616812372066 ,112.5730232,26.88886983,59.40945435,174.7091162,174.4255906,9.654832,0.087282579,1620000000000 ,1620000000000 ,1620000000000 ,1616812372050 -1616812372074 ,112.5730232,26.88886896,59.4099617,174.7250169,174.4492834,9.65714,0.087303875,1620000000000 ,1620000000000 ,1620000000000 ,1616812372060 -1616812372084 ,112.5730233,26.88886809,59.41050339,174.7406717,174.4723636,9.661044,0.087333127,1620000000000 ,1620000000000 ,1620000000000 ,1616812372070 -1616812372094 ,112.5730234,26.88886722,59.41106415,174.7558347,174.4859921,9.662512,0.087356481,1620000000000 ,1620000000000 ,1620000000000 ,1616812372080 -1616812372104 ,112.5730235,26.88886635,59.41165161,174.7728282,174.4989464,9.663523,0.087360607,1620000000000 ,1620000000000 ,1620000000000 ,1616812372090 -1616812372116 ,112.5730236,26.88886549,59.41226959,174.7901223,174.500092,9.664648,0.087374135,1620000000000 ,1620000000000 ,1620000000000 ,1616812372100 -1616812372125 ,112.5730237,26.88886462,59.41289139,174.8090555,174.5086957,9.665275,0.08737904,1620000000000 ,1620000000000 ,1620000000000 ,1616812372110 -1616812372135 ,112.5730237,26.88886375,59.41352081,174.8273058,174.5255821,9.668579,0.087401813,1620000000000 ,1620000000000 ,1620000000000 ,1616812372120 -1616812372146 ,112.5730238,26.88886287,59.41415787,174.8474139,174.5357655,9.672868,0.087437727,1620000000000 ,1620000000000 ,1620000000000 ,1616812372130 -1616812372155 ,112.5730239,26.888862,59.4148407,174.8669482,174.5583295,9.674994,0.087461019,1620000000000 ,1620000000000 ,1620000000000 ,1616812372140 -1616812372165 ,112.573024,26.88886113,59.41555786,174.8896245,174.5685615,9.677365,0.087483336,1620000000000 ,1620000000000 ,1620000000000 ,1616812372150 -1616812372175 ,112.5730241,26.88886026,59.4162674,174.9124373,174.5579869,9.678663,0.087498834,1620000000000 ,1620000000000 ,1620000000000 ,1616812372160 -1616812372186 ,112.5730242,26.88885939,59.41698074,174.9348403,174.569481,9.682136,0.087522385,1620000000000 ,1620000000000 ,1620000000000 ,1616812372170 -1616812372195 ,112.5730242,26.88885852,59.41770172,174.9573526,174.5868088,9.682664,0.087536962,1620000000000 ,1620000000000 ,1620000000000 ,1616812372180 -1616812372207 ,112.5730243,26.88885765,59.41843414,174.9802474,174.613413,9.6836195,0.0875396,1620000000000 ,1620000000000 ,1620000000000 ,1616812372190 -1616812372217 ,112.5730244,26.88885678,59.41875839,174.9973229,174.6072298,9.6751,0.087442141,1620000000000 ,1620000000000 ,1620000000000 ,1616812372200 -1616812372226 ,112.5730245,26.88885591,59.41840363,175.0184965,174.5645324,9.676492,0.087247747,1620000000000 ,1620000000000 ,1620000000000 ,1616812372210 -1616812372237 ,112.5730246,26.88885504,59.41811371,175.0433857,174.586832,9.679644,0.087276595,1620000000000 ,1620000000000 ,1620000000000 ,1616812372220 -1616812372247 ,112.5730247,26.88885417,59.41780853,175.0689033,174.6089208,9.683038,0.087305513,1620000000000 ,1620000000000 ,1620000000000 ,1616812372230 -1616812372256 ,112.5730247,26.8888533,59.41749954,175.0944755,174.6434485,9.684846,0.087324417,1620000000000 ,1620000000000 ,1620000000000 ,1616812372240 -1616812372267 ,112.5730248,26.88885243,59.4172287,175.1217689,174.6667475,9.68656,0.087342264,1620000000000 ,1620000000000 ,1620000000000 ,1616812372250 -1616812372276 ,112.5730249,26.88885156,59.41701508,175.1479695,174.6999942,9.686518,0.087347564,1620000000000 ,1620000000000 ,1620000000000 ,1616812372260 -1616812372286 ,112.573025,26.88885069,59.41683578,175.1750717,174.7333169,9.688652,0.087363492,1620000000000 ,1620000000000 ,1620000000000 ,1616812372270 -1616812372296 ,112.5730251,26.88884982,59.41664505,175.2037585,174.7486421,9.690182,0.087378339,1620000000000 ,1620000000000 ,1620000000000 ,1616812372280 -1616812372307 ,112.5730251,26.88884895,59.4164505,175.2287297,174.79011,9.692011,0.087393678,1620000000000 ,1620000000000 ,1620000000000 ,1616812372290 -1616812372318 ,112.5730252,26.88884808,59.41627502,175.2560231,174.8322189,9.694463,0.087418319,1620000000000 ,1620000000000 ,1620000000000 ,1616812372300 -1616812372326 ,112.5730253,26.88884721,59.41613388,175.2815407,174.8610797,9.696829,0.087439341,1620000000000 ,1620000000000 ,1620000000000 ,1616812372310 -1616812372336 ,112.5730254,26.88884634,59.41605759,175.3076594,174.8974183,9.698096,0.087454332,1620000000000 ,1620000000000 ,1620000000000 ,1616812372320 -1616812372347 ,112.5730255,26.88884547,59.41604996,175.3332589,174.9254556,9.698047,0.087462008,1620000000000 ,1620000000000 ,1620000000000 ,1616812372330 -1616812372357 ,112.5730255,26.8888446,59.4160614,175.360525,174.9543252,9.699442,0.087471658,1620000000000 ,1620000000000 ,1620000000000 ,1616812372340 -1616812372368 ,112.5730256,26.88884372,59.41601944,175.3878731,174.9898234,9.702081,0.087491427,1620000000000 ,1620000000000 ,1620000000000 ,1616812372350 -1616812372377 ,112.5730257,26.88884285,59.41587448,175.4122705,175.025586,9.705737,0.087520543,1620000000000 ,1620000000000 ,1620000000000 ,1616812372360 -1616812372392 ,112.5730258,26.88884198,59.4156456,175.436586,175.0657485,9.710413,0.087559705,1620000000000 ,1620000000000 ,1620000000000 ,1616812372370 -1616812372402 ,112.5730258,26.88884111,59.4153862,175.4633877,175.1002528,9.712682,0.087581828,1620000000000 ,1620000000000 ,1620000000000 ,1616812372380 -1616812372407 ,112.5730259,26.88884024,59.41513062,175.4897249,175.1272498,9.713607,0.087595894,1620000000000 ,1620000000000 ,1620000000000 ,1616812372390 -1616812372418 ,112.573026,26.88883936,59.41490173,175.516308,175.1509084,9.714229,0.087606165,1620000000000 ,1620000000000 ,1620000000000 ,1616812372400 -1616812372429 ,112.5730261,26.88883849,59.41465378,175.5414431,175.184463,9.717162,0.087622174,1620000000000 ,1620000000000 ,1620000000000 ,1616812372410 -1616812372438 ,112.5730261,26.88883762,59.41427612,175.566988,175.2020592,9.722259,0.087661735,1620000000000 ,1620000000000 ,1620000000000 ,1616812372420 -1616812372449 ,112.5730262,26.88883674,59.41370392,175.5911668,175.239408,9.72614,0.087695828,1620000000000 ,1620000000000 ,1620000000000 ,1616812372430 -1616812372458 ,112.5730263,26.88883587,59.41297531,175.6164659,175.2730976,9.72897,0.087716318,1620000000000 ,1620000000000 ,1620000000000 ,1616812372440 -1616812372469 ,112.5730263,26.88883499,59.41265488,175.6417922,175.3190528,9.728986,0.087832029,1620000000000 ,1620000000000 ,1620000000000 ,1616812372450 -1616812372481 ,112.5730264,26.88883412,59.41283798,175.6670912,175.3610826,9.727269,0.087933778,1620000000000 ,1620000000000 ,1620000000000 ,1616812372460 -1616812372491 ,112.5730265,26.88883324,59.41306686,175.6907237,175.3791769,9.726334,0.087926238,1620000000000 ,1620000000000 ,1620000000000 ,1616812372470 -1616812372500 ,112.5730266,26.88883236,59.4132843,175.7144381,175.411666,9.728211,0.087931482,1620000000000 ,1620000000000 ,1620000000000 ,1616812372480 -1616812372511 ,112.5730266,26.88883149,59.41342163,175.7400103,175.4475281,9.730558,0.087951444,1620000000000 ,1620000000000 ,1620000000000 ,1616812372490 -1616812372520 ,112.5730267,26.88883061,59.41343689,175.7646263,175.4856842,9.733776,0.087970598,1620000000000 ,1620000000000 ,1620000000000 ,1616812372500 -1616812372530 ,112.5730268,26.88882973,59.41341782,175.7901166,175.5157878,9.735418,0.087990308,1620000000000 ,1620000000000 ,1620000000000 ,1616812372510 -1616812372541 ,112.5730268,26.88882885,59.41340256,175.813066,175.5380703,9.734534,0.087985772,1620000000000 ,1620000000000 ,1620000000000 ,1616812372520 -1616812372552 ,112.5730269,26.88882798,59.41340637,175.838529,175.5755758,9.733979,0.087982457,1620000000000 ,1620000000000 ,1620000000000 ,1616812372530 -1616812372560 ,112.573027,26.8888271,59.41341019,175.8649755,175.6096728,9.7318535,0.087960279,1620000000000 ,1620000000000 ,1620000000000 ,1616812372540 -1616812372570 ,112.573027,26.88882622,59.41340637,175.8892909,175.6545648,9.731215,0.087952907,1620000000000 ,1620000000000 ,1620000000000 ,1616812372550 -1616812372580 ,112.5730271,26.88882535,59.41335678,175.9165024,175.6829286,9.730423,0.087943152,1620000000000 ,1620000000000 ,1620000000000 ,1616812372560 -1616812372591 ,112.5730272,26.88882447,59.4132309,175.9419654,175.7101658,9.73229,0.087949073,1620000000000 ,1620000000000 ,1620000000000 ,1616812372570 -1616812372602 ,112.5730272,26.88882359,59.41304016,175.9677015,175.7407815,9.731968,0.087945148,1620000000000 ,1620000000000 ,1620000000000 ,1616812372580 -1616812372613 ,112.5730273,26.88882272,59.41282272,175.9931918,175.7794015,9.732289,0.087944776,1620000000000 ,1620000000000 ,1620000000000 ,1616812372590 -1616812372624 ,112.5730274,26.88882184,59.41260147,176.0190372,175.8180731,9.731964,0.087943457,1620000000000 ,1620000000000 ,1620000000000 ,1616812372600 -1616812372630 ,112.5730274,26.88882096,59.4123764,176.0452925,175.8437366,9.730795,0.087929959,1620000000000 ,1620000000000 ,1620000000000 ,1616812372610 -1616812372640 ,112.5730275,26.88882008,59.41217422,176.0689249,175.8741654,9.730101,0.087924606,1620000000000 ,1620000000000 ,1620000000000 ,1616812372620 -1616812372651 ,112.5730276,26.88881921,59.41198349,176.0946611,175.9118613,9.729929,0.087917266,1620000000000 ,1620000000000 ,1620000000000 ,1616812372630 -1616812372661 ,112.5730276,26.88881833,59.4117775,176.1220911,175.9516145,9.730349,0.087917853,1620000000000 ,1620000000000 ,1620000000000 ,1616812372640 -1616812372675 ,112.5730277,26.88881745,59.41158676,176.1490567,175.9830119,9.728828,0.087909217,1620000000000 ,1620000000000 ,1620000000000 ,1616812372650 -1616812372682 ,112.5730277,26.88881658,59.4114151,176.1761862,176.0002967,9.729281,0.087904088,1620000000000 ,1620000000000 ,1620000000000 ,1616812372660 -1616812372695 ,112.5730278,26.8888157,59.41123962,176.2032338,176.0287288,9.729239,0.087905573,1620000000000 ,1620000000000 ,1620000000000 ,1616812372670 -1616812372702 ,112.5730279,26.88881482,59.41100693,176.2290519,176.0481905,9.730651,0.087911988,1620000000000 ,1620000000000 ,1620000000000 ,1616812372680 -1616812372713 ,112.5730279,26.88881395,59.41069412,176.2565092,176.0831156,9.7304125,0.087908743,1620000000000 ,1620000000000 ,1620000000000 ,1616812372690 -1616812372722 ,112.573028,26.88881307,59.41033554,176.2822454,176.130921,9.731072,0.087905598,1620000000000 ,1620000000000 ,1620000000000 ,1616812372700 -1616812372733 ,112.573028,26.88881219,59.41001129,176.3080908,176.1610778,9.729022,0.087896588,1620000000000 ,1620000000000 ,1620000000000 ,1616812372710 -1616812372741 ,112.5730281,26.88881131,59.40977478,176.3339909,176.1645582,9.728507,0.087886428,1620000000000 ,1620000000000 ,1620000000000 ,1616812372720 -1616812372752 ,112.5730282,26.88881044,59.40963745,176.3595358,176.1875329,9.727319,0.087880753,1620000000000 ,1620000000000 ,1620000000000 ,1616812372730 -1616812372762 ,112.5730282,26.88880956,59.40955353,176.3860369,176.2397524,9.72824,0.087884036,1620000000000 ,1620000000000 ,1620000000000 ,1616812372740 -1616812372773 ,112.5730283,26.88880868,59.40953064,176.4114179,176.2883166,9.727728,0.087884672,1620000000000 ,1620000000000 ,1620000000000 ,1616812372750 -1616812372783 ,112.5730283,26.88880781,59.40961075,176.4348865,176.308732,9.725107,0.087864826,1620000000000 ,1620000000000 ,1620000000000 ,1616812372760 -1616812372793 ,112.5730284,26.88880693,59.40987396,176.4585189,176.3321804,9.723772,0.087856332,1620000000000 ,1620000000000 ,1620000000000 ,1616812372770 -1616812372803 ,112.5730284,26.88880605,59.41027832,176.4841731,176.3489493,9.722454,0.087848389,1620000000000 ,1620000000000 ,1620000000000 ,1616812372780 -1616812372812 ,112.5730285,26.88880518,59.41074753,176.5107289,176.3814208,9.722026,0.087839424,1620000000000 ,1620000000000 ,1620000000000 ,1616812372790 -1616812372823 ,112.5730285,26.8888043,59.4112854,176.5375852,176.4090051,9.7212305,0.087837393,1620000000000 ,1620000000000 ,1620000000000 ,1616812372800 -1616812372833 ,112.5730286,26.88880342,59.41193008,176.5630481,176.4266891,9.718111,0.087817944,1620000000000 ,1620000000000 ,1620000000000 ,1616812372820 -1616812372842 ,112.5730287,26.88880255,59.4127121,176.5895493,176.4503934,9.717452,0.08780961,1620000000000 ,1620000000000 ,1620000000000 ,1616812372830 -1616812372853 ,112.5730287,26.88880167,59.41357803,176.6165968,176.4701754,9.716149,0.087801511,1620000000000 ,1620000000000 ,1620000000000 ,1616812372840 -1616812372863 ,112.5730288,26.88880079,59.41448593,176.6449558,176.5015649,9.715993,0.087798278,1620000000000 ,1620000000000 ,1620000000000 ,1616812372850 -1616812372873 ,112.5730288,26.88879992,59.41545868,176.6714022,176.5383115,9.715682,0.087800092,1620000000000 ,1620000000000 ,1620000000000 ,1616812372860 -1616812372883 ,112.5730289,26.88879817,59.4176445,176.726317,176.5649205,9.712436,0.175565365,1620000000000 ,1620000000000 ,1620000000000 ,1616812372870 -1616812372893 ,112.5730289,26.88879817,59.4176445,176.726317,-400,9.712436,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812372880 -1616812372907 ,112.573029,26.88879729,59.4188385,176.7520804,176.6174358,9.711518,0.087772396,1620000000000 ,1620000000000 ,1620000000000 ,1616812372880 -1616812372915 ,112.5730291,26.88879554,59.42129898,176.805957,176.6825671,9.7084055,0.175512327,1620000000000 ,1620000000000 ,1620000000000 ,1616812372900 -1616812372924 ,112.5730291,26.88879466,59.42255783,176.8334417,176.7198072,9.706415,0.087734371,1620000000000 ,1620000000000 ,1620000000000 ,1616812372910 -1616812372934 ,112.5730292,26.88879379,59.4238205,176.8610629,176.7427637,9.707143,0.087734821,1620000000000 ,1620000000000 ,1620000000000 ,1616812372920 -1616812372944 ,112.5730292,26.88879291,59.42503357,176.8905147,176.7743952,9.707096,0.087738997,1620000000000 ,1620000000000 ,1620000000000 ,1616812372930 -1616812372954 ,112.5730293,26.88879203,59.42615891,176.9186005,176.819279,9.707503,0.087737187,1620000000000 ,1620000000000 ,1620000000000 ,1616812372940 -1616812372964 ,112.5730293,26.88879116,59.42721558,176.9437355,176.8530318,9.706785,0.087732507,1620000000000 ,1620000000000 ,1620000000000 ,1616812372950 -1616812372975 ,112.5730294,26.88879028,59.42822647,176.9697449,176.8642562,9.706579,0.087729653,1620000000000 ,1620000000000 ,1620000000000 ,1616812372960 -1616812372985 ,112.5730294,26.88878941,59.42918777,176.9954811,176.8931972,9.707191,0.087729249,1620000000000 ,1620000000000 ,1620000000000 ,1616812372970 -1616812372994 ,112.5730295,26.88878853,59.43006897,177.0243864,176.9190161,9.7073,0.087731586,1620000000000 ,1620000000000 ,1620000000000 ,1616812372980 -1616812373004 ,112.5730295,26.88878853,59.43006897,177.0243864,-400,9.7073,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812372980 -1616812373014 ,112.5730296,26.88878678,59.43164825,177.0772521,176.9714039,9.706274,0.17544069,1620000000000 ,1620000000000 ,1620000000000 ,1616812373000 -1616812373024 ,112.5730296,26.8887859,59.43237305,177.1052012,177.0094988,9.706226,0.087717211,1620000000000 ,1620000000000 ,1620000000000 ,1616812373010 -1616812373036 ,112.5730296,26.88878503,59.43303299,177.1337787,177.04652,9.706812,0.08772129,1620000000000 ,1620000000000 ,1620000000000 ,1616812373020 -1616812373045 ,112.5730297,26.88878415,59.43361664,177.1613181,177.0792186,9.706619,0.087717522,1620000000000 ,1620000000000 ,1620000000000 ,1616812373030 -1616812373055 ,112.5730297,26.88878327,59.43417358,177.1877919,177.1124655,9.704847,0.08770188,1620000000000 ,1620000000000 ,1620000000000 ,1616812373040 -1616812373064 ,112.5730298,26.8887824,59.4346962,177.2139105,177.1297114,9.704585,0.087697609,1620000000000 ,1620000000000 ,1620000000000 ,1616812373050 -1616812373074 ,112.5730298,26.88878152,59.43515778,177.2397013,177.1670842,9.704822,0.08769256,1620000000000 ,1620000000000 ,1620000000000 ,1616812373060 -1616812373084 ,112.5730299,26.88878065,59.43555069,177.2670221,177.1970249,9.705453,0.087697108,1620000000000 ,1620000000000 ,1620000000000 ,1616812373070 -1616812373095 ,112.5730299,26.88877977,59.43587494,177.2918566,177.2259178,9.704558,0.087689406,1620000000000 ,1620000000000 ,1620000000000 ,1616812373080 -1616812373106 ,112.57303,26.88877889,59.43616486,177.3179753,177.2617209,9.703201,0.087678706,1620000000000 ,1620000000000 ,1620000000000 ,1616812373090 -1616812373118 ,112.57303,26.88877802,59.43639755,177.3443398,177.2854863,9.703408,0.087671522,1620000000000 ,1620000000000 ,1620000000000 ,1616812373100 -1616812373127 ,112.57303,26.88877714,59.4365654,177.3700213,177.3152775,9.702959,0.087666033,1620000000000 ,1620000000000 ,1620000000000 ,1616812373110 -1616812373136 ,112.5730301,26.88877627,59.43666458,177.3964678,177.3499385,9.704014,0.087668819,1620000000000 ,1620000000000 ,1620000000000 ,1616812373120 -1616812373146 ,112.5730301,26.88877539,59.43669128,177.4214117,177.3774811,9.703551,0.087667117,1620000000000 ,1620000000000 ,1620000000000 ,1616812373130 -1616812373158 ,112.5730302,26.88877452,59.43665695,177.4472298,177.4068982,9.703856,0.087661701,1620000000000 ,1620000000000 ,1620000000000 ,1616812373140 -1616812373168 ,112.5730302,26.88877364,59.43657303,177.4747418,177.4360943,9.704132,0.087661276,1620000000000 ,1620000000000 ,1620000000000 ,1616812373150 -1616812373177 ,112.5730302,26.88877276,59.4364624,177.4997129,177.4729823,9.703442,0.08765394,1620000000000 ,1620000000000 ,1620000000000 ,1616812373160 -1616812373187 ,112.5730303,26.88877189,59.43634415,177.5240557,177.5021786,9.703164,0.087651743,1620000000000 ,1620000000000 ,1620000000000 ,1616812373170 -1616812373196 ,112.5730303,26.88877101,59.43621826,177.5500378,177.5345721,9.702548,0.087648312,1620000000000 ,1620000000000 ,1620000000000 ,1616812373180 -1616812373206 ,112.5730303,26.88877014,59.43611908,177.5752002,177.5597983,9.701001,0.087634739,1620000000000 ,1620000000000 ,1620000000000 ,1616812373190 -1616812373217 ,112.5730304,26.88876926,59.43578339,177.6026576,177.6887339,9.6803875,0.087419229,1620000000000 ,1620000000000 ,1620000000000 ,1616812373200 -1616812373227 ,112.5730304,26.88876839,59.43501282,177.627137,177.8486598,9.681943,0.087048381,1620000000000 ,1620000000000 ,1620000000000 ,1616812373210 -1616812373237 ,112.5730304,26.88876752,59.4342308,177.6515071,177.8780843,9.683573,0.087063763,1620000000000 ,1620000000000 ,1620000000000 ,1616812373220 -1616812373247 ,112.5730305,26.88876665,59.43347168,177.6761504,177.9147808,9.684916,0.087071406,1620000000000 ,1620000000000 ,1620000000000 ,1616812373230 -1616812373258 ,112.5730305,26.88876578,59.43274689,177.6993184,177.9375546,9.681937,0.087060626,1620000000000 ,1620000000000 ,1620000000000 ,1616812373240 -1616812373268 ,112.5730305,26.88876491,59.43208313,177.7215029,177.9576677,9.6787,0.087032038,1620000000000 ,1620000000000 ,1620000000000 ,1616812373250 -1616812373277 ,112.5730306,26.88876404,59.43148041,177.7464194,177.9982866,9.678982,0.087025261,1620000000000 ,1620000000000 ,1620000000000 ,1616812373260 -1616812373287 ,112.5730306,26.88876317,59.43087769,177.7695874,178.0270722,9.681043,0.087040782,1620000000000 ,1620000000000 ,1620000000000 ,1616812373270 -1616812373296 ,112.5730306,26.8887623,59.43027496,177.7930832,178.0579705,9.681468,0.087047961,1620000000000 ,1620000000000 ,1620000000000 ,1616812373280 -1616812373308 ,112.5730307,26.88876143,59.42973328,177.8176992,178.079802,9.679252,0.08703713,1620000000000 ,1620000000000 ,1620000000000 ,1616812373290 -1616812373318 ,112.5730307,26.88876056,59.42930603,177.8390914,178.1007106,9.67646,0.08701745,1620000000000 ,1620000000000 ,1620000000000 ,1616812373300 -1616812373328 ,112.5730307,26.8887597,59.42895508,177.8608934,178.1258159,9.675586,0.087002633,1620000000000 ,1620000000000 ,1620000000000 ,1616812373310 -1616812373338 ,112.5730307,26.88875883,59.42863464,177.8826953,178.1614375,9.676254,0.087011491,1620000000000 ,1620000000000 ,1620000000000 ,1616812373320 -1616812373349 ,112.5730308,26.88875796,59.42832184,177.9044426,178.2014136,9.67674,0.087016599,1620000000000 ,1620000000000 ,1620000000000 ,1616812373330 -1616812373358 ,112.5730308,26.88875709,59.42803955,177.9250425,178.2220994,9.675773,0.087009929,1620000000000 ,1620000000000 ,1620000000000 ,1616812373340 -1616812373368 ,112.5730308,26.88875622,59.42781448,177.9449047,178.2369755,9.673226,0.086995763,1620000000000 ,1620000000000 ,1620000000000 ,1616812373350 -1616812373380 ,112.5730309,26.88875535,59.42766571,177.9641385,178.2592837,9.6726,0.086983934,1620000000000 ,1620000000000 ,1620000000000 ,1616812373360 -1616812373391 ,112.5730309,26.88875448,59.42757416,177.9842739,178.2860476,9.672612,0.086986502,1620000000000 ,1620000000000 ,1620000000000 ,1616812373370 -1616812373404 ,112.5730309,26.88875361,59.42754364,178.0034257,178.3162421,9.671759,0.086985236,1620000000000 ,1620000000000 ,1620000000000 ,1616812373380 -1616812373410 ,112.5730309,26.88875274,59.42753601,178.0217306,178.3381452,9.670476,0.086977375,1620000000000 ,1620000000000 ,1620000000000 ,1616812373390 -1616812373421 ,112.573031,26.88875187,59.42755127,178.0425491,178.3502686,9.669384,0.086962923,1620000000000 ,1620000000000 ,1620000000000 ,1616812373400 -1616812373429 ,112.573031,26.888751,59.4275856,178.0621654,178.3573906,9.669425,0.086963046,1620000000000 ,1620000000000 ,1620000000000 ,1616812373410 -1616812373439 ,112.573031,26.88875013,59.42761612,178.0823281,178.378672,9.670912,0.08697954,1620000000000 ,1620000000000 ,1620000000000 ,1616812373420 -1616812373449 ,112.573031,26.88874926,59.42760468,178.1008789,178.4085523,9.67161,0.086981443,1620000000000 ,1620000000000 ,1620000000000 ,1616812373430 -1616812373460 ,112.573031,26.88874839,59.4275589,178.1209596,178.4421451,9.671161,0.08698185,1620000000000 ,1620000000000 ,1620000000000 ,1616812373440 -1616812373472 ,112.5730311,26.88874752,59.42775345,178.1410677,178.3612984,9.669651,0.087167684,1620000000000 ,1620000000000 ,1620000000000 ,1616812373450 -1616812373485 ,112.5730311,26.88874665,59.42818832,178.159236,178.2834055,9.669937,0.087363821,1620000000000 ,1620000000000 ,1620000000000 ,1616812373460 -1616812373491 ,112.5730311,26.88874577,59.42858505,178.1730603,178.3081058,9.66957,0.087360067,1620000000000 ,1620000000000 ,1620000000000 ,1616812373470 -1616812373500 ,112.5730312,26.8887449,59.4289093,178.1909008,178.3417397,9.669596,0.087358459,1620000000000 ,1620000000000 ,1620000000000 ,1616812373480 -1616812373511 ,112.5730312,26.88874403,59.42918015,178.2085227,178.3692672,9.669135,0.087352035,1620000000000 ,1620000000000 ,1620000000000 ,1616812373490 -1616812373520 ,112.5730312,26.88874315,59.42943192,178.2243687,178.3868085,9.669961,0.087357499,1620000000000 ,1620000000000 ,1620000000000 ,1616812373500 -1616812373530 ,112.5730312,26.88874228,59.42965698,178.2430015,178.4038194,9.669462,0.087355804,1620000000000 ,1620000000000 ,1620000000000 ,1616812373510 -1616812373541 ,112.5730312,26.88874141,59.42983246,178.2601042,178.4274896,9.670575,0.087361211,1620000000000 ,1620000000000 ,1620000000000 ,1616812373520 -1616812373554 ,112.5730313,26.88874053,59.42996216,178.2770978,178.4667643,9.6697035,0.087357011,1620000000000 ,1620000000000 ,1620000000000 ,1616812373530 -1616812373560 ,112.5730313,26.88873966,59.4300499,178.2944191,178.4912213,9.669545,0.087350665,1620000000000 ,1620000000000 ,1620000000000 ,1616812373540 -1616812373570 ,112.5730313,26.88873879,59.43008041,178.3101286,178.512345,9.6684265,0.087336437,1620000000000 ,1620000000000 ,1620000000000 ,1616812373550 -1616812373580 ,112.5730313,26.88873792,59.43004227,178.3260566,178.5231297,9.668775,0.087339256,1620000000000 ,1620000000000 ,1620000000000 ,1616812373560 -1616812373590 ,112.5730314,26.88873704,59.42991257,178.342449,178.5454348,9.669632,0.087338482,1620000000000 ,1620000000000 ,1620000000000 ,1616812373570 -1616812373601 ,112.5730314,26.88873617,59.42972565,178.3575574,178.5732268,9.670603,0.087345963,1620000000000 ,1620000000000 ,1620000000000 ,1616812373580 -1616812373611 ,112.5730314,26.8887353,59.4295311,178.3729117,178.6038567,9.670557,0.08734925,1620000000000 ,1620000000000 ,1620000000000 ,1616812373590 -1616812373621 ,112.5730314,26.88873442,59.42937088,178.3885391,178.6173958,9.670996,0.087349979,1620000000000 ,1620000000000 ,1620000000000 ,1616812373600 -1616812373631 ,112.5730314,26.88873355,59.42922974,178.4056419,178.6318038,9.670544,0.087348221,1620000000000 ,1620000000000 ,1620000000000 ,1616812373610 -1616812373641 ,112.5730315,26.88873268,59.42908478,178.4233731,178.6537038,9.669293,0.087337902,1620000000000 ,1620000000000 ,1620000000000 ,1616812373620 -1616812373651 ,112.5730315,26.8887318,59.42893219,178.4396289,178.6582467,9.6691265,0.087334901,1620000000000 ,1620000000000 ,1620000000000 ,1616812373630 -1616812373662 ,112.5730315,26.88873093,59.4287796,178.4557209,178.6648466,9.668881,0.08733126,1620000000000 ,1620000000000 ,1620000000000 ,1616812373640 -1616812373672 ,112.5730315,26.88873006,59.42865753,178.4708566,178.6749618,9.668986,0.087332267,1620000000000 ,1620000000000 ,1620000000000 ,1616812373650 -1616812373683 ,112.5730315,26.88872918,59.42854691,178.4870578,178.6951307,9.667048,0.087320352,1620000000000 ,1620000000000 ,1620000000000 ,1616812373660 -1616812373692 ,112.5730316,26.88872831,59.42845154,178.5053627,178.7202119,9.663655,0.087291803,1620000000000 ,1620000000000 ,1620000000000 ,1616812373670 -1616812373702 ,112.5730316,26.88872744,59.42837524,178.5214819,178.7287701,9.66121,0.087269182,1620000000000 ,1620000000000 ,1620000000000 ,1616812373680 -1616812373712 ,112.5730316,26.88872657,59.42830276,178.5381203,178.7315242,9.661396,0.087263927,1620000000000 ,1620000000000 ,1620000000000 ,1616812373690 -1616812373722 ,112.5730316,26.88872569,59.42819214,178.5542942,178.7491934,9.662507,0.087265507,1620000000000 ,1620000000000 ,1620000000000 ,1616812373700 -1616812373733 ,112.5730316,26.88872482,59.42801285,178.57055,178.7704437,9.666746,0.087297897,1620000000000 ,1620000000000 ,1620000000000 ,1616812373710 -1616812373742 ,112.5730317,26.88872395,59.42780304,178.5847568,178.7973683,9.670007,0.087330739,1620000000000 ,1620000000000 ,1620000000000 ,1616812373720 -1616812373753 ,112.5730317,26.88872307,59.42761993,178.5993734,178.8133376,9.670819,0.087337831,1620000000000 ,1620000000000 ,1620000000000 ,1616812373730 -1616812373762 ,112.5730317,26.8887222,59.42747879,178.6110667,178.8211669,9.67006,0.087340205,1620000000000 ,1620000000000 ,1620000000000 ,1616812373750 -1616812373772 ,112.5730317,26.88872133,59.42737961,178.6243992,178.8391222,9.666473,0.087313367,1620000000000 ,1620000000000 ,1620000000000 ,1616812373760 -1616812373782 ,112.5730317,26.88872046,59.42728424,178.6372673,178.8629436,9.66585,0.087298817,1620000000000 ,1620000000000 ,1620000000000 ,1616812373770 -1616812373798 ,112.5730318,26.88871958,59.4271965,178.6504632,178.8917683,9.665193,0.087293835,1620000000000 ,1620000000000 ,1620000000000 ,1616812373780 -1616812373815 ,112.5730318,26.88871871,59.42713928,178.6626756,178.9073134,9.66645,0.087300016,1620000000000 ,1620000000000 ,1620000000000 ,1616812373780 -1616812373819 ,112.5730318,26.88871784,59.42712021,178.6743416,178.9282163,9.6696,0.087326678,1620000000000 ,1620000000000 ,1620000000000 ,1616812373800 -1616812373825 ,112.5730318,26.88871696,59.42711258,178.6846415,178.9598913,9.671474,0.087346416,1620000000000 ,1620000000000 ,1620000000000 ,1616812373810 -1616812373834 ,112.5730318,26.88871522,59.42716599,178.6987936,179.0149914,9.672434,0.174720181,1620000000000 ,1620000000000 ,1620000000000 ,1616812373820 -1616812373843 ,112.5730318,26.88871434,59.42731857,178.7058424,179.0565888,9.671247,0.087356741,1620000000000 ,1620000000000 ,1620000000000 ,1616812373830 -1616812373854 ,112.5730319,26.88871347,59.42754364,178.7107875,179.078349,9.669801,0.087345448,1620000000000 ,1620000000000 ,1620000000000 ,1616812373840 -1616812373864 ,112.5730319,26.8887126,59.42781067,178.7186558,179.0970291,9.6686735,0.087336016,1620000000000 ,1620000000000 ,1620000000000 ,1616812373850 -1616812373874 ,112.5730319,26.88871172,59.4280777,178.7261144,179.1108951,9.668735,0.087335132,1620000000000 ,1620000000000 ,1620000000000 ,1616812373860 -1616812373886 ,112.5730319,26.88871085,59.42829514,178.7319884,179.1239727,9.671455,0.087350707,1620000000000 ,1620000000000 ,1620000000000 ,1616812373870 -1616812373894 ,112.5730319,26.88870998,59.42844009,178.7394196,179.1509241,9.673942,0.087369651,1620000000000 ,1620000000000 ,1620000000000 ,1616812373880 -1616812373904 ,112.5730319,26.88870998,59.42844009,178.7394196,-400,9.673942,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812373890 -1616812373915 ,112.5730319,26.88870823,59.42857361,178.750102,179.1700166,9.676161,0.174783429,1620000000000 ,1620000000000 ,1620000000000 ,1616812373900 -1616812373926 ,112.573032,26.88870735,59.42861938,178.7548285,179.172216,9.677611,0.087403658,1620000000000 ,1620000000000 ,1620000000000 ,1616812373910 -1616812373936 ,112.573032,26.88870648,59.42866135,178.7599375,179.1680837,9.676407,0.087396283,1620000000000 ,1620000000000 ,1620000000000 ,1616812373920 -1616812373945 ,112.573032,26.88870561,59.42869186,178.7648006,179.1613338,9.677285,0.087401093,1620000000000 ,1620000000000 ,1620000000000 ,1616812373930 -1616812373954 ,112.573032,26.88870473,59.42876434,178.7683796,179.1429825,9.675094,0.087387638,1620000000000 ,1620000000000 ,1620000000000 ,1616812373940 -1616812373965 ,112.573032,26.88870386,59.42893219,178.7716581,179.1358736,9.677433,0.08740084,1620000000000 ,1620000000000 ,1620000000000 ,1616812373950 -1616812373974 ,112.573032,26.88870299,59.429245,178.7777779,179.1333785,9.679067,0.087423857,1620000000000 ,1620000000000 ,1620000000000 ,1616812373960 -1616812373987 ,112.573032,26.88870299,59.429245,178.7862201,-400,9.677701,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812373970 -1616812373995 ,112.573032,26.88870124,59.43021774,178.7949354,179.0991821,9.675488,0.174825443,1620000000000 ,1620000000000 ,1620000000000 ,1616812373980 -1616812374006 ,112.5730321,26.88870036,59.43078995,178.8035961,179.0725948,9.674938,0.087398211,1620000000000 ,1620000000000 ,1620000000000 ,1616812373990 -1616812374016 ,112.5730321,26.88869949,59.43128204,178.8137594,179.0612255,9.679025,0.087419101,1620000000000 ,1620000000000 ,1620000000000 ,1616812374000 -1616812374025 ,112.5730321,26.88869861,59.43162918,178.8228572,179.0663235,9.684175,0.087463817,1620000000000 ,1620000000000 ,1620000000000 ,1616812374010 -1616812374035 ,112.5730321,26.88869774,59.4318428,178.8310261,179.0787194,9.686959,0.087488033,1620000000000 ,1620000000000 ,1620000000000 ,1616812374020 -1616812374045 ,112.5730321,26.88869687,59.43205261,178.8379929,179.0877487,9.686741,0.087495146,1620000000000 ,1620000000000 ,1620000000000 ,1616812374030 -1616812374055 ,112.5730321,26.88869599,59.43235397,178.843621,179.0895146,9.684622,0.087479892,1620000000000 ,1620000000000 ,1620000000000 ,1616812374040 -1616812374070 ,112.5730321,26.88869512,59.43276215,178.8508336,179.0790957,9.685843,0.087487173,1620000000000 ,1620000000000 ,1620000000000 ,1616812374050 -1616812374075 ,112.5730322,26.88869424,59.43318939,178.8589206,179.0910524,9.69063,0.087522346,1620000000000 ,1620000000000 ,1620000000000 ,1616812374060 -1616812374085 ,112.5730322,26.88869337,59.43353271,178.8682643,179.1035054,9.69567,0.087569339,1620000000000 ,1620000000000 ,1620000000000 ,1616812374070 -1616812374095 ,112.5730322,26.88869249,59.43375015,178.8756136,179.115835,9.699499,0.087599712,1620000000000 ,1620000000000 ,1620000000000 ,1616812374080 -1616812374107 ,112.5730322,26.88869161,59.43390656,178.88187,179.1152402,9.700612,0.087615738,1620000000000 ,1620000000000 ,1620000000000 ,1616812374090 -1616812374117 ,112.5730322,26.88869074,59.43405533,178.8885363,179.1203584,9.702225,0.087628413,1620000000000 ,1620000000000 ,1620000000000 ,1616812374100 -1616812374130 ,112.5730322,26.88868986,59.43420792,178.895066,179.14448,9.704526,0.087648139,1620000000000 ,1620000000000 ,1620000000000 ,1616812374110 -1616812374144 ,112.5730322,26.88868898,59.43434525,178.9011038,179.1665805,9.706769,0.087663843,1620000000000 ,1620000000000 ,1620000000000 ,1616812374120 -1616812374149 ,112.5730322,26.88868811,59.4344902,178.9071144,179.1931747,9.709495,0.087693509,1620000000000 ,1620000000000 ,1620000000000 ,1616812374130 -1616812374156 ,112.5730323,26.88868723,59.43465424,178.9119775,179.1948566,9.711636,0.087713361,1620000000000 ,1620000000000 ,1620000000000 ,1616812374140 -1616812374166 ,112.5730323,26.88868635,59.43481064,178.9182066,179.2049033,9.714694,0.087734758,1620000000000 ,1620000000000 ,1620000000000 ,1616812374150 -1616812374177 ,112.5730323,26.88868548,59.43496323,178.9228238,179.2159989,9.718163,0.087769305,1620000000000 ,1620000000000 ,1620000000000 ,1616812374160 -1616812374187 ,112.5730323,26.8886846,59.435112,178.9276323,179.2326449,9.7187805,0.087783629,1620000000000 ,1620000000000 ,1620000000000 ,1616812374170 -1616812374197 ,112.5730323,26.88868372,59.43530655,178.9302278,179.2534486,9.721102,0.087799454,1620000000000 ,1620000000000 ,1620000000000 ,1616812374180 -1616812374207 ,112.5730323,26.88868284,59.43554688,178.9336702,179.2592018,9.72396,0.087826851,1620000000000 ,1620000000000 ,1620000000000 ,1616812374190 -1616812374218 ,112.5730323,26.88868196,59.43615723,178.9352001,179.4484892,9.7327175,0.087955542,1620000000000 ,1620000000000 ,1620000000000 ,1616812374200 -1616812374228 ,112.5730323,26.88868108,59.43722534,178.9394349,179.756556,9.735635,0.088153783,1620000000000 ,1620000000000 ,1620000000000 ,1616812374210 -1616812374239 ,112.5730323,26.8886802,59.43831635,178.9439155,179.7646295,9.737061,0.088171061,1620000000000 ,1620000000000 ,1620000000000 ,1616812374220 -1616812374250 ,112.5730323,26.88867932,59.43943787,178.9511281,179.7703043,9.739163,0.088187774,1620000000000 ,1620000000000 ,1620000000000 ,1616812374230 -1616812374259 ,112.5730323,26.88867843,59.44054413,178.9565103,179.771179,9.740998,0.088202476,1620000000000 ,1620000000000 ,1620000000000 ,1616812374240 -1616812374269 ,112.5730323,26.88867755,59.44161224,178.9604992,179.7807922,9.745358,0.088239125,1620000000000 ,1620000000000 ,1620000000000 ,1616812374250 -1616812374277 ,112.5730323,26.88867667,59.44261932,178.9648158,179.7846095,9.748698,0.088268542,1620000000000 ,1620000000000 ,1620000000000 ,1616812374260 -1616812374288 ,112.5730324,26.88867579,59.443573,178.9673294,179.7918381,9.752398,0.088297655,1620000000000 ,1620000000000 ,1620000000000 ,1616812374270 -1616812374302 ,112.5730324,26.8886749,59.4445343,178.9685315,179.7944156,9.7554865,0.088328999,1620000000000 ,1620000000000 ,1620000000000 ,1616812374280 -1616812374310 ,112.5730324,26.88867402,59.44550323,178.9723291,179.7963581,9.757468,0.088349091,1620000000000 ,1620000000000 ,1620000000000 ,1616812374290 -1616812374320 ,112.5730324,26.88867314,59.44649506,178.9767823,179.7948313,9.759268,0.08836943,1620000000000 ,1620000000000 ,1620000000000 ,1616812374300 -1616812374329 ,112.5730324,26.88867225,59.44747162,178.9816728,179.785219,9.761493,0.088387859,1620000000000 ,1620000000000 ,1620000000000 ,1616812374310 -1616812374339 ,112.5730324,26.88867137,59.44839096,178.9861807,179.7794929,9.765837,0.088415586,1620000000000 ,1620000000000 ,1620000000000 ,1616812374320 -1616812374348 ,112.5730324,26.88867048,59.44919205,178.9894592,179.7714212,9.770156,0.088451232,1620000000000 ,1620000000000 ,1620000000000 ,1616812374330 -1616812374359 ,112.5730324,26.8886696,59.44989014,178.9933114,179.7814418,9.774358,0.088489471,1620000000000 ,1620000000000 ,1620000000000 ,1616812374340 -1616812374369 ,112.5730324,26.88866871,59.45054245,178.9962074,179.7935612,9.7779045,0.088520344,1620000000000 ,1620000000000 ,1620000000000 ,1616812374350 -1616812374379 ,112.5730324,26.88866783,59.45118332,178.9990214,179.7934613,9.779632,0.088537437,1620000000000 ,1620000000000 ,1620000000000 ,1616812374360 -1616812374390 ,112.5730324,26.88866694,59.45186615,179.0016442,179.7953717,9.779847,0.088548301,1620000000000 ,1620000000000 ,1620000000000 ,1616812374370 -1616812374399 ,112.5730324,26.88866606,59.45258713,179.0047315,179.7976321,9.78297,0.08857253,1620000000000 ,1620000000000 ,1620000000000 ,1616812374380 -1616812374412 ,112.5730324,26.88866517,59.45327377,179.0091028,179.8070244,9.787516,0.088601231,1620000000000 ,1620000000000 ,1620000000000 ,1616812374390 -1616812374429 ,112.5730324,26.88866428,59.45389938,179.0119988,179.8196311,9.792666,0.088647806,1620000000000 ,1620000000000 ,1620000000000 ,1616812374400 -1616812374437 ,112.5730324,26.8886634,59.4544754,179.0138293,179.8317067,9.794725,0.088674981,1620000000000 ,1620000000000 ,1620000000000 ,1616812374410 -1616812374441 ,112.5730324,26.88866251,59.45508957,179.0125452,179.8379925,9.798502,0.088705473,1620000000000 ,1620000000000 ,1620000000000 ,1616812374420 -1616812374451 ,112.5730324,26.88866162,59.4557457,179.0135288,179.8376835,9.801472,0.088729767,1620000000000 ,1620000000000 ,1620000000000 ,1616812374430 -1616812374459 ,112.5730324,26.88866074,59.45641708,179.0140205,179.8458639,9.802268,0.088751727,1620000000000 ,1620000000000 ,1620000000000 ,1616812374440 -1616812374470 ,112.5730324,26.88865985,59.4567337,179.0170805,179.695714,9.805358,0.088658631,1620000000000 ,1620000000000 ,1620000000000 ,1616812374450 -1616812374480 ,112.5730324,26.88865896,59.45676041,179.0176815,179.5105845,9.808173,0.088585082,1620000000000 ,1620000000000 ,1620000000000 ,1616812374460 -1616812374491 ,112.5730324,26.88865808,59.45684052,179.0186651,179.5056123,9.808096,0.088584205,1620000000000 ,1620000000000 ,1620000000000 ,1616812374470 -1616812374501 ,112.5730324,26.88865719,59.45695114,179.018064,179.5164291,9.811524,0.088612285,1620000000000 ,1620000000000 ,1620000000000 ,1616812374480 -1616812374513 ,112.5730324,26.88865631,59.45703506,179.0166706,179.5421702,9.8126545,0.088625666,1620000000000 ,1620000000000 ,1620000000000 ,1616812374490 -1616812374521 ,112.5730324,26.88865542,59.4570961,179.0172444,179.5764684,9.818236,0.088667095,1620000000000 ,1620000000000 ,1620000000000 ,1616812374500 -1616812374530 ,112.5730325,26.88865453,59.45714569,179.017299,179.5580462,9.824333,0.088718718,1620000000000 ,1620000000000 ,1620000000000 ,1616812374510 -1616812374542 ,112.5730325,26.88865364,59.4572258,179.0170258,179.5305294,9.826732,0.088750337,1620000000000 ,1620000000000 ,1620000000000 ,1616812374520 -1616812374554 ,112.5730325,26.88865276,59.45740128,179.0196759,179.5258052,9.825765,0.08875184,1620000000000 ,1620000000000 ,1620000000000 ,1616812374530 -1616812374563 ,112.5730325,26.88865187,59.45761871,179.0211512,179.5278847,9.827194,0.088759534,1620000000000 ,1620000000000 ,1620000000000 ,1616812374540 -1616812374572 ,112.5730325,26.88865098,59.45783234,179.023856,179.5399011,9.829524,0.088775436,1620000000000 ,1620000000000 ,1620000000000 ,1616812374550 -1616812374581 ,112.5730325,26.88865009,59.45800781,179.0271618,179.551094,9.834644,0.088815211,1620000000000 ,1620000000000 ,1620000000000 ,1616812374560 -1616812374591 ,112.5730325,26.8886492,59.45818329,179.0264515,179.5519575,9.837223,0.088849365,1620000000000 ,1620000000000 ,1620000000000 ,1616812374570 -1616812374601 ,112.5730325,26.88864832,59.45833206,179.0282546,179.5461875,9.840076,0.088867279,1620000000000 ,1620000000000 ,1620000000000 ,1616812374580 -1616812374611 ,112.5730325,26.88864743,59.4584465,179.0261236,179.5632642,9.843282,0.088898157,1620000000000 ,1620000000000 ,1620000000000 ,1616812374590 -1616812374621 ,112.5730325,26.88864654,59.45854568,179.0270799,179.5745944,9.845858,0.08892307,1620000000000 ,1620000000000 ,1620000000000 ,1616812374600 -1616812374631 ,112.5730325,26.88864565,59.45863724,179.0261236,179.5769923,9.851436,0.088963624,1620000000000 ,1620000000000 ,1620000000000 ,1616812374610 -1616812374641 ,112.5730325,26.88864476,59.45872498,179.024539,179.5682749,9.85382,0.088994647,1620000000000 ,1620000000000 ,1620000000000 ,1616812374620 -1616812374651 ,112.5730325,26.88864387,59.45877838,179.0236648,179.5566193,9.856961,0.089020299,1620000000000 ,1620000000000 ,1620000000000 ,1616812374630 -1616812374662 ,112.5730325,26.88864298,59.45882797,179.0212332,179.5401353,9.857781,0.089030804,1620000000000 ,1620000000000 ,1620000000000 ,1616812374640 -1616812374672 ,112.5730325,26.88864209,59.45890045,179.0199218,179.5480374,9.861499,0.089052476,1620000000000 ,1620000000000 ,1620000000000 ,1616812374650 -1616812374685 ,112.5730326,26.8886412,59.45899963,179.0176269,179.5396906,9.864148,0.089083651,1620000000000 ,1620000000000 ,1620000000000 ,1616812374660 -1616812374692 ,112.5730326,26.88864031,59.45911407,179.0181186,179.532208,9.866964,0.089109337,1620000000000 ,1620000000000 ,1620000000000 ,1616812374670 -1616812374702 ,112.5730326,26.88863941,59.45928574,179.016698,179.5278969,9.868929,0.089131077,1620000000000 ,1620000000000 ,1620000000000 ,1616812374680 -1616812374714 ,112.5730326,26.88863852,59.45949173,179.0151407,179.5067188,9.872699,0.08915727,1620000000000 ,1620000000000 ,1620000000000 ,1616812374690 -1616812374722 ,112.5730326,26.88863763,59.45972824,179.0108786,179.5104175,9.876433,0.089192349,1620000000000 ,1620000000000 ,1620000000000 ,1616812374700 -1616812374732 ,112.5730326,26.88863674,59.45996857,179.0074635,179.5105424,9.880067,0.08923041,1620000000000 ,1620000000000 ,1620000000000 ,1616812374720 -1616812374743 ,112.5730326,26.88863585,59.46022034,179.0024092,179.5116386,9.883347,0.089259634,1620000000000 ,1620000000000 ,1620000000000 ,1616812374730 -1616812374753 ,112.5730326,26.88863495,59.4605484,178.9985297,179.5099421,9.882822,0.089266657,1620000000000 ,1620000000000 ,1620000000000 ,1616812374740 -1616812374762 ,112.5730326,26.88863406,59.46092224,178.994131,179.5002429,9.8831415,0.089267762,1620000000000 ,1620000000000 ,1620000000000 ,1616812374750 -1616812374772 ,112.5730326,26.88863317,59.46134567,178.9920546,179.5001976,9.885026,0.089282156,1620000000000 ,1620000000000 ,1620000000000 ,1616812374760 -1616812374783 ,112.5730326,26.88863227,59.46182251,178.9876833,179.5124178,9.886948,0.08930358,1620000000000 ,1620000000000 ,1620000000000 ,1616812374770 -1616812374793 ,112.5730326,26.88863138,59.46237564,178.9823285,179.5038729,9.888913,0.089326453,1620000000000 ,1620000000000 ,1620000000000 ,1616812374780 -1616812374804 ,112.5730326,26.88863049,59.46297836,178.9784216,179.5091019,9.890304,0.089344265,1620000000000 ,1620000000000 ,1620000000000 ,1616812374790 -1616812374814 ,112.5730327,26.8886287,59.46418381,178.9627941,179.5149605,9.895077,0.178737995,1620000000000 ,1620000000000 ,1620000000000 ,1616812374800 -1616812374823 ,112.5730327,26.88862781,59.4647522,178.9567016,179.5247816,9.899337,0.089420799,1620000000000 ,1620000000000 ,1620000000000 ,1616812374810 -1616812374834 ,112.5730327,26.88862691,59.46528244,178.9469754,179.5362187,9.901136,0.089442769,1620000000000 ,1620000000000 ,1620000000000 ,1616812374820 -1616812374844 ,112.5730327,26.88862602,59.46583557,178.9379869,179.5306453,9.900783,0.089448282,1620000000000 ,1620000000000 ,1620000000000 ,1616812374830 -1616812374856 ,112.5730327,26.88862512,59.46646881,178.9303644,179.5249974,9.898425,0.08943451,1620000000000 ,1620000000000 ,1620000000000 ,1616812374840 -1616812374865 ,112.5730327,26.88862423,59.4671669,178.9227692,179.514532,9.900437,0.089442244,1620000000000 ,1620000000000 ,1620000000000 ,1616812374850 -1616812374875 ,112.5730327,26.88862333,59.46782303,178.9174963,179.4988504,9.9035015,0.089471399,1620000000000 ,1620000000000 ,1620000000000 ,1616812374860 -1616812374884 ,112.5730327,26.88862244,59.4683876,178.9089722,179.4989875,9.905404,0.089492148,1620000000000 ,1620000000000 ,1620000000000 ,1616812374870 -1616812374895 ,112.5730327,26.88862154,59.46886444,178.8983171,179.4828577,9.907883,0.089508404,1620000000000 ,1620000000000 ,1620000000000 ,1616812374880 -1616812374907 ,112.5730327,26.88862065,59.46931076,178.8870883,179.4704086,9.908165,0.089514567,1620000000000 ,1620000000000 ,1620000000000 ,1616812374890 -1616812374915 ,112.5730327,26.88861975,59.46973801,178.8774441,179.4567187,9.908656,0.08951968,1620000000000 ,1620000000000 ,1620000000000 ,1616812374900 -1616812374925 ,112.5730327,26.88861886,59.47014236,178.8677179,179.4434373,9.91,0.089530419,1620000000000 ,1620000000000 ,1620000000000 ,1616812374910 -1616812374936 ,112.5730328,26.88861796,59.47055054,178.8553689,179.4163545,9.910162,0.089532615,1620000000000 ,1620000000000 ,1620000000000 ,1616812374920 -1616812374945 ,112.5730328,26.88861707,59.4710083,178.8448504,179.3957154,9.909462,0.089532782,1620000000000 ,1620000000000 ,1620000000000 ,1616812374930 -1616812374955 ,112.5730328,26.88861617,59.47151947,178.8338948,179.366303,9.910741,0.089540964,1620000000000 ,1620000000000 ,1620000000000 ,1616812374940 -1616812374965 ,112.5730328,26.88861528,59.47199249,178.8249063,179.3371324,9.912811,0.089558515,1620000000000 ,1620000000000 ,1620000000000 ,1616812374950 -1616812374975 ,112.5730328,26.88861438,59.47235489,178.8147976,179.319929,9.915772,0.089580284,1620000000000 ,1620000000000 ,1620000000000 ,1616812374960 -1616812374986 ,112.5730328,26.88861349,59.47258377,178.8049075,179.3082998,9.918892,0.089602117,1620000000000 ,1620000000000 ,1620000000000 ,1616812374970 -1616812374996 ,112.5730328,26.88861259,59.47267914,178.7961921,179.2823617,9.920354,0.089614511,1620000000000 ,1620000000000 ,1620000000000 ,1616812374980 -1616812375007 ,112.5730328,26.88861169,59.47265244,178.7858922,179.2729673,9.92141,0.089620699,1620000000000 ,1620000000000 ,1620000000000 ,1616812374990 -1616812375016 ,112.5730328,26.8886108,59.47252274,178.7751825,179.2696788,9.92329,0.089631244,1620000000000 ,1620000000000 ,1620000000000 ,1616812375000 -1616812375026 ,112.5730329,26.8886099,59.47233582,178.7618499,179.2699813,9.925107,0.089642071,1620000000000 ,1620000000000 ,1620000000000 ,1616812375010 -1616812375037 ,112.5730329,26.888609,59.47211456,178.7479437,179.266808,9.925643,0.08964846,1620000000000 ,1620000000000 ,1620000000000 ,1616812375020 -1616812375047 ,112.5730329,26.88860811,59.47181702,178.7348024,179.2646085,9.928567,0.089667785,1620000000000 ,1620000000000 ,1620000000000 ,1616812375030 -1616812375057 ,112.5730329,26.88860721,59.47141266,178.7213059,179.2775998,9.931968,0.089689059,1620000000000 ,1620000000000 ,1620000000000 ,1616812375040 -1616812375068 ,112.5730329,26.88860631,59.47092056,178.703001,179.2803167,9.934336,0.089709486,1620000000000 ,1620000000000 ,1620000000000 ,1616812375050 -1616812375076 ,112.5730329,26.88860542,59.47041321,178.6864447,179.2673468,9.936663,0.08973061,1620000000000 ,1620000000000 ,1620000000000 ,1616812375060 -1616812375086 ,112.5730329,26.88860452,59.46989441,178.6695877,179.2593611,9.938913,0.089749099,1620000000000 ,1620000000000 ,1620000000000 ,1616812375070 -1616812375098 ,112.5730329,26.88860362,59.46932983,178.6538783,179.2459713,9.942016,0.089768553,1620000000000 ,1620000000000 ,1620000000000 ,1616812375080 -1616812375106 ,112.5730329,26.88860272,59.46870804,178.6382782,179.2314507,9.943714,0.089784164,1620000000000 ,1620000000000 ,1620000000000 ,1616812375090 -1616812375117 ,112.573033,26.88860183,59.46805191,178.6209022,179.2157651,9.947125,0.089808777,1620000000000 ,1620000000000 ,1620000000000 ,1616812375100 -1616812375128 ,112.573033,26.88860093,59.46737289,178.6037174,179.1880276,9.9505205,0.089837406,1620000000000 ,1620000000000 ,1620000000000 ,1616812375110 -1616812375141 ,112.573033,26.88860003,59.46665573,178.5860955,179.1663581,9.953327,0.089860984,1620000000000 ,1620000000000 ,1620000000000 ,1616812375120 -1616812375148 ,112.573033,26.88859913,59.46596146,178.5695118,179.1351115,9.954261,0.089873668,1620000000000 ,1620000000000 ,1620000000000 ,1616812375130 -1616812375157 ,112.573033,26.88859823,59.46531677,178.5524363,179.0936278,9.956208,0.089885235,1620000000000 ,1620000000000 ,1620000000000 ,1616812375140 -1616812375167 ,112.573033,26.88859733,59.46476364,178.5349237,179.0593282,9.960173,0.089918152,1620000000000 ,1620000000000 ,1620000000000 ,1616812375150 -1616812375179 ,112.573033,26.88859643,59.4642868,178.5179849,179.0225058,9.963377,0.089949892,1620000000000 ,1620000000000 ,1620000000000 ,1616812375160 -1616812375187 ,112.5730331,26.88859553,59.46389771,178.5023847,178.990662,9.965417,0.089972918,1620000000000 ,1620000000000 ,1620000000000 ,1616812375170 -1616812375198 ,112.5730331,26.88859463,59.46364594,178.4876042,178.9772397,9.966004,0.089982107,1620000000000 ,1620000000000 ,1620000000000 ,1616812375180 -1616812375208 ,112.5730331,26.88859373,59.46354675,178.4713483,178.9475961,9.96639,0.089987935,1620000000000 ,1620000000000 ,1620000000000 ,1616812375190 -1616812375218 ,112.5730331,26.88859284,59.46406174,178.4468143,178.6743275,9.960022,0.089923406,1620000000000 ,1620000000000 ,1620000000000 ,1616812375200 -1616812375229 ,112.5730331,26.88859194,59.46537399,178.4303126,178.2361331,9.963783,0.089813719,1620000000000 ,1620000000000 ,1620000000000 ,1616812375210 -1616812375240 ,112.5730332,26.88859104,59.46675873,178.415696,178.2158843,9.966371,0.089841837,1620000000000 ,1620000000000 ,1620000000000 ,1616812375220 -1616812375253 ,112.5730332,26.88859014,59.46826172,178.4003144,178.2112221,9.968478,0.089863017,1620000000000 ,1620000000000 ,1620000000000 ,1616812375230 -1616812375260 ,112.5730332,26.88858924,59.46992493,178.3847415,178.1879001,9.969179,0.089877175,1620000000000 ,1620000000000 ,1620000000000 ,1616812375240 -1616812375274 ,112.5730333,26.88858835,59.47177505,178.3683491,178.1645431,9.970236,0.089888871,1620000000000 ,1620000000000 ,1620000000000 ,1616812375250 -1616812375281 ,112.5730333,26.88858745,59.47380829,178.3512736,178.1552828,9.972386,0.089909932,1620000000000 ,1620000000000 ,1620000000000 ,1616812375260 -1616812375288 ,112.5730333,26.88858655,59.47597122,178.3361379,178.150648,9.97583,0.08994281,1620000000000 ,1620000000000 ,1620000000000 ,1616812375270 -1616812375299 ,112.5730333,26.88858565,59.47822189,178.3223683,178.1276508,9.977008,0.089963887,1620000000000 ,1620000000000 ,1620000000000 ,1616812375280 -1616812375313 ,112.5730334,26.88858475,59.48057175,178.3057299,178.105941,9.978872,0.089981202,1620000000000 ,1620000000000 ,1620000000000 ,1616812375290 -1616812375319 ,112.5730334,26.88858385,59.48310471,178.2891189,178.084041,9.97929,0.089994984,1620000000000 ,1620000000000 ,1620000000000 ,1616812375300 -1616812375332 ,112.5730334,26.88858295,59.48578644,178.2738739,178.0639261,9.981321,0.090012516,1620000000000 ,1620000000000 ,1620000000000 ,1616812375310 -1616812375339 ,112.5730335,26.88858205,59.48855972,178.2578093,178.070659,9.984469,0.09004565,1620000000000 ,1620000000000 ,1620000000000 ,1616812375320 -1616812375349 ,112.5730335,26.88858115,59.49137497,178.2429741,178.0579702,9.98533,0.09006374,1620000000000 ,1620000000000 ,1620000000000 ,1616812375330 -1616812375358 ,112.5730335,26.88858025,59.49425888,178.226691,178.0325316,9.985755,0.090071558,1620000000000 ,1620000000000 ,1620000000000 ,1616812375340 -1616812375369 ,112.5730336,26.88857935,59.49721909,178.2092876,178.0130773,9.987907,0.090091392,1620000000000 ,1620000000000 ,1620000000000 ,1616812375350 -1616812375379 ,112.5730336,26.88857845,59.50017548,178.1945071,177.9905167,9.991095,0.090119258,1620000000000 ,1620000000000 ,1620000000000 ,1616812375360 -1616812375390 ,112.5730336,26.88857755,59.50310135,178.1789343,177.9851421,9.99454,0.090154947,1620000000000 ,1620000000000 ,1620000000000 ,1616812375370 -1616812375399 ,112.5730336,26.88857665,59.50604248,178.162815,177.9758289,9.996343,0.090178858,1620000000000 ,1620000000000 ,1620000000000 ,1616812375380 -1616812375411 ,112.5730337,26.88857575,59.50904846,178.1459308,177.9495355,9.998792,0.090206671,1620000000000 ,1620000000000 ,1620000000000 ,1616812375390 -1616812375419 ,112.5730337,26.88857484,59.51209259,178.1289919,177.9164096,10.00067,0.090226844,1620000000000 ,1620000000000 ,1620000000000 ,1616812375400 -1616812375430 ,112.5730337,26.88857394,59.51507568,178.1147578,177.90933,10.003099,0.090251073,1620000000000 ,1620000000000 ,1620000000000 ,1616812375410 -1616812375440 ,112.5730338,26.88857304,59.51792145,178.1024088,177.9058663,10.006199,0.090276442,1620000000000 ,1620000000000 ,1620000000000 ,1616812375420 -1616812375451 ,112.5730338,26.88857214,59.52060318,178.088284,177.8953933,10.009227,0.090302714,1620000000000 ,1620000000000 ,1620000000000 ,1616812375430 -1616812375460 ,112.5730338,26.88857123,59.52317429,178.0736128,177.8745843,10.011568,0.09032682,1620000000000 ,1620000000000 ,1620000000000 ,1616812375440 -1616812375471 ,112.5730339,26.88857033,59.52516174,178.0584771,178.0920385,10.014243,0.090420387,1620000000000 ,1620000000000 ,1620000000000 ,1616812375450 -1616812375481 ,112.5730339,26.88856943,59.52654648,178.0418114,178.3240063,10.017866,0.090522621,1620000000000 ,1620000000000 ,1620000000000 ,1616812375460 -1616812375491 ,112.5730339,26.88856852,59.52779388,178.0276046,178.3202888,10.023231,0.09056348,1620000000000 ,1620000000000 ,1620000000000 ,1616812375470 -1616812375500 ,112.573034,26.88856761,59.52894592,178.0113761,178.3086014,10.026673,0.090601326,1620000000000 ,1620000000000 ,1620000000000 ,1616812375480 -1616812375513 ,112.573034,26.88856671,59.53001404,177.996377,178.2772639,10.03111,0.090636168,1620000000000 ,1620000000000 ,1620000000000 ,1616812375490 -1616812375521 ,112.573034,26.8885658,59.53094101,177.9808315,178.2591736,10.034962,0.090668014,1620000000000 ,1620000000000 ,1620000000000 ,1616812375500 -1616812375530 ,112.573034,26.8885649,59.5316925,177.965204,178.239593,10.039696,0.090704429,1620000000000 ,1620000000000 ,1620000000000 ,1616812375510 -1616812375545 ,112.5730341,26.88856399,59.5322876,177.9510518,178.2330623,10.043366,0.090739051,1620000000000 ,1620000000000 ,1620000000000 ,1616812375520 -1616812375552 ,112.5730341,26.88856308,59.53279114,177.9360528,178.2221316,10.048265,0.09077498,1620000000000 ,1620000000000 ,1620000000000 ,1616812375530 -1616812375561 ,112.5730341,26.88856217,59.53321075,177.9202067,178.1933321,10.052449,0.090810952,1620000000000 ,1620000000000 ,1620000000000 ,1616812375540 -1616812375572 ,112.5730342,26.88856127,59.533535,177.9054808,178.1692805,10.056999,0.090847184,1620000000000 ,1620000000000 ,1620000000000 ,1616812375550 -1616812375583 ,112.5730342,26.88856036,59.53372192,177.8929679,178.1510971,10.063298,0.090893444,1620000000000 ,1620000000000 ,1620000000000 ,1616812375560 -1616812375591 ,112.5730342,26.88855945,59.53375626,177.8756466,178.1428878,10.069925,0.090946837,1620000000000 ,1620000000000 ,1620000000000 ,1616812375570 -1616812375601 ,112.5730342,26.88855854,59.53365707,177.8626965,178.1214085,10.076076,0.090999843,1620000000000 ,1620000000000 ,1620000000000 ,1616812375580 -1616812375613 ,112.5730343,26.88855763,59.53347397,177.8458669,178.0989618,10.082076,0.091053889,1620000000000 ,1620000000000 ,1620000000000 ,1616812375590 -1616812375621 ,112.5730343,26.88855672,59.53325272,177.8322612,178.0740863,10.087079,0.091096783,1620000000000 ,1620000000000 ,1620000000000 ,1616812375600 -1616812375635 ,112.5730343,26.88855581,59.53302765,177.8180817,178.0489022,10.090898,0.091135875,1620000000000 ,1620000000000 ,1620000000000 ,1616812375610 -1616812375644 ,112.5730344,26.8885549,59.53279495,177.8047219,178.0303496,10.096412,0.091179424,1620000000000 ,1620000000000 ,1620000000000 ,1616812375620 -1616812375653 ,112.5730344,26.88855398,59.53252792,177.791444,178.0240997,10.102162,0.091227699,1620000000000 ,1620000000000 ,1620000000000 ,1616812375630 -1616812375662 ,112.5730344,26.88855307,59.5322113,177.779177,178.0093023,10.106296,0.091263191,1620000000000 ,1620000000000 ,1620000000000 ,1616812375640 -1616812375674 ,112.5730345,26.88855216,59.53185654,177.7666094,177.9984256,10.111115,0.091308846,1620000000000 ,1620000000000 ,1620000000000 ,1616812375650 -1616812375687 ,112.5730345,26.88855125,59.5315094,177.7525666,177.9783534,10.116869,0.091356437,1620000000000 ,1620000000000 ,1620000000000 ,1616812375660 -1616812375694 ,112.5730345,26.88855033,59.53115845,177.7415836,177.9644697,10.124873,0.091423615,1620000000000 ,1620000000000 ,1620000000000 ,1616812375670 -1616812375704 ,112.5730346,26.88854942,59.53079224,177.7306826,177.9477062,10.129212,0.091466529,1620000000000 ,1620000000000 ,1620000000000 ,1616812375680 -1616812375714 ,112.5730346,26.8885485,59.53046036,177.7188254,177.9454338,10.134214,0.091512741,1620000000000 ,1620000000000 ,1620000000000 ,1616812375690 -1616812375723 ,112.5730346,26.88854759,59.53023148,177.7069136,177.9268262,10.136837,0.091544361,1620000000000 ,1620000000000 ,1620000000000 ,1616812375700 -1616812375735 ,112.5730347,26.88854667,59.53012085,177.6958487,177.9019796,10.139868,0.091570452,1620000000000 ,1620000000000 ,1620000000000 ,1616812375710 -1616812375747 ,112.5730347,26.88854576,59.5300827,177.6863684,177.8949607,10.144178,0.09161098,1620000000000 ,1620000000000 ,1620000000000 ,1616812375720 -1616812375754 ,112.5730347,26.88854484,59.53009796,177.675604,177.892014,10.149685,0.091657371,1620000000000 ,1620000000000 ,1620000000000 ,1616812375740 -1616812375765 ,112.5730348,26.88854393,59.53017426,177.6637468,177.8826684,10.154377,0.091703402,1620000000000 ,1620000000000 ,1620000000000 ,1616812375750 -1616812375777 ,112.5730348,26.88854301,59.53031158,177.6528458,177.8645359,10.160117,0.091752294,1620000000000 ,1620000000000 ,1620000000000 ,1616812375760 -1616812375787 ,112.5730348,26.88854209,59.53050995,177.6435021,177.850445,10.165454,0.091805621,1620000000000 ,1620000000000 ,1620000000000 ,1616812375770 -1616812375795 ,112.5730349,26.88854117,59.53076172,177.6346775,177.8356466,10.170306,0.091851499,1620000000000 ,1620000000000 ,1620000000000 ,1616812375780 -1616812375803 ,112.5730349,26.88854026,59.53109741,177.625607,177.828586,10.174444,0.091892933,1620000000000 ,1620000000000 ,1620000000000 ,1616812375780 -1616812375814 ,112.5730349,26.88853934,59.53153229,177.6167277,177.811259,10.177271,0.091924225,1620000000000 ,1620000000000 ,1620000000000 ,1616812375800 -1616812375824 ,112.573035,26.88853842,59.53203964,177.6082037,177.7946461,10.182098,0.091964888,1620000000000 ,1620000000000 ,1620000000000 ,1616812375810 -1616812375834 ,112.573035,26.88853658,59.53317261,177.5938603,177.7835885,10.192618,0.184077232,1620000000000 ,1620000000000 ,1620000000000 ,1616812375820 -1616812375844 ,112.5730351,26.88853566,59.53381729,177.5860192,177.7669817,10.198402,0.092115661,1620000000000 ,1620000000000 ,1620000000000 ,1616812375830 -1616812375854 ,112.5730351,26.88853474,59.53456497,177.5785607,177.7454694,10.202538,0.092161327,1620000000000 ,1620000000000 ,1620000000000 ,1616812375840 -1616812375865 ,112.5730351,26.88853382,59.53539658,177.5701185,177.7452698,10.208203,0.092209053,1620000000000 ,1620000000000 ,1620000000000 ,1616812375850 -1616812375873 ,112.5730352,26.8885329,59.5362587,177.5629332,177.7296614,10.21363,0.092262521,1620000000000 ,1620000000000 ,1620000000000 ,1616812375860 -1616812375883 ,112.5730352,26.88853197,59.53711319,177.5552014,177.7222704,10.217231,0.092297227,1620000000000 ,1620000000000 ,1620000000000 ,1616812375870 -1616812375894 ,112.5730353,26.88853105,59.53796768,177.5490542,177.7199168,10.221639,0.092337203,1620000000000 ,1620000000000 ,1620000000000 ,1616812375880 -1616812375904 ,112.5730353,26.88853105,59.53796768,177.5490542,-400,10.221639,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812375890 -1616812375915 ,112.5730353,26.8885292,59.53975677,177.5313504,177.6929425,10.230183,0.184793493,1620000000000 ,1620000000000 ,1620000000000 ,1616812375900 -1616812375923 ,112.5730354,26.88852828,59.54069519,177.5253945,177.6760085,10.236693,0.092472471,1620000000000 ,1620000000000 ,1620000000000 ,1616812375910 -1616812375934 ,112.5730354,26.88852736,59.54166031,177.518373,177.6771531,10.242428,0.092527023,1620000000000 ,1620000000000 ,1620000000000 ,1616812375920 -1616812375944 ,112.5730354,26.88852643,59.54261398,177.5114336,177.6714169,10.248761,0.092586161,1620000000000 ,1620000000000 ,1620000000000 ,1616812375930 -1616812375954 ,112.5730355,26.8885255,59.54353333,177.5034832,177.6587907,10.255079,0.092638188,1620000000000 ,1620000000000 ,1620000000000 ,1616812375940 -1616812375964 ,112.5730355,26.88852458,59.54442596,177.4958061,177.6439851,10.260062,0.092684926,1620000000000 ,1620000000000 ,1620000000000 ,1616812375950 -1616812375975 ,112.5730356,26.88852365,59.54526901,177.4891125,177.6354444,10.265786,0.09273508,1620000000000 ,1620000000000 ,1620000000000 ,1616812375960 -1616812375986 ,112.5730356,26.88852272,59.54605103,177.4822823,177.6307612,10.271809,0.092789454,1620000000000 ,1620000000000 ,1620000000000 ,1616812375970 -1616812375995 ,112.5730356,26.8885218,59.54679108,177.4759985,177.622556,10.276505,0.092833178,1620000000000 ,1620000000000 ,1620000000000 ,1616812375980 -1616812376006 ,112.5730356,26.8885218,59.54679108,177.4759985,-400,10.276505,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812375990 -1616812376015 ,112.5730357,26.88851994,59.54822922,177.461218,177.603258,10.287696,0.185810203,1620000000000 ,1620000000000 ,1620000000000 ,1616812376000 -1616812376025 ,112.5730358,26.88851901,59.54885101,177.4537321,177.5954297,10.293194,0.092978349,1620000000000 ,1620000000000 ,1620000000000 ,1616812376010 -1616812376040 ,112.5730358,26.88851808,59.54941177,177.4429677,177.6002621,10.298457,0.093024858,1620000000000 ,1620000000000 ,1620000000000 ,1616812376020 -1616812376048 ,112.5730358,26.88851715,59.54994202,177.4352906,177.5945492,10.306512,0.093090032,1620000000000 ,1620000000000 ,1620000000000 ,1616812376030 -1616812376059 ,112.5730359,26.88851622,59.55043793,177.4289522,177.5828472,10.313832,0.093156139,1620000000000 ,1620000000000 ,1620000000000 ,1616812376040 -1616812376067 ,112.5730359,26.88851529,59.55086136,177.4212204,177.5738768,10.319556,0.093208341,1620000000000 ,1620000000000 ,1620000000000 ,1616812376050 -1616812376076 ,112.5730359,26.88851436,59.55124664,177.4137892,177.5692677,10.324693,0.093259456,1620000000000 ,1620000000000 ,1620000000000 ,1616812376060 -1616812376085 ,112.573036,26.88851343,59.55164337,177.4065492,177.5663182,10.326198,0.093277415,1620000000000 ,1620000000000 ,1620000000000 ,1616812376070 -1616812376095 ,112.573036,26.88851249,59.55210114,177.399036,177.5667826,10.330785,0.093315192,1620000000000 ,1620000000000 ,1620000000000 ,1616812376080 -1616812376108 ,112.5730361,26.88851156,59.55260086,177.3922604,177.5601506,10.33384,0.093347845,1620000000000 ,1620000000000 ,1620000000000 ,1616812376090 -1616812376118 ,112.5730361,26.88851063,59.5531044,177.3857581,177.5585486,10.338908,0.093385442,1620000000000 ,1620000000000 ,1620000000000 ,1616812376100 -1616812376127 ,112.5730361,26.8885097,59.55358124,177.3787913,177.5511387,10.34624,0.093449107,1620000000000 ,1620000000000 ,1620000000000 ,1616812376110 -1616812376138 ,112.5730362,26.88850876,59.55399704,177.3738189,177.5460852,10.353492,0.093512942,1620000000000 ,1620000000000 ,1620000000000 ,1616812376120 -1616812376148 ,112.5730362,26.88850783,59.55439377,177.366415,177.5405558,10.359792,0.093570743,1620000000000 ,1620000000000 ,1620000000000 ,1616812376130 -1616812376158 ,112.5730363,26.88850689,59.55482483,177.3586286,177.5288079,10.363612,0.093614338,1620000000000 ,1620000000000 ,1620000000000 ,1616812376140 -1616812376169 ,112.5730363,26.88850596,59.55535889,177.3535742,177.524566,10.366757,0.093647122,1620000000000 ,1620000000000 ,1620000000000 ,1616812376150 -1616812376179 ,112.5730363,26.88850502,59.55595398,177.3479188,177.5110046,10.369961,0.093675465,1620000000000 ,1620000000000 ,1620000000000 ,1616812376160 -1616812376190 ,112.5730364,26.88850408,59.55656815,177.341116,177.5102286,10.373322,0.09370772,1620000000000 ,1620000000000 ,1620000000000 ,1616812376170 -1616812376199 ,112.5730364,26.88850315,59.55717468,177.3352147,177.4905655,10.378159,0.093750029,1620000000000 ,1620000000000 ,1620000000000 ,1616812376180 -1616812376208 ,112.5730365,26.88850221,59.55775833,177.3270458,177.4820263,10.383889,0.093796396,1620000000000 ,1620000000000 ,1620000000000 ,1616812376190 -1616812376218 ,112.5730365,26.88850127,59.55835724,177.325871,177.5685925,10.394624,0.093897163,1620000000000 ,1620000000000 ,1620000000000 ,1616812376200 -1616812376230 ,112.5730365,26.88850033,59.55895233,177.3207074,177.7072761,10.400455,0.094027915,1620000000000 ,1620000000000 ,1620000000000 ,1616812376210 -1616812376239 ,112.5730366,26.88849939,59.55958557,177.3165,177.7010667,10.404665,0.094070537,1620000000000 ,1620000000000 ,1620000000000 ,1616812376220 -1616812376251 ,112.5730366,26.88849845,59.56024551,177.310708,177.6924935,10.408187,0.094104596,1620000000000 ,1620000000000 ,1620000000000 ,1616812376230 -1616812376261 ,112.5730367,26.88849751,59.5609169,177.3066645,177.6835608,10.411575,0.094136215,1620000000000 ,1620000000000 ,1620000000000 ,1616812376240 -1616812376270 ,112.5730367,26.88849657,59.56157303,177.3003261,177.6776221,10.415635,0.094169379,1620000000000 ,1620000000000 ,1620000000000 ,1616812376250 -1616812376280 ,112.5730367,26.88849563,59.56223679,177.2965012,177.6812968,10.421662,0.094221204,1620000000000 ,1620000000000 ,1620000000000 ,1616812376260 -1616812376290 ,112.5730368,26.88849469,59.56293869,177.2915561,177.6692661,10.42707,0.094275425,1620000000000 ,1620000000000 ,1620000000000 ,1616812376270 -1616812376305 ,112.5730368,26.88849374,59.56370926,177.2859007,177.6557296,10.433615,0.094333813,1620000000000 ,1620000000000 ,1620000000000 ,1616812376280 -1616812376316 ,112.5730369,26.8884928,59.5644989,177.2822124,177.6426693,10.438624,0.094384272,1620000000000 ,1620000000000 ,1620000000000 ,1616812376290 -1616812376320 ,112.5730369,26.88849186,59.56520844,177.2816113,177.6375909,10.444487,0.094430333,1620000000000 ,1620000000000 ,1620000000000 ,1616812376300 -1616812376331 ,112.5730369,26.88849091,59.56581879,177.2764477,177.6524657,10.449018,0.09447407,1620000000000 ,1620000000000 ,1620000000000 ,1616812376310 -1616812376341 ,112.573037,26.88848997,59.56633377,177.2727867,177.6394843,10.455073,0.094520146,1620000000000 ,1620000000000 ,1620000000000 ,1616812376320 -1616812376352 ,112.573037,26.88848902,59.56679535,177.2681149,177.6362984,10.461838,0.094579748,1620000000000 ,1620000000000 ,1620000000000 ,1616812376330 -1616812376361 ,112.573037,26.88848808,59.5672226,177.2622956,177.6281519,10.467674,0.094633938,1620000000000 ,1620000000000 ,1620000000000 ,1616812376340 -1616812376374 ,112.5730371,26.88848713,59.56761932,177.2590444,177.6214569,10.473708,0.094686409,1620000000000 ,1620000000000 ,1620000000000 ,1616812376350 -1616812376382 ,112.5730371,26.88848619,59.56802368,177.2549463,177.6215027,10.478008,0.09472785,1620000000000 ,1620000000000 ,1620000000000 ,1616812376360 -1616812376393 ,112.5730372,26.88848524,59.56845474,177.2512307,177.6178228,10.483585,0.094775286,1620000000000 ,1620000000000 ,1620000000000 ,1616812376370 -1616812376402 ,112.5730372,26.88848429,59.56885147,177.2474604,177.5974554,10.489333,0.094824509,1620000000000 ,1620000000000 ,1620000000000 ,1616812376380 -1616812376412 ,112.5730372,26.88848334,59.56917572,177.2462856,177.5940298,10.497805,0.094894584,1620000000000 ,1620000000000 ,1620000000000 ,1616812376390 -1616812376425 ,112.5730373,26.88848239,59.56940842,177.2428705,177.5945587,10.506003,0.094963279,1620000000000 ,1620000000000 ,1620000000000 ,1616812376400 -1616812376433 ,112.5730373,26.88848145,59.56957626,177.2415045,177.5983348,10.511939,0.095021751,1620000000000 ,1620000000000 ,1620000000000 ,1616812376410 -1616812376442 ,112.5730374,26.8884805,59.5697403,177.2397833,177.593875,10.5165205,0.095065179,1620000000000 ,1620000000000 ,1620000000000 ,1616812376420 -1616812376452 ,112.5730374,26.88847955,59.56993866,177.2380894,177.5753353,10.521395,0.095110424,1620000000000 ,1620000000000 ,1620000000000 ,1616812376430 -1616812376462 ,112.5730374,26.88847859,59.57016754,177.2368053,177.5698182,10.524715,0.095143714,1620000000000 ,1620000000000 ,1620000000000 ,1616812376440 -1616812376472 ,112.5730375,26.88847764,59.57038116,177.2339913,177.4869784,10.531444,0.095155246,1620000000000 ,1620000000000 ,1620000000000 ,1616812376450 -1616812376484 ,112.5730375,26.88847669,59.5705452,177.2308221,177.3956654,10.538331,0.095177393,1620000000000 ,1620000000000 ,1620000000000 ,1616812376460 -1616812376493 ,112.5730376,26.88847574,59.57069016,177.2289369,177.3930931,10.545763,0.095239702,1620000000000 ,1620000000000 ,1620000000000 ,1616812376470 -1616812376503 ,112.5730376,26.88847479,59.57083893,177.2270245,177.3808172,10.552724,0.095307395,1620000000000 ,1620000000000 ,1620000000000 ,1616812376480 -1616812376514 ,112.5730377,26.88847384,59.57102203,177.2277075,177.3741968,10.558994,0.095365297,1620000000000 ,1620000000000 ,1620000000000 ,1616812376500 -1616812376527 ,112.5730377,26.88847288,59.5712738,177.2279534,177.3683235,10.562756,0.095404671,1620000000000 ,1620000000000 ,1620000000000 ,1616812376500 -1616812376532 ,112.5730377,26.88847193,59.57160568,177.2290735,177.3595741,10.567366,0.095447209,1620000000000 ,1620000000000 ,1620000000000 ,1616812376520 -1616812376543 ,112.5730378,26.88847002,59.57241821,177.2292648,177.3537449,10.578158,0.191030679,1620000000000 ,1620000000000 ,1620000000000 ,1616812376530 -1616812376557 ,112.5730379,26.88846907,59.57284927,177.2296473,177.360592,10.584205,0.095596846,1620000000000 ,1620000000000 ,1620000000000 ,1616812376540 -1616812376566 ,112.5730379,26.88846811,59.57330322,177.2296473,177.3593917,10.591026,0.0956595,1620000000000 ,1620000000000 ,1620000000000 ,1616812376550 -1616812376574 ,112.573038,26.88846716,59.57379532,177.2307947,177.3614885,10.596371,0.095710244,1620000000000 ,1620000000000 ,1620000000000 ,1616812376560 -1616812376583 ,112.573038,26.8884662,59.57436371,177.2328984,177.3625555,10.602035,0.095765616,1620000000000 ,1620000000000 ,1620000000000 ,1616812376570 -1616812376594 ,112.5730381,26.88846524,59.57503128,177.2331716,177.3616252,10.605516,0.095807074,1620000000000 ,1620000000000 ,1620000000000 ,1616812376580 -1616812376604 ,112.5730381,26.88846524,59.57503128,177.2331716,-400,10.605516,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812376590 -1616812376616 ,112.5730381,26.88846333,59.57659149,177.2372151,177.3614245,10.61452,0.191731397,1620000000000 ,1620000000000 ,1620000000000 ,1616812376600 -1616812376624 ,112.5730382,26.88846237,59.57741928,177.2386631,177.3689226,10.620432,0.095940518,1620000000000 ,1620000000000 ,1620000000000 ,1616812376610 -1616812376635 ,112.5730382,26.88846141,59.57824707,177.2406029,177.3694177,10.626073,0.095992589,1620000000000 ,1620000000000 ,1620000000000 ,1616812376620 -1616812376645 ,112.5730383,26.88846045,59.57911301,177.2425973,177.3717318,10.63198,0.096046398,1620000000000 ,1620000000000 ,1620000000000 ,1616812376630 -1616812376654 ,112.5730383,26.88845949,59.57999802,177.2454933,177.361239,10.636344,0.096093277,1620000000000 ,1620000000000 ,1620000000000 ,1616812376640 -1616812376664 ,112.5730384,26.88845853,59.58088303,177.250411,177.3594333,10.6416445,0.096137267,1620000000000 ,1620000000000 ,1620000000000 ,1616812376650 -1616812376675 ,112.5730384,26.88845757,59.5817337,177.2548097,177.3766439,10.647313,0.096189416,1620000000000 ,1620000000000 ,1620000000000 ,1616812376660 -1616812376686 ,112.5730385,26.88845661,59.58253098,177.2593723,177.3774974,10.654279,0.096247037,1620000000000 ,1620000000000 ,1620000000000 ,1616812376670 -1616812376694 ,112.5730385,26.88845565,59.58328629,177.2637163,177.3796537,10.660178,0.096304054,1620000000000 ,1620000000000 ,1620000000000 ,1616812376680 -1616812376705 ,112.5730385,26.88845468,59.58401108,177.2667762,177.3887351,10.666404,0.09635998,1620000000000 ,1620000000000 ,1620000000000 ,1616812376690 -1616812376715 ,112.5730386,26.88845372,59.58472824,177.2699454,177.3949456,10.670058,0.096397196,1620000000000 ,1620000000000 ,1620000000000 ,1616812376700 -1616812376725 ,112.5730386,26.88845276,59.58546066,177.2732785,177.4071478,10.676488,0.096449518,1620000000000 ,1620000000000 ,1620000000000 ,1616812376710 -1616812376736 ,112.5730387,26.88845179,59.58621979,177.2760379,177.4094192,10.683142,0.096508746,1620000000000 ,1620000000000 ,1620000000000 ,1616812376720 -1616812376746 ,112.5730387,26.88845083,59.58696747,177.2815567,177.4086326,10.689776,0.096572792,1620000000000 ,1620000000000 ,1620000000000 ,1616812376730 -1616812376759 ,112.5730388,26.88844986,59.58766556,177.2859827,177.4145298,10.695975,0.096626735,1620000000000 ,1620000000000 ,1620000000000 ,1616812376740 -1616812376771 ,112.5730388,26.8884489,59.58828354,177.2915561,177.4217817,10.701033,0.096671671,1620000000000 ,1620000000000 ,1620000000000 ,1616812376750 -1616812376780 ,112.5730388,26.88844793,59.58884048,177.2974847,177.4361332,10.707217,0.096724254,1620000000000 ,1620000000000 ,1620000000000 ,1616812376760 -1616812376787 ,112.5730389,26.88844696,59.58932877,177.3018014,177.4416843,10.712983,0.096774421,1620000000000 ,1620000000000 ,1620000000000 ,1616812376770 -1616812376797 ,112.5730389,26.888446,59.58975983,177.3083037,177.4482681,10.720189,0.096832943,1620000000000 ,1620000000000 ,1620000000000 ,1616812376780 -1616812376806 ,112.573039,26.88844503,59.59014511,177.3152705,177.4633676,10.727273,0.096895994,1620000000000 ,1620000000000 ,1620000000000 ,1616812376790 -1616812376816 ,112.573039,26.88844406,59.59047318,177.3219095,177.4650499,10.736146,0.096969669,1620000000000 ,1620000000000 ,1620000000000 ,1616812376800 -1616812376826 ,112.5730391,26.88844309,59.59071732,177.3298325,177.4784791,10.742037,0.097029586,1620000000000 ,1620000000000 ,1620000000000 ,1616812376810 -1616812376836 ,112.5730391,26.88844212,59.59088898,177.3380014,177.4895123,10.748753,0.097084882,1620000000000 ,1620000000000 ,1620000000000 ,1616812376820 -1616812376845 ,112.5730391,26.88844115,59.59102631,177.3450501,177.4946253,10.753444,0.097128406,1620000000000 ,1620000000000 ,1620000000000 ,1616812376830 -1616812376855 ,112.5730392,26.88844018,59.59115601,177.3546944,177.4982036,10.760117,0.097180999,1620000000000 ,1620000000000 ,1620000000000 ,1616812376840 -1616812376873 ,112.5730392,26.88843921,59.59127808,177.3640107,177.5011562,10.767594,0.0972496,1620000000000 ,1620000000000 ,1620000000000 ,1616812376850 -1616812376879 ,112.5730393,26.88843824,59.59135056,177.3765237,177.5026254,10.775863,0.097319462,1620000000000 ,1620000000000 ,1620000000000 ,1616812376860 -1616812376889 ,112.5730393,26.88843726,59.59139252,177.3890912,177.5098092,10.783631,0.097385211,1620000000000 ,1620000000000 ,1620000000000 ,1616812376870 -1616812376897 ,112.5730394,26.88843629,59.59140015,177.4023691,177.5127882,10.789046,0.097440871,1620000000000 ,1620000000000 ,1620000000000 ,1616812376880 -1616812376906 ,112.5730394,26.88843531,59.59139633,177.4175048,177.519572,10.795016,0.09749386,1620000000000 ,1620000000000 ,1620000000000 ,1616812376890 -1616812376918 ,112.5730394,26.88843434,59.59141922,177.4327498,177.5264661,10.8023405,0.097557384,1620000000000 ,1620000000000 ,1620000000000 ,1616812376900 -1616812376929 ,112.5730395,26.88843336,59.59147644,177.4504263,177.5359391,10.80872,0.097614789,1620000000000 ,1620000000000 ,1620000000000 ,1616812376910 -1616812376940 ,112.5730395,26.88843239,59.59159088,177.469824,177.5462981,10.815333,0.09767413,1620000000000 ,1620000000000 ,1620000000000 ,1616812376920 -1616812376953 ,112.5730396,26.88843141,59.59175873,177.4913801,177.5467214,10.820846,0.097729382,1620000000000 ,1620000000000 ,1620000000000 ,1616812376930 -1616812376959 ,112.5730396,26.88843044,59.5919838,177.5153951,177.5482865,10.828282,0.097794524,1620000000000 ,1620000000000 ,1620000000000 ,1616812376940 -1616812376970 ,112.5730397,26.88842946,59.59223938,177.5412951,177.5597019,10.835016,0.097854278,1620000000000 ,1620000000000 ,1620000000000 ,1616812376950 -1616812376978 ,112.5730397,26.88842848,59.59249496,177.5674684,177.579281,10.843351,0.09792659,1620000000000 ,1620000000000 ,1620000000000 ,1616812376960 -1616812376991 ,112.5730397,26.8884275,59.59276962,177.593833,177.5998357,10.849526,0.097989206,1620000000000 ,1620000000000 ,1620000000000 ,1616812376970 -1616812377000 ,112.5730398,26.88842652,59.59309006,177.6226564,177.6096691,10.857212,0.098052986,1620000000000 ,1620000000000 ,1620000000000 ,1616812376980 -1616812377009 ,112.5730398,26.88842554,59.59344101,177.6506874,177.6234685,10.863073,0.098111986,1620000000000 ,1620000000000 ,1620000000000 ,1616812376990 -1616812377019 ,112.5730399,26.88842456,59.59381104,177.6820244,177.6496844,10.869355,0.098166417,1620000000000 ,1620000000000 ,1620000000000 ,1616812377000 -1616812377028 ,112.5730399,26.88842358,59.59421539,177.7151371,177.6721838,10.873934,0.098214167,1620000000000 ,1620000000000 ,1620000000000 ,1616812377010 -1616812377038 ,112.5730399,26.8884226,59.59466934,177.7478674,177.7072392,10.880479,0.098265732,1620000000000 ,1620000000000 ,1620000000000 ,1616812377020 -1616812377049 ,112.57304,26.88842161,59.59517288,177.781226,177.7428712,10.889616,0.09834436,1620000000000 ,1620000000000 ,1620000000000 ,1616812377030 -1616812377058 ,112.57304,26.88842063,59.59568024,177.8133552,177.7723656,10.897627,0.098420587,1620000000000 ,1620000000000 ,1620000000000 ,1616812377040 -1616812377070 ,112.5730401,26.88841965,59.59616089,177.8483804,177.7967923,10.905928,0.098492269,1620000000000 ,1620000000000 ,1620000000000 ,1616812377050 -1616812377080 ,112.5730401,26.88841866,59.59663391,177.8831051,177.832301,10.914057,0.098568869,1620000000000 ,1620000000000 ,1620000000000 ,1616812377060 -1616812377089 ,112.5730401,26.88841768,59.59713745,177.9207805,177.8650322,10.921585,0.098634678,1620000000000 ,1620000000000 ,1620000000000 ,1616812377070 -1616812377100 ,112.5730402,26.88841669,59.59767914,177.9582918,177.8981344,10.928595,0.098699677,1620000000000 ,1620000000000 ,1620000000000 ,1616812377080 -1616812377111 ,112.5730402,26.8884157,59.59821701,177.9965409,177.9364496,10.935322,0.098763683,1620000000000 ,1620000000000 ,1620000000000 ,1616812377090 -1616812377120 ,112.5730402,26.88841471,59.59872055,178.0343255,177.9768101,10.942954,0.098824203,1620000000000 ,1620000000000 ,1620000000000 ,1616812377100 -1616812377130 ,112.5730403,26.88841373,59.5991745,178.0718369,178.0174306,10.95363,0.098910507,1620000000000 ,1620000000000 ,1620000000000 ,1616812377110 -1616812377140 ,112.5730403,26.88841274,59.59959412,178.1098947,178.0691684,10.963328,0.099001975,1620000000000 ,1620000000000 ,1620000000000 ,1616812377120 -1616812377153 ,112.5730403,26.88841175,59.60000992,178.1468051,178.1216459,10.9742985,0.09909331,1620000000000 ,1620000000000 ,1620000000000 ,1616812377130 -1616812377160 ,112.5730404,26.88841075,59.6004982,178.1859011,178.1696625,10.983452,0.099185678,1620000000000 ,1620000000000 ,1620000000000 ,1616812377140 -1616812377170 ,112.5730404,26.88840976,59.6010704,178.2258167,178.2082932,10.991647,0.099261132,1620000000000 ,1620000000000 ,1620000000000 ,1616812377150 -1616812377181 ,112.5730404,26.88840877,59.60167313,178.2635467,178.251404,11.002533,0.099349286,1620000000000 ,1620000000000 ,1620000000000 ,1616812377160 -1616812377190 ,112.5730405,26.88840778,59.60223007,178.3018504,178.3029708,11.01199,0.099439743,1620000000000 ,1620000000000 ,1620000000000 ,1616812377170 -1616812377201 ,112.5730405,26.88840678,59.60270309,178.3406458,178.3642709,11.0243635,0.099543707,1620000000000 ,1620000000000 ,1620000000000 ,1616812377180 -1616812377210 ,112.5730405,26.88840578,59.60313416,178.3764087,178.4217707,11.033803,0.099631183,1620000000000 ,1620000000000 ,1620000000000 ,1616812377190 -1616812377220 ,112.5730405,26.88840479,59.60347748,178.4229633,178.4624162,11.034077,0.099586325,1620000000000 ,1620000000000 ,1620000000000 ,1616812377200 -1616812377231 ,112.5730406,26.88840379,59.6036377,178.4604474,178.4920527,11.043437,0.099440098,1620000000000 ,1620000000000 ,1620000000000 ,1616812377210 -1616812377241 ,112.5730406,26.8884028,59.60375977,178.4972211,178.5344741,11.054129,0.099525019,1620000000000 ,1620000000000 ,1620000000000 ,1616812377220 -1616812377251 ,112.5730406,26.8884018,59.60380554,178.5328474,178.5773181,11.064567,0.099622208,1620000000000 ,1620000000000 ,1620000000000 ,1616812377230 -1616812377260 ,112.5730406,26.88840081,59.60380936,178.5703861,178.6307123,11.073432,0.099701412,1620000000000 ,1620000000000 ,1620000000000 ,1616812377240 -1616812377272 ,112.5730407,26.88839981,59.60385513,178.6058484,178.6730307,11.0793915,0.099763541,1620000000000 ,1620000000000 ,1620000000000 ,1616812377250 -1616812377283 ,112.5730407,26.88839881,59.60401917,178.6415293,178.6967074,11.084704,0.099812809,1620000000000 ,1620000000000 ,1620000000000 ,1616812377260 -1616812377291 ,112.5730407,26.88839781,59.60433197,178.6793959,178.7331298,11.093108,0.099885426,1620000000000 ,1620000000000 ,1620000000000 ,1616812377270 -1616812377301 ,112.5730407,26.88839681,59.60473633,178.7155686,178.7733094,11.101392,0.099962626,1620000000000 ,1620000000000 ,1620000000000 ,1616812377280 -1616812377312 ,112.5730407,26.88839581,59.60514832,178.750867,178.8166375,11.108528,0.100030574,1620000000000 ,1620000000000 ,1620000000000 ,1616812377290 -1616812377322 ,112.5730408,26.88839481,59.60555267,178.785619,178.8658695,11.115436,0.10009507,1620000000000 ,1620000000000 ,1620000000000 ,1616812377300 -1616812377332 ,112.5730408,26.88839381,59.60597229,178.8194694,178.9012497,11.120972,0.100146706,1620000000000 ,1620000000000 ,1620000000000 ,1616812377310 -1616812377342 ,112.5730408,26.88839281,59.60638809,178.85444,178.932361,11.1295395,0.100212987,1620000000000 ,1620000000000 ,1620000000000 ,1616812377320 -1616812377354 ,112.5730408,26.88839181,59.60678101,178.8875527,178.9784042,11.139556,0.100304465,1620000000000 ,1620000000000 ,1620000000000 ,1616812377330 -1616812377362 ,112.5730408,26.8883908,59.60719299,178.9211846,179.0292973,11.148725,0.100385834,1620000000000 ,1620000000000 ,1620000000000 ,1616812377340 -1616812377372 ,112.5730409,26.8883898,59.60769653,178.9533411,179.0666351,11.157453,0.100477405,1620000000000 ,1620000000000 ,1620000000000 ,1616812377350 -1616812377382 ,112.5730409,26.88838879,59.60826111,178.9868364,179.1036614,11.164456,0.100535425,1620000000000 ,1620000000000 ,1620000000000 ,1616812377360 -1616812377394 ,112.5730409,26.88838779,59.60886383,179.0191295,179.1387824,11.175942,0.100634637,1620000000000 ,1620000000000 ,1620000000000 ,1616812377370 -1616812377404 ,112.5730409,26.88838678,59.60944366,179.0502205,179.1802885,11.190174,0.100753569,1620000000000 ,1620000000000 ,1620000000000 ,1616812377380 -1616812377412 ,112.5730409,26.88838577,59.60996628,179.0813116,179.2260928,11.207174,0.100900424,1620000000000 ,1620000000000 ,1620000000000 ,1616812377390 -1616812377422 ,112.5730409,26.88838476,59.61039352,179.1107087,179.2671699,11.2233305,0.101050576,1620000000000 ,1620000000000 ,1620000000000 ,1616812377400 -1616812377433 ,112.5730409,26.88838375,59.61078262,179.1390403,179.306551,11.236135,0.101173141,1620000000000 ,1620000000000 ,1620000000000 ,1616812377410 -1616812377443 ,112.573041,26.88838274,59.61117935,179.167208,179.3385108,11.24865,0.101281296,1620000000000 ,1620000000000 ,1620000000000 ,1616812377430 -1616812377453 ,112.573041,26.88838172,59.61161041,179.1977253,179.3706846,11.26111,0.101398847,1620000000000 ,1620000000000 ,1620000000000 ,1616812377440 -1616812377463 ,112.573041,26.88837969,59.61258698,179.2554814,179.4267979,11.291105,0.203338969,1620000000000 ,1620000000000 ,1620000000000 ,1616812377450 -1616812377473 ,112.573041,26.88837867,59.61314774,179.2826929,179.4663544,11.306251,0.102078434,1620000000000 ,1620000000000 ,1620000000000 ,1616812377460 -1616812377484 ,112.573041,26.88837765,59.61363983,179.3110245,179.4988132,11.319694,0.10220038,1620000000000 ,1620000000000 ,1620000000000 ,1616812377470 -1616812377492 ,112.573041,26.88837662,59.61410904,179.3352307,179.5386531,11.333169,0.102320021,1620000000000 ,1620000000000 ,1620000000000 ,1616812377480 -1616812377503 ,112.573041,26.88837662,59.61410904,179.3352307,-400,11.333169,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812377480 -1616812377514 ,112.573041,26.88837457,59.61505508,179.3881237,179.5762585,11.355149,0.204947254,1620000000000 ,1620000000000 ,1620000000000 ,1616812377500 -1616812377524 ,112.573041,26.88837355,59.61552048,179.4152805,179.6129749,11.366828,0.102628383,1620000000000 ,1620000000000 ,1620000000000 ,1616812377510 -1616812377535 ,112.573041,26.88837252,59.61594772,179.4430111,179.6396035,11.37772,0.102725813,1620000000000 ,1620000000000 ,1620000000000 ,1616812377520 -1616812377545 ,112.573041,26.88837149,59.61632919,179.4720803,179.661994,11.389416,0.102831149,1620000000000 ,1620000000000 ,1620000000000 ,1616812377530 -1616812377555 ,112.573041,26.88837046,59.61667252,179.5002754,179.6885142,11.398359,0.102915283,1620000000000 ,1620000000000 ,1620000000000 ,1616812377540 -1616812377565 ,112.5730411,26.88836943,59.61703491,179.5284431,179.711349,11.409095,0.103009807,1620000000000 ,1620000000000 ,1620000000000 ,1616812377550 -1616812377575 ,112.5730411,26.8883684,59.61746979,179.5547256,179.7246052,11.42058,0.103113163,1620000000000 ,1620000000000 ,1620000000000 ,1616812377560 -1616812377586 ,112.5730411,26.88836737,59.61794662,179.5832758,179.7543915,11.43354,0.103224582,1620000000000 ,1620000000000 ,1620000000000 ,1616812377570 -1616812377595 ,112.5730411,26.88836634,59.61842346,179.6114708,179.789176,11.448573,0.103359904,1620000000000 ,1620000000000 ,1620000000000 ,1616812377580 -1616812377604 ,112.5730411,26.8883653,59.61885071,179.6388462,179.8259545,11.463694,0.103492513,1620000000000 ,1620000000000 ,1620000000000 ,1616812377590 -1616812377614 ,112.5730411,26.88836426,59.61924744,179.6680521,179.8557931,11.479866,0.103638461,1620000000000 ,1620000000000 ,1620000000000 ,1616812377600 -1616812377625 ,112.5730411,26.88836323,59.61958694,179.6945806,179.8719641,11.4941,0.103769041,1620000000000 ,1620000000000 ,1620000000000 ,1616812377610 -1616812377634 ,112.5730411,26.88836219,59.61985397,179.7220106,179.8927317,11.509388,0.103900612,1620000000000 ,1620000000000 ,1620000000000 ,1616812377620 -1616812377649 ,112.5730411,26.88836115,59.62005997,179.7505881,179.9226288,11.525698,0.104039279,1620000000000 ,1620000000000 ,1620000000000 ,1616812377630 -1616812377656 ,112.5730411,26.88836011,59.6201973,179.7781001,179.9552308,11.5457735,0.104217477,1620000000000 ,1620000000000 ,1620000000000 ,1616812377640 -1616812377665 ,112.5730411,26.88835906,59.62024689,179.8074153,179.9821579,11.565832,0.104394108,1620000000000 ,1620000000000 ,1620000000000 ,1616812377650 -1616812377676 ,112.5730411,26.88835802,59.62017822,179.8375228,180.0066509,11.586495,0.104574076,1620000000000 ,1620000000000 ,1620000000000 ,1616812377660 -1616812377687 ,112.5730411,26.88835697,59.62004089,179.8641878,180.0394444,11.605425,0.104749304,1620000000000 ,1620000000000 ,1620000000000 ,1616812377670 -1616812377694 ,112.5730411,26.88835592,59.61989975,179.8912354,180.0712194,11.623785,0.104912306,1620000000000 ,1620000000000 ,1620000000000 ,1616812377680 -1616812377705 ,112.5730411,26.88835487,59.61976242,179.9197309,180.1066703,11.641206,0.105072355,1620000000000 ,1620000000000 ,1620000000000 ,1616812377690 -1616812377715 ,112.5730411,26.88835382,59.61962509,179.9478713,180.139913,11.658425,0.105225735,1620000000000 ,1620000000000 ,1620000000000 ,1616812377700 -1616812377725 ,112.5730411,26.88835276,59.61949539,179.9750555,180.1639554,11.675122,0.1053812,1620000000000 ,1620000000000 ,1620000000000 ,1616812377710 -1616812377737 ,112.5730411,26.88835171,59.61937332,180.0007916,180.2035881,11.690786,0.105520516,1620000000000 ,1620000000000 ,1620000000000 ,1616812377720 -1616812377746 ,112.5730411,26.88835065,59.61925125,180.026719,180.244552,11.708033,0.105672194,1620000000000 ,1620000000000 ,1620000000000 ,1616812377730 -1616812377756 ,112.5730411,26.88834959,59.61912918,180.0533294,180.2839813,11.725871,0.10583389,1620000000000 ,1620000000000 ,1620000000000 ,1616812377740 -1616812377765 ,112.5730411,26.88834853,59.6190567,180.075951,180.3225704,11.745152,0.106004284,1620000000000 ,1620000000000 ,1620000000000 ,1616812377750 -1616812377778 ,112.573041,26.88834747,59.61906815,180.0996381,180.3565008,11.760788,0.106157408,1620000000000 ,1620000000000 ,1620000000000 ,1616812377760 -1616812377787 ,112.573041,26.88834641,59.61914825,180.1224783,180.3867915,11.774689,0.106286059,1620000000000 ,1620000000000 ,1620000000000 ,1616812377770 -1616812377800 ,112.573041,26.88834534,59.61926651,180.1460834,180.4270422,11.792626,0.106439602,1620000000000 ,1620000000000 ,1620000000000 ,1616812377780 -1616812377807 ,112.573041,26.88834428,59.61936188,180.1695793,180.4647484,11.809494,0.106591131,1620000000000 ,1620000000000 ,1620000000000 ,1616812377790 -1616812377817 ,112.573041,26.88834321,59.61940765,180.1915178,180.4955414,11.828047,0.106760664,1620000000000 ,1620000000000 ,1620000000000 ,1616812377800 -1616812377826 ,112.573041,26.88834214,59.61943817,180.2113527,180.5172622,11.845688,0.106918505,1620000000000 ,1620000000000 ,1620000000000 ,1616812377810 -1616812377836 ,112.573041,26.88834107,59.61949921,180.2323897,180.5354257,11.865836,0.107088804,1620000000000 ,1620000000000 ,1620000000000 ,1616812377820 -1616812377846 ,112.573041,26.88834,59.61960602,180.254137,180.5655544,11.884566,0.107266856,1620000000000 ,1620000000000 ,1620000000000 ,1616812377830 -1616812377858 ,112.573041,26.88833892,59.61973572,180.2752833,180.5903128,11.902658,0.107436173,1620000000000 ,1620000000000 ,1620000000000 ,1616812377840 -1616812377867 ,112.573041,26.88833785,59.61995316,180.2937248,180.6115317,11.917034,0.107571625,1620000000000 ,1620000000000 ,1620000000000 ,1616812377850 -1616812377877 ,112.5730409,26.88833677,59.62028122,180.3118658,180.6162607,11.932661,0.107710573,1620000000000 ,1620000000000 ,1620000000000 ,1616812377860 -1616812377887 ,112.5730409,26.88833569,59.62065506,180.3317826,180.6437387,11.95046,0.107871914,1620000000000 ,1620000000000 ,1620000000000 ,1616812377870 -1616812377896 ,112.5730409,26.88833461,59.62103271,180.3495138,180.6770148,11.968401,0.108033693,1620000000000 ,1620000000000 ,1620000000000 ,1616812377880 -1616812377908 ,112.5730409,26.88833353,59.62142944,180.3661521,180.6971234,11.982658,0.10816792,1620000000000 ,1620000000000 ,1620000000000 ,1616812377890 -1616812377922 ,112.5730409,26.88833245,59.62190247,180.3820255,180.7133089,11.996789,0.1083021,1620000000000 ,1620000000000 ,1620000000000 ,1616812377900 -1616812377928 ,112.5730409,26.88833136,59.62243271,180.3980901,180.7220569,12.011592,0.108437863,1620000000000 ,1620000000000 ,1620000000000 ,1616812377910 -1616812377939 ,112.5730409,26.88833028,59.62300491,180.4107396,180.7494855,12.024496,0.108554083,1620000000000 ,1620000000000 ,1620000000000 ,1616812377920 -1616812377949 ,112.5730409,26.88832919,59.62361526,180.4250283,180.7727642,12.038732,0.108682417,1620000000000 ,1620000000000 ,1620000000000 ,1616812377930 -1616812377959 ,112.5730408,26.8883281,59.62426758,180.4372953,180.7871426,12.054582,0.108825835,1620000000000 ,1620000000000 ,1620000000000 ,1616812377940 -1616812377968 ,112.5730408,26.88832701,59.62493515,180.4487974,180.7998333,12.070672,0.10897098,1620000000000 ,1620000000000 ,1620000000000 ,1616812377950 -1616812377980 ,112.5730408,26.88832592,59.62558365,180.4590427,180.8082531,12.08528,0.109105216,1620000000000 ,1620000000000 ,1620000000000 ,1616812377960 -1616812377994 ,112.5730408,26.88832483,59.62620544,180.4705447,180.8232674,12.100238,0.109244567,1620000000000 ,1620000000000 ,1620000000000 ,1616812377970 -1616812378000 ,112.5730408,26.88832374,59.62681198,180.4786863,180.8471975,12.113999,0.10936772,1620000000000 ,1620000000000 ,1620000000000 ,1616812377980 -1616812378009 ,112.5730408,26.88832264,59.62742615,180.4877021,180.8691368,12.126082,0.10947827,1620000000000 ,1620000000000 ,1620000000000 ,1616812377990 -1616812378019 ,112.5730407,26.88832154,59.62808609,180.4952154,180.8787278,12.140159,0.109608242,1620000000000 ,1620000000000 ,1620000000000 ,1616812378000 -1616812378030 ,112.5730407,26.88832045,59.62876511,180.5027559,180.8915335,12.156125,0.109747015,1620000000000 ,1620000000000 ,1620000000000 ,1616812378010 -1616812378040 ,112.5730407,26.88831935,59.62941742,180.5103784,180.9055436,12.171762,0.109884992,1620000000000 ,1620000000000 ,1620000000000 ,1616812378020 -1616812378049 ,112.5730407,26.88831825,59.63001633,180.5178096,180.9245615,12.184728,0.110009637,1620000000000 ,1620000000000 ,1620000000000 ,1616812378030 -1616812378059 ,112.5730407,26.88831715,59.63063431,180.5223722,180.9277236,12.198083,0.110131131,1620000000000 ,1620000000000 ,1620000000000 ,1616812378040 -1616812378069 ,112.5730407,26.88831605,59.63130951,180.5260878,180.9283183,12.212282,0.11025539,1620000000000 ,1620000000000 ,1620000000000 ,1616812378050 -1616812378080 ,112.5730406,26.88831494,59.63195801,180.5316339,180.939611,12.224974,0.110375533,1620000000000 ,1620000000000 ,1620000000000 ,1616812378060 -1616812378090 ,112.5730406,26.88831384,59.63247681,180.5386554,180.9462927,12.237341,0.11048305,1620000000000 ,1620000000000 ,1620000000000 ,1616812378070 -1616812378101 ,112.5730406,26.88831273,59.63286972,180.5455948,180.9481434,12.253715,0.110618498,1620000000000 ,1620000000000 ,1620000000000 ,1616812378080 -1616812378110 ,112.5730406,26.88831162,59.63321686,180.5495017,180.9382655,12.270172,0.110763259,1620000000000 ,1620000000000 ,1620000000000 ,1616812378090 -1616812378121 ,112.5730406,26.88831051,59.63354492,180.5517966,180.9260648,12.286621,0.110914153,1620000000000 ,1620000000000 ,1620000000000 ,1616812378100 -1616812378130 ,112.5730405,26.8883094,59.63386917,180.5552117,180.9324933,12.301477,0.111049073,1620000000000 ,1620000000000 ,1620000000000 ,1616812378110 -1616812378140 ,112.5730405,26.88830829,59.63417816,180.5600748,180.9358276,12.315464,0.11117315,1620000000000 ,1620000000000 ,1620000000000 ,1616812378120 -1616812378152 ,112.5730405,26.88830718,59.63445663,180.567588,180.9250564,12.328792,0.111296301,1620000000000 ,1620000000000 ,1620000000000 ,1616812378130 -1616812378160 ,112.5730405,26.88830607,59.63472366,180.5773689,180.9205315,12.343938,0.111430417,1620000000000 ,1620000000000 ,1620000000000 ,1616812378140 -1616812378171 ,112.5730405,26.88830495,59.63496017,180.5841171,180.9250587,12.35818,0.111555597,1620000000000 ,1620000000000 ,1620000000000 ,1616812378150 -1616812378180 ,112.5730405,26.88830383,59.63518143,180.5906468,180.9337632,12.3731165,0.111689249,1620000000000 ,1620000000000 ,1620000000000 ,1616812378160 -1616812378192 ,112.5730404,26.88830272,59.63541412,180.5957284,180.9524973,12.385235,0.11180562,1620000000000 ,1620000000000 ,1620000000000 ,1616812378170 -1616812378202 ,112.5730404,26.8883016,59.63574982,180.6006188,180.9673239,12.396938,0.111917124,1620000000000 ,1620000000000 ,1620000000000 ,1616812378180 -1616812378213 ,112.5730404,26.88830048,59.63624191,180.6049628,180.9639493,12.408228,0.112019492,1620000000000 ,1620000000000 ,1620000000000 ,1616812378190 -1616812378223 ,112.5730404,26.88829936,59.63716507,180.6150715,181.1171153,12.410417,0.112064474,1620000000000 ,1620000000000 ,1620000000000 ,1616812378200 -1616812378233 ,112.5730404,26.88829824,59.63864517,180.6240874,181.3751925,12.424524,0.112043034,1620000000000 ,1620000000000 ,1620000000000 ,1616812378210 -1616812378242 ,112.5730403,26.88829711,59.64011765,180.6313274,181.3862058,12.437678,0.112165527,1620000000000 ,1620000000000 ,1620000000000 ,1616812378220 -1616812378252 ,112.5730403,26.88829599,59.64161301,180.6361358,181.3946745,12.450498,0.112282192,1620000000000 ,1620000000000 ,1620000000000 ,1616812378230 -1616812378263 ,112.5730403,26.88829487,59.64318466,180.6408077,181.3935063,12.460535,0.112380275,1620000000000 ,1620000000000 ,1620000000000 ,1616812378240 -1616812378273 ,112.5730402,26.88829374,59.64482498,180.6462718,181.3911379,12.468307,0.112461225,1620000000000 ,1620000000000 ,1620000000000 ,1616812378250 -1616812378282 ,112.5730402,26.88829262,59.64651108,180.6526649,181.4044341,12.4790945,0.112548521,1620000000000 ,1620000000000 ,1620000000000 ,1616812378260 -1616812378291 ,112.5730402,26.88829149,59.64823151,180.6576919,181.4132177,12.49068,0.112657268,1620000000000 ,1620000000000 ,1620000000000 ,1616812378270 -1616812378301 ,112.5730402,26.88829037,59.65000916,180.6623637,181.4062784,12.500859,0.112752952,1620000000000 ,1620000000000 ,1620000000000 ,1616812378280 -1616812378313 ,112.5730401,26.88828924,59.65192032,180.665369,181.4043502,12.512411,0.112860413,1620000000000 ,1620000000000 ,1620000000000 ,1616812378290 -1616812378323 ,112.5730401,26.88828811,59.65392303,180.6706419,181.4063105,12.521464,0.11295124,1620000000000 ,1620000000000 ,1620000000000 ,1616812378300 -1616812378335 ,112.5730401,26.88828698,59.65596771,180.6774448,181.4165206,12.532975,0.113051879,1620000000000 ,1620000000000 ,1620000000000 ,1616812378310 -1616812378342 ,112.57304,26.88828585,59.65794373,180.6864606,181.4286022,12.544401,0.113156886,1620000000000 ,1620000000000 ,1620000000000 ,1616812378320 -1616812378352 ,112.57304,26.88828471,59.65979385,180.6949574,181.4335727,12.556389,0.113262109,1620000000000 ,1620000000000 ,1620000000000 ,1616812378330 -1616812378362 ,112.57304,26.88828358,59.66151047,180.697908,181.43524,12.567363,0.113360517,1620000000000 ,1620000000000 ,1620000000000 ,1616812378340 -1616812378372 ,112.57304,26.88828245,59.66315842,180.6989462,181.4505618,12.577315,0.113452294,1620000000000 ,1620000000000 ,1620000000000 ,1616812378350 -1616812378384 ,112.5730399,26.88828131,59.66476822,180.6996839,181.4753605,12.587914,0.113548395,1620000000000 ,1620000000000 ,1620000000000 ,1616812378370 -1616812378394 ,112.5730399,26.88828018,59.66636276,180.7023887,181.5006271,12.598373,0.113642271,1620000000000 ,1620000000000 ,1620000000000 ,1616812378380 -1616812378403 ,112.5730399,26.88827904,59.66794586,180.7056945,181.5035262,12.607622,0.113731751,1620000000000 ,1620000000000 ,1620000000000 ,1616812378380 -1616812378415 ,112.5730398,26.8882779,59.66951752,180.7094374,181.4998517,12.620081,0.113833812,1620000000000 ,1620000000000 ,1620000000000 ,1616812378400 -1616812378427 ,112.5730398,26.88827676,59.67099762,180.7136721,181.5020571,12.633034,0.113947916,1620000000000 ,1620000000000 ,1620000000000 ,1616812378410 -1616812378434 ,112.5730398,26.88827562,59.67233658,180.714765,181.5152648,12.645064,0.114055437,1620000000000 ,1620000000000 ,1620000000000 ,1616812378420 -1616812378447 ,112.5730398,26.88827448,59.67358398,180.7132623,181.5307879,12.654537,0.114146779,1620000000000 ,1620000000000 ,1620000000000 ,1616812378430 -1616812378453 ,112.5730397,26.8882722,59.67623901,180.7126339,181.52895,12.671976,0.228532712,1620000000000 ,1620000000000 ,1620000000000 ,1616812378440 -1616812378463 ,112.5730397,26.8882722,59.67623901,180.7126339,-400,12.671976,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812378450 -1616812378473 ,112.5730397,26.88827105,59.67731476,180.7133716,181.3660206,12.682869,0.114466972,1620000000000 ,1620000000000 ,1620000000000 ,1616812378460 -1616812378483 ,112.5730396,26.88826876,59.6785202,180.7178522,181.222953,12.704139,0.229355415,1620000000000 ,1620000000000 ,1620000000000 ,1616812378470 -1616812378493 ,112.5730396,26.88826761,59.67898941,180.7186991,181.2219466,12.714984,0.114816622,1620000000000 ,1620000000000 ,1620000000000 ,1616812378480 -1616812378505 ,112.5730396,26.88826761,59.67898941,180.7186991,-400,12.714984,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812378490 -1616812378515 ,112.5730395,26.88826531,59.67999649,180.7227973,181.2100327,12.737995,0.229928999,1620000000000 ,1620000000000 ,1620000000000 ,1616812378500 -1616812378524 ,112.5730395,26.88826416,59.68055344,180.723371,181.2016444,12.746001,0.115107433,1620000000000 ,1620000000000 ,1620000000000 ,1616812378510 -1616812378534 ,112.5730395,26.88826301,59.68115616,180.7228519,181.1982712,12.755682,0.115189974,1620000000000 ,1620000000000 ,1620000000000 ,1616812378520 -1616812378544 ,112.5730395,26.88826186,59.68177414,180.7231251,181.1962094,12.764508,0.115269568,1620000000000 ,1620000000000 ,1620000000000 ,1616812378530 -1616812378554 ,112.5730394,26.8882607,59.68235397,180.7243819,181.1962831,12.775553,0.115362326,1620000000000 ,1620000000000 ,1620000000000 ,1616812378540 -1616812378577 ,112.5730394,26.88825955,59.68282318,180.72848,181.179315,12.786967,0.115465131,1620000000000 ,1620000000000 ,1620000000000 ,1616812378550 -1616812378580 ,112.5730394,26.88825839,59.68323898,180.7302012,181.1687622,12.796524,0.115550256,1620000000000 ,1620000000000 ,1620000000000 ,1616812378560 -1616812378585 ,112.5730394,26.88825724,59.68369293,180.7304471,181.1669039,12.8058195,0.115638291,1620000000000 ,1620000000000 ,1620000000000 ,1616812378570 -1616812378594 ,112.5730394,26.88825608,59.68418503,180.7332338,181.1745888,12.81533,0.115724461,1620000000000 ,1620000000000 ,1620000000000 ,1616812378580 -1616812378604 ,112.5730393,26.88825492,59.68469238,180.7364576,181.1782575,12.825794,0.115816433,1620000000000 ,1620000000000 ,1620000000000 ,1616812378590 -1616812378623 ,112.5730393,26.88825376,59.68521881,180.7383974,181.1832375,12.835279,0.115906507,1620000000000 ,1620000000000 ,1620000000000 ,1616812378600 -1616812378636 ,112.5730393,26.88825261,59.68578339,180.7395722,181.1731647,12.843251,0.115981872,1620000000000 ,1620000000000 ,1620000000000 ,1616812378610 -1616812378641 ,112.5730393,26.88825144,59.68633652,180.7417852,181.1630341,12.85217,0.116060741,1620000000000 ,1620000000000 ,1620000000000 ,1616812378620 -1616812378645 ,112.5730392,26.88825028,59.68684006,180.7441621,181.168551,12.862914,0.116147825,1620000000000 ,1620000000000 ,1620000000000 ,1616812378630 -1616812378656 ,112.5730392,26.88824912,59.68732071,180.7481236,181.1815469,12.871794,0.116237585,1620000000000 ,1620000000000 ,1620000000000 ,1616812378640 -1616812378666 ,112.5730392,26.88824796,59.68784714,180.7512655,181.1821955,12.879703,0.116313162,1620000000000 ,1620000000000 ,1620000000000 ,1616812378650 -1616812378677 ,112.5730392,26.88824679,59.68845367,180.753096,181.1847091,12.886848,0.116382653,1620000000000 ,1620000000000 ,1620000000000 ,1616812378660 -1616812378685 ,112.5730391,26.88824563,59.68913269,180.753779,181.1805931,12.893542,0.116443695,1620000000000 ,1620000000000 ,1620000000000 ,1616812378670 -1616812378695 ,112.5730391,26.88824447,59.68983841,180.7558827,181.1896274,12.904277,0.11653149,1620000000000 ,1620000000000 ,1620000000000 ,1616812378680 -1616812378706 ,112.5730391,26.8882433,59.69055939,180.7581503,181.2107046,12.913105,0.116621613,1620000000000 ,1620000000000 ,1620000000000 ,1616812378690 -1616812378717 ,112.5730391,26.88824213,59.6913147,180.7583416,181.221709,12.920278,0.116691388,1620000000000 ,1620000000000 ,1620000000000 ,1616812378700 -1616812378727 ,112.573039,26.88824097,59.69210434,180.7577132,181.2082325,12.927523,0.116757473,1620000000000 ,1620000000000 ,1620000000000 ,1616812378710 -1616812378739 ,112.573039,26.8882398,59.69288254,180.7608004,181.1924143,12.936282,0.116833547,1620000000000 ,1620000000000 ,1620000000000 ,1616812378720 -1616812378750 ,112.573039,26.88823863,59.69359589,180.7613195,181.1933015,12.947676,0.11693025,1620000000000 ,1620000000000 ,1620000000000 ,1616812378730 -1616812378757 ,112.573039,26.88823746,59.6942482,180.7633139,181.1920174,12.955189,0.11700831,1620000000000 ,1620000000000 ,1620000000000 ,1616812378740 -1616812378769 ,112.5730389,26.88823629,59.69488525,180.7636964,181.1780057,12.962226,0.117072824,1620000000000 ,1620000000000 ,1620000000000 ,1616812378750 -1616812378777 ,112.5730389,26.88823512,59.69551849,180.7658548,181.1702908,12.96828,0.117128314,1620000000000 ,1620000000000 ,1620000000000 ,1616812378760 -1616812378787 ,112.5730389,26.88823395,59.6961441,180.7662373,181.1734223,12.9764805,0.117198067,1620000000000 ,1620000000000 ,1620000000000 ,1616812378770 -1616812378797 ,112.5730389,26.88823277,59.69674301,180.7657182,181.1791445,12.985114,0.117270874,1620000000000 ,1620000000000 ,1620000000000 ,1616812378780 -1616812378810 ,112.5730388,26.8882316,59.69732666,180.7653903,181.1961419,12.993092,0.117350884,1620000000000 ,1620000000000 ,1620000000000 ,1616812378790 -1616812378819 ,112.5730388,26.88823043,59.69786835,180.7651444,181.1910672,12.9997225,0.117414968,1620000000000 ,1620000000000 ,1620000000000 ,1616812378800 -1616812378828 ,112.5730388,26.88822925,59.69839478,180.7648985,181.1893848,13.0073595,0.117477512,1620000000000 ,1620000000000 ,1620000000000 ,1616812378810 -1616812378840 ,112.5730388,26.88822808,59.69889069,180.7650078,181.1950908,13.0138445,0.117537818,1620000000000 ,1620000000000 ,1620000000000 ,1616812378820 -1616812378849 ,112.5730387,26.8882269,59.69932556,180.7679311,181.195352,13.021098,0.117600559,1620000000000 ,1620000000000 ,1620000000000 ,1616812378830 -1616812378859 ,112.5730387,26.88822572,59.69974518,180.768942,181.1999088,13.028172,0.117669366,1620000000000 ,1620000000000 ,1620000000000 ,1616812378840 -1616812378872 ,112.5730387,26.88822455,59.70018768,180.769625,181.2059728,13.034162,0.117722932,1620000000000 ,1620000000000 ,1620000000000 ,1616812378850 -1616812378878 ,112.5730387,26.88822337,59.70069504,180.7687508,181.2243256,13.040681,0.117781251,1620000000000 ,1620000000000 ,1620000000000 ,1616812378860 -1616812378888 ,112.5730386,26.88822219,59.70121384,180.7689693,181.2189517,13.045539,0.11782914,1620000000000 ,1620000000000 ,1620000000000 ,1616812378870 -1616812378898 ,112.5730386,26.88822101,59.70170593,180.7688054,181.2130872,13.052039,0.117884502,1620000000000 ,1620000000000 ,1620000000000 ,1616812378880 -1616812378908 ,112.5730386,26.88821983,59.7020874,180.7672754,181.2130821,13.062309,0.117966622,1620000000000 ,1620000000000 ,1620000000000 ,1616812378890 -1616812378919 ,112.5730386,26.88821865,59.70228195,180.7686688,181.2198854,13.073129,0.118052431,1620000000000 ,1620000000000 ,1620000000000 ,1616812378900 -1616812378932 ,112.5730385,26.88821747,59.70226669,180.7727123,181.2360648,13.083555,0.118145065,1620000000000 ,1620000000000 ,1620000000000 ,1616812378910 -1616812378944 ,112.5730385,26.88821629,59.70213699,180.7772202,181.2247392,13.093019,0.11822956,1620000000000 ,1620000000000 ,1620000000000 ,1616812378920 -1616812378949 ,112.5730385,26.88821511,59.70206833,180.7758268,181.2064656,13.097721,0.118285469,1620000000000 ,1620000000000 ,1620000000000 ,1616812378930 -1616812378958 ,112.5730385,26.88821392,59.70218658,180.7759634,181.2088751,13.097023,0.118293706,1620000000000 ,1620000000000 ,1620000000000 ,1616812378940 -1616812378968 ,112.5730384,26.88821274,59.70241547,180.7772202,181.2150554,13.099723,0.11830879,1620000000000 ,1620000000000 ,1620000000000 ,1616812378950 -1616812378978 ,112.5730384,26.88821156,59.70262146,180.7788594,181.2202513,13.108629,0.118375382,1620000000000 ,1620000000000 ,1620000000000 ,1616812378960 -1616812378991 ,112.5730384,26.88821037,59.7027359,180.7800616,181.2244677,13.120179,0.118470371,1620000000000 ,1620000000000 ,1620000000000 ,1616812378970 -1616812379001 ,112.5730384,26.88820919,59.70279312,180.7814822,181.2233374,13.131336,0.118572957,1620000000000 ,1620000000000 ,1620000000000 ,1616812378980 -1616812379009 ,112.5730383,26.888208,59.70283508,180.7831215,181.2081516,13.139253,0.118649093,1620000000000 ,1620000000000 ,1620000000000 ,1616812378990 -1616812379020 ,112.5730383,26.88820682,59.70290756,180.7873835,181.2037871,13.1454935,0.118707853,1620000000000 ,1620000000000 ,1620000000000 ,1616812379000 -1616812379030 ,112.5730383,26.88820563,59.70306015,180.7875474,181.2264528,13.154277,0.118786819,1620000000000 ,1620000000000 ,1620000000000 ,1616812379010 -1616812379040 ,112.5730383,26.88820444,59.70333481,180.7891047,181.2353636,13.159254,0.118841074,1620000000000 ,1620000000000 ,1620000000000 ,1616812379020 -1616812379053 ,112.5730382,26.88820325,59.70372391,180.7897331,181.2367452,13.1630335,0.11888373,1620000000000 ,1620000000000 ,1620000000000 ,1616812379030 -1616812379061 ,112.5730382,26.88820206,59.70416641,180.787848,181.2423552,13.167178,0.118925533,1620000000000 ,1620000000000 ,1620000000000 ,1616812379040 -1616812379074 ,112.5730382,26.88820087,59.70462799,180.7876021,181.2501623,13.170745,0.118956382,1620000000000 ,1620000000000 ,1620000000000 ,1616812379050 -1616812379081 ,112.5730382,26.88819968,59.70507813,180.7878207,181.258103,13.176824,0.119002762,1620000000000 ,1620000000000 ,1620000000000 ,1616812379060 -1616812379090 ,112.5730381,26.88819849,59.70549393,180.789296,181.2651461,13.187357,0.119090145,1620000000000 ,1620000000000 ,1620000000000 ,1616812379070 -1616812379100 ,112.5730381,26.8881973,59.7059021,180.789897,181.261154,13.198108,0.119187225,1620000000000 ,1620000000000 ,1620000000000 ,1616812379080 -1616812379114 ,112.5730381,26.88819611,59.70640945,180.7859628,181.2584323,13.204433,0.119258662,1620000000000 ,1620000000000 ,1620000000000 ,1616812379090 -1616812379123 ,112.5730381,26.88819492,59.70706177,180.7839138,181.2697786,13.20835,0.119304721,1620000000000 ,1620000000000 ,1620000000000 ,1616812379100 -1616812379135 ,112.573038,26.88819372,59.70777893,180.7801162,181.2719066,13.21418,0.119353427,1620000000000 ,1620000000000 ,1620000000000 ,1616812379110 -1616812379142 ,112.573038,26.88819253,59.70846558,180.7810451,181.272406,13.220897,0.119411671,1620000000000 ,1620000000000 ,1620000000000 ,1616812379120 -1616812379154 ,112.573038,26.88819133,59.709095,180.7789961,181.2806682,13.22822,0.119477655,1620000000000 ,1620000000000 ,1620000000000 ,1616812379130 -1616812379161 ,112.573038,26.88819014,59.70971298,180.7776027,181.2715042,13.2351265,0.119540402,1620000000000 ,1620000000000 ,1620000000000 ,1616812379140 -1616812379171 ,112.5730379,26.88818894,59.71033859,180.7760181,181.2638593,13.242241,0.119605551,1620000000000 ,1620000000000 ,1620000000000 ,1616812379150 -1616812379181 ,112.5730379,26.88818775,59.71098709,180.774051,181.2631467,13.248672,0.119666702,1620000000000 ,1620000000000 ,1620000000000 ,1616812379160 -1616812379191 ,112.5730379,26.88818655,59.71164322,180.7709911,181.2625182,13.253815,0.119715623,1620000000000 ,1620000000000 ,1620000000000 ,1616812379170 -1616812379203 ,112.5730378,26.88818535,59.71229935,180.7673301,181.2618449,13.260538,0.119769488,1620000000000 ,1620000000000 ,1620000000000 ,1616812379180 -1616812379213 ,112.5730378,26.88818415,59.71292496,180.7632047,181.2556376,13.267799,0.119834309,1620000000000 ,1620000000000 ,1620000000000 ,1616812379190 -1616812379222 ,112.5730378,26.88818296,59.71377182,180.7639696,181.4940216,13.280422,0.120017447,1620000000000 ,1620000000000 ,1620000000000 ,1616812379200 -1616812379235 ,112.5730378,26.88818175,59.71503448,180.7603633,181.8920212,13.288999,0.120225054,1620000000000 ,1620000000000 ,1620000000000 ,1616812379210 -1616812379243 ,112.5730377,26.88818055,59.71613693,180.7552816,181.9061932,13.296451,0.120291087,1620000000000 ,1620000000000 ,1620000000000 ,1616812379220 -1616812379252 ,112.5730377,26.88817935,59.71713257,180.7508284,181.9080557,13.302693,0.120346787,1620000000000 ,1620000000000 ,1620000000000 ,1616812379230 -1616812379263 ,112.5730376,26.88817815,59.71810532,180.7474406,181.8985786,13.30899,0.120399325,1620000000000 ,1620000000000 ,1620000000000 ,1616812379240 -1616812379272 ,112.5730376,26.88817694,59.71911621,180.7430966,181.8841992,13.3171015,0.120466894,1620000000000 ,1620000000000 ,1620000000000 ,1616812379250 -1616812379282 ,112.5730376,26.88817574,59.72015381,180.7391077,181.8764303,13.324633,0.120538121,1620000000000 ,1620000000000 ,1620000000000 ,1616812379260 -1616812379293 ,112.5730375,26.88817453,59.72126007,180.7347911,181.8779672,13.328247,0.12057975,1620000000000 ,1620000000000 ,1620000000000 ,1616812379270 -1616812379304 ,112.5730375,26.88817333,59.72244263,180.7300919,181.8671475,13.3325615,0.120620077,1620000000000 ,1620000000000 ,1620000000000 ,1616812379280 -1616812379312 ,112.5730374,26.88817212,59.72367096,180.7258845,181.8589083,13.339547,0.120676729,1620000000000 ,1620000000000 ,1620000000000 ,1616812379290 -1616812379323 ,112.5730374,26.88817091,59.72488785,180.7231524,181.862372,13.348057,0.120746087,1620000000000 ,1620000000000 ,1620000000000 ,1616812379300 -1616812379332 ,112.5730374,26.88816971,59.72609711,180.719109,181.8568772,13.354709,0.120813594,1620000000000 ,1620000000000 ,1620000000000 ,1616812379310 -1616812379343 ,112.5730373,26.8881685,59.72733307,180.7153387,181.8415032,13.3613825,0.120872891,1620000000000 ,1620000000000 ,1620000000000 ,1616812379320 -1616812379355 ,112.5730373,26.88816729,59.72862244,180.708891,181.8244562,13.367694,0.1209314,1620000000000 ,1620000000000 ,1620000000000 ,1616812379330 -1616812379362 ,112.5730372,26.88816608,59.72994614,180.7042465,181.8111227,13.373133,0.120979931,1620000000000 ,1620000000000 ,1620000000000 ,1616812379340 -1616812379373 ,112.5730372,26.88816487,59.73130035,180.6997659,181.8034489,13.379855,0.121041901,1620000000000 ,1620000000000 ,1620000000000 ,1616812379360 -1616812379383 ,112.5730372,26.88816366,59.73267746,180.696542,181.7828583,13.386028,0.121096618,1620000000000 ,1620000000000 ,1620000000000 ,1616812379370 -1616812379394 ,112.5730371,26.88816124,59.73548508,180.6907773,181.7623987,13.397749,0.24235231,1620000000000 ,1620000000000 ,1620000000000 ,1616812379380 -1616812379404 ,112.5730371,26.88816124,59.73548508,180.6907773,-400,13.397749,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812379380 -1616812379415 ,112.573037,26.88815881,59.73847198,180.6846028,181.7423291,13.411025,0.242572181,1620000000000 ,1620000000000 ,1620000000000 ,1616812379400 -1616812379425 ,112.573037,26.8881576,59.73997879,180.6821713,181.7296381,13.41813,0.121380689,1620000000000 ,1620000000000 ,1620000000000 ,1616812379410 -1616812379434 ,112.5730369,26.88815638,59.74146271,180.6778819,181.729843,13.424519,0.12143712,1620000000000 ,1620000000000 ,1620000000000 ,1616812379420 -1616812379451 ,112.5730369,26.88815517,59.74293137,180.6754231,181.7176929,13.431215,0.121501503,1620000000000 ,1620000000000 ,1620000000000 ,1616812379430 -1616812379455 ,112.5730369,26.88815396,59.74443054,180.6707239,181.7104876,13.437785,0.121555595,1620000000000 ,1620000000000 ,1620000000000 ,1616812379440 -1616812379467 ,112.5730368,26.88815274,59.74571991,180.6659974,181.4610542,13.4440975,0.121521179,1620000000000 ,1620000000000 ,1620000000000 ,1616812379450 -1616812379475 ,112.5730368,26.88815153,59.74676895,180.6634019,181.2108588,13.448795,0.121470828,1620000000000 ,1620000000000 ,1620000000000 ,1616812379460 -1616812379484 ,112.5730368,26.88815031,59.7478447,180.6615168,181.2110129,13.453536,0.121514822,1620000000000 ,1620000000000 ,1620000000000 ,1616812379470 -1616812379494 ,112.5730368,26.8881491,59.74890518,180.6555609,181.2106377,13.459049,0.121562093,1620000000000 ,1620000000000 ,1620000000000 ,1616812379480 -1616812379505 ,112.5730367,26.88814788,59.74993134,180.6526102,181.2033498,13.465972,0.121617663,1620000000000 ,1620000000000 ,1620000000000 ,1616812379490 -1616812379524 ,112.5730367,26.88814666,59.75092697,180.6500967,181.1934016,13.473097,0.121683716,1620000000000 ,1620000000000 ,1620000000000 ,1616812379500 -1616812379527 ,112.5730367,26.88814545,59.75190353,180.645097,181.192819,13.480508,0.121749555,1620000000000 ,1620000000000 ,1620000000000 ,1616812379510 -1616812379535 ,112.5730367,26.88814423,59.75291443,180.6413541,181.1896471,13.486412,0.121809102,1620000000000 ,1620000000000 ,1620000000000 ,1616812379520 -1616812379549 ,112.5730367,26.88814423,59.75291443,180.6413541,-400,13.486412,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812379530 -1616812379556 ,112.5730366,26.88814179,59.75518036,180.6333491,181.1733219,13.496862,0.243764654,1620000000000 ,1620000000000 ,1620000000000 ,1616812379540 -1616812379567 ,112.5730366,26.88814057,59.75643539,180.6299067,181.1688998,13.50087,0.1219505,1620000000000 ,1620000000000 ,1620000000000 ,1616812379550 -1616812379576 ,112.5730366,26.88813935,59.75772858,180.6256173,181.1673615,13.505703,0.121993507,1620000000000 ,1620000000000 ,1620000000000 ,1616812379560 -1616812379586 ,112.5730365,26.88813813,59.75907135,180.6208908,181.15649,13.510305,0.122040275,1620000000000 ,1620000000000 ,1620000000000 ,1616812379570 -1616812379595 ,112.5730365,26.88813691,59.76046371,180.6169566,181.1520965,13.516034,0.122085141,1620000000000 ,1620000000000 ,1620000000000 ,1616812379580 -1616812379605 ,112.5730365,26.88813569,59.76186371,180.6146344,181.1550445,13.523258,0.122151874,1620000000000 ,1620000000000 ,1620000000000 ,1616812379590 -1616812379615 ,112.5730365,26.88813447,59.76324081,180.6111373,181.1510589,13.530201,0.122216903,1620000000000 ,1620000000000 ,1620000000000 ,1616812379600 -1616812379626 ,112.5730364,26.88813325,59.76460648,180.6094434,181.1485088,13.534883,0.122266388,1620000000000 ,1620000000000 ,1620000000000 ,1616812379610 -1616812379636 ,112.5730364,26.88813202,59.76601028,180.6052907,181.1347003,13.538911,0.122301711,1620000000000 ,1620000000000 ,1620000000000 ,1616812379620 -1616812379646 ,112.5730364,26.8881308,59.76745987,180.6023127,181.1215271,13.544144,0.122354292,1620000000000 ,1620000000000 ,1620000000000 ,1616812379630 -1616812379659 ,112.5730364,26.88812958,59.76889038,180.6000724,181.1190405,13.550698,0.122408787,1620000000000 ,1620000000000 ,1620000000000 ,1616812379640 -1616812379667 ,112.5730363,26.88812835,59.77025223,180.5972037,181.1230242,13.55768,0.122467813,1620000000000 ,1620000000000 ,1620000000000 ,1616812379650 -1616812379676 ,112.5730363,26.88812713,59.77154922,180.595865,181.128955,13.562313,0.122515646,1620000000000 ,1620000000000 ,1620000000000 ,1616812379660 -1616812379688 ,112.5730363,26.8881259,59.77280045,180.5925592,181.1196637,13.5669,0.122558689,1620000000000 ,1620000000000 ,1620000000000 ,1616812379670 -1616812379695 ,112.5730363,26.88812468,59.77401733,180.5896086,181.1091261,13.572234,0.122600051,1620000000000 ,1620000000000 ,1620000000000 ,1616812379680 -1616812379706 ,112.5730362,26.88812345,59.77516937,180.5874229,181.09939,13.579205,0.122658366,1620000000000 ,1620000000000 ,1620000000000 ,1616812379690 -1616812379716 ,112.5730362,26.88812222,59.77623367,180.5851826,181.1033572,13.586488,0.122721587,1620000000000 ,1620000000000 ,1620000000000 ,1616812379700 -1616812379726 ,112.5730362,26.88812099,59.77722549,180.5830516,181.1098428,13.59349,0.12278443,1620000000000 ,1620000000000 ,1620000000000 ,1616812379710 -1616812379738 ,112.5730362,26.88811977,59.7781868,180.5814943,181.1103162,13.598918,0.12283476,1620000000000 ,1620000000000 ,1620000000000 ,1616812379720 -1616812379746 ,112.5730362,26.88811854,59.7791481,180.5779426,181.1065297,13.603779,0.122881878,1620000000000 ,1620000000000 ,1620000000000 ,1616812379730 -1616812379756 ,112.5730361,26.88811731,59.78007507,180.5756477,181.0997601,13.608652,0.122922728,1620000000000 ,1620000000000 ,1620000000000 ,1616812379740 -1616812379766 ,112.5730361,26.88811608,59.78091431,180.5733527,181.1060513,13.613429,0.12296197,1620000000000 ,1620000000000 ,1620000000000 ,1616812379750 -1616812379777 ,112.5730361,26.88811485,59.78168488,180.5727517,181.1185105,13.61936,0.123014229,1620000000000 ,1620000000000 ,1620000000000 ,1616812379760 -1616812379788 ,112.5730361,26.88811362,59.78242874,180.569036,181.1133787,13.625285,0.123065412,1620000000000 ,1620000000000 ,1620000000000 ,1616812379770 -1616812379797 ,112.573036,26.88811239,59.78318024,180.5675607,181.1094357,13.63119,0.123117561,1620000000000 ,1620000000000 ,1620000000000 ,1616812379780 -1616812379807 ,112.573036,26.88811116,59.78394699,180.5660034,181.1090636,13.63619,0.123165911,1620000000000 ,1620000000000 ,1620000000000 ,1616812379790 -1616812379817 ,112.573036,26.88810992,59.78467941,180.5671236,181.1094253,13.642133,0.12321082,1620000000000 ,1620000000000 ,1620000000000 ,1616812379800 -1616812379827 ,112.573036,26.88810869,59.78536224,180.5648013,181.1117052,13.64719,0.123260973,1620000000000 ,1620000000000 ,1620000000000 ,1616812379810 -1616812379838 ,112.5730359,26.88810746,59.78601456,180.5610311,181.112604,13.653824,0.123314734,1620000000000 ,1620000000000 ,1620000000000 ,1616812379820 -1616812379849 ,112.5730359,26.88810623,59.78668213,180.5579711,181.1159395,13.65824,0.123363137,1620000000000 ,1620000000000 ,1620000000000 ,1616812379830 -1616812379857 ,112.5730359,26.88810499,59.78739166,180.5545014,181.114174,13.664244,0.123411035,1620000000000 ,1620000000000 ,1620000000000 ,1616812379840 -1616812379869 ,112.5730359,26.88810376,59.7881546,180.5506765,181.1059671,13.669447,0.123462405,1620000000000 ,1620000000000 ,1620000000000 ,1616812379850 -1616812379878 ,112.5730358,26.88810252,59.78897858,180.5473434,181.0985366,13.672421,0.123502429,1620000000000 ,1620000000000 ,1620000000000 ,1616812379860 -1616812379888 ,112.5730358,26.88810129,59.78985977,180.5452123,181.0982879,13.675263,0.123522017,1620000000000 ,1620000000000 ,1620000000000 ,1616812379870 -1616812379900 ,112.5730358,26.88810005,59.79081345,180.5410323,181.0963712,13.678015,0.12355389,1620000000000 ,1620000000000 ,1620000000000 ,1616812379880 -1616812379908 ,112.5730358,26.88809882,59.79187393,180.5392291,181.089837,13.681757,0.123589495,1620000000000 ,1620000000000 ,1620000000000 ,1616812379890 -1616812379918 ,112.5730357,26.88809758,59.79300308,180.5388193,181.0833467,13.686737,0.123634803,1620000000000 ,1620000000000 ,1620000000000 ,1616812379900 -1616812379928 ,112.5730357,26.88809634,59.79413605,180.5376991,181.0777742,13.694425,0.123697135,1620000000000 ,1620000000000 ,1620000000000 ,1616812379910 -1616812379938 ,112.5730357,26.88809511,59.79522324,180.5384368,181.0809085,13.700519,0.123756362,1620000000000 ,1620000000000 ,1620000000000 ,1616812379920 -1616812379949 ,112.5730357,26.88809387,59.79627991,180.5378904,181.081367,13.7060995,0.12380856,1620000000000 ,1620000000000 ,1620000000000 ,1616812379930 -1616812379958 ,112.5730357,26.88809263,59.79737854,180.538027,181.0790617,13.710066,0.123851708,1620000000000 ,1620000000000 ,1620000000000 ,1616812379940 -1616812379969 ,112.5730356,26.88809139,59.79855347,180.5386007,181.0803036,13.712201,0.123877883,1620000000000 ,1620000000000 ,1620000000000 ,1616812379950 -1616812379979 ,112.5730356,26.88809015,59.79978561,180.539475,181.0784329,13.7172785,0.123919523,1620000000000 ,1620000000000 ,1620000000000 ,1616812379960 -1616812379989 ,112.5730356,26.88808891,59.80101013,180.5416333,181.0674441,13.722054,0.123962958,1620000000000 ,1620000000000 ,1620000000000 ,1616812379970 -1616812380003 ,112.5730356,26.88808767,59.80211258,180.5454855,181.0650643,13.727602,0.124008034,1620000000000 ,1620000000000 ,1620000000000 ,1616812379980 -1616812380013 ,112.5730355,26.88808643,59.80307388,180.5463871,181.0789589,13.73324,0.124054515,1620000000000 ,1620000000000 ,1620000000000 ,1616812379990 -1616812380023 ,112.5730355,26.88808519,59.80395126,180.5471794,181.0766681,13.737803,0.124099867,1620000000000 ,1620000000000 ,1620000000000 ,1616812380000 -1616812380032 ,112.5730355,26.88808395,59.80480576,180.5465511,181.0667172,13.741911,0.124131769,1620000000000 ,1620000000000 ,1620000000000 ,1616812380010 -1616812380040 ,112.5730355,26.88808271,59.80565643,180.546633,181.0612435,13.747359,0.124180914,1620000000000 ,1620000000000 ,1620000000000 ,1616812380020 -1616812380049 ,112.5730354,26.88808147,59.80645752,180.5492831,181.0532343,13.75112,0.124214396,1620000000000 ,1620000000000 ,1620000000000 ,1616812380030 -1616812380060 ,112.5730354,26.88808023,59.80718994,180.5520698,181.0573838,13.7580385,0.12426813,1620000000000 ,1620000000000 ,1620000000000 ,1616812380040 -1616812380072 ,112.5730354,26.88807898,59.80780411,180.5570149,181.0562577,13.762802,0.124314415,1620000000000 ,1620000000000 ,1620000000000 ,1616812380050 -1616812380080 ,112.5730354,26.88807774,59.80834579,180.5601841,181.0525083,13.767477,0.124352831,1620000000000 ,1620000000000 ,1620000000000 ,1616812380060 -1616812380090 ,112.5730354,26.8880765,59.80894089,180.563408,181.055994,13.77085,0.124391796,1620000000000 ,1620000000000 ,1620000000000 ,1616812380070 -1616812380100 ,112.5730353,26.88807525,59.80966568,180.5685169,181.0534847,13.774619,0.124426269,1620000000000 ,1620000000000 ,1620000000000 ,1616812380080 -1616812380113 ,112.5730353,26.88807401,59.81044769,180.5721506,181.0682603,13.777898,0.124457005,1620000000000 ,1620000000000 ,1620000000000 ,1616812380090 -1616812380121 ,112.5730353,26.88807276,59.81118774,180.5752925,181.0890136,13.7825165,0.124496595,1620000000000 ,1620000000000 ,1620000000000 ,1616812380100 -1616812380130 ,112.5730353,26.88807152,59.81184006,180.5773689,181.0970704,13.789049,0.12454804,1620000000000 ,1620000000000 ,1620000000000 ,1616812380110 -1616812380141 ,112.5730352,26.88807027,59.81245804,180.5783251,181.0967492,13.794009,0.124596474,1620000000000 ,1620000000000 ,1620000000000 ,1616812380120 -1616812380150 ,112.5730352,26.88806903,59.81310272,180.5797731,181.0914052,13.799097,0.124644833,1620000000000 ,1620000000000 ,1620000000000 ,1616812380130 -1616812380160 ,112.5730352,26.88806778,59.81380081,180.5818495,181.0935982,13.801132,0.124669285,1620000000000 ,1620000000000 ,1620000000000 ,1616812380140 -1616812380171 ,112.5730352,26.88806653,59.81456375,180.5859749,181.0992419,13.802437,0.124684419,1620000000000 ,1620000000000 ,1620000000000 ,1616812380150 -1616812380180 ,112.5730351,26.88806529,59.81535721,180.5891988,181.1027389,13.805853,0.124712543,1620000000000 ,1620000000000 ,1620000000000 ,1616812380160 -1616812380194 ,112.5730351,26.88806404,59.81612396,180.5922587,181.0912797,13.81227,0.124764596,1620000000000 ,1620000000000 ,1620000000000 ,1616812380170 -1616812380201 ,112.5730351,26.88806279,59.81681061,180.5948268,181.0842926,13.8181095,0.124813747,1620000000000 ,1620000000000 ,1620000000000 ,1616812380180 -1616812380211 ,112.5730351,26.88806154,59.81744003,180.5948815,181.0911229,13.82304,0.124861995,1620000000000 ,1620000000000 ,1620000000000 ,1616812380190 -1616812380222 ,112.573035,26.88806029,59.81762695,180.6017663,181.1643986,13.835258,0.125006999,1620000000000 ,1620000000000 ,1620000000000 ,1616812380200 -1616812380232 ,112.573035,26.88805904,59.81723785,180.6041432,181.2396823,13.836801,0.125188677,1620000000000 ,1620000000000 ,1620000000000 ,1616812380210 -1616812380246 ,112.573035,26.88805779,59.81694412,180.6072851,181.2409508,13.839182,0.125211185,1620000000000 ,1620000000000 ,1620000000000 ,1616812380220 -1616812380256 ,112.573035,26.88805654,59.81672287,180.6113832,181.2523919,13.8432045,0.125247734,1620000000000 ,1620000000000 ,1620000000000 ,1616812380230 -1616812380265 ,112.5730349,26.88805528,59.8164978,180.6138694,181.2602988,13.847217,0.125282632,1620000000000 ,1620000000000 ,1620000000000 ,1616812380240 -1616812380273 ,112.5730349,26.88805403,59.81621552,180.6152354,181.2688377,13.852127,0.125325664,1620000000000 ,1620000000000 ,1620000000000 ,1616812380250 -1616812380286 ,112.5730349,26.88805278,59.81590271,180.6137601,181.2754979,13.856256,0.1253627,1620000000000 ,1620000000000 ,1620000000000 ,1616812380260 -1616812380292 ,112.5730349,26.88805152,59.81556702,180.6120662,181.276521,13.862377,0.125413361,1620000000000 ,1620000000000 ,1620000000000 ,1616812380270 -1616812380303 ,112.5730348,26.88805027,59.81518936,180.6132683,181.2767703,13.867545,0.125458456,1620000000000 ,1620000000000 ,1620000000000 ,1616812380280 -1616812380312 ,112.5730348,26.88804901,59.81478119,180.6170932,181.278299,13.872197,0.125504903,1620000000000 ,1620000000000 ,1620000000000 ,1616812380290 -1616812380322 ,112.5730348,26.88804776,59.81436539,180.6184046,181.2777529,13.87578,0.125536861,1620000000000 ,1620000000000 ,1620000000000 ,1616812380300 -1616812380331 ,112.5730347,26.8880465,59.81397247,180.6198253,181.2714693,13.877295,0.125556121,1620000000000 ,1620000000000 ,1620000000000 ,1616812380310 -1616812380343 ,112.5730347,26.88804525,59.81353378,180.6230219,181.2644949,13.8802395,0.125579372,1620000000000 ,1620000000000 ,1620000000000 ,1616812380320 -1616812380353 ,112.5730347,26.88804399,59.81302261,180.6244152,181.2695015,13.885707,0.125615812,1620000000000 ,1620000000000 ,1620000000000 ,1616812380330 -1616812380362 ,112.5730347,26.88804274,59.81245041,180.6250163,181.2762585,13.891455,0.125664057,1620000000000 ,1620000000000 ,1620000000000 ,1616812380340 -1616812380372 ,112.5730346,26.88804148,59.81181717,180.6270926,181.2735111,13.895971,0.125707865,1620000000000 ,1620000000000 ,1620000000000 ,1616812380350 -1616812380382 ,112.5730346,26.88804022,59.81115723,180.6269287,181.2765417,13.9002905,0.125744045,1620000000000 ,1620000000000 ,1620000000000 ,1616812380360 -1616812380394 ,112.5730346,26.88803897,59.81051636,180.6270107,181.2804416,13.902921,0.125771756,1620000000000 ,1620000000000 ,1620000000000 ,1616812380370 -1616812380414 ,112.5730345,26.88803771,59.80991364,180.6268194,181.2856787,13.905667,0.125796481,1620000000000 ,1620000000000 ,1620000000000 ,1616812380380 -1616812380434 ,112.5730345,26.88803645,59.80931854,180.6276664,181.2975582,13.910759,0.125833246,1620000000000 ,1620000000000 ,1620000000000 ,1616812380400 -1616812380438 ,112.5730345,26.88803519,59.80871582,180.6297428,181.3012216,13.913753,0.125868349,1620000000000 ,1620000000000 ,1620000000000 ,1616812380400 -1616812380442 ,112.5730345,26.88803393,59.80815506,180.6326388,181.3027849,13.916729,0.125896411,1620000000000 ,1620000000000 ,1620000000000 ,1616812380410 -1616812380445 ,112.5730344,26.88803267,59.80767822,180.6329939,181.2975427,13.91966,0.125921859,1620000000000 ,1620000000000 ,1620000000000 ,1616812380430 -1616812380454 ,112.5730344,26.88803141,59.80728531,180.6348244,181.2994678,13.922977,0.125951845,1620000000000 ,1620000000000 ,1620000000000 ,1616812380440 -1616812380462 ,112.5730344,26.88803016,59.80693436,180.6371467,181.3079908,13.926454,0.125988096,1620000000000 ,1620000000000 ,1620000000000 ,1616812380450 -1616812380473 ,112.5730343,26.8880289,59.80703354,180.6389499,181.2421659,13.928979,0.125910768,1620000000000 ,1620000000000 ,1620000000000 ,1616812380460 -1616812380483 ,112.5730343,26.88802764,59.80764008,180.6407803,181.1783278,13.930378,0.125829835,1620000000000 ,1620000000000 ,1620000000000 ,1616812380470 -1616812380494 ,112.5730343,26.88802512,59.80895233,180.6435124,181.1697597,13.938461,0.251747151,1620000000000 ,1620000000000 ,1620000000000 ,1616812380480 -1616812380503 ,112.5730343,26.88802512,59.80895233,180.6435124,-400,13.938461,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812380480 -1616812380514 ,112.5730342,26.8880226,59.81028748,180.6442501,181.1780029,13.941487,0.251850719,1620000000000 ,1620000000000 ,1620000000000 ,1616812380500 -1616812380524 ,112.5730342,26.88802134,59.81108856,180.643649,181.1655767,13.943631,0.125950229,1620000000000 ,1620000000000 ,1620000000000 ,1616812380510 -1616812380533 ,112.5730342,26.88802008,59.81193161,180.6441681,181.1586123,13.9482355,0.125984101,1620000000000 ,1620000000000 ,1620000000000 ,1616812380520 -1616812380543 ,112.5730341,26.88801882,59.81274414,180.6452336,181.1588328,13.9509,0.126014099,1620000000000 ,1620000000000 ,1620000000000 ,1616812380530 -1616812380553 ,112.5730341,26.88801756,59.81352234,180.6458893,181.17109,13.953736,0.126041558,1620000000000 ,1620000000000 ,1620000000000 ,1616812380540 -1616812380564 ,112.5730341,26.8880163,59.81435013,180.6462445,181.1746636,13.954773,0.126055158,1620000000000 ,1620000000000 ,1620000000000 ,1616812380550 -1616812380574 ,112.5730341,26.88801504,59.81530762,180.6476925,181.1632284,13.956225,0.126071599,1620000000000 ,1620000000000 ,1620000000000 ,1616812380560 -1616812380585 ,112.573034,26.88801378,59.81633377,180.6501514,181.1525752,13.958361,0.126087691,1620000000000 ,1620000000000 ,1620000000000 ,1616812380570 -1616812380594 ,112.573034,26.88801252,59.81734848,180.6507524,181.1628152,13.961572,0.126116118,1620000000000 ,1620000000000 ,1620000000000 ,1616812380580 -1616812380605 ,112.573034,26.88801126,59.81835556,180.6504246,181.1750552,13.963529,0.126137538,1620000000000 ,1620000000000 ,1620000000000 ,1616812380590 -1616812380615 ,112.573034,26.88801,59.81937408,180.6509983,181.1752334,13.966128,0.126160614,1620000000000 ,1620000000000 ,1620000000000 ,1616812380600 -1616812380625 ,112.5730339,26.88800874,59.82039642,180.6512988,181.1841096,13.966206,0.126168773,1620000000000 ,1620000000000 ,1620000000000 ,1616812380610 -1616812380644 ,112.5730339,26.88800748,59.82135773,180.65302,181.175587,13.967067,0.126168526,1620000000000 ,1620000000000 ,1620000000000 ,1616812380620 -1616812380647 ,112.5730339,26.88800622,59.82225418,180.6542768,181.1752529,13.969529,0.12618845,1620000000000 ,1620000000000 ,1620000000000 ,1616812380630 -1616812380656 ,112.5730339,26.88800495,59.82310104,180.6529654,181.1765373,13.97296,0.12621786,1620000000000 ,1620000000000 ,1620000000000 ,1616812380640 -1616812380665 ,112.5730338,26.88800369,59.82393646,180.6544134,181.1695379,13.976577,0.126250086,1620000000000 ,1620000000000 ,1620000000000 ,1616812380650 -1616812380677 ,112.5730338,26.88800243,59.82479477,180.6545773,181.1619605,13.979254,0.126273269,1620000000000 ,1620000000000 ,1620000000000 ,1616812380660 -1616812380691 ,112.5730338,26.88800117,59.82566071,180.6548779,181.1536278,13.980815,0.126291276,1620000000000 ,1620000000000 ,1620000000000 ,1616812380670 -1616812380697 ,112.5730338,26.8879999,59.82652283,180.6566264,181.1496929,13.982908,0.126310408,1620000000000 ,1620000000000 ,1620000000000 ,1616812380680 -1616812380708 ,112.5730337,26.88799864,59.82732391,180.6590033,181.135405,13.98447,0.12632047,1620000000000 ,1620000000000 ,1620000000000 ,1616812380690 -1616812380716 ,112.5730337,26.88799738,59.82806015,180.6630741,181.1401487,13.988289,0.126349966,1620000000000 ,1620000000000 ,1620000000000 ,1616812380700 -1616812380727 ,112.5730337,26.88799611,59.82875824,180.6670083,181.1534364,13.991867,0.126380776,1620000000000 ,1620000000000 ,1620000000000 ,1616812380710 -1616812380736 ,112.5730337,26.88799485,59.82945251,180.6703414,181.1528034,13.995129,0.126414567,1620000000000 ,1620000000000 ,1620000000000 ,1616812380720 -1616812380746 ,112.5730336,26.88799359,59.83021927,180.6725271,181.1589507,13.996203,0.126433027,1620000000000 ,1620000000000 ,1620000000000 ,1616812380730 -1616812380756 ,112.5730336,26.88799232,59.83104706,180.6743849,181.1682849,13.9969845,0.126436846,1620000000000 ,1620000000000 ,1620000000000 ,1616812380740 -1616812380766 ,112.5730336,26.88799106,59.83187485,180.6749313,181.1766024,13.999965,0.126462159,1620000000000 ,1620000000000 ,1620000000000 ,1616812380750 -1616812380778 ,112.5730336,26.88798979,59.83261871,180.6773902,181.1874244,14.003295,0.126489878,1620000000000 ,1620000000000 ,1620000000000 ,1616812380760 -1616812380786 ,112.5730335,26.88798853,59.83328629,180.677117,181.1860777,14.005299,0.126506816,1620000000000 ,1620000000000 ,1620000000000 ,1616812380770 -1616812380795 ,112.5730335,26.88798726,59.83398438,180.6749859,181.1744485,14.006454,0.126519404,1620000000000 ,1620000000000 ,1620000000000 ,1616812380780 -1616812380806 ,112.5730335,26.887986,59.83476639,180.6742483,181.1601203,14.010414,0.126548431,1620000000000 ,1620000000000 ,1620000000000 ,1616812380790 -1616812380816 ,112.5730334,26.88798473,59.83560181,180.6744395,181.1563048,14.0093155,0.126554975,1620000000000 ,1620000000000 ,1620000000000 ,1616812380800 -1616812380829 ,112.5730334,26.88798347,59.83649063,180.6765979,181.1513779,14.01527,0.126591498,1620000000000 ,1620000000000 ,1620000000000 ,1616812380810 -1616812380836 ,112.5730334,26.8879822,59.83747101,180.6767618,181.1539297,14.016525,0.126618265,1620000000000 ,1620000000000 ,1620000000000 ,1616812380820 -1616812380846 ,112.5730334,26.88798093,59.83853912,180.6823352,181.1369703,14.016691,0.12662185,1620000000000 ,1620000000000 ,1620000000000 ,1616812380830 -1616812380857 ,112.5730333,26.88797967,59.83960342,180.6866519,181.1180264,14.017704,0.126631348,1620000000000 ,1620000000000 ,1620000000000 ,1616812380840 -1616812380869 ,112.5730333,26.8879784,59.84058762,180.6923346,181.1079092,14.020128,0.126644191,1620000000000 ,1620000000000 ,1620000000000 ,1616812380850 -1616812380877 ,112.5730333,26.88797714,59.84154892,180.6942197,181.1137199,14.025526,0.126684163,1620000000000 ,1620000000000 ,1620000000000 ,1616812380860 -1616812380887 ,112.5730333,26.88797587,59.84252167,180.6947662,181.1364507,14.030499,0.126737342,1620000000000 ,1620000000000 ,1620000000000 ,1616812380870 -1616812380897 ,112.5730332,26.8879746,59.84347153,180.6964054,181.1536376,14.033982,0.126767985,1620000000000 ,1620000000000 ,1620000000000 ,1616812380880 -1616812380908 ,112.5730332,26.88797333,59.84440231,180.6990009,181.1701855,14.03187,0.126761343,1620000000000 ,1620000000000 ,1620000000000 ,1616812380890 -1616812380919 ,112.5730332,26.88797207,59.84539413,180.700203,181.1752966,14.0294695,0.126738165,1620000000000 ,1620000000000 ,1620000000000 ,1616812380900 -1616812380930 ,112.5730332,26.8879708,59.84643555,180.7019788,181.1673901,14.033797,0.126760506,1620000000000 ,1620000000000 ,1620000000000 ,1616812380910 -1616812380940 ,112.5730331,26.88796953,59.84738541,180.7037274,181.1688246,14.042686,0.126829769,1620000000000 ,1620000000000 ,1620000000000 ,1616812380920 -1616812380948 ,112.5730331,26.88796826,59.84819412,180.7039459,181.1993417,14.049419,0.126892389,1620000000000 ,1620000000000 ,1620000000000 ,1616812380930 -1616812380958 ,112.5730331,26.88796699,59.84901047,180.7035908,181.2129753,14.048639,0.126906244,1620000000000 ,1620000000000 ,1620000000000 ,1616812380940 -1616812380971 ,112.5730331,26.88796573,59.84997177,180.7027438,181.203491,14.046806,0.126894888,1620000000000 ,1620000000000 ,1620000000000 ,1616812380950 -1616812380979 ,112.573033,26.88796446,59.85107803,180.7046016,181.1934641,14.046504,0.126888701,1620000000000 ,1620000000000 ,1620000000000 ,1616812380960 -1616812380987 ,112.573033,26.88796319,59.85222244,180.706596,181.1908686,14.049933,0.126917202,1620000000000 ,1620000000000 ,1620000000000 ,1616812380970 -1616812380997 ,112.573033,26.88796192,59.85334778,180.7077435,181.2141502,14.053553,0.126947302,1620000000000 ,1620000000000 ,1620000000000 ,1616812380980 -1616812381008 ,112.573033,26.88796065,59.85446548,180.7056398,181.2189783,14.054894,0.126966273,1620000000000 ,1620000000000 ,1620000000000 ,1616812380990 -1616812381018 ,112.5730329,26.88795938,59.85559845,180.7056671,181.2164259,14.055536,0.126974122,1620000000000 ,1620000000000 ,1620000000000 ,1616812381000 -1616812381029 ,112.5730329,26.88795811,59.85675812,180.706678,181.2106086,14.058597,0.126993412,1620000000000 ,1620000000000 ,1620000000000 ,1616812381010 -1616812381038 ,112.5730329,26.88795684,59.85789108,180.7065414,181.2144427,14.0627365,0.127027561,1620000000000 ,1620000000000 ,1620000000000 ,1616812381020 -1616812381048 ,112.5730328,26.88795557,59.85897446,180.7070332,181.2386839,14.065382,0.127061069,1620000000000 ,1620000000000 ,1620000000000 ,1616812381030 -1616812381058 ,112.5730328,26.8879543,59.86003876,180.7055852,181.2538512,14.065299,0.12706436,1620000000000 ,1620000000000 ,1620000000000 ,1616812381040 -1616812381071 ,112.5730328,26.88795303,59.86112213,180.7051207,181.256386,14.0651245,0.12706205,1620000000000 ,1620000000000 ,1620000000000 ,1616812381050 -1616812381078 ,112.5730328,26.88795176,59.86223221,180.7030443,181.2533177,14.065595,0.127065815,1620000000000 ,1620000000000 ,1620000000000 ,1616812381060 -1616812381088 ,112.5730327,26.88795049,59.86330032,180.7020062,181.2544871,14.07004,0.127099672,1620000000000 ,1620000000000 ,1620000000000 ,1616812381070 -1616812381098 ,112.5730327,26.88794922,59.86432266,180.7005582,181.2724322,14.072495,0.127126003,1620000000000 ,1620000000000 ,1620000000000 ,1616812381080 -1616812381108 ,112.5730327,26.88794795,59.86534119,180.7011046,181.280051,14.072806,0.127134249,1620000000000 ,1620000000000 ,1620000000000 ,1616812381090 -1616812381120 ,112.5730327,26.88794668,59.86642456,180.7003669,181.2761004,14.071916,0.127133038,1620000000000 ,1620000000000 ,1620000000000 ,1616812381100 -1616812381130 ,112.5730326,26.8879454,59.86755753,180.700121,181.2679194,14.0725765,0.127134691,1620000000000 ,1620000000000 ,1620000000000 ,1616812381110 -1616812381140 ,112.5730326,26.88794413,59.86863327,180.6993287,181.2636159,14.073478,0.127141257,1620000000000 ,1620000000000 ,1620000000000 ,1616812381120 -1616812381149 ,112.5730326,26.88794286,59.86958313,180.6985364,181.2730725,14.075396,0.127158086,1620000000000 ,1620000000000 ,1620000000000 ,1616812381130 -1616812381159 ,112.5730325,26.88794159,59.87042236,180.6965147,181.2823305,14.076353,0.127163314,1620000000000 ,1620000000000 ,1620000000000 ,1616812381140 -1616812381170 ,112.5730325,26.88794032,59.87125397,180.6954219,181.2805842,14.077755,0.127175559,1620000000000 ,1620000000000 ,1620000000000 ,1616812381150 -1616812381179 ,112.5730325,26.88793905,59.8721199,180.6943837,181.2684696,14.07709,0.127178929,1620000000000 ,1620000000000 ,1620000000000 ,1616812381160 -1616812381190 ,112.5730325,26.88793778,59.87295151,180.6921707,181.2580451,14.078066,0.12718299,1620000000000 ,1620000000000 ,1620000000000 ,1616812381170 -1616812381199 ,112.5730324,26.8879365,59.87371826,180.6914603,181.2655931,14.079632,0.127192884,1620000000000 ,1620000000000 ,1620000000000 ,1616812381180 -1616812381209 ,112.5730324,26.88793523,59.87438965,180.6927444,181.2745641,14.082161,0.127207738,1620000000000 ,1620000000000 ,1620000000000 ,1616812381190 -1616812381221 ,112.5730324,26.88793396,59.87467575,180.7009407,181.311114,14.069144,0.127030097,1620000000000 ,1620000000000 ,1620000000000 ,1616812381200 -1616812381234 ,112.5730323,26.8879327,59.87447357,180.6980446,181.3571992,14.070123,0.126698192,1620000000000 ,1620000000000 ,1620000000000 ,1616812381210 -1616812381240 ,112.5730323,26.88793143,59.87428284,180.696542,181.3472673,14.069383,0.126698155,1620000000000 ,1620000000000 ,1620000000000 ,1616812381220 -1616812381250 ,112.5730323,26.88793016,59.87405777,180.6966786,181.3468523,14.070523,0.126701995,1620000000000 ,1620000000000 ,1620000000000 ,1616812381230 -1616812381261 ,112.5730322,26.8879289,59.87378693,180.698072,181.3573226,14.072706,0.126715893,1620000000000 ,1620000000000 ,1620000000000 ,1616812381240 -1616812381273 ,112.5730322,26.88792763,59.87346268,180.6973616,181.3510823,14.076064,0.126741446,1620000000000 ,1620000000000 ,1620000000000 ,1616812381250 -1616812381281 ,112.5730322,26.88792636,59.87312698,180.6966513,181.3350517,14.0773,0.126759637,1620000000000 ,1620000000000 ,1620000000000 ,1616812381260 -1616812381291 ,112.5730322,26.88792509,59.8727951,180.6948481,181.3243382,14.077568,0.126763847,1620000000000 ,1620000000000 ,1620000000000 ,1616812381270 -1616812381300 ,112.5730321,26.88792383,59.87245178,180.6962688,181.3237534,14.079383,0.126775487,1620000000000 ,1620000000000 ,1620000000000 ,1616812381280 -1616812381312 ,112.5730321,26.88792256,59.8720665,180.6971704,181.3276163,14.080857,0.126787999,1620000000000 ,1620000000000 ,1620000000000 ,1616812381290 -1616812381323 ,112.5730321,26.88792129,59.87160873,180.6985911,181.3254106,14.084463,0.126811824,1620000000000 ,1620000000000 ,1620000000000 ,1616812381300 -1616812381335 ,112.573032,26.88792002,59.87109756,180.6978807,181.3256729,14.086626,0.126833111,1620000000000 ,1620000000000 ,1620000000000 ,1616812381310 -1616812381345 ,112.573032,26.88791876,59.87055969,180.6994653,181.3146525,14.0884,0.126848356,1620000000000 ,1620000000000 ,1620000000000 ,1616812381320 -1616812381354 ,112.573032,26.88791749,59.87004471,180.6993834,181.309086,14.091259,0.126873354,1620000000000 ,1620000000000 ,1620000000000 ,1616812381330 -1616812381361 ,112.573032,26.88791622,59.86959076,180.6987277,181.310244,14.091922,0.126884547,1620000000000 ,1620000000000 ,1620000000000 ,1616812381340 -1616812381371 ,112.5730319,26.88791495,59.86919022,180.6996019,181.3134544,14.093375,0.126898638,1620000000000 ,1620000000000 ,1620000000000 ,1616812381350 -1616812381382 ,112.5730319,26.88791368,59.86882019,180.7003942,181.3124502,14.092957,0.126898987,1620000000000 ,1620000000000 ,1620000000000 ,1616812381360 -1616812381395 ,112.5730319,26.88791241,59.8684845,180.7020608,181.3093668,14.095547,0.126917232,1620000000000 ,1620000000000 ,1620000000000 ,1616812381370 -1616812381404 ,112.5730318,26.88791114,59.86817169,180.7034542,181.308832,14.097814,0.126938848,1620000000000 ,1620000000000 ,1620000000000 ,1616812381380 -1616812381411 ,112.5730318,26.88790987,59.86788177,180.7039186,181.3055698,14.098751,0.126951917,1620000000000 ,1620000000000 ,1620000000000 ,1616812381390 -1616812381423 ,112.5730318,26.8879086,59.86764526,180.7042191,181.3122255,14.099566,0.126961367,1620000000000 ,1620000000000 ,1620000000000 ,1616812381400 -1616812381432 ,112.5730318,26.88790734,59.86746979,180.7055852,181.3180686,14.099739,0.126966263,1620000000000 ,1620000000000 ,1620000000000 ,1616812381410 -1616812381442 ,112.5730317,26.88790607,59.86734009,180.7067327,181.319886,14.102541,0.126986049,1620000000000 ,1620000000000 ,1620000000000 ,1616812381420 -1616812381452 ,112.5730317,26.8879048,59.86722183,180.7068419,181.3160935,14.104747,0.12701125,1620000000000 ,1620000000000 ,1620000000000 ,1616812381430 -1616812381461 ,112.5730317,26.88790353,59.86709976,180.7077435,181.313918,14.106609,0.127029327,1620000000000 ,1620000000000 ,1620000000000 ,1616812381440 -1616812381473 ,112.5730316,26.88790225,59.86735153,180.7085085,181.2753443,14.1067,0.127237198,1620000000000 ,1620000000000 ,1620000000000 ,1616812381450 -1616812381483 ,112.5730316,26.88790098,59.86795044,180.7100111,181.2318977,14.10765,0.127444218,1620000000000 ,1620000000000 ,1620000000000 ,1616812381460 -1616812381495 ,112.5730316,26.88789971,59.86852646,180.7106942,181.2417372,14.109816,0.127459799,1620000000000 ,1620000000000 ,1620000000000 ,1616812381470 -1616812381503 ,112.5730316,26.88789843,59.86901474,180.7105029,181.2372052,14.113657,0.127487369,1620000000000 ,1620000000000 ,1620000000000 ,1616812381480 -1616812381514 ,112.5730315,26.88789716,59.86941528,180.7100931,181.2399481,14.11585,0.127511092,1620000000000 ,1620000000000 ,1620000000000 ,1616812381490 -1616812381524 ,112.5730315,26.88789588,59.86976242,180.7102297,181.2448429,14.118407,0.127530078,1620000000000 ,1620000000000 ,1620000000000 ,1616812381500 -1616812381534 ,112.5730315,26.88789461,59.87008667,180.7097653,181.237224,14.11944,0.127538741,1620000000000 ,1620000000000 ,1620000000000 ,1616812381510 -1616812381546 ,112.5730314,26.88789333,59.8703804,180.7101751,181.2429944,14.123046,0.127565692,1620000000000 ,1620000000000 ,1620000000000 ,1616812381520 -1616812381555 ,112.5730314,26.88789206,59.87064362,180.7109947,181.250441,14.125456,0.127588161,1620000000000 ,1620000000000 ,1620000000000 ,1616812381530 -1616812381563 ,112.5730314,26.88789078,59.87085724,180.7098199,181.2477141,14.12736,0.127606366,1620000000000 ,1620000000000 ,1620000000000 ,1616812381540 -1616812381573 ,112.5730314,26.8878895,59.87105179,180.7084265,181.2501029,14.129152,0.127619149,1620000000000 ,1620000000000 ,1620000000000 ,1616812381550 -1616812381585 ,112.5730313,26.88788823,59.87123871,180.7108581,181.2525166,14.130585,0.127632325,1620000000000 ,1620000000000 ,1620000000000 ,1616812381570 -1616812381593 ,112.5730313,26.88788695,59.87145996,180.7100111,181.2536368,14.132815,0.127652944,1620000000000 ,1620000000000 ,1620000000000 ,1616812381580 -1616812381604 ,112.5730313,26.88788568,59.87172699,180.7099292,181.2504068,14.134039,0.127665887,1620000000000 ,1620000000000 ,1620000000000 ,1616812381580 -1616812381613 ,112.5730312,26.88788312,59.87237167,180.706596,181.2487756,14.136266,0.255369213,1620000000000 ,1620000000000 ,1620000000000 ,1616812381600 -1616812381633 ,112.5730312,26.88788312,59.87237167,180.706596,-400,14.136266,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812381610 -1616812381638 ,112.5730312,26.88788057,59.87311935,180.7046836,181.2511267,14.139706,0.255425488,1620000000000 ,1620000000000 ,1620000000000 ,1616812381620 -1616812381647 ,112.5730311,26.88787929,59.87349319,180.7052027,181.2581612,14.142042,0.127738526,1620000000000 ,1620000000000 ,1620000000000 ,1616812381630 -1616812381655 ,112.5730311,26.88787929,59.87349319,180.7052027,-400,14.142042,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812381640 -1616812381664 ,112.5730311,26.88787674,59.87431717,180.7015963,181.2516897,14.14519,0.255529012,1620000000000 ,1620000000000 ,1620000000000 ,1616812381650 -1616812381676 ,112.5730311,26.88787546,59.87476349,180.700886,181.2487872,14.148197,0.127795316,1620000000000 ,1620000000000 ,1620000000000 ,1616812381660 -1616812381684 ,112.573031,26.88787418,59.8752327,180.7003669,181.255256,14.148997,0.127807991,1620000000000 ,1620000000000 ,1620000000000 ,1616812381670 -1616812381694 ,112.573031,26.8878729,59.87577438,180.7001757,181.2606141,14.148962,0.127812278,1620000000000 ,1620000000000 ,1620000000000 ,1616812381680 -1616812381705 ,112.573031,26.88787163,59.87641907,180.6997932,181.2520388,14.149589,0.127823843,1620000000000 ,1620000000000 ,1620000000000 ,1616812381690 -1616812381715 ,112.5730309,26.88787035,59.87714005,180.6985364,181.248929,14.151002,0.127835837,1620000000000 ,1620000000000 ,1620000000000 ,1616812381700 -1616812381724 ,112.5730309,26.88786907,59.87788391,180.6984818,181.2466516,14.152183,0.127850906,1620000000000 ,1620000000000 ,1620000000000 ,1616812381710 -1616812381734 ,112.5730309,26.88786779,59.87860489,180.6993014,181.2491936,14.153148,0.127856931,1620000000000 ,1620000000000 ,1620000000000 ,1616812381720 -1616812381746 ,112.5730309,26.88786651,59.87932587,180.6987277,181.2502808,14.155235,0.127875827,1620000000000 ,1620000000000 ,1620000000000 ,1616812381730 -1616812381755 ,112.5730308,26.88786523,59.8800621,180.6967879,181.2506716,14.156309,0.127889141,1620000000000 ,1620000000000 ,1620000000000 ,1616812381740 -1616812381765 ,112.5730308,26.88786396,59.88081741,180.6966513,181.2461145,14.157819,0.127905217,1620000000000 ,1620000000000 ,1620000000000 ,1616812381750 -1616812381776 ,112.5730308,26.88786268,59.88155365,180.6944383,181.2466848,14.158059,0.127909287,1620000000000 ,1620000000000 ,1620000000000 ,1616812381760 -1616812381785 ,112.5730307,26.8878614,59.882267,180.6963234,181.2428298,14.159243,0.127917972,1620000000000 ,1620000000000 ,1620000000000 ,1616812381770 -1616812381796 ,112.5730307,26.88786012,59.88292694,180.6950394,181.2417676,14.160697,0.127925674,1620000000000 ,1620000000000 ,1620000000000 ,1616812381780 -1616812381805 ,112.5730307,26.88785884,59.88350296,180.6937826,181.2441184,14.163541,0.127946638,1620000000000 ,1620000000000 ,1620000000000 ,1616812381790 -1616812381816 ,112.5730307,26.88785756,59.88395691,180.6942744,181.2427903,14.166061,0.127969733,1620000000000 ,1620000000000 ,1620000000000 ,1616812381800 -1616812381825 ,112.5730306,26.88785628,59.88428879,180.6924712,181.2387785,14.168291,0.127982941,1620000000000 ,1620000000000 ,1620000000000 ,1616812381810 -1616812381835 ,112.5730306,26.887855,59.88455582,180.6918702,181.2298247,14.169437,0.12799444,1620000000000 ,1620000000000 ,1620000000000 ,1616812381820 -1616812381845 ,112.5730306,26.88785372,59.8847847,180.6896572,181.2269329,14.171061,0.128006774,1620000000000 ,1620000000000 ,1620000000000 ,1616812381830 -1616812381856 ,112.5730306,26.88785244,59.88496399,180.6883731,181.2320628,14.17259,0.128016879,1620000000000 ,1620000000000 ,1620000000000 ,1616812381840 -1616812381866 ,112.5730305,26.88785116,59.88509369,180.6869524,181.2405625,14.176071,0.128040078,1620000000000 ,1620000000000 ,1620000000000 ,1616812381850 -1616812381876 ,112.5730305,26.88784988,59.88520813,180.6861601,181.2407121,14.1760845,0.128048464,1620000000000 ,1620000000000 ,1620000000000 ,1616812381860 -1616812381885 ,112.5730305,26.8878486,59.88532639,180.6839471,181.2328282,14.177797,0.128060334,1620000000000 ,1620000000000 ,1620000000000 ,1616812381870 -1616812381897 ,112.5730304,26.88784732,59.88542938,180.6820893,181.2243763,14.177332,0.128059669,1620000000000 ,1620000000000 ,1620000000000 ,1616812381880 -1616812381910 ,112.5730304,26.88784604,59.88551331,180.6818161,181.22895,14.179407,0.128068896,1620000000000 ,1620000000000 ,1620000000000 ,1616812381890 -1616812381921 ,112.5730304,26.88784476,59.8856163,180.6808599,181.2340159,14.180599,0.128083722,1620000000000 ,1620000000000 ,1620000000000 ,1616812381900 -1616812381930 ,112.5730304,26.88784348,59.88577271,180.6776907,181.2318661,14.182149,0.128096813,1620000000000 ,1620000000000 ,1620000000000 ,1616812381910 -1616812381936 ,112.5730303,26.8878422,59.88597107,180.6759968,181.2219846,14.180971,0.128092568,1620000000000 ,1620000000000 ,1620000000000 ,1616812381920 -1616812381947 ,112.5730303,26.88784092,59.88619995,180.6739477,181.2196554,14.181358,0.128091263,1620000000000 ,1620000000000 ,1620000000000 ,1616812381930 -1616812381957 ,112.5730303,26.88783964,59.88647842,180.6721173,181.2204751,14.182843,0.128100995,1620000000000 ,1620000000000 ,1620000000000 ,1616812381940 -1616812381968 ,112.5730303,26.88783836,59.88679123,180.6710791,181.2180521,14.184663,0.128117189,1620000000000 ,1620000000000 ,1620000000000 ,1616812381950 -1616812381976 ,112.5730302,26.88783707,59.88713837,180.6676913,181.2179469,14.1860485,0.128131523,1620000000000 ,1620000000000 ,1620000000000 ,1616812381960 -1616812381987 ,112.5730302,26.88783579,59.88753128,180.6649592,181.2103083,14.185833,0.128134948,1620000000000 ,1620000000000 ,1620000000000 ,1616812381970 -1616812381997 ,112.5730302,26.88783451,59.88797379,180.6639757,181.2000656,14.187058,0.12814258,1620000000000 ,1620000000000 ,1620000000000 ,1616812381980 -1616812382007 ,112.5730301,26.88783323,59.88843918,180.6625003,181.2021798,14.188123,0.128148839,1620000000000 ,1620000000000 ,1620000000000 ,1616812381990 -1616812382017 ,112.5730301,26.88783195,59.88894653,180.6596043,181.1946923,14.188593,0.128156802,1620000000000 ,1620000000000 ,1620000000000 ,1616812382000 -1616812382028 ,112.5730301,26.88783067,59.88953781,180.6590306,181.1878319,14.189039,0.128165502,1620000000000 ,1620000000000 ,1620000000000 ,1616812382010 -1616812382038 ,112.5730301,26.88782939,59.89022446,180.6584569,181.1932456,14.189113,0.128167627,1620000000000 ,1620000000000 ,1620000000000 ,1616812382020 -1616812382048 ,112.57303,26.88782811,59.89097214,180.6571455,181.1875665,14.190359,0.128179118,1620000000000 ,1620000000000 ,1620000000000 ,1616812382030 -1616812382057 ,112.57303,26.88782682,59.89174271,180.655916,181.185163,14.19037,0.128183027,1620000000000 ,1620000000000 ,1620000000000 ,1616812382040 -1616812382068 ,112.57303,26.88782554,59.89253616,180.6549598,181.193347,14.191759,0.128191134,1620000000000 ,1620000000000 ,1620000000000 ,1616812382050 -1616812382077 ,112.57303,26.88782426,59.89332962,180.6530747,181.1908251,14.193137,0.128205257,1620000000000 ,1620000000000 ,1620000000000 ,1616812382060 -1616812382088 ,112.5730299,26.88782298,59.89414597,180.6520365,181.1920729,14.190574,0.128192125,1620000000000 ,1620000000000 ,1620000000000 ,1616812382070 -1616812382098 ,112.5730299,26.8878217,59.89506531,180.6510529,181.1948002,14.190218,0.128191647,1620000000000 ,1620000000000 ,1620000000000 ,1616812382080 -1616812382109 ,112.5730299,26.88782042,59.89606857,180.6508071,181.189479,14.189311,0.128184589,1620000000000 ,1620000000000 ,1620000000000 ,1616812382090 -1616812382118 ,112.5730298,26.88781913,59.89710999,180.6496323,181.195255,14.191436,0.128196761,1620000000000 ,1620000000000 ,1620000000000 ,1616812382100 -1616812382135 ,112.5730298,26.88781785,59.8981514,180.6497962,181.2038418,14.193308,0.128217211,1620000000000 ,1620000000000 ,1620000000000 ,1616812382110 -1616812382141 ,112.5730298,26.88781657,59.89918137,180.6498235,181.1998821,14.192261,0.128217283,1620000000000 ,1620000000000 ,1620000000000 ,1616812382120 -1616812382150 ,112.5730298,26.88781529,59.90021896,180.6484302,181.1900981,14.192183,0.128211384,1620000000000 ,1620000000000 ,1620000000000 ,1616812382130 -1616812382158 ,112.5730297,26.88781401,59.90125656,180.647392,181.1820081,14.190853,0.128207468,1620000000000 ,1620000000000 ,1620000000000 ,1616812382140 -1616812382169 ,112.5730297,26.88781273,59.90226364,180.6461625,181.1802121,14.191339,0.128205423,1620000000000 ,1620000000000 ,1620000000000 ,1616812382150 -1616812382179 ,112.5730297,26.88781144,59.90322876,180.6457527,181.1893637,14.193657,0.128222206,1620000000000 ,1620000000000 ,1620000000000 ,1616812382160 -1616812382191 ,112.5730297,26.88781016,59.90416336,180.6428567,181.1864013,14.192929,0.128222216,1620000000000 ,1620000000000 ,1620000000000 ,1616812382170 -1616812382198 ,112.5730296,26.88780888,59.90512466,180.6423376,181.1891668,14.192542,0.128221391,1620000000000 ,1620000000000 ,1620000000000 ,1616812382180 -1616812382209 ,112.5730296,26.8878076,59.90610123,180.643731,181.1875428,14.191866,0.128216169,1620000000000 ,1620000000000 ,1620000000000 ,1616812382190 -1616812382219 ,112.5730296,26.88780631,59.9066391,180.6480203,181.1850078,14.194869,0.128260214,1620000000000 ,1620000000000 ,1620000000000 ,1616812382200 -1616812382230 ,112.5730296,26.88780503,59.90645218,180.6440588,181.1720786,14.195095,0.128300187,1620000000000 ,1620000000000 ,1620000000000 ,1616812382210 -1616812382239 ,112.5730295,26.88780375,59.90616608,180.6437856,181.1767993,14.195826,0.128304899,1620000000000 ,1620000000000 ,1620000000000 ,1616812382220 -1616812382249 ,112.5730295,26.88780247,59.90579987,180.6418459,181.1745103,14.19533,0.128302621,1620000000000 ,1620000000000 ,1620000000000 ,1616812382230 -1616812382259 ,112.5730295,26.88780118,59.90538406,180.640753,181.1717117,14.196153,0.128304506,1620000000000 ,1620000000000 ,1620000000000 ,1616812382240 -1616812382271 ,112.5730295,26.8877999,59.90498352,180.638704,181.1692558,14.193508,0.128289888,1620000000000 ,1620000000000 ,1620000000000 ,1616812382250 -1616812382280 ,112.5730294,26.88779862,59.90462112,180.6390865,181.1693583,14.192497,0.128278856,1620000000000 ,1620000000000 ,1620000000000 ,1616812382260 -1616812382289 ,112.5730294,26.88779734,59.90427399,180.6391684,181.1671018,14.191382,0.128269742,1620000000000 ,1620000000000 ,1620000000000 ,1616812382270 -1616812382299 ,112.5730294,26.88779605,59.90385056,180.6390865,181.1650977,14.194086,0.12828138,1620000000000 ,1620000000000 ,1620000000000 ,1616812382280 -1616812382310 ,112.5730293,26.88779477,59.90330887,180.6394963,181.1679613,14.194994,0.128288509,1620000000000 ,1620000000000 ,1620000000000 ,1616812382290 -1616812382322 ,112.5730293,26.88779349,59.90265274,180.6379936,181.1713895,14.195644,0.12829398,1620000000000 ,1620000000000 ,1620000000000 ,1616812382300 -1616812382335 ,112.5730293,26.88779221,59.90195465,180.6382122,181.1705899,14.195283,0.128292419,1620000000000 ,1620000000000 ,1620000000000 ,1616812382310 -1616812382342 ,112.5730293,26.88779092,59.90125275,180.6367369,181.1648948,14.195263,0.128287849,1620000000000 ,1620000000000 ,1620000000000 ,1616812382320 -1616812382350 ,112.5730292,26.88778964,59.90058136,180.6352889,181.1671212,14.194635,0.128286091,1620000000000 ,1620000000000 ,1620000000000 ,1616812382330 -1616812382360 ,112.5730292,26.88778836,59.8999176,180.6353708,181.1724095,14.193587,0.12827656,1620000000000 ,1620000000000 ,1620000000000 ,1616812382340 -1616812382373 ,112.5730292,26.88778708,59.89923859,180.6354801,181.1699525,14.193652,0.128276004,1620000000000 ,1620000000000 ,1620000000000 ,1616812382350 -1616812382380 ,112.5730292,26.88778579,59.89853287,180.634196,181.1654352,14.192597,0.128265683,1620000000000 ,1620000000000 ,1620000000000 ,1616812382360 -1616812382391 ,112.5730291,26.88778451,59.89780426,180.6331305,181.1624651,14.193565,0.128268686,1620000000000 ,1620000000000 ,1620000000000 ,1616812382370 -1616812382400 ,112.5730291,26.88778323,59.89706802,180.6347425,181.1628962,14.194417,0.128279184,1620000000000 ,1620000000000 ,1620000000000 ,1616812382380 -1616812382411 ,112.5730291,26.88778195,59.8963089,180.6368188,181.1622346,14.194966,0.128281933,1620000000000 ,1620000000000 ,1620000000000 ,1616812382390 -1616812382424 ,112.5730291,26.88778066,59.89550781,180.6369828,181.1641958,14.193835,0.128273799,1620000000000 ,1620000000000 ,1620000000000 ,1616812382400 -1616812382433 ,112.573029,26.88777938,59.8947258,180.635644,181.1654653,14.190595,0.128250841,1620000000000 ,1620000000000 ,1620000000000 ,1616812382410 -1616812382441 ,112.573029,26.8877781,59.89400101,180.6352889,181.1614537,14.188816,0.128232155,1620000000000 ,1620000000000 ,1620000000000 ,1616812382420 -1616812382451 ,112.573029,26.88777682,59.89331818,180.6343053,181.1593476,14.18741,0.128218265,1620000000000 ,1620000000000 ,1620000000000 ,1616812382430 -1616812382464 ,112.573029,26.88777554,59.89263916,180.6334037,181.1596522,14.186334,0.128208824,1620000000000 ,1620000000000 ,1620000000000 ,1616812382440 -1616812382474 ,112.5730289,26.88777425,59.89238358,180.6324475,181.1594167,14.186977,0.128177551,1620000000000 ,1620000000000 ,1620000000000 ,1616812382450 -1616812382481 ,112.5730289,26.88777297,59.89256668,180.6313274,181.1518104,14.187628,0.128147618,1620000000000 ,1620000000000 ,1620000000000 ,1616812382460 -1616812382491 ,112.5730289,26.88777169,59.89277649,180.6309722,181.1404834,14.18807,0.128159442,1620000000000 ,1620000000000 ,1620000000000 ,1616812382470 -1616812382502 ,112.5730289,26.88777041,59.89302444,180.6318191,181.1410852,14.186523,0.128151303,1620000000000 ,1620000000000 ,1620000000000 ,1616812382480 -1616812382513 ,112.5730288,26.88776913,59.89335632,180.6323929,181.151208,14.182718,0.128124199,1620000000000 ,1620000000000 ,1620000000000 ,1616812382490 -1616812382523 ,112.5730288,26.88776785,59.89375305,180.635043,181.1516609,14.180096,0.128097508,1620000000000 ,1620000000000 ,1620000000000 ,1616812382500 -1616812382532 ,112.5730288,26.88776657,59.8941803,180.6354801,181.1471402,14.179492,0.128091741,1620000000000 ,1620000000000 ,1620000000000 ,1616812382510 -1616812382543 ,112.5730288,26.88776529,59.89455795,180.6376111,181.1371026,14.180642,0.128091583,1620000000000 ,1620000000000 ,1620000000000 ,1616812382520 -1616812382553 ,112.5730287,26.88776401,59.89486313,180.638704,181.1419749,14.18269,0.128105024,1620000000000 ,1620000000000 ,1620000000000 ,1616812382530 -1616812382562 ,112.5730287,26.88776273,59.89512634,180.6408896,181.1494843,14.185087,0.128131057,1620000000000 ,1620000000000 ,1620000000000 ,1616812382540 -1616812382572 ,112.5730287,26.88776144,59.89536285,180.6388406,181.1467886,14.187177,0.128144217,1620000000000 ,1620000000000 ,1620000000000 ,1616812382550 -1616812382590 ,112.5730286,26.88776016,59.89558029,180.6387586,181.1473869,14.187717,0.128155043,1620000000000 ,1620000000000 ,1620000000000 ,1616812382560 -1616812382598 ,112.5730286,26.88775888,59.89574051,180.64007,181.1436608,14.187398,0.128148464,1620000000000 ,1620000000000 ,1620000000000 ,1616812382570 -1616812382604 ,112.5730286,26.8877576,59.89580154,180.6410809,181.1408373,14.190648,0.128165802,1620000000000 ,1620000000000 ,1620000000000 ,1616812382580 -1616812382613 ,112.5730286,26.88775632,59.89576721,180.6428567,181.1452875,14.193185,0.128185527,1620000000000 ,1620000000000 ,1620000000000 ,1616812382590 -1616812382633 ,112.5730285,26.88775504,59.89568329,180.6432119,181.1422886,14.196475,0.128211922,1620000000000 ,1620000000000 ,1620000000000 ,1616812382600 -1616812382636 ,112.5730285,26.88775375,59.89565659,180.6428567,181.1454457,14.197149,0.128228103,1620000000000 ,1620000000000 ,1620000000000 ,1616812382610 -1616812382642 ,112.5730285,26.88775247,59.89570236,180.6442774,181.1398123,14.198399,0.128237683,1620000000000 ,1620000000000 ,1620000000000 ,1616812382620 -1616812382652 ,112.5730285,26.88775119,59.89578629,180.6445233,181.1375976,14.199038,0.128244581,1620000000000 ,1620000000000 ,1620000000000 ,1616812382630 -1616812382665 ,112.5730284,26.88774991,59.89585876,180.6464084,181.1391396,14.200218,0.128252498,1620000000000 ,1620000000000 ,1620000000000 ,1616812382650 -1616812382679 ,112.5730284,26.88774863,59.8958931,180.64731,181.1469565,14.201374,0.128262407,1620000000000 ,1620000000000 ,1620000000000 ,1616812382660 -1616812382683 ,112.5730284,26.88774734,59.89591217,180.6474466,181.1485013,14.202661,0.128270487,1620000000000 ,1620000000000 ,1620000000000 ,1616812382670 -1616812382693 ,112.5730284,26.88774606,59.89595795,180.6478291,181.1486367,14.203051,0.128275083,1620000000000 ,1620000000000 ,1620000000000 ,1616812382680 -1616812382704 ,112.5730283,26.88774478,59.89608383,180.6477198,181.1483837,14.203609,0.128283626,1620000000000 ,1620000000000 ,1620000000000 ,1616812382680 -1616812382714 ,112.5730283,26.88774221,59.89663696,180.6478291,181.1551863,14.205392,0.256592684,1620000000000 ,1620000000000 ,1620000000000 ,1616812382700 -1616812382723 ,112.5730283,26.88774093,59.89703369,180.6485668,181.1559016,14.205981,0.128311638,1620000000000 ,1620000000000 ,1620000000000 ,1616812382710 -1616812382733 ,112.5730282,26.88773965,59.89746475,180.6493864,181.1513185,14.20669,0.128316653,1620000000000 ,1620000000000 ,1620000000000 ,1616812382720 -1616812382743 ,112.5730282,26.88773836,59.8979187,180.6511622,181.1488108,14.206669,0.128320068,1620000000000 ,1620000000000 ,1620000000000 ,1616812382730 -1616812382755 ,112.5730282,26.88773708,59.89839935,180.6514901,181.1459559,14.209645,0.128338355,1620000000000 ,1620000000000 ,1620000000000 ,1616812382740 -1616812382765 ,112.5730282,26.8877358,59.89894485,180.6525009,181.1499795,14.212264,0.128364153,1620000000000 ,1620000000000 ,1620000000000 ,1616812382750 -1616812382774 ,112.5730281,26.88773451,59.89952469,180.6546046,181.1447659,14.213761,0.128381561,1620000000000 ,1620000000000 ,1620000000000 ,1616812382760 -1616812382784 ,112.5730281,26.88773323,59.9001236,180.6548779,181.1504818,14.213422,0.128387809,1620000000000 ,1620000000000 ,1620000000000 ,1616812382770 -1616812382796 ,112.5730281,26.88773195,59.90071487,180.6562985,181.1485737,14.214911,0.128392993,1620000000000 ,1620000000000 ,1620000000000 ,1616812382780 -1616812382806 ,112.5730281,26.88773066,59.90126801,180.6578558,181.141396,14.218204,0.128416831,1620000000000 ,1620000000000 ,1620000000000 ,1616812382790 -1616812382818 ,112.573028,26.88772938,59.90174484,180.6562166,181.1441955,14.2223015,0.128448539,1620000000000 ,1620000000000 ,1620000000000 ,1616812382800 -1616812382826 ,112.573028,26.88772809,59.90214539,180.6561346,181.1578465,14.22782,0.128499314,1620000000000 ,1620000000000 ,1620000000000 ,1616812382810 -1616812382840 ,112.573028,26.88772681,59.90252304,180.6550964,181.1620665,14.230479,0.128523176,1620000000000 ,1620000000000 ,1620000000000 ,1616812382820 -1616812382845 ,112.573028,26.88772552,59.90299988,180.6552057,181.1595742,14.230445,0.128535753,1620000000000 ,1620000000000 ,1620000000000 ,1616812382830 -1616812382857 ,112.5730279,26.88772424,59.90359116,180.6537304,181.1616612,14.231374,0.128547891,1620000000000 ,1620000000000 ,1620000000000 ,1616812382840 -1616812382865 ,112.5730279,26.88772295,59.90423584,180.6550418,181.1685978,14.230977,0.128549347,1620000000000 ,1620000000000 ,1620000000000 ,1616812382850 -1616812382875 ,112.5730279,26.88772167,59.90488052,180.6562439,181.1718476,14.231451,0.128551653,1620000000000 ,1620000000000 ,1620000000000 ,1616812382860 -1616812382885 ,112.5730278,26.88772038,59.90553665,180.6567083,181.177869,14.234805,0.128576559,1620000000000 ,1620000000000 ,1620000000000 ,1616812382870 -1616812382896 ,112.5730278,26.8877191,59.90621567,180.6578558,181.1686706,14.237493,0.128605233,1620000000000 ,1620000000000 ,1620000000000 ,1616812382880 -1616812382912 ,112.5730278,26.88771781,59.90687561,180.6579378,181.1690434,14.239862,0.128630189,1620000000000 ,1620000000000 ,1620000000000 ,1616812382890 -1616812382916 ,112.5730278,26.88771652,59.90753937,180.6587301,181.178819,14.240625,0.128639641,1620000000000 ,1620000000000 ,1620000000000 ,1616812382900 -1616812382925 ,112.5730277,26.88771524,59.90820694,180.6580471,181.1807374,14.242055,0.12865555,1620000000000 ,1620000000000 ,1620000000000 ,1616812382910 -1616812382936 ,112.5730277,26.88771395,59.90886307,180.6573367,181.1846879,14.243676,0.128669371,1620000000000 ,1620000000000 ,1620000000000 ,1616812382920 -1616812382947 ,112.5730277,26.88771267,59.90946198,180.6570362,181.1828503,14.245933,0.128690047,1620000000000 ,1620000000000 ,1620000000000 ,1616812382930 -1616812382956 ,112.5730277,26.88771138,59.90995407,180.6562166,181.1753866,14.24814,0.128706685,1620000000000 ,1620000000000 ,1620000000000 ,1616812382940 -1616812382969 ,112.5730276,26.88771009,59.91034698,180.6558614,181.1768316,14.252422,0.128738391,1620000000000 ,1620000000000 ,1620000000000 ,1616812382950 -1616812382977 ,112.5730276,26.8877088,59.91067505,180.6549325,181.1721571,14.256996,0.128779821,1620000000000 ,1620000000000 ,1620000000000 ,1616812382960 -1616812382988 ,112.5730276,26.88770752,59.91097641,180.6543861,181.1748416,14.258342,0.128795697,1620000000000 ,1620000000000 ,1620000000000 ,1616812382970 -1616812383000 ,112.5730276,26.88770623,59.91124725,180.6563805,181.1733396,14.25917,0.128804186,1620000000000 ,1620000000000 ,1620000000000 ,1616812382980 -1616812383007 ,112.5730275,26.88770494,59.91146851,180.6580471,181.1721948,14.261863,0.128827364,1620000000000 ,1620000000000 ,1620000000000 ,1616812382990 -1616812383017 ,112.5730275,26.88770365,59.91166687,180.6587028,181.1682177,14.263282,0.128841814,1620000000000 ,1620000000000 ,1620000000000 ,1616812383000 -1616812383026 ,112.5730275,26.88770236,59.9117775,180.6607245,181.1608744,14.266584,0.12886402,1620000000000 ,1620000000000 ,1620000000000 ,1616812383010 -1616812383037 ,112.5730275,26.88770108,59.91180038,180.6623637,181.1701557,14.26948,0.128889688,1620000000000 ,1620000000000 ,1620000000000 ,1616812383020 -1616812383047 ,112.5730274,26.88769979,59.91172409,180.6640303,181.1778472,14.272527,0.128915477,1620000000000 ,1620000000000 ,1620000000000 ,1616812383030 -1616812383060 ,112.5730274,26.8876985,59.91158295,180.664686,181.1820724,14.273191,0.128922962,1620000000000 ,1620000000000 ,1620000000000 ,1616812383040 -1616812383068 ,112.5730274,26.88769721,59.91143036,180.6658062,181.1917652,14.276185,0.128943586,1620000000000 ,1620000000000 ,1620000000000 ,1616812383050 -1616812383076 ,112.5730273,26.88769592,59.91126251,180.6670356,181.1862441,14.27764,0.128963265,1620000000000 ,1620000000000 ,1620000000000 ,1616812383060 -1616812383087 ,112.5730273,26.88769463,59.91104126,180.6678279,181.1903635,14.280483,0.128979317,1620000000000 ,1620000000000 ,1620000000000 ,1616812383070 -1616812383097 ,112.5730273,26.88769334,59.91075516,180.6680738,181.1929159,14.283281,0.129003045,1620000000000 ,1620000000000 ,1620000000000 ,1616812383080 -1616812383108 ,112.5730273,26.88769205,59.91041565,180.6679099,181.1981001,14.286228,0.12902963,1620000000000 ,1620000000000 ,1620000000000 ,1616812383090 -1616812383118 ,112.5730272,26.88769076,59.91004181,180.6680738,181.1961791,14.289506,0.129056763,1620000000000 ,1620000000000 ,1620000000000 ,1616812383100 -1616812383129 ,112.5730272,26.88768947,59.90960693,180.6684289,181.19315,14.291481,0.129073489,1620000000000 ,1620000000000 ,1620000000000 ,1616812383110 -1616812383139 ,112.5730272,26.88768818,59.90916824,180.6671722,181.191481,14.291238,0.129074529,1620000000000 ,1620000000000 ,1620000000000 ,1616812383120 -1616812383148 ,112.5730272,26.88768689,59.90877914,180.6668443,181.1855219,14.293507,0.129096549,1620000000000 ,1620000000000 ,1620000000000 ,1616812383130 -1616812383158 ,112.5730271,26.8876856,59.90839767,180.6678552,181.1775758,14.297309,0.129118962,1620000000000 ,1620000000000 ,1620000000000 ,1616812383140 -1616812383168 ,112.5730271,26.88768431,59.90793991,180.6705053,181.1777641,14.300647,0.129149689,1620000000000 ,1620000000000 ,1620000000000 ,1616812383150 -1616812383178 ,112.5730271,26.88768301,59.9074173,180.6715435,181.1833607,14.303194,0.129171139,1620000000000 ,1620000000000 ,1620000000000 ,1616812383160 -1616812383189 ,112.5730271,26.88768172,59.90694046,180.671161,181.1814936,14.306392,0.12919825,1620000000000 ,1620000000000 ,1620000000000 ,1616812383170 -1616812383198 ,112.573027,26.88768043,59.90649033,180.6744122,181.1694797,14.308571,0.129220686,1620000000000 ,1620000000000 ,1620000000000 ,1616812383180 -1616812383209 ,112.573027,26.88767914,59.90600586,180.6754504,181.1791345,14.310276,0.129234892,1620000000000 ,1620000000000 ,1620000000000 ,1616812383190 -1616812383220 ,112.573027,26.88767785,59.90602493,180.6679918,181.1481717,14.310978,0.129292021,1620000000000 ,1620000000000 ,1620000000000 ,1616812383200 -1616812383229 ,112.573027,26.88767655,59.90693283,180.6685109,181.0471816,14.314011,0.12936642,1620000000000 ,1620000000000 ,1620000000000 ,1616812383210 -1616812383238 ,112.5730269,26.88767526,59.90790176,180.6698223,181.0457332,14.318722,0.129408235,1620000000000 ,1620000000000 ,1620000000000 ,1616812383220 -1616812383249 ,112.5730269,26.88767396,59.90890121,180.6711337,181.0460923,14.319706,0.129428106,1620000000000 ,1620000000000 ,1620000000000 ,1616812383230 -1616812383259 ,112.5730269,26.88767267,59.91001511,180.6717621,181.0554772,14.316257,0.12940954,1620000000000 ,1620000000000 ,1620000000000 ,1616812383240 -1616812383272 ,112.5730269,26.88767138,59.91126633,180.6726637,181.0598133,14.315657,0.129396749,1620000000000 ,1620000000000 ,1620000000000 ,1616812383250 -1616812383281 ,112.5730268,26.88767008,59.91259384,180.674904,181.0598382,14.318588,0.129420989,1620000000000 ,1620000000000 ,1620000000000 ,1616812383260 -1616812383289 ,112.5730268,26.88766879,59.91389084,180.675587,181.0582244,14.322875,0.129452429,1620000000000 ,1620000000000 ,1620000000000 ,1616812383270 -1616812383299 ,112.5730268,26.88766749,59.91516495,180.6762154,181.0640593,14.326689,0.129489991,1620000000000 ,1620000000000 ,1620000000000 ,1616812383280 -1616812383310 ,112.5730268,26.8876662,59.91646194,180.6748766,181.0655878,14.329325,0.129513645,1620000000000 ,1620000000000 ,1620000000000 ,1616812383290 -1616812383321 ,112.5730267,26.8876649,59.91787338,180.6724178,181.0678407,14.330315,0.12953149,1620000000000 ,1620000000000 ,1620000000000 ,1616812383300 -1616812383329 ,112.5730267,26.88766361,59.91942596,180.6735926,181.0686471,14.329308,0.129533962,1620000000000 ,1620000000000 ,1620000000000 ,1616812383310 -1616812383343 ,112.5730267,26.88766231,59.92112732,180.6744942,181.070742,14.3282795,0.129528462,1620000000000 ,1620000000000 ,1620000000000 ,1616812383320 -1616812383352 ,112.5730267,26.88766102,59.92290497,180.6746034,181.0648493,14.329662,0.129533642,1620000000000 ,1620000000000 ,1620000000000 ,1616812383330 -1616812383360 ,112.5730266,26.88765972,59.92468262,180.6754231,181.0728596,14.33346,0.129568686,1620000000000 ,1620000000000 ,1620000000000 ,1616812383340 -1616812383370 ,112.5730266,26.88765843,59.92643356,180.6757509,181.0771923,14.337596,0.129604026,1620000000000 ,1620000000000 ,1620000000000 ,1616812383350 -1616812383379 ,112.5730266,26.88765713,59.92817688,180.6752045,181.0739773,14.340039,0.129631739,1620000000000 ,1620000000000 ,1620000000000 ,1616812383360 -1616812383391 ,112.5730266,26.88765583,59.9299469,180.6744122,181.0745386,14.34128,0.129646104,1620000000000 ,1620000000000 ,1620000000000 ,1616812383370 -1616812383399 ,112.5730265,26.88765454,59.93178558,180.6738385,181.0816164,14.339919,0.129644458,1620000000000 ,1620000000000 ,1620000000000 ,1616812383380 -1616812383410 ,112.5730265,26.88765324,59.93367004,180.6752045,181.0834951,14.340499,0.129643571,1620000000000 ,1620000000000 ,1620000000000 ,1616812383390 -1616812383420 ,112.5730265,26.88765195,59.93554688,180.6729915,181.0830153,14.343481,0.12966724,1620000000000 ,1620000000000 ,1620000000000 ,1616812383400 -1616812383430 ,112.5730265,26.88765065,59.93733215,180.6717894,181.0840746,14.346384,0.12969161,1620000000000 ,1620000000000 ,1620000000000 ,1616812383410 -1616812383441 ,112.5730264,26.88764935,59.93903351,180.6695491,181.0832065,14.348811,0.129714493,1620000000000 ,1620000000000 ,1620000000000 ,1616812383420 -1616812383452 ,112.5730264,26.88764806,59.94067764,180.6671722,181.0769314,14.351107,0.12972721,1620000000000 ,1620000000000 ,1620000000000 ,1616812383430 -1616812383461 ,112.5730264,26.88764676,59.94229889,180.6638117,181.0737712,14.354286,0.129758238,1620000000000 ,1620000000000 ,1620000000000 ,1616812383440 -1616812383471 ,112.5730264,26.88764546,59.94332504,180.6618173,181.1129597,14.357479,0.129737216,1620000000000 ,1620000000000 ,1620000000000 ,1616812383450 -1616812383481 ,112.5730263,26.88764416,59.94379807,180.6584296,181.1617855,14.358698,0.129706434,1620000000000 ,1620000000000 ,1620000000000 ,1616812383460 -1616812383492 ,112.5730263,26.88764287,59.94430161,180.6547686,181.1572919,14.359813,0.129713887,1620000000000 ,1620000000000 ,1620000000000 ,1616812383470 -1616812383502 ,112.5730263,26.88764157,59.94483948,180.6528288,181.1459281,14.361371,0.129723915,1620000000000 ,1620000000000 ,1620000000000 ,1616812383480 -1616812383513 ,112.5730263,26.88764027,59.94535828,180.6525009,181.1432695,14.364479,0.129748969,1620000000000 ,1620000000000 ,1620000000000 ,1616812383490 -1616812383521 ,112.5730262,26.88763898,59.94580078,180.6524736,181.1422039,14.365841,0.129762712,1620000000000 ,1620000000000 ,1620000000000 ,1616812383500 -1616812383531 ,112.5730262,26.88763768,59.94618988,180.6499874,181.1383339,14.368197,0.129778982,1620000000000 ,1620000000000 ,1620000000000 ,1616812383510 -1616812383544 ,112.5730262,26.88763638,59.94655609,180.647392,181.137954,14.372418,0.129813576,1620000000000 ,1620000000000 ,1620000000000 ,1616812383520 -1616812383552 ,112.5730262,26.88763508,59.94689178,180.6437583,181.1432009,14.3743725,0.129833258,1620000000000 ,1620000000000 ,1620000000000 ,1616812383530 -1616812383561 ,112.5730261,26.88763378,59.94725037,180.6405891,181.1427512,14.373694,0.129836103,1620000000000 ,1620000000000 ,1620000000000 ,1616812383540 -1616812383572 ,112.5730261,26.88763249,59.9476738,180.6360265,181.1288857,14.372589,0.129825406,1620000000000 ,1620000000000 ,1620000000000 ,1616812383550 -1616812383581 ,112.5730261,26.88763119,59.94816589,180.630699,181.1245459,14.375249,0.129843458,1620000000000 ,1620000000000 ,1620000000000 ,1616812383560 -1616812383593 ,112.5730261,26.88762989,59.94861984,180.6265736,181.1189849,14.378656,0.129870851,1620000000000 ,1620000000000 ,1620000000000 ,1616812383570 -1616812383603 ,112.573026,26.88762859,59.94898224,180.6235683,181.1217294,14.3811865,0.129890825,1620000000000 ,1620000000000 ,1620000000000 ,1616812383580 -1616812383611 ,112.573026,26.88762729,59.94930649,180.6193609,181.1178409,14.3831835,0.129911306,1620000000000 ,1620000000000 ,1620000000000 ,1616812383590 -1616812383621 ,112.573026,26.88762599,59.94970322,180.6128039,181.1050568,14.382861,0.129917235,1620000000000 ,1620000000000 ,1620000000000 ,1616812383600 -1616812383635 ,112.573026,26.88762469,59.95021057,180.6071758,181.1008958,14.383492,0.129914948,1620000000000 ,1620000000000 ,1620000000000 ,1616812383610 -1616812383642 ,112.5730259,26.88762339,59.95077133,180.599608,181.0970143,14.384611,0.129931131,1620000000000 ,1620000000000 ,1620000000000 ,1616812383620 -1616812383652 ,112.5730259,26.8876221,59.95133209,180.595264,181.1044646,14.384415,0.12992923,1620000000000 ,1620000000000 ,1620000000000 ,1616812383630 -1616812383662 ,112.5730259,26.8876208,59.95194626,180.5901003,181.0954473,14.385613,0.129940804,1620000000000 ,1620000000000 ,1620000000000 ,1616812383640 -1616812383673 ,112.5730259,26.8876195,59.95261002,180.5832702,181.0776827,14.386946,0.129951398,1620000000000 ,1620000000000 ,1620000000000 ,1616812383650 -1616812383684 ,112.5730258,26.8876182,59.95331573,180.5764946,181.0718505,14.389212,0.129971056,1620000000000 ,1620000000000 ,1620000000000 ,1616812383660 -1616812383692 ,112.5730258,26.8876169,59.95402527,180.5700196,181.0637641,14.391608,0.129993313,1620000000000 ,1620000000000 ,1620000000000 ,1616812383670 -1616812383704 ,112.5730258,26.8876156,59.95475006,180.5651565,181.070338,14.390531,0.129992494,1620000000000 ,1620000000000 ,1620000000000 ,1616812383680 -1616812383714 ,112.5730258,26.8876143,59.95550537,180.5581624,181.0598276,14.390682,0.129991057,1620000000000 ,1620000000000 ,1620000000000 ,1616812383690 -1616812383736 ,112.5730257,26.887613,59.95629883,180.5513868,181.0349862,14.39091,0.129991746,1620000000000 ,1620000000000 ,1620000000000 ,1616812383700 -1616812383738 ,112.5730257,26.8876117,59.95709991,180.5440375,181.0228338,14.39181,0.129999424,1620000000000 ,1620000000000 ,1620000000000 ,1616812383720 -1616812383744 ,112.5730257,26.8876104,59.95785904,180.5359506,181.0191722,14.394046,0.130014855,1620000000000 ,1620000000000 ,1620000000000 ,1616812383730 -1616812383753 ,112.5730257,26.8876091,59.95860291,180.5309509,181.0194247,14.394753,0.130021235,1620000000000 ,1620000000000 ,1620000000000 ,1616812383740 -1616812383763 ,112.5730256,26.8876078,59.95940018,180.5221809,181.0103491,14.396923,0.130045286,1620000000000 ,1620000000000 ,1620000000000 ,1616812383740 -1616812383774 ,112.5730256,26.8876052,59.96107101,180.5079468,180.9860483,14.400939,0.260134534,1620000000000 ,1620000000000 ,1620000000000 ,1616812383760 -1616812383784 ,112.5730256,26.8876052,59.96107101,180.5079468,-400,14.400939,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812383770 -1616812383793 ,112.5730256,26.8876026,59.96261597,180.4938493,180.9787846,14.402574,0.260188611,1620000000000 ,1620000000000 ,1620000000000 ,1616812383780 -1616812383804 ,112.5730256,26.8876026,59.96261597,180.4938493,-400,14.402574,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812383790 -1616812383814 ,112.5730255,26.8876,59.96431351,180.480872,180.9725753,14.399376,0.260167871,1620000000000 ,1620000000000 ,1620000000000 ,1616812383800 -1616812383824 ,112.5730255,26.88759869,59.96529388,180.4736046,180.9505208,14.398664,0.130075186,1620000000000 ,1620000000000 ,1620000000000 ,1616812383810 -1616812383835 ,112.5730255,26.88759739,59.96628571,180.4677853,180.9460428,14.402217,0.130095823,1620000000000 ,1620000000000 ,1620000000000 ,1616812383820 -1616812383843 ,112.5730254,26.88759609,59.96725082,180.4628949,180.9491268,14.403716,0.130115995,1620000000000 ,1620000000000 ,1620000000000 ,1616812383830 -1616812383854 ,112.5730254,26.88759479,59.96820831,180.4556549,180.9488202,14.403969,0.130118641,1620000000000 ,1620000000000 ,1620000000000 ,1616812383840 -1616812383864 ,112.5730254,26.88759349,59.96918488,180.4505186,180.9335509,14.404274,0.130125205,1620000000000 ,1620000000000 ,1620000000000 ,1616812383850 -1616812383878 ,112.5730254,26.88759219,59.9701767,180.4428415,180.9257586,14.405649,0.130136779,1620000000000 ,1620000000000 ,1620000000000 ,1616812383860 -1616812383884 ,112.5730254,26.88759089,59.97116089,180.4363664,180.9184604,14.405668,0.130140254,1620000000000 ,1620000000000 ,1620000000000 ,1616812383870 -1616812383894 ,112.5730253,26.88758959,59.97213745,180.4292357,180.9172903,14.405145,0.130139983,1620000000000 ,1620000000000 ,1620000000000 ,1616812383880 -1616812383904 ,112.5730253,26.88758829,59.97310257,180.425083,180.9066468,14.4059725,0.130141136,1620000000000 ,1620000000000 ,1620000000000 ,1616812383890 -1616812383914 ,112.5730253,26.88758698,59.97403336,180.4197281,180.8968486,14.40621,0.130145847,1620000000000 ,1620000000000 ,1620000000000 ,1616812383900 -1616812383924 ,112.5730253,26.88758568,59.97493744,180.4159578,180.8869415,14.406882,0.130149763,1620000000000 ,1620000000000 ,1620000000000 ,1616812383910 -1616812383934 ,112.5730253,26.88758438,59.97580338,180.4114772,180.8685176,14.408392,0.130164419,1620000000000 ,1620000000000 ,1620000000000 ,1616812383920 -1616812383944 ,112.5730253,26.88758438,59.97580338,180.4114772,-400,14.408392,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812383930 -1616812383957 ,112.5730252,26.88758178,59.97718811,180.4030898,180.8627862,14.412195,0.260365539,1620000000000 ,1620000000000 ,1620000000000 ,1616812383940 -1616812383966 ,112.5730252,26.88758048,59.97770691,180.3994015,180.8657726,14.411642,0.130186604,1620000000000 ,1620000000000 ,1620000000000 ,1616812383950 -1616812383975 ,112.5730252,26.88757917,59.97818756,180.3964235,180.8577077,14.413051,0.130191972,1620000000000 ,1620000000000 ,1620000000000 ,1616812383960 -1616812383986 ,112.5730252,26.88757787,59.97862625,180.3921615,180.8509779,14.414328,0.130201401,1620000000000 ,1620000000000 ,1620000000000 ,1616812383970 -1616812383994 ,112.5730251,26.88757657,59.97902679,180.3865334,180.854801,14.414824,0.130208939,1620000000000 ,1620000000000 ,1620000000000 ,1616812383980 -1616812384005 ,112.5730251,26.88757527,59.9794426,180.3818069,180.8530467,14.41429,0.13020476,1620000000000 ,1620000000000 ,1620000000000 ,1616812383990 -1616812384018 ,112.5730251,26.88757397,59.97990799,180.3769711,180.8502339,14.414938,0.130210553,1620000000000 ,1620000000000 ,1620000000000 ,1616812384000 -1616812384026 ,112.5730251,26.88757267,59.98039246,180.3748128,180.8495698,14.415965,0.13022195,1620000000000 ,1620000000000 ,1620000000000 ,1616812384010 -1616812384036 ,112.5730251,26.88757136,59.98088074,180.3717255,180.845544,14.413694,0.130209912,1620000000000 ,1620000000000 ,1620000000000 ,1616812384020 -1616812384045 ,112.573025,26.88757006,59.98139572,180.3684744,180.8381604,14.41289,0.130197432,1620000000000 ,1620000000000 ,1620000000000 ,1616812384030 -1616812384059 ,112.573025,26.88756876,59.98193741,180.3639664,180.8335487,14.413914,0.130206067,1620000000000 ,1620000000000 ,1620000000000 ,1616812384040 -1616812384066 ,112.573025,26.88756746,59.98245621,180.3611524,180.829018,14.416069,0.130221747,1620000000000 ,1620000000000 ,1620000000000 ,1616812384050 -1616812384075 ,112.573025,26.88756616,59.98291397,180.3580652,180.8281377,14.416158,0.130226531,1620000000000 ,1620000000000 ,1620000000000 ,1616812384060 -1616812384086 ,112.573025,26.88756485,59.98334122,180.3571362,180.8197943,14.415705,0.130221269,1620000000000 ,1620000000000 ,1620000000000 ,1616812384070 -1616812384096 ,112.573025,26.88756355,59.98377609,180.3550599,180.8009145,14.415389,0.130220065,1620000000000 ,1620000000000 ,1620000000000 ,1616812384080 -1616812384107 ,112.5730249,26.88756225,59.98420715,180.3509891,180.7971235,14.414915,0.130215613,1620000000000 ,1620000000000 ,1620000000000 ,1616812384090 -1616812384117 ,112.5730249,26.88756095,59.98461533,180.349022,180.802701,14.416001,0.130223824,1620000000000 ,1620000000000 ,1620000000000 ,1616812384100 -1616812384136 ,112.5730249,26.88755964,59.98501968,180.347574,180.801378,14.415815,0.130224509,1620000000000 ,1620000000000 ,1620000000000 ,1616812384110 -1616812384146 ,112.5730249,26.88755834,59.98547363,180.345279,180.7937282,14.415276,0.130221607,1620000000000 ,1620000000000 ,1620000000000 ,1616812384120 -1616812384154 ,112.5730249,26.88755704,59.98599625,180.3436398,180.7827437,14.413916,0.130214037,1620000000000 ,1620000000000 ,1620000000000 ,1616812384130 -1616812384158 ,112.5730248,26.88755574,59.98652267,180.3430661,180.7799148,14.415071,0.1302209,1620000000000 ,1620000000000 ,1620000000000 ,1616812384140 -1616812384167 ,112.5730248,26.88755444,59.98699188,180.342547,180.7810243,14.415913,0.130224002,1620000000000 ,1620000000000 ,1620000000000 ,1616812384150 -1616812384178 ,112.5730248,26.88755313,59.9874115,180.3423284,180.7828105,14.4157715,0.130224558,1620000000000 ,1620000000000 ,1620000000000 ,1616812384160 -1616812384191 ,112.5730248,26.88755183,59.98783112,180.3424923,180.7811729,14.413496,0.130209016,1620000000000 ,1620000000000 ,1620000000000 ,1616812384170 -1616812384197 ,112.5730248,26.88755053,59.98825836,180.3412082,180.767292,14.41266,0.130200958,1620000000000 ,1620000000000 ,1620000000000 ,1616812384180 -1616812384209 ,112.5730248,26.88754923,59.98866272,180.3407984,180.7580135,14.412942,0.130194292,1620000000000 ,1620000000000 ,1620000000000 ,1616812384190 -1616812384222 ,112.5730247,26.88754793,59.98936844,180.3321104,180.7889529,14.419411,0.130319297,1620000000000 ,1620000000000 ,1620000000000 ,1616812384200 -1616812384228 ,112.5730247,26.88754662,59.99061584,180.3317006,180.81138,14.420697,0.130494022,1620000000000 ,1620000000000 ,1620000000000 ,1616812384210 -1616812384239 ,112.5730247,26.88754532,59.99181747,180.3291598,180.8092662,14.421075,0.130499594,1620000000000 ,1620000000000 ,1620000000000 ,1616812384220 -1616812384248 ,112.5730247,26.88754401,59.99303436,180.3266736,180.8012566,14.420311,0.130491683,1620000000000 ,1620000000000 ,1620000000000 ,1616812384230 -1616812384258 ,112.5730247,26.88754271,59.99425888,180.3240235,180.7913843,14.421679,0.130498927,1620000000000 ,1620000000000 ,1620000000000 ,1616812384240 -1616812384269 ,112.5730247,26.8875414,59.99547577,180.3221384,180.7976728,14.422202,0.130504867,1620000000000 ,1620000000000 ,1620000000000 ,1616812384250 -1616812384279 ,112.5730246,26.8875401,59.99669266,180.3217832,180.8034667,14.422367,0.130510061,1620000000000 ,1620000000000 ,1620000000000 ,1616812384260 -1616812384288 ,112.5730246,26.88753879,59.99797058,180.3203352,180.8052145,14.420408,0.130496686,1620000000000 ,1620000000000 ,1620000000000 ,1616812384270 -1616812384298 ,112.5730246,26.88753749,59.99933624,180.3189418,180.7934018,14.420463,0.13049624,1620000000000 ,1620000000000 ,1620000000000 ,1616812384280 -1616812384309 ,112.5730246,26.88753618,60.00076675,180.3173845,180.7873821,14.420438,0.130499944,1620000000000 ,1620000000000 ,1620000000000 ,1616812384290 -1616812384322 ,112.5730246,26.88753488,60.0022049,180.3148984,180.792611,14.421347,0.130504284,1620000000000 ,1620000000000 ,1620000000000 ,1616812384300 -1616812384328 ,112.5730245,26.88753357,60.00363159,180.3117018,180.7987634,14.420961,0.130503445,1620000000000 ,1620000000000 ,1620000000000 ,1616812384310 -1616812384338 ,112.5730245,26.88753227,60.00507736,180.3089698,180.7995486,14.419784,0.130494847,1620000000000 ,1620000000000 ,1620000000000 ,1616812384320 -1616812384348 ,112.5730245,26.88753096,60.00656128,180.306347,180.7939719,14.419939,0.130497603,1620000000000 ,1620000000000 ,1620000000000 ,1616812384330 -1616812384362 ,112.5730245,26.88752966,60.00806808,180.3023855,180.7926695,14.419492,0.130496083,1620000000000 ,1620000000000 ,1620000000000 ,1616812384340 -1616812384373 ,112.5730245,26.88752835,60.00959396,180.2979595,180.7949956,14.41969,0.130500417,1620000000000 ,1620000000000 ,1620000000000 ,1616812384350 -1616812384386 ,112.5730245,26.88752705,60.01114655,180.2941073,180.7950218,14.420416,0.130504002,1620000000000 ,1620000000000 ,1620000000000 ,1616812384360 -1616812384391 ,112.5730244,26.88752574,60.01275635,180.2913752,180.7913639,14.420467,0.130507848,1620000000000 ,1620000000000 ,1620000000000 ,1616812384370 -1616812384398 ,112.5730244,26.88752444,60.01441193,180.2880421,180.7763921,14.419868,0.130510094,1620000000000 ,1620000000000 ,1620000000000 ,1616812384380 -1616812384409 ,112.5730244,26.88752313,60.01607513,180.2859384,180.771122,14.419354,0.130503923,1620000000000 ,1620000000000 ,1620000000000 ,1616812384390 -1616812384419 ,112.5730244,26.88752183,60.0177002,180.283097,180.7727101,14.420829,0.130512013,1620000000000 ,1620000000000 ,1620000000000 ,1616812384400 -1616812384430 ,112.5730244,26.88752052,60.01926422,180.280283,180.7718308,14.4211235,0.130515306,1620000000000 ,1620000000000 ,1620000000000 ,1616812384410 -1616812384444 ,112.5730243,26.88751922,60.02081299,180.2798185,180.7698509,14.422451,0.130527934,1620000000000 ,1620000000000 ,1620000000000 ,1616812384420 -1616812384450 ,112.5730243,26.88751791,60.02236176,180.2764034,180.7554142,14.421598,0.130522497,1620000000000 ,1620000000000 ,1620000000000 ,1616812384430 -1616812384460 ,112.5730243,26.88751661,60.02389145,180.2738626,180.7420259,14.420853,0.130516907,1620000000000 ,1620000000000 ,1620000000000 ,1616812384440 -1616812384470 ,112.5730243,26.8875153,60.02495956,180.2691634,180.7144031,14.422096,0.13040335,1620000000000 ,1620000000000 ,1620000000000 ,1616812384450 -1616812384480 ,112.5730243,26.887514,60.02551651,180.2651199,180.7019507,14.425887,0.130313915,1620000000000 ,1620000000000 ,1620000000000 ,1616812384460 -1616812384489 ,112.5730243,26.8875127,60.02593613,180.2618961,180.7009004,14.428246,0.130333639,1620000000000 ,1620000000000 ,1620000000000 ,1616812384470 -1616812384499 ,112.5730242,26.88751139,60.02623367,180.2588088,180.6916936,14.43105,0.130354637,1620000000000 ,1620000000000 ,1620000000000 ,1616812384480 -1616812384510 ,112.5730242,26.88751009,60.02649307,180.2538911,180.686174,14.431164,0.130357612,1620000000000 ,1620000000000 ,1620000000000 ,1616812384490 -1616812384521 ,112.5730242,26.88750879,60.02676773,180.2485089,180.6788594,14.431426,0.130356995,1620000000000 ,1620000000000 ,1620000000000 ,1616812384500 -1616812384529 ,112.5730242,26.88750748,60.02707672,180.2455036,180.6833413,14.432841,0.130368315,1620000000000 ,1620000000000 ,1620000000000 ,1616812384510 -1616812384540 ,112.5730242,26.88750618,60.02738953,180.2432087,180.6841499,14.433733,0.130378715,1620000000000 ,1620000000000 ,1620000000000 ,1616812384520 -1616812384554 ,112.5730242,26.88750488,60.02770996,180.2398756,180.6813266,14.434303,0.130382723,1620000000000 ,1620000000000 ,1620000000000 ,1616812384530 -1616812384561 ,112.5730242,26.88750357,60.02802277,180.2383456,180.6735293,14.437589,0.130402689,1620000000000 ,1620000000000 ,1620000000000 ,1616812384540 -1616812384575 ,112.5730241,26.88750227,60.02833176,180.235996,180.662772,14.439659,0.130421405,1620000000000 ,1620000000000 ,1620000000000 ,1616812384550 -1616812384580 ,112.5730241,26.88750096,60.02861404,180.2340016,180.6615241,14.442831,0.130445375,1620000000000 ,1620000000000 ,1620000000000 ,1616812384560 -1616812384590 ,112.5730241,26.88749966,60.02890015,180.2308597,180.6627727,14.443621,0.130458476,1620000000000 ,1620000000000 ,1620000000000 ,1616812384570 -1616812384601 ,112.5730241,26.88749835,60.02924347,180.2272807,180.66786,14.444323,0.130464627,1620000000000 ,1620000000000 ,1620000000000 ,1616812384580 -1616812384610 ,112.5730241,26.88749705,60.02967834,180.2241388,180.6604829,14.443943,0.130464234,1620000000000 ,1620000000000 ,1620000000000 ,1616812384590 -1616812384621 ,112.5730241,26.88749575,60.030159,180.2197948,180.653694,14.445412,0.130471245,1620000000000 ,1620000000000 ,1620000000000 ,1616812384600 -1616812384632 ,112.573024,26.88749444,60.03067017,180.2174452,180.6432401,14.446493,0.130482665,1620000000000 ,1620000000000 ,1620000000000 ,1616812384610 -1616812384643 ,112.573024,26.88749314,60.03120804,180.2154235,180.6398407,14.448476,0.130499116,1620000000000 ,1620000000000 ,1620000000000 ,1616812384620 -1616812384651 ,112.573024,26.88749183,60.03181839,180.2130466,180.6352982,14.450745,0.130518619,1620000000000 ,1620000000000 ,1620000000000 ,1616812384630 -1616812384662 ,112.573024,26.88749053,60.03253555,180.2112707,180.6318335,14.45142,0.130528214,1620000000000 ,1620000000000 ,1620000000000 ,1616812384640 -1616812384672 ,112.573024,26.88748922,60.03334808,180.2097681,180.6282798,14.451152,0.130531527,1620000000000 ,1620000000000 ,1620000000000 ,1616812384650 -1616812384684 ,112.573024,26.88748791,60.03419495,180.2069814,180.6276642,14.451827,0.130536173,1620000000000 ,1620000000000 ,1620000000000 ,1616812384660 -1616812384692 ,112.573024,26.88748661,60.03507614,180.2057519,180.6294538,14.452065,0.130536832,1620000000000 ,1620000000000 ,1620000000000 ,1616812384670 -1616812384702 ,112.5730239,26.8874853,60.0359993,180.2044679,180.6250813,14.453274,0.130546035,1620000000000 ,1620000000000 ,1620000000000 ,1616812384680 -1616812384711 ,112.5730239,26.887484,60.03699493,180.201927,180.6163995,14.454097,0.130555795,1620000000000 ,1620000000000 ,1620000000000 ,1616812384690 -1616812384722 ,112.5730239,26.88748269,60.03803253,180.197747,180.6121723,14.456222,0.130570659,1620000000000 ,1620000000000 ,1620000000000 ,1616812384700 -1616812384732 ,112.5730239,26.88748139,60.03909302,180.195452,180.6079261,14.457446,0.130582154,1620000000000 ,1620000000000 ,1620000000000 ,1616812384710 -1616812384743 ,112.5730239,26.88748008,60.04016113,180.1930205,180.6038653,14.460502,0.130606332,1620000000000 ,1620000000000 ,1620000000000 ,1616812384720 -1616812384753 ,112.5730239,26.88747877,60.04127121,180.1881027,180.6056404,14.463158,0.130628753,1620000000000 ,1620000000000 ,1620000000000 ,1616812384730 -1616812384762 ,112.5730239,26.88747747,60.04242706,180.1852614,180.6152934,14.463843,0.130642933,1620000000000 ,1620000000000 ,1620000000000 ,1616812384740 -1616812384773 ,112.5730239,26.88747616,60.0436554,180.1837314,180.6113612,14.462121,0.130636801,1620000000000 ,1620000000000 ,1620000000000 ,1616812384750 -1616812384782 ,112.5730238,26.88747486,60.04499054,180.1792781,180.6036505,14.46182,0.130628646,1620000000000 ,1620000000000 ,1620000000000 ,1616812384760 -1616812384793 ,112.5730238,26.88747355,60.0464325,180.1758357,180.5990813,14.461911,0.130633286,1620000000000 ,1620000000000 ,1620000000000 ,1616812384770 -1616812384803 ,112.5730238,26.88747224,60.04792786,180.1727211,180.6038825,14.464485,0.130648187,1620000000000 ,1620000000000 ,1620000000000 ,1616812384780 -1616812384813 ,112.5730238,26.88747094,60.04944229,180.168623,180.6089601,14.466361,0.130673999,1620000000000 ,1620000000000 ,1620000000000 ,1616812384790 -1616812384823 ,112.5730238,26.88746963,60.05101776,180.1648528,180.6061453,14.466687,0.130677239,1620000000000 ,1620000000000 ,1620000000000 ,1616812384800 -1616812384835 ,112.5730238,26.88746832,60.05269623,180.158569,180.59725,14.466515,0.130681955,1620000000000 ,1620000000000 ,1620000000000 ,1616812384810 -1616812384845 ,112.5730238,26.88746702,60.05445862,180.1545802,180.5978124,14.466001,0.130680108,1620000000000 ,1620000000000 ,1620000000000 ,1616812384830 -1616812384853 ,112.5730237,26.88746571,60.05623245,180.1489794,180.5955683,14.466268,0.130682228,1620000000000 ,1620000000000 ,1620000000000 ,1616812384840 -1616812384864 ,112.5730237,26.8874644,60.05796814,180.1464386,180.5944277,14.467044,0.130687231,1620000000000 ,1620000000000 ,1620000000000 ,1616812384850 -1616812384873 ,112.5730237,26.8874631,60.0597229,180.1414389,180.5889588,14.467272,0.130691862,1620000000000 ,1620000000000 ,1620000000000 ,1616812384860 -1616812384883 ,112.5730237,26.88746179,60.06152725,180.1366851,180.5728707,14.468065,0.13070024,1620000000000 ,1620000000000 ,1620000000000 ,1616812384870 -1616812384893 ,112.5730237,26.88746048,60.06336975,180.133188,180.5666341,14.467813,0.130700746,1620000000000 ,1620000000000 ,1620000000000 ,1616812384880 -1616812384912 ,112.5730237,26.88745918,60.06519699,180.1308111,180.5592153,14.469884,0.1307165,1620000000000 ,1620000000000 ,1620000000000 ,1616812384880 -1616812384915 ,112.5730237,26.88745787,60.06695938,180.1276965,180.5532222,14.470829,0.130724167,1620000000000 ,1620000000000 ,1620000000000 ,1616812384900 -1616812384923 ,112.5730237,26.88745656,60.06866455,180.1232433,180.547361,14.471827,0.130732597,1620000000000 ,1620000000000 ,1620000000000 ,1616812384910 -1616812384934 ,112.5730236,26.88745395,60.07200623,180.1153202,180.522383,14.4709015,0.261460436,1620000000000 ,1620000000000 ,1620000000000 ,1616812384920 -1616812384944 ,112.5730236,26.88745264,60.0736618,180.1114407,180.5138661,14.470558,0.130725727,1620000000000 ,1620000000000 ,1620000000000 ,1616812384930 -1616812384956 ,112.5730236,26.88745133,60.07529831,180.1084354,180.5118929,14.4715805,0.130729532,1620000000000 ,1620000000000 ,1620000000000 ,1616812384940 -1616812384964 ,112.5730236,26.88745002,60.07691956,180.1066322,180.4987908,14.471475,0.130729625,1620000000000 ,1620000000000 ,1620000000000 ,1616812384950 -1616812384974 ,112.5730236,26.88744872,60.07851028,180.1028893,180.4901611,14.4711275,0.130725493,1620000000000 ,1620000000000 ,1620000000000 ,1616812384960 -1616812384984 ,112.5730236,26.88744741,60.08007431,180.0989551,180.4816166,14.472157,0.130735618,1620000000000 ,1620000000000 ,1620000000000 ,1616812384970 -1616812384995 ,112.5730236,26.8874461,60.08161926,180.0947477,180.4773495,14.470854,0.130724736,1620000000000 ,1620000000000 ,1620000000000 ,1616812384980 -1616812385005 ,112.5730236,26.8874461,60.08161926,180.0947477,-400,14.470854,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812384980 -1616812385014 ,112.5730235,26.88744349,60.08464813,180.0895568,180.4700728,14.470152,0.261435961,1620000000000 ,1620000000000 ,1620000000000 ,1616812385000 -1616812385024 ,112.5730235,26.88744218,60.08607483,180.0866881,180.4671981,14.469715,0.130709693,1620000000000 ,1620000000000 ,1620000000000 ,1616812385010 -1616812385034 ,112.5730235,26.88744087,60.08745956,180.0836008,180.4664958,14.470075,0.130714656,1620000000000 ,1620000000000 ,1620000000000 ,1616812385020 -1616812385049 ,112.5730235,26.88743957,60.0888443,180.0799125,180.4559059,14.469995,0.13071579,1620000000000 ,1620000000000 ,1620000000000 ,1616812385030 -1616812385055 ,112.5730235,26.88743826,60.09025955,180.0768799,180.4453729,14.469955,0.130714578,1620000000000 ,1620000000000 ,1620000000000 ,1616812385040 -1616812385065 ,112.5730235,26.88743695,60.09172821,180.0729731,180.4427896,14.468072,0.130702812,1620000000000 ,1620000000000 ,1620000000000 ,1616812385050 -1616812385075 ,112.5730235,26.88743565,60.09320068,180.0712245,180.4465798,14.467747,0.130700807,1620000000000 ,1620000000000 ,1620000000000 ,1616812385060 -1616812385086 ,112.5730235,26.88743434,60.09464264,180.0686017,180.4458128,14.468532,0.130703022,1620000000000 ,1620000000000 ,1620000000000 ,1616812385070 -1616812385095 ,112.5730235,26.88743303,60.09605408,180.0655418,180.4418626,14.468702,0.130708519,1620000000000 ,1620000000000 ,1620000000000 ,1616812385080 -1616812385106 ,112.5730235,26.88743303,60.09605408,180.0655418,-400,14.468702,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812385080 -1616812385116 ,112.5730234,26.88743042,60.09897614,180.0584111,180.4374711,14.467917,0.261413001,1620000000000 ,1620000000000 ,1620000000000 ,1616812385100 -1616812385126 ,112.5730234,26.88742911,60.10047531,180.0555971,180.4338159,14.467955,0.130704973,1620000000000 ,1620000000000 ,1620000000000 ,1616812385110 -1616812385137 ,112.5730234,26.8874278,60.10195541,180.0539578,180.4324523,14.467671,0.130705521,1620000000000 ,1620000000000 ,1620000000000 ,1616812385120 -1616812385147 ,112.5730234,26.8874265,60.10342026,180.0511711,180.4304411,14.466524,0.13069994,1620000000000 ,1620000000000 ,1620000000000 ,1616812385130 -1616812385156 ,112.5730234,26.88742519,60.1048851,180.0480019,180.4192743,14.465186,0.130686066,1620000000000 ,1620000000000 ,1620000000000 ,1616812385140 -1616812385166 ,112.5730234,26.88742388,60.10632324,180.0433027,180.4005736,14.465355,0.130683559,1620000000000 ,1620000000000 ,1620000000000 ,1616812385150 -1616812385176 ,112.5730234,26.88742258,60.10767365,180.0398057,180.4000112,14.465897,0.130688373,1620000000000 ,1620000000000 ,1620000000000 ,1616812385160 -1616812385187 ,112.5730234,26.88742127,60.10890579,180.0362813,180.4049094,14.467344,0.130694056,1620000000000 ,1620000000000 ,1620000000000 ,1616812385170 -1616812385197 ,112.5730234,26.88741996,60.11004639,180.034041,180.4009509,14.467632,0.130699711,1620000000000 ,1620000000000 ,1620000000000 ,1616812385180 -1616812385207 ,112.5730233,26.88741866,60.1111412,180.0318826,180.387191,14.468777,0.130704753,1620000000000 ,1620000000000 ,1620000000000 ,1616812385190 -1616812385217 ,112.5730233,26.88741735,60.11204529,180.0221838,180.5872906,14.470914,0.130763876,1620000000000 ,1620000000000 ,1620000000000 ,1616812385200 -1616812385227 ,112.5730233,26.88741604,60.11269379,180.018878,180.9190228,14.467947,0.130812753,1620000000000 ,1620000000000 ,1620000000000 ,1616812385210 -1616812385237 ,112.5730233,26.88741473,60.1133194,180.015135,180.9246414,14.464829,0.130783803,1620000000000 ,1620000000000 ,1620000000000 ,1616812385220 -1616812385247 ,112.5730233,26.88741343,60.11392212,180.0127308,180.9186746,14.462244,0.130756056,1620000000000 ,1620000000000 ,1620000000000 ,1616812385230 -1616812385257 ,112.5730233,26.88741212,60.1145134,180.0074579,180.9127882,14.460823,0.130740519,1620000000000 ,1620000000000 ,1620000000000 ,1616812385240 -1616812385267 ,112.5730232,26.88741081,60.11508942,180.0044526,180.910113,14.462883,0.130749102,1620000000000 ,1620000000000 ,1620000000000 ,1616812385250 -1616812385277 ,112.5730232,26.8874095,60.11563873,179.9998354,180.9161783,14.465504,0.130769952,1620000000000 ,1620000000000 ,1620000000000 ,1616812385260 -1616812385291 ,112.5730232,26.8874082,60.11615753,179.9970487,180.9191437,14.468073,0.130788992,1620000000000 ,1620000000000 ,1620000000000 ,1616812385270 -1616812385298 ,112.5730232,26.88740689,60.11663055,179.9934423,180.9165988,14.468244,0.130797288,1620000000000 ,1620000000000 ,1620000000000 ,1616812385280 -1616812385307 ,112.5730231,26.88740558,60.11709595,179.9894808,180.9147205,14.466019,0.130779205,1620000000000 ,1620000000000 ,1620000000000 ,1616812385290 -1616812385324 ,112.5730231,26.88740427,60.1175499,179.9849729,180.9078865,14.463239,0.130754205,1620000000000 ,1620000000000 ,1620000000000 ,1616812385300 -1616812385328 ,112.5730231,26.88740297,60.11795807,179.9808475,180.8995934,14.463827,0.130747607,1620000000000 ,1620000000000 ,1620000000000 ,1616812385310 -1616812385340 ,112.5730231,26.88740166,60.11831665,179.9771318,180.8975396,14.463578,0.130743482,1620000000000 ,1620000000000 ,1620000000000 ,1616812385320 -1616812385349 ,112.5730231,26.88740035,60.11866379,179.9751921,180.894521,14.464862,0.13075137,1620000000000 ,1620000000000 ,1620000000000 ,1616812385330 -1616812385360 ,112.573023,26.88739904,60.11904144,179.9720229,180.8838608,14.46543,0.13075501,1620000000000 ,1620000000000 ,1620000000000 ,1616812385340 -1616812385371 ,112.573023,26.88739774,60.11944962,179.9694274,180.8729743,14.465514,0.130755241,1620000000000 ,1620000000000 ,1620000000000 ,1616812385350 -1616812385378 ,112.573023,26.88739643,60.11989212,179.9682526,180.8733973,14.465177,0.130753721,1620000000000 ,1620000000000 ,1620000000000 ,1616812385360 -1616812385389 ,112.573023,26.88739512,60.1203804,179.9668046,180.8782912,14.465319,0.130750932,1620000000000 ,1620000000000 ,1620000000000 ,1616812385370 -1616812385398 ,112.573023,26.88739381,60.12091064,179.9657391,180.8813207,14.464891,0.130753132,1620000000000 ,1620000000000 ,1620000000000 ,1616812385380 -1616812385409 ,112.5730229,26.88739251,60.12146759,179.964537,180.8821211,14.461636,0.130726624,1620000000000 ,1620000000000 ,1620000000000 ,1616812385390 -1616812385420 ,112.5730229,26.8873912,60.12211227,179.9612858,180.8976141,14.461284,0.130720656,1620000000000 ,1620000000000 ,1620000000000 ,1616812385400 -1616812385430 ,112.5730229,26.88738989,60.12297058,179.9569418,180.9062672,14.457112,0.130699857,1620000000000 ,1620000000000 ,1620000000000 ,1616812385410 -1616812385439 ,112.5730229,26.88738859,60.12405014,179.9543463,180.9089707,14.453279,0.130664645,1620000000000 ,1620000000000 ,1620000000000 ,1616812385420 -1616812385453 ,112.5730229,26.88738728,60.12533951,179.9519694,180.9169466,14.4471035,0.130625046,1620000000000 ,1620000000000 ,1620000000000 ,1616812385430 -1616812385462 ,112.5730228,26.88738597,60.12678909,179.9489095,180.9255095,14.44368,0.130589005,1620000000000 ,1620000000000 ,1620000000000 ,1616812385440 -1616812385471 ,112.5730228,26.88738467,60.12852097,179.9458496,180.7214921,14.445594,0.130543906,1620000000000 ,1620000000000 ,1620000000000 ,1616812385450 -1616812385479 ,112.5730228,26.88738336,60.13041687,179.9438005,180.5101155,14.451664,0.130538087,1620000000000 ,1620000000000 ,1620000000000 ,1616812385460 -1616812385490 ,112.5730228,26.88738206,60.13227081,179.9402488,180.5068297,14.454731,0.130576905,1620000000000 ,1620000000000 ,1620000000000 ,1616812385470 -1616812385499 ,112.5730228,26.88738075,60.13415527,179.9357409,180.5081742,14.450415,0.130560699,1620000000000 ,1620000000000 ,1620000000000 ,1616812385480 -1616812385509 ,112.5730228,26.88737945,60.13616562,179.932517,180.5002715,14.442516,0.130502043,1620000000000 ,1620000000000 ,1620000000000 ,1616812385490 -1616812385520 ,112.5730228,26.88737814,60.13827133,179.9289107,180.4947218,14.437398,0.130450305,1620000000000 ,1620000000000 ,1620000000000 ,1616812385500 -1616812385530 ,112.5730228,26.88737684,60.14037704,179.9244028,180.4887512,14.437495,0.130437864,1620000000000 ,1620000000000 ,1620000000000 ,1616812385510 -1616812385541 ,112.5730227,26.88737553,60.14237595,179.9249765,180.4903703,14.440309,0.130461658,1620000000000 ,1620000000000 ,1620000000000 ,1616812385520 -1616812385550 ,112.5730227,26.88737423,60.14425278,179.9208511,180.4909291,14.442605,0.130483176,1620000000000 ,1620000000000 ,1620000000000 ,1616812385530 -1616812385561 ,112.5730227,26.88737292,60.14607239,179.9164798,180.4890133,14.441312,0.130481182,1620000000000 ,1620000000000 ,1620000000000 ,1616812385540 -1616812385570 ,112.5730227,26.88737162,60.14787292,179.9119172,180.487985,14.439648,0.130466317,1620000000000 ,1620000000000 ,1620000000000 ,1616812385550 -1616812385580 ,112.5730227,26.88737032,60.14964294,179.9083655,180.4941906,14.438726,0.130458215,1620000000000 ,1620000000000 ,1620000000000 ,1616812385560 -1616812385590 ,112.5730227,26.88736901,60.15134811,179.9028194,180.5031781,14.439739,0.130461989,1620000000000 ,1620000000000 ,1620000000000 ,1616812385570 -1616812385602 ,112.5730227,26.88736771,60.15301895,179.8953881,180.5045549,14.43753,0.13045425,1620000000000 ,1620000000000 ,1620000000000 ,1616812385580 -1616812385612 ,112.5730227,26.8873664,60.15471268,179.8916179,180.4967031,14.434174,0.13042781,1620000000000 ,1620000000000 ,1620000000000 ,1616812385590 -1616812385620 ,112.5730227,26.8873651,60.15644073,179.8843506,180.4928633,14.43097,0.13040594,1620000000000 ,1620000000000 ,1620000000000 ,1616812385600 -1616812385632 ,112.5730226,26.88736379,60.15820313,179.8798153,180.4915359,14.427657,0.130377745,1620000000000 ,1620000000000 ,1620000000000 ,1616812385610 -1616812385642 ,112.5730226,26.88736249,60.15999222,179.8758265,180.4862823,14.426817,0.130367206,1620000000000 ,1620000000000 ,1620000000000 ,1616812385620 -1616812385652 ,112.5730226,26.88736119,60.16172028,179.8723294,180.4744722,14.427798,0.130374209,1620000000000 ,1620000000000 ,1620000000000 ,1616812385630 -1616812385662 ,112.5730226,26.88735988,60.16329956,179.8683952,180.4664409,14.430224,0.130389636,1620000000000 ,1620000000000 ,1620000000000 ,1616812385640 -1616812385672 ,112.5730226,26.88735858,60.16467285,179.8655812,180.4590828,14.430812,0.130394934,1620000000000 ,1620000000000 ,1620000000000 ,1616812385650 -1616812385682 ,112.5730226,26.88735728,60.16582489,179.8639146,180.4439723,14.431318,0.130394987,1620000000000 ,1620000000000 ,1620000000000 ,1616812385660 -1616812385691 ,112.5730226,26.88735597,60.16677856,179.8600897,180.4246147,14.431031,0.130386109,1620000000000 ,1620000000000 ,1620000000000 ,1616812385670 -1616812385702 ,112.5730226,26.88735467,60.16757584,179.8553632,180.4106676,14.43074,0.130378496,1620000000000 ,1620000000000 ,1620000000000 ,1616812385680 -1616812385715 ,112.5730226,26.88735336,60.16827393,179.8492707,180.4038496,14.429615,0.130367863,1620000000000 ,1620000000000 ,1620000000000 ,1616812385690 -1616812385724 ,112.5730226,26.88735206,60.16888046,179.8476041,180.3924701,14.427916,0.130350776,1620000000000 ,1620000000000 ,1620000000000 ,1616812385700 -1616812385732 ,112.5730225,26.88735076,60.16940689,179.8443256,180.3851438,14.426665,0.130335674,1620000000000 ,1620000000000 ,1620000000000 ,1616812385710 -1616812385742 ,112.5730225,26.88734945,60.16989136,179.8429869,180.3729338,14.426187,0.130328597,1620000000000 ,1620000000000 ,1620000000000 ,1616812385720 -1616812385756 ,112.5730225,26.88734815,60.17035675,179.841375,180.362223,14.425647,0.13032115,1620000000000 ,1620000000000 ,1620000000000 ,1616812385730 -1616812385763 ,112.5730225,26.88734685,60.17079163,179.8393259,180.3600653,14.424816,0.130314045,1620000000000 ,1620000000000 ,1620000000000 ,1616812385740 -1616812385774 ,112.5730225,26.88734554,60.1711731,179.8392167,180.3556477,14.422689,0.130298026,1620000000000 ,1620000000000 ,1620000000000 ,1616812385750 -1616812385783 ,112.5730225,26.88734424,60.17150116,179.8390527,180.3471886,14.419072,0.13026346,1620000000000 ,1620000000000 ,1620000000000 ,1616812385770 -1616812385793 ,112.5730225,26.88734294,60.17182159,179.8373862,180.335765,14.416805,0.130240123,1620000000000 ,1620000000000 ,1620000000000 ,1616812385780 -1616812385806 ,112.5730225,26.88734164,60.17214203,179.834818,180.3249282,14.416178,0.130230096,1620000000000 ,1620000000000 ,1620000000000 ,1616812385780 -1616812385813 ,112.5730225,26.88734034,60.17243958,179.8340804,180.3280017,14.416415,0.130227877,1620000000000 ,1620000000000 ,1620000000000 ,1616812385800 -1616812385823 ,112.5730225,26.88733903,60.17272186,179.8314029,180.335011,14.414595,0.130216809,1620000000000 ,1620000000000 ,1620000000000 ,1616812385810 -1616812385833 ,112.5730225,26.88733773,60.17301559,179.8286162,180.3292657,14.411564,0.130194842,1620000000000 ,1620000000000 ,1620000000000 ,1616812385820 -1616812385843 ,112.5730225,26.88733513,60.17366028,179.826813,180.3052388,14.410618,0.260354038,1620000000000 ,1620000000000 ,1620000000000 ,1616812385830 -1616812385854 ,112.5730224,26.88733383,60.17393112,179.8272502,180.3056181,14.410495,0.130176499,1620000000000 ,1620000000000 ,1620000000000 ,1616812385840 -1616812385864 ,112.5730224,26.88733252,60.17417145,179.8260754,180.3082158,14.409406,0.130166715,1620000000000 ,1620000000000 ,1620000000000 ,1616812385850 -1616812385873 ,112.5730224,26.88733122,60.17446899,179.8240536,180.309154,14.405815,0.130144341,1620000000000 ,1620000000000 ,1620000000000 ,1616812385860 -1616812385883 ,112.5730224,26.88732992,60.17484665,179.8224964,180.3089216,14.403795,0.130121556,1620000000000 ,1620000000000 ,1620000000000 ,1616812385870 -1616812385893 ,112.5730224,26.88732862,60.17527008,179.8214855,180.3046399,14.402041,0.130108601,1620000000000 ,1620000000000 ,1620000000000 ,1616812385880 -1616812385905 ,112.5730224,26.88732732,60.17573929,179.819737,180.3108204,14.398142,0.13008081,1620000000000 ,1620000000000 ,1620000000000 ,1616812385890 -1616812385914 ,112.5730224,26.88732602,60.17627335,179.8172781,180.3118512,14.394514,0.130049571,1620000000000 ,1620000000000 ,1620000000000 ,1616812385900 -1616812385924 ,112.5730224,26.88732472,60.17684555,179.8161306,180.3136877,14.39309,0.130033893,1620000000000 ,1620000000000 ,1620000000000 ,1616812385910 -1616812385934 ,112.5730224,26.88732342,60.17739868,179.8130434,180.3202266,14.392868,0.130029922,1620000000000 ,1620000000000 ,1620000000000 ,1616812385920 -1616812385945 ,112.5730224,26.88732212,60.17792511,179.8103659,180.3357071,14.393447,0.130034602,1620000000000 ,1620000000000 ,1620000000000 ,1616812385930 -1616812385957 ,112.5730224,26.88732082,60.1784935,179.8068416,180.3422101,14.390394,0.130017855,1620000000000 ,1620000000000 ,1620000000000 ,1616812385940 -1616812385965 ,112.5730224,26.88731952,60.17916107,179.8033445,180.3379927,14.38615,0.129989277,1620000000000 ,1620000000000 ,1620000000000 ,1616812385950 -1616812385975 ,112.5730224,26.88731822,60.17990875,179.8005032,180.3304366,14.382327,0.129956273,1620000000000 ,1620000000000 ,1620000000000 ,1616812385960 -1616812385998 ,112.5730224,26.88731692,60.18066406,179.798017,180.3268156,14.380784,0.129938406,1620000000000 ,1620000000000 ,1620000000000 ,1616812385970 -1616812385999 ,112.5730223,26.88731562,60.18136978,179.797935,180.323218,14.378886,0.129919034,1620000000000 ,1620000000000 ,1620000000000 ,1616812385980 -1616812386008 ,112.5730223,26.88731562,60.18136978,179.797935,-400,14.378886,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812385990 -1616812386015 ,112.5730223,26.88731302,60.18252563,179.7987546,180.3276436,14.378772,0.259831132,1620000000000 ,1620000000000 ,1620000000000 ,1616812386000 -1616812386025 ,112.5730223,26.88731172,60.18305206,179.7985361,180.3257222,14.374972,0.129886866,1620000000000 ,1620000000000 ,1620000000000 ,1616812386010 -1616812386035 ,112.5730223,26.88731042,60.18362427,179.7989732,180.3129059,14.370859,0.12985553,1620000000000 ,1620000000000 ,1620000000000 ,1616812386020 -1616812386045 ,112.5730223,26.88730913,60.18422699,179.8010496,180.3104844,14.368084,0.129827988,1620000000000 ,1620000000000 ,1620000000000 ,1616812386030 -1616812386055 ,112.5730223,26.88730783,60.18476868,179.8027161,180.3071452,14.367171,0.129813202,1620000000000 ,1620000000000 ,1620000000000 ,1616812386040 -1616812386065 ,112.5730223,26.88730653,60.18519211,179.805175,180.3135571,14.36714,0.129808134,1620000000000 ,1620000000000 ,1620000000000 ,1616812386050 -1616812386076 ,112.5730223,26.88730523,60.18550491,179.8081803,180.3109021,14.367111,0.129805451,1620000000000 ,1620000000000 ,1620000000000 ,1616812386060 -1616812386087 ,112.5730223,26.88730393,60.18577576,179.8099288,180.3039964,14.366373,0.129800125,1620000000000 ,1620000000000 ,1620000000000 ,1616812386070 -1616812386096 ,112.5730223,26.88730264,60.18605423,179.8151744,180.2977535,14.362593,0.129773864,1620000000000 ,1620000000000 ,1620000000000 ,1616812386080 -1616812386106 ,112.5730223,26.88730134,60.18635178,179.8227149,180.299657,14.358232,0.129735059,1620000000000 ,1620000000000 ,1620000000000 ,1616812386090 -1616812386116 ,112.5730223,26.88730004,60.18667984,179.8295178,180.2977494,14.35542,0.129707276,1620000000000 ,1620000000000 ,1620000000000 ,1616812386100 -1616812386130 ,112.5730223,26.88729875,60.18698502,179.8394626,180.2851211,14.354392,0.129692994,1620000000000 ,1620000000000 ,1620000000000 ,1616812386110 -1616812386140 ,112.5730222,26.88729745,60.18720627,179.8501723,180.2810649,14.354232,0.12968657,1620000000000 ,1620000000000 ,1620000000000 ,1616812386120 -1616812386149 ,112.5730222,26.88729615,60.18730545,179.8605815,180.2797542,14.354376,0.1296809,1620000000000 ,1620000000000 ,1620000000000 ,1616812386130 -1616812386157 ,112.5730222,26.88729485,60.18730164,179.8722475,180.2807754,14.353108,0.129666884,1620000000000 ,1620000000000 ,1620000000000 ,1616812386140 -1616812386167 ,112.5730222,26.88729356,60.18727493,179.8839134,180.2775775,14.351343,0.129653595,1620000000000 ,1620000000000 ,1620000000000 ,1616812386150 -1616812386176 ,112.5730222,26.88729226,60.18725204,179.8944046,180.2766347,14.348512,0.129626558,1620000000000 ,1620000000000 ,1620000000000 ,1616812386160 -1616812386188 ,112.5730222,26.88729097,60.18721771,179.9063984,180.2913358,14.347514,0.129613905,1620000000000 ,1620000000000 ,1620000000000 ,1616812386170 -1616812386197 ,112.5730222,26.88728967,60.18713379,179.920332,180.2988395,14.345709,0.12959625,1620000000000 ,1620000000000 ,1620000000000 ,1616812386180 -1616812386207 ,112.5730222,26.88728837,60.18703079,179.9335552,180.3140441,14.34361,0.129575197,1620000000000 ,1620000000000 ,1620000000000 ,1616812386190 -1616812386218 ,112.5730222,26.88728708,60.18682861,179.9592367,180.5220791,14.366123,0.129844434,1620000000000 ,1620000000000 ,1620000000000 ,1616812386200 -1616812386229 ,112.5730222,26.88728577,60.18651199,179.9749735,180.8429613,14.36263,0.130331884,1620000000000 ,1620000000000 ,1620000000000 ,1616812386210 -1616812386238 ,112.5730222,26.88728447,60.18624115,179.9899999,180.8511493,14.357755,0.13028998,1620000000000 ,1620000000000 ,1620000000000 ,1616812386220 -1616812386247 ,112.5730221,26.88728317,60.18600845,180.0056547,180.8612946,14.353312,0.130248903,1620000000000 ,1620000000000 ,1620000000000 ,1616812386230 -1616812386258 ,112.5730221,26.88728187,60.18579102,180.0205992,180.8729595,14.349742,0.130207405,1620000000000 ,1620000000000 ,1620000000000 ,1616812386240 -1616812386270 ,112.5730221,26.88728056,60.18556213,180.0355436,180.8859252,14.349361,0.130196674,1620000000000 ,1620000000000 ,1620000000000 ,1616812386250 -1616812386278 ,112.5730221,26.88727926,60.18528366,180.0514989,180.8990053,14.350986,0.13020555,1620000000000 ,1620000000000 ,1620000000000 ,1616812386260 -1616812386288 ,112.5730221,26.88727796,60.18496323,180.0669078,180.9151589,14.351272,0.130205045,1620000000000 ,1620000000000 ,1620000000000 ,1616812386270 -1616812386298 ,112.573022,26.88727666,60.18468094,180.0812512,180.9372751,14.348264,0.130187146,1620000000000 ,1620000000000 ,1620000000000 ,1616812386280 -1616812386309 ,112.573022,26.88727536,60.18450165,180.0964689,180.9511181,14.343818,0.130149574,1620000000000 ,1620000000000 ,1620000000000 ,1616812386290 -1616812386318 ,112.573022,26.88727406,60.18437958,180.1123149,180.9492259,14.339869,0.130112875,1620000000000 ,1620000000000 ,1620000000000 ,1616812386300 -1616812386328 ,112.573022,26.88727276,60.18423843,180.1273687,180.9604845,14.336894,0.130079074,1620000000000 ,1620000000000 ,1620000000000 ,1616812386310 -1616812386339 ,112.5730219,26.88727146,60.18408585,180.1410291,180.9986936,14.335665,0.130063702,1620000000000 ,1620000000000 ,1620000000000 ,1616812386320 -1616812386353 ,112.5730219,26.88727015,60.18398285,180.1544709,181.0253888,14.333882,0.130048836,1620000000000 ,1620000000000 ,1620000000000 ,1616812386330 -1616812386362 ,112.5730219,26.88726885,60.18399429,180.1676122,181.0408821,14.330527,0.130024338,1620000000000 ,1620000000000 ,1620000000000 ,1616812386340 -1616812386370 ,112.5730219,26.88726756,60.1841507,180.182338,181.0457925,14.326781,0.129994352,1620000000000 ,1620000000000 ,1620000000000 ,1616812386350 -1616812386378 ,112.5730218,26.88726626,60.18439865,180.1945777,181.0519633,14.322268,0.129952302,1620000000000 ,1620000000000 ,1620000000000 ,1616812386360 -1616812386389 ,112.5730218,26.88726496,60.18469238,180.2048504,181.0643755,14.321626,0.129941678,1620000000000 ,1620000000000 ,1620000000000 ,1616812386370 -1616812386400 ,112.5730218,26.88726366,60.18500137,180.2148224,181.0864206,14.320851,0.129931959,1620000000000 ,1620000000000 ,1620000000000 ,1616812386380 -1616812386409 ,112.5730218,26.88726236,60.18539429,180.2260239,181.1020495,14.319158,0.129923853,1620000000000 ,1620000000000 ,1620000000000 ,1616812386390 -1616812386419 ,112.5730217,26.88726106,60.18594742,180.2345753,181.1021735,14.315243,0.129896081,1620000000000 ,1620000000000 ,1620000000000 ,1616812386400 -1616812386433 ,112.5730217,26.88725976,60.18671417,180.2435639,181.1028509,14.3115,0.129873826,1620000000000 ,1620000000000 ,1620000000000 ,1616812386410 -1616812386440 ,112.5730217,26.88725846,60.18769836,180.2533447,181.1172135,14.305894,0.129831627,1620000000000 ,1620000000000 ,1620000000000 ,1616812386420 -1616812386449 ,112.5730217,26.88725717,60.18886185,180.2664313,181.1309704,14.2982235,0.129772668,1620000000000 ,1620000000000 ,1620000000000 ,1616812386430 -1616812386460 ,112.5730216,26.88725587,60.19017792,180.2791355,181.149995,14.291193,0.129715891,1620000000000 ,1620000000000 ,1620000000000 ,1616812386440 -1616812386470 ,112.5730216,26.88725458,60.19174957,180.2913479,180.9549101,14.287794,0.129390629,1620000000000 ,1620000000000 ,1620000000000 ,1616812386450 -1616812386479 ,112.5730216,26.88725328,60.19349289,180.3040247,180.7554086,14.28693,0.129089444,1620000000000 ,1620000000000 ,1620000000000 ,1616812386460 -1616812386490 ,112.5730216,26.88725199,60.1952095,180.3156633,180.7743714,14.28886,0.129102203,1620000000000 ,1620000000000 ,1620000000000 ,1616812386470 -1616812386500 ,112.5730216,26.8872507,60.19690323,180.3279577,180.8000268,14.289433,0.129113084,1620000000000 ,1620000000000 ,1620000000000 ,1616812386480 -1616812386512 ,112.5730216,26.88724941,60.19862366,180.3392412,180.8224151,14.2849455,0.129090101,1620000000000 ,1620000000000 ,1620000000000 ,1616812386490 -1616812386520 ,112.5730215,26.88724812,60.20044708,180.3483116,180.8242585,14.274337,0.129013918,1620000000000 ,1620000000000 ,1620000000000 ,1616812386500 -1616812386532 ,112.5730215,26.88724683,60.20238495,180.3593492,180.8190673,14.264971,0.128934343,1620000000000 ,1620000000000 ,1620000000000 ,1616812386510 -1616812386541 ,112.5730215,26.88724554,60.20432663,180.3710698,180.8254251,14.262147,0.128891468,1620000000000 ,1620000000000 ,1620000000000 ,1616812386520 -1616812386553 ,112.5730215,26.88724425,60.20608521,180.38514,180.8435166,14.264044,0.128895528,1620000000000 ,1620000000000 ,1620000000000 ,1616812386530 -1616812386562 ,112.5730215,26.88724297,60.20758438,180.4009587,180.8635226,14.26587,0.128912315,1620000000000 ,1620000000000 ,1620000000000 ,1616812386540 -1616812386572 ,112.5730214,26.88724168,60.20892715,180.4149196,180.8709128,14.263897,0.128898827,1620000000000 ,1620000000000 ,1620000000000 ,1616812386550 -1616812386581 ,112.5730214,26.88724039,60.21022034,180.4269681,180.8577335,14.260114,0.128865387,1620000000000 ,1620000000000 ,1620000000000 ,1616812386560 -1616812386593 ,112.5730214,26.8872391,60.21142578,180.4400547,180.8565946,14.255631,0.128821969,1620000000000 ,1620000000000 ,1620000000000 ,1616812386570 -1616812386603 ,112.5730214,26.88723781,60.21242142,180.4543981,180.8777351,14.2531185,0.128785549,1620000000000 ,1620000000000 ,1620000000000 ,1616812386580 -1616812386614 ,112.5730214,26.88723653,60.21311951,180.4692606,180.8955943,14.252985,0.128770329,1620000000000 ,1620000000000 ,1620000000000 ,1616812386590 -1616812386621 ,112.5730213,26.88723524,60.21352005,180.4843144,180.9076296,14.252002,0.128751609,1620000000000 ,1620000000000 ,1620000000000 ,1616812386600 -1616812386632 ,112.5730213,26.88723395,60.21376419,180.4968273,180.9086065,14.249549,0.128729331,1620000000000 ,1620000000000 ,1620000000000 ,1616812386610 -1616812386642 ,112.5730213,26.88723266,60.21397781,180.5080561,180.9161617,14.245736,0.128689747,1620000000000 ,1620000000000 ,1620000000000 ,1616812386620 -1616812386654 ,112.5730213,26.88723138,60.21424866,180.5226181,180.9406813,14.241807,0.128660172,1620000000000 ,1620000000000 ,1620000000000 ,1616812386630 -1616812386665 ,112.5730213,26.88723009,60.21455765,180.5375898,180.975225,14.236837,0.128617596,1620000000000 ,1620000000000 ,1620000000000 ,1616812386640 -1616812386673 ,112.5730212,26.88722881,60.21492386,180.5503213,181.0093083,14.233507,0.12858296,1620000000000 ,1620000000000 ,1620000000000 ,1616812386650 -1616812386684 ,112.5730212,26.88722752,60.21531677,180.5637358,181.0169427,14.232639,0.128568031,1620000000000 ,1620000000000 ,1620000000000 ,1616812386660 -1616812386693 ,112.5730212,26.88722624,60.21564484,180.5796092,181.028745,14.231527,0.128557254,1620000000000 ,1620000000000 ,1620000000000 ,1616812386670 -1616812386703 ,112.5730212,26.88722495,60.21586227,180.5931603,181.0611277,14.227925,0.128523841,1620000000000 ,1620000000000 ,1620000000000 ,1616812386680 -1616812386713 ,112.5730211,26.88722367,60.21609497,180.6051268,181.0983602,14.220483,0.128467753,1620000000000 ,1620000000000 ,1620000000000 ,1616812386690 -1616812386722 ,112.5730211,26.88722238,60.21650696,180.6153994,181.1296042,14.214115,0.128410557,1620000000000 ,1620000000000 ,1620000000000 ,1616812386700 -1616812386734 ,112.5730211,26.8872211,60.21706772,180.626273,181.1504891,14.2109,0.128374959,1620000000000 ,1620000000000 ,1620000000000 ,1616812386710 -1616812386742 ,112.5730211,26.88721982,60.21765518,180.6351796,181.1761964,14.209779,0.128364005,1620000000000 ,1620000000000 ,1620000000000 ,1616812386720 -1616812386752 ,112.573021,26.88721853,60.21823883,180.6441681,181.2091196,14.205399,0.128331416,1620000000000 ,1620000000000 ,1620000000000 ,1616812386730 -1616812386762 ,112.573021,26.88721725,60.21886826,180.6518453,181.2343205,14.201838,0.128298446,1620000000000 ,1620000000000 ,1620000000000 ,1616812386740 -1616812386773 ,112.573021,26.88721597,60.21959686,180.658894,181.2501954,14.197123,0.128260507,1620000000000 ,1620000000000 ,1620000000000 ,1616812386750 -1616812386782 ,112.573021,26.88721469,60.22042847,180.667664,181.2681824,14.192869,0.128226595,1620000000000 ,1620000000000 ,1620000000000 ,1616812386760 -1616812386792 ,112.5730209,26.8872134,60.22131348,180.6758056,181.2913581,14.18856,0.128187829,1620000000000 ,1620000000000 ,1620000000000 ,1616812386770 -1616812386802 ,112.5730209,26.88721212,60.22225952,180.6832368,181.3137006,14.185148,0.128156336,1620000000000 ,1620000000000 ,1620000000000 ,1616812386780 -1616812386814 ,112.5730209,26.88721084,60.22325134,180.6890834,181.3237615,14.181454,0.12812525,1620000000000 ,1620000000000 ,1620000000000 ,1616812386790 -1616812386825 ,112.5730208,26.88720956,60.22429657,180.6940558,181.3380706,14.178163,0.128094962,1620000000000 ,1620000000000 ,1620000000000 ,1616812386800 -1616812386837 ,112.5730208,26.88720828,60.22541428,180.6969245,181.3612023,14.175363,0.128070489,1620000000000 ,1620000000000 ,1620000000000 ,1616812386810 -1616812386843 ,112.5730208,26.887207,60.22661591,180.6991921,181.376413,14.170546,0.128035321,1620000000000 ,1620000000000 ,1620000000000 ,1616812386830 -1616812386854 ,112.5730207,26.88720444,60.22920609,180.7054486,181.40167,14.159117,0.255925975,1620000000000 ,1620000000000 ,1620000000000 ,1616812386840 -1616812386863 ,112.5730207,26.88720316,60.23044968,180.7076616,181.4132277,14.157436,0.127914292,1620000000000 ,1620000000000 ,1620000000000 ,1616812386850 -1616812386876 ,112.5730207,26.88720316,60.23044968,180.7076616,-400,14.157436,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812386860 -1616812386884 ,112.5730206,26.88720061,60.23285675,180.7071698,181.4261396,14.152057,0.25576215,1620000000000 ,1620000000000 ,1620000000000 ,1616812386870 -1616812386893 ,112.5730206,26.88719933,60.23415756,180.7075523,181.434465,14.144007,0.127813507,1620000000000 ,1620000000000 ,1620000000000 ,1616812386880 -1616812386904 ,112.5730206,26.88719933,60.23415756,180.7075523,-400,14.144007,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812386890 -1616812386914 ,112.5730205,26.88719678,60.23704147,180.7105302,181.4520186,14.13049,0.255433048,1620000000000 ,1620000000000 ,1620000000000 ,1616812386900 -1616812386927 ,112.5730205,26.8871955,60.23849106,180.7124973,181.4510705,14.129417,0.127668247,1620000000000 ,1620000000000 ,1620000000000 ,1616812386910 -1616812386935 ,112.5730205,26.88719422,60.23985291,180.7140546,181.4454239,14.129761,0.127665708,1620000000000 ,1620000000000 ,1620000000000 ,1616812386920 -1616812386945 ,112.5730204,26.88719295,60.24114609,180.7141366,181.4489699,14.125511,0.127638775,1620000000000 ,1620000000000 ,1620000000000 ,1616812386930 -1616812386954 ,112.5730204,26.88719167,60.24249268,180.7128252,181.4602738,14.118198,0.127580985,1620000000000 ,1620000000000 ,1620000000000 ,1616812386940 -1616812386964 ,112.5730204,26.8871904,60.24394989,180.7144644,181.4603994,14.112333,0.127529753,1620000000000 ,1620000000000 ,1620000000000 ,1616812386950 -1616812386976 ,112.5730203,26.88718912,60.24546051,180.7171145,181.4628873,14.1075115,0.127480408,1620000000000 ,1620000000000 ,1620000000000 ,1616812386960 -1616812386986 ,112.5730203,26.88718785,60.24695587,180.7207482,181.4692375,14.105532,0.127462056,1620000000000 ,1620000000000 ,1620000000000 ,1616812386970 -1616812386995 ,112.5730203,26.88718657,60.24835587,180.7229885,181.464345,14.102172,0.127429776,1620000000000 ,1620000000000 ,1620000000000 ,1616812386980 -1616812387004 ,112.5730203,26.88718657,60.24835587,180.7229885,-400,14.102172,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812386990 -1616812387015 ,112.5730202,26.88718403,60.25093079,180.7233983,181.458134,14.097097,0.254777328,1620000000000 ,1620000000000 ,1620000000000 ,1616812387000 -1616812387025 ,112.5730202,26.88718275,60.25222397,180.7239994,181.4569424,14.093137,0.127347766,1620000000000 ,1620000000000 ,1620000000000 ,1616812387010 -1616812387035 ,112.5730201,26.88718148,60.25351715,180.7256113,181.4611899,14.088144,0.127307632,1620000000000 ,1620000000000 ,1620000000000 ,1616812387020 -1616812387044 ,112.5730201,26.88718021,60.25476456,180.7278243,181.4563203,14.0852375,0.127270078,1620000000000 ,1620000000000 ,1620000000000 ,1616812387030 -1616812387055 ,112.5730201,26.88717894,60.25592422,180.7288078,181.4572851,14.081839,0.127239702,1620000000000 ,1620000000000 ,1620000000000 ,1616812387040 -1616812387065 ,112.57302,26.88717767,60.25697327,180.7314853,181.4470773,14.078333,0.12720238,1620000000000 ,1620000000000 ,1620000000000 ,1616812387050 -1616812387076 ,112.57302,26.88717639,60.25795364,180.7329059,181.4297244,14.072985,0.127162297,1620000000000 ,1620000000000 ,1620000000000 ,1616812387060 -1616812387085 ,112.57302,26.88717512,60.25894547,180.7324142,181.4245292,14.068712,0.127119945,1620000000000 ,1620000000000 ,1620000000000 ,1616812387070 -1616812387095 ,112.5730199,26.88717385,60.25999069,180.7350643,181.4187353,14.064506,0.127080453,1620000000000 ,1620000000000 ,1620000000000 ,1616812387080 -1616812387105 ,112.5730199,26.88717258,60.26106644,180.7373319,181.4272056,14.061321,0.127050952,1620000000000 ,1620000000000 ,1620000000000 ,1616812387090 -1616812387115 ,112.5730199,26.88717131,60.26216507,180.7401459,181.4313453,14.056717,0.127015592,1620000000000 ,1620000000000 ,1620000000000 ,1616812387100 -1616812387127 ,112.5730198,26.88717004,60.2632637,180.742277,181.43111,14.050037,0.126963575,1620000000000 ,1620000000000 ,1620000000000 ,1616812387110 -1616812387136 ,112.5730198,26.88716877,60.26437378,180.7460472,181.4415842,14.046472,0.126921356,1620000000000 ,1620000000000 ,1620000000000 ,1616812387120 -1616812387148 ,112.5730198,26.88716751,60.26544571,180.7475225,181.4366603,14.044041,0.126894935,1620000000000 ,1620000000000 ,1620000000000 ,1616812387130 -1616812387158 ,112.5730197,26.88716624,60.26651001,180.7482875,181.4378519,14.039846,0.12686597,1620000000000 ,1620000000000 ,1620000000000 ,1616812387140 -1616812387167 ,112.5730197,26.88716497,60.26761246,180.7472767,181.4486459,14.033413,0.126815434,1620000000000 ,1620000000000 ,1620000000000 ,1616812387150 -1616812387176 ,112.5730197,26.8871637,60.26875687,180.7470308,181.4602276,14.026739,0.126755385,1620000000000 ,1620000000000 ,1620000000000 ,1616812387160 -1616812387187 ,112.5730196,26.88716244,60.26990891,180.7495443,181.4631048,14.021437,0.126704315,1620000000000 ,1620000000000 ,1620000000000 ,1616812387170 -1616812387196 ,112.5730196,26.88716117,60.27100372,180.7512382,181.4524206,14.019476,0.126679515,1620000000000 ,1620000000000 ,1620000000000 ,1616812387180 -1616812387207 ,112.5730196,26.8871599,60.2720108,180.7529867,181.4457895,14.0183735,0.126663611,1620000000000 ,1620000000000 ,1620000000000 ,1616812387190 -1616812387220 ,112.5730196,26.88715864,60.27222061,180.7538883,181.3606908,13.999877,0.126389118,1620000000000 ,1620000000000 ,1620000000000 ,1616812387200 -1616812387228 ,112.5730195,26.88715738,60.27124023,180.7565384,181.2219551,13.994955,0.125935869,1620000000000 ,1620000000000 ,1620000000000 ,1616812387210 -1616812387237 ,112.5730195,26.88715612,60.27022934,180.7569755,181.2235541,13.9883175,0.125876332,1620000000000 ,1620000000000 ,1620000000000 ,1616812387220 -1616812387247 ,112.5730195,26.88715486,60.26924896,180.7575493,181.2146038,13.981329,0.125815781,1620000000000 ,1620000000000 ,1620000000000 ,1616812387230 -1616812387260 ,112.5730194,26.88715361,60.26826477,180.7607458,181.2134964,13.977439,0.125772487,1620000000000 ,1620000000000 ,1620000000000 ,1616812387240 -1616812387268 ,112.5730194,26.88715235,60.26720047,180.7621938,181.2077886,13.975043,0.125741663,1620000000000 ,1620000000000 ,1620000000000 ,1616812387250 -1616812387277 ,112.5730194,26.88715109,60.26602936,180.7653357,181.2059737,13.972484,0.12571365,1620000000000 ,1620000000000 ,1620000000000 ,1616812387260 -1616812387287 ,112.5730194,26.88714984,60.26479721,180.7664558,181.2056208,13.969981,0.125691005,1620000000000 ,1620000000000 ,1620000000000 ,1616812387270 -1616812387300 ,112.5730193,26.88714858,60.26356125,180.7693518,181.2033248,13.965972,0.12565863,1620000000000 ,1620000000000 ,1620000000000 ,1616812387280 -1616812387308 ,112.5730193,26.88714732,60.26236343,180.7713189,181.2037065,13.958894,0.125598162,1620000000000 ,1620000000000 ,1620000000000 ,1616812387290 -1616812387317 ,112.5730193,26.88714607,60.26122665,180.7757449,181.192117,13.950882,0.125528928,1620000000000 ,1620000000000 ,1620000000000 ,1616812387300 -1616812387331 ,112.5730193,26.88714482,60.26011658,180.7791327,181.1872543,13.945571,0.125472635,1620000000000 ,1620000000000 ,1620000000000 ,1616812387310 -1616812387340 ,112.5730192,26.88714356,60.25898743,180.7850613,181.1950659,13.943019,0.125439172,1620000000000 ,1620000000000 ,1620000000000 ,1616812387320 -1616812387350 ,112.5730192,26.88714231,60.25782013,180.7912631,181.2155391,13.943187,0.125433471,1620000000000 ,1620000000000 ,1620000000000 ,1616812387330 -1616812387359 ,112.5730192,26.88714105,60.25671387,180.7978747,181.2335463,13.9388485,0.12540665,1620000000000 ,1620000000000 ,1620000000000 ,1616812387340 -1616812387368 ,112.5730192,26.8871398,60.25574875,180.8012898,181.2435847,13.933248,0.125364181,1620000000000 ,1620000000000 ,1620000000000 ,1616812387350 -1616812387378 ,112.5730191,26.88713855,60.25487518,180.8065081,181.2556189,13.92634,0.125303971,1620000000000 ,1620000000000 ,1620000000000 ,1616812387360 -1616812387389 ,112.5730191,26.8871373,60.25397491,180.8112619,181.2633236,13.920868,0.125243951,1620000000000 ,1620000000000 ,1620000000000 ,1616812387370 -1616812387402 ,112.5730191,26.88713604,60.25300217,180.8115624,181.2811065,13.916852,0.125204166,1620000000000 ,1620000000000 ,1620000000000 ,1616812387380 -1616812387414 ,112.573019,26.88713479,60.25200653,180.8114804,181.2996064,13.91555,0.125181329,1620000000000 ,1620000000000 ,1620000000000 ,1616812387390 -1616812387419 ,112.573019,26.88713354,60.25106812,180.8084478,181.3059464,13.915575,0.125178848,1620000000000 ,1620000000000 ,1620000000000 ,1616812387400 -1616812387429 ,112.573019,26.88713229,60.25023651,180.8059616,181.3033469,13.914668,0.125180877,1620000000000 ,1620000000000 ,1620000000000 ,1616812387410 -1616812387438 ,112.573019,26.88713104,60.24954987,180.807273,181.2980324,13.910717,0.125152495,1620000000000 ,1620000000000 ,1620000000000 ,1616812387420 -1616812387449 ,112.5730189,26.88712979,60.24900818,180.8065081,181.2818823,13.904063,0.125100774,1620000000000 ,1620000000000 ,1620000000000 ,1616812387430 -1616812387460 ,112.5730189,26.88712854,60.24856567,180.8077921,181.2689112,13.897404,0.125041309,1620000000000 ,1620000000000 ,1620000000000 ,1616812387440 -1616812387470 ,112.5730189,26.88712729,60.24880219,180.812464,181.3351433,13.891456,0.125242795,1620000000000 ,1620000000000 ,1620000000000 ,1616812387450 -1616812387479 ,112.5730188,26.88712603,60.24967575,180.81383,181.4215201,13.886043,0.12544183,1620000000000 ,1620000000000 ,1620000000000 ,1616812387460 -1616812387489 ,112.5730188,26.88712478,60.25064087,180.8122727,181.4315018,13.880524,0.125399889,1620000000000 ,1620000000000 ,1620000000000 ,1616812387470 -1616812387499 ,112.5730188,26.88712352,60.25182343,180.8118356,181.450941,13.876395,0.125362836,1620000000000 ,1620000000000 ,1620000000000 ,1616812387480 -1616812387509 ,112.5730187,26.88712227,60.25321579,180.8111799,181.4790266,13.873152,0.125341784,1620000000000 ,1620000000000 ,1620000000000 ,1616812387490 -1616812387519 ,112.5730187,26.88712102,60.25476074,180.8100598,181.4921603,13.865419,0.125293424,1620000000000 ,1620000000000 ,1620000000000 ,1616812387500 -1616812387529 ,112.5730187,26.88711977,60.25649261,180.8059616,181.500268,13.855693,0.125217703,1620000000000 ,1620000000000 ,1620000000000 ,1616812387510 -1616812387550 ,112.5730187,26.88711852,60.2583847,180.8046502,181.506269,13.848709,0.125155767,1620000000000 ,1620000000000 ,1620000000000 ,1616812387520 -1616812387559 ,112.5730186,26.88711726,60.26023483,180.8011259,181.5097254,13.84595,0.12512335,1620000000000 ,1620000000000 ,1620000000000 ,1616812387530 -1616812387564 ,112.5730186,26.88711601,60.2619133,180.798749,181.5277105,13.84607,0.125126681,1620000000000 ,1620000000000 ,1620000000000 ,1616812387540 -1616812387570 ,112.5730186,26.88711476,60.26353073,180.7951973,181.5452751,13.839228,0.125071143,1620000000000 ,1620000000000 ,1620000000000 ,1616812387550 -1616812387580 ,112.5730185,26.88711351,60.26532364,180.7924379,181.5321004,13.833125,0.125033683,1620000000000 ,1620000000000 ,1620000000000 ,1616812387560 -1616812387590 ,112.5730185,26.88711226,60.26736832,180.7903615,181.4996292,13.824605,0.124972321,1620000000000 ,1620000000000 ,1620000000000 ,1616812387570 -1616812387600 ,112.5730185,26.88711102,60.26950073,180.7921647,181.473619,13.819354,0.124922135,1620000000000 ,1620000000000 ,1620000000000 ,1616812387580 -1616812387610 ,112.5730184,26.88710977,60.2714119,180.7956071,181.4677576,13.815692,0.124878801,1620000000000 ,1620000000000 ,1620000000000 ,1616812387590 -1616812387620 ,112.5730184,26.88710852,60.27293015,180.7968092,181.4715035,13.814672,0.124855925,1620000000000 ,1620000000000 ,1620000000000 ,1616812387600 -1616812387631 ,112.5730184,26.88710727,60.27397919,180.7950607,181.4654553,13.817086,0.124851679,1620000000000 ,1620000000000 ,1620000000000 ,1616812387610 -1616812387646 ,112.5730183,26.88710602,60.27458191,180.7952792,181.4661028,13.820918,0.124868974,1620000000000 ,1620000000000 ,1620000000000 ,1616812387620 -1616812387651 ,112.5730183,26.88710477,60.27482986,180.7956071,181.4781549,13.820792,0.124871952,1620000000000 ,1620000000000 ,1620000000000 ,1616812387630 -1616812387661 ,112.5730183,26.88710353,60.2749176,180.7953065,181.4722077,13.813952,0.124823379,1620000000000 ,1620000000000 ,1620000000000 ,1616812387640 -1616812387672 ,112.5730182,26.88710228,60.27507401,180.7961535,181.4551289,13.806284,0.124752304,1620000000000 ,1620000000000 ,1620000000000 ,1616812387650 -1616812387680 ,112.5730182,26.88710103,60.27531815,180.7972463,181.4470212,13.800181,0.124696439,1620000000000 ,1620000000000 ,1620000000000 ,1616812387660 -1616812387691 ,112.5730182,26.88709979,60.27549362,180.79935,181.4635041,13.797239,0.124659103,1620000000000 ,1620000000000 ,1620000000000 ,1616812387670 -1616812387701 ,112.5730181,26.88709854,60.27545547,180.8012351,181.4797595,13.797186,0.124646764,1620000000000 ,1620000000000 ,1620000000000 ,1616812387680 -1616812387712 ,112.5730181,26.88709729,60.27516556,180.8034754,181.477534,13.797173,0.124637938,1620000000000 ,1620000000000 ,1620000000000 ,1616812387690 -1616812387721 ,112.5730181,26.88709605,60.2747612,180.8033935,181.4718375,13.795697,0.12462444,1620000000000 ,1620000000000 ,1620000000000 ,1616812387700 -1616812387731 ,112.573018,26.8870948,60.27434158,180.8039945,181.4648994,13.792273,0.124600593,1620000000000 ,1620000000000 ,1620000000000 ,1616812387710 -1616812387742 ,112.573018,26.88709356,60.27403641,180.804377,181.4736708,13.784125,0.12453835,1620000000000 ,1620000000000 ,1620000000000 ,1616812387720 -1616812387751 ,112.573018,26.88709231,60.27384949,180.8062895,181.4841009,13.776755,0.124473445,1620000000000 ,1620000000000 ,1620000000000 ,1616812387730 -1616812387761 ,112.5730179,26.88709107,60.27371216,180.8079561,181.491136,13.7709055,0.124419962,1620000000000 ,1620000000000 ,1620000000000 ,1616812387740 -1616812387774 ,112.5730179,26.88708983,60.27356339,180.8056065,181.4890457,13.766459,0.124374522,1620000000000 ,1620000000000 ,1620000000000 ,1616812387750 -1616812387782 ,112.5730179,26.88708858,60.27333832,180.8050601,181.4812532,13.766441,0.124363053,1620000000000 ,1620000000000 ,1620000000000 ,1616812387760 -1616812387793 ,112.5730178,26.88708734,60.27296448,180.8057704,181.4792936,13.765776,0.124355841,1620000000000 ,1620000000000 ,1620000000000 ,1616812387770 -1616812387802 ,112.5730178,26.8870861,60.27246094,180.8064534,181.495478,13.763977,0.124333571,1620000000000 ,1620000000000 ,1620000000000 ,1616812387780 -1616812387812 ,112.5730178,26.88708486,60.27196884,180.8049508,181.4958104,13.760232,0.12431117,1620000000000 ,1620000000000 ,1620000000000 ,1616812387790 -1616812387826 ,112.5730177,26.88708361,60.27163696,180.8074096,181.4905517,13.754203,0.124265987,1620000000000 ,1620000000000 ,1620000000000 ,1616812387800 -1616812387832 ,112.5730177,26.88708237,60.27145767,180.8106335,181.4859347,13.746731,0.124205382,1620000000000 ,1620000000000 ,1620000000000 ,1616812387810 -1616812387846 ,112.5730177,26.88708113,60.2713356,180.812382,181.483321,13.73815,0.12412884,1620000000000 ,1620000000000 ,1620000000000 ,1616812387820 -1616812387855 ,112.5730177,26.88707989,60.2711525,180.8160976,181.4883576,13.735607,0.124088147,1620000000000 ,1620000000000 ,1620000000000 ,1616812387830 -1616812387865 ,112.5730176,26.88707865,60.27076721,180.8200865,181.4882541,13.7384,0.124093439,1620000000000 ,1620000000000 ,1620000000000 ,1616812387840 -1616812387875 ,112.5730176,26.88707741,60.27015305,180.8201138,181.4958737,13.7402,0.124107055,1620000000000 ,1620000000000 ,1620000000000 ,1616812387850 -1616812387884 ,112.5730176,26.88707617,60.26942825,180.8176003,181.5078447,13.736995,0.124083317,1620000000000 ,1620000000000 ,1620000000000 ,1616812387860 -1616812387893 ,112.5730175,26.88707493,60.26874542,180.8146496,181.5097885,13.728487,0.124019717,1620000000000 ,1620000000000 ,1620000000000 ,1616812387870 -1616812387903 ,112.5730175,26.88707369,60.2681694,180.8126552,181.512249,13.7182665,0.123935311,1620000000000 ,1620000000000 ,1620000000000 ,1616812387880 -1616812387916 ,112.5730175,26.88707245,60.26767731,180.8144311,181.5196225,13.712738,0.12387382,1620000000000 ,1620000000000 ,1620000000000 ,1616812387900 -1616812387928 ,112.5730174,26.88707121,60.26723862,180.8147589,181.5155575,13.710084,0.123841921,1620000000000 ,1620000000000 ,1620000000000 ,1616812387910 -1616812387936 ,112.5730174,26.88706998,60.26677322,180.8163708,181.5077383,13.711224,0.123842339,1620000000000 ,1620000000000 ,1620000000000 ,1616812387920 -1616812387943 ,112.5730173,26.8870675,60.26573563,180.8192668,181.5148486,13.707872,0.24766828,1620000000000 ,1620000000000 ,1620000000000 ,1616812387930 -1616812387953 ,112.5730173,26.88706626,60.26534653,180.8194308,181.5177522,13.700512,0.123764982,1620000000000 ,1620000000000 ,1620000000000 ,1616812387940 -1616812387963 ,112.5730173,26.88706503,60.26514053,180.8193215,181.5097681,13.695857,0.123722421,1620000000000 ,1620000000000 ,1620000000000 ,1616812387950 -1616812387975 ,112.5730172,26.88706379,60.26502991,180.8205236,181.5039394,13.693525,0.123693768,1620000000000 ,1620000000000 ,1620000000000 ,1616812387960 -1616812387983 ,112.5730172,26.88706255,60.26494598,180.8210973,181.5087926,13.690852,0.123673351,1620000000000 ,1620000000000 ,1620000000000 ,1616812387970 -1616812387993 ,112.5730172,26.88706132,60.26489639,180.8217804,181.5062203,13.688515,0.123654358,1620000000000 ,1620000000000 ,1620000000000 ,1616812387980 -1616812388004 ,112.5730172,26.88706132,60.26489639,180.8217804,-400,13.688515,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812387980 -1616812388013 ,112.5730171,26.88705885,60.26507568,180.8205509,181.511579,13.682702,0.247230362,1620000000000 ,1620000000000 ,1620000000000 ,1616812388000 -1616812388027 ,112.5730171,26.88705761,60.26531219,180.8207148,181.515481,13.678486,0.12357488,1620000000000 ,1620000000000 ,1620000000000 ,1616812388010 -1616812388037 ,112.573017,26.88705637,60.26560593,180.820469,181.5187233,13.676585,0.123548171,1620000000000 ,1620000000000 ,1620000000000 ,1616812388020 -1616812388045 ,112.573017,26.88705514,60.26591873,180.8228459,181.5215264,13.675396,0.12353988,1620000000000 ,1620000000000 ,1620000000000 ,1616812388030 -1616812388054 ,112.573017,26.88705391,60.26621628,180.8238841,181.5211216,13.673614,0.123524037,1620000000000 ,1620000000000 ,1620000000000 ,1616812388040 -1616812388066 ,112.5730169,26.88705267,60.26655579,180.821835,181.5291143,13.671708,0.123507887,1620000000000 ,1620000000000 ,1620000000000 ,1616812388050 -1616812388075 ,112.5730169,26.88705144,60.26700592,180.8230098,181.5383013,13.667729,0.123480751,1620000000000 ,1620000000000 ,1620000000000 ,1616812388060 -1616812388084 ,112.5730169,26.8870502,60.26755524,180.8240207,181.5424274,13.664125,0.123450014,1620000000000 ,1620000000000 ,1620000000000 ,1616812388070 -1616812388095 ,112.5730168,26.88704897,60.26821899,180.8246217,181.5482164,13.660062,0.123418462,1620000000000 ,1620000000000 ,1620000000000 ,1616812388080 -1616812388105 ,112.5730168,26.88704773,60.26896286,180.8256872,181.5372452,13.656067,0.123383122,1620000000000 ,1620000000000 ,1620000000000 ,1616812388090 -1616812388117 ,112.5730168,26.8870465,60.26969528,180.8267254,181.5277103,13.65509,0.123364712,1620000000000 ,1620000000000 ,1620000000000 ,1616812388100 -1616812388124 ,112.5730167,26.88704527,60.27035522,180.8282007,181.5345285,13.656319,0.12337072,1620000000000 ,1620000000000 ,1620000000000 ,1616812388110 -1616812388134 ,112.5730167,26.88704404,60.27097321,180.826944,181.5431893,13.655482,0.123365492,1620000000000 ,1620000000000 ,1620000000000 ,1616812388120 -1616812388145 ,112.5730167,26.8870428,60.27161789,180.826862,181.5460643,13.652719,0.123349034,1620000000000 ,1620000000000 ,1620000000000 ,1616812388130 -1616812388157 ,112.5730166,26.88704157,60.27231979,180.8286105,181.5460195,13.648806,0.123315584,1620000000000 ,1620000000000 ,1620000000000 ,1616812388140 -1616812388166 ,112.5730166,26.88704034,60.27303314,180.829157,181.5404194,13.644329,0.123275905,1620000000000 ,1620000000000 ,1620000000000 ,1616812388150 -1616812388176 ,112.5730166,26.88703911,60.27371979,180.8291843,181.5349758,13.641157,0.123242363,1620000000000 ,1620000000000 ,1620000000000 ,1616812388160 -1616812388185 ,112.5730165,26.88703787,60.27436066,180.8313426,181.5393355,13.641117,0.123234346,1620000000000 ,1620000000000 ,1620000000000 ,1616812388170 -1616812388195 ,112.5730165,26.88703664,60.27495575,180.8319164,181.5388226,13.641084,0.123233394,1620000000000 ,1620000000000 ,1620000000000 ,1616812388180 -1616812388207 ,112.5730165,26.88703541,60.27555466,180.8319164,181.5385961,13.63827,0.123213268,1620000000000 ,1620000000000 ,1620000000000 ,1616812388190 -1616812388224 ,112.5730164,26.88703418,60.27671051,180.8239114,181.3045976,13.615225,0.122968291,1620000000000 ,1620000000000 ,1620000000000 ,1616812388200 -1616812388232 ,112.5730164,26.88703296,60.2784996,180.8250042,180.9313547,13.612934,0.122547312,1620000000000 ,1620000000000 ,1620000000000 ,1616812388210 -1616812388239 ,112.5730164,26.88703173,60.28027725,180.8261244,180.9317822,13.611223,0.12253347,1620000000000 ,1620000000000 ,1620000000000 ,1616812388220 -1616812388249 ,112.5730164,26.8870305,60.28201675,180.826862,180.9355318,13.6085415,0.122507701,1620000000000 ,1620000000000 ,1620000000000 ,1616812388230 -1616812388261 ,112.5730164,26.88702928,60.28371429,180.8250862,180.9377215,13.607643,0.122495791,1620000000000 ,1620000000000 ,1620000000000 ,1616812388240 -1616812388270 ,112.5730163,26.88702806,60.28539658,180.8264522,180.9356532,13.605628,0.122475798,1620000000000 ,1620000000000 ,1620000000000 ,1616812388250 -1616812388280 ,112.5730163,26.88702683,60.28706741,180.8271079,180.9321895,13.602377,0.122452075,1620000000000 ,1620000000000 ,1620000000000 ,1616812388260 -1616812388290 ,112.5730163,26.88702561,60.28874588,180.8275177,180.9314476,13.600479,0.122432801,1620000000000 ,1620000000000 ,1620000000000 ,1616812388270 -1616812388302 ,112.5730163,26.88702438,60.29043961,180.8250315,180.9288222,13.597901,0.122411702,1620000000000 ,1620000000000 ,1620000000000 ,1616812388280 -1616812388312 ,112.5730163,26.88702316,60.29212952,180.8232284,180.9285049,13.596933,0.122392841,1620000000000 ,1620000000000 ,1620000000000 ,1616812388290 -1616812388320 ,112.5730162,26.88702194,60.29378891,180.8223541,180.9304306,13.595698,0.122386857,1620000000000 ,1620000000000 ,1620000000000 ,1616812388300 -1616812388329 ,112.5730162,26.88702071,60.29537964,180.8214252,180.9354567,13.594001,0.122369122,1620000000000 ,1620000000000 ,1620000000000 ,1616812388310 -1616812388340 ,112.5730162,26.88701949,60.29694366,180.8197859,180.9367875,13.591543,0.122351232,1620000000000 ,1620000000000 ,1620000000000 ,1616812388320 -1616812388349 ,112.5730162,26.88701827,60.29851532,180.820387,180.9384648,13.586526,0.122307415,1620000000000 ,1620000000000 ,1620000000000 ,1616812388330 -1616812388362 ,112.5730162,26.88701704,60.3001442,180.8203324,180.9419312,13.58362,0.12228136,1620000000000 ,1620000000000 ,1620000000000 ,1616812388340 -1616812388370 ,112.5730161,26.88701582,60.30181122,180.8201684,180.9343561,13.581011,0.122259044,1620000000000 ,1620000000000 ,1620000000000 ,1616812388350 -1616812388380 ,112.5730161,26.8870146,60.30348587,180.8188297,180.9347577,13.578937,0.122240496,1620000000000 ,1620000000000 ,1620000000000 ,1616812388360 -1616812388390 ,112.5730161,26.88701338,60.30516434,180.8149775,180.9393811,13.57701,0.122219062,1620000000000 ,1620000000000 ,1620000000000 ,1616812388370 -1616812388400 ,112.5730161,26.88701215,60.3068428,180.8114804,180.9441919,13.575022,0.122202566,1620000000000 ,1620000000000 ,1620000000000 ,1616812388380 -1616812388411 ,112.5730161,26.88701093,60.30852127,180.8078741,180.9434463,13.574416,0.122196859,1620000000000 ,1620000000000 ,1620000000000 ,1616812388390 -1616812388420 ,112.573016,26.88700971,60.31020355,180.8057431,180.9379157,13.5718355,0.122179767,1620000000000 ,1620000000000 ,1620000000000 ,1616812388400 -1616812388433 ,112.573016,26.88700849,60.31190109,180.8031749,180.9234536,13.566925,0.122143396,1620000000000 ,1620000000000 ,1620000000000 ,1616812388410 -1616812388440 ,112.573016,26.88700727,60.31360245,180.7998145,180.9106187,13.561752,0.122094881,1620000000000 ,1620000000000 ,1620000000000 ,1616812388420 -1616812388451 ,112.573016,26.88700605,60.31525421,180.7976561,180.9037489,13.560447,0.122074004,1620000000000 ,1620000000000 ,1620000000000 ,1616812388430 -1616812388463 ,112.573016,26.88700483,60.31681824,180.7951973,180.9049076,13.559424,0.122060868,1620000000000 ,1620000000000 ,1620000000000 ,1616812388440 -1616812388471 ,112.5730159,26.88700361,60.31779099,180.7925198,181.1440861,13.55952,0.122275849,1620000000000 ,1620000000000 ,1620000000000 ,1616812388450 -1616812388481 ,112.5730159,26.88700238,60.31822968,180.7880665,181.3845648,13.558711,0.122486109,1620000000000 ,1620000000000 ,1620000000000 ,1616812388460 -1616812388492 ,112.5730159,26.88700116,60.31866837,180.783504,181.3836368,13.556114,0.122467788,1620000000000 ,1620000000000 ,1620000000000 ,1616812388470 -1616812388501 ,112.5730158,26.88699993,60.31909561,180.7817008,181.380439,13.553851,0.122443334,1620000000000 ,1620000000000 ,1620000000000 ,1616812388480 -1616812388512 ,112.5730158,26.88699871,60.31948471,180.7781218,181.3783344,13.55202,0.122426726,1620000000000 ,1620000000000 ,1620000000000 ,1616812388490 -1616812388522 ,112.5730158,26.88699749,60.31982803,180.7720839,181.3740016,13.549474,0.122405038,1620000000000 ,1620000000000 ,1620000000000 ,1616812388500 -1616812388531 ,112.5730158,26.88699626,60.32016754,180.7650625,181.3768585,13.546653,0.122380393,1620000000000 ,1620000000000 ,1620000000000 ,1616812388510 -1616812388547 ,112.5730157,26.88699504,60.32052231,180.7591885,181.3752613,13.543743,0.122353867,1620000000000 ,1620000000000 ,1620000000000 ,1616812388520 -1616812388555 ,112.5730157,26.88699382,60.32090759,180.7557734,181.3750795,13.541995,0.122335155,1620000000000 ,1620000000000 ,1620000000000 ,1616812388530 -1616812388565 ,112.5730157,26.88699259,60.32131958,180.7511016,181.3708196,13.540817,0.122323486,1620000000000 ,1620000000000 ,1620000000000 ,1616812388540 -1616812388574 ,112.5730156,26.88699137,60.3217392,180.7459653,181.3615198,13.539331,0.12231209,1620000000000 ,1620000000000 ,1620000000000 ,1616812388550 -1616812388586 ,112.5730156,26.88699015,60.32213974,180.742113,181.3551267,13.538734,0.122303262,1620000000000 ,1620000000000 ,1620000000000 ,1616812388560 -1616812388593 ,112.5730156,26.88698892,60.32247925,180.7362664,181.3532341,13.538275,0.122295857,1620000000000 ,1620000000000 ,1620000000000 ,1616812388570 -1616812388604 ,112.5730156,26.8869877,60.32275391,180.7299007,181.3504606,13.537526,0.122285767,1620000000000 ,1620000000000 ,1620000000000 ,1616812388580 -1616812388612 ,112.5730155,26.88698648,60.32301331,180.7227426,181.3430952,13.535513,0.122269695,1620000000000 ,1620000000000 ,1620000000000 ,1616812388590 -1616812388621 ,112.5730155,26.88698526,60.32325745,180.7178249,181.3307503,13.534775,0.122256659,1620000000000 ,1620000000000 ,1620000000000 ,1616812388600 -1616812388634 ,112.5730155,26.88698404,60.32349014,180.7117597,181.3134301,13.533391,0.122247587,1620000000000 ,1620000000000 ,1620000000000 ,1616812388610 -1616812388642 ,112.5730154,26.88698281,60.32370758,180.7062409,181.297918,13.532281,0.122232328,1620000000000 ,1620000000000 ,1620000000000 ,1616812388620 -1616812388652 ,112.5730154,26.88698159,60.32394028,180.7011046,181.2893321,13.531205,0.12222134,1620000000000 ,1620000000000 ,1620000000000 ,1616812388630 -1616812388663 ,112.5730154,26.88698037,60.32419205,180.6978807,181.2838044,13.532381,0.12222638,1620000000000 ,1620000000000 ,1620000000000 ,1616812388640 -1616812388673 ,112.5730154,26.88697915,60.32444382,180.6944383,181.2749693,13.532336,0.122230048,1620000000000 ,1620000000000 ,1620000000000 ,1616812388650 -1616812388682 ,112.5730153,26.88697793,60.32471466,180.692116,181.2658765,13.530636,0.122218828,1620000000000 ,1620000000000 ,1620000000000 ,1616812388660 -1616812388694 ,112.5730153,26.8869767,60.32505417,180.6880453,181.2598919,13.5272455,0.12219027,1620000000000 ,1620000000000 ,1620000000000 ,1616812388670 -1616812388704 ,112.5730153,26.88697548,60.3254509,180.683428,181.249955,13.526689,0.122175131,1620000000000 ,1620000000000 ,1620000000000 ,1616812388680 -1616812388713 ,112.5730153,26.88697426,60.32585907,180.6802588,181.2441362,13.526666,0.122173508,1620000000000 ,1620000000000 ,1620000000000 ,1616812388700 -1616812388723 ,112.5730152,26.88697304,60.32624054,180.6779912,181.2379559,13.526494,0.122175627,1620000000000 ,1620000000000 ,1620000000000 ,1616812388710 -1616812388733 ,112.5730152,26.88697182,60.32667542,180.6754231,181.2390017,13.525603,0.12216986,1620000000000 ,1620000000000 ,1620000000000 ,1616812388720 -1616812388744 ,112.5730152,26.8869706,60.3272171,180.6715162,181.2307742,13.524617,0.122160869,1620000000000 ,1620000000000 ,1620000000000 ,1616812388730 -1616812388754 ,112.5730151,26.88696815,60.32852554,180.6664345,181.2214568,13.523016,0.244310729,1620000000000 ,1620000000000 ,1620000000000 ,1616812388740 -1616812388763 ,112.5730151,26.88696693,60.32926178,180.6637298,181.2142029,13.521293,0.122136852,1620000000000 ,1620000000000 ,1620000000000 ,1616812388750 -1616812388774 ,112.5730151,26.88696571,60.33008575,180.6621179,181.2042845,13.5199795,0.122128374,1620000000000 ,1620000000000 ,1620000000000 ,1616812388760 -1616812388783 ,112.5730151,26.88696571,60.33008575,180.6621179,-400,13.5199795,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812388770 -1616812388797 ,112.573015,26.88696327,60.3318634,180.6597683,181.1935898,13.519897,0.244247732,1620000000000 ,1620000000000 ,1620000000000 ,1616812388780 -1616812388803 ,112.573015,26.88696205,60.33281326,180.6589213,181.1969629,13.518178,0.122117938,1620000000000 ,1620000000000 ,1620000000000 ,1616812388790 -1616812388815 ,112.573015,26.88696083,60.33383942,180.6561346,181.20169,13.516789,0.122108171,1620000000000 ,1620000000000 ,1620000000000 ,1616812388800 -1616812388824 ,112.5730149,26.88695961,60.33493805,180.6540309,181.2069255,13.514844,0.122094685,1620000000000 ,1620000000000 ,1620000000000 ,1616812388810 -1616812388835 ,112.5730149,26.88695839,60.33609772,180.6514354,181.2076279,13.511826,0.122073104,1620000000000 ,1620000000000 ,1620000000000 ,1616812388820 -1616812388844 ,112.5730149,26.88695717,60.33730698,180.6498782,181.2054072,13.510018,0.122055989,1620000000000 ,1620000000000 ,1620000000000 ,1616812388830 -1616812388855 ,112.5730149,26.88695595,60.33854294,180.6485394,181.21255,13.508839,0.122047118,1620000000000 ,1620000000000 ,1620000000000 ,1616812388840 -1616812388865 ,112.5730148,26.88695473,60.33976746,180.6463538,181.2159767,13.509287,0.122048378,1620000000000 ,1620000000000 ,1620000000000 ,1616812388850 -1616812388875 ,112.5730148,26.88695351,60.34096146,180.6423649,181.216002,13.509053,0.122049925,1620000000000 ,1620000000000 ,1620000000000 ,1616812388860 -1616812388885 ,112.5730148,26.88695229,60.34213638,180.6399061,181.2165236,13.50923,0.122050742,1620000000000 ,1620000000000 ,1620000000000 ,1616812388870 -1616812388895 ,112.5730148,26.88695107,60.34330368,180.6373106,181.2161658,13.508705,0.122049619,1620000000000 ,1620000000000 ,1620000000000 ,1616812388880 -1616812388906 ,112.5730147,26.88694985,60.34442902,180.6323929,181.2081596,13.509219,0.122052685,1620000000000 ,1620000000000 ,1620000000000 ,1616812388890 -1616812388916 ,112.5730147,26.88694863,60.34550858,180.6294422,181.202144,13.508929,0.122048985,1620000000000 ,1620000000000 ,1620000000000 ,1616812388900 -1616812388926 ,112.5730147,26.88694741,60.34653091,180.6262184,181.1998042,13.508361,0.122046572,1620000000000 ,1620000000000 ,1620000000000 ,1616812388910 -1616812388936 ,112.5730147,26.88694619,60.34744263,180.6245791,181.1953461,13.508639,0.122042285,1620000000000 ,1620000000000 ,1620000000000 ,1616812388920 -1616812388946 ,112.5730146,26.88694496,60.34820938,180.6225028,181.1910399,13.510158,0.1220483,1620000000000 ,1620000000000 ,1620000000000 ,1616812388930 -1616812388956 ,112.5730146,26.88694374,60.34881592,180.6208362,181.1833601,13.510618,0.122048872,1620000000000 ,1620000000000 ,1620000000000 ,1616812388940 -1616812388968 ,112.5730146,26.88694252,60.34929657,180.6168474,181.178514,13.511786,0.122053537,1620000000000 ,1620000000000 ,1620000000000 ,1616812388950 -1616812388987 ,112.5730146,26.8869413,60.34966278,180.6147437,181.1765775,13.513402,0.122065112,1620000000000 ,1620000000000 ,1620000000000 ,1616812388960 -1616812388992 ,112.5730145,26.88694008,60.34993744,180.6110007,181.177534,13.51552,0.122076268,1620000000000 ,1620000000000 ,1620000000000 ,1616812388970 -1616812389005 ,112.5730145,26.88693886,60.3501358,180.6079954,181.1770308,13.515819,0.122079196,1620000000000 ,1620000000000 ,1620000000000 ,1616812388980 -1616812389007 ,112.5730145,26.88693764,60.35027695,180.6056732,181.1783733,13.516726,0.122086768,1620000000000 ,1620000000000 ,1620000000000 ,1616812388990 -1616812389016 ,112.5730145,26.88693642,60.35040283,180.6019029,181.179881,13.516739,0.122085509,1620000000000 ,1620000000000 ,1620000000000 ,1616812389000 -1616812389026 ,112.5730144,26.8869352,60.35053635,180.5975589,181.1775798,13.516201,0.122078986,1620000000000 ,1620000000000 ,1620000000000 ,1616812389010 -1616812389036 ,112.5730144,26.88693398,60.35067749,180.5926685,181.1767621,13.516314,0.122077939,1620000000000 ,1620000000000 ,1620000000000 ,1616812389020 -1616812389046 ,112.5730144,26.88693276,60.350811,180.5884884,181.1736875,13.516812,0.122080972,1620000000000 ,1620000000000 ,1620000000000 ,1616812389030 -1616812389057 ,112.5730144,26.88693154,60.35092926,180.5858383,181.1698671,13.517557,0.122085084,1620000000000 ,1620000000000 ,1620000000000 ,1616812389040 -1616812389068 ,112.5730143,26.88693032,60.35105133,180.5818768,181.168117,13.517652,0.122088467,1620000000000 ,1620000000000 ,1620000000000 ,1616812389050 -1616812389076 ,112.5730143,26.8869291,60.3512001,180.577041,181.1589453,13.518297,0.122089703,1620000000000 ,1620000000000 ,1620000000000 ,1616812389060 -1616812389089 ,112.5730143,26.88692788,60.35140991,180.5738445,181.1535542,13.518442,0.122092895,1620000000000 ,1620000000000 ,1620000000000 ,1616812389070 -1616812389097 ,112.5730143,26.88692666,60.35166931,180.5693912,181.1475369,13.519292,0.122100068,1620000000000 ,1620000000000 ,1620000000000 ,1616812389080 -1616812389108 ,112.5730142,26.88692544,60.35195923,180.5643642,181.1374412,13.519335,0.122103253,1620000000000 ,1620000000000 ,1620000000000 ,1616812389090 -1616812389117 ,112.5730142,26.88692422,60.35227585,180.5600748,181.1254621,13.520578,0.122107784,1620000000000 ,1620000000000 ,1620000000000 ,1616812389100 -1616812389129 ,112.5730142,26.88692299,60.35262299,180.5568783,181.1140642,13.52067,0.122113489,1620000000000 ,1620000000000 ,1620000000000 ,1616812389110 -1616812389137 ,112.5730142,26.88692177,60.35302353,180.5539823,181.1067931,13.521184,0.122118108,1620000000000 ,1620000000000 ,1620000000000 ,1616812389120 -1616812389147 ,112.5730141,26.88692055,60.35349274,180.5508131,181.0983995,13.521257,0.122121999,1620000000000 ,1620000000000 ,1620000000000 ,1616812389130 -1616812389158 ,112.5730141,26.88691933,60.35404205,180.5488187,181.0952431,13.520428,0.12211801,1620000000000 ,1620000000000 ,1620000000000 ,1616812389140 -1616812389167 ,112.5730141,26.88691811,60.35468674,180.5449391,181.0883968,13.519214,0.122109652,1620000000000 ,1620000000000 ,1620000000000 ,1616812389150 -1616812389177 ,112.5730141,26.88691689,60.35540771,180.5425076,181.0902239,13.51989,0.122113263,1620000000000 ,1620000000000 ,1620000000000 ,1616812389160 -1616812389189 ,112.5730141,26.88691567,60.35618591,180.5396935,181.0920145,13.520644,0.122123559,1620000000000 ,1620000000000 ,1620000000000 ,1616812389170 -1616812389197 ,112.573014,26.88691445,60.35704803,180.5374806,181.0856736,13.5208235,0.122130371,1620000000000 ,1620000000000 ,1620000000000 ,1616812389180 -1616812389208 ,112.573014,26.88691323,60.35801315,180.5335191,181.0863249,13.51968,0.122128076,1620000000000 ,1620000000000 ,1620000000000 ,1616812389190 -1616812389218 ,112.573014,26.886912,60.35952377,180.5339289,181.0739001,13.545555,0.12259629,1620000000000 ,1620000000000 ,1620000000000 ,1616812389200 -1616812389228 ,112.573014,26.88691077,60.36154556,180.5312788,181.0457315,13.545422,0.123298862,1620000000000 ,1620000000000 ,1620000000000 ,1616812389210 -1616812389237 ,112.5730139,26.88690954,60.3636055,180.5264976,181.0438991,13.545039,0.123299899,1620000000000 ,1620000000000 ,1620000000000 ,1616812389220 -1616812389249 ,112.5730139,26.8869083,60.36569977,180.5230006,181.0385795,13.5452385,0.123305253,1620000000000 ,1620000000000 ,1620000000000 ,1616812389230 -1616812389261 ,112.5730139,26.88690707,60.36782837,180.5183834,181.0386908,13.544976,0.123307332,1620000000000 ,1620000000000 ,1620000000000 ,1616812389240 -1616812389271 ,112.5730139,26.88690584,60.36997223,180.5147224,181.0386131,13.545867,0.12331569,1620000000000 ,1620000000000 ,1620000000000 ,1616812389250 -1616812389280 ,112.5730138,26.8869046,60.37211609,180.5124001,181.0349477,13.546689,0.123323588,1620000000000 ,1620000000000 ,1620000000000 ,1616812389260 -1616812389291 ,112.5730138,26.88690337,60.37424088,180.5084932,181.0263668,13.546494,0.12332801,1620000000000 ,1620000000000 ,1620000000000 ,1616812389270 -1616812389298 ,112.5730138,26.88690214,60.376297,180.5075097,181.0130416,13.547735,0.123335016,1620000000000 ,1620000000000 ,1620000000000 ,1616812389280 -1616812389310 ,112.5730138,26.8869009,60.37824631,180.5058978,181.0118419,13.549894,0.123350779,1620000000000 ,1620000000000 ,1620000000000 ,1616812389290 -1616812389319 ,112.5730138,26.88689967,60.38005829,180.5038487,181.0064911,13.551357,0.123363637,1620000000000 ,1620000000000 ,1620000000000 ,1616812389300 -1616812389328 ,112.5730137,26.88689844,60.38174438,180.5035482,181.0088921,13.553419,0.123380327,1620000000000 ,1620000000000 ,1620000000000 ,1616812389310 -1616812389339 ,112.5730137,26.8868972,60.38332367,180.5007068,181.0100733,13.555942,0.123396243,1620000000000 ,1620000000000 ,1620000000000 ,1616812389320 -1616812389349 ,112.5730137,26.88689597,60.3848381,180.4976742,181.0017253,13.556934,0.123409624,1620000000000 ,1620000000000 ,1620000000000 ,1616812389330 -1616812389359 ,112.5730137,26.88689473,60.38627625,180.495188,180.996361,13.558043,0.123420516,1620000000000 ,1620000000000 ,1620000000000 ,1616812389340 -1616812389368 ,112.5730137,26.8868935,60.38764954,180.4924833,180.9990033,13.558667,0.123423475,1620000000000 ,1620000000000 ,1620000000000 ,1616812389350 -1616812389378 ,112.5730136,26.88689227,60.38895798,180.4903249,181.0013251,13.5594635,0.123426656,1620000000000 ,1620000000000 ,1620000000000 ,1616812389360 -1616812389390 ,112.5730136,26.88689103,60.39019394,180.4886584,180.9986698,13.56112,0.123440477,1620000000000 ,1620000000000 ,1620000000000 ,1616812389370 -1616812389401 ,112.5730136,26.8868898,60.39130402,180.4889043,180.9886338,13.564799,0.12346402,1620000000000 ,1620000000000 ,1620000000000 ,1616812389380 -1616812389409 ,112.5730136,26.88688856,60.39226913,180.4875929,180.9918087,13.567828,0.123486548,1620000000000 ,1620000000000 ,1620000000000 ,1616812389390 -1616812389419 ,112.5730135,26.88688733,60.39314651,180.485052,180.9852877,13.567981,0.123492366,1620000000000 ,1620000000000 ,1620000000000 ,1616812389400 -1616812389429 ,112.5730135,26.88688609,60.39399338,180.4838499,180.9835437,13.570579,0.123508153,1620000000000 ,1620000000000 ,1620000000000 ,1616812389410 -1616812389442 ,112.5730135,26.88688486,60.39481735,180.4824292,180.9802067,13.571546,0.123519878,1620000000000 ,1620000000000 ,1620000000000 ,1616812389420 -1616812389450 ,112.5730135,26.88688362,60.3955574,180.4824019,180.9754409,13.574765,0.123539062,1620000000000 ,1620000000000 ,1620000000000 ,1616812389430 -1616812389460 ,112.5730135,26.88688239,60.39621353,180.4811725,180.9736887,13.576276,0.123552966,1620000000000 ,1620000000000 ,1620000000000 ,1616812389440 -1616812389471 ,112.5730134,26.88688116,60.39635849,180.4805714,180.9835661,13.5784,0.123100603,1620000000000 ,1620000000000 ,1620000000000 ,1616812389450 -1616812389481 ,112.5730134,26.88687993,60.39601517,180.4825658,180.9971736,13.582073,0.12265983,1620000000000 ,1620000000000 ,1620000000000 ,1616812389460 -1616812389490 ,112.5730134,26.8868787,60.39562988,180.4833308,180.9912891,13.584531,0.122684352,1620000000000 ,1620000000000 ,1620000000000 ,1616812389470 -1616812389500 ,112.5730134,26.88687748,60.39525986,180.4832762,180.9917615,13.585381,0.122692909,1620000000000 ,1620000000000 ,1620000000000 ,1616812389480 -1616812389511 ,112.5730134,26.88687625,60.39492798,180.4838499,180.9884898,13.5866,0.122701341,1620000000000 ,1620000000000 ,1620000000000 ,1616812389490 -1616812389520 ,112.5730133,26.88687502,60.39461517,180.4839592,180.9877367,13.588956,0.122722343,1620000000000 ,1620000000000 ,1620000000000 ,1616812389500 -1616812389531 ,112.5730133,26.8868738,60.39428329,180.4849974,180.9879295,13.590741,0.122737369,1620000000000 ,1620000000000 ,1620000000000 ,1616812389510 -1616812389543 ,112.5730133,26.88687257,60.39395905,180.4831123,180.99029,13.590982,0.122740032,1620000000000 ,1620000000000 ,1620000000000 ,1616812389520 -1616812389552 ,112.5730133,26.88687134,60.39365768,180.4839046,180.9878109,13.592806,0.122754254,1620000000000 ,1620000000000 ,1620000000000 ,1616812389530 -1616812389561 ,112.5730132,26.88687011,60.39339828,180.4860629,180.9854834,13.59526,0.122774614,1620000000000 ,1620000000000 ,1620000000000 ,1616812389540 -1616812389571 ,112.5730132,26.88686889,60.39318085,180.4885218,180.9909433,13.5978565,0.122798237,1620000000000 ,1620000000000 ,1620000000000 ,1616812389550 -1616812389581 ,112.5730132,26.88686766,60.39302444,180.4906255,180.9986003,13.598372,0.12280751,1620000000000 ,1620000000000 ,1620000000000 ,1616812389560 -1616812389591 ,112.5730132,26.88686643,60.39295959,180.4917183,180.9945688,13.59867,0.122812479,1620000000000 ,1620000000000 ,1620000000000 ,1616812389570 -1616812389601 ,112.5730132,26.8868652,60.39298248,180.4949421,180.9933823,13.599612,0.122820953,1620000000000 ,1620000000000 ,1620000000000 ,1616812389580 -1616812389610 ,112.5730131,26.88686397,60.39306641,180.4966907,180.9987143,13.600806,0.122834005,1620000000000 ,1620000000000 ,1620000000000 ,1616812389590 -1616812389622 ,112.5730131,26.88686275,60.39319611,180.500379,181.0030219,13.602354,0.122845578,1620000000000 ,1620000000000 ,1620000000000 ,1616812389600 -1616812389632 ,112.5730131,26.88686152,60.39338303,180.5041492,181.0111893,13.603092,0.122856877,1620000000000 ,1620000000000 ,1620000000000 ,1616812389610 -1616812389648 ,112.5730131,26.88686029,60.39363861,180.5066354,181.0111294,13.6040535,0.122866975,1620000000000 ,1620000000000 ,1620000000000 ,1616812389620 -1616812389653 ,112.5730131,26.88685906,60.39398956,180.5092309,181.0090617,13.606075,0.12288559,1620000000000 ,1620000000000 ,1620000000000 ,1616812389630 -1616812389662 ,112.573013,26.88685783,60.39440536,180.5106243,181.008908,13.60847,0.122907138,1620000000000 ,1620000000000 ,1620000000000 ,1616812389640 -1616812389674 ,112.573013,26.8868566,60.39490128,180.5115258,181.0168881,13.610422,0.122928268,1620000000000 ,1620000000000 ,1620000000000 ,1616812389650 -1616812389682 ,112.573013,26.88685537,60.39547348,180.514094,181.022427,13.612138,0.122948169,1620000000000 ,1620000000000 ,1620000000000 ,1616812389660 -1616812389695 ,112.573013,26.88685414,60.39613342,180.5158972,181.0240048,13.612093,0.122955791,1620000000000 ,1620000000000 ,1620000000000 ,1616812389670 -1616812389702 ,112.5730129,26.88685291,60.39687729,180.5187385,181.0190374,13.612142,0.122958356,1620000000000 ,1620000000000 ,1620000000000 ,1616812389680 -1616812389714 ,112.5730129,26.88685169,60.39768982,180.5227,181.0157282,13.612102,0.122957603,1620000000000 ,1620000000000 ,1620000000000 ,1616812389690 -1616812389723 ,112.5730129,26.88685046,60.39851761,180.5235743,181.0214318,13.614974,0.122978498,1620000000000 ,1620000000000 ,1620000000000 ,1616812389700 -1616812389732 ,112.5730129,26.88684923,60.39933014,180.5262517,181.0305033,13.616916,0.123000054,1620000000000 ,1620000000000 ,1620000000000 ,1616812389720 -1616812389743 ,112.5730128,26.88684677,60.40099335,180.5307323,181.0402786,13.620665,0.246055744,1620000000000 ,1620000000000 ,1620000000000 ,1616812389730 -1616812389753 ,112.5730128,26.88684677,60.40099335,180.5307323,-400,13.620665,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812389740 -1616812389763 ,112.5730128,26.88684431,60.40273666,180.5324535,181.0386585,13.624598,0.246129766,1620000000000 ,1620000000000 ,1620000000000 ,1616812389750 -1616812389774 ,112.5730128,26.88684307,60.40350723,180.533601,181.0406958,13.626485,0.123086533,1620000000000 ,1620000000000 ,1620000000000 ,1616812389760 -1616812389783 ,112.5730127,26.88684184,60.40417099,180.5338469,181.0516377,13.628944,0.123104016,1620000000000 ,1620000000000 ,1620000000000 ,1616812389770 -1616812389793 ,112.5730127,26.88684061,60.40477371,180.5336283,181.0533935,13.630304,0.123119542,1620000000000 ,1620000000000 ,1620000000000 ,1616812389780 -1616812389804 ,112.5730127,26.88684061,60.40477371,180.5336283,-400,13.630304,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812389790 -1616812389813 ,112.5730127,26.88683815,60.40595627,180.5365243,181.0494434,13.632146,0.246261906,1620000000000 ,1620000000000 ,1620000000000 ,1616812389800 -1616812389825 ,112.5730127,26.88683692,60.40655518,180.5364697,181.0509263,13.63454,0.123151778,1620000000000 ,1620000000000 ,1620000000000 ,1616812389810 -1616812389834 ,112.5730126,26.88683569,60.40713501,180.5380816,181.0619102,13.637957,0.123180879,1620000000000 ,1620000000000 ,1620000000000 ,1616812389820 -1616812389844 ,112.5730126,26.88683446,60.40768814,180.5396389,181.0634424,13.641833,0.123209785,1620000000000 ,1620000000000 ,1620000000000 ,1616812389830 -1616812389854 ,112.5730126,26.88683322,60.40824127,180.5390105,181.0597128,13.644344,0.123240882,1620000000000 ,1620000000000 ,1620000000000 ,1616812389840 -1616812389865 ,112.5730126,26.88683199,60.4087944,180.5410596,181.0526677,13.64631,0.123256866,1620000000000 ,1620000000000 ,1620000000000 ,1616812389850 -1616812389875 ,112.5730125,26.88683076,60.40935516,180.5419338,181.0543909,13.646974,0.123266196,1620000000000 ,1620000000000 ,1620000000000 ,1616812389860 -1616812389884 ,112.5730125,26.88682953,60.40988541,180.5425895,181.0553029,13.648537,0.123275733,1620000000000 ,1620000000000 ,1620000000000 ,1616812389870 -1616812389894 ,112.5730125,26.88682829,60.41036606,180.5431633,181.0543206,13.649767,0.123285923,1620000000000 ,1620000000000 ,1620000000000 ,1616812389880 -1616812389906 ,112.5730125,26.88682706,60.41083527,180.5445566,181.0540863,13.652365,0.12330599,1620000000000 ,1620000000000 ,1620000000000 ,1616812389890 -1616812389916 ,112.5730125,26.88682583,60.41133499,180.5469882,181.0521506,13.653984,0.123324408,1620000000000 ,1620000000000 ,1620000000000 ,1616812389900 -1616812389925 ,112.5730124,26.88682459,60.41186523,180.548764,181.0433539,13.655865,0.123340366,1620000000000 ,1620000000000 ,1620000000000 ,1616812389910 -1616812389935 ,112.5730124,26.88682336,60.41239166,180.5514141,181.0383398,13.658815,0.123360697,1620000000000 ,1620000000000 ,1620000000000 ,1616812389920 -1616812389944 ,112.5730124,26.88682213,60.41286469,180.5527255,181.0355237,13.661522,0.123385056,1620000000000 ,1620000000000 ,1620000000000 ,1616812389930 -1616812389955 ,112.5730124,26.88682089,60.41324997,180.5535452,181.0413772,13.663388,0.123401498,1620000000000 ,1620000000000 ,1620000000000 ,1616812389940 -1616812389965 ,112.5730123,26.88681966,60.41359329,180.5561133,181.0408812,13.663511,0.123405148,1620000000000 ,1620000000000 ,1620000000000 ,1616812389950 -1616812389975 ,112.5730123,26.88681843,60.41395569,180.5571788,181.0328283,13.664507,0.123408698,1620000000000 ,1620000000000 ,1620000000000 ,1616812389960 -1616812389991 ,112.5730123,26.88681719,60.41440201,180.5599109,181.0244689,13.667044,0.12342897,1620000000000 ,1620000000000 ,1620000000000 ,1616812389970 -1616812389996 ,112.5730123,26.88681596,60.41490173,180.5623425,181.0282837,13.670185,0.123461438,1620000000000 ,1620000000000 ,1620000000000 ,1616812389980 -1616812390006 ,112.5730123,26.88681472,60.41544724,180.5651018,181.0357074,13.672487,0.123483388,1620000000000 ,1620000000000 ,1620000000000 ,1616812389990 -1616812390015 ,112.5730122,26.88681349,60.41605377,180.5650472,181.0394922,13.674676,0.123503358,1620000000000 ,1620000000000 ,1620000000000 ,1616812390000 -1616812390025 ,112.5730122,26.88681225,60.41677475,180.5658941,181.0400629,13.67607,0.123521955,1620000000000 ,1620000000000 ,1620000000000 ,1616812390010 -1616812390037 ,112.5730122,26.88681102,60.41756439,180.5693912,181.0358212,13.676796,0.123533731,1620000000000 ,1620000000000 ,1620000000000 ,1616812390020 -1616812390046 ,112.5730122,26.88680978,60.41837311,180.570648,181.0397145,13.67724,0.123539217,1620000000000 ,1620000000000 ,1620000000000 ,1616812390030 -1616812390056 ,112.5730121,26.88680855,60.41913223,180.5731068,181.0441812,13.679139,0.123549815,1620000000000 ,1620000000000 ,1620000000000 ,1616812390040 -1616812390068 ,112.5730121,26.88680731,60.41984177,180.5742816,181.0540125,13.682887,0.123579839,1620000000000 ,1620000000000 ,1620000000000 ,1616812390050 -1616812390078 ,112.5730121,26.88680608,60.4205513,180.5736532,181.0572032,13.684745,0.123601796,1620000000000 ,1620000000000 ,1620000000000 ,1616812390060 -1616812390087 ,112.5730121,26.88680484,60.42131805,180.5726424,181.0617407,13.6843405,0.123610008,1620000000000 ,1620000000000 ,1620000000000 ,1616812390070 -1616812390096 ,112.573012,26.8868036,60.42218399,180.5708392,181.0584277,13.682817,0.123597135,1620000000000 ,1620000000000 ,1620000000000 ,1616812390080 -1616812390107 ,112.573012,26.88680237,60.42311859,180.572014,181.0625899,13.684931,0.123610241,1620000000000 ,1620000000000 ,1620000000000 ,1616812390090 -1616812390116 ,112.573012,26.88680113,60.4240303,180.5721779,181.0649291,13.689321,0.123644676,1620000000000 ,1620000000000 ,1620000000000 ,1616812390100 -1616812390126 ,112.573012,26.8867999,60.42485046,180.5734893,181.0675956,13.693496,0.123685357,1620000000000 ,1620000000000 ,1620000000000 ,1616812390110 -1616812390136 ,112.573012,26.88679866,60.42560959,180.5730795,181.0640335,13.694412,0.123699601,1620000000000 ,1620000000000 ,1620000000000 ,1616812390120 -1616812390147 ,112.5730119,26.88679742,60.42638779,180.5733527,181.0589468,13.694179,0.123699801,1620000000000 ,1620000000000 ,1620000000000 ,1616812390130 -1616812390167 ,112.5730119,26.88679618,60.42726135,180.572697,181.06179,13.692846,0.123695217,1620000000000 ,1620000000000 ,1620000000000 ,1616812390140 -1616812390175 ,112.5730119,26.88679495,60.42824554,180.5724785,181.0699446,13.693618,0.123698781,1620000000000 ,1620000000000 ,1620000000000 ,1616812390150 -1616812390177 ,112.5730119,26.88679371,60.42933655,180.5750193,181.078167,13.6944,0.123714448,1620000000000 ,1620000000000 ,1620000000000 ,1616812390160 -1616812390188 ,112.5730118,26.88679247,60.43045044,180.5734893,181.0713184,13.696455,0.123730718,1620000000000 ,1620000000000 ,1620000000000 ,1616812390170 -1616812390199 ,112.5730118,26.88679124,60.43149185,180.5754291,181.0679944,13.697692,0.123741197,1620000000000 ,1620000000000 ,1620000000000 ,1616812390180 -1616812390208 ,112.5730118,26.88679,60.43240356,180.5744182,181.0727072,13.699668,0.123753114,1620000000000 ,1620000000000 ,1620000000000 ,1616812390190 -1616812390217 ,112.5730118,26.88678876,60.43321228,180.5655936,181.0098649,13.701182,0.123800588,1620000000000 ,1620000000000 ,1620000000000 ,1616812390200 -1616812390229 ,112.5730118,26.88678752,60.43384552,180.5655936,180.8802198,13.706236,0.123842171,1620000000000 ,1620000000000 ,1620000000000 ,1616812390210 -1616812390239 ,112.5730117,26.88678628,60.43431091,180.5675607,180.8902174,13.708961,0.123868663,1620000000000 ,1620000000000 ,1620000000000 ,1616812390220 -1616812390251 ,112.5730117,26.88678505,60.43465805,180.5684077,180.8947496,13.710072,0.123878937,1620000000000 ,1620000000000 ,1620000000000 ,1616812390230 -1616812390260 ,112.5730117,26.88678381,60.43498611,180.5668777,180.8821303,13.711281,0.123883855,1620000000000 ,1620000000000 ,1620000000000 ,1616812390240 -1616812390269 ,112.5730117,26.88678257,60.43531799,180.5681891,180.8769748,13.713075,0.123898626,1620000000000 ,1620000000000 ,1620000000000 ,1616812390250 -1616812390278 ,112.5730117,26.88678133,60.43560028,180.56767,180.8829461,13.714953,0.123917591,1620000000000 ,1620000000000 ,1620000000000 ,1616812390260 -1616812390288 ,112.5730116,26.88678009,60.43583298,180.5695551,180.8899752,13.71555,0.123924145,1620000000000 ,1620000000000 ,1620000000000 ,1616812390270 -1616812390299 ,112.5730116,26.88677885,60.43606567,180.5707572,180.887207,13.716136,0.123923387,1620000000000 ,1620000000000 ,1620000000000 ,1616812390280 -1616812390310 ,112.5730116,26.88677761,60.43630981,180.5707026,180.8768999,13.717967,0.123939575,1620000000000 ,1620000000000 ,1620000000000 ,1616812390290 -1616812390321 ,112.5730116,26.88677637,60.43650818,180.5734347,180.8800504,13.721278,0.123962889,1620000000000 ,1620000000000 ,1620000000000 ,1616812390300 -1616812390329 ,112.5730116,26.88677513,60.43667603,180.5739811,180.8881764,13.723465,0.123987263,1620000000000 ,1620000000000 ,1620000000000 ,1616812390310 -1616812390340 ,112.5730115,26.88677389,60.43690872,180.571932,180.8916583,13.723321,0.123989587,1620000000000 ,1620000000000 ,1620000000000 ,1616812390320 -1616812390348 ,112.5730115,26.88677265,60.43727493,180.5716042,180.8906229,13.721911,0.123984702,1620000000000 ,1620000000000 ,1620000000000 ,1616812390330 -1616812390359 ,112.5730115,26.88677141,60.43771744,180.5703201,180.8950664,13.72154,0.123979112,1620000000000 ,1620000000000 ,1620000000000 ,1616812390340 -1616812390369 ,112.5730115,26.88677017,60.4382019,180.5719867,180.8995442,13.721086,0.123977992,1620000000000 ,1620000000000 ,1620000000000 ,1616812390350 -1616812390379 ,112.5730115,26.88676893,60.43870544,180.5729702,180.8996563,13.72159,0.123977109,1620000000000 ,1620000000000 ,1620000000000 ,1616812390360 -1616812390390 ,112.5730114,26.88676769,60.43925095,180.5731068,180.9001949,13.725667,0.124007234,1620000000000 ,1620000000000 ,1620000000000 ,1616812390370 -1616812390399 ,112.5730114,26.88676645,60.43982697,180.5729429,180.894215,13.728603,0.124036859,1620000000000 ,1620000000000 ,1620000000000 ,1616812390380 -1616812390409 ,112.5730114,26.88676521,60.44045258,180.5747734,180.8957936,13.729796,0.124056726,1620000000000 ,1620000000000 ,1620000000000 ,1616812390390 -1616812390420 ,112.5730114,26.88676397,60.44116211,180.5746914,180.9043587,13.727489,0.12404751,1620000000000 ,1620000000000 ,1620000000000 ,1616812390400 -1616812390432 ,112.5730114,26.88676273,60.44197083,180.5747461,180.9004492,13.724522,0.124023482,1620000000000 ,1620000000000 ,1620000000000 ,1616812390410 -1616812390440 ,112.5730113,26.88676149,60.44282913,180.5743636,180.8924809,13.723973,0.124012451,1620000000000 ,1620000000000 ,1620000000000 ,1616812390420 -1616812390452 ,112.5730113,26.88676025,60.44363403,180.576276,180.8825261,13.726934,0.124026479,1620000000000 ,1620000000000 ,1620000000000 ,1616812390430 -1616812390463 ,112.5730113,26.88675901,60.44432449,180.5754291,180.8824429,13.731517,0.124064098,1620000000000 ,1620000000000 ,1620000000000 ,1616812390440 -1616812390472 ,112.5730113,26.88675777,60.44490051,180.5731615,180.9511486,13.734315,0.124069798,1620000000000 ,1620000000000 ,1620000000000 ,1616812390450 -1616812390483 ,112.5730113,26.88675653,60.4454689,180.5711944,181.0149406,13.733803,0.124049841,1620000000000 ,1620000000000 ,1620000000000 ,1616812390460 -1616812390491 ,112.5730112,26.88675529,60.44610596,180.5704567,181.0062419,13.732934,0.124043345,1620000000000 ,1620000000000 ,1620000000000 ,1616812390470 -1616812390500 ,112.5730112,26.88675405,60.44679642,180.5666591,180.9952744,13.733392,0.124046443,1620000000000 ,1620000000000 ,1620000000000 ,1616812390480 -1616812390512 ,112.5730112,26.88675281,60.44749069,180.5637905,181.0012372,13.734342,0.124054347,1620000000000 ,1620000000000 ,1620000000000 ,1616812390490 -1616812390520 ,112.5730112,26.88675157,60.44818497,180.5610584,181.0051362,13.735123,0.124060942,1620000000000 ,1620000000000 ,1620000000000 ,1616812390500 -1616812390530 ,112.5730112,26.88675033,60.44889069,180.5571515,181.0015975,13.737001,0.124080127,1620000000000 ,1620000000000 ,1620000000000 ,1616812390510 -1616812390541 ,112.5730111,26.88674909,60.44965363,180.5548566,181.0012958,13.736281,0.124082625,1620000000000 ,1620000000000 ,1620000000000 ,1616812390520 -1616812390552 ,112.5730111,26.88674785,60.45053101,180.5525889,180.9949058,13.734899,0.124072109,1620000000000 ,1620000000000 ,1620000000000 ,1616812390530 -1616812390560 ,112.5730111,26.88674661,60.45150757,180.5496383,180.9937658,13.734639,0.124076517,1620000000000 ,1620000000000 ,1620000000000 ,1616812390540 -1616812390571 ,112.5730111,26.88674537,60.4525032,180.5454036,180.9942164,13.735436,0.124080156,1620000000000 ,1620000000000 ,1620000000000 ,1616812390550 -1616812390581 ,112.5730111,26.88674413,60.45344925,180.5393111,181.0036855,13.737198,0.124093641,1620000000000 ,1620000000000 ,1620000000000 ,1616812390560 -1616812390593 ,112.573011,26.88674289,60.45433426,180.5325082,181.005826,13.736439,0.124094789,1620000000000 ,1620000000000 ,1620000000000 ,1616812390570 -1616812390601 ,112.573011,26.88674165,60.45517731,180.5242027,180.9954796,13.737419,0.124097519,1620000000000 ,1620000000000 ,1620000000000 ,1616812390580 -1616812390611 ,112.573011,26.8867404,60.45598984,180.5152415,180.9906417,13.738658,0.124110797,1620000000000 ,1620000000000 ,1620000000000 ,1616812390590 -1616812390621 ,112.573011,26.88673916,60.45677185,180.5069086,180.9940903,13.739682,0.124120474,1620000000000 ,1620000000000 ,1620000000000 ,1616812390600 -1616812390632 ,112.5730109,26.88673792,60.45751572,180.4975923,180.9918349,13.740014,0.124125618,1620000000000 ,1620000000000 ,1620000000000 ,1616812390610 -1616812390643 ,112.5730109,26.88673668,60.45822144,180.4916363,180.9846089,13.738404,0.124115128,1620000000000 ,1620000000000 ,1620000000000 ,1616812390620 -1616812390651 ,112.5730109,26.88673544,60.45888519,180.4855984,180.9663219,13.737983,0.124108688,1620000000000 ,1620000000000 ,1620000000000 ,1616812390630 -1616812390662 ,112.5730109,26.8867342,60.45949936,180.4791234,180.9483154,13.73918,0.124112187,1620000000000 ,1620000000000 ,1620000000000 ,1616812390640 -1616812390672 ,112.5730109,26.88673296,60.4600296,180.4716375,180.9421856,13.740552,0.124121556,1620000000000 ,1620000000000 ,1620000000000 ,1616812390650 -1616812390682 ,112.5730108,26.88673172,60.46046448,180.4637692,180.9446582,13.742471,0.124137346,1620000000000 ,1620000000000 ,1620000000000 ,1616812390660 -1616812390692 ,112.5730108,26.88673048,60.46084595,180.4559281,180.9362288,13.742507,0.124142372,1620000000000 ,1620000000000 ,1620000000000 ,1616812390670 -1616812390702 ,112.5730108,26.88672924,60.46120453,180.4485515,180.9182667,13.742662,0.124138185,1620000000000 ,1620000000000 ,1620000000000 ,1616812390680 -1616812390712 ,112.5730108,26.88672799,60.46154022,180.4400821,180.9055112,13.742625,0.124138174,1620000000000 ,1620000000000 ,1620000000000 ,1616812390690 -1616812390723 ,112.5730108,26.88672675,60.46180725,180.432924,180.8971174,13.743624,0.124141344,1620000000000 ,1620000000000 ,1620000000000 ,1616812390700 -1616812390732 ,112.5730107,26.88672551,60.46195984,180.425684,180.8928561,13.745796,0.124155136,1620000000000 ,1620000000000 ,1620000000000 ,1616812390710 -1616812390743 ,112.5730107,26.88672427,60.46199799,180.4177883,180.8881153,13.746946,0.124162472,1620000000000 ,1620000000000 ,1620000000000 ,1616812390720 -1616812390753 ,112.5730107,26.88672303,60.46198654,180.4100019,180.8727756,13.747577,0.124165835,1620000000000 ,1620000000000 ,1620000000000 ,1616812390730 -1616812390763 ,112.5730107,26.88672179,60.46195221,180.4020516,180.8541924,13.746998,0.124162453,1620000000000 ,1620000000000 ,1620000000000 ,1616812390740 -1616812390774 ,112.5730107,26.88672055,60.46190262,180.3969699,180.8402292,13.748173,0.124167152,1620000000000 ,1620000000000 ,1620000000000 ,1616812390750 -1616812390784 ,112.5730106,26.8867193,60.46183777,180.3915604,180.8320433,13.749818,0.124178882,1620000000000 ,1620000000000 ,1620000000000 ,1616812390760 -1616812390796 ,112.5730106,26.88671806,60.46179199,180.3865607,180.8257812,13.751289,0.124191163,1620000000000 ,1620000000000 ,1620000000000 ,1616812390780 -1616812390806 ,112.5730106,26.88671682,60.46176529,180.3798944,180.8107326,13.7515745,0.124194874,1620000000000 ,1620000000000 ,1620000000000 ,1616812390780 -1616812390813 ,112.5730106,26.88671558,60.46172333,180.3752772,180.7941741,13.750822,0.12419,1620000000000 ,1620000000000 ,1620000000000 ,1616812390800 -1616812390824 ,112.5730106,26.88671434,60.46164703,180.3690481,180.7900741,13.751506,0.124186087,1620000000000 ,1620000000000 ,1620000000000 ,1616812390810 -1616812390834 ,112.5730105,26.88671185,60.46151352,180.3566991,180.7766819,13.754546,0.248408537,1620000000000 ,1620000000000 ,1620000000000 ,1616812390820 -1616812390850 ,112.5730105,26.88671061,60.46154404,180.3507159,180.7621282,13.7547655,0.12421882,1620000000000 ,1620000000000 ,1620000000000 ,1616812390830 -1616812390854 ,112.5730105,26.88670937,60.46166229,180.3443775,180.7504463,13.754253,0.124216177,1620000000000 ,1620000000000 ,1620000000000 ,1616812390840 -1616812390864 ,112.5730105,26.88670813,60.46188736,180.3394324,180.7412968,13.753591,0.124213545,1620000000000 ,1620000000000 ,1620000000000 ,1616812390850 -1616812390874 ,112.5730105,26.88670688,60.46221161,180.3324656,180.7272636,13.754026,0.124214278,1620000000000 ,1620000000000 ,1620000000000 ,1616812390860 -1616812390884 ,112.5730105,26.88670564,60.46262741,180.3271107,180.7166337,13.754635,0.124223061,1620000000000 ,1620000000000 ,1620000000000 ,1616812390870 -1616812390905 ,112.5730104,26.8867044,60.46310425,180.3226575,180.7058696,13.75425,0.124222962,1620000000000 ,1620000000000 ,1620000000000 ,1616812390880 -1616812390911 ,112.5730104,26.88670316,60.46360397,180.3184227,180.693978,13.754375,0.124224276,1620000000000 ,1620000000000 ,1620000000000 ,1616812390890 -1616812390914 ,112.5730104,26.88670192,60.46414566,180.3140241,180.6889006,13.754254,0.124223331,1620000000000 ,1620000000000 ,1620000000000 ,1616812390900 -1616812390925 ,112.5730104,26.88670067,60.46476364,180.3071666,180.6852152,13.753512,0.124219445,1620000000000 ,1620000000000 ,1620000000000 ,1616812390910 -1616812390934 ,112.5730104,26.88669943,60.4654808,180.3027406,180.6826175,13.752902,0.124215598,1620000000000 ,1620000000000 ,1620000000000 ,1616812390920 -1616812390945 ,112.5730104,26.88669819,60.46627426,180.2972765,180.6834086,13.753287,0.124220158,1620000000000 ,1620000000000 ,1620000000000 ,1616812390930 -1616812390956 ,112.5730104,26.88669695,60.4671402,180.2923041,180.6803086,13.753877,0.124227112,1620000000000 ,1620000000000 ,1620000000000 ,1616812390940 -1616812390965 ,112.5730103,26.88669571,60.46808243,180.2868126,180.6665026,13.754595,0.124234385,1620000000000 ,1620000000000 ,1620000000000 ,1616812390950 -1616812390978 ,112.5730103,26.88669446,60.46903992,180.2836161,180.6557541,13.755758,0.124241974,1620000000000 ,1620000000000 ,1620000000000 ,1616812390960 -1616812390991 ,112.5730103,26.88669322,60.46994781,180.2783159,180.6547725,13.758209,0.12426183,1620000000000 ,1620000000000 ,1620000000000 ,1616812390970 -1616812390996 ,112.5730103,26.88669198,60.47084045,180.2709939,180.6594126,13.758592,0.124274054,1620000000000 ,1620000000000 ,1620000000000 ,1616812390980 -1616812391010 ,112.5730103,26.88669074,60.47185516,180.2636446,180.6545014,13.756533,0.124261659,1620000000000 ,1620000000000 ,1620000000000 ,1616812390990 -1616812391016 ,112.5730103,26.88668949,60.47300339,180.2576887,180.6456202,13.754938,0.124249435,1620000000000 ,1620000000000 ,1620000000000 ,1616812391000 -1616812391027 ,112.5730103,26.88668825,60.47422409,180.2530715,180.6392387,13.754065,0.124245425,1620000000000 ,1620000000000 ,1620000000000 ,1616812391010 -1616812391036 ,112.5730102,26.88668701,60.47546768,180.2503667,180.6391896,13.752873,0.124237273,1620000000000 ,1620000000000 ,1620000000000 ,1616812391020 -1616812391046 ,112.5730102,26.88668577,60.47673035,180.2443562,180.6312184,13.753888,0.124240237,1620000000000 ,1620000000000 ,1620000000000 ,1616812391030 -1616812391056 ,112.5730102,26.88668452,60.4779892,180.2384822,180.6265136,13.755605,0.124256284,1620000000000 ,1620000000000 ,1620000000000 ,1616812391040 -1616812391066 ,112.5730102,26.88668328,60.4791832,180.2347939,180.6181177,13.756881,0.124271437,1620000000000 ,1620000000000 ,1620000000000 ,1616812391050 -1616812391088 ,112.5730102,26.88668204,60.48028564,180.22739,180.617089,13.757473,0.124276582,1620000000000 ,1620000000000 ,1620000000000 ,1616812391060 -1616812391090 ,112.5730102,26.8866808,60.48133087,180.2206691,180.6193294,13.756246,0.124266548,1620000000000 ,1620000000000 ,1620000000000 ,1616812391070 -1616812391101 ,112.5730102,26.88667955,60.48235703,180.2130193,180.6107269,13.755991,0.124262335,1620000000000 ,1620000000000 ,1620000000000 ,1616812391080 -1616812391111 ,112.5730102,26.88667831,60.48337173,180.2066808,180.6024592,13.754761,0.124255968,1620000000000 ,1620000000000 ,1620000000000 ,1616812391090 -1616812391119 ,112.5730101,26.88667707,60.48437119,180.2004244,180.5977388,13.755196,0.124255475,1620000000000 ,1620000000000 ,1620000000000 ,1616812391100 -1616812391127 ,112.5730101,26.88667583,60.48535538,180.1945231,180.5911279,13.753865,0.12424859,1620000000000 ,1620000000000 ,1620000000000 ,1616812391110 -1616812391138 ,112.5730101,26.88667458,60.48633194,180.1894414,180.5827532,13.753453,0.124240058,1620000000000 ,1620000000000 ,1620000000000 ,1616812391120 -1616812391147 ,112.5730101,26.88667334,60.48726273,180.1852067,180.5761905,13.755034,0.124252972,1620000000000 ,1620000000000 ,1620000000000 ,1616812391130 -1616812391156 ,112.5730101,26.8866721,60.4880867,180.180371,180.5682572,13.758095,0.124272022,1620000000000 ,1620000000000 ,1620000000000 ,1616812391140 -1616812391168 ,112.5730101,26.88667086,60.48880005,180.1754532,180.5614242,13.758656,0.124279332,1620000000000 ,1620000000000 ,1620000000000 ,1616812391150 -1616812391178 ,112.5730101,26.88666961,60.48944473,180.1708633,180.55326,13.757504,0.124270933,1620000000000 ,1620000000000 ,1620000000000 ,1616812391160 -1616812391188 ,112.5730101,26.88666837,60.49008179,180.1633228,180.5393399,13.757307,0.124266654,1620000000000 ,1620000000000 ,1620000000000 ,1616812391170 -1616812391197 ,112.57301,26.88666713,60.49068451,180.1568205,180.5356198,13.758404,0.124269592,1620000000000 ,1620000000000 ,1620000000000 ,1616812391180 -1616812391207 ,112.57301,26.88666588,60.4912262,180.1505913,180.5366091,13.758479,0.124271747,1620000000000 ,1620000000000 ,1620000000000 ,1616812391190 -1616812391218 ,112.57301,26.88666464,60.49176788,180.1388707,180.7820927,13.775028,0.124514147,1620000000000 ,1620000000000 ,1620000000000 ,1616812391200 -1616812391228 ,112.57301,26.88666339,60.49240494,180.1343901,181.1840957,13.775113,0.124926582,1620000000000 ,1620000000000 ,1620000000000 ,1616812391210 -1616812391238 ,112.57301,26.88666214,60.4929924,180.1287894,181.1766479,13.777537,0.124938675,1620000000000 ,1620000000000 ,1620000000000 ,1616812391220 -1616812391249 ,112.5730099,26.88666089,60.49348068,180.1235711,181.1764874,13.778926,0.124951353,1620000000000 ,1620000000000 ,1620000000000 ,1616812391230 -1616812391259 ,112.5730099,26.88665964,60.4939003,180.1167409,181.1738959,13.778692,0.12494838,1620000000000 ,1620000000000 ,1620000000000 ,1616812391240 -1616812391268 ,112.5730099,26.88665839,60.49435425,180.1084081,181.1616594,13.77801,0.124945151,1620000000000 ,1620000000000 ,1620000000000 ,1616812391250 -1616812391278 ,112.5730099,26.88665714,60.49489212,180.1021516,181.1507665,13.777547,0.124937729,1620000000000 ,1620000000000 ,1620000000000 ,1616812391260 -1616812391289 ,112.5730098,26.8866559,60.49544525,180.0968514,181.1468298,13.778263,0.124942587,1620000000000 ,1620000000000 ,1620000000000 ,1616812391270 -1616812391298 ,112.5730098,26.88665465,60.49597931,180.0908682,181.139541,13.777555,0.124938551,1620000000000 ,1620000000000 ,1620000000000 ,1616812391280 -1616812391309 ,112.5730098,26.8866534,60.496521,180.0845844,181.1251047,13.777127,0.124931413,1620000000000 ,1620000000000 ,1620000000000 ,1616812391290 -1616812391322 ,112.5730098,26.88665215,60.49711227,180.0780274,181.1135545,13.777074,0.124929796,1620000000000 ,1620000000000 ,1620000000000 ,1616812391300 -1616812391329 ,112.5730097,26.8866509,60.49774933,180.0732189,181.1049565,13.778333,0.124941139,1620000000000 ,1620000000000 ,1620000000000 ,1616812391310 -1616812391343 ,112.5730097,26.88664965,60.49844742,180.0681646,181.1010197,13.778139,0.124943562,1620000000000 ,1620000000000 ,1620000000000 ,1616812391320 -1616812391349 ,112.5730097,26.8866484,60.49921799,180.0634381,181.0987827,13.777158,0.124934903,1620000000000 ,1620000000000 ,1620000000000 ,1616812391330 -1616812391359 ,112.5730097,26.88664715,60.50006866,180.0574822,181.0953594,13.775436,0.12492291,1620000000000 ,1620000000000 ,1620000000000 ,1616812391340 -1616812391369 ,112.5730096,26.8866459,60.50099564,180.0539032,181.0894405,13.775116,0.124918761,1620000000000 ,1620000000000 ,1620000000000 ,1616812391350 -1616812391381 ,112.5730096,26.88664465,60.50197601,180.0477014,181.0828915,13.775224,0.12492123,1620000000000 ,1620000000000 ,1620000000000 ,1616812391360 -1616812391394 ,112.5730096,26.8866434,60.50300217,180.0434666,181.0760013,13.77514,0.124919215,1620000000000 ,1620000000000 ,1620000000000 ,1616812391370 -1616812391404 ,112.5730096,26.88664216,60.5040741,180.039751,181.0689112,13.774412,0.124916909,1620000000000 ,1620000000000 ,1620000000000 ,1616812391380 -1616812391416 ,112.5730095,26.88664091,60.5051918,180.035489,181.058378,13.774098,0.124914306,1620000000000 ,1620000000000 ,1620000000000 ,1616812391390 -1616812391422 ,112.5730095,26.88663966,60.5063591,180.0321285,181.0526719,13.773491,0.124912266,1620000000000 ,1620000000000 ,1620000000000 ,1616812391400 -1616812391431 ,112.5730095,26.88663841,60.50756454,180.0271015,181.0510827,13.772783,0.124906806,1620000000000 ,1620000000000 ,1620000000000 ,1616812391410 -1616812391444 ,112.5730095,26.88663716,60.50881195,180.0227848,181.0497537,13.770269,0.124891875,1620000000000 ,1620000000000 ,1620000000000 ,1616812391420 -1616812391451 ,112.5730095,26.88663591,60.51010132,180.0173207,181.042454,13.76824,0.124873903,1620000000000 ,1620000000000 ,1620000000000 ,1616812391430 -1616812391460 ,112.5730094,26.88663466,60.51144028,180.0146159,181.0354405,13.768493,0.124872854,1620000000000 ,1620000000000 ,1620000000000 ,1616812391440 -1616812391471 ,112.5730094,26.88663342,60.51273346,180.0124303,180.777443,13.770104,0.124632167,1620000000000 ,1620000000000 ,1620000000000 ,1616812391450 -1616812391482 ,112.5730094,26.88663217,60.51395035,180.0096435,180.5280319,13.770308,0.124393948,1620000000000 ,1620000000000 ,1620000000000 ,1616812391460 -1616812391497 ,112.5730094,26.88663093,60.51515579,180.0049717,180.53184,13.770755,0.124397985,1620000000000 ,1620000000000 ,1620000000000 ,1616812391470 -1616812391502 ,112.5730094,26.88662969,60.5164032,180.0013927,180.5285649,13.768125,0.124383751,1620000000000 ,1620000000000 ,1620000000000 ,1616812391480 -1616812391513 ,112.5730094,26.88662844,60.51768875,179.9983601,180.5188893,13.766727,0.124367776,1620000000000 ,1620000000000 ,1620000000000 ,1616812391490 -1616812391522 ,112.5730094,26.8866272,60.5189743,179.9954914,180.512393,13.766002,0.124362567,1620000000000 ,1620000000000 ,1620000000000 ,1616812391500 -1616812391533 ,112.5730093,26.88662595,60.52022552,179.9950816,180.5083318,13.76682,0.124367172,1620000000000 ,1620000000000 ,1620000000000 ,1616812391510 -1616812391548 ,112.5730093,26.88662471,60.52144623,179.9925954,180.5042691,13.767139,0.124373523,1620000000000 ,1620000000000 ,1620000000000 ,1616812391520 -1616812391551 ,112.5730093,26.88662347,60.52265549,179.9895355,180.5009376,13.765606,0.124364054,1620000000000 ,1620000000000 ,1620000000000 ,1616812391530 -1616812391562 ,112.5730093,26.88662222,60.5238266,179.9880601,180.4986869,13.76529,0.124356949,1620000000000 ,1620000000000 ,1620000000000 ,1616812391540 -1616812391575 ,112.5730093,26.88662098,60.52493668,179.9862843,180.498464,13.765317,0.124353268,1620000000000 ,1620000000000 ,1620000000000 ,1616812391550 -1616812391582 ,112.5730093,26.88661974,60.52595901,179.9854374,180.4962855,13.766387,0.124362472,1620000000000 ,1620000000000 ,1620000000000 ,1616812391560 -1616812391594 ,112.5730093,26.88661849,60.5268898,179.9834703,180.4865811,13.767758,0.124371627,1620000000000 ,1620000000000 ,1620000000000 ,1616812391570 -1616812391603 ,112.5730093,26.88661725,60.52770615,179.9806289,180.480397,13.767645,0.124370067,1620000000000 ,1620000000000 ,1620000000000 ,1616812391580 -1616812391613 ,112.5730093,26.88661601,60.52845383,179.976804,180.4795438,13.768016,0.12437043,1620000000000 ,1620000000000 ,1620000000000 ,1616812391590 -1616812391622 ,112.5730093,26.88661476,60.52915955,179.9734982,180.4796102,13.767193,0.124366969,1620000000000 ,1620000000000 ,1620000000000 ,1616812391600 -1616812391635 ,112.5730092,26.88661352,60.52984238,179.9710393,180.4809185,13.767385,0.124365397,1620000000000 ,1620000000000 ,1620000000000 ,1616812391610 -1616812391644 ,112.5730092,26.88661228,60.53047943,179.97093,180.4776131,13.767034,0.124362083,1620000000000 ,1620000000000 ,1620000000000 ,1616812391630 -1616812391653 ,112.5730092,26.88661103,60.53107452,179.9719136,180.4711879,13.766667,0.124358516,1620000000000 ,1620000000000 ,1620000000000 ,1616812391630 -1616812391663 ,112.5730092,26.88660979,60.5316391,179.9716404,180.4652383,13.766874,0.124356705,1620000000000 ,1620000000000 ,1620000000000 ,1616812391650 -1616812391673 ,112.5730092,26.88660854,60.53214645,179.9706568,180.4628855,13.767497,0.124358165,1620000000000 ,1620000000000 ,1620000000000 ,1616812391660 -1616812391684 ,112.5730092,26.8866073,60.53259277,179.9691269,180.4643068,13.769175,0.124371015,1620000000000 ,1620000000000 ,1620000000000 ,1616812391670 -1616812391693 ,112.5730092,26.88660481,60.5334053,179.9677335,180.4705051,13.769324,0.248747446,1620000000000 ,1620000000000 ,1620000000000 ,1616812391680 -1616812391703 ,112.5730092,26.88660481,60.5334053,179.9677335,-400,13.769324,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812391680 -1616812391714 ,112.5730092,26.88660357,60.53384018,179.9660669,180.4688714,13.768172,0.124366834,1620000000000 ,1620000000000 ,1620000000000 ,1616812391700 -1616812391726 ,112.5730092,26.88660233,60.53430557,179.9628158,180.4627327,13.767439,0.124358757,1620000000000 ,1620000000000 ,1620000000000 ,1616812391710 -1616812391733 ,112.5730091,26.88659984,60.53506088,179.9624333,180.4527188,13.77243,0.248759663,1620000000000 ,1620000000000 ,1620000000000 ,1616812391720 -1616812391744 ,112.5730091,26.88659859,60.53532028,179.9624879,180.4598527,13.77445,0.124408093,1620000000000 ,1620000000000 ,1620000000000 ,1616812391730 -1616812391755 ,112.5730091,26.88659735,60.53559494,179.960958,180.4519267,13.774997,0.124418563,1620000000000 ,1620000000000 ,1620000000000 ,1616812391740 -1616812391765 ,112.5730091,26.88659611,60.53592682,179.9594553,180.4422021,13.774964,0.124422685,1620000000000 ,1620000000000 ,1620000000000 ,1616812391750 -1616812391774 ,112.5730091,26.88659486,60.53627396,179.9621054,180.4367617,13.776292,0.124428336,1620000000000 ,1620000000000 ,1620000000000 ,1616812391760 -1616812391785 ,112.5730091,26.88659362,60.53656769,179.9640725,180.4363854,13.778193,0.124442699,1620000000000 ,1620000000000 ,1620000000000 ,1616812391770 -1616812391795 ,112.5730091,26.88659237,60.53681183,179.9642364,180.4339754,13.781528,0.124465441,1620000000000 ,1620000000000 ,1620000000000 ,1616812391780 -1616812391811 ,112.5730091,26.88659113,60.53701019,179.96369,180.4348403,13.785405,0.124498207,1620000000000 ,1620000000000 ,1620000000000 ,1616812391790 -1616812391816 ,112.5730091,26.88658988,60.53718185,179.964537,180.4455107,13.788188,0.124524504,1620000000000 ,1620000000000 ,1620000000000 ,1616812391800 -1616812391828 ,112.573009,26.88658864,60.53736115,179.9643731,180.4462627,13.790947,0.124551142,1620000000000 ,1620000000000 ,1620000000000 ,1616812391810 -1616812391835 ,112.573009,26.88658739,60.53761292,179.9622147,180.441919,13.792044,0.124567231,1620000000000 ,1620000000000 ,1620000000000 ,1616812391820 -1616812391844 ,112.573009,26.88658615,60.53793716,179.9613678,180.4378477,13.792964,0.124576254,1620000000000 ,1620000000000 ,1620000000000 ,1616812391830 -1616812391856 ,112.573009,26.8865849,60.5382843,179.9625152,180.4356921,13.793087,0.124580542,1620000000000 ,1620000000000 ,1620000000000 ,1616812391840 -1616812391866 ,112.573009,26.88658365,60.53862762,179.9625972,180.4403559,13.792355,0.12457893,1620000000000 ,1620000000000 ,1620000000000 ,1616812391850 -1616812391876 ,112.573009,26.88658241,60.53903198,179.9618049,180.4391731,13.790453,0.124564034,1620000000000 ,1620000000000 ,1620000000000 ,1616812391860 -1616812391885 ,112.573009,26.88658116,60.53955078,179.9601383,180.427299,13.790453,0.12456141,1620000000000 ,1620000000000 ,1620000000000 ,1616812391870 -1616812391896 ,112.573009,26.88657992,60.54014969,179.9591821,180.4229187,13.792045,0.12457622,1620000000000 ,1620000000000 ,1620000000000 ,1616812391880 -1616812391906 ,112.573009,26.88657867,60.54073334,179.9600837,180.4297807,13.795442,0.124599769,1620000000000 ,1620000000000 ,1620000000000 ,1616812391890 -1616812391915 ,112.573009,26.88657743,60.54128265,179.9615044,180.4426591,13.79722,0.124624583,1620000000000 ,1620000000000 ,1620000000000 ,1616812391900 -1616812391925 ,112.573009,26.88657618,60.54185104,179.960193,180.4384523,13.796693,0.124626937,1620000000000 ,1620000000000 ,1620000000000 ,1616812391910 -1616812391935 ,112.5730089,26.88657493,60.54250336,179.9582532,180.431742,13.795201,0.1246165,1620000000000 ,1620000000000 ,1620000000000 ,1616812391920 -1616812391946 ,112.5730089,26.88657369,60.54321289,179.9579254,180.4241871,13.796279,0.12462063,1620000000000 ,1620000000000 ,1620000000000 ,1616812391930 -1616812391958 ,112.5730089,26.88657244,60.54390335,179.9596192,180.4282196,13.798695,0.124640626,1620000000000 ,1620000000000 ,1620000000000 ,1616812391940 -1616812391966 ,112.5730089,26.88657119,60.54454422,179.9591548,180.4343419,13.801037,0.12466355,1620000000000 ,1620000000000 ,1620000000000 ,1616812391950 -1616812391977 ,112.5730089,26.88656995,60.54512787,179.959428,180.4389052,13.802783,0.124679791,1620000000000 ,1620000000000 ,1620000000000 ,1616812391960 -1616812391991 ,112.5730089,26.8865687,60.54569244,179.9587723,180.4329638,13.803859,0.124687058,1620000000000 ,1620000000000 ,1620000000000 ,1616812391970 -1616812391997 ,112.5730089,26.88656745,60.54623413,179.9587996,180.4285579,13.805193,0.124699187,1620000000000 ,1620000000000 ,1620000000000 ,1616812391980 -1616812392007 ,112.5730089,26.88656621,60.54673386,179.9567506,180.4317087,13.806893,0.124709471,1620000000000 ,1620000000000 ,1620000000000 ,1616812391990 -1616812392016 ,112.5730089,26.88656496,60.54714584,179.9557124,180.4295355,13.810042,0.124731761,1620000000000 ,1620000000000 ,1620000000000 ,1616812392000 -1616812392026 ,112.5730089,26.88656371,60.5474472,179.9553299,180.4241103,13.812073,0.124748405,1620000000000 ,1620000000000 ,1620000000000 ,1616812392010 -1616812392036 ,112.5730088,26.88656246,60.54764557,179.9553572,180.4175326,13.815422,0.124770932,1620000000000 ,1620000000000 ,1620000000000 ,1616812392020 -1616812392047 ,112.5730088,26.88656122,60.54779816,179.9536087,180.4160662,13.816571,0.12478503,1620000000000 ,1620000000000 ,1620000000000 ,1616812392030 -1616812392057 ,112.5730088,26.88655997,60.54796982,179.9533628,180.4174178,13.817241,0.124790221,1620000000000 ,1620000000000 ,1620000000000 ,1616812392040 -1616812392067 ,112.5730088,26.88655872,60.54821396,179.9542097,180.4185005,13.818419,0.124803375,1620000000000 ,1620000000000 ,1620000000000 ,1616812392050 -1616812392077 ,112.5730088,26.88655747,60.54848099,179.9548108,180.4239422,13.818817,0.124805157,1620000000000 ,1620000000000 ,1620000000000 ,1616812392060 -1616812392087 ,112.5730088,26.88655622,60.54875565,179.9553026,180.4296884,13.820063,0.1248151,1620000000000 ,1620000000000 ,1620000000000 ,1616812392070 -1616812392097 ,112.5730088,26.88655498,60.54901505,179.9559036,180.4286503,13.821555,0.124823876,1620000000000 ,1620000000000 ,1620000000000 ,1616812392080 -1616812392110 ,112.5730088,26.88655373,60.54929352,179.9553026,180.4284714,13.824114,0.124848257,1620000000000 ,1620000000000 ,1620000000000 ,1616812392090 -1616812392119 ,112.5730088,26.88655248,60.54959488,179.9534994,180.4266957,13.8253765,0.124859082,1620000000000 ,1620000000000 ,1620000000000 ,1616812392100 -1616812392132 ,112.5730088,26.88655123,60.54995728,179.9516962,180.436521,13.825088,0.124862914,1620000000000 ,1620000000000 ,1620000000000 ,1616812392110 -1616812392142 ,112.5730088,26.88654998,60.55040359,179.9519967,180.4411605,13.824392,0.12485725,1620000000000 ,1620000000000 ,1620000000000 ,1616812392120 -1616812392151 ,112.5730087,26.88654873,60.55091858,179.9511225,180.4379222,13.826254,0.124869645,1620000000000 ,1620000000000 ,1620000000000 ,1616812392130 -1616812392161 ,112.5730087,26.88654748,60.55146027,179.9509859,180.4325916,13.828264,0.124889195,1620000000000 ,1620000000000 ,1620000000000 ,1616812392140 -1616812392168 ,112.5730087,26.88654624,60.5520134,179.9476801,180.4350102,13.829189,0.124898794,1620000000000 ,1620000000000 ,1620000000000 ,1616812392150 -1616812392182 ,112.5730087,26.88654499,60.55263138,179.9468331,180.4338054,13.828468,0.124899362,1620000000000 ,1620000000000 ,1620000000000 ,1616812392160 -1616812392190 ,112.5730087,26.88654374,60.55335617,179.9449753,180.4315418,13.828075,0.124896401,1620000000000 ,1620000000000 ,1620000000000 ,1616812392170 -1616812392198 ,112.5730087,26.88654249,60.55420303,179.9458223,180.4319663,13.827742,0.124895623,1620000000000 ,1620000000000 ,1620000000000 ,1616812392180 -1616812392209 ,112.5730087,26.88654124,60.55514908,179.9440191,180.4336432,13.8278,0.1248999,1620000000000 ,1620000000000 ,1620000000000 ,1616812392190 -1616812392218 ,112.5730087,26.88653999,60.55617142,179.9440191,180.429759,13.827602,0.12489955,1620000000000 ,1620000000000 ,1620000000000 ,1616812392200 -1616812392228 ,112.5730087,26.88653874,60.55804443,179.93626,180.9052261,13.850776,0.125533464,1620000000000 ,1620000000000 ,1620000000000 ,1616812392210 -1616812392238 ,112.5730086,26.88653748,60.56007767,179.9353857,180.9682624,13.851358,0.125643382,1620000000000 ,1620000000000 ,1620000000000 ,1616812392220 -1616812392250 ,112.5730086,26.88653622,60.56214142,179.9350852,180.9735379,13.853062,0.125661236,1620000000000 ,1620000000000 ,1620000000000 ,1616812392230 -1616812392261 ,112.5730086,26.88653497,60.56423569,179.9335552,180.9766107,13.852062,0.125660105,1620000000000 ,1620000000000 ,1620000000000 ,1616812392240 -1616812392270 ,112.5730086,26.88653371,60.56637192,179.9330361,180.9728848,13.849264,0.125639635,1620000000000 ,1620000000000 ,1620000000000 ,1616812392250 -1616812392280 ,112.5730086,26.88653245,60.56853104,179.9317521,180.9663192,13.847944,0.125625785,1620000000000 ,1620000000000 ,1620000000000 ,1616812392260 -1616812392291 ,112.5730085,26.8865312,60.57065964,179.9306592,180.965504,13.850752,0.12564135,1620000000000 ,1620000000000 ,1620000000000 ,1616812392270 -1616812392300 ,112.5730085,26.88652994,60.57271576,179.9286375,180.9675054,13.854208,0.125669559,1620000000000 ,1620000000000 ,1620000000000 ,1616812392280 -1616812392311 ,112.5730085,26.88652868,60.57468414,179.929785,180.9687228,13.856222,0.125688319,1620000000000 ,1620000000000 ,1620000000000 ,1616812392290 -1616812392328 ,112.5730085,26.88652743,60.57662964,179.9288014,180.9678806,13.856684,0.125698996,1620000000000 ,1620000000000 ,1620000000000 ,1616812392300 -1616812392330 ,112.5730084,26.88652617,60.5785675,179.9267524,180.9621649,13.85579,0.125696253,1620000000000 ,1620000000000 ,1620000000000 ,1616812392310 -1616812392340 ,112.5730084,26.88652491,60.58048248,179.9264792,180.9583206,13.855231,0.125687147,1620000000000 ,1620000000000 ,1620000000000 ,1616812392320 -1616812392351 ,112.5730084,26.88652366,60.58231354,179.9244301,180.9589704,13.855608,0.125685885,1620000000000 ,1620000000000 ,1620000000000 ,1616812392330 -1616812392361 ,112.5730084,26.8865224,60.58406448,179.9235012,180.9696816,13.856089,0.125689349,1620000000000 ,1620000000000 ,1620000000000 ,1616812392340 -1616812392370 ,112.5730084,26.88652114,60.5858345,179.922381,180.9751649,13.854611,0.125684235,1620000000000 ,1620000000000 ,1620000000000 ,1616812392350 -1616812392381 ,112.5730083,26.88651989,60.58769608,179.9230914,180.9624657,13.854722,0.125682529,1620000000000 ,1620000000000 ,1620000000000 ,1616812392360 -1616812392395 ,112.5730083,26.88651863,60.58963394,179.9231187,180.9569909,13.854282,0.125679433,1620000000000 ,1620000000000 ,1620000000000 ,1616812392370 -1616812392402 ,112.5730083,26.88651737,60.59156799,179.9263426,180.9609619,13.855032,0.125685408,1620000000000 ,1620000000000 ,1620000000000 ,1616812392380 -1616812392411 ,112.5730083,26.88651612,60.59340286,179.9287468,180.9659695,13.855069,0.125684834,1620000000000 ,1620000000000 ,1620000000000 ,1616812392390 -1616812392421 ,112.5730083,26.88651486,60.59510422,179.9287195,180.9674917,13.856867,0.125695074,1620000000000 ,1620000000000 ,1620000000000 ,1616812392400 -1616812392430 ,112.5730082,26.8865136,60.59672165,179.927572,180.9626911,13.858056,0.125701065,1620000000000 ,1620000000000 ,1620000000000 ,1616812392410 -1616812392443 ,112.5730082,26.88651235,60.59831619,179.9279545,180.9608459,13.858075,0.125703291,1620000000000 ,1620000000000 ,1620000000000 ,1616812392420 -1616812392451 ,112.5730082,26.88651109,60.59986877,179.926124,180.960303,13.856556,0.125693028,1620000000000 ,1620000000000 ,1620000000000 ,1616812392430 -1616812392462 ,112.5730082,26.88650983,60.6014061,179.9263972,180.9668142,13.855004,0.125678365,1620000000000 ,1620000000000 ,1620000000000 ,1616812392440 -1616812392472 ,112.5730082,26.88650858,60.60298157,179.9260147,180.9622037,13.853552,0.125663096,1620000000000 ,1620000000000 ,1620000000000 ,1616812392450 -1616812392482 ,112.5730081,26.88650733,60.60388184,179.9262333,180.5381313,13.854491,0.125144308,1620000000000 ,1620000000000 ,1620000000000 ,1616812392460 -1616812392494 ,112.5730081,26.88650607,60.60467911,179.928938,180.5332206,13.857204,0.12516451,1620000000000 ,1620000000000 ,1620000000000 ,1616812392470 -1616812392503 ,112.5730081,26.88650482,60.6053009,179.928173,180.5431582,13.859062,0.125175791,1620000000000 ,1620000000000 ,1620000000000 ,1616812392480 -1616812392513 ,112.5730081,26.88650357,60.60585022,179.9255229,180.5561176,13.859732,0.125182628,1620000000000 ,1620000000000 ,1620000000000 ,1616812392490 -1616812392522 ,112.5730081,26.88650232,60.60641861,179.9236924,180.5484308,13.858921,0.125176026,1620000000000 ,1620000000000 ,1620000000000 ,1616812392500 -1616812392533 ,112.5730081,26.88650107,60.60702896,179.9232553,180.5530508,13.858181,0.125170368,1620000000000 ,1620000000000 ,1620000000000 ,1616812392510 -1616812392544 ,112.5730081,26.88649982,60.60770035,179.9234192,180.558398,13.85683,0.125157853,1620000000000 ,1620000000000 ,1620000000000 ,1616812392520 -1616812392553 ,112.5730081,26.88649856,60.60845947,179.9229001,180.5531066,13.853787,0.125137141,1620000000000 ,1620000000000 ,1620000000000 ,1616812392530 -1616812392563 ,112.573008,26.88649731,60.60930252,179.9221078,180.5462873,13.85327,0.125126708,1620000000000 ,1620000000000 ,1620000000000 ,1616812392540 -1616812392572 ,112.573008,26.88649606,60.61014938,179.9222444,180.5459677,13.854695,0.125133746,1620000000000 ,1620000000000 ,1620000000000 ,1616812392550 -1616812392584 ,112.573008,26.88649481,60.61098099,179.92178,180.5528729,13.855147,0.125136119,1620000000000 ,1620000000000 ,1620000000000 ,1616812392560 -1616812392595 ,112.573008,26.88649356,60.61187363,179.9210697,180.5557923,13.853722,0.125133561,1620000000000 ,1620000000000 ,1620000000000 ,1616812392570 -1616812392605 ,112.573008,26.88649231,60.61290359,179.9196217,180.5481997,13.851009,0.125116785,1620000000000 ,1620000000000 ,1620000000000 ,1616812392580 -1616812392613 ,112.573008,26.88649106,60.61405945,179.9199495,180.5457291,13.84846,0.125093254,1620000000000 ,1620000000000 ,1620000000000 ,1616812392590 -1616812392624 ,112.573008,26.88648981,60.61526489,179.9210423,180.537127,13.846659,0.125072996,1620000000000 ,1620000000000 ,1620000000000 ,1616812392600 -1616812392633 ,112.573008,26.88648856,60.61648178,179.9211243,180.5381585,13.844279,0.125053401,1620000000000 ,1620000000000 ,1620000000000 ,1616812392610 -1616812392643 ,112.5730079,26.88648731,60.61771774,179.9207691,180.5368794,13.842811,0.125039975,1620000000000 ,1620000000000 ,1620000000000 ,1616812392630 -1616812392657 ,112.5730079,26.88648606,60.61901855,179.920332,180.5342359,13.84136,0.125030892,1620000000000 ,1620000000000 ,1620000000000 ,1616812392630 -1616812392664 ,112.5730079,26.88648481,60.6204071,179.9175726,180.5309327,13.838297,0.125008074,1620000000000 ,1620000000000 ,1620000000000 ,1616812392650 -1616812392673 ,112.5730079,26.88648356,60.62187958,179.9172174,180.5328257,13.835091,0.124978231,1620000000000 ,1620000000000 ,1620000000000 ,1616812392660 -1616812392682 ,112.5730079,26.88648231,60.6234436,179.9158241,180.5329817,13.830612,0.124945484,1620000000000 ,1620000000000 ,1620000000000 ,1616812392670 -1616812392693 ,112.5730079,26.88647981,60.62675858,179.9171355,180.5308241,13.826838,0.249834569,1620000000000 ,1620000000000 ,1620000000000 ,1616812392680 -1616812392704 ,112.5730079,26.88647981,60.62675858,179.9171355,-400,13.826838,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812392680 -1616812392713 ,112.5730079,26.88647856,60.62850189,179.916753,180.5260685,13.822749,0.124880794,1620000000000 ,1620000000000 ,1620000000000 ,1616812392700 -1616812392723 ,112.5730079,26.88647731,60.63031387,179.9158787,180.5248842,13.8201275,0.12485587,1620000000000 ,1620000000000 ,1620000000000 ,1616812392710 -1616812392733 ,112.5730078,26.88647481,60.63397598,179.9179824,180.5233543,13.817452,0.249672843,1620000000000 ,1620000000000 ,1620000000000 ,1616812392720 -1616812392743 ,112.5730078,26.88647357,60.63575363,179.9186654,180.5310186,13.815266,0.124816572,1620000000000 ,1620000000000 ,1620000000000 ,1616812392730 -1616812392754 ,112.5730078,26.88647232,60.63753891,179.9194304,180.5281956,13.812282,0.124791181,1620000000000 ,1620000000000 ,1620000000000 ,1616812392740 -1616812392764 ,112.5730078,26.88647107,60.63934326,179.9193211,180.5155699,13.809777,0.124766859,1620000000000 ,1620000000000 ,1620000000000 ,1616812392750 -1616812392774 ,112.5730078,26.88646982,60.6411438,179.919567,180.5078235,13.80672,0.124745321,1620000000000 ,1620000000000 ,1620000000000 ,1616812392760 -1616812392784 ,112.5730078,26.88646858,60.64289474,179.920414,180.5098582,13.804704,0.124724036,1620000000000 ,1620000000000 ,1620000000000 ,1616812392770 -1616812392794 ,112.5730078,26.88646733,60.64456558,179.9224357,180.5152473,13.802881,0.124704312,1620000000000 ,1620000000000 ,1620000000000 ,1616812392780 -1616812392805 ,112.5730078,26.88646608,60.64619446,179.9256322,180.5167903,13.802174,0.124695783,1620000000000 ,1620000000000 ,1620000000000 ,1616812392790 -1616812392817 ,112.5730078,26.88646608,60.64619446,179.9256322,-400,13.802174,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812392800 -1616812392826 ,112.5730077,26.88646359,60.64934921,179.9306046,180.5171994,13.800629,0.249376614,1620000000000 ,1620000000000 ,1620000000000 ,1616812392810 -1616812392836 ,112.5730077,26.88646234,60.65083694,179.9324624,180.5146605,13.798527,0.124663782,1620000000000 ,1620000000000 ,1620000000000 ,1616812392820 -1616812392846 ,112.5730077,26.88646234,60.65083694,179.9324624,-400,13.798527,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812392830 -1616812392857 ,112.5730077,26.88645985,60.65363693,179.9332547,180.5223451,13.794524,0.249266192,1620000000000 ,1620000000000 ,1620000000000 ,1616812392840 -1616812392866 ,112.5730077,26.8864586,60.65502548,179.9342109,180.5237902,13.79035,0.124594636,1620000000000 ,1620000000000 ,1620000000000 ,1616812392850 -1616812392877 ,112.5730077,26.88645736,60.65642548,179.934894,180.5232721,13.787559,0.12456458,1620000000000 ,1620000000000 ,1620000000000 ,1616812392860 -1616812392885 ,112.5730077,26.88645611,60.65779877,179.9351398,180.5225581,13.785604,0.124543736,1620000000000 ,1620000000000 ,1620000000000 ,1616812392870 -1616812392897 ,112.5730077,26.88645487,60.65910721,179.9364512,180.5256329,13.785239,0.12453505,1620000000000 ,1620000000000 ,1620000000000 ,1616812392880 -1616812392906 ,112.5730076,26.88645362,60.66033173,179.9379812,180.5308071,13.785531,0.124533291,1620000000000 ,1620000000000 ,1620000000000 ,1616812392890 -1616812392916 ,112.5730076,26.88645238,60.66149902,179.9397844,180.5332923,13.78422,0.124525058,1620000000000 ,1620000000000 ,1620000000000 ,1616812392900 -1616812392925 ,112.5730076,26.88645113,60.66265869,179.942653,180.5295957,13.781938,0.124505099,1620000000000 ,1620000000000 ,1620000000000 ,1616812392910 -1616812392935 ,112.5730076,26.88644989,60.66381836,179.9441557,180.5269636,13.777931,0.12447261,1620000000000 ,1620000000000 ,1620000000000 ,1616812392920 -1616812392948 ,112.5730076,26.88644864,60.66495514,179.9451939,180.5309201,13.775196,0.12444129,1620000000000 ,1620000000000 ,1620000000000 ,1616812392930 -1616812392957 ,112.5730076,26.8864474,60.66601563,179.9453305,180.5349368,13.773703,0.12442262,1620000000000 ,1620000000000 ,1620000000000 ,1616812392940 -1616812392965 ,112.5730076,26.88644615,60.66698456,179.9473795,180.546312,13.772398,0.124409518,1620000000000 ,1620000000000 ,1620000000000 ,1616812392950 -1616812392987 ,112.5730076,26.88644491,60.66792679,179.9497018,180.5568743,13.770874,0.124394324,1620000000000 ,1620000000000 ,1620000000000 ,1616812392960 -1616812392991 ,112.5730075,26.88644367,60.66891861,179.9504941,180.5542567,13.767696,0.124368308,1620000000000 ,1620000000000 ,1620000000000 ,1616812392970 -1616812392997 ,112.5730075,26.88644242,60.66996384,179.952871,180.5512904,13.764588,0.124343455,1620000000000 ,1620000000000 ,1620000000000 ,1616812392980 -1616812393006 ,112.5730075,26.88644118,60.67099762,179.9540458,180.5604931,13.763119,0.124325847,1620000000000 ,1620000000000 ,1620000000000 ,1616812392990 -1616812393016 ,112.5730075,26.88643994,60.67196655,179.9576795,180.57535,13.761998,0.124309806,1620000000000 ,1620000000000 ,1620000000000 ,1616812393000 -1616812393026 ,112.5730075,26.88643869,60.67292404,179.9592914,180.5861507,13.759219,0.124288149,1620000000000 ,1620000000000 ,1620000000000 ,1616812393010 -1616812393038 ,112.5730075,26.88643745,60.67396164,179.9598105,180.5810739,13.756224,0.124267424,1620000000000 ,1620000000000 ,1620000000000 ,1616812393020 -1616812393047 ,112.5730075,26.88643621,60.67510605,179.9583625,180.5723259,13.752974,0.124239346,1620000000000 ,1620000000000 ,1620000000000 ,1616812393030 -1616812393056 ,112.5730075,26.88643497,60.67630768,179.9620235,180.5769244,13.751029,0.124216304,1620000000000 ,1620000000000 ,1620000000000 ,1616812393040 -1616812393068 ,112.5730074,26.88643373,60.67749786,179.9642638,180.5865244,13.748975,0.12419979,1620000000000 ,1620000000000 ,1620000000000 ,1616812393050 -1616812393077 ,112.5730074,26.88643248,60.67869568,179.968116,180.5888276,13.746953,0.124185395,1620000000000 ,1620000000000 ,1620000000000 ,1616812393060 -1616812393086 ,112.5730074,26.88643124,60.67995834,179.9700284,180.5829255,13.744491,0.124163945,1620000000000 ,1620000000000 ,1620000000000 ,1616812393070 -1616812393098 ,112.5730074,26.88643,60.68128204,179.9742358,180.5823588,13.740983,0.124133771,1620000000000 ,1620000000000 ,1620000000000 ,1616812393080 -1616812393107 ,112.5730074,26.88642876,60.68264008,179.9778149,180.5863896,13.737674,0.124105871,1620000000000 ,1620000000000 ,1620000000000 ,1616812393090 -1616812393117 ,112.5730074,26.88642752,60.68402481,179.9824321,180.5913609,13.73521,0.124083562,1620000000000 ,1620000000000 ,1620000000000 ,1616812393100 -1616812393127 ,112.5730074,26.88642628,60.68544006,179.9866941,180.5890116,13.733912,0.124069205,1620000000000 ,1620000000000 ,1620000000000 ,1616812393110 -1616812393137 ,112.5730074,26.88642504,60.68685913,179.9918577,180.5835277,13.7330675,0.124059549,1620000000000 ,1620000000000 ,1620000000000 ,1616812393120 -1616812393147 ,112.5730073,26.8864238,60.68823624,179.9993163,180.5823848,13.7319975,0.124051199,1620000000000 ,1620000000000 ,1620000000000 ,1616812393130 -1616812393158 ,112.5730073,26.88642256,60.68958282,180.0049171,180.5889059,13.72891,0.124028134,1620000000000 ,1620000000000 ,1620000000000 ,1616812393140 -1616812393169 ,112.5730073,26.88642132,60.69094849,180.0104085,180.5902797,13.724675,0.123991785,1620000000000 ,1620000000000 ,1620000000000 ,1616812393150 -1616812393179 ,112.5730073,26.88642008,60.69232941,180.0169928,180.597503,13.722481,0.123966962,1620000000000 ,1620000000000 ,1620000000000 ,1616812393160 -1616812393197 ,112.5730073,26.88641884,60.69367981,180.0247246,180.6007341,13.721301,0.123952442,1620000000000 ,1620000000000 ,1620000000000 ,1616812393170 -1616812393201 ,112.5730073,26.8864176,60.69498825,180.033358,180.6088972,13.719317,0.123936467,1620000000000 ,1620000000000 ,1620000000000 ,1616812393180 -1616812393210 ,112.5730073,26.88641636,60.69630051,180.0395871,180.6075323,13.716628,0.12391309,1620000000000 ,1620000000000 ,1620000000000 ,1616812393190 -1616812393218 ,112.5730073,26.88641512,60.69755173,180.0372375,180.5007287,13.692588,0.123597512,1620000000000 ,1620000000000 ,1620000000000 ,1616812393200 -1616812393228 ,112.5730073,26.88641389,60.69865799,180.0439584,180.3062874,13.69079,0.123084751,1620000000000 ,1620000000000 ,1620000000000 ,1616812393210 -1616812393238 ,112.5730072,26.88641266,60.69971466,180.0521,180.3213015,13.690632,0.123079623,1620000000000 ,1620000000000 ,1620000000000 ,1616812393220 -1616812393248 ,112.5730072,26.88641143,60.70069122,180.0636567,180.3316235,13.689472,0.123067417,1620000000000 ,1620000000000 ,1620000000000 ,1616812393230 -1616812393258 ,112.5730072,26.8864102,60.70166779,180.0709786,180.3309976,13.686502,0.12304603,1620000000000 ,1620000000000 ,1620000000000 ,1616812393240 -1616812393269 ,112.5730072,26.88640897,60.70270538,180.0787377,180.3244399,13.683333,0.123017881,1620000000000 ,1620000000000 ,1620000000000 ,1616812393250 -1616812393280 ,112.5730072,26.88640774,60.70378113,180.0848849,180.3305326,13.679985,0.122990772,1620000000000 ,1620000000000 ,1620000000000 ,1616812393260 -1616812393290 ,112.5730072,26.88640651,60.70485687,180.096305,180.348758,13.676869,0.122959337,1620000000000 ,1620000000000 ,1620000000000 ,1616812393270 -1616812393300 ,112.5730072,26.88640528,60.70592117,180.1047744,180.364453,13.675705,0.122944548,1620000000000 ,1620000000000 ,1620000000000 ,1616812393280 -1616812393312 ,112.5730072,26.88640405,60.70698929,180.1148558,180.3690628,13.675629,0.122941127,1620000000000 ,1620000000000 ,1620000000000 ,1616812393290 -1616812393320 ,112.5730072,26.88640282,60.70800781,180.1228061,180.3726428,13.676205,0.122944325,1620000000000 ,1620000000000 ,1620000000000 ,1616812393300 -1616812393329 ,112.5730072,26.88640159,60.70897675,180.1322045,180.3877154,13.673442,0.122923414,1620000000000 ,1620000000000 ,1620000000000 ,1616812393310 -1616812393339 ,112.5730072,26.88640037,60.70994949,180.1381877,180.4069835,13.67032,0.122897706,1620000000000 ,1620000000000 ,1620000000000 ,1616812393320 -1616812393349 ,112.5730072,26.88639914,60.71098328,180.1457829,180.415529,13.667291,0.122872992,1620000000000 ,1620000000000 ,1620000000000 ,1616812393330 -1616812393359 ,112.5730071,26.88639791,60.71207047,180.1556183,180.4205378,13.66494,0.122850067,1620000000000 ,1620000000000 ,1620000000000 ,1616812393340 -1616812393369 ,112.5730071,26.88639668,60.71318817,180.1651806,180.4289769,13.661307,0.122821463,1620000000000 ,1620000000000 ,1620000000000 ,1616812393350 -1616812393379 ,112.5730071,26.88639545,60.71430588,180.1742511,180.4452472,13.658116,0.122792543,1620000000000 ,1620000000000 ,1620000000000 ,1616812393360 -1616812393395 ,112.5730071,26.88639422,60.71542358,180.1805895,180.4631816,13.656377,0.122772499,1620000000000 ,1620000000000 ,1620000000000 ,1616812393370 -1616812393404 ,112.5730071,26.886393,60.71656418,180.1884852,180.472716,13.655176,0.122761495,1620000000000 ,1620000000000 ,1620000000000 ,1616812393380 -1616812393410 ,112.5730071,26.88639177,60.71774673,180.1957525,180.48318,13.654615,0.122758596,1620000000000 ,1620000000000 ,1620000000000 ,1616812393390 -1616812393425 ,112.5730071,26.88639054,60.71896744,180.2017085,180.489041,13.652342,0.12274407,1620000000000 ,1620000000000 ,1620000000000 ,1616812393400 -1616812393431 ,112.5730071,26.88638932,60.72019577,180.2100959,180.5008497,13.649238,0.122719537,1620000000000 ,1620000000000 ,1620000000000 ,1616812393410 -1616812393440 ,112.5730071,26.88638809,60.72140503,180.2173906,180.5180202,13.646427,0.122689132,1620000000000 ,1620000000000 ,1620000000000 ,1616812393420 -1616812393451 ,112.5730071,26.88638686,60.72256851,180.2234558,180.528823,13.644827,0.122676017,1620000000000 ,1620000000000 ,1620000000000 ,1616812393430 -1616812393460 ,112.573007,26.88638564,60.72367859,180.228756,180.5420218,13.643267,0.122658243,1620000000000 ,1620000000000 ,1620000000000 ,1616812393440 -1616812393475 ,112.573007,26.88638441,60.72486496,180.2363512,180.6531627,13.640975,0.122936753,1620000000000 ,1620000000000 ,1620000000000 ,1616812393450 -1616812393482 ,112.573007,26.88638317,60.72616959,180.2429628,180.7623279,13.638242,0.123206509,1620000000000 ,1620000000000 ,1620000000000 ,1616812393460 -1616812393498 ,112.573007,26.88638194,60.72749329,180.2502574,180.7747168,13.636474,0.123192223,1620000000000 ,1620000000000 ,1620000000000 ,1616812393470 -1616812393503 ,112.573007,26.88638071,60.72880173,180.2568144,180.7850424,13.634904,0.123176845,1620000000000 ,1620000000000 ,1620000000000 ,1616812393480 -1616812393511 ,112.573007,26.88637948,60.73006058,180.2641364,180.7927253,13.633965,0.123165277,1620000000000 ,1620000000000 ,1620000000000 ,1616812393490 -1616812393524 ,112.5730069,26.88637825,60.73127365,180.2706114,180.8037309,13.633085,0.123157337,1620000000000 ,1620000000000 ,1620000000000 ,1616812393500 -1616812393531 ,112.5730069,26.88637702,60.73246384,180.2759936,180.8125401,13.631431,0.123144493,1620000000000 ,1620000000000 ,1620000000000 ,1616812393510 -1616812393542 ,112.5730069,26.88637579,60.73364639,180.2835068,180.8212336,13.627702,0.12311506,1620000000000 ,1620000000000 ,1620000000000 ,1616812393520 -1616812393551 ,112.5730069,26.88637455,60.73482513,180.2894354,180.8282793,13.6238785,0.123081098,1620000000000 ,1620000000000 ,1620000000000 ,1616812393530 -1616812393563 ,112.5730069,26.88637332,60.73601532,180.2939707,180.8408463,13.621384,0.123056327,1620000000000 ,1620000000000 ,1620000000000 ,1616812393540 -1616812393572 ,112.5730069,26.88637209,60.73722076,180.2991616,180.8478765,13.620772,0.123047029,1620000000000 ,1620000000000 ,1620000000000 ,1616812393550 -1616812393581 ,112.5730068,26.88637086,60.73842621,180.3053634,180.854579,13.62059,0.123046277,1620000000000 ,1620000000000 ,1620000000000 ,1616812393560 -1616812393597 ,112.5730068,26.88636963,60.73962784,180.310691,180.8646858,13.618731,0.123033406,1620000000000 ,1620000000000 ,1620000000000 ,1616812393570 -1616812393603 ,112.5730068,26.8863684,60.74085236,180.3156087,180.8725332,13.615366,0.123007882,1620000000000 ,1620000000000 ,1620000000000 ,1616812393580 -1616812393614 ,112.5730068,26.88636717,60.74206161,180.3227121,180.8820585,13.6122,0.122977816,1620000000000 ,1620000000000 ,1620000000000 ,1616812393590 -1616812393625 ,112.5730068,26.88636594,60.74321365,180.3288593,180.8902849,13.611952,0.122966806,1620000000000 ,1620000000000 ,1620000000000 ,1616812393600 -1616812393635 ,112.5730067,26.88636471,60.74428558,180.3353343,180.890254,13.610862,0.12295479,1620000000000 ,1620000000000 ,1620000000000 ,1616812393610 -1616812393644 ,112.5730067,26.88636349,60.74529648,180.3388587,180.8958713,13.609512,0.12294284,1620000000000 ,1620000000000 ,1620000000000 ,1616812393620 -1616812393654 ,112.5730067,26.88636226,60.74625397,180.3458255,180.9051928,13.60843,0.122931753,1620000000000 ,1620000000000 ,1620000000000 ,1616812393630 -1616812393663 ,112.5730067,26.88636103,60.74715805,180.3527103,180.9119721,13.60882,0.122927986,1620000000000 ,1620000000000 ,1620000000000 ,1616812393640 -1616812393674 ,112.5730067,26.8863598,60.74806213,180.3587482,180.919463,13.609105,0.122930998,1620000000000 ,1620000000000 ,1620000000000 ,1616812393650 -1616812393682 ,112.5730066,26.88635857,60.74897003,180.3656057,180.9201882,13.609927,0.122938367,1620000000000 ,1620000000000 ,1620000000000 ,1616812393660 -1616812393693 ,112.5730066,26.88635734,60.74986649,180.3729276,180.926774,13.60926,0.122934009,1620000000000 ,1620000000000 ,1620000000000 ,1616812393670 -1616812393702 ,112.5730066,26.88635611,60.75073242,180.3787196,180.935586,13.60835,0.122924792,1620000000000 ,1620000000000 ,1620000000000 ,1616812393680 -1616812393714 ,112.5730066,26.88635488,60.7516098,180.3847575,180.9378978,13.607841,0.12291952,1620000000000 ,1620000000000 ,1620000000000 ,1616812393690 -1616812393725 ,112.5730066,26.88635365,60.752491,180.3912872,180.9425944,13.6107025,0.122936092,1620000000000 ,1620000000000 ,1620000000000 ,1616812393700 -1616812393733 ,112.5730065,26.88635242,60.75334167,180.3992922,180.9496765,13.615332,0.122971021,1620000000000 ,1620000000000 ,1620000000000 ,1616812393710 -1616812393742 ,112.5730065,26.88635119,60.75413895,180.4060131,180.9587299,13.619118,0.123009301,1620000000000 ,1620000000000 ,1620000000000 ,1616812393720 -1616812393752 ,112.5730065,26.88634996,60.75493622,180.4128979,180.9670207,13.621862,0.123033411,1620000000000 ,1620000000000 ,1620000000000 ,1616812393730 -1616812393764 ,112.5730065,26.88634873,60.75576782,180.4160671,180.9740292,13.623006,0.12304715,1620000000000 ,1620000000000 ,1620000000000 ,1616812393740 -1616812393774 ,112.5730065,26.8863475,60.75662994,180.4231978,180.9826201,13.624475,0.123061577,1620000000000 ,1620000000000 ,1620000000000 ,1616812393760 -1616812393783 ,112.5730064,26.88634627,60.75749969,180.4285254,180.9881022,13.627199,0.123084699,1620000000000 ,1620000000000 ,1620000000000 ,1616812393760 -1616812393794 ,112.5730064,26.88634504,60.75835037,180.4340169,180.9974507,13.630688,0.123111732,1620000000000 ,1620000000000 ,1620000000000 ,1616812393780 -1616812393806 ,112.5730064,26.88634381,60.75918579,180.4379784,181.0053062,13.634435,0.123141632,1620000000000 ,1620000000000 ,1620000000000 ,1616812393780 -1616812393816 ,112.5730064,26.88634258,60.76000595,180.4423497,181.0137453,13.638658,0.123182741,1620000000000 ,1620000000000 ,1620000000000 ,1616812393800 -1616812393826 ,112.5730064,26.88634135,60.76084137,180.4472128,181.0281194,13.642382,0.123218693,1620000000000 ,1620000000000 ,1620000000000 ,1616812393810 -1616812393834 ,112.5730063,26.88633888,60.7626152,180.4569936,181.0466275,13.64627,0.246518108,1620000000000 ,1620000000000 ,1620000000000 ,1616812393820 -1616812393844 ,112.5730063,26.88633765,60.76357651,180.4595891,181.0619482,13.647996,0.123278147,1620000000000 ,1620000000000 ,1620000000000 ,1616812393830 -1616812393854 ,112.5730063,26.88633642,60.76453781,180.4634413,181.0660685,13.64988,0.12329508,1620000000000 ,1620000000000 ,1620000000000 ,1616812393840 -1616812393865 ,112.5730062,26.88633518,60.7654686,180.4663373,181.0771877,13.65377,0.123326948,1620000000000 ,1620000000000 ,1620000000000 ,1616812393850 -1616812393874 ,112.5730062,26.88633395,60.76641083,180.4674028,181.0842896,13.655347,0.123347217,1620000000000 ,1620000000000 ,1620000000000 ,1616812393860 -1616812393884 ,112.5730062,26.88633272,60.76743317,180.4702169,181.0893489,13.657429,0.123367703,1620000000000 ,1620000000000 ,1620000000000 ,1616812393870 -1616812393894 ,112.5730062,26.88633148,60.76852798,180.4720474,181.0880085,13.659432,0.123388925,1620000000000 ,1620000000000 ,1620000000000 ,1616812393880 -1616812393904 ,112.5730061,26.88633025,60.7696228,180.474315,181.0872879,13.661742,0.123409496,1620000000000 ,1620000000000 ,1620000000000 ,1616812393890 -1616812393916 ,112.5730061,26.88632901,60.77068329,180.4750526,181.0914913,13.662959,0.123422201,1620000000000 ,1620000000000 ,1620000000000 ,1616812393900 -1616812393924 ,112.5730061,26.88632778,60.77172852,180.474916,181.0884864,13.664972,0.123440605,1620000000000 ,1620000000000 ,1620000000000 ,1616812393910 -1616812393934 ,112.5730061,26.88632655,60.77278519,180.4773203,181.0813276,13.667467,0.123462305,1620000000000 ,1620000000000 ,1620000000000 ,1616812393920 -1616812393945 ,112.5730061,26.88632531,60.77382278,180.4772929,181.084314,13.670789,0.123490428,1620000000000 ,1620000000000 ,1620000000000 ,1616812393930 -1616812393954 ,112.573006,26.88632408,60.77482224,180.4811725,181.0893914,13.674106,0.123519473,1620000000000 ,1620000000000 ,1620000000000 ,1616812393940 -1616812393968 ,112.573006,26.88632284,60.77578354,180.480872,181.0901588,13.676364,0.123541439,1620000000000 ,1620000000000 ,1620000000000 ,1616812393950 -1616812393980 ,112.573006,26.88632161,60.77671051,180.481555,181.0882018,13.679,0.123562077,1620000000000 ,1620000000000 ,1620000000000 ,1616812393960 -1616812393984 ,112.573006,26.88632037,60.77756882,180.481473,181.0841503,13.6823435,0.123591761,1620000000000 ,1620000000000 ,1620000000000 ,1616812393970 -1616812394003 ,112.5730059,26.88631913,60.77832794,180.483768,181.0837685,13.685666,0.123617121,1620000000000 ,1620000000000 ,1620000000000 ,1616812393980 -1616812394006 ,112.5730059,26.8863179,60.77896881,180.4830303,181.0844594,13.689725,0.12364484,1620000000000 ,1620000000000 ,1620000000000 ,1616812393990 -1616812394018 ,112.5730059,26.88631666,60.7795105,180.4825112,181.0840511,13.694368,0.123684645,1620000000000 ,1620000000000 ,1620000000000 ,1616812394000 -1616812394028 ,112.5730059,26.88631542,60.77997208,180.4821014,181.0867813,13.697459,0.123710752,1620000000000 ,1620000000000 ,1620000000000 ,1616812394010 -1616812394037 ,112.5730058,26.88631419,60.78038025,180.482921,181.0906546,13.701209,0.123740844,1620000000000 ,1620000000000 ,1620000000000 ,1616812394020 -1616812394045 ,112.5730058,26.88631295,60.78076172,180.4840412,181.0853457,13.703415,0.123761306,1620000000000 ,1620000000000 ,1620000000000 ,1616812394030 -1616812394056 ,112.5730058,26.88631171,60.78116226,180.4843144,181.0861858,13.706046,0.123781268,1620000000000 ,1620000000000 ,1620000000000 ,1616812394040 -1616812394068 ,112.5730058,26.88631047,60.78156662,180.485817,181.0829671,13.709952,0.123813016,1620000000000 ,1620000000000 ,1620000000000 ,1616812394050 -1616812394076 ,112.5730057,26.88630924,60.78190994,180.4892594,181.0848956,13.715621,0.12385558,1620000000000 ,1620000000000 ,1620000000000 ,1616812394060 -1616812394087 ,112.5730057,26.886308,60.78219986,180.4920461,181.0889531,13.720503,0.123898203,1620000000000 ,1620000000000 ,1620000000000 ,1616812394070 -1616812394096 ,112.5730057,26.88630676,60.78250504,180.4913358,181.0898994,13.724837,0.123938937,1620000000000 ,1620000000000 ,1620000000000 ,1616812394080 -1616812394106 ,112.5730057,26.88630552,60.78288651,180.4894234,181.0860946,13.727005,0.123962671,1620000000000 ,1620000000000 ,1620000000000 ,1616812394090 -1616812394117 ,112.5730057,26.88630428,60.78333282,180.4906528,181.0887238,13.730703,0.123991977,1620000000000 ,1620000000000 ,1620000000000 ,1616812394100 -1616812394126 ,112.5730056,26.88630304,60.78381729,180.4918549,181.0964,13.732606,0.124014456,1620000000000 ,1620000000000 ,1620000000000 ,1616812394110 -1616812394137 ,112.5730056,26.8863018,60.78434753,180.492292,181.0966809,13.734467,0.124028136,1620000000000 ,1620000000000 ,1620000000000 ,1616812394120 -1616812394148 ,112.5730056,26.88630056,60.7849884,180.4940132,181.0948656,13.737032,0.124053916,1620000000000 ,1620000000000 ,1620000000000 ,1616812394130 -1616812394158 ,112.5730056,26.88629932,60.78573608,180.4956798,181.0916608,13.741072,0.124085762,1620000000000 ,1620000000000 ,1620000000000 ,1616812394140 -1616812394177 ,112.5730055,26.88629808,60.78657913,180.4960077,181.0898851,13.745264,0.12412555,1620000000000 ,1620000000000 ,1620000000000 ,1616812394150 -1616812394179 ,112.5730055,26.88629684,60.78749084,180.499614,181.1001818,13.748976,0.124163072,1620000000000 ,1620000000000 ,1620000000000 ,1616812394160 -1616812394190 ,112.5730055,26.88629559,60.78851318,180.500297,181.1058873,13.751525,0.124189511,1620000000000 ,1620000000000 ,1620000000000 ,1616812394170 -1616812394201 ,112.5730055,26.88629435,60.78966904,180.5014445,181.1076558,13.753247,0.124210318,1620000000000 ,1620000000000 ,1620000000000 ,1616812394180 -1616812394209 ,112.5730054,26.88629311,60.79097748,180.5016631,181.1078969,13.754325,0.124226139,1620000000000 ,1620000000000 ,1620000000000 ,1616812394190 -1616812394219 ,112.5730054,26.88629186,60.7926178,180.495953,181.0733159,13.78333,0.124602191,1620000000000 ,1620000000000 ,1620000000000 ,1616812394200 -1616812394229 ,112.5730054,26.88629061,60.79470825,180.4960896,181.0196307,13.786014,0.125248409,1620000000000 ,1620000000000 ,1620000000000 ,1616812394210 -1616812394240 ,112.5730054,26.88628936,60.79690933,180.498248,181.020692,13.7892,0.125279335,1620000000000 ,1620000000000 ,1620000000000 ,1616812394220 -1616812394248 ,112.5730053,26.88628811,60.79919434,180.4978381,181.0223583,13.793818,0.125320231,1620000000000 ,1620000000000 ,1620000000000 ,1616812394230 -1616812394259 ,112.5730053,26.88628685,60.8015213,180.4993135,181.0228111,13.796728,0.125354486,1620000000000 ,1620000000000 ,1620000000000 ,1616812394240 -1616812394271 ,112.5730053,26.8862856,60.80387115,180.4978928,181.0259111,13.798653,0.125373225,1620000000000 ,1620000000000 ,1620000000000 ,1616812394250 -1616812394281 ,112.5730053,26.88628435,60.80627441,180.497401,181.0218986,13.800161,0.125388002,1620000000000 ,1620000000000 ,1620000000000 ,1616812394260 -1616812394290 ,112.5730053,26.88628309,60.80868912,180.498248,181.019912,13.8041725,0.125421116,1620000000000 ,1620000000000 ,1620000000000 ,1616812394270 -1616812394299 ,112.5730052,26.88628184,60.81105423,180.502592,181.0188065,13.807822,0.12545497,1620000000000 ,1620000000000 ,1620000000000 ,1616812394280 -1616812394310 ,112.5730052,26.88628058,60.81334305,180.5055426,181.0229657,13.811486,0.125486218,1620000000000 ,1620000000000 ,1620000000000 ,1616812394290 -1616812394321 ,112.5730052,26.88627933,60.81560516,180.5055699,181.0226148,13.8143835,0.125515103,1620000000000 ,1620000000000 ,1620000000000 ,1616812394300 -1616812394329 ,112.5730052,26.88627807,60.81785583,180.5052694,181.0176807,13.819054,0.12555334,1620000000000 ,1620000000000 ,1620000000000 ,1616812394310 -1616812394340 ,112.5730051,26.88627682,60.82007217,180.5064169,181.0200332,13.822407,0.125586071,1620000000000 ,1620000000000 ,1620000000000 ,1616812394320 -1616812394350 ,112.5730051,26.88627556,60.82222748,180.5067174,181.0313627,13.825574,0.125611814,1620000000000 ,1620000000000 ,1620000000000 ,1616812394330 -1616812394360 ,112.5730051,26.8862743,60.82435226,180.5058158,181.0453385,13.829244,0.125645915,1620000000000 ,1620000000000 ,1620000000000 ,1616812394340 -1616812394371 ,112.5730051,26.88627305,60.82647324,180.5080015,181.0434004,13.833479,0.125683472,1620000000000 ,1620000000000 ,1620000000000 ,1616812394350 -1616812394381 ,112.5730051,26.88627179,60.82858658,180.5085206,181.0397018,13.836876,0.125716148,1620000000000 ,1620000000000 ,1620000000000 ,1616812394360 -1616812394390 ,112.573005,26.88627053,60.83066177,180.5093948,181.0391541,13.840348,0.125744003,1620000000000 ,1620000000000 ,1620000000000 ,1616812394370 -1616812394400 ,112.573005,26.88626928,60.83269882,180.5082474,181.0444743,13.844516,0.125781827,1620000000000 ,1620000000000 ,1620000000000 ,1616812394380 -1616812394411 ,112.573005,26.88626802,60.83472443,180.5093948,181.0442808,13.847975,0.125812698,1620000000000 ,1620000000000 ,1620000000000 ,1616812394390 -1616812394421 ,112.573005,26.88626676,60.83676147,180.5081107,181.0402523,13.851068,0.125842969,1620000000000 ,1620000000000 ,1620000000000 ,1616812394400 -1616812394432 ,112.5730049,26.8862655,60.83878708,180.5099959,181.0260539,13.853754,0.125868601,1620000000000 ,1620000000000 ,1620000000000 ,1616812394410 -1616812394441 ,112.5730049,26.88626424,60.84075928,180.511881,181.0127982,13.857455,0.125897248,1620000000000 ,1620000000000 ,1620000000000 ,1616812394420 -1616812394450 ,112.5730049,26.88626298,60.84265518,180.5124547,181.0104693,13.862455,0.125934269,1620000000000 ,1620000000000 ,1620000000000 ,1616812394430 -1616812394460 ,112.5730049,26.88626172,60.84447479,180.5120723,181.0124792,13.867327,0.125980987,1620000000000 ,1620000000000 ,1620000000000 ,1616812394440 -1616812394477 ,112.5730049,26.88626047,60.84604263,180.5130285,181.0421757,13.87079,0.125647549,1620000000000 ,1620000000000 ,1620000000000 ,1616812394450 -1616812394480 ,112.5730048,26.88625921,60.84741211,180.5138754,181.0654832,13.873711,0.125308752,1620000000000 ,1620000000000 ,1620000000000 ,1616812394460 -1616812394491 ,112.5730048,26.88625796,60.84879303,180.5153781,181.0623154,13.876586,0.125335152,1620000000000 ,1620000000000 ,1620000000000 ,1616812394470 -1616812394502 ,112.5730048,26.88625671,60.85016632,180.5151595,181.0606752,13.880884,0.125368575,1620000000000 ,1620000000000 ,1620000000000 ,1616812394480 -1616812394513 ,112.5730048,26.88625545,60.85150909,180.5171539,181.0602876,13.886076,0.125412943,1620000000000 ,1620000000000 ,1620000000000 ,1616812394490 -1616812394522 ,112.5730047,26.8862542,60.85281754,180.519203,181.0639246,13.890595,0.125454499,1620000000000 ,1620000000000 ,1620000000000 ,1616812394500 -1616812394530 ,112.5730047,26.88625294,60.85413742,180.5197221,181.0691712,13.893973,0.125489636,1620000000000 ,1620000000000 ,1620000000000 ,1616812394510 -1616812394544 ,112.5730047,26.88625169,60.85552597,180.5207329,181.0710114,13.896365,0.125512242,1620000000000 ,1620000000000 ,1620000000000 ,1616812394520 -1616812394552 ,112.5730047,26.88625043,60.85700226,180.5207603,181.0666889,13.898932,0.125539273,1620000000000 ,1620000000000 ,1620000000000 ,1616812394530 -1616812394563 ,112.5730046,26.88624918,60.85850143,180.5214706,181.0700604,13.901313,0.125561381,1620000000000 ,1620000000000 ,1620000000000 ,1616812394540 -1616812394572 ,112.5730046,26.88624792,60.85998154,180.5245032,181.0760837,13.905011,0.12559393,1620000000000 ,1620000000000 ,1620000000000 ,1616812394550 -1616812394585 ,112.5730046,26.88624667,60.86142349,180.5282461,181.0752702,13.908871,0.125627138,1620000000000 ,1620000000000 ,1620000000000 ,1616812394560 -1616812394593 ,112.5730046,26.88624541,60.862854,180.5294483,181.0677165,13.913369,0.125665854,1620000000000 ,1620000000000 ,1620000000000 ,1616812394570 -1616812394602 ,112.5730045,26.88624415,60.86425018,180.5304045,181.0644321,13.917073,0.125700905,1620000000000 ,1620000000000 ,1620000000000 ,1616812394580 -1616812394613 ,112.5730045,26.8862429,60.86562347,180.5306231,181.0709669,13.921743,0.125743354,1620000000000 ,1620000000000 ,1620000000000 ,1616812394590 -1616812394624 ,112.5730045,26.88624164,60.86699677,180.5310055,181.0739373,13.92604,0.125781677,1620000000000 ,1620000000000 ,1620000000000 ,1616812394600 -1616812394632 ,112.5730045,26.88624038,60.86837769,180.5314427,181.0748057,13.928801,0.125809692,1620000000000 ,1620000000000 ,1620000000000 ,1616812394610 -1616812394642 ,112.5730045,26.88623912,60.86975479,180.533601,181.0704785,13.931166,0.125835319,1620000000000 ,1620000000000 ,1620000000000 ,1616812394620 -1616812394652 ,112.5730044,26.88623787,60.87113571,180.5360599,181.0668223,13.93444,0.125861398,1620000000000 ,1620000000000 ,1620000000000 ,1616812394630 -1616812394662 ,112.5730044,26.88623661,60.87249756,180.5376718,181.0667241,13.940828,0.125911145,1620000000000 ,1620000000000 ,1620000000000 ,1616812394640 -1616812394676 ,112.5730044,26.88623535,60.87381744,180.5401034,181.0737298,13.945534,0.125960238,1620000000000 ,1620000000000 ,1620000000000 ,1616812394650 -1616812394683 ,112.5730044,26.88623409,60.87510681,180.540158,181.0757317,13.949308,0.125997447,1620000000000 ,1620000000000 ,1620000000000 ,1616812394660 -1616812394693 ,112.5730043,26.88623283,60.87641525,180.5399121,181.0763774,13.9513445,0.126018625,1620000000000 ,1620000000000 ,1620000000000 ,1616812394670 -1616812394703 ,112.5730043,26.88623157,60.8777504,180.5408957,181.0771456,13.953985,0.126041019,1620000000000 ,1620000000000 ,1620000000000 ,1616812394680 -1616812394716 ,112.5730043,26.88623031,60.87908554,180.5412235,181.0828499,13.957393,0.126070444,1620000000000 ,1620000000000 ,1620000000000 ,1616812394700 -1616812394723 ,112.5730043,26.88622905,60.88038254,180.5431633,181.0837437,13.960619,0.126101506,1620000000000 ,1620000000000 ,1620000000000 ,1616812394710 -1616812394733 ,112.5730042,26.88622778,60.8816185,180.543819,181.0910041,13.965291,0.126137452,1620000000000 ,1620000000000 ,1620000000000 ,1616812394720 -1616812394743 ,112.5730042,26.88622526,60.88402557,180.5437643,181.0979868,13.974728,0.252400902,1620000000000 ,1620000000000 ,1620000000000 ,1616812394730 -1616812394762 ,112.5730042,26.886224,60.88519669,180.5451304,181.0927266,13.978813,0.126261595,1620000000000 ,1620000000000 ,1620000000000 ,1616812394740 -1616812394765 ,112.5730041,26.88622274,60.88632202,180.5448572,181.0918741,13.983951,0.126303482,1620000000000 ,1620000000000 ,1620000000000 ,1616812394750 -1616812394777 ,112.5730041,26.88622147,60.88743591,180.5460593,181.0930525,13.988913,0.126350151,1620000000000 ,1620000000000 ,1620000000000 ,1616812394760 -1616812394784 ,112.5730041,26.88622021,60.88856125,180.5451577,181.0937426,13.992434,0.12638464,1620000000000 ,1620000000000 ,1620000000000 ,1616812394770 -1616812394795 ,112.5730041,26.88621895,60.88973236,180.5452123,181.0846715,13.994115,0.12640557,1620000000000 ,1620000000000 ,1620000000000 ,1616812394780 -1616812394804 ,112.573004,26.88621768,60.89092255,180.545267,181.0801552,13.995622,0.126420133,1620000000000 ,1620000000000 ,1620000000000 ,1616812394790 -1616812394815 ,112.573004,26.88621642,60.89214706,180.547398,181.0839781,13.998477,0.126442094,1620000000000 ,1620000000000 ,1620000000000 ,1616812394800 -1616812394825 ,112.573004,26.88621515,60.89337921,180.5475619,181.0822059,14.004395,0.126489613,1620000000000 ,1620000000000 ,1620000000000 ,1616812394810 -1616812394834 ,112.573004,26.88621389,60.89456558,180.5502394,181.072653,14.009465,0.126534693,1620000000000 ,1620000000000 ,1620000000000 ,1616812394820 -1616812394848 ,112.573004,26.88621262,60.8956337,180.5508951,181.0742854,14.016125,0.126589695,1620000000000 ,1620000000000 ,1620000000000 ,1616812394830 -1616812394858 ,112.5730039,26.88621136,60.89657211,180.5527529,181.0896816,14.023315,0.126650245,1620000000000 ,1620000000000 ,1620000000000 ,1616812394840 -1616812394870 ,112.5730039,26.88621009,60.89744949,180.5519059,181.0957444,14.028506,0.126698707,1620000000000 ,1620000000000 ,1620000000000 ,1616812394850 -1616812394876 ,112.5730039,26.88620882,60.89839172,180.5542555,181.0943448,14.029818,0.126723972,1620000000000 ,1620000000000 ,1620000000000 ,1616812394860 -1616812394885 ,112.5730039,26.88620755,60.89940643,180.5532173,181.092825,14.03141,0.12673738,1620000000000 ,1620000000000 ,1620000000000 ,1616812394870 -1616812394896 ,112.5730038,26.88620629,60.90045166,180.5528895,181.1034631,14.033597,0.126757624,1620000000000 ,1620000000000 ,1620000000000 ,1616812394880 -1616812394908 ,112.5730038,26.88620502,60.90148544,180.5549658,181.1119404,14.036791,0.126779889,1620000000000 ,1620000000000 ,1620000000000 ,1616812394890 -1616812394915 ,112.5730038,26.88620375,60.90250397,180.5571242,181.1185555,14.0439205,0.126837528,1620000000000 ,1620000000000 ,1620000000000 ,1616812394900 -1616812394925 ,112.5730038,26.88620248,60.90350342,180.5585449,181.1152814,14.0495825,0.126888883,1620000000000 ,1620000000000 ,1620000000000 ,1616812394910 -1616812394935 ,112.5730037,26.88620121,60.9044838,180.5580531,181.1120807,14.056019,0.126945847,1620000000000 ,1620000000000 ,1620000000000 ,1616812394920 -1616812394945 ,112.5730037,26.88619994,60.90547562,180.5578345,181.1109963,14.058762,0.126980248,1620000000000 ,1620000000000 ,1620000000000 ,1616812394930 -1616812394957 ,112.5730037,26.88619867,60.90652847,180.5579711,181.113532,14.061054,0.12700279,1620000000000 ,1620000000000 ,1620000000000 ,1616812394940 -1616812394967 ,112.5730037,26.8861974,60.90764618,180.5588727,181.1086451,14.063878,0.127027636,1620000000000 ,1620000000000 ,1620000000000 ,1616812394950 -1616812394976 ,112.5730036,26.88619613,60.90876007,180.5579438,181.1046503,14.068504,0.127067009,1620000000000 ,1620000000000 ,1620000000000 ,1616812394960 -1616812394987 ,112.5730036,26.88619486,60.90982056,180.5604027,181.1079578,14.074961,0.127116494,1620000000000 ,1620000000000 ,1620000000000 ,1616812394970 -1616812394996 ,112.5730036,26.88619359,60.91085434,180.5587361,181.1049604,14.08076,0.127171879,1620000000000 ,1620000000000 ,1620000000000 ,1616812394980 -1616812395006 ,112.5730036,26.88619232,60.91192245,180.5569329,181.0984602,14.085844,0.127217005,1620000000000 ,1620000000000 ,1620000000000 ,1616812394990 -1616812395016 ,112.5730035,26.88619105,60.91304016,180.5575886,181.0960056,14.090234,0.127260944,1620000000000 ,1620000000000 ,1620000000000 ,1616812395000 -1616812395026 ,112.5730035,26.88618977,60.91416931,180.5608945,181.0948848,14.092313,0.127284776,1620000000000 ,1620000000000 ,1620000000000 ,1616812395010 -1616812395035 ,112.5730035,26.8861885,60.91532516,180.5630528,181.0926538,14.093265,0.127296034,1620000000000 ,1620000000000 ,1620000000000 ,1616812395020 -1616812395046 ,112.5730035,26.88618723,60.91652679,180.5648013,181.0832188,14.097187,0.127321889,1620000000000 ,1620000000000 ,1620000000000 ,1616812395030 -1616812395057 ,112.5730034,26.88618596,60.91768646,180.5661127,181.0829819,14.104123,0.127374405,1620000000000 ,1620000000000 ,1620000000000 ,1616812395040 -1616812395069 ,112.5730034,26.88618468,60.91871262,180.5670143,181.0931331,14.112318,0.127444324,1620000000000 ,1620000000000 ,1620000000000 ,1616812395050 -1616812395076 ,112.5730034,26.88618341,60.91967392,180.5689541,181.1103475,14.11826,0.127502298,1620000000000 ,1620000000000 ,1620000000000 ,1616812395060 -1616812395086 ,112.5730034,26.88618213,60.92074585,180.5687902,181.1000902,14.121086,0.127536293,1620000000000 ,1620000000000 ,1620000000000 ,1616812395070 -1616812395097 ,112.5730033,26.88618086,60.92197037,180.5699649,181.0876983,14.122705,0.127554304,1620000000000 ,1620000000000 ,1620000000000 ,1616812395080 -1616812395107 ,112.5730033,26.88617958,60.92325211,180.5707572,181.086395,14.12486,0.127574645,1620000000000 ,1620000000000 ,1620000000000 ,1616812395090 -1616812395116 ,112.5730033,26.8861783,60.92446518,180.5731068,181.0975557,14.129521,0.127605747,1620000000000 ,1620000000000 ,1620000000000 ,1616812395100 -1616812395127 ,112.5730033,26.88617703,60.92559433,180.5731888,181.1109853,14.136125,0.127660345,1620000000000 ,1620000000000 ,1620000000000 ,1616812395110 -1616812395137 ,112.5730032,26.88617575,60.92670059,180.5710578,181.1048865,14.142172,0.127715644,1620000000000 ,1620000000000 ,1620000000000 ,1616812395120 -1616812395148 ,112.5730032,26.88617447,60.92786026,180.5717135,181.1005307,14.146808,0.127759683,1620000000000 ,1620000000000 ,1620000000000 ,1616812395130 -1616812395157 ,112.5730032,26.8861732,60.92909622,180.5717681,181.0952066,14.150706,0.127797935,1620000000000 ,1620000000000 ,1620000000000 ,1616812395140 -1616812395167 ,112.5730032,26.88617192,60.93041611,180.5725604,181.0955259,14.154535,0.127834275,1620000000000 ,1620000000000 ,1620000000000 ,1616812395150 -1616812395179 ,112.5730031,26.88617064,60.9318161,180.5722599,181.0994504,14.158893,0.127873647,1620000000000 ,1620000000000 ,1620000000000 ,1616812395160 -1616812395191 ,112.5730031,26.88616936,60.93328476,180.5729429,181.0937477,14.162312,0.127907403,1620000000000 ,1620000000000 ,1620000000000 ,1616812395170 -1616812395200 ,112.5730031,26.88616808,60.93476868,180.5760575,181.0876003,14.16694,0.127948676,1620000000000 ,1620000000000 ,1620000000000 ,1616812395180 -1616812395209 ,112.5730031,26.8861668,60.93624496,180.5777787,181.0866583,14.170284,0.127981203,1620000000000 ,1620000000000 ,1620000000000 ,1616812395190 -1616812395217 ,112.5730031,26.88616552,60.93836594,180.5881059,181.0698674,14.18481,0.128078057,1620000000000 ,1620000000000 ,1620000000000 ,1616812395200 -1616812395228 ,112.573003,26.88616424,60.9416008,180.5887889,181.0243557,14.188022,0.128292556,1620000000000 ,1620000000000 ,1620000000000 ,1616812395210 -1616812395238 ,112.573003,26.88616296,60.94492722,180.5894993,181.0235892,14.19439,0.128345909,1620000000000 ,1620000000000 ,1620000000000 ,1616812395220 -1616812395249 ,112.573003,26.88616167,60.94827271,180.5923406,181.0247855,14.199424,0.128399345,1620000000000 ,1620000000000 ,1620000000000 ,1616812395230 -1616812395258 ,112.573003,26.88616039,60.95158005,180.5927231,181.0207366,14.203637,0.128436516,1620000000000 ,1620000000000 ,1620000000000 ,1616812395240 -1616812395268 ,112.5730029,26.8861591,60.9548912,180.5914664,181.0201917,14.207751,0.128473815,1620000000000 ,1620000000000 ,1620000000000 ,1616812395250 -1616812395278 ,112.5730029,26.88615782,60.95819473,180.5917669,181.0215752,14.212774,0.12851776,1620000000000 ,1620000000000 ,1620000000000 ,1616812395260 -1616812395288 ,112.5730029,26.88615653,60.96147156,180.5904555,181.0245991,14.215751,0.128550412,1620000000000 ,1620000000000 ,1620000000000 ,1616812395270 -1616812395301 ,112.5730029,26.88615525,60.96475601,180.5925319,181.026066,14.219198,0.128581398,1620000000000 ,1620000000000 ,1620000000000 ,1616812395280 -1616812395312 ,112.5730028,26.88615396,60.96813202,180.5931876,181.0245833,14.223721,0.128619788,1620000000000 ,1620000000000 ,1620000000000 ,1616812395290 -1616812395318 ,112.5730028,26.88615267,60.97151947,180.5940619,181.0096804,14.230676,0.128678484,1620000000000 ,1620000000000 ,1620000000000 ,1616812395300 -1616812395328 ,112.5730028,26.88615139,60.97477722,180.5956465,181.0072546,14.238821,0.128747617,1620000000000 ,1620000000000 ,1620000000000 ,1616812395310 -1616812395338 ,112.5730028,26.8861501,60.97787094,180.5965207,181.0210269,14.243818,0.128797308,1620000000000 ,1620000000000 ,1620000000000 ,1616812395320 -1616812395349 ,112.5730028,26.88614881,60.98091125,180.5954552,181.0264155,14.246278,0.128822574,1620000000000 ,1620000000000 ,1620000000000 ,1616812395330 -1616812395361 ,112.5730027,26.88614752,60.98402786,180.595182,181.0187388,14.248568,0.128844052,1620000000000 ,1620000000000 ,1620000000000 ,1616812395340 -1616812395369 ,112.5730027,26.88614623,60.98721695,180.5978594,181.0117915,14.252614,0.128878733,1620000000000 ,1620000000000 ,1620000000000 ,1616812395350 -1616812395381 ,112.5730027,26.88614495,60.99037933,180.5992528,181.0112849,14.259199,0.128930403,1620000000000 ,1620000000000 ,1620000000000 ,1616812395360 -1616812395390 ,112.5730027,26.88614366,60.99347305,180.6014658,181.0185493,14.266258,0.128991544,1620000000000 ,1620000000000 ,1620000000000 ,1616812395370 -1616812395408 ,112.5730026,26.88614237,60.99652481,180.600892,181.017891,14.272421,0.12904927,1620000000000 ,1620000000000 ,1620000000000 ,1616812395380 -1616812395415 ,112.5730026,26.88614107,60.99959183,180.6030504,181.0145177,14.275653,0.129087448,1620000000000 ,1620000000000 ,1620000000000 ,1616812395390 -1616812395419 ,112.5730026,26.88613978,61.00266266,180.6034329,181.0043512,14.279019,0.129112711,1620000000000 ,1620000000000 ,1620000000000 ,1616812395400 -1616812395429 ,112.5730026,26.88613849,61.00575256,180.6051814,181.008174,14.282976,0.129145666,1620000000000 ,1620000000000 ,1620000000000 ,1616812395410 -1616812395439 ,112.5730025,26.8861372,61.00882339,180.6075037,181.0097629,14.289269,0.129198583,1620000000000 ,1620000000000 ,1620000000000 ,1616812395420 -1616812395450 ,112.5730025,26.88613591,61.01183319,180.6081047,181.0108888,14.295016,0.129250912,1620000000000 ,1620000000000 ,1620000000000 ,1616812395430 -1616812395462 ,112.5730025,26.88613462,61.01478577,180.6101265,181.0094627,14.301095,0.129299994,1620000000000 ,1620000000000 ,1620000000000 ,1616812395440 -1616812395471 ,112.5730025,26.88613332,61.01710892,180.6120116,181.0319895,14.305241,0.129271487,1620000000000 ,1620000000000 ,1620000000000 ,1616812395450 -1616812395481 ,112.5730025,26.88613203,61.0188446,180.6114652,181.0530919,14.309381,0.129236217,1620000000000 ,1620000000000 ,1620000000000 ,1616812395460 -1616812395490 ,112.5730024,26.88613074,61.02062225,180.6122848,181.0538785,14.313817,0.129278228,1620000000000 ,1620000000000 ,1620000000000 ,1616812395470 -1616812395502 ,112.5730024,26.88612945,61.02240753,180.6125307,181.0553545,14.3176985,0.129311861,1620000000000 ,1620000000000 ,1620000000000 ,1616812395480 -1616812395512 ,112.5730024,26.88612815,61.02416229,180.6146617,181.0623676,14.322362,0.129352096,1620000000000 ,1620000000000 ,1620000000000 ,1616812395490 -1616812395520 ,112.5730024,26.88612686,61.02589417,180.6158092,181.0628764,14.326993,0.12939192,1620000000000 ,1620000000000 ,1620000000000 ,1616812395500 -1616812395531 ,112.5730023,26.88612556,61.02766037,180.6149349,181.0601869,14.331205,0.129430733,1620000000000 ,1620000000000 ,1620000000000 ,1616812395510 -1616812395541 ,112.5730023,26.88612427,61.02951431,180.614771,181.0607948,14.333685,0.129458504,1620000000000 ,1620000000000 ,1620000000000 ,1616812395520 -1616812395551 ,112.5730023,26.88612298,61.03146744,180.6143339,181.0694422,14.335974,0.129483727,1620000000000 ,1620000000000 ,1620000000000 ,1616812395530 -1616812395562 ,112.5730023,26.88612168,61.03348541,180.6144158,181.0706966,14.338291,0.129504371,1620000000000 ,1620000000000 ,1620000000000 ,1616812395540 -1616812395572 ,112.5730022,26.88612039,61.03553009,180.6132683,181.0739613,14.343475,0.12954656,1620000000000 ,1620000000000 ,1620000000000 ,1616812395550 -1616812395581 ,112.5730022,26.88611909,61.03758621,180.611875,181.0700739,14.348852,0.129593123,1620000000000 ,1620000000000 ,1620000000000 ,1616812395560 -1616812395592 ,112.5730022,26.88611779,61.03966904,180.6103723,181.0712294,14.353381,0.129637376,1620000000000 ,1620000000000 ,1620000000000 ,1616812395570 -1616812395602 ,112.5730022,26.8861165,61.0418129,180.6077222,181.0671153,14.356284,0.129671265,1620000000000 ,1620000000000 ,1620000000000 ,1616812395580 -1616812395613 ,112.5730021,26.8861152,61.04403687,180.6066294,181.0650429,14.358148,0.129689988,1620000000000 ,1620000000000 ,1620000000000 ,1616812395590 -1616812395623 ,112.5730021,26.8861139,61.04634094,180.6060283,181.0612131,14.360099,0.129709867,1620000000000 ,1620000000000 ,1620000000000 ,1616812395600 -1616812395632 ,112.5730021,26.88611261,61.04866028,180.6064928,181.0620777,14.363819,0.129740832,1620000000000 ,1620000000000 ,1620000000000 ,1616812395610 -1616812395642 ,112.5730021,26.88611131,61.05094147,180.6067387,181.0561273,14.368068,0.129775914,1620000000000 ,1620000000000 ,1620000000000 ,1616812395620 -1616812395652 ,112.573002,26.88611001,61.05318069,180.6048262,181.0513195,14.371771,0.129813525,1620000000000 ,1620000000000 ,1620000000000 ,1616812395630 -1616812395662 ,112.573002,26.88610871,61.05543137,180.6030231,181.0500502,14.37395,0.129835815,1620000000000 ,1620000000000 ,1620000000000 ,1616812395640 -1616812395673 ,112.573002,26.88610741,61.057724,180.6035422,181.0451902,14.377015,0.129863354,1620000000000 ,1620000000000 ,1620000000000 ,1616812395650 -1616812395682 ,112.573002,26.88610612,61.06005478,180.6020395,181.0378601,14.378972,0.129885634,1620000000000 ,1620000000000 ,1620000000000 ,1616812395660 -1616812395693 ,112.573002,26.88610482,61.06241608,180.5999631,181.0380455,14.380305,0.129901036,1620000000000 ,1620000000000 ,1620000000000 ,1616812395680 -1616812395706 ,112.5730019,26.88610352,61.06480408,180.5978868,181.0362502,14.381914,0.129915398,1620000000000 ,1620000000000 ,1620000000000 ,1616812395680 -1616812395714 ,112.5730019,26.88610222,61.06721115,180.5974223,181.0343243,14.384132,0.129935897,1620000000000 ,1620000000000 ,1620000000000 ,1616812395700 -1616812395723 ,112.5730019,26.88610092,61.06962585,180.5985971,181.0272178,14.386882,0.129962133,1620000000000 ,1620000000000 ,1620000000000 ,1616812395710 -1616812395733 ,112.5730019,26.88609962,61.07206726,180.5991982,181.0308821,14.3893,0.129988207,1620000000000 ,1620000000000 ,1620000000000 ,1616812395720 -1616812395745 ,112.5730018,26.88609702,61.07701492,180.6012745,181.0254839,14.39152,0.260015512,1620000000000 ,1620000000000 ,1620000000000 ,1616812395730 -1616812395754 ,112.5730018,26.88609702,61.07701492,180.6012745,-400,14.39152,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812395740 -1616812395763 ,112.5730018,26.88609442,61.08180237,180.6020668,181.0215349,14.395657,0.260066127,1620000000000 ,1620000000000 ,1620000000000 ,1616812395750 -1616812395774 ,112.5730017,26.88609312,61.08405304,180.6022308,181.0320342,14.400496,0.130085808,1620000000000 ,1620000000000 ,1620000000000 ,1616812395760 -1616812395784 ,112.5730017,26.88609312,61.08405304,180.6022308,-400,14.400496,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812395770 -1616812395797 ,112.5730017,26.88609052,61.08826065,180.5998265,181.0320364,14.407033,0.260265819,1620000000000 ,1620000000000 ,1620000000000 ,1616812395780 -1616812395805 ,112.5730017,26.88608922,61.09024429,180.5981053,181.0275554,14.409457,0.130167226,1620000000000 ,1620000000000 ,1620000000000 ,1616812395790 -1616812395814 ,112.5730017,26.88608922,61.09024429,180.5981053,-400,14.409457,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812395800 -1616812395826 ,112.5730016,26.88608661,61.09410095,180.5959743,181.0283502,14.4129925,0.260385221,1620000000000 ,1620000000000 ,1620000000000 ,1616812395810 -1616812395835 ,112.5730016,26.88608531,61.09601593,180.5953459,181.0266941,14.4133625,0.130209079,1620000000000 ,1620000000000 ,1620000000000 ,1616812395820 -1616812395854 ,112.5730016,26.88608531,61.09601593,180.5953459,-400,14.4133625,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812395830 -1616812395859 ,112.5730016,26.88608271,61.09983826,180.5935154,181.0199461,14.4164715,0.260449624,1620000000000 ,1620000000000 ,1620000000000 ,1616812395840 -1616812395865 ,112.5730015,26.8860814,61.1017189,180.5940072,181.0156306,14.420533,0.13026398,1620000000000 ,1620000000000 ,1620000000000 ,1616812395850 -1616812395876 ,112.5730015,26.8860801,61.10354233,180.5937067,181.0130853,14.424478,0.130297212,1620000000000 ,1620000000000 ,1620000000000 ,1616812395860 -1616812395885 ,112.5730015,26.8860788,61.10530853,180.5926685,181.0155694,14.427231,0.13032499,1620000000000 ,1620000000000 ,1620000000000 ,1616812395870 -1616812395895 ,112.5730015,26.88607749,61.10707092,180.5922314,181.0126931,14.428187,0.130341315,1620000000000 ,1620000000000 ,1620000000000 ,1616812395880 -1616812395905 ,112.5730014,26.88607619,61.10884476,180.5908926,181.0126029,14.429734,0.130352603,1620000000000 ,1620000000000 ,1620000000000 ,1616812395890 -1616812395915 ,112.5730014,26.88607489,61.11059189,180.5895812,181.0105301,14.431031,0.130362992,1620000000000 ,1620000000000 ,1620000000000 ,1616812395900 -1616812395925 ,112.5730014,26.88607358,61.11224747,180.5891168,181.0148572,14.434128,0.130383698,1620000000000 ,1620000000000 ,1620000000000 ,1616812395910 -1616812395936 ,112.5730014,26.88607228,61.11381912,180.5882698,181.0179528,14.436237,0.130405441,1620000000000 ,1620000000000 ,1620000000000 ,1616812395920 -1616812395946 ,112.5730013,26.88607098,61.11535645,180.584964,181.0119963,14.439194,0.130425345,1620000000000 ,1620000000000 ,1620000000000 ,1616812395930 -1616812395955 ,112.5730013,26.88606967,61.11689377,180.58215,181.0035933,14.442834,0.130458699,1620000000000 ,1620000000000 ,1620000000000 ,1616812395940 -1616812395966 ,112.5730013,26.88606837,61.11836243,180.5814397,180.9992203,14.446716,0.130488904,1620000000000 ,1620000000000 ,1620000000000 ,1616812395950 -1616812395976 ,112.5730013,26.88606706,61.11975098,180.5796365,181.008496,14.449411,0.130513359,1620000000000 ,1620000000000 ,1620000000000 ,1616812395960 -1616812395986 ,112.5730013,26.88606576,61.12110519,180.5786256,181.0076573,14.451071,0.130530252,1620000000000 ,1620000000000 ,1620000000000 ,1616812395970 -1616812395996 ,112.5730012,26.88606445,61.12252808,180.5752378,180.9917658,14.452807,0.130546456,1620000000000 ,1620000000000 ,1620000000000 ,1616812395980 -1616812396006 ,112.5730012,26.88606315,61.12400818,180.57338,180.9857434,14.453274,0.130552183,1620000000000 ,1620000000000 ,1620000000000 ,1616812395990 -1616812396016 ,112.5730012,26.88606184,61.12550354,180.5713856,180.9905578,14.453677,0.130557589,1620000000000 ,1620000000000 ,1620000000000 ,1616812396000 -1616812396027 ,112.5730012,26.88606054,61.12700272,180.5692546,181.0006837,14.456303,0.130573694,1620000000000 ,1620000000000 ,1620000000000 ,1616812396010 -1616812396038 ,112.5730011,26.88605923,61.12852859,180.5675061,181.0011071,14.462358,0.13061917,1620000000000 ,1620000000000 ,1620000000000 ,1616812396020 -1616812396046 ,112.5730011,26.88605792,61.13008118,180.5634899,181.0021903,14.466991,0.130666426,1620000000000 ,1620000000000 ,1620000000000 ,1616812396030 -1616812396056 ,112.5730011,26.88605662,61.13167572,180.5601841,180.9994227,14.466197,0.130673572,1620000000000 ,1620000000000 ,1620000000000 ,1616812396040 -1616812396066 ,112.5730011,26.88605531,61.13330078,180.5576706,180.9997326,14.46437,0.130656856,1620000000000 ,1620000000000 ,1620000000000 ,1616812396050 -1616812396077 ,112.5730011,26.886054,61.13494873,180.5540096,181.0014034,14.46551,0.130661188,1620000000000 ,1620000000000 ,1620000000000 ,1616812396060 -1616812396086 ,112.573001,26.8860527,61.1366272,180.5498842,181.0060061,14.467749,0.130677459,1620000000000 ,1620000000000 ,1620000000000 ,1616812396070 -1616812396096 ,112.573001,26.88605139,61.13836288,180.5471521,181.0027575,14.471458,0.13071189,1620000000000 ,1620000000000 ,1620000000000 ,1616812396080 -1616812396108 ,112.573001,26.88605008,61.14015579,180.5417153,180.9978992,14.474047,0.130738256,1620000000000 ,1620000000000 ,1620000000000 ,1616812396090 -1616812396117 ,112.573001,26.88604878,61.14202881,180.537945,180.9884191,14.474401,0.130750922,1620000000000 ,1620000000000 ,1620000000000 ,1616812396100 -1616812396129 ,112.5730009,26.88604747,61.14398575,180.5339289,180.9821096,14.47401,0.130750555,1620000000000 ,1620000000000 ,1620000000000 ,1616812396110 -1616812396137 ,112.5730009,26.88604616,61.14601135,180.5298034,180.9794816,14.475384,0.130760981,1620000000000 ,1620000000000 ,1620000000000 ,1616812396120 -1616812396148 ,112.5730009,26.88604485,61.14807129,180.5251043,180.9744421,14.477795,0.130780377,1620000000000 ,1620000000000 ,1620000000000 ,1616812396130 -1616812396160 ,112.5730009,26.88604355,61.150177,180.5219624,180.9670806,14.478235,0.130793202,1620000000000 ,1620000000000 ,1620000000000 ,1616812396140 -1616812396168 ,112.5730008,26.88604224,61.15233231,180.5160884,180.9617679,14.4783535,0.130798362,1620000000000 ,1620000000000 ,1620000000000 ,1616812396150 -1616812396178 ,112.5730008,26.88604093,61.15455246,180.5109794,180.9486055,14.479594,0.130807072,1620000000000 ,1620000000000 ,1620000000000 ,1616812396160 -1616812396191 ,112.5730008,26.88603962,61.15678406,180.5052967,180.9439031,14.481636,0.130827293,1620000000000 ,1620000000000 ,1620000000000 ,1616812396170 -1616812396198 ,112.5730008,26.88603831,61.15901184,180.5017723,180.9428874,14.483121,0.130842991,1620000000000 ,1620000000000 ,1620000000000 ,1616812396180 -1616812396210 ,112.5730008,26.88603701,61.16122437,180.4966087,180.9390596,14.483196,0.130848574,1620000000000 ,1620000000000 ,1620000000000 ,1616812396190 -1616812396218 ,112.5730007,26.8860357,61.16282272,180.4946143,181.1873758,14.461227,0.130429175,1620000000000 ,1620000000000 ,1620000000000 ,1616812396200 -1616812396228 ,112.5730007,26.8860344,61.16340256,180.4899151,181.6197852,14.463153,0.129819375,1620000000000 ,1620000000000 ,1620000000000 ,1616812396210 -1616812396238 ,112.5730007,26.88603311,61.16386795,180.4859536,181.6207982,14.465586,0.129839796,1620000000000 ,1620000000000 ,1620000000000 ,1616812396220 -1616812396248 ,112.5730006,26.88603181,61.16421127,180.4812818,181.6263868,14.467298,0.129855856,1620000000000 ,1620000000000 ,1620000000000 ,1616812396230 -1616812396258 ,112.5730006,26.88603051,61.16453171,180.477129,181.6228252,14.468126,0.129862882,1620000000000 ,1620000000000 ,1620000000000 ,1616812396240 -1616812396285 ,112.5730006,26.88602921,61.16483307,180.472703,181.6040647,14.469189,0.129867949,1620000000000 ,1620000000000 ,1620000000000 ,1616812396250 -1616812396291 ,112.5730005,26.88602791,61.16505432,180.4675941,181.5922817,14.471463,0.129884492,1620000000000 ,1620000000000 ,1620000000000 ,1616812396260 -1616812396294 ,112.5730005,26.88602661,61.16516495,180.462567,181.5919056,14.475224,0.129909287,1620000000000 ,1620000000000 ,1620000000000 ,1616812396270 -1616812396300 ,112.5730004,26.88602532,61.16517639,180.4563926,181.5911651,14.480267,0.129946597,1620000000000 ,1620000000000 ,1620000000000 ,1616812396280 -1616812396311 ,112.5730004,26.88602402,61.16511536,180.4516387,181.5855692,14.483223,0.129976866,1620000000000 ,1620000000000 ,1620000000000 ,1616812396290 -1616812396320 ,112.5730004,26.88602272,61.16505051,180.4464478,181.5735806,14.482971,0.12998321,1620000000000 ,1620000000000 ,1620000000000 ,1616812396300 -1616812396332 ,112.5730003,26.88602142,61.16506195,180.4417213,181.5606638,14.481276,0.129968589,1620000000000 ,1620000000000 ,1620000000000 ,1616812396310 -1616812396339 ,112.5730003,26.88602012,61.16515732,180.4377598,181.5466355,14.481564,0.129962754,1620000000000 ,1620000000000 ,1620000000000 ,1616812396320 -1616812396350 ,112.5730003,26.88601882,61.16519547,180.4349458,181.5372215,14.486778,0.12999553,1620000000000 ,1620000000000 ,1620000000000 ,1616812396330 -1616812396361 ,112.5730002,26.88601752,61.16511917,180.4312301,181.5406787,14.49325,0.130049358,1620000000000 ,1620000000000 ,1620000000000 ,1616812396340 -1616812396369 ,112.5730002,26.88601622,61.16500092,180.426449,181.5347182,14.497002,0.130090734,1620000000000 ,1620000000000 ,1620000000000 ,1616812396350 -1616812396379 ,112.5730002,26.88601492,61.16497421,180.419892,181.5184897,14.497422,0.130098917,1620000000000 ,1620000000000 ,1620000000000 ,1616812396360 -1616812396390 ,112.5730001,26.88601362,61.16506195,180.4147557,181.5114503,14.495706,0.13009137,1620000000000 ,1620000000000 ,1620000000000 ,1616812396370 -1616812396399 ,112.5730001,26.88601232,61.16521072,180.4093189,181.5094619,14.493531,0.130071016,1620000000000 ,1620000000000 ,1620000000000 ,1616812396380 -1616812396412 ,112.5730001,26.88601102,61.16541672,180.4055759,181.5129341,14.493079,0.130063923,1620000000000 ,1620000000000 ,1620000000000 ,1616812396390 -1616812396420 ,112.573,26.88600972,61.16572189,180.40115,181.5080249,14.495843,0.130082892,1620000000000 ,1620000000000 ,1620000000000 ,1616812396400 -1616812396430 ,112.573,26.88600842,61.16613007,180.396123,181.494949,14.500258,0.130122017,1620000000000 ,1620000000000 ,1620000000000 ,1616812396410 -1616812396440 ,112.573,26.88600711,61.16660309,180.3916424,181.480945,14.503373,0.130155142,1620000000000 ,1620000000000 ,1620000000000 ,1616812396420 -1616812396449 ,112.5729999,26.88600581,61.16716385,180.3887464,181.4815567,14.50562,0.130182105,1620000000000 ,1620000000000 ,1620000000000 ,1616812396430 -1616812396463 ,112.5729999,26.88600451,61.16786957,180.3854406,181.4804006,14.50308,0.130174774,1620000000000 ,1620000000000 ,1620000000000 ,1616812396440 -1616812396470 ,112.5729999,26.88600321,61.16931534,180.3844843,181.200615,14.500501,0.130567999,1620000000000 ,1620000000000 ,1620000000000 ,1616812396450 -1616812396481 ,112.5729998,26.8860019,61.1714592,180.3821347,180.9269811,14.498693,0.130975148,1620000000000 ,1620000000000 ,1620000000000 ,1616812396460 -1616812396490 ,112.5729998,26.88600059,61.17361069,180.3797852,180.9227536,14.501342,0.130990013,1620000000000 ,1620000000000 ,1620000000000 ,1616812396470 -1616812396500 ,112.5729998,26.88599928,61.17575073,180.376534,180.9201133,14.506591,0.131031181,1620000000000 ,1620000000000 ,1620000000000 ,1616812396480 -1616812396515 ,112.5729998,26.88599797,61.17787552,180.3718075,180.9223636,14.510322,0.131073033,1620000000000 ,1620000000000 ,1620000000000 ,1616812396490 -1616812396521 ,112.5729998,26.88599666,61.18003082,180.3658789,180.9220861,14.510948,0.131086688,1620000000000 ,1620000000000 ,1620000000000 ,1616812396500 -1616812396530 ,112.5729997,26.88599535,61.18223572,180.3618081,180.9223719,14.51047,0.131090217,1620000000000 ,1620000000000 ,1620000000000 ,1616812396510 -1616812396541 ,112.5729997,26.88599403,61.18442154,180.3591033,180.918393,14.5104065,0.131085451,1620000000000 ,1620000000000 ,1620000000000 ,1616812396520 -1616812396552 ,112.5729997,26.88599272,61.18645859,180.3555243,180.9099648,14.513395,0.131104709,1620000000000 ,1620000000000 ,1620000000000 ,1616812396530 -1616812396562 ,112.5729997,26.88599141,61.18830109,180.3508252,180.9116969,14.517012,0.131131358,1620000000000 ,1620000000000 ,1620000000000 ,1616812396540 -1616812396571 ,112.5729997,26.8859901,61.1900177,180.3449239,180.9149553,14.52195,0.131168285,1620000000000 ,1620000000000 ,1620000000000 ,1616812396550 -1616812396581 ,112.5729996,26.88598879,61.19172287,180.3393504,180.912431,14.523827,0.131196038,1620000000000 ,1620000000000 ,1620000000000 ,1616812396560 -1616812396591 ,112.5729996,26.88598748,61.19352341,180.3332852,180.9028275,14.52237,0.131194431,1620000000000 ,1620000000000 ,1620000000000 ,1616812396570 -1616812396601 ,112.5729996,26.88598617,61.19539642,180.3296242,180.8941121,14.521186,0.131183892,1620000000000 ,1620000000000 ,1620000000000 ,1616812396580 -1616812396615 ,112.5729996,26.88598485,61.19719315,180.325854,180.8901852,14.523841,0.131193875,1620000000000 ,1620000000000 ,1620000000000 ,1616812396590 -1616812396624 ,112.5729996,26.88598354,61.19877625,180.3221384,180.8908146,14.529919,0.131236469,1620000000000 ,1620000000000 ,1620000000000 ,1616812396600 -1616812396633 ,112.5729995,26.88598223,61.20014954,180.3190511,180.8922191,14.535799,0.131288357,1620000000000 ,1620000000000 ,1620000000000 ,1616812396610 -1616812396642 ,112.5729995,26.88598092,61.20146942,180.3121663,180.8764484,14.53833,0.131315132,1620000000000 ,1620000000000 ,1620000000000 ,1616812396620 -1616812396651 ,112.5729995,26.8859796,61.20288467,180.3057186,180.8639892,14.536135,0.131309811,1620000000000 ,1620000000000 ,1620000000000 ,1616812396630 -1616812396663 ,112.5729995,26.88597829,61.20441437,180.3015658,180.8577072,14.534937,0.131296115,1620000000000 ,1620000000000 ,1620000000000 ,1616812396640 -1616812396672 ,112.5729995,26.88597698,61.20596695,180.2967301,180.8580761,14.538188,0.131319016,1620000000000 ,1620000000000 ,1620000000000 ,1616812396650 -1616812396681 ,112.5729994,26.88597566,61.20743942,180.2948176,180.859598,14.54322,0.131356873,1620000000000 ,1620000000000 ,1620000000000 ,1616812396660 -1616812396692 ,112.5729994,26.88597435,61.20879364,180.2896813,180.8554605,14.547275,0.131394394,1620000000000 ,1620000000000 ,1620000000000 ,1616812396670 -1616812396701 ,112.5729994,26.88597304,61.21007538,180.2833156,180.8401427,14.548254,0.131410031,1620000000000 ,1620000000000 ,1620000000000 ,1616812396680 -1616812396715 ,112.5729994,26.88597172,61.2113533,180.2774962,180.8308379,14.547883,0.13140764,1620000000000 ,1620000000000 ,1620000000000 ,1616812396690 -1616812396728 ,112.5729994,26.88597041,61.21269608,180.2727698,180.8337286,14.547734,0.131405712,1620000000000 ,1620000000000 ,1620000000000 ,1616812396700 -1616812396733 ,112.5729993,26.88596909,61.21409607,180.2690268,180.8339712,14.550008,0.131425966,1620000000000 ,1620000000000 ,1620000000000 ,1616812396710 -1616812396742 ,112.5729993,26.88596778,61.21554184,180.2639998,180.825729,14.551642,0.131442791,1620000000000 ,1620000000000 ,1620000000000 ,1616812396720 -1616812396752 ,112.5729993,26.88596647,61.21700668,180.2580985,180.8127121,14.552799,0.131455472,1620000000000 ,1620000000000 ,1620000000000 ,1616812396730 -1616812396763 ,112.5729993,26.88596515,61.21845245,180.2534813,180.8007925,14.555583,0.131473986,1620000000000 ,1620000000000 ,1620000000000 ,1616812396740 -1616812396774 ,112.5729993,26.88596384,61.21985626,180.2496017,180.7972827,14.558532,0.131501947,1620000000000 ,1620000000000 ,1620000000000 ,1616812396760 -1616812396783 ,112.5729992,26.88596252,61.22122955,180.2474707,180.7905139,14.559926,0.131518532,1620000000000 ,1620000000000 ,1620000000000 ,1616812396770 -1616812396795 ,112.5729992,26.88596121,61.2226181,180.2437278,180.7789446,14.559746,0.131521754,1620000000000 ,1620000000000 ,1620000000000 ,1616812396780 -1616812396804 ,112.5729992,26.88595989,61.22410202,180.2403673,180.7630595,14.559993,0.131523249,1620000000000 ,1620000000000 ,1620000000000 ,1616812396780 -1616812396813 ,112.5729992,26.88595726,61.22720337,180.2329634,180.7538716,14.563489,0.263087356,1620000000000 ,1620000000000 ,1620000000000 ,1616812396800 -1616812396824 ,112.5729992,26.88595726,61.22720337,180.2329634,-400,14.563489,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812396810 -1616812396835 ,112.5729991,26.88595463,61.22999573,180.2285921,180.7455787,14.569968,0.263180096,1620000000000 ,1620000000000 ,1620000000000 ,1616812396820 -1616812396847 ,112.5729991,26.88595331,61.23126602,180.2227181,180.7362656,14.572523,0.131627322,1620000000000 ,1620000000000 ,1620000000000 ,1616812396830 -1616812396853 ,112.5729991,26.885952,61.23249054,180.2191118,180.7275282,14.573909,0.131640159,1620000000000 ,1620000000000 ,1620000000000 ,1616812396840 -1616812396866 ,112.5729991,26.88595068,61.23365021,180.2167076,180.7230746,14.575071,0.131646909,1620000000000 ,1620000000000 ,1620000000000 ,1616812396850 -1616812396876 ,112.5729991,26.88594936,61.23476791,180.2150137,180.7269532,14.576629,0.131661398,1620000000000 ,1620000000000 ,1620000000000 ,1616812396860 -1616812396887 ,112.5729991,26.88594805,61.23589706,180.2107516,180.7206488,14.579248,0.131680443,1620000000000 ,1620000000000 ,1620000000000 ,1616812396870 -1616812396895 ,112.572999,26.88594673,61.23706436,180.2062984,180.7125917,14.581952,0.131706763,1620000000000 ,1620000000000 ,1620000000000 ,1616812396880 -1616812396907 ,112.572999,26.88594541,61.2382431,180.2028559,180.7099889,14.585579,0.131736677,1620000000000 ,1620000000000 ,1620000000000 ,1616812396890 -1616812396917 ,112.572999,26.88594409,61.23941803,180.2003424,180.7120125,14.587028,0.131756603,1620000000000 ,1620000000000 ,1620000000000 ,1616812396900 -1616812396925 ,112.572999,26.88594278,61.24059296,180.1975011,180.7154862,14.588016,0.131766547,1620000000000 ,1620000000000 ,1620000000000 ,1616812396910 -1616812396935 ,112.572999,26.88594146,61.24182129,180.1943319,180.7145021,14.589243,0.131776516,1620000000000 ,1620000000000 ,1620000000000 ,1616812396920 -1616812396945 ,112.572999,26.88594014,61.24311066,180.190343,180.7071662,14.590634,0.131789489,1620000000000 ,1620000000000 ,1620000000000 ,1616812396930 -1616812396956 ,112.5729989,26.88593882,61.24443436,180.1869279,180.7003927,14.591954,0.131802706,1620000000000 ,1620000000000 ,1620000000000 ,1616812396940 -1616812396965 ,112.5729989,26.88593751,61.24579239,180.1842232,180.7048906,14.593468,0.131816397,1620000000000 ,1620000000000 ,1620000000000 ,1616812396950 -1616812396981 ,112.5729989,26.88593619,61.2471962,180.1805349,180.7016009,14.594766,0.131829681,1620000000000 ,1620000000000 ,1620000000000 ,1616812396960 -1616812396985 ,112.5729989,26.88593487,61.24862289,180.1764641,180.6928321,14.597377,0.131853116,1620000000000 ,1620000000000 ,1620000000000 ,1616812396970 -1616812396994 ,112.5729989,26.88593355,61.2500267,180.1743877,180.6808186,14.599679,0.131872135,1620000000000 ,1620000000000 ,1620000000000 ,1616812396980 -1616812397005 ,112.5729989,26.88593223,61.25139618,180.1670931,180.6763273,14.601088,0.131887616,1620000000000 ,1620000000000 ,1620000000000 ,1616812396990 -1616812397016 ,112.5729988,26.88593091,61.25276566,180.1635687,180.6699009,14.602656,0.131899625,1620000000000 ,1620000000000 ,1620000000000 ,1616812397000 -1616812397026 ,112.5729988,26.88592959,61.25414658,180.1576947,180.6639912,14.604211,0.13191602,1620000000000 ,1620000000000 ,1620000000000 ,1616812397010 -1616812397035 ,112.5729988,26.88592827,61.25556564,180.1543616,180.6669501,14.604464,0.131923149,1620000000000 ,1620000000000 ,1620000000000 ,1616812397020 -1616812397045 ,112.5729988,26.88592696,61.25704956,180.1513017,180.6651751,14.604197,0.131922022,1620000000000 ,1620000000000 ,1620000000000 ,1616812397030 -1616812397056 ,112.5729988,26.88592564,61.25857925,180.1486789,180.6550708,14.60563,0.131930364,1620000000000 ,1620000000000 ,1620000000000 ,1616812397040 -1616812397066 ,112.5729988,26.88592432,61.26010513,180.1442256,180.6476324,14.608273,0.131954485,1620000000000 ,1620000000000 ,1620000000000 ,1616812397050 -1616812397077 ,112.5729988,26.885923,61.26156235,180.1399636,180.6473312,14.610099,0.131970722,1620000000000 ,1620000000000 ,1620000000000 ,1616812397060 -1616812397086 ,112.5729987,26.88592168,61.26298523,180.1365211,180.6524317,14.61166,0.131983891,1620000000000 ,1620000000000 ,1620000000000 ,1616812397070 -1616812397096 ,112.5729987,26.88592036,61.26439667,180.1346633,180.6453163,14.612621,0.131992626,1620000000000 ,1620000000000 ,1620000000000 ,1616812397080 -1616812397106 ,112.5729987,26.88591904,61.26583481,180.1317946,180.6381086,14.614272,0.132006474,1620000000000 ,1620000000000 ,1620000000000 ,1616812397090 -1616812397118 ,112.5729987,26.88591772,61.26729584,180.1288986,180.6299453,14.615143,0.1320163,1620000000000 ,1620000000000 ,1620000000000 ,1616812397100 -1616812397128 ,112.5729987,26.8859164,61.26875687,180.1278878,180.6258605,14.616266,0.1320255,1620000000000 ,1620000000000 ,1620000000000 ,1616812397110 -1616812397137 ,112.5729987,26.88591508,61.27017212,180.128161,180.6132921,14.61837,0.132037748,1620000000000 ,1620000000000 ,1620000000000 ,1616812397120 -1616812397149 ,112.5729987,26.88591376,61.27152634,180.1279697,180.6059163,14.619681,0.132051621,1620000000000 ,1620000000000 ,1620000000000 ,1616812397130 -1616812397158 ,112.5729986,26.88591244,61.27287292,180.1287894,180.5931094,14.621298,0.132063479,1620000000000 ,1620000000000 ,1620000000000 ,1616812397140 -1616812397176 ,112.5729986,26.88591112,61.27422333,180.1298549,180.5874217,14.623181,0.132075484,1620000000000 ,1620000000000 ,1620000000000 ,1616812397150 -1616812397181 ,112.5729986,26.88590979,61.2755394,180.1323411,180.5867518,14.626061,0.132098758,1620000000000 ,1620000000000 ,1620000000000 ,1616812397160 -1616812397192 ,112.5729986,26.88590847,61.27681732,180.1334066,180.5930541,14.627146,0.132110658,1620000000000 ,1620000000000 ,1620000000000 ,1616812397170 -1616812397204 ,112.5729986,26.88590715,61.27812576,180.1341989,180.5963278,14.628939,0.132124808,1620000000000 ,1620000000000 ,1620000000000 ,1616812397180 -1616812397216 ,112.5729986,26.88590583,61.27947617,180.1357835,180.5860191,14.630493,0.132138585,1620000000000 ,1620000000000 ,1620000000000 ,1616812397190 -1616812397221 ,112.5729986,26.88590451,61.28010178,180.1380511,180.9027617,14.629516,0.132009714,1620000000000 ,1620000000000 ,1620000000000 ,1616812397200 -1616812397231 ,112.5729985,26.88590319,61.27965927,180.1395811,181.3439159,14.630933,0.131872207,1620000000000 ,1620000000000 ,1620000000000 ,1616812397210 -1616812397242 ,112.5729985,26.88590187,61.2792778,180.1392532,181.3464403,14.632978,0.131886696,1620000000000 ,1620000000000 ,1620000000000 ,1616812397220 -1616812397253 ,112.5729985,26.88590056,61.27898026,180.1398269,181.3450518,14.635923,0.131915532,1620000000000 ,1620000000000 ,1620000000000 ,1616812397230 -1616812397265 ,112.5729984,26.88589924,61.27870178,180.141193,181.3419886,14.63731,0.131929644,1620000000000 ,1620000000000 ,1620000000000 ,1616812397240 -1616812397274 ,112.5729984,26.88589792,61.27848816,180.1416574,181.3445624,14.635251,0.131922969,1620000000000 ,1620000000000 ,1620000000000 ,1616812397250 -1616812397282 ,112.5729984,26.8858966,61.27840042,180.1424497,181.3376854,14.632991,0.131902348,1620000000000 ,1620000000000 ,1620000000000 ,1616812397260 -1616812397299 ,112.5729983,26.88589528,61.27841568,180.1450452,181.3344752,14.634334,0.13190705,1620000000000 ,1620000000000 ,1620000000000 ,1616812397270 -1616812397305 ,112.5729983,26.88589396,61.27843094,180.1484876,181.3379579,14.63732,0.131932333,1620000000000 ,1620000000000 ,1620000000000 ,1616812397280 -1616812397326 ,112.5729983,26.88589264,61.27842712,180.1496078,181.3533952,14.637886,0.131942563,1620000000000 ,1620000000000 ,1620000000000 ,1616812397290 -1616812397330 ,112.5729982,26.88589132,61.27851486,180.1478593,181.3625985,14.639929,0.131961244,1620000000000 ,1620000000000 ,1620000000000 ,1616812397300 -1616812397332 ,112.5729982,26.88589,61.27873611,180.1493346,181.3660409,14.639704,0.131967643,1620000000000 ,1620000000000 ,1620000000000 ,1616812397310 -1616812397344 ,112.5729982,26.88588868,61.27902985,180.151247,181.3680834,14.639043,0.131965829,1620000000000 ,1620000000000 ,1620000000000 ,1616812397320 -1616812397353 ,112.5729981,26.88588736,61.27936554,180.1529136,181.3766351,14.638033,0.131958596,1620000000000 ,1620000000000 ,1620000000000 ,1616812397330 -1616812397363 ,112.5729981,26.88588605,61.27973557,180.153542,181.3834779,14.639403,0.131967619,1620000000000 ,1620000000000 ,1620000000000 ,1616812397350 -1616812397373 ,112.5729981,26.88588473,61.28010559,180.1530502,181.386034,14.641737,0.131988849,1620000000000 ,1620000000000 ,1620000000000 ,1616812397360 -1616812397383 ,112.5729981,26.88588341,61.28041077,180.1534327,181.3910892,14.643475,0.132006158,1620000000000 ,1620000000000 ,1620000000000 ,1616812397370 -1616812397393 ,112.572998,26.88588209,61.28070068,180.1531048,181.3965935,14.643572,0.132012735,1620000000000 ,1620000000000 ,1620000000000 ,1616812397380 -1616812397404 ,112.572998,26.88588077,61.28104782,180.1528043,181.3919512,14.64333,0.132010654,1620000000000 ,1620000000000 ,1620000000000 ,1616812397380 -1616812397415 ,112.572998,26.88587945,61.28143692,180.1538698,181.3906525,14.644203,0.132018093,1620000000000 ,1620000000000 ,1620000000000 ,1616812397400 -1616812397425 ,112.5729979,26.88587813,61.28177643,180.1553725,181.3899012,14.645739,0.132028271,1620000000000 ,1620000000000 ,1620000000000 ,1616812397400 -1616812397433 ,112.5729979,26.88587549,61.28217316,180.1563014,181.3887664,14.648382,0.264097082,1620000000000 ,1620000000000 ,1620000000000 ,1616812397420 -1616812397443 ,112.5729979,26.88587549,61.28217316,180.1563014,-400,14.648382,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812397430 -1616812397454 ,112.5729978,26.88587285,61.28244781,180.154826,181.3861221,14.650629,0.264145677,1620000000000 ,1620000000000 ,1620000000000 ,1616812397440 -1616812397465 ,112.5729978,26.88587152,61.28326797,180.1558642,181.0651479,14.65181,0.132214696,1620000000000 ,1620000000000 ,1620000000000 ,1616812397450 -1616812397474 ,112.5729978,26.8858702,61.2848053,180.1578313,180.7402843,14.650952,0.132345984,1620000000000 ,1620000000000 ,1620000000000 ,1616812397460 -1616812397484 ,112.5729977,26.88586888,61.28635788,180.1568751,180.7320316,14.651278,0.132342883,1620000000000 ,1620000000000 ,1620000000000 ,1616812397470 -1616812397495 ,112.5729977,26.88586755,61.28783798,180.159935,180.7228092,14.65434,0.132361455,1620000000000 ,1620000000000 ,1620000000000 ,1616812397480 -1616812397507 ,112.5729977,26.88586623,61.28918839,180.1595799,180.726293,14.657523,0.132387256,1620000000000 ,1620000000000 ,1620000000000 ,1616812397490 -1616812397518 ,112.5729977,26.88586491,61.29042435,180.1604541,180.7363579,14.659194,0.132408086,1620000000000 ,1620000000000 ,1620000000000 ,1616812397500 -1616812397531 ,112.5729977,26.88586358,61.29164505,180.1602902,180.7341864,14.659243,0.132407745,1620000000000 ,1620000000000 ,1620000000000 ,1616812397510 -1616812397535 ,112.5729977,26.88586226,61.29288483,180.1630223,180.7177942,14.660392,0.132413947,1620000000000 ,1620000000000 ,1620000000000 ,1616812397520 -1616812397546 ,112.5729976,26.88586093,61.29409027,180.1632408,180.7134287,14.6618595,0.132425916,1620000000000 ,1620000000000 ,1620000000000 ,1616812397530 -1616812397556 ,112.5729976,26.88585961,61.2951889,180.1655904,180.7226794,14.663818,0.132443465,1620000000000 ,1620000000000 ,1620000000000 ,1616812397540 -1616812397565 ,112.5729976,26.88585829,61.29622269,180.1685684,180.7307924,14.665196,0.132452755,1620000000000 ,1620000000000 ,1620000000000 ,1616812397550 -1616812397575 ,112.5729976,26.88585696,61.29725647,180.1685684,180.7283093,14.666844,0.132465045,1620000000000 ,1620000000000 ,1620000000000 ,1616812397560 -1616812397585 ,112.5729976,26.88585564,61.29830933,180.1706994,180.7277107,14.668412,0.132479463,1620000000000 ,1620000000000 ,1620000000000 ,1616812397570 -1616812397595 ,112.5729976,26.88585431,61.29935837,180.1713005,180.7293495,14.669531,0.132491385,1620000000000 ,1620000000000 ,1620000000000 ,1616812397580 -1616812397605 ,112.5729975,26.88585299,61.30039215,180.1725845,180.7342245,14.67043,0.132497805,1620000000000 ,1620000000000 ,1620000000000 ,1616812397590 -1616812397616 ,112.5729975,26.88585166,61.30138779,180.1740599,180.7364576,14.672157,0.132510341,1620000000000 ,1620000000000 ,1620000000000 ,1616812397600 -1616812397626 ,112.5729975,26.88585034,61.30238724,180.17671,180.734626,14.673319,0.132519835,1620000000000 ,1620000000000 ,1620000000000 ,1616812397610 -1616812397635 ,112.5729975,26.88584901,61.30342484,180.1788956,180.7305799,14.674205,0.132531846,1620000000000 ,1620000000000 ,1620000000000 ,1616812397620 -1616812397646 ,112.5729975,26.88584769,61.30453491,180.1814638,180.7314964,14.675005,0.132540993,1620000000000 ,1620000000000 ,1620000000000 ,1616812397630 -1616812397655 ,112.5729974,26.88584636,61.30569077,180.1834309,180.741527,14.675653,0.132546742,1620000000000 ,1620000000000 ,1620000000000 ,1616812397640 -1616812397667 ,112.5729974,26.88584504,61.30687714,180.1884033,180.749802,14.6760025,0.132550802,1620000000000 ,1620000000000 ,1620000000000 ,1616812397650 -1616812397676 ,112.5729974,26.88584371,61.30807877,180.1920642,180.7497212,14.675847,0.132552154,1620000000000 ,1620000000000 ,1620000000000 ,1616812397660 -1616812397687 ,112.5729974,26.88584238,61.3093071,180.1942499,180.7422283,14.678119,0.132568524,1620000000000 ,1620000000000 ,1620000000000 ,1616812397670 -1616812397696 ,112.5729974,26.88584106,61.31054306,180.1968727,180.7398005,14.680352,0.132589261,1620000000000 ,1620000000000 ,1620000000000 ,1616812397680 -1616812397706 ,112.5729974,26.88583973,61.3117981,180.1980748,180.7468107,14.681315,0.132600754,1620000000000 ,1620000000000 ,1620000000000 ,1616812397690 -1616812397716 ,112.5729973,26.88583841,61.31311035,180.199714,180.7566981,14.681259,0.132605722,1620000000000 ,1620000000000 ,1620000000000 ,1616812397700 -1616812397726 ,112.5729973,26.88583708,61.31450653,180.2026374,180.7530001,14.681326,0.132610937,1620000000000 ,1620000000000 ,1620000000000 ,1616812397710 -1616812397736 ,112.5729973,26.88583575,61.31595612,180.2053968,180.7484298,14.680864,0.132607772,1620000000000 ,1620000000000 ,1620000000000 ,1616812397720 -1616812397747 ,112.5729973,26.88583443,61.31740952,180.2066808,180.7486279,14.68109,0.132609443,1620000000000 ,1620000000000 ,1620000000000 ,1616812397730 -1616812397757 ,112.5729973,26.8858331,61.31882477,180.2111068,180.7522035,14.68275,0.132621794,1620000000000 ,1620000000000 ,1620000000000 ,1616812397740 -1616812397767 ,112.5729973,26.88583178,61.32019806,180.2153142,180.7555809,14.685241,0.132641545,1620000000000 ,1620000000000 ,1620000000000 ,1616812397750 -1616812397777 ,112.5729972,26.88583045,61.32154465,180.2192757,180.7570705,14.687091,0.132660859,1620000000000 ,1620000000000 ,1620000000000 ,1616812397760 -1616812397787 ,112.5729972,26.88582912,61.32290268,180.221434,180.7606659,14.686947,0.132665509,1620000000000 ,1620000000000 ,1620000000000 ,1616812397770 -1616812397797 ,112.5729972,26.8858278,61.3242836,180.224412,180.7691841,14.685464,0.132657689,1620000000000 ,1620000000000 ,1620000000000 ,1616812397780 -1616812397810 ,112.5729972,26.88582647,61.32564545,180.2293571,180.7738631,14.685457,0.132651309,1620000000000 ,1620000000000 ,1620000000000 ,1616812397790 -1616812397821 ,112.5729972,26.88582514,61.32694626,180.2323624,180.7845067,14.688274,0.132670646,1620000000000 ,1620000000000 ,1620000000000 ,1616812397800 -1616812397829 ,112.5729972,26.88582382,61.32817841,180.2354769,180.7815876,14.690186,0.132689297,1620000000000 ,1620000000000 ,1620000000000 ,1616812397810 -1616812397838 ,112.5729971,26.88582249,61.3293457,180.2388101,180.780682,14.690756,0.132697597,1620000000000 ,1620000000000 ,1620000000000 ,1616812397820 -1616812397848 ,112.5729971,26.88582116,61.3304863,180.24187,180.787464,14.691619,0.132703503,1620000000000 ,1620000000000 ,1620000000000 ,1616812397830 -1616812397858 ,112.5729971,26.88581984,61.33161926,180.2458315,180.7905494,14.692514,0.132712048,1620000000000 ,1620000000000 ,1620000000000 ,1616812397840 -1616812397868 ,112.5729971,26.88581851,61.33276367,180.2509951,180.7975993,14.692777,0.132715435,1620000000000 ,1620000000000 ,1620000000000 ,1616812397850 -1616812397878 ,112.5729971,26.88581718,61.33389664,180.255503,180.8036637,14.692761,0.132716572,1620000000000 ,1620000000000 ,1620000000000 ,1616812397860 -1616812397888 ,112.572997,26.88581586,61.33498383,180.2624425,180.7982462,14.69276,0.132715717,1620000000000 ,1620000000000 ,1620000000000 ,1616812397870 -1616812397906 ,112.572997,26.88581453,61.33602142,180.2670051,180.7978209,14.693556,0.132717663,1620000000000 ,1620000000000 ,1620000000000 ,1616812397880 -1616812397912 ,112.572997,26.8858132,61.33700562,180.2723599,180.7997923,14.695915,0.13273406,1620000000000 ,1620000000000 ,1620000000000 ,1616812397890 -1616812397921 ,112.572997,26.88581187,61.3379631,180.2773596,180.8053897,14.696381,0.132742752,1620000000000 ,1620000000000 ,1620000000000 ,1616812397900 -1616812397931 ,112.572997,26.88581055,61.33890915,180.2814031,180.8055386,14.695902,0.132738635,1620000000000 ,1620000000000 ,1620000000000 ,1616812397910 -1616812397941 ,112.5729969,26.88580922,61.33984756,180.2863755,180.8093212,14.695841,0.132736525,1620000000000 ,1620000000000 ,1620000000000 ,1616812397920 -1616812397949 ,112.5729969,26.88580789,61.34078979,180.2931237,180.8112491,14.695345,0.132732548,1620000000000 ,1620000000000 ,1620000000000 ,1616812397930 -1616812397958 ,112.5729969,26.88580657,61.34174347,180.2987518,180.8101422,14.694415,0.132725037,1620000000000 ,1620000000000 ,1620000000000 ,1616812397940 -1616812397969 ,112.5729969,26.88580524,61.34268951,180.3060191,180.8117193,14.694965,0.132723777,1620000000000 ,1620000000000 ,1620000000000 ,1616812397950 -1616812397978 ,112.5729969,26.88580391,61.34363174,180.3123302,180.8184112,14.69509,0.13272576,1620000000000 ,1620000000000 ,1620000000000 ,1616812397960 -1616812397989 ,112.5729969,26.88580258,61.34456635,180.3210455,180.8192723,14.695101,0.132725099,1620000000000 ,1620000000000 ,1620000000000 ,1616812397970 -1616812398000 ,112.5729968,26.88580126,61.34552383,180.3279577,180.8281291,14.694807,0.132721687,1620000000000 ,1620000000000 ,1620000000000 ,1616812397980 -1616812398012 ,112.5729968,26.88579993,61.34648514,180.3351704,180.8284634,14.696381,0.132728862,1620000000000 ,1620000000000 ,1620000000000 ,1616812397990 -1616812398019 ,112.5729968,26.8857986,61.34744644,180.3400335,180.8327986,14.696881,0.132736962,1620000000000 ,1620000000000 ,1620000000000 ,1616812398000 -1616812398030 ,112.5729968,26.88579728,61.34842682,180.3469456,180.8439228,14.695164,0.132725856,1620000000000 ,1620000000000 ,1620000000000 ,1616812398010 -1616812398039 ,112.5729968,26.88579595,61.3494606,180.3527922,180.8566102,14.692573,0.132702634,1620000000000 ,1620000000000 ,1620000000000 ,1616812398020 -1616812398050 ,112.5729967,26.88579462,61.35055161,180.3594312,180.8606057,14.6910515,0.132687474,1620000000000 ,1620000000000 ,1620000000000 ,1616812398030 -1616812398060 ,112.5729967,26.88579329,61.35166168,180.3652778,180.8607806,14.690765,0.132679999,1620000000000 ,1620000000000 ,1620000000000 ,1616812398040 -1616812398069 ,112.5729967,26.88579197,61.35277557,180.3737746,180.8734154,14.691121,0.13268201,1620000000000 ,1620000000000 ,1620000000000 ,1616812398050 -1616812398080 ,112.5729967,26.88579064,61.35391235,180.3810419,180.8812474,14.693226,0.132696596,1620000000000 ,1620000000000 ,1620000000000 ,1616812398060 -1616812398091 ,112.5729967,26.88578931,61.35508347,180.3871344,180.8852512,14.693223,0.132699876,1620000000000 ,1620000000000 ,1620000000000 ,1616812398070 -1616812398101 ,112.5729966,26.88578799,61.35631561,180.3936368,180.8920347,14.692073,0.132692282,1620000000000 ,1620000000000 ,1620000000000 ,1616812398080 -1616812398112 ,112.5729966,26.88578666,61.3576088,180.4004943,180.8959299,14.690114,0.132678351,1620000000000 ,1620000000000 ,1620000000000 ,1616812398090 -1616812398122 ,112.5729966,26.88578533,61.35895538,180.4072425,180.9028266,14.68855,0.132660143,1620000000000 ,1620000000000 ,1620000000000 ,1616812398100 -1616812398132 ,112.5729966,26.88578401,61.3603363,180.4130618,180.9093008,14.687789,0.132649663,1620000000000 ,1620000000000 ,1620000000000 ,1616812398110 -1616812398142 ,112.5729966,26.88578268,61.36176682,180.4191817,180.9143488,14.686616,0.132643974,1620000000000 ,1620000000000 ,1620000000000 ,1616812398120 -1616812398152 ,112.5729965,26.88578136,61.36327744,180.4266676,180.9220299,14.686482,0.132638977,1620000000000 ,1620000000000 ,1620000000000 ,1616812398130 -1616812398164 ,112.5729965,26.88578003,61.36488724,180.4345906,180.9289574,14.688918,0.132654616,1620000000000 ,1620000000000 ,1620000000000 ,1616812398140 -1616812398172 ,112.5729965,26.8857787,61.36659622,180.441776,180.9361622,14.689696,0.132669951,1620000000000 ,1620000000000 ,1620000000000 ,1616812398150 -1616812398183 ,112.5729965,26.88577738,61.36840439,180.4467757,180.9460183,14.687263,0.132658474,1620000000000 ,1620000000000 ,1620000000000 ,1616812398160 -1616812398195 ,112.5729964,26.88577605,61.37026596,180.453196,180.9518811,14.683962,0.132632395,1620000000000 ,1620000000000 ,1620000000000 ,1616812398170 -1616812398203 ,112.5729964,26.88577472,61.37215424,180.4608185,180.9683398,14.6810665,0.132602997,1620000000000 ,1620000000000 ,1620000000000 ,1616812398180 -1616812398212 ,112.5729964,26.8857734,61.37407303,180.465463,180.9764479,14.677877,0.132578584,1620000000000 ,1620000000000 ,1620000000000 ,1616812398190 -1616812398222 ,112.5729964,26.88577207,61.37639236,180.4752166,181.121962,14.68119,0.132652704,1620000000000 ,1620000000000 ,1620000000000 ,1616812398200 -1616812398232 ,112.5729963,26.88577075,61.37932968,180.4789595,181.3346718,14.680012,0.132785523,1620000000000 ,1620000000000 ,1620000000000 ,1616812398210 -1616812398242 ,112.5729963,26.88576942,61.38234329,180.4845603,181.3474756,14.678911,0.132778992,1620000000000 ,1620000000000 ,1620000000000 ,1616812398220 -1616812398251 ,112.5729963,26.88576809,61.38541794,180.4890955,181.3569962,14.676281,0.132760727,1620000000000 ,1620000000000 ,1620000000000 ,1616812398230 -1616812398265 ,112.5729962,26.88576676,61.38858414,180.4932756,181.3607374,14.674562,0.132746996,1620000000000 ,1620000000000 ,1620000000000 ,1616812398240 -1616812398272 ,112.5729962,26.88576544,61.39177322,180.4970185,181.3593256,14.675194,0.132749641,1620000000000 ,1620000000000 ,1620000000000 ,1616812398250 -1616812398281 ,112.5729962,26.88576411,61.39488602,180.5016904,181.3703689,14.676102,0.13275791,1620000000000 ,1620000000000 ,1620000000000 ,1616812398260 -1616812398293 ,112.5729962,26.88576278,61.39791489,180.5024554,181.3893541,14.6736765,0.132749345,1620000000000 ,1620000000000 ,1620000000000 ,1616812398270 -1616812398301 ,112.5729961,26.88576146,61.40099716,180.5017997,181.3945094,14.667171,0.132701665,1620000000000 ,1620000000000 ,1620000000000 ,1616812398280 -1616812398312 ,112.5729961,26.88576013,61.4041748,180.5043951,181.3875561,14.664787,0.132672443,1620000000000 ,1620000000000 ,1620000000000 ,1616812398290 -1616812398322 ,112.5729961,26.8857588,61.407341,180.5057338,181.3867621,14.663495,0.13266043,1620000000000 ,1620000000000 ,1620000000000 ,1616812398300 -1616812398332 ,112.572996,26.88575748,61.41038895,180.5092582,181.3947446,14.663692,0.132658097,1620000000000 ,1620000000000 ,1620000000000 ,1616812398310 -1616812398344 ,112.572996,26.88575615,61.41323853,180.5089031,181.4044117,14.663849,0.13265928,1620000000000 ,1620000000000 ,1620000000000 ,1616812398330 -1616812398355 ,112.572996,26.88575482,61.41585922,180.5116351,181.4155138,14.663578,0.132652155,1620000000000 ,1620000000000 ,1620000000000 ,1616812398340 -1616812398365 ,112.5729959,26.8857535,61.41827393,180.5102691,181.4222749,14.663718,0.132648448,1620000000000 ,1620000000000 ,1620000000000 ,1616812398350 -1616812398373 ,112.5729959,26.88575217,61.420578,180.5081381,181.4196547,14.661111,0.132630631,1620000000000 ,1620000000000 ,1620000000000 ,1616812398360 -1616812398383 ,112.5729959,26.88575085,61.42288589,180.5068267,181.4227977,14.6568775,0.132596392,1620000000000 ,1620000000000 ,1620000000000 ,1616812398370 -1616812398397 ,112.5729958,26.88574952,61.42522812,180.5050781,181.4260737,14.652136,0.132558291,1620000000000 ,1620000000000 ,1620000000000 ,1616812398380 -1616812398405 ,112.5729958,26.8857482,61.42755508,180.5042312,181.426658,14.648802,0.13252273,1620000000000 ,1620000000000 ,1620000000000 ,1616812398380 -1616812398415 ,112.5729957,26.88574555,61.43206024,180.5031384,181.424982,14.648925,0.26502592,1620000000000 ,1620000000000 ,1620000000000 ,1616812398400 -1616812398424 ,112.5729957,26.88574422,61.43419647,180.5016357,181.4196757,14.647487,0.132504089,1620000000000 ,1620000000000 ,1620000000000 ,1616812398410 -1616812398434 ,112.5729957,26.8857429,61.43624496,180.5021548,181.4166372,14.6455555,0.132485995,1620000000000 ,1620000000000 ,1620000000000 ,1616812398420 -1616812398444 ,112.5729956,26.88574157,61.43823242,180.5036575,181.4180385,14.643648,0.132465988,1620000000000 ,1620000000000 ,1620000000000 ,1616812398430 -1616812398454 ,112.5729956,26.88574025,61.44018555,180.5035482,181.4100693,14.643165,0.132456123,1620000000000 ,1620000000000 ,1620000000000 ,1616812398440 -1616812398468 ,112.5729956,26.88573893,61.44177628,180.5019909,181.2680892,14.6431465,0.13236464,1620000000000 ,1620000000000 ,1620000000000 ,1616812398450 -1616812398477 ,112.5729955,26.8857376,61.44297028,180.5011986,181.1285742,14.641801,0.132262696,1620000000000 ,1620000000000 ,1620000000000 ,1616812398460 -1616812398484 ,112.5729955,26.88573628,61.44410324,180.4988217,181.1320921,14.638325,0.132238288,1620000000000 ,1620000000000 ,1620000000000 ,1616812398470 -1616812398494 ,112.5729955,26.88573496,61.44527817,180.4954066,181.1325742,14.634748,0.132202856,1620000000000 ,1620000000000 ,1620000000000 ,1616812398480 -1616812398506 ,112.5729955,26.88573496,61.44527817,180.4954066,-400,14.634748,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812398490 -1616812398517 ,112.5729954,26.88573232,61.44768524,180.496035,181.132519,14.631368,0.264359138,1620000000000 ,1620000000000 ,1620000000000 ,1616812398500 -1616812398527 ,112.5729954,26.885731,61.44884109,180.4955978,181.1295596,14.629391,0.132154324,1620000000000 ,1620000000000 ,1620000000000 ,1616812398510 -1616812398535 ,112.5729954,26.885731,61.44884109,180.4955978,-400,14.629391,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812398520 -1616812398547 ,112.5729954,26.88572835,61.45122147,180.4929751,181.1281239,14.627864,0.264281033,1620000000000 ,1620000000000 ,1620000000000 ,1616812398530 -1616812398557 ,112.5729953,26.88572703,61.45242691,180.4931117,181.1245544,14.6265,0.132129497,1620000000000 ,1620000000000 ,1620000000000 ,1616812398540 -1616812398565 ,112.5729953,26.88572571,61.45364761,180.4919369,181.126157,14.621527,0.132096081,1620000000000 ,1620000000000 ,1620000000000 ,1616812398550 -1616812398576 ,112.5729953,26.88572439,61.45493317,180.4895326,181.1191962,14.615912,0.13204645,1620000000000 ,1620000000000 ,1620000000000 ,1616812398560 -1616812398586 ,112.5729953,26.88572307,61.45625305,180.4885491,181.1108998,14.612883,0.132011647,1620000000000 ,1620000000000 ,1620000000000 ,1616812398570 -1616812398595 ,112.5729952,26.88572175,61.45755005,180.4864181,181.1080844,14.613019,0.132006629,1620000000000 ,1620000000000 ,1620000000000 ,1616812398580 -1616812398605 ,112.5729952,26.88572043,61.45877457,180.4864727,181.1102196,14.612778,0.132004209,1620000000000 ,1620000000000 ,1620000000000 ,1616812398590 -1616812398615 ,112.5729952,26.88571911,61.45996475,180.4831942,181.1106971,14.610518,0.131990492,1620000000000 ,1620000000000 ,1620000000000 ,1616812398600 -1616812398625 ,112.5729952,26.88571779,61.46116638,180.4783311,181.1038297,14.607864,0.131967147,1620000000000 ,1620000000000 ,1620000000000 ,1616812398610 -1616812398635 ,112.5729951,26.88571647,61.46234894,180.4755444,181.0961977,14.605704,0.131942671,1620000000000 ,1620000000000 ,1620000000000 ,1616812398620 -1616812398646 ,112.5729951,26.88571515,61.46347046,180.4729489,181.0988224,14.604378,0.131928693,1620000000000 ,1620000000000 ,1620000000000 ,1616812398630 -1616812398656 ,112.5729951,26.88571384,61.46450424,180.4711458,181.0989709,14.60221,0.131908949,1620000000000 ,1620000000000 ,1620000000000 ,1616812398640 -1616812398668 ,112.5729951,26.88571252,61.46552277,180.4670203,181.0944129,14.5997505,0.131885797,1620000000000 ,1620000000000 ,1620000000000 ,1616812398650 -1616812398676 ,112.572995,26.8857112,61.46659851,180.463414,181.0893594,14.596979,0.131861508,1620000000000 ,1620000000000 ,1620000000000 ,1616812398660 -1616812398687 ,112.572995,26.88570988,61.46775818,180.4609005,181.0871129,14.594304,0.131840575,1620000000000 ,1620000000000 ,1620000000000 ,1616812398670 -1616812398699 ,112.572995,26.88570856,61.46894455,180.4566658,181.0843935,14.591224,0.13181628,1620000000000 ,1620000000000 ,1620000000000 ,1616812398680 -1616812398709 ,112.572995,26.88570725,61.4701004,180.4542069,181.0832152,14.588835,0.131791497,1620000000000 ,1620000000000 ,1620000000000 ,1616812398690 -1616812398716 ,112.5729949,26.88570593,61.47121429,180.4507645,181.079019,14.587383,0.131772386,1620000000000 ,1620000000000 ,1620000000000 ,1616812398700 -1616812398726 ,112.5729949,26.88570461,61.47231674,180.4462839,181.0716871,14.585608,0.131756035,1620000000000 ,1620000000000 ,1620000000000 ,1616812398710 -1616812398737 ,112.5729949,26.88570329,61.47343445,180.4427595,181.0640623,14.582041,0.131730256,1620000000000 ,1620000000000 ,1620000000000 ,1616812398720 -1616812398748 ,112.5729949,26.88570198,61.47460175,180.4391805,181.0606696,14.579041,0.131703394,1620000000000 ,1620000000000 ,1620000000000 ,1616812398730 -1616812398757 ,112.5729948,26.88570066,61.47581863,180.4327328,181.0609632,14.5766535,0.131677153,1620000000000 ,1620000000000 ,1620000000000 ,1616812398740 -1616812398769 ,112.5729948,26.88569934,61.47707367,180.4285254,181.0576503,14.573128,0.131652044,1620000000000 ,1620000000000 ,1620000000000 ,1616812398750 -1616812398777 ,112.5729948,26.88569803,61.47831345,180.4266676,181.0429428,14.569405,0.131615869,1620000000000 ,1620000000000 ,1620000000000 ,1616812398760 -1616812398788 ,112.5729948,26.88569671,61.47954941,180.4225421,181.0380999,14.567227,0.131593356,1620000000000 ,1620000000000 ,1620000000000 ,1616812398770 -1616812398798 ,112.5729947,26.8856954,61.48078918,180.4194549,181.0307507,14.564772,0.131567975,1620000000000 ,1620000000000 ,1620000000000 ,1616812398780 -1616812398808 ,112.5729947,26.88569408,61.48207092,180.4137175,181.0243485,14.562857,0.131552114,1620000000000 ,1620000000000 ,1620000000000 ,1616812398790 -1616812398818 ,112.5729947,26.88569277,61.48340988,180.4111767,181.0171533,14.560224,0.131534848,1620000000000 ,1620000000000 ,1620000000000 ,1616812398800 -1616812398829 ,112.5729947,26.88569145,61.48480988,180.4080075,181.0155405,14.55765,0.131511602,1620000000000 ,1620000000000 ,1620000000000 ,1616812398810 -1616812398838 ,112.5729946,26.88569014,61.48626328,180.4056306,181.0087182,14.553009,0.131474103,1620000000000 ,1620000000000 ,1620000000000 ,1616812398820 -1616812398848 ,112.5729946,26.88568882,61.48776245,180.4007129,181.0055154,14.547963,0.131429155,1620000000000 ,1620000000000 ,1620000000000 ,1616812398830 -1616812398857 ,112.5729946,26.88568751,61.48926544,180.3960956,180.9985336,14.545502,0.131403219,1620000000000 ,1620000000000 ,1620000000000 ,1616812398840 -1616812398868 ,112.5729946,26.8856862,61.49073029,180.3934729,180.997664,14.545246,0.131393195,1620000000000 ,1620000000000 ,1620000000000 ,1616812398850 -1616812398878 ,112.5729945,26.88568488,61.49216843,180.3896753,181.0019134,14.544025,0.131386674,1620000000000 ,1620000000000 ,1620000000000 ,1616812398860 -1616812398888 ,112.5729945,26.88568357,61.49365234,180.386588,181.0031288,14.540098,0.13135997,1620000000000 ,1620000000000 ,1620000000000 ,1616812398870 -1616812398898 ,112.5729945,26.88568226,61.49523926,180.3816156,180.9982411,14.534675,0.13131586,1620000000000 ,1620000000000 ,1620000000000 ,1616812398880 -1616812398909 ,112.5729945,26.88568094,61.49687958,180.3777361,180.9936358,14.530323,0.131275966,1620000000000 ,1620000000000 ,1620000000000 ,1616812398890 -1616812398918 ,112.5729945,26.88567963,61.4985199,180.3726818,180.9932078,14.526365,0.131239974,1620000000000 ,1620000000000 ,1620000000000 ,1616812398900 -1616812398930 ,112.5729944,26.88567832,61.50009155,180.3701409,180.9902802,14.525629,0.131223543,1620000000000 ,1620000000000 ,1620000000000 ,1616812398910 -1616812398938 ,112.5729944,26.88567701,61.50159073,180.3654418,180.9841125,14.525085,0.13121764,1620000000000 ,1620000000000 ,1620000000000 ,1616812398920 -1616812398949 ,112.5729944,26.88567569,61.5030365,180.3630922,180.9806162,14.52434,0.131211806,1620000000000 ,1620000000000 ,1620000000000 ,1616812398930 -1616812398959 ,112.5729944,26.88567438,61.50449371,180.3575461,180.9773917,14.520709,0.131186098,1620000000000 ,1620000000000 ,1620000000000 ,1616812398940 -1616812398969 ,112.5729943,26.88567307,61.50602341,180.3512623,180.9731887,14.515841,0.131146172,1620000000000 ,1620000000000 ,1620000000000 ,1616812398950 -1616812398979 ,112.5729943,26.88567176,61.50761795,180.3462899,180.9637262,14.511193,0.131105117,1620000000000 ,1620000000000 ,1620000000000 ,1616812398960 -1616812399001 ,112.5729943,26.88567045,61.50918961,180.342547,180.9556398,14.508369,0.131076298,1620000000000 ,1620000000000 ,1620000000000 ,1616812398970 -1616812399002 ,112.5729943,26.88566914,61.51066971,180.3389953,180.9529948,14.504911,0.131044975,1620000000000 ,1620000000000 ,1620000000000 ,1616812398980 -1616812399011 ,112.5729943,26.88566783,61.51208115,180.3333945,180.9462682,14.502817,0.131020247,1620000000000 ,1620000000000 ,1620000000000 ,1616812398990 -1616812399019 ,112.5729942,26.88566652,61.5134697,180.3285861,180.935071,14.501734,0.131008973,1620000000000 ,1620000000000 ,1620000000000 ,1616812399000 -1616812399040 ,112.5729942,26.88566521,61.51484299,180.3237503,180.9329754,14.50099,0.131002374,1620000000000 ,1620000000000 ,1620000000000 ,1616812399010 -1616812399042 ,112.5729942,26.8856639,61.51622009,180.3184227,180.9367338,14.497536,0.130976188,1620000000000 ,1620000000000 ,1620000000000 ,1616812399020 -1616812399051 ,112.5729942,26.88566259,61.51760864,180.3126034,180.9362224,14.492242,0.130935975,1620000000000 ,1620000000000 ,1620000000000 ,1616812399030 -1616812399060 ,112.5729942,26.88566128,61.51900864,180.307631,180.9317498,14.487607,0.130891532,1620000000000 ,1620000000000 ,1620000000000 ,1616812399040 -1616812399070 ,112.5729941,26.88565997,61.52033997,180.3030411,180.9234181,14.485295,0.130863582,1620000000000 ,1620000000000 ,1620000000000 ,1616812399050 -1616812399081 ,112.5729941,26.88565867,61.52154541,180.2982873,180.9203823,14.483419,0.130840539,1620000000000 ,1620000000000 ,1620000000000 ,1616812399060 -1616812399092 ,112.5729941,26.88565736,61.52266312,180.2945444,180.9225328,14.480076,0.130813595,1620000000000 ,1620000000000 ,1620000000000 ,1616812399070 -1616812399100 ,112.5729941,26.88565605,61.52377319,180.2899818,180.9174108,14.475715,0.130776405,1620000000000 ,1620000000000 ,1620000000000 ,1616812399080 -1616812399110 ,112.572994,26.88565474,61.52493668,180.2848728,180.9108614,14.471086,0.130734562,1620000000000 ,1620000000000 ,1620000000000 ,1616812399090 -1616812399120 ,112.572994,26.88565344,61.52613449,180.2782066,180.9027187,14.467598,0.130698902,1620000000000 ,1620000000000 ,1620000000000 ,1616812399100 -1616812399133 ,112.572994,26.88565213,61.52729034,180.2746822,180.8933606,14.464246,0.130666882,1620000000000 ,1620000000000 ,1620000000000 ,1616812399110 -1616812399145 ,112.572994,26.88565082,61.52835846,180.2694366,180.8894969,14.461004,0.130635005,1620000000000 ,1620000000000 ,1620000000000 ,1616812399120 -1616812399153 ,112.572994,26.88564952,61.52934265,180.2637812,180.8815096,14.459145,0.130611768,1620000000000 ,1620000000000 ,1620000000000 ,1616812399130 -1616812399162 ,112.5729939,26.88564821,61.53028107,180.2572789,180.874072,14.455346,0.130578553,1620000000000 ,1620000000000 ,1620000000000 ,1616812399140 -1616812399177 ,112.5729939,26.88564691,61.5312233,180.2515415,180.861368,14.452281,0.130549765,1620000000000 ,1620000000000 ,1620000000000 ,1616812399150 -1616812399184 ,112.5729939,26.8856456,61.53218842,180.2466238,180.8518122,14.447478,0.130509205,1620000000000 ,1620000000000 ,1620000000000 ,1616812399160 -1616812399194 ,112.5729939,26.8856443,61.5331955,180.24187,180.8467418,14.4442215,0.130475573,1620000000000 ,1620000000000 ,1620000000000 ,1616812399170 -1616812399203 ,112.5729939,26.88564299,61.53426361,180.2356135,180.840273,14.440929,0.130446296,1620000000000 ,1620000000000 ,1620000000000 ,1616812399180 -1616812399215 ,112.5729938,26.88564169,61.53538132,180.2301221,180.8352025,14.43533,0.130401411,1620000000000 ,1620000000000 ,1620000000000 ,1616812399190 -1616812399222 ,112.5729938,26.88564038,61.53691101,180.237444,180.8277887,14.449162,0.130575944,1620000000000 ,1620000000000 ,1620000000000 ,1616812399200 -1616812399234 ,112.5729938,26.88563907,61.53902817,180.2342475,180.8061243,14.44671,0.130926271,1620000000000 ,1620000000000 ,1620000000000 ,1616812399210 -1616812399245 ,112.5729938,26.88563776,61.54112625,180.2294664,180.804659,14.446206,0.13091737,1620000000000 ,1620000000000 ,1620000000000 ,1616812399220 -1616812399253 ,112.5729938,26.88563646,61.54323196,180.2243574,180.8032998,14.442792,0.130893371,1620000000000 ,1620000000000 ,1620000000000 ,1616812399230 -1616812399265 ,112.5729938,26.88563515,61.5453949,180.2189479,180.7989237,14.437802,0.130852938,1620000000000 ,1620000000000 ,1620000000000 ,1616812399240 -1616812399272 ,112.5729937,26.88563384,61.54766083,180.2135384,180.7942433,14.430742,0.130797074,1620000000000 ,1620000000000 ,1620000000000 ,1616812399250 -1616812399283 ,112.5729937,26.88563253,61.55006409,180.2083747,180.7878283,14.424135,0.130739315,1620000000000 ,1620000000000 ,1620000000000 ,1616812399260 -1616812399294 ,112.5729937,26.88563123,61.55258942,180.2021729,180.779631,14.421144,0.130706326,1620000000000 ,1620000000000 ,1620000000000 ,1616812399270 -1616812399304 ,112.5729937,26.88562992,61.55515671,180.1967088,180.7758927,14.419959,0.130693983,1620000000000 ,1620000000000 ,1620000000000 ,1616812399280 -1616812399318 ,112.5729937,26.88562861,61.55772018,180.1922555,180.7702587,14.418182,0.130679038,1620000000000 ,1620000000000 ,1620000000000 ,1616812399300 -1616812399323 ,112.5729936,26.88562731,61.5602951,180.1862449,180.7639201,14.414593,0.130655724,1620000000000 ,1620000000000 ,1620000000000 ,1616812399310 -1616812399333 ,112.5729936,26.885626,61.56292725,180.1813272,180.7505585,14.410798,0.130623072,1620000000000 ,1620000000000 ,1620000000000 ,1616812399320 -1616812399344 ,112.5729936,26.88562469,61.56561279,180.1754805,180.7416611,14.406403,0.130585601,1620000000000 ,1620000000000 ,1620000000000 ,1616812399320 -1616812399354 ,112.5729936,26.88562339,61.56832886,180.1700164,180.7398356,14.400943,0.130539866,1620000000000 ,1620000000000 ,1620000000000 ,1616812399340 -1616812399363 ,112.5729936,26.88562208,61.57110596,180.1639785,180.7381263,14.394161,0.130488927,1620000000000 ,1620000000000 ,1620000000000 ,1616812399350 -1616812399374 ,112.5729936,26.88562078,61.57397079,180.1565473,180.7215636,14.3871975,0.130430653,1620000000000 ,1620000000000 ,1620000000000 ,1616812399360 -1616812399383 ,112.5729935,26.88561817,61.5797081,180.1481325,180.7061242,14.381933,0.260758669,1620000000000 ,1620000000000 ,1620000000000 ,1616812399370 -1616812399394 ,112.5729935,26.88561687,61.58242035,180.1435426,180.7105808,14.381167,0.130363958,1620000000000 ,1620000000000 ,1620000000000 ,1616812399380 -1616812399404 ,112.5729935,26.88561687,61.58242035,180.1435426,-400,14.381167,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812399390 -1616812399416 ,112.5729935,26.88561426,61.58758926,180.1352644,180.7038083,14.375241,0.260654254,1620000000000 ,1620000000000 ,1620000000000 ,1616812399400 -1616812399426 ,112.5729935,26.88561296,61.59010315,180.1294724,180.6886355,14.370078,0.130270873,1620000000000 ,1620000000000 ,1620000000000 ,1616812399410 -1616812399434 ,112.5729935,26.88561166,61.59260178,180.1233799,180.6901568,14.363753,0.130217332,1620000000000 ,1620000000000 ,1620000000000 ,1616812399420 -1616812399445 ,112.5729934,26.88561036,61.59509659,180.1185441,180.6885546,14.357515,0.130159765,1620000000000 ,1620000000000 ,1620000000000 ,1616812399430 -1616812399460 ,112.5729934,26.88560906,61.59756088,180.1133805,180.6786965,14.35256,0.130113672,1620000000000 ,1620000000000 ,1620000000000 ,1616812399440 -1616812399465 ,112.5729934,26.88560776,61.59960556,180.1080256,180.6648436,14.349251,0.129867215,1620000000000 ,1620000000000 ,1620000000000 ,1616812399450 -1616812399478 ,112.5729934,26.88560646,61.60121155,180.1023975,180.6526244,14.346936,0.129631925,1620000000000 ,1620000000000 ,1620000000000 ,1616812399460 -1616812399485 ,112.5729934,26.88560516,61.60271454,180.0967148,180.645719,14.345488,0.129613565,1620000000000 ,1620000000000 ,1620000000000 ,1616812399470 -1616812399494 ,112.5729934,26.88560387,61.60411835,180.0921249,180.6499844,14.343419,0.129593825,1620000000000 ,1620000000000 ,1620000000000 ,1616812399480 -1616812399504 ,112.5729933,26.88560257,61.60544586,180.0872072,180.6532882,14.339005,0.129558549,1620000000000 ,1620000000000 ,1620000000000 ,1616812399490 -1616812399516 ,112.5729933,26.88560128,61.60673904,180.0833003,180.6378803,14.333442,0.129508942,1620000000000 ,1620000000000 ,1620000000000 ,1616812399500 -1616812399527 ,112.5729933,26.88559998,61.60799789,180.0787104,180.6208998,14.32778,0.129456135,1620000000000 ,1620000000000 ,1620000000000 ,1616812399510 -1616812399538 ,112.5729933,26.88559869,61.60918045,180.0731643,180.618389,14.324465,0.129415148,1620000000000 ,1620000000000 ,1620000000000 ,1616812399520 -1616812399573 ,112.5729933,26.8855974,61.61025238,180.0686017,180.6242912,14.322788,0.129394339,1620000000000 ,1620000000000 ,1620000000000 ,1616812399530 -1616812399575 ,112.5729933,26.8855961,61.61122131,180.0648861,180.6232929,14.32072,0.1293714,1620000000000 ,1620000000000 ,1620000000000 ,1616812399540 -1616812399577 ,112.5729933,26.88559481,61.61217117,180.0597225,180.6091222,14.315885,0.129335369,1620000000000 ,1620000000000 ,1620000000000 ,1616812399550 -1616812399579 ,112.5729933,26.88559352,61.61312866,180.054996,180.5934248,14.310723,0.129286559,1620000000000 ,1620000000000 ,1620000000000 ,1616812399560 -1616812399586 ,112.5729932,26.88559222,61.61406708,180.0507066,180.5876921,14.308548,0.129257902,1620000000000 ,1620000000000 ,1620000000000 ,1616812399570 -1616812399595 ,112.5729932,26.88559093,61.61495209,180.0477287,180.5889912,14.305737,0.12922994,1620000000000 ,1620000000000 ,1620000000000 ,1616812399580 -1616812399606 ,112.5729932,26.88558964,61.61582184,180.0429202,180.5855457,14.301965,0.129197864,1620000000000 ,1620000000000 ,1620000000000 ,1616812399590 -1616812399615 ,112.5729932,26.88558835,61.61672592,180.0366638,180.5665897,14.297095,0.129157354,1620000000000 ,1620000000000 ,1620000000000 ,1616812399600 -1616812399626 ,112.5729932,26.88558706,61.61771393,180.0317187,180.5523908,14.291375,0.129108014,1620000000000 ,1620000000000 ,1620000000000 ,1616812399610 -1616812399635 ,112.5729932,26.88558577,61.61878204,180.027484,180.5489271,14.285664,0.129056084,1620000000000 ,1620000000000 ,1620000000000 ,1616812399620 -1616812399654 ,112.5729932,26.88558448,61.61989975,180.0216374,180.5472397,14.281682,0.129014198,1620000000000 ,1620000000000 ,1620000000000 ,1616812399630 -1616812399657 ,112.5729931,26.88558319,61.6210289,180.0181676,180.5426425,14.280686,0.129002042,1620000000000 ,1620000000000 ,1620000000000 ,1616812399640 -1616812399667 ,112.5729931,26.8855819,61.62216187,180.0117472,180.5380584,14.277771,0.128982006,1620000000000 ,1620000000000 ,1620000000000 ,1616812399650 -1616812399676 ,112.5729931,26.88558061,61.62334824,180.00713,180.5287799,14.271848,0.128932501,1620000000000 ,1620000000000 ,1620000000000 ,1616812399660 -1616812399687 ,112.5729931,26.88557932,61.62461853,180.0002452,180.519654,14.264583,0.128873017,1620000000000 ,1620000000000 ,1620000000000 ,1616812399670 -1616812399697 ,112.5729931,26.88557803,61.62598801,179.9960651,180.5182408,14.257679,0.128815142,1620000000000 ,1620000000000 ,1620000000000 ,1616812399680 -1616812399709 ,112.5729931,26.88557674,61.62744141,179.9917211,180.5147686,14.251684,0.128760406,1620000000000 ,1620000000000 ,1620000000000 ,1616812399690 -1616812399716 ,112.5729931,26.88557546,61.62898254,179.9872132,180.5029765,14.245605,0.128706856,1620000000000 ,1620000000000 ,1620000000000 ,1616812399700 -1616812399727 ,112.5729931,26.88557417,61.63056564,179.9842899,180.4936206,14.241119,0.128663909,1620000000000 ,1620000000000 ,1620000000000 ,1616812399710 -1616812399737 ,112.5729931,26.88557288,61.63214493,179.9798639,180.4845174,14.239718,0.128643993,1620000000000 ,1620000000000 ,1620000000000 ,1616812399720 -1616812399747 ,112.572993,26.8855716,61.6336937,179.9759024,180.4812566,14.237318,0.128626526,1620000000000 ,1620000000000 ,1620000000000 ,1616812399730 -1616812399756 ,112.572993,26.88557031,61.63527298,179.9697826,180.4791817,14.231634,0.128584338,1620000000000 ,1620000000000 ,1620000000000 ,1616812399740 -1616812399766 ,112.572993,26.88556903,61.63695145,179.9635807,180.4713778,14.222599,0.12851243,1620000000000 ,1620000000000 ,1620000000000 ,1616812399750 -1616812399777 ,112.572993,26.88556774,61.63874054,179.9578434,180.4598699,14.214764,0.128440859,1620000000000 ,1620000000000 ,1620000000000 ,1616812399760 -1616812399787 ,112.572993,26.88556646,61.64054108,179.9532262,180.450256,14.208377,0.128381022,1620000000000 ,1620000000000 ,1620000000000 ,1616812399770 -1616812399798 ,112.572993,26.88556517,61.64227676,179.9504121,180.4548738,14.205268,0.128342932,1620000000000 ,1620000000000 ,1620000000000 ,1616812399780 -1616812399808 ,112.572993,26.88556389,61.64395142,179.9467238,180.4541798,14.204031,0.128329116,1620000000000 ,1620000000000 ,1620000000000 ,1616812399790 -1616812399818 ,112.572993,26.88556261,61.64561462,179.9419154,180.448626,14.201076,0.128304808,1620000000000 ,1620000000000 ,1620000000000 ,1616812399800 -1616812399828 ,112.572993,26.88556133,61.64728928,179.9371343,180.4421498,14.196694,0.128269236,1620000000000 ,1620000000000 ,1620000000000 ,1616812399810 -1616812399837 ,112.572993,26.88556004,61.64897156,179.9327356,180.4324904,14.19,0.128214005,1620000000000 ,1620000000000 ,1620000000000 ,1616812399820 -1616812399848 ,112.5729929,26.88555876,61.65061188,179.9291293,180.4251596,14.183571,0.128151643,1620000000000 ,1620000000000 ,1620000000000 ,1616812399830 -1616812399861 ,112.5729929,26.88555748,61.65213013,179.9260693,180.4241672,14.180007,0.128108431,1620000000000 ,1620000000000 ,1620000000000 ,1616812399840 -1616812399870 ,112.5729929,26.8855562,61.65350723,179.9237198,180.418138,14.178099,0.128083503,1620000000000 ,1620000000000 ,1620000000000 ,1616812399850 -1616812399880 ,112.5729929,26.88555492,61.65481567,179.9164524,180.4139735,14.17571,0.1280593,1620000000000 ,1620000000000 ,1620000000000 ,1616812399860 -1616812399888 ,112.5729929,26.88555364,61.65616989,179.9118079,180.4036899,14.170442,0.128022655,1620000000000 ,1620000000000 ,1620000000000 ,1616812399870 -1616812399899 ,112.5729929,26.88555236,61.65761185,179.9078191,180.3973979,14.163581,0.127965897,1620000000000 ,1620000000000 ,1620000000000 ,1616812399880 -1616812399909 ,112.5729929,26.88555108,61.65911865,179.9056881,180.397596,14.157551,0.127907653,1620000000000 ,1620000000000 ,1620000000000 ,1616812399890 -1616812399918 ,112.5729929,26.8855498,61.66064072,179.9032019,180.393496,14.153905,0.127868688,1620000000000 ,1620000000000 ,1620000000000 ,1616812399900 -1616812399932 ,112.5729929,26.88554852,61.66212463,179.897929,180.3870448,14.152246,0.127848682,1620000000000 ,1620000000000 ,1620000000000 ,1616812399910 -1616812399942 ,112.5729929,26.88554724,61.66358185,179.893503,180.3850835,14.1483555,0.127817722,1620000000000 ,1620000000000 ,1620000000000 ,1616812399920 -1616812399949 ,112.5729929,26.88554597,61.66506577,179.8872466,180.3835718,14.141888,0.127767832,1620000000000 ,1620000000000 ,1620000000000 ,1616812399930 -1616812399959 ,112.5729928,26.88554469,61.66663742,179.8800612,180.386915,14.135175,0.127705142,1620000000000 ,1620000000000 ,1620000000000 ,1616812399940 -1616812399971 ,112.5729928,26.88554341,61.66832733,179.874597,180.3883471,14.130584,0.127664627,1620000000000 ,1620000000000 ,1620000000000 ,1616812399950 -1616812399979 ,112.5729928,26.88554214,61.67010117,179.8692422,180.3799272,14.126894,0.127630914,1620000000000 ,1620000000000 ,1620000000000 ,1616812399960 -1616812399989 ,112.5729928,26.88554086,61.67190933,179.8633955,180.3696677,14.123144,0.127599771,1620000000000 ,1620000000000 ,1620000000000 ,1616812399970 -1616812399999 ,112.5729928,26.88553959,61.67369461,179.8577401,180.3674099,14.117984,0.127556371,1620000000000 ,1620000000000 ,1620000000000 ,1616812399980 -1616812400010 ,112.5729928,26.88553831,61.67543411,179.8519481,180.3710602,14.112597,0.127510199,1620000000000 ,1620000000000 ,1620000000000 ,1616812399990 -1616812400019 ,112.5729928,26.88553704,61.67718124,179.8463201,180.3744113,14.107409,0.127461091,1620000000000 ,1620000000000 ,1620000000000 ,1616812400000 -1616812400031 ,112.5729928,26.88553576,61.67899323,179.8410472,180.3633542,14.103478,0.127426524,1620000000000 ,1620000000000 ,1620000000000 ,1616812400010 -1616812400040 ,112.5729928,26.88553449,61.68087006,179.8369764,180.3545548,14.098572,0.127387693,1620000000000 ,1620000000000 ,1620000000000 ,1616812400020 -1616812400049 ,112.5729928,26.88553321,61.68276596,179.8340804,180.3457785,14.0934925,0.127346384,1620000000000 ,1620000000000 ,1620000000000 ,1616812400030 -1616812400060 ,112.5729928,26.88553194,61.68462753,179.8306379,180.3442706,14.089288,0.127304607,1620000000000 ,1620000000000 ,1620000000000 ,1616812400040 -1616812400070 ,112.5729928,26.88553067,61.68643951,179.826977,180.3445634,14.086815,0.127274404,1620000000000 ,1620000000000 ,1620000000000 ,1616812400050 -1616812400085 ,112.5729927,26.8855294,61.68818283,179.8204746,180.3455543,14.083802,0.127252251,1620000000000 ,1620000000000 ,1620000000000 ,1616812400060 -1616812400094 ,112.5729927,26.88552812,61.68989944,179.8147099,180.3474438,14.078203,0.127211951,1620000000000 ,1620000000000 ,1620000000000 ,1616812400070 -1616812400101 ,112.5729927,26.88552685,61.69164276,179.8091638,180.3433507,14.070412,0.127147428,1620000000000 ,1620000000000 ,1620000000000 ,1616812400080 -1616812400111 ,112.5729927,26.88552558,61.69344711,179.8038636,180.3270694,14.063648,0.127084469,1620000000000 ,1620000000000 ,1620000000000 ,1616812400090 -1616812400120 ,112.5729927,26.88552431,61.69524765,179.800066,180.3174182,14.058573,0.127038939,1620000000000 ,1620000000000 ,1620000000000 ,1616812400100 -1616812400132 ,112.5729927,26.88552304,61.69697571,179.7959406,180.3106711,14.055727,0.127006426,1620000000000 ,1620000000000 ,1620000000000 ,1616812400110 -1616812400142 ,112.5729927,26.88552177,61.69861984,179.7912414,180.3106232,14.052499,0.126979114,1620000000000 ,1620000000000 ,1620000000000 ,1616812400120 -1616812400153 ,112.5729927,26.8855205,61.70023727,179.7854221,180.3038233,14.049168,0.126948107,1620000000000 ,1620000000000 ,1620000000000 ,1616812400130 -1616812400163 ,112.5729927,26.88551923,61.70185471,179.7802038,180.2909754,14.044142,0.126910967,1620000000000 ,1620000000000 ,1620000000000 ,1616812400140 -1616812400171 ,112.5729927,26.88551796,61.70343781,179.7751495,180.283053,14.039024,0.126864779,1620000000000 ,1620000000000 ,1620000000000 ,1616812400150 -1616812400181 ,112.5729927,26.8855167,61.70492554,179.7716251,180.2754646,14.033489,0.126811703,1620000000000 ,1620000000000 ,1620000000000 ,1616812400160 -1616812400193 ,112.5729927,26.88551543,61.70627975,179.7683739,180.2686948,14.030185,0.126770949,1620000000000 ,1620000000000 ,1620000000000 ,1616812400170 -1616812400201 ,112.5729927,26.88551416,61.70750046,179.7636475,180.2614057,14.027334,0.126744358,1620000000000 ,1620000000000 ,1620000000000 ,1616812400180 -1616812400211 ,112.5729927,26.88551289,61.70863342,179.7571998,180.2544519,14.023033,0.126707688,1620000000000 ,1620000000000 ,1620000000000 ,1616812400190 -1616812400221 ,112.5729927,26.88551163,61.70933151,179.7648496,180.3200895,14.01441,0.126571667,1620000000000 ,1620000000000 ,1620000000000 ,1616812400200 -1616812400232 ,112.5729926,26.88551036,61.70943451,179.7613525,180.3999667,14.010654,0.126397308,1620000000000 ,1620000000000 ,1620000000000 ,1616812400210 -1616812400244 ,112.5729926,26.8855091,61.70946503,179.7565167,180.3914144,14.007459,0.126365905,1620000000000 ,1620000000000 ,1620000000000 ,1616812400220 -1616812400254 ,112.5729926,26.88550784,61.70938492,179.7513531,180.386796,14.005003,0.126336975,1620000000000 ,1620000000000 ,1620000000000 ,1616812400230 -1616812400262 ,112.5729926,26.88550657,61.70919037,179.744441,180.3851935,14.002869,0.126311271,1620000000000 ,1620000000000 ,1620000000000 ,1616812400240 -1616812400273 ,112.5729926,26.88550531,61.70890808,179.7401789,180.381819,13.998646,0.12627562,1620000000000 ,1620000000000 ,1620000000000 ,1616812400250 -1616812400289 ,112.5729926,26.88550405,61.70858765,179.7343323,180.3770293,13.992929,0.126227032,1620000000000 ,1620000000000 ,1620000000000 ,1616812400260 -1616812400292 ,112.5729926,26.88550279,61.7082901,179.7305347,180.3718672,13.986745,0.126168902,1620000000000 ,1620000000000 ,1620000000000 ,1616812400270 -1616812400304 ,112.5729926,26.88550153,61.70804214,179.7243056,180.3619444,13.982389,0.126124525,1620000000000 ,1620000000000 ,1620000000000 ,1616812400280 -1616812400319 ,112.5729926,26.88550027,61.70779037,179.7200982,180.3528155,13.97933,0.126091651,1620000000000 ,1620000000000 ,1620000000000 ,1616812400290 -1616812400329 ,112.5729926,26.88549901,61.70750046,179.7159454,180.3461158,13.975262,0.126058505,1620000000000 ,1620000000000 ,1620000000000 ,1616812400300 -1616812400334 ,112.5729926,26.88549775,61.70719528,179.7096616,180.3431469,13.968637,0.126001399,1620000000000 ,1620000000000 ,1620000000000 ,1616812400310 -1616812400345 ,112.5729926,26.88549649,61.70696259,179.705181,180.3285329,13.962592,0.125944123,1620000000000 ,1620000000000 ,1620000000000 ,1616812400320 -1616812400355 ,112.5729926,26.88549523,61.70681,179.7014108,180.3140573,13.958792,0.125903326,1620000000000 ,1620000000000 ,1620000000000 ,1616812400330 -1616812400364 ,112.5729925,26.88549397,61.7066803,179.6976951,180.3100091,13.9572115,0.125886394,1620000000000 ,1620000000000 ,1620000000000 ,1616812400350 -1616812400373 ,112.5729925,26.88549271,61.70653534,179.6936517,180.3091103,13.9539175,0.12586024,1620000000000 ,1620000000000 ,1620000000000 ,1616812400350 -1616812400383 ,112.5729925,26.88549145,61.7063942,179.689335,180.3004887,13.949666,0.125820067,1620000000000 ,1620000000000 ,1620000000000 ,1616812400360 -1616812400393 ,112.5729925,26.88549019,61.70628357,179.6840894,180.2889223,13.944689,0.12577698,1620000000000 ,1620000000000 ,1620000000000 ,1616812400380 -1616812400404 ,112.5729925,26.88548894,61.70620728,179.6810295,180.2792401,13.939168,0.125726931,1620000000000 ,1620000000000 ,1620000000000 ,1616812400380 -1616812400413 ,112.5729925,26.88548642,61.70630264,179.6700192,180.273944,13.928455,0.251306979,1620000000000 ,1620000000000 ,1620000000000 ,1616812400400 -1616812400424 ,112.5729925,26.88548642,61.70630264,179.6700192,-400,13.928455,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812400400 -1616812400434 ,112.5729925,26.88548391,61.70671082,179.6626426,180.2631953,13.919827,0.251152919,1620000000000 ,1620000000000 ,1620000000000 ,1616812400420 -1616812400446 ,112.5729925,26.88548391,61.70671082,179.6626426,-400,13.919827,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812400430 -1616812400455 ,112.5729925,26.8854814,61.70742798,179.654665,180.2579879,13.909898,0.250977303,1620000000000 ,1620000000000 ,1620000000000 ,1616812400440 -1616812400464 ,112.5729925,26.88548015,61.70827866,179.6499658,180.18898,13.905358,0.125525629,1620000000000 ,1620000000000 ,1620000000000 ,1616812400450 -1616812400474 ,112.5729925,26.88547889,61.70956421,179.6451573,180.1144898,13.9009075,0.125578553,1620000000000 ,1620000000000 ,1620000000000 ,1616812400460 -1616812400484 ,112.5729925,26.88547764,61.71095657,179.6392014,180.1098221,13.893827,0.125526703,1620000000000 ,1620000000000 ,1620000000000 ,1616812400470 -1616812400496 ,112.5729925,26.88547638,61.71248627,179.6333821,180.1035542,13.887388,0.125470072,1620000000000 ,1620000000000 ,1620000000000 ,1616812400480 -1616812400504 ,112.5729925,26.88547638,61.71248627,179.6333821,-400,13.887388,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812400490 -1616812400515 ,112.5729925,26.88547387,61.71591187,179.624093,180.1035287,13.873916,0.250772215,1620000000000 ,1620000000000 ,1620000000000 ,1616812400500 -1616812400525 ,112.5729925,26.88547262,61.71780014,179.6191206,180.0985929,13.867922,0.125308427,1620000000000 ,1620000000000 ,1620000000000 ,1616812400510 -1616812400537 ,112.5729925,26.88547137,61.71973801,179.6159241,180.0842755,13.864363,0.125273964,1620000000000 ,1620000000000 ,1620000000000 ,1616812400520 -1616812400548 ,112.5729925,26.88547011,61.72165298,179.6156236,180.075545,13.862968,0.125258386,1620000000000 ,1620000000000 ,1620000000000 ,1616812400530 -1616812400557 ,112.5729925,26.88546886,61.72348404,179.6110883,180.0727644,13.859115,0.125231123,1620000000000 ,1620000000000 ,1620000000000 ,1616812400540 -1616812400566 ,112.5729925,26.88546761,61.72525787,179.6060886,180.0698385,13.852349,0.125176454,1620000000000 ,1620000000000 ,1620000000000 ,1616812400550 -1616812400575 ,112.5729925,26.88546636,61.72700119,179.6026462,180.0692571,13.845462,0.125113938,1620000000000 ,1620000000000 ,1620000000000 ,1616812400560 -1616812400585 ,112.5729925,26.88546511,61.7286911,179.5968816,180.0639825,13.840049,0.125061889,1620000000000 ,1620000000000 ,1620000000000 ,1616812400570 -1616812400596 ,112.5729925,26.88546386,61.73030472,179.5941495,180.052727,13.836155,0.125020305,1620000000000 ,1620000000000 ,1620000000000 ,1616812400580 -1616812400615 ,112.5729925,26.88546261,61.73185349,179.5910622,180.046307,13.833468,0.124993089,1620000000000 ,1620000000000 ,1620000000000 ,1616812400590 -1616812400616 ,112.5729925,26.88546136,61.73331451,179.5852429,180.0397307,13.831575,0.124973723,1620000000000 ,1620000000000 ,1620000000000 ,1616812400600 -1616812400625 ,112.5729925,26.88546011,61.73466492,179.5811721,180.0386366,13.828975,0.124948918,1620000000000 ,1620000000000 ,1620000000000 ,1616812400610 -1616812400635 ,112.5729925,26.88545886,61.73590088,179.5774565,180.0364434,13.824432,0.124912317,1620000000000 ,1620000000000 ,1620000000000 ,1616812400620 -1616812400645 ,112.5729925,26.88545761,61.73706818,179.5716372,180.0293791,13.818987,0.124861209,1620000000000 ,1620000000000 ,1620000000000 ,1616812400630 -1616812400654 ,112.5729925,26.88545636,61.73817825,179.5679215,180.0215021,13.81451,0.124817387,1620000000000 ,1620000000000 ,1620000000000 ,1616812400640 -1616812400667 ,112.5729925,26.88545512,61.73922729,179.5638234,180.0182662,13.810208,0.124775551,1620000000000 ,1620000000000 ,1620000000000 ,1616812400650 -1616812400676 ,112.5729924,26.88545387,61.74022675,179.5605176,180.0171974,13.806711,0.124741491,1620000000000 ,1620000000000 ,1620000000000 ,1616812400660 -1616812400689 ,112.5729924,26.88545262,61.74118423,179.5569113,180.0081815,13.803719,0.124708969,1620000000000 ,1620000000000 ,1620000000000 ,1616812400670 -1616812400700 ,112.5729924,26.88545137,61.74211884,179.5523487,180.0041083,13.799918,0.124679527,1620000000000 ,1620000000000 ,1620000000000 ,1616812400680 -1616812400707 ,112.5729924,26.88545013,61.74298859,179.5485238,180.0000222,13.797005,0.124649421,1620000000000 ,1620000000000 ,1620000000000 ,1616812400690 -1616812400717 ,112.5729924,26.88544888,61.74379349,179.5442618,179.9965634,13.791191,0.124600072,1620000000000 ,1620000000000 ,1620000000000 ,1616812400700 -1616812400727 ,112.5729924,26.88544764,61.74453354,179.5396992,179.9958511,13.784746,0.124540402,1620000000000 ,1620000000000 ,1620000000000 ,1616812400710 -1616812400737 ,112.5729925,26.88544639,61.74524689,179.5340985,179.9867746,13.780362,0.124496428,1620000000000 ,1620000000000 ,1620000000000 ,1616812400720 -1616812400745 ,112.5729925,26.88544515,61.74591064,179.5304921,179.9771114,13.778505,0.124470898,1620000000000 ,1620000000000 ,1620000000000 ,1616812400730 -1616812400758 ,112.5729925,26.8854439,61.74652863,179.5269131,179.9744724,13.776423,0.124450878,1620000000000 ,1620000000000 ,1620000000000 ,1616812400740 -1616812400768 ,112.5729925,26.88544266,61.74714661,179.5229789,179.974085,13.773614,0.124428688,1620000000000 ,1620000000000 ,1620000000000 ,1616812400750 -1616812400778 ,112.5729925,26.88544141,61.7478714,179.5189081,179.9686723,13.767064,0.124382523,1620000000000 ,1620000000000 ,1620000000000 ,1616812400760 -1616812400789 ,112.5729925,26.88544017,61.74868774,179.5150012,179.954503,13.757843,0.124305025,1620000000000 ,1620000000000 ,1620000000000 ,1616812400770 -1616812400797 ,112.5729925,26.88543893,61.74948502,179.5139357,179.9433235,13.752319,0.124246972,1620000000000 ,1620000000000 ,1620000000000 ,1616812400780 -1616812400806 ,112.5729925,26.88543769,61.75015259,179.5133347,179.9393359,13.749244,0.12420669,1620000000000 ,1620000000000 ,1620000000000 ,1616812400790 -1616812400818 ,112.5729925,26.88543645,61.75069427,179.5090453,179.9470474,13.7491255,0.124193835,1620000000000 ,1620000000000 ,1620000000000 ,1616812400800 -1616812400829 ,112.5729925,26.8854352,61.75120163,179.5033899,179.9425553,13.746202,0.124175772,1620000000000 ,1620000000000 ,1620000000000 ,1616812400810 -1616812400837 ,112.5729925,26.88543396,61.75174332,179.499565,179.9383318,13.739389,0.124122726,1620000000000 ,1620000000000 ,1620000000000 ,1616812400820 -1616812400848 ,112.5729925,26.88543272,61.75238419,179.4959314,179.9387869,13.731759,0.124058518,1620000000000 ,1620000000000 ,1620000000000 ,1616812400830 -1616812400857 ,112.5729925,26.88543148,61.75311279,179.4925436,179.9321876,13.725086,0.123994868,1620000000000 ,1620000000000 ,1620000000000 ,1616812400840 -1616812400869 ,112.5729925,26.88543024,61.75385666,179.4885821,179.9232916,13.722135,0.123958443,1620000000000 ,1620000000000 ,1620000000000 ,1616812400850 -1616812400879 ,112.5729925,26.885429,61.75450516,179.485085,179.9168369,13.721145,0.123943927,1620000000000 ,1620000000000 ,1620000000000 ,1616812400860 -1616812400887 ,112.5729925,26.88542776,61.75502777,179.4819978,179.9147029,13.718591,0.123920565,1620000000000 ,1620000000000 ,1620000000000 ,1616812400870 -1616812400898 ,112.5729925,26.88542652,61.7555275,179.4787466,179.9104716,13.712932,0.12387628,1620000000000 ,1620000000000 ,1620000000000 ,1616812400880 -1616812400907 ,112.5729925,26.88542529,61.75614166,179.4722716,179.9016056,13.706512,0.12382263,1620000000000 ,1620000000000 ,1620000000000 ,1616812400890 -1616812400918 ,112.5729925,26.88542405,61.75690079,179.4702498,179.8880356,13.700927,0.12376704,1620000000000 ,1620000000000 ,1620000000000 ,1616812400900 -1616812400928 ,112.5729925,26.88542281,61.75775146,179.4682828,179.8875749,13.696875,0.12373343,1620000000000 ,1620000000000 ,1620000000000 ,1616812400910 -1616812400938 ,112.5729925,26.88542157,61.75865173,179.4650589,179.8852702,13.691039,0.123685628,1620000000000 ,1620000000000 ,1620000000000 ,1616812400920 -1616812400948 ,112.5729925,26.88542034,61.75954056,179.461152,179.8801462,13.6860695,0.123634964,1620000000000 ,1620000000000 ,1620000000000 ,1616812400930 -1616812400961 ,112.5729925,26.8854191,61.76038361,179.4578462,179.8757044,13.683582,0.123603791,1620000000000 ,1620000000000 ,1620000000000 ,1616812400940 -1616812400969 ,112.5729925,26.88541787,61.76116943,179.4538847,179.8767177,13.681742,0.123584146,1620000000000 ,1620000000000 ,1620000000000 ,1616812400950 -1616812400978 ,112.5729925,26.88541663,61.76193237,179.4494041,179.8771725,13.679342,0.123565059,1620000000000 ,1620000000000 ,1620000000000 ,1616812400960 -1616812400989 ,112.5729925,26.8854154,61.76274109,179.4450601,179.8789092,13.673751,0.123520433,1620000000000 ,1620000000000 ,1620000000000 ,1616812400970 -1616812400999 ,112.5729925,26.88541416,61.76370621,179.4398692,179.8714378,13.664696,0.123454328,1620000000000 ,1620000000000 ,1620000000000 ,1616812400980 -1616812401013 ,112.5729925,26.88541293,61.76484299,179.4361809,179.8595333,13.656234,0.123375611,1620000000000 ,1620000000000 ,1620000000000 ,1616812400990 -1616812401021 ,112.5729925,26.88541169,61.76608658,179.4319188,179.8523111,13.653137,0.12333727,1620000000000 ,1620000000000 ,1620000000000 ,1616812401000 -1616812401031 ,112.5729925,26.88541046,61.76730347,179.4300883,179.8539071,13.651772,0.123320393,1620000000000 ,1620000000000 ,1620000000000 ,1616812401010 -1616812401040 ,112.5729925,26.88540923,61.76850128,179.4266459,179.8609137,13.649134,0.123302789,1620000000000 ,1620000000000 ,1620000000000 ,1616812401020 -1616812401053 ,112.5729925,26.88540799,61.76977921,179.4232581,179.8479916,13.643223,0.123257988,1620000000000 ,1620000000000 ,1620000000000 ,1616812401030 -1616812401060 ,112.5729925,26.88540676,61.77118683,179.4203895,179.8287397,13.636042,0.123199174,1620000000000 ,1620000000000 ,1620000000000 ,1616812401040 -1616812401070 ,112.5729925,26.88540553,61.77266312,179.4181492,179.8252403,13.630491,0.123148013,1620000000000 ,1620000000000 ,1620000000000 ,1616812401050 -1616812401079 ,112.5729925,26.8854043,61.77412415,179.4153624,179.8310506,13.6266575,0.123108341,1620000000000 ,1620000000000 ,1620000000000 ,1616812401060 -1616812401089 ,112.5729925,26.88540307,61.77557373,179.4109092,179.8287442,13.621529,0.123066431,1620000000000 ,1620000000000 ,1620000000000 ,1616812401070 -1616812401099 ,112.5729925,26.88540184,61.77709198,179.4045434,179.8199598,13.616761,0.123025663,1620000000000 ,1620000000000 ,1620000000000 ,1616812401080 -1616812401111 ,112.5729925,26.88540061,61.77870941,179.3996257,179.8141411,13.610358,0.122975332,1620000000000 ,1620000000000 ,1620000000000 ,1616812401090 -1616812401123 ,112.5729925,26.88539938,61.78039932,179.3963199,179.8090006,13.60642,0.12293661,1620000000000 ,1620000000000 ,1620000000000 ,1616812401100 -1616812401130 ,112.5729925,26.88539815,61.78208923,179.3943255,179.7981117,13.60067,0.122893201,1620000000000 ,1620000000000 ,1620000000000 ,1616812401110 -1616812401140 ,112.5729925,26.88539692,61.78373337,179.3914295,179.7969104,13.593569,0.122825782,1620000000000 ,1620000000000 ,1620000000000 ,1616812401120 -1616812401150 ,112.5729926,26.8853957,61.78533173,179.3890252,179.7909135,13.592834,0.12280929,1620000000000 ,1620000000000 ,1620000000000 ,1616812401130 -1616812401159 ,112.5729926,26.88539447,61.78689957,179.386539,179.7997473,13.589612,0.122780393,1620000000000 ,1620000000000 ,1620000000000 ,1616812401140 -1616812401170 ,112.5729926,26.88539324,61.78845978,179.3834791,179.7981559,13.586102,0.122757112,1620000000000 ,1620000000000 ,1620000000000 ,1616812401150 -1616812401181 ,112.5729926,26.88539201,61.79002762,179.3814027,179.7781104,13.580255,0.12271069,1620000000000 ,1620000000000 ,1620000000000 ,1616812401160 -1616812401192 ,112.5729926,26.88539079,61.79156876,179.379463,179.7683652,13.572598,0.122640096,1620000000000 ,1620000000000 ,1620000000000 ,1616812401170 -1616812401200 ,112.5729926,26.88538956,61.7930603,179.3765396,179.7803581,13.568446,0.122597059,1620000000000 ,1620000000000 ,1620000000000 ,1616812401180 -1616812401211 ,112.5729926,26.88538833,61.79444885,179.373507,179.778289,13.56299,0.122549153,1620000000000 ,1620000000000 ,1620000000000 ,1616812401190 -1616812401220 ,112.5729926,26.88538711,61.79579163,179.3684254,179.9134284,13.5703335,0.122648422,1620000000000 ,1620000000000 ,1620000000000 ,1616812401200 -1616812401230 ,112.5729926,26.88538588,61.79715729,179.364136,180.1486842,13.567779,0.122875312,1620000000000 ,1620000000000 ,1620000000000 ,1616812401210 -1616812401241 ,112.5729926,26.88538465,61.79848862,179.3600926,180.1356565,13.566048,0.122856208,1620000000000 ,1620000000000 ,1620000000000 ,1616812401220 -1616812401251 ,112.5729926,26.88538342,61.79978561,179.3574698,180.132386,13.563801,0.122835138,1620000000000 ,1620000000000 ,1620000000000 ,1616812401230 -1616812401263 ,112.5729926,26.88538219,61.80103302,179.3548196,180.1301445,13.558683,0.122796066,1620000000000 ,1620000000000 ,1620000000000 ,1616812401240 -1616812401272 ,112.5729926,26.88538097,61.80223083,179.3527159,180.1265821,13.551782,0.122736029,1620000000000 ,1620000000000 ,1620000000000 ,1616812401250 -1616812401282 ,112.5729926,26.88537974,61.80341721,179.3496014,180.1219973,13.545625,0.122675358,1620000000000 ,1620000000000 ,1620000000000 ,1616812401260 -1616812401291 ,112.5729926,26.88537851,61.80457687,179.3487271,180.1088113,13.539535,0.122618995,1620000000000 ,1620000000000 ,1620000000000 ,1616812401270 -1616812401301 ,112.5729926,26.88537729,61.80566025,179.3474704,180.0996701,13.535775,0.122576763,1620000000000 ,1620000000000 ,1620000000000 ,1616812401280 -1616812401314 ,112.5729926,26.88537606,61.80665207,179.3465961,180.0988341,13.533524,0.122547563,1620000000000 ,1620000000000 ,1620000000000 ,1616812401290 -1616812401324 ,112.5729926,26.88537484,61.80758667,179.3461316,180.0935066,13.532321,0.122537464,1620000000000 ,1620000000000 ,1620000000000 ,1616812401300 -1616812401335 ,112.5729926,26.88537361,61.80849838,179.3429078,180.0947972,13.522539,0.122462463,1620000000000 ,1620000000000 ,1620000000000 ,1616812401310 -1616812401342 ,112.5729926,26.88537239,61.80955887,179.3388916,180.1108098,13.522128,0.122448074,1620000000000 ,1620000000000 ,1620000000000 ,1616812401320 -1616812401352 ,112.5729925,26.88537117,61.81064224,179.3357498,180.0567814,13.51093,0.12235681,1620000000000 ,1620000000000 ,1620000000000 ,1616812401330 -1616812401362 ,112.5729925,26.88536994,61.81162262,179.3309686,180.0646542,13.507118,0.122306761,1620000000000 ,1620000000000 ,1620000000000 ,1616812401340 -1616812401373 ,112.5729925,26.88536872,61.81245041,179.330067,180.1222891,13.505672,0.122288056,1620000000000 ,1620000000000 ,1620000000000 ,1616812401350 -1616812401382 ,112.5729925,26.8853675,61.8130722,179.3309959,180.1058265,13.503951,0.122253597,1620000000000 ,1620000000000 ,1620000000000 ,1616812401360 -1616812401393 ,112.5729925,26.88536627,61.81369781,179.3293567,180.0759407,13.502231,0.122240536,1620000000000 ,1620000000000 ,1620000000000 ,1616812401370 -1616812401402 ,112.5729925,26.88536505,61.81450272,179.3257504,180.0458385,13.497655,0.12220663,1620000000000 ,1620000000000 ,1620000000000 ,1616812401380 -1616812401413 ,112.5729925,26.88536383,61.81549835,179.3221987,180.0611883,13.489404,0.122146087,1620000000000 ,1620000000000 ,1620000000000 ,1616812401390 -1616812401423 ,112.5729925,26.88536261,61.81661224,179.3215703,180.0767813,13.479957,0.122066546,1620000000000 ,1620000000000 ,1620000000000 ,1616812401400 -1616812401434 ,112.5729925,26.88536139,61.81773376,179.3218708,180.0705195,13.475616,0.122010649,1620000000000 ,1620000000000 ,1620000000000 ,1616812401420 -1616812401445 ,112.5729925,26.88536017,61.81885529,179.3215976,180.0597016,13.472927,0.121981345,1620000000000 ,1620000000000 ,1620000000000 ,1616812401420 -1616812401453 ,112.5729925,26.88535895,61.81997681,179.3204775,180.0387255,13.470382,0.121958154,1620000000000 ,1620000000000 ,1620000000000 ,1616812401440 -1616812401467 ,112.5729925,26.88535651,61.82224655,179.3172263,179.9649318,13.461882,0.243666179,1620000000000 ,1620000000000 ,1620000000000 ,1616812401450 -1616812401475 ,112.5729925,26.88535651,61.82224655,179.3172263,-400,13.461882,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812401460 -1616812401484 ,112.5729925,26.8853553,61.82346344,179.3172809,179.7734385,13.455772,0.121544842,1620000000000 ,1620000000000 ,1620000000000 ,1616812401460 -1616812401493 ,112.5729925,26.88535287,61.82639694,179.3113796,179.7765724,13.442467,0.242916764,1620000000000 ,1620000000000 ,1620000000000 ,1616812401480 -1616812401503 ,112.5729925,26.88535287,61.82639694,179.3113796,-400,13.442467,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812401490 -1616812401515 ,112.5729926,26.88535044,61.82971573,179.3086749,179.7534815,13.430653,0.242702597,1620000000000 ,1620000000000 ,1620000000000 ,1616812401500 -1616812401524 ,112.5729926,26.88534923,61.83141708,179.3082104,179.7651055,13.426625,0.121291757,1620000000000 ,1620000000000 ,1620000000000 ,1616812401510 -1616812401534 ,112.5729926,26.88534802,61.83321381,179.3044675,179.7712817,13.421699,0.121249905,1620000000000 ,1620000000000 ,1620000000000 ,1616812401520 -1616812401546 ,112.5729926,26.8853468,61.83519363,179.3041123,179.7605592,13.415492,0.121205606,1620000000000 ,1620000000000 ,1620000000000 ,1616812401530 -1616812401555 ,112.5729926,26.88534559,61.83733749,179.3035113,179.7615258,13.409217,0.121152933,1620000000000 ,1620000000000 ,1620000000000 ,1616812401540 -1616812401564 ,112.5729926,26.88534438,61.83955383,179.3051778,179.7640838,13.404133,0.121108506,1620000000000 ,1620000000000 ,1620000000000 ,1616812401550 -1616812401574 ,112.5729926,26.88534317,61.84177399,179.3045495,179.7691599,13.399483,0.121067642,1620000000000 ,1620000000000 ,1620000000000 ,1616812401560 -1616812401585 ,112.5729926,26.88534196,61.84405518,179.3036205,179.7679908,13.394006,0.121025747,1620000000000 ,1620000000000 ,1620000000000 ,1616812401570 -1616812401598 ,112.5729926,26.88534075,61.84638214,179.3017901,179.7568137,13.388203,0.120976062,1620000000000 ,1620000000000 ,1620000000000 ,1616812401580 -1616812401604 ,112.5729926,26.88533954,61.84869766,179.3008065,179.7567919,13.382042,0.120927042,1620000000000 ,1620000000000 ,1620000000000 ,1616812401590 -1616812401615 ,112.5729926,26.88533833,61.85093307,179.2999869,179.7635286,13.376671,0.120876465,1620000000000 ,1620000000000 ,1620000000000 ,1616812401600 -1616812401628 ,112.5729926,26.88533713,61.85309601,179.2987028,179.7720334,13.37251,0.120835701,1620000000000 ,1620000000000 ,1620000000000 ,1616812401610 -1616812401640 ,112.5729926,26.88533592,61.85522842,179.2994951,179.7638942,13.368821,0.120801906,1620000000000 ,1620000000000 ,1620000000000 ,1616812401620 -1616812401648 ,112.5729926,26.88533471,61.8572998,179.2994132,179.7511904,13.365035,0.120771555,1620000000000 ,1620000000000 ,1620000000000 ,1616812401630 -1616812401655 ,112.5729926,26.8853335,61.85931396,179.2979652,179.74495,13.359711,0.120728404,1620000000000 ,1620000000000 ,1620000000000 ,1616812401640 -1616812401665 ,112.5729926,26.8853323,61.86127853,179.2972002,179.7423788,13.353708,0.120673278,1620000000000 ,1620000000000 ,1620000000000 ,1616812401650 -1616812401674 ,112.5729926,26.88533109,61.86318207,179.2994132,179.7370983,13.347723,0.120619728,1620000000000 ,1620000000000 ,1620000000000 ,1616812401660 -1616812401685 ,112.5729926,26.88532988,61.86494827,179.3024458,179.7305095,13.343651,0.120576315,1620000000000 ,1620000000000 ,1620000000000 ,1616812401670 -1616812401695 ,112.5729927,26.88532868,61.866539,179.3045768,179.7281592,13.340449,0.120541419,1620000000000 ,1620000000000 ,1620000000000 ,1616812401680 -1616812401705 ,112.5729927,26.88532747,61.86798859,179.3092213,179.7319685,13.336538,0.120504186,1620000000000 ,1620000000000 ,1620000000000 ,1616812401690 -1616812401715 ,112.5729927,26.88532627,61.86934662,179.312855,179.733996,13.332285,0.12046459,1620000000000 ,1620000000000 ,1620000000000 ,1616812401700 -1616812401725 ,112.5729927,26.88532506,61.87063599,179.3176088,179.7293448,13.328229,0.120426278,1620000000000 ,1620000000000 ,1620000000000 ,1616812401710 -1616812401735 ,112.5729927,26.88532386,61.8718605,179.3223353,179.7272893,13.324014,0.120385313,1620000000000 ,1620000000000 ,1620000000000 ,1616812401720 -1616812401746 ,112.5729927,26.88532266,61.87298965,179.3269525,179.722337,13.320676,0.120349845,1620000000000 ,1620000000000 ,1620000000000 ,1616812401730 -1616812401761 ,112.5729927,26.88532145,61.87400436,179.3318702,179.729651,13.318137,0.120322039,1620000000000 ,1620000000000 ,1620000000000 ,1616812401740 -1616812401766 ,112.5729927,26.88532025,61.87489319,179.3368153,179.7319179,13.314372,0.120284021,1620000000000 ,1620000000000 ,1620000000000 ,1616812401750 -1616812401777 ,112.5729927,26.88531905,61.87567902,179.3427712,179.725089,13.309507,0.120242515,1620000000000 ,1620000000000 ,1620000000000 ,1616812401760 -1616812401788 ,112.5729927,26.88531785,61.87637329,179.3500385,179.7212762,13.304505,0.120190339,1620000000000 ,1620000000000 ,1620000000000 ,1616812401770 -1616812401800 ,112.5729927,26.88531665,61.87699127,179.3587538,179.7228353,13.300587,0.120149934,1620000000000 ,1620000000000 ,1620000000000 ,1616812401780 -1616812401807 ,112.5729927,26.88531544,61.87755966,179.3680156,179.7257569,13.297059,0.120113173,1620000000000 ,1620000000000 ,1620000000000 ,1616812401790 -1616812401820 ,112.5729927,26.88531424,61.87813187,179.3766489,179.7233933,13.29338,0.120079988,1620000000000 ,1620000000000 ,1620000000000 ,1616812401800 -1616812401831 ,112.5729927,26.88531304,61.87872696,179.3861566,179.7246083,13.28839,0.120039152,1620000000000 ,1620000000000 ,1620000000000 ,1616812401810 -1616812401840 ,112.5729927,26.88531184,61.87931061,179.3945167,179.7274359,13.281734,0.119978708,1620000000000 ,1620000000000 ,1620000000000 ,1616812401820 -1616812401848 ,112.5729927,26.88531064,61.87986374,179.4056363,179.7270983,13.276727,0.119923965,1620000000000 ,1620000000000 ,1620000000000 ,1616812401830 -1616812401858 ,112.5729927,26.88530945,61.88040924,179.4141603,179.7288866,13.272715,0.119884265,1620000000000 ,1620000000000 ,1620000000000 ,1616812401840 -1616812401868 ,112.5729927,26.88530825,61.88097763,179.4257443,179.7342262,13.270525,0.119859088,1620000000000 ,1620000000000 ,1620000000000 ,1616812401850 -1616812401878 ,112.5729928,26.88530705,61.88157272,179.4380933,179.7502418,13.267443,0.119836243,1620000000000 ,1620000000000 ,1620000000000 ,1616812401860 -1616812401889 ,112.5729928,26.88530585,61.88221359,179.4499778,179.7628244,13.2617235,0.119788748,1620000000000 ,1620000000000 ,1620000000000 ,1616812401870 -1616812401899 ,112.5729928,26.88530465,61.8829422,179.4615345,179.7720074,13.25468,0.119726994,1620000000000 ,1620000000000 ,1620000000000 ,1616812401880 -1616812401910 ,112.5729928,26.88530346,61.8837738,179.4756047,179.7890998,13.249035,0.119674958,1620000000000 ,1620000000000 ,1620000000000 ,1616812401890 -1616812401919 ,112.5729928,26.88530226,61.88467789,179.4910956,179.8093522,13.243969,0.119629222,1620000000000 ,1620000000000 ,1620000000000 ,1616812401900 -1616812401932 ,112.5729928,26.88530106,61.88564301,179.5045374,179.8374281,13.237526,0.119574715,1620000000000 ,1620000000000 ,1620000000000 ,1616812401910 -1616812401940 ,112.5729928,26.88529987,61.88667679,179.5191813,179.8571549,13.23133,0.119515568,1620000000000 ,1620000000000 ,1620000000000 ,1616812401920 -1616812401950 ,112.5729928,26.88529867,61.88778305,179.5317489,179.8705069,13.227261,0.11947638,1620000000000 ,1620000000000 ,1620000000000 ,1616812401930 -1616812401961 ,112.5729928,26.88529748,61.88893509,179.5455185,179.8905147,13.2252245,0.119454691,1620000000000 ,1620000000000 ,1620000000000 ,1616812401940 -1616812401969 ,112.5729928,26.88529629,61.89011765,179.5566381,179.9118615,13.221685,0.119424079,1620000000000 ,1620000000000 ,1620000000000 ,1616812401950 -1616812401985 ,112.5729928,26.88529509,61.89133835,179.5677303,179.9437262,13.217452,0.119390487,1620000000000 ,1620000000000 ,1620000000000 ,1616812401960 -1616812401998 ,112.5729928,26.8852939,61.89263916,179.5777297,179.9642261,13.210728,0.119336497,1620000000000 ,1620000000000 ,1620000000000 ,1616812401970 -1616812402001 ,112.5729928,26.88529271,61.89404678,179.5886853,179.9689626,13.203542,0.11927339,1620000000000 ,1620000000000 ,1620000000000 ,1616812401980 -1616812402011 ,112.5729928,26.88529151,61.89556503,179.5978105,179.9768739,13.197242,0.119217458,1620000000000 ,1620000000000 ,1620000000000 ,1616812401990 -1616812402020 ,112.5729928,26.88529032,61.89719391,179.6072361,179.997781,13.192988,0.119178336,1620000000000 ,1620000000000 ,1620000000000 ,1616812402000 -1616812402030 ,112.5729928,26.88528913,61.89892578,179.6197217,180.0189265,13.187373,0.119136163,1620000000000 ,1620000000000 ,1620000000000 ,1616812402010 -1616812402041 ,112.5729928,26.88528794,61.90075302,179.6280545,180.0383273,13.180297,0.119074194,1620000000000 ,1620000000000 ,1620000000000 ,1616812402020 -1616812402050 ,112.5729928,26.88528675,61.90267944,179.6376988,180.0554919,13.1753435,0.119027277,1620000000000 ,1620000000000 ,1620000000000 ,1616812402030 -1616812402061 ,112.5729928,26.88528556,61.90469742,179.6441465,180.0766514,13.171552,0.118995427,1620000000000 ,1620000000000 ,1620000000000 ,1616812402040 -1616812402071 ,112.5729928,26.88528437,61.9067688,179.6517963,180.0981666,13.167646,0.118963362,1620000000000 ,1620000000000 ,1620000000000 ,1616812402050 -1616812402081 ,112.5729928,26.88528318,61.90884399,179.6563315,180.1261959,13.161805,0.118916517,1620000000000 ,1620000000000 ,1620000000000 ,1616812402060 -1616812402091 ,112.5729928,26.88528199,61.91091156,179.6605389,180.1564509,13.156662,0.118870122,1620000000000 ,1620000000000 ,1620000000000 ,1616812402070 -1616812402101 ,112.5729928,26.8852808,61.91294861,179.6640633,180.1708084,13.151618,0.118824495,1620000000000 ,1620000000000 ,1620000000000 ,1616812402080 -1616812402111 ,112.5729928,26.88527962,61.91495514,179.6636535,180.1812943,13.147988,0.118789645,1620000000000 ,1620000000000 ,1620000000000 ,1616812402090 -1616812402121 ,112.5729928,26.88527843,61.91693497,179.6637901,180.198471,13.141035,0.118737706,1620000000000 ,1620000000000 ,1620000000000 ,1616812402100 -1616812402131 ,112.5729928,26.88527724,61.91893768,179.6627246,180.229578,13.135682,0.118684916,1620000000000 ,1620000000000 ,1620000000000 ,1616812402110 -1616812402144 ,112.5729928,26.88527605,61.92102051,179.6643092,180.2412104,13.131866,0.11865289,1620000000000 ,1620000000000 ,1620000000000 ,1616812402120 -1616812402160 ,112.5729928,26.88527487,61.92318344,179.6649649,180.2379018,13.126996,0.118617431,1620000000000 ,1620000000000 ,1620000000000 ,1616812402130 -1616812402165 ,112.5729927,26.88527368,61.92536926,179.6644731,180.2343801,13.124092,0.118588096,1620000000000 ,1620000000000 ,1620000000000 ,1616812402140 -1616812402174 ,112.5729927,26.8852725,61.9274559,179.6644458,180.2241432,13.118834,0.118546107,1620000000000 ,1620000000000 ,1620000000000 ,1616812402150 -1616812402189 ,112.5729927,26.88527131,61.92938232,179.6633803,180.2252982,13.1151285,0.118505421,1620000000000 ,1620000000000 ,1620000000000 ,1616812402160 -1616812402200 ,112.5729927,26.88527013,61.93120575,179.6594461,180.2322256,13.109398,0.11845973,1620000000000 ,1620000000000 ,1620000000000 ,1616812402170 -1616812402204 ,112.5729927,26.88526894,61.93304825,179.659009,180.2197001,13.101557,0.118398207,1620000000000 ,1620000000000 ,1620000000000 ,1616812402180 -1616812402215 ,112.5729927,26.88526776,61.93491745,179.6587357,180.1710408,13.092315,0.118317476,1620000000000 ,1620000000000 ,1620000000000 ,1616812402190 -1616812402222 ,112.5729927,26.88526658,61.93672943,179.6493647,180.0883509,13.0845,0.11820529,1620000000000 ,1620000000000 ,1620000000000 ,1616812402200 -1616812402231 ,112.5729927,26.8852654,61.93832779,179.65084,180.0125334,13.08305,0.11808532,1620000000000 ,1620000000000 ,1620000000000 ,1616812402210 -1616812402242 ,112.5729927,26.88526422,61.9397583,179.6528345,180.0276983,13.082765,0.118084069,1620000000000 ,1620000000000 ,1620000000000 ,1616812402220 -1616812402252 ,112.5729927,26.88526304,61.94111633,179.6563042,180.0203604,13.081514,0.118071965,1620000000000 ,1620000000000 ,1620000000000 ,1616812402230 -1616812402263 ,112.5729927,26.88526186,61.94250107,179.6577249,180.0028369,13.07363,0.118018295,1620000000000 ,1620000000000 ,1620000000000 ,1616812402240 -1616812402272 ,112.5729927,26.88526068,61.94389343,179.6611673,179.9850692,13.06348,0.117933539,1620000000000 ,1620000000000 ,1620000000000 ,1616812402250 -1616812402282 ,112.5729927,26.8852595,61.94520187,179.6650195,179.9842225,13.057928,0.117863935,1620000000000 ,1620000000000 ,1620000000000 ,1616812402260 -1616812402294 ,112.5729927,26.88525832,61.9463501,179.668981,179.9838552,13.056854,0.117840738,1620000000000 ,1620000000000 ,1620000000000 ,1616812402270 -1616812402303 ,112.5729927,26.88525714,61.94732666,179.6714672,179.9833117,13.055744,0.117827576,1620000000000 ,1620000000000 ,1620000000000 ,1616812402280 -1616812402313 ,112.5729927,26.88525596,61.9481926,179.6723142,179.9787533,13.051216,0.117795011,1620000000000 ,1620000000000 ,1620000000000 ,1616812402290 -1616812402322 ,112.5729927,26.88525479,61.94903564,179.6699919,179.9658552,13.04289,0.117721438,1620000000000 ,1620000000000 ,1620000000000 ,1616812402310 -1616812402332 ,112.5729927,26.88525361,61.94989014,179.6729152,179.9543365,13.03763,0.117662637,1620000000000 ,1620000000000 ,1620000000000 ,1616812402320 -1616812402344 ,112.5729927,26.88525243,61.95065308,179.6758659,179.9546346,13.038856,0.11765681,1620000000000 ,1620000000000 ,1620000000000 ,1616812402330 -1616812402355 ,112.5729927,26.88525008,61.95159149,179.6857013,179.9623156,13.03531,0.235275601,1620000000000 ,1620000000000 ,1620000000000 ,1616812402340 -1616812402365 ,112.5729927,26.8852489,61.95185852,179.6911382,179.9426972,13.029696,0.117571985,1620000000000 ,1620000000000 ,1620000000000 ,1616812402350 -1616812402374 ,112.5729927,26.88524773,61.95211411,179.6952636,179.9214179,13.02482,0.117521305,1620000000000 ,1620000000000 ,1620000000000 ,1616812402360 -1616812402384 ,112.5729927,26.88524773,61.95211411,179.6952636,-400,13.02482,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812402370 -1616812402394 ,112.5729927,26.88524538,61.95275879,179.7039516,179.9253874,13.01493,0.234920155,1620000000000 ,1620000000000 ,1620000000000 ,1616812402380 -1616812402404 ,112.5729927,26.88524538,61.95275879,179.7039516,-400,13.01493,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812402390 -1616812402413 ,112.5729927,26.88524421,61.95313644,179.7089786,179.9471942,13.008091,0.117377035,1620000000000 ,1620000000000 ,1620000000000 ,1616812402390 -1616812402423 ,112.5729927,26.88524186,61.95419693,179.7180764,179.9341493,12.997072,0.234573831,1620000000000 ,1620000000000 ,1620000000000 ,1616812402410 -1616812402434 ,112.5729927,26.88524069,61.95485306,179.7223931,179.928693,12.99715,0.117261541,1620000000000 ,1620000000000 ,1620000000000 ,1616812402420 -1616812402446 ,112.5729927,26.88523952,61.955513,179.725453,179.9433751,12.99487,0.117248155,1620000000000 ,1620000000000 ,1620000000000 ,1616812402430 -1616812402454 ,112.5729927,26.88523834,61.95622635,179.7300156,179.9551871,12.988385,0.117203353,1620000000000 ,1620000000000 ,1620000000000 ,1616812402440 -1616812402464 ,112.5729927,26.88523717,61.95705032,179.7334034,180.0110566,12.979458,0.117184922,1620000000000 ,1620000000000 ,1620000000000 ,1616812402450 -1616812402474 ,112.5729927,26.885236,61.95801926,179.7362174,180.0631514,12.972494,0.1171771,1620000000000 ,1620000000000 ,1620000000000 ,1616812402460 -1616812402484 ,112.5729927,26.88523483,61.95907974,179.7380206,180.0711356,12.966806,0.117129845,1620000000000 ,1620000000000 ,1620000000000 ,1616812402470 -1616812402500 ,112.5729927,26.88523366,61.96022034,179.7410805,180.0882604,12.961517,0.117082923,1620000000000 ,1620000000000 ,1620000000000 ,1616812402480 -1616812402504 ,112.5729927,26.88523249,61.96146774,179.7457797,180.0944759,12.957254,0.117042623,1620000000000 ,1620000000000 ,1620000000000 ,1616812402490 -1616812402515 ,112.5729927,26.88523249,61.96146774,179.7457797,-400,12.957254,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812402490 -1616812402524 ,112.5729927,26.88523015,61.96439362,179.7531563,180.1190937,12.951362,0.23401483,1620000000000 ,1620000000000 ,1620000000000 ,1616812402510 -1616812402534 ,112.5729927,26.88522898,61.96599579,179.7545223,180.1403369,12.945959,0.116957292,1620000000000 ,1620000000000 ,1620000000000 ,1616812402520 -1616812402547 ,112.5729927,26.88522781,61.96767807,179.7549321,180.1547364,12.937963,0.116892157,1620000000000 ,1620000000000 ,1620000000000 ,1616812402530 -1616812402555 ,112.5729927,26.88522664,61.96942902,179.7563255,180.1642859,12.929706,0.116822082,1620000000000 ,1620000000000 ,1620000000000 ,1616812402540 -1616812402565 ,112.5729927,26.88522547,61.97119141,179.7568992,180.1620894,12.923768,0.116763526,1620000000000 ,1620000000000 ,1620000000000 ,1616812402550 -1616812402574 ,112.5729927,26.88522431,61.97285843,179.7582379,180.1837583,12.919664,0.116724877,1620000000000 ,1620000000000 ,1620000000000 ,1616812402560 -1616812402585 ,112.5729927,26.88522314,61.97442245,179.7576096,180.2020231,12.915511,0.116681814,1620000000000 ,1620000000000 ,1620000000000 ,1616812402570 -1616812402597 ,112.5729927,26.88522197,61.97600555,179.7546862,180.2078377,12.910766,0.11664677,1620000000000 ,1620000000000 ,1620000000000 ,1616812402580 -1616812402609 ,112.5729927,26.88522081,61.97769547,179.7550687,180.2241413,12.904488,0.116591698,1620000000000 ,1620000000000 ,1620000000000 ,1616812402590 -1616812402618 ,112.5729927,26.88521964,61.9794426,179.7564348,180.225709,12.901559,0.116566134,1620000000000 ,1620000000000 ,1620000000000 ,1616812402600 -1616812402625 ,112.5729927,26.88521848,61.98122787,179.7555605,180.2267293,12.894792,0.116510917,1620000000000 ,1620000000000 ,1620000000000 ,1616812402610 -1616812402636 ,112.5729927,26.88521731,61.98303223,179.7547955,180.2291012,12.891174,0.116470752,1620000000000 ,1620000000000 ,1620000000000 ,1616812402620 -1616812402646 ,112.5729927,26.88521615,61.98475266,179.7552873,180.2224383,12.888962,0.116449115,1620000000000 ,1620000000000 ,1620000000000 ,1616812402630 -1616812402655 ,112.5729927,26.88521498,61.98629761,179.7566807,180.2202239,12.886551,0.116423609,1620000000000 ,1620000000000 ,1620000000000 ,1616812402640 -1616812402666 ,112.5729927,26.88521382,61.98775101,179.7546316,180.2267817,12.878759,0.116366965,1620000000000 ,1620000000000 ,1620000000000 ,1616812402650 -1616812402675 ,112.5729927,26.88521266,61.989254,179.753812,180.2164974,12.868869,0.116280098,1620000000000 ,1620000000000 ,1620000000000 ,1616812402660 -1616812402686 ,112.5729927,26.88521149,61.99082184,179.7514897,180.198264,12.863107,0.116219807,1620000000000 ,1620000000000 ,1620000000000 ,1616812402670 -1616812402697 ,112.5729927,26.88521033,61.99232864,179.7547682,180.1998088,12.861454,0.11619288,1620000000000 ,1620000000000 ,1620000000000 ,1616812402680 -1616812402714 ,112.5729927,26.88520917,61.99367905,179.7530743,180.2183587,12.861013,0.11618236,1620000000000 ,1620000000000 ,1620000000000 ,1616812402690 -1616812402717 ,112.5729927,26.88520801,61.99489212,179.7531563,180.2156279,12.857533,0.116155782,1620000000000 ,1620000000000 ,1620000000000 ,1616812402700 -1616812402726 ,112.5729926,26.88520685,61.99607468,179.7525279,180.2041964,12.853619,0.116116664,1620000000000 ,1620000000000 ,1620000000000 ,1616812402710 -1616812402737 ,112.5729926,26.88520569,61.99729156,179.7528558,180.1966727,12.847355,0.11606635,1620000000000 ,1620000000000 ,1620000000000 ,1616812402720 -1616812402748 ,112.5729926,26.88520453,61.99848938,179.7551234,180.1940343,12.842924,0.116022269,1620000000000 ,1620000000000 ,1620000000000 ,1616812402730 -1616812402756 ,112.5729926,26.88520337,61.99960709,179.7597406,180.2065645,12.839813,0.115988068,1620000000000 ,1620000000000 ,1620000000000 ,1616812402740 -1616812402767 ,112.5729926,26.88520221,62.00062561,179.7641392,180.1943303,12.835838,0.115950759,1620000000000 ,1620000000000 ,1620000000000 ,1616812402750 -1616812402777 ,112.5729926,26.88520105,62.00159836,179.7638114,180.1771485,12.830033,0.115899194,1620000000000 ,1620000000000 ,1620000000000 ,1616812402760 -1616812402794 ,112.5729926,26.88519989,62.00260162,179.7623087,180.1770774,12.827496,0.115871233,1620000000000 ,1620000000000 ,1620000000000 ,1616812402770 -1616812402804 ,112.5729926,26.88519873,62.00363159,179.7642758,180.1911561,12.824009,0.115841391,1620000000000 ,1620000000000 ,1620000000000 ,1616812402780 -1616812402809 ,112.5729926,26.88519757,62.00471115,179.7663522,180.2042629,12.817839,0.115795016,1620000000000 ,1620000000000 ,1620000000000 ,1616812402790 -1616812402818 ,112.5729926,26.88519642,62.00592041,179.7674177,180.193086,12.81098,0.11573775,1620000000000 ,1620000000000 ,1620000000000 ,1616812402800 -1616812402827 ,112.5729926,26.88519526,62.00725174,179.7685379,180.1727402,12.805658,0.115687522,1620000000000 ,1620000000000 ,1620000000000 ,1616812402810 -1616812402838 ,112.5729926,26.8851941,62.00858688,179.7707235,180.1611325,12.803272,0.115659516,1620000000000 ,1620000000000 ,1620000000000 ,1616812402820 -1616812402849 ,112.5729926,26.88519295,62.00978851,179.7735102,180.1772086,12.80093,0.115636602,1620000000000 ,1620000000000 ,1620000000000 ,1616812402830 -1616812402861 ,112.5729926,26.88519179,62.01087952,179.7765975,180.1901881,12.795546,0.115591422,1620000000000 ,1620000000000 ,1620000000000 ,1616812402840 -1616812402869 ,112.5729926,26.88519063,62.01198578,179.7763243,180.187824,12.791394,0.115553811,1620000000000 ,1620000000000 ,1620000000000 ,1616812402850 -1616812402879 ,112.5729926,26.88518948,62.01321793,179.7776357,180.1780316,12.785179,0.115505862,1620000000000 ,1620000000000 ,1620000000000 ,1616812402860 -1616812402888 ,112.5729926,26.88518832,62.01453018,179.7799033,180.1652679,12.780996,0.115468253,1620000000000 ,1620000000000 ,1620000000000 ,1616812402870 -1616812402898 ,112.5729926,26.88518717,62.01587677,179.7826627,180.1605334,12.773355,0.115407924,1620000000000 ,1620000000000 ,1620000000000 ,1616812402880 -1616812402909 ,112.5729926,26.88518602,62.01726532,179.7855041,180.1632421,12.76679,0.11534994,1620000000000 ,1620000000000 ,1620000000000 ,1616812402890 -1616812402918 ,112.5729926,26.88518486,62.01873398,179.7881268,180.167191,12.761535,0.115303545,1620000000000 ,1620000000000 ,1620000000000 ,1616812402900 -1616812402928 ,112.5729926,26.88518371,62.02025604,179.792061,180.1701952,12.758168,0.115271341,1620000000000 ,1620000000000 ,1620000000000 ,1616812402910 -1616812402938 ,112.5729926,26.88518256,62.02178192,179.793673,180.1665401,12.753695,0.115236435,1620000000000 ,1620000000000 ,1620000000000 ,1616812402920 -1616812402949 ,112.5729926,26.88518141,62.02331161,179.7952849,180.170168,12.747715,0.115185904,1620000000000 ,1620000000000 ,1620000000000 ,1616812402930 -1616812402958 ,112.5729926,26.88518026,62.02478027,179.7975798,180.1848199,12.7437935,0.115145596,1620000000000 ,1620000000000 ,1620000000000 ,1616812402940 -1616812402970 ,112.5729926,26.8851791,62.02613831,179.8022244,180.1987758,12.741388,0.115118139,1620000000000 ,1620000000000 ,1620000000000 ,1616812402950 -1616812402979 ,112.5729926,26.88517795,62.02737427,179.8041641,180.2018111,12.73873,0.115093734,1620000000000 ,1620000000000 ,1620000000000 ,1616812402960 -1616812402991 ,112.5729926,26.8851768,62.02857208,179.8038636,180.1905971,12.733799,0.115058848,1620000000000 ,1620000000000 ,1620000000000 ,1616812402970 -1616812403001 ,112.5729925,26.88517565,62.02973938,179.805093,180.1798046,12.727494,0.115002673,1620000000000 ,1620000000000 ,1620000000000 ,1616812402980 -1616812403010 ,112.5729925,26.8851745,62.03084946,179.8057214,180.18964,12.722907,0.11495474,1620000000000 ,1620000000000 ,1620000000000 ,1616812402990 -1616812403020 ,112.5729925,26.88517335,62.03185654,179.8069509,180.1939041,12.718479,0.114911852,1620000000000 ,1620000000000 ,1620000000000 ,1616812403000 -1616812403030 ,112.5729925,26.88517221,62.03276825,179.8094917,180.1936437,12.715115,0.114878437,1620000000000 ,1620000000000 ,1620000000000 ,1616812403010 -1616812403039 ,112.5729925,26.88517106,62.03362274,179.810885,180.1868641,12.712091,0.11484849,1620000000000 ,1620000000000 ,1620000000000 ,1616812403020 -1616812403050 ,112.5729925,26.88516991,62.03442383,179.8111582,180.1801972,12.708632,0.114817199,1620000000000 ,1620000000000 ,1620000000000 ,1616812403030 -1616812403061 ,112.5729925,26.88516876,62.03515244,179.8127702,180.1832736,12.703766,0.114772698,1620000000000 ,1620000000000 ,1620000000000 ,1616812403040 -1616812403070 ,112.5729925,26.88516761,62.03581619,179.8146826,180.189179,12.699866,0.114733041,1620000000000 ,1620000000000 ,1620000000000 ,1616812403050 -1616812403080 ,112.5729925,26.88516647,62.03643799,179.8164858,180.2014148,12.694117,0.114687928,1620000000000 ,1620000000000 ,1620000000000 ,1616812403060 -1616812403089 ,112.5729925,26.88516532,62.03701401,179.8152017,180.2034974,12.691098,0.114648954,1620000000000 ,1620000000000 ,1620000000000 ,1616812403070 -1616812403100 ,112.5729925,26.88516417,62.03753281,179.8168956,180.2123022,12.687202,0.114616084,1620000000000 ,1620000000000 ,1620000000000 ,1616812403080 -1616812403112 ,112.5729925,26.88516303,62.03799057,179.8179065,180.2249068,12.682717,0.114575492,1620000000000 ,1620000000000 ,1620000000000 ,1616812403090 -1616812403120 ,112.5729925,26.88516188,62.03840637,179.8168136,180.2290326,12.6779175,0.114531163,1620000000000 ,1620000000000 ,1620000000000 ,1616812403100 -1616812403132 ,112.5729925,26.88516074,62.03884125,179.8156935,180.234118,12.67317,0.114486203,1620000000000 ,1620000000000 ,1620000000000 ,1616812403110 -1616812403142 ,112.5729925,26.88515959,62.03930283,179.814628,180.2348147,12.670398,0.11445686,1620000000000 ,1620000000000 ,1620000000000 ,1616812403120 -1616812403156 ,112.5729925,26.88515845,62.03977203,179.8176333,180.2396747,12.667231,0.11443253,1620000000000 ,1620000000000 ,1620000000000 ,1616812403130 -1616812403169 ,112.5729925,26.88515731,62.04026413,179.8176059,180.2437815,12.660993,0.114381832,1620000000000 ,1620000000000 ,1620000000000 ,1616812403140 -1616812403172 ,112.5729925,26.88515616,62.040802,179.8172781,180.2450715,12.653336,0.114314306,1620000000000 ,1620000000000 ,1620000000000 ,1616812403150 -1616812403182 ,112.5729925,26.88515502,62.04136276,179.8169229,180.2345655,12.647436,0.114257376,1620000000000 ,1620000000000 ,1620000000000 ,1616812403160 -1616812403190 ,112.5729925,26.88515388,62.04184723,179.8189173,180.2364237,12.644957,0.114221049,1620000000000 ,1620000000000 ,1620000000000 ,1616812403170 -1616812403201 ,112.5729925,26.88515274,62.04222107,179.8200375,180.2477994,12.643747,0.114205275,1620000000000 ,1620000000000 ,1620000000000 ,1616812403180 -1616812403216 ,112.5729925,26.88515159,62.04254532,179.8204473,180.2437398,12.642856,0.114195274,1620000000000 ,1620000000000 ,1620000000000 ,1616812403190 -1616812403222 ,112.5729925,26.88515045,62.04319763,179.8245181,180.2912875,12.653788,0.114320726,1620000000000 ,1620000000000 ,1620000000000 ,1616812403200 -1616812403232 ,112.5729924,26.8851493,62.044384,179.8244908,180.364022,12.647269,0.114569653,1620000000000 ,1620000000000 ,1620000000000 ,1616812403210 -1616812403241 ,112.5729924,26.88514816,62.04561615,179.8228242,180.3646821,12.640085,0.114505376,1620000000000 ,1620000000000 ,1620000000000 ,1616812403220 -1616812403255 ,112.5729924,26.88514702,62.04685593,179.8246547,180.367706,12.636215,0.114462089,1620000000000 ,1620000000000 ,1620000000000 ,1616812403230 -1616812403266 ,112.5729924,26.88514587,62.04810333,179.8259661,180.3721162,12.633639,0.114437022,1620000000000 ,1620000000000 ,1620000000000 ,1616812403240 -1616812403273 ,112.5729924,26.88514473,62.04942703,179.8260754,180.3645494,12.6283865,0.114396734,1620000000000 ,1620000000000 ,1620000000000 ,1616812403250 -1616812403283 ,112.5729924,26.88514358,62.05088425,179.8257475,180.3514216,12.622409,0.114346705,1620000000000 ,1620000000000 ,1620000000000 ,1616812403260 -1616812403293 ,112.5729924,26.88514244,62.05245209,179.8282337,180.3517548,12.618432,0.114307131,1620000000000 ,1620000000000 ,1620000000000 ,1616812403270 -1616812403303 ,112.5729924,26.8851413,62.05405045,179.8305833,180.3628016,12.616402,0.11428712,1620000000000 ,1620000000000 ,1620000000000 ,1616812403280 -1616812403315 ,112.5729924,26.88514016,62.05562592,179.8300915,180.3654667,12.611529,0.114249317,1620000000000 ,1620000000000 ,1620000000000 ,1616812403290 -1616812403327 ,112.5729924,26.88513901,62.05721283,179.829709,180.3603132,12.60431,0.114188987,1620000000000 ,1620000000000 ,1620000000000 ,1616812403300 -1616812403335 ,112.5729924,26.88513787,62.05887985,179.8286709,180.3560153,12.597437,0.114128469,1620000000000 ,1620000000000 ,1620000000000 ,1616812403310 -1616812403348 ,112.5729924,26.88513673,62.06061172,179.8296544,180.3601547,12.594993,0.114095007,1620000000000 ,1620000000000 ,1620000000000 ,1616812403330 -1616812403354 ,112.5729924,26.88513559,62.0623436,179.8308019,180.3706692,12.591707,0.114071638,1620000000000 ,1620000000000 ,1620000000000 ,1616812403340 -1616812403364 ,112.5729923,26.88513445,62.06404877,179.8335066,180.3702352,12.588351,0.114042605,1620000000000 ,1620000000000 ,1620000000000 ,1616812403350 -1616812403374 ,112.5729923,26.88513331,62.06580734,179.830556,180.3608747,12.582757,0.113998678,1620000000000 ,1620000000000 ,1620000000000 ,1616812403360 -1616812403389 ,112.5729923,26.88513103,62.0696907,179.8274414,180.3520548,12.574746,0.227889575,1620000000000 ,1620000000000 ,1620000000000 ,1616812403370 -1616812403395 ,112.5729923,26.88513103,62.0696907,179.8274414,-400,12.574746,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812403380 -1616812403404 ,112.5729923,26.88512989,62.07173538,179.8266764,180.3650237,12.564605,0.113858848,1620000000000 ,1620000000000 ,1620000000000 ,1616812403380 -1616812403415 ,112.5729923,26.88512762,62.07612991,179.8250645,180.3556186,12.55023,0.22749337,1620000000000 ,1620000000000 ,1620000000000 ,1616812403400 -1616812403427 ,112.5729923,26.88512648,62.07831955,179.8248186,180.3376731,12.551139,0.113717501,1620000000000 ,1620000000000 ,1620000000000 ,1616812403410 -1616812403437 ,112.5729923,26.88512534,62.08034515,179.8250918,180.3507578,12.551259,0.113720225,1620000000000 ,1620000000000 ,1620000000000 ,1616812403420 -1616812403445 ,112.5729923,26.88512421,62.08225632,179.8214035,180.3696177,12.544696,0.113674491,1620000000000 ,1620000000000 ,1620000000000 ,1616812403430 -1616812403455 ,112.5729923,26.88512307,62.0842247,179.8190539,180.374833,12.5340395,0.113588454,1620000000000 ,1620000000000 ,1620000000000 ,1616812403440 -1616812403465 ,112.5729923,26.88512194,62.08604813,179.8163765,180.2923037,12.5240755,0.113345818,1620000000000 ,1620000000000 ,1620000000000 ,1616812403450 -1616812403474 ,112.5729923,26.88512081,62.08760452,179.813945,180.2151313,12.518322,0.113125837,1620000000000 ,1620000000000 ,1620000000000 ,1616812403460 -1616812403485 ,112.5729923,26.88511968,62.08900452,179.8122784,180.2199995,12.518172,0.113105585,1620000000000 ,1620000000000 ,1620000000000 ,1616812403470 -1616812403494 ,112.5729923,26.88511854,62.0901413,179.8087267,180.2320816,12.5183115,0.113097369,1620000000000 ,1620000000000 ,1620000000000 ,1616812403480 -1616812403504 ,112.5729923,26.88511741,62.0910759,179.8029074,180.2350084,12.517653,0.113091349,1620000000000 ,1620000000000 ,1620000000000 ,1616812403490 -1616812403514 ,112.5729923,26.88511628,62.09196472,179.7968422,180.2254211,12.513274,0.113059278,1620000000000 ,1620000000000 ,1620000000000 ,1616812403500 -1616812403524 ,112.5729922,26.88511515,62.09292221,179.7895748,180.2143597,12.505972,0.112999374,1620000000000 ,1620000000000 ,1620000000000 ,1616812403510 -1616812403535 ,112.5729922,26.88511402,62.09393692,179.7808049,180.2167702,12.497983,0.112929024,1620000000000 ,1620000000000 ,1620000000000 ,1616812403520 -1616812403547 ,112.5729922,26.88511289,62.09489441,179.7723628,180.2175346,12.492507,0.112868666,1620000000000 ,1620000000000 ,1620000000000 ,1616812403530 -1616812403556 ,112.5729922,26.88511177,62.0956955,179.7638114,180.2135724,12.488222,0.112823092,1620000000000 ,1620000000000 ,1620000000000 ,1616812403540 -1616812403564 ,112.5729922,26.88511064,62.09630585,179.7552327,180.1987546,12.487257,0.112796163,1620000000000 ,1620000000000 ,1620000000000 ,1616812403550 -1616812403574 ,112.5729922,26.88510951,62.09674072,179.7430476,180.1874919,12.487877,0.112791534,1620000000000 ,1620000000000 ,1620000000000 ,1616812403560 -1616812403586 ,112.5729922,26.88510838,62.09704971,179.7289228,180.1869221,12.487741,0.112790357,1620000000000 ,1620000000000 ,1620000000000 ,1616812403570 -1616812403597 ,112.5729922,26.88510726,62.09735107,179.7126669,180.189808,12.483858,0.112761788,1620000000000 ,1620000000000 ,1620000000000 ,1616812403580 -1616812403605 ,112.5729922,26.88510613,62.09772873,179.6959193,180.1898489,12.476959,0.11270447,1620000000000 ,1620000000000 ,1620000000000 ,1616812403590 -1616812403615 ,112.5729922,26.885105,62.09819031,179.6775324,180.1761283,12.470273,0.112642942,1620000000000 ,1620000000000 ,1620000000000 ,1616812403600 -1616812403625 ,112.5729922,26.88510388,62.09869003,179.6584079,180.1560377,12.464063,0.112587153,1620000000000 ,1620000000000 ,1620000000000 ,1616812403610 -1616812403636 ,112.5729922,26.88510275,62.09915543,179.6384637,180.1459787,12.458736,0.112532497,1620000000000 ,1620000000000 ,1620000000000 ,1616812403620 -1616812403651 ,112.5729922,26.88510163,62.09956741,179.6192573,180.1424632,12.456405,0.112500398,1620000000000 ,1620000000000 ,1620000000000 ,1616812403630 -1616812403659 ,112.5729922,26.8851005,62.09999084,179.5981929,180.1361548,12.452944,0.112473569,1620000000000 ,1620000000000 ,1620000000000 ,1616812403640 -1616812403668 ,112.5729922,26.88509938,62.10054016,179.5757353,180.1241188,12.448991,0.112441455,1620000000000 ,1620000000000 ,1620000000000 ,1616812403650 -1616812403676 ,112.5729922,26.88509825,62.10124588,179.5499172,180.1121454,12.445199,0.112410198,1620000000000 ,1620000000000 ,1620000000000 ,1616812403660 -1616812403685 ,112.5729922,26.88509713,62.10207748,179.5250826,180.1001912,12.438274,0.11235471,1620000000000 ,1620000000000 ,1620000000000 ,1616812403670 -1616812403696 ,112.5729922,26.88509601,62.10302353,179.4981443,180.0844867,12.428773,0.112279124,1620000000000 ,1620000000000 ,1620000000000 ,1616812403680 -1616812403706 ,112.5729922,26.88509601,62.10302353,179.4981443,-400,12.428773,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812403690 -1616812403717 ,112.5729922,26.88509376,62.10536957,179.4422461,180.0430841,12.41249,0.224324667,1620000000000 ,1620000000000 ,1620000000000 ,1616812403700 -1616812403726 ,112.5729922,26.88509264,62.10668564,179.4125211,180.0031262,12.409716,0.112098663,1620000000000 ,1620000000000 ,1620000000000 ,1616812403710 -1616812403737 ,112.5729922,26.88509152,62.10803604,179.3850091,179.9906153,12.407371,0.112077818,1620000000000 ,1620000000000 ,1620000000000 ,1616812403720 -1616812403750 ,112.5729922,26.8850904,62.10949707,179.3513499,179.9662733,12.402864,0.112046631,1620000000000 ,1620000000000 ,1620000000000 ,1616812403730 -1616812403756 ,112.5729922,26.88508928,62.11115646,179.3191387,179.9268853,12.396203,0.111997109,1620000000000 ,1620000000000 ,1620000000000 ,1616812403740 -1616812403766 ,112.5729922,26.88508816,62.11299133,179.2873374,179.888432,12.388667,0.111933714,1620000000000 ,1620000000000 ,1620000000000 ,1616812403750 -1616812403776 ,112.5729922,26.88508704,62.11495209,179.2537602,179.8552035,12.381017,0.111870047,1620000000000 ,1620000000000 ,1620000000000 ,1616812403760 -1616812403787 ,112.5729922,26.88508592,62.11698914,179.2207294,179.8153592,12.375267,0.111815873,1620000000000 ,1620000000000 ,1620000000000 ,1616812403770 -1616812403796 ,112.5729922,26.88508481,62.11903,179.1890646,179.7691864,12.37278,0.111785904,1620000000000 ,1620000000000 ,1620000000000 ,1616812403780 -1616812403817 ,112.5729922,26.88508369,62.12101364,179.1569081,179.7284868,12.369477,0.111762613,1620000000000 ,1620000000000 ,1620000000000 ,1616812403790 -1616812403827 ,112.5729922,26.88508257,62.12291336,179.1238773,179.6824152,12.365081,0.111724297,1620000000000 ,1620000000000 ,1620000000000 ,1616812403800 -1616812403832 ,112.5729922,26.88508145,62.12479401,179.0899449,179.6426574,12.358325,0.111664351,1620000000000 ,1620000000000 ,1620000000000 ,1616812403810 -1616812403838 ,112.5729922,26.88508034,62.12669373,179.0551109,179.6042382,12.352693,0.111616651,1620000000000 ,1620000000000 ,1620000000000 ,1616812403820 -1616812403850 ,112.5729922,26.88507922,62.12861252,179.0201677,179.5606194,12.347271,0.11156962,1620000000000 ,1620000000000 ,1620000000000 ,1616812403830 -1616812403859 ,112.5729922,26.88507811,62.13051224,178.9851698,179.5175454,12.343494,0.111531365,1620000000000 ,1620000000000 ,1620000000000 ,1616812403840 -1616812403873 ,112.5729923,26.88507699,62.13235474,178.9505544,179.4766728,12.340268,0.111501221,1620000000000 ,1620000000000 ,1620000000000 ,1616812403850 -1616812403879 ,112.5729923,26.88507588,62.13410568,178.9150921,179.4340288,12.336978,0.111470877,1620000000000 ,1620000000000 ,1620000000000 ,1616812403860 -1616812403887 ,112.5729923,26.88507476,62.13580322,178.8792199,179.3913424,12.331824,0.111431724,1620000000000 ,1620000000000 ,1620000000000 ,1616812403870 -1616812403911 ,112.5729923,26.88507365,62.1374855,178.8429926,179.3473906,12.3256645,0.111379167,1620000000000 ,1620000000000 ,1620000000000 ,1616812403880 -1616812403913 ,112.5729923,26.88507254,62.13917542,178.8067379,179.3047841,12.317755,0.111312133,1620000000000 ,1620000000000 ,1620000000000 ,1616812403890 -1616812403918 ,112.5729923,26.88507142,62.14086914,178.7705653,179.2670161,12.311884,0.111256305,1620000000000 ,1620000000000 ,1620000000000 ,1616812403900 -1616812403930 ,112.5729923,26.88507031,62.14258194,178.7351302,179.228745,12.308138,0.111218341,1620000000000 ,1620000000000 ,1620000000000 ,1616812403910 -1616812403938 ,112.5729924,26.8850692,62.14431763,178.6990395,179.1800074,12.304854,0.111193161,1620000000000 ,1620000000000 ,1620000000000 ,1616812403920 -1616812403952 ,112.5729924,26.88506809,62.1460762,178.6613369,179.1289559,12.300241,0.11115706,1620000000000 ,1620000000000 ,1620000000000 ,1616812403930 -1616812403959 ,112.5729924,26.88506698,62.14785004,178.625492,179.0894285,12.294772,0.111115836,1620000000000 ,1620000000000 ,1620000000000 ,1616812403940 -1616812403969 ,112.5729924,26.88506587,62.14958572,178.5882812,179.0493626,12.290227,0.11106991,1620000000000 ,1620000000000 ,1620000000000 ,1616812403950 -1616812403979 ,112.5729924,26.88506476,62.15122604,178.5509064,179.0116639,12.285682,0.111027782,1620000000000 ,1620000000000 ,1620000000000 ,1616812403960 -1616812403989 ,112.5729924,26.88506365,62.15274811,178.5121655,178.9748913,12.280707,0.110985875,1620000000000 ,1620000000000 ,1620000000000 ,1616812403970 -1616812403999 ,112.5729925,26.88506254,62.15417099,178.4741351,178.9336846,12.27412,0.110926299,1620000000000 ,1620000000000 ,1620000000000 ,1616812403980 -1616812404009 ,112.5729925,26.88506143,62.15550613,178.4353669,178.8875855,12.269307,0.110877824,1620000000000 ,1620000000000 ,1620000000000 ,1616812403990 -1616812404022 ,112.5729925,26.88506032,62.15671921,178.395342,178.8432437,12.2660675,0.110841701,1620000000000 ,1620000000000 ,1620000000000 ,1616812404000 -1616812404029 ,112.5729925,26.88505921,62.15778732,178.3569017,178.8083119,12.265665,0.110828072,1620000000000 ,1620000000000 ,1620000000000 ,1616812404010 -1616812404039 ,112.5729926,26.88505811,62.15871429,178.3164123,178.7650871,12.264883,0.110817497,1620000000000 ,1620000000000 ,1620000000000 ,1616812404020 -1616812404051 ,112.5729926,26.885057,62.15954971,178.276524,178.7190219,12.260171,0.110783958,1620000000000 ,1620000000000 ,1620000000000 ,1616812404030 -1616812404060 ,112.5729926,26.88505589,62.16034317,178.2352697,178.6736848,12.252697,0.110722245,1620000000000 ,1620000000000 ,1620000000000 ,1616812404040 -1616812404071 ,112.5729926,26.88505479,62.16109085,178.1949989,178.6221532,12.245372,0.110651739,1620000000000 ,1620000000000 ,1620000000000 ,1616812404050 -1616812404080 ,112.5729927,26.88505368,62.16174698,178.1529249,178.5838467,12.240495,0.110599155,1620000000000 ,1620000000000 ,1620000000000 ,1616812404060 -1616812404090 ,112.5729927,26.88505257,62.16227341,178.1109876,178.5511761,12.237869,0.110566162,1620000000000 ,1620000000000 ,1620000000000 ,1616812404070 -1616812404102 ,112.5729927,26.88505147,62.16267395,178.0664547,178.5134127,12.235013,0.110537158,1620000000000 ,1620000000000 ,1620000000000 ,1616812404080 -1616812404113 ,112.5729927,26.88505036,62.16301727,178.0200094,178.4668813,12.231437,0.110504431,1620000000000 ,1620000000000 ,1620000000000 ,1616812404090 -1616812404120 ,112.5729928,26.88504926,62.16336441,177.9759411,178.4171673,12.226498,0.110464104,1620000000000 ,1620000000000 ,1620000000000 ,1616812404100 -1616812404130 ,112.5729928,26.88504816,62.16376114,177.9310257,178.3638243,12.222198,0.110425688,1620000000000 ,1620000000000 ,1620000000000 ,1616812404110 -1616812404141 ,112.5729928,26.88504705,62.16420364,177.8864929,178.3191563,12.217764,0.110382673,1620000000000 ,1620000000000 ,1620000000000 ,1616812404120 -1616812404152 ,112.5729929,26.88504595,62.16467667,177.8424245,178.2816141,12.213747,0.11034903,1620000000000 ,1620000000000 ,1620000000000 ,1616812404130 -1616812404161 ,112.5729929,26.88504485,62.16513824,177.797154,178.2383887,12.208704,0.110306169,1620000000000 ,1620000000000 ,1620000000000 ,1616812404140 -1616812404171 ,112.5729929,26.88504375,62.16557312,177.753031,178.1876625,12.203457,0.110257079,1620000000000 ,1620000000000 ,1620000000000 ,1616812404150 -1616812404181 ,112.572993,26.88504264,62.16599274,177.7115581,178.1342693,12.197621,0.110204539,1620000000000 ,1620000000000 ,1620000000000 ,1616812404160 -1616812404193 ,112.572993,26.88504154,62.16641998,177.6678176,178.0857258,12.193955,0.110165504,1620000000000 ,1620000000000 ,1620000000000 ,1616812404170 -1616812404203 ,112.5729931,26.88504044,62.16688919,177.6237219,178.0442267,12.189222,0.110128945,1620000000000 ,1620000000000 ,1620000000000 ,1616812404180 -1616812404213 ,112.5729931,26.88503934,62.16741943,177.5802545,178.005764,12.1841345,0.110084903,1620000000000 ,1620000000000 ,1620000000000 ,1616812404190 -1616812404226 ,112.5729931,26.88503824,62.16819382,177.5319241,178.1899847,12.182651,0.109991894,1620000000000 ,1620000000000 ,1620000000000 ,1616812404200 -1616812404233 ,112.5729932,26.88503714,62.16928101,177.4882929,178.5048916,12.177605,0.109935422,1620000000000 ,1620000000000 ,1620000000000 ,1616812404210 -1616812404243 ,112.5729932,26.88503605,62.17037582,177.4433775,178.4450803,12.17292,0.109890329,1620000000000 ,1620000000000 ,1620000000000 ,1616812404220 -1616812404255 ,112.5729932,26.88503495,62.17142868,177.3985442,178.3939916,12.168774,0.109853067,1620000000000 ,1620000000000 ,1620000000000 ,1616812404230 -1616812404265 ,112.5729932,26.88503385,62.17245483,177.3545578,178.3449223,12.16484,0.109814471,1620000000000 ,1620000000000 ,1620000000000 ,1616812404240 -1616812404273 ,112.5729933,26.88503275,62.17350769,177.3102981,178.2972108,12.159345,0.109768027,1620000000000 ,1620000000000 ,1620000000000 ,1616812404250 -1616812404282 ,112.5729933,26.88503166,62.17463303,177.2666123,178.2441957,12.153092,0.109716414,1620000000000 ,1620000000000 ,1620000000000 ,1616812404260 -1616812404292 ,112.5729933,26.88503056,62.17584229,177.2220794,178.1843507,12.147288,0.109663892,1620000000000 ,1620000000000 ,1620000000000 ,1616812404270 -1616812404302 ,112.5729934,26.88502946,62.17712021,177.1804153,178.1237885,12.14161,0.109613358,1620000000000 ,1620000000000 ,1620000000000 ,1616812404280 -1616812404313 ,112.5729934,26.88502837,62.17846298,177.1366747,178.0670446,12.137,0.109570325,1620000000000 ,1620000000000 ,1620000000000 ,1616812404290 -1616812404327 ,112.5729935,26.88502727,62.17988968,177.0973602,178.0154712,12.134492,0.109546398,1620000000000 ,1620000000000 ,1620000000000 ,1616812404300 -1616812404335 ,112.5729935,26.88502618,62.18139648,177.0570894,177.9566281,12.129431,0.109510597,1620000000000 ,1620000000000 ,1620000000000 ,1616812404310 -1616812404346 ,112.5729935,26.88502509,62.18299484,177.0157804,177.9089189,12.12286,0.109456821,1620000000000 ,1620000000000 ,1620000000000 ,1616812404330 -1616812404354 ,112.5729936,26.88502399,62.18466568,176.9734332,177.8685442,12.115794,0.109398654,1620000000000 ,1620000000000 ,1620000000000 ,1616812404340 -1616812404364 ,112.5729936,26.8850229,62.18633652,176.9329439,177.8246146,12.109508,0.10933834,1620000000000 ,1620000000000 ,1620000000000 ,1616812404350 -1616812404373 ,112.5729937,26.88502181,62.18795395,176.8897497,177.7867186,12.104816,0.109290741,1620000000000 ,1620000000000 ,1620000000000 ,1616812404360 -1616812404383 ,112.5729937,26.88502072,62.18950272,176.8456814,177.7555215,12.102933,0.109264242,1620000000000 ,1620000000000 ,1620000000000 ,1616812404370 -1616812404395 ,112.5729938,26.88501853,62.19243622,176.7609597,177.6992496,12.098514,0.21848282,1620000000000 ,1620000000000 ,1620000000000 ,1616812404380 -1616812404403 ,112.5729938,26.88501853,62.19243622,176.7609597,-400,12.098514,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812404390 -1616812404414 ,112.5729939,26.88501635,62.19553375,176.6742163,177.5973503,12.083032,0.218278498,1620000000000 ,1620000000000 ,1620000000000 ,1616812404400 -1616812404425 ,112.5729939,26.88501526,62.19716263,176.6302845,177.5155194,12.07855,0.109053724,1620000000000 ,1620000000000 ,1620000000000 ,1616812404410 -1616812404435 ,112.572994,26.88501417,62.19873047,176.5878281,177.4668282,12.075554,0.109023965,1620000000000 ,1620000000000 ,1620000000000 ,1616812404420 -1616812404445 ,112.572994,26.88501309,62.20021439,176.5455902,177.4211344,12.071777,0.10899093,1620000000000 ,1620000000000 ,1620000000000 ,1616812404430 -1616812404455 ,112.5729941,26.885012,62.20168686,176.5022868,177.3697545,12.06652,0.108948024,1620000000000 ,1620000000000 ,1620000000000 ,1616812404440 -1616812404464 ,112.5729941,26.88501091,62.20307922,176.4593385,177.0735603,12.0608425,0.108958346,1620000000000 ,1620000000000 ,1620000000000 ,1616812404450 -1616812404476 ,112.5729942,26.88500982,62.20437241,176.4168274,176.7906681,12.057122,0.108981181,1620000000000 ,1620000000000 ,1620000000000 ,1616812404460 -1616812404491 ,112.5729943,26.88500873,62.20564651,176.3766659,176.7481789,12.052971,0.108949508,1620000000000 ,1620000000000 ,1620000000000 ,1616812404470 -1616812404496 ,112.5729943,26.88500765,62.20689011,176.334592,176.7027199,12.04765,0.108901293,1620000000000 ,1620000000000 ,1620000000000 ,1616812404480 -1616812404511 ,112.5729944,26.88500656,62.20814896,176.2938567,176.6532191,12.041723,0.108854736,1620000000000 ,1620000000000 ,1620000000000 ,1616812404490 -1616812404517 ,112.5729944,26.88500547,62.20943069,176.2548153,176.5897051,12.037253,0.108809888,1620000000000 ,1620000000000 ,1620000000000 ,1616812404500 -1616812404531 ,112.5729945,26.88500439,62.21068192,176.2145992,176.5368576,12.033723,0.108779666,1620000000000 ,1620000000000 ,1620000000000 ,1616812404510 -1616812404534 ,112.5729946,26.8850033,62.21185303,176.175831,176.4970579,12.029784,0.108744873,1620000000000 ,1620000000000 ,1620000000000 ,1616812404520 -1616812404548 ,112.5729946,26.88500222,62.21295547,176.1379645,176.4473055,12.027053,0.108714743,1620000000000 ,1620000000000 ,1620000000000 ,1616812404530 -1616812404556 ,112.5729947,26.88500113,62.21403122,176.0979396,176.4023235,12.020229,0.108667276,1620000000000 ,1620000000000 ,1620000000000 ,1616812404540 -1616812404566 ,112.5729948,26.88500005,62.21514893,176.0603462,176.3489977,12.007666,0.10856828,1620000000000 ,1620000000000 ,1620000000000 ,1616812404550 -1616812404578 ,112.5729949,26.88499897,62.21631241,176.0217147,176.2929065,11.996155,0.108463836,1620000000000 ,1620000000000 ,1620000000000 ,1616812404560 -1616812404585 ,112.5729949,26.88499788,62.21749115,175.9860064,176.2562698,11.988807,0.108384372,1620000000000 ,1620000000000 ,1620000000000 ,1616812404570 -1616812404597 ,112.572995,26.8849968,62.21858597,175.9505441,176.2133158,11.986503,0.108349741,1620000000000 ,1620000000000 ,1620000000000 ,1616812404580 -1616812404605 ,112.572995,26.8849968,62.21858597,175.9505441,-400,11.986503,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812404590 -1616812404617 ,112.5729951,26.88499464,62.22040939,175.8795374,176.1487525,11.986712,0.216679719,1620000000000 ,1620000000000 ,1620000000000 ,1616812404600 -1616812404625 ,112.5729952,26.88499356,62.22117615,175.8443483,176.0751043,11.9870205,0.108340507,1620000000000 ,1620000000000 ,1620000000000 ,1616812404610 -1616812404636 ,112.5729953,26.88499248,62.22189713,175.8106618,176.0267053,11.98262,0.108310033,1620000000000 ,1620000000000 ,1620000000000 ,1616812404620 -1616812404646 ,112.5729954,26.8849914,62.22257614,175.7776857,175.9785204,11.973975,0.10823966,1620000000000 ,1620000000000 ,1620000000000 ,1616812404630 -1616812404656 ,112.5729954,26.88499032,62.22322845,175.7439445,175.9333904,11.964111,0.10814975,1620000000000 ,1620000000000 ,1620000000000 ,1616812404640 -1616812404666 ,112.5729955,26.88498924,62.22386932,175.7134819,175.8877175,11.955203,0.108063189,1620000000000 ,1620000000000 ,1620000000000 ,1616812404650 -1616812404676 ,112.5729956,26.88498817,62.22449493,175.6840847,175.8385939,11.949619,0.108000567,1620000000000 ,1620000000000 ,1620000000000 ,1616812404660 -1616812404686 ,112.5729957,26.88498709,62.22510529,175.6544417,175.7942838,11.948904,0.10797934,1620000000000 ,1620000000000 ,1620000000000 ,1616812404670 -1616812404700 ,112.5729958,26.88498601,62.22571182,175.6245801,175.7557357,11.95029,0.107987284,1620000000000 ,1620000000000 ,1620000000000 ,1616812404680 -1616812404707 ,112.5729958,26.88498494,62.22632217,175.5964671,175.7208547,11.950869,0.107995998,1620000000000 ,1620000000000 ,1620000000000 ,1616812404690 -1616812404717 ,112.5729959,26.88498386,62.2269249,175.5686545,175.6894125,11.948939,0.107980761,1620000000000 ,1620000000000 ,1620000000000 ,1616812404700 -1616812404726 ,112.572996,26.88498278,62.22750854,175.5424813,175.6600665,11.943217,0.107933677,1620000000000 ,1620000000000 ,1620000000000 ,1616812404710 -1616812404737 ,112.5729961,26.88498171,62.22809219,175.5154337,175.6259914,11.935808,0.107870108,1620000000000 ,1620000000000 ,1620000000000 ,1616812404720 -1616812404749 ,112.5729962,26.88498063,62.22867966,175.4877031,175.5853594,11.927932,0.107798567,1620000000000 ,1620000000000 ,1620000000000 ,1616812404730 -1616812404757 ,112.5729963,26.88497956,62.22922897,175.4610927,175.5554806,11.922658,0.107737431,1620000000000 ,1620000000000 ,1620000000000 ,1616812404740 -1616812404767 ,112.5729963,26.88497848,62.22972488,175.4361216,175.5328435,11.923577,0.107727403,1620000000000 ,1620000000000 ,1620000000000 ,1616812404750 -1616812404776 ,112.5729964,26.88497741,62.23022461,175.4132268,175.5142549,11.923163,0.107733415,1620000000000 ,1620000000000 ,1620000000000 ,1616812404760 -1616812404787 ,112.5729965,26.88497634,62.23080063,175.3880643,175.491307,11.92488,0.107735876,1620000000000 ,1620000000000 ,1620000000000 ,1616812404770 -1616812404797 ,112.5729966,26.88497526,62.23156738,175.3623009,175.4564971,11.923058,0.107736522,1620000000000 ,1620000000000 ,1620000000000 ,1616812404780 -1616812404808 ,112.5729967,26.88497419,62.23262787,175.336592,175.4282487,11.915001,0.107683097,1620000000000 ,1620000000000 ,1620000000000 ,1616812404790 -1616812404817 ,112.5729968,26.88497312,62.2340126,175.3126591,175.4095348,11.90428,0.107592688,1620000000000 ,1620000000000 ,1620000000000 ,1616812404800 -1616812404828 ,112.5729968,26.88497205,62.23567581,175.2893544,175.3934134,11.891572,0.107485559,1620000000000 ,1620000000000 ,1620000000000 ,1616812404810 -1616812404840 ,112.5729969,26.88497097,62.23752213,175.2683448,175.374156,11.886121,0.107422684,1620000000000 ,1620000000000 ,1620000000000 ,1616812404820 -1616812404851 ,112.572997,26.8849699,62.23941422,175.2455046,175.3491913,11.8904705,0.107441142,1620000000000 ,1620000000000 ,1620000000000 ,1616812404830 -1616812404860 ,112.5729971,26.88496883,62.24126434,175.2240305,175.3396197,11.895846,0.107488059,1620000000000 ,1620000000000 ,1620000000000 ,1616812404840 -1616812404870 ,112.5729972,26.88496776,62.24313736,175.1996604,175.3235853,11.894842,0.107497832,1620000000000 ,1620000000000 ,1620000000000 ,1616812404850 -1616812404880 ,112.5729973,26.88496669,62.245224,175.1748532,175.3153567,11.886252,0.107443063,1620000000000 ,1620000000000 ,1620000000000 ,1616812404860 -1616812404887 ,112.5729974,26.88496562,62.24769974,175.1519584,175.2947533,11.872847,0.107337932,1620000000000 ,1620000000000 ,1620000000000 ,1616812404870 -1616812404898 ,112.5729975,26.88496455,62.25054169,175.1307301,175.2650548,11.865932,0.107264017,1620000000000 ,1620000000000 ,1620000000000 ,1616812404880 -1616812404912 ,112.5729976,26.88496348,62.25355911,175.1082178,175.2410924,11.867683,0.107266907,1620000000000 ,1620000000000 ,1620000000000 ,1616812404890 -1616812404919 ,112.5729976,26.88496241,62.25653076,175.086935,175.234942,11.87252,0.107306857,1620000000000 ,1620000000000 ,1620000000000 ,1616812404900 -1616812404931 ,112.5729977,26.88496134,62.25935745,175.0657887,175.2208336,11.874405,0.10733442,1620000000000 ,1620000000000 ,1620000000000 ,1616812404910 -1616812404938 ,112.5729978,26.88496027,62.26211548,175.0428666,175.1931205,11.871189,0.10732311,1620000000000 ,1620000000000 ,1620000000000 ,1616812404920 -1616812404949 ,112.5729979,26.8849592,62.26496506,175.0185784,175.1607962,11.866505,0.10728349,1620000000000 ,1620000000000 ,1620000000000 ,1616812404930 -1616812404958 ,112.572998,26.88495814,62.26797867,174.9943722,175.150176,11.863005,0.107254656,1620000000000 ,1620000000000 ,1620000000000 ,1616812404940 -1616812404968 ,112.5729981,26.88495707,62.27103806,174.9718326,175.1475046,11.863739,0.107258682,1620000000000 ,1620000000000 ,1620000000000 ,1616812404950 -1616812404980 ,112.5729982,26.884956,62.27402878,174.9520251,175.1374839,11.865414,0.107277256,1620000000000 ,1620000000000 ,1620000000000 ,1616812404960 -1616812404988 ,112.5729983,26.88495493,62.27691269,174.9306602,175.1083783,11.866125,0.107287438,1620000000000 ,1620000000000 ,1620000000000 ,1616812404970 -1616812404999 ,112.5729984,26.88495386,62.27972794,174.9053339,175.0614189,11.868521,0.107308875,1620000000000 ,1620000000000 ,1620000000000 ,1616812404980 -1616812405009 ,112.5729985,26.88495279,62.28242111,174.8828762,175.0354992,11.873236,0.107348306,1620000000000 ,1620000000000 ,1620000000000 ,1616812404990 -1616812405019 ,112.5729986,26.88495172,62.28497696,174.8604459,175.0322763,11.876593,0.10738301,1620000000000 ,1620000000000 ,1620000000000 ,1616812405000 -1616812405030 ,112.5729986,26.88495065,62.28747559,174.8372506,175.0227042,11.876977,0.107399202,1620000000000 ,1620000000000 ,1620000000000 ,1616812405010 -1616812405039 ,112.5729987,26.88494958,62.29004669,174.814629,174.98728,11.875213,0.107393744,1620000000000 ,1620000000000 ,1620000000000 ,1616812405020 -1616812405049 ,112.5729988,26.88494851,62.2926712,174.7921986,174.9477663,11.875544,0.107395235,1620000000000 ,1620000000000 ,1620000000000 ,1616812405030 -1616812405059 ,112.5729989,26.88494744,62.29519653,174.7691672,174.9008341,11.878856,0.107422728,1620000000000 ,1620000000000 ,1620000000000 ,1616812405040 -1616812405074 ,112.572999,26.88494637,62.29752731,174.7482942,174.8784614,11.884167,0.107466019,1620000000000 ,1620000000000 ,1620000000000 ,1616812405050 -1616812405080 ,112.5729991,26.8849453,62.29966354,174.7260004,174.8630115,11.887032,0.107497854,1620000000000 ,1620000000000 ,1620000000000 ,1616812405060 -1616812405092 ,112.5729992,26.88494423,62.30168915,174.7018489,174.8217233,11.887261,0.107508496,1620000000000 ,1620000000000 ,1620000000000 ,1616812405070 -1616812405101 ,112.5729993,26.88494316,62.3036499,174.6803201,174.7769594,11.885073,0.107494772,1620000000000 ,1620000000000 ,1620000000000 ,1616812405080 -1616812405110 ,112.5729994,26.88494209,62.30550766,174.659693,174.7313808,11.884678,0.107484288,1620000000000 ,1620000000000 ,1620000000000 ,1616812405090 -1616812405120 ,112.5729995,26.88494102,62.30716705,174.6420438,174.7022998,11.887151,0.107495087,1620000000000 ,1620000000000 ,1620000000000 ,1616812405100 -1616812405132 ,112.5729996,26.88493995,62.30858231,174.6245312,174.6782829,11.8909855,0.107520621,1620000000000 ,1620000000000 ,1620000000000 ,1616812405110 -1616812405145 ,112.5729997,26.88493888,62.30974579,174.6085758,174.639826,11.895055,0.107552322,1620000000000 ,1620000000000 ,1620000000000 ,1616812405120 -1616812405153 ,112.5729998,26.88493781,62.31070709,174.5939046,174.5924972,11.898016,0.107576242,1620000000000 ,1620000000000 ,1620000000000 ,1616812405130 -1616812405171 ,112.5729999,26.88493674,62.31147385,174.5795885,174.55324,11.904108,0.107617327,1620000000000 ,1620000000000 ,1620000000000 ,1616812405140 -1616812405176 ,112.573,26.88493566,62.31202698,174.5658735,174.5196342,11.907525,0.107646421,1620000000000 ,1620000000000 ,1620000000000 ,1616812405150 -1616812405182 ,112.5730001,26.88493459,62.31236267,174.5541802,174.4832919,11.90987,0.107662768,1620000000000 ,1620000000000 ,1620000000000 ,1616812405160 -1616812405193 ,112.5730002,26.88493352,62.31254578,174.5416127,174.4521455,11.91205,0.107678358,1620000000000 ,1620000000000 ,1620000000000 ,1616812405170 -1616812405203 ,112.5730003,26.88493245,62.3126297,174.5319411,174.4188078,11.91494,0.107694105,1620000000000 ,1620000000000 ,1620000000000 ,1616812405180 -1616812405212 ,112.5730004,26.88493138,62.31260681,174.5238815,174.3822598,11.920331,0.107733765,1620000000000 ,1620000000000 ,1620000000000 ,1616812405190 -1616812405221 ,112.5730005,26.8849303,62.31237411,174.5113959,174.3964651,11.91995,0.107705774,1620000000000 ,1620000000000 ,1620000000000 ,1616812405200 -1616812405231 ,112.5730006,26.88492923,62.31194687,174.5041832,174.4254277,11.925818,0.107610988,1620000000000 ,1620000000000 ,1620000000000 ,1616812405210 -1616812405242 ,112.5730008,26.88492816,62.31143951,174.4994841,174.3985234,11.930053,0.107648889,1620000000000 ,1620000000000 ,1620000000000 ,1616812405220 -1616812405251 ,112.5730009,26.88492709,62.31090546,174.493856,174.3701295,11.933616,0.107681081,1620000000000 ,1620000000000 ,1620000000000 ,1616812405230 -1616812405261 ,112.573001,26.88492602,62.31036758,174.4907414,174.3440408,11.934902,0.107697689,1620000000000 ,1620000000000 ,1620000000000 ,1616812405240 -1616812405272 ,112.5730011,26.88492495,62.3098793,174.4871351,174.3164787,11.933496,0.107689838,1620000000000 ,1620000000000 ,1620000000000 ,1616812405250 -1616812405282 ,112.5730012,26.88492388,62.30949783,174.4857144,174.2859503,11.933517,0.107686774,1620000000000 ,1620000000000 ,1620000000000 ,1616812405260 -1616812405292 ,112.5730013,26.8849228,62.30921173,174.4864521,174.2585964,11.93619,0.10770473,1620000000000 ,1620000000000 ,1620000000000 ,1616812405270 -1616812405304 ,112.5730014,26.88492173,62.30900574,174.4894847,174.2366297,11.939075,0.107731801,1620000000000 ,1620000000000 ,1620000000000 ,1616812405280 -1616812405313 ,112.5730015,26.88492066,62.30887604,174.4914518,174.2261157,11.9420595,0.10775997,1620000000000 ,1620000000000 ,1620000000000 ,1616812405290 -1616812405321 ,112.5730016,26.88491959,62.30888748,174.4938833,174.2251581,11.9444,0.107782708,1620000000000 ,1620000000000 ,1620000000000 ,1616812405300 -1616812405332 ,112.5730017,26.88491851,62.30912399,174.4969705,174.228898,11.945783,0.107803096,1620000000000 ,1620000000000 ,1620000000000 ,1616812405310 -1616812405342 ,112.5730018,26.88491744,62.30961609,174.5013145,174.2275642,11.945949,0.107808126,1620000000000 ,1620000000000 ,1620000000000 ,1616812405320 -1616812405354 ,112.5730019,26.88491637,62.31035995,174.504757,174.2320451,11.945335,0.107810019,1620000000000 ,1620000000000 ,1620000000000 ,1616812405330 -1616812405365 ,112.573002,26.8849153,62.31132507,174.5077622,174.2389028,11.945272,0.107809203,1620000000000 ,1620000000000 ,1620000000000 ,1616812405340 -1616812405373 ,112.5730022,26.88491422,62.31245804,174.5102758,174.2497659,11.946972,0.107825614,1620000000000 ,1620000000000 ,1620000000000 ,1616812405360 -1616812405383 ,112.5730023,26.88491315,62.313694,174.511915,174.2666823,11.953827,0.107879338,1620000000000 ,1620000000000 ,1620000000000 ,1616812405370 -1616812405393 ,112.5730024,26.88491208,62.31503677,174.5145924,174.2974729,11.9560375,0.107909096,1620000000000 ,1620000000000 ,1620000000000 ,1616812405380 -1616812405403 ,112.5730025,26.884911,62.31655121,174.5172152,174.3092033,11.957974,0.107927762,1620000000000 ,1620000000000 ,1620000000000 ,1616812405380 -1616812405415 ,112.5730026,26.88490993,62.31835175,174.5174884,174.3170355,11.957083,0.107939483,1620000000000 ,1620000000000 ,1620000000000 ,1616812405400 -1616812405425 ,112.5730027,26.88490885,62.32043076,174.5184447,174.3246304,11.956403,0.107933131,1620000000000 ,1620000000000 ,1620000000000 ,1616812405410 -1616812405433 ,112.5730028,26.88490778,62.32265472,174.5190457,174.3405548,11.9577,0.10794691,1620000000000 ,1620000000000 ,1620000000000 ,1616812405420 -1616812405444 ,112.5730029,26.88490671,62.32488632,174.5213953,174.3677577,11.961647,0.10797578,1620000000000 ,1620000000000 ,1620000000000 ,1616812405430 -1616812405454 ,112.5730031,26.88490456,62.329319,174.5245918,174.3841178,11.967871,0.216057512,1620000000000 ,1620000000000 ,1620000000000 ,1616812405440 -1616812405464 ,112.5730032,26.88490348,62.33172226,174.5217505,174.3252793,11.966765,0.108126774,1620000000000 ,1620000000000 ,1620000000000 ,1616812405450 -1616812405475 ,112.5730033,26.8849024,62.33425903,174.5197287,174.2855726,11.965331,0.108197845,1620000000000 ,1620000000000 ,1620000000000 ,1616812405460 -1616812405484 ,112.5730034,26.88490133,62.33682251,174.5181715,174.3003848,11.965586,0.108196237,1620000000000 ,1620000000000 ,1620000000000 ,1616812405470 -1616812405495 ,112.5730035,26.88490025,62.33939362,174.5168054,174.3047578,11.968548,0.108218223,1620000000000 ,1620000000000 ,1620000000000 ,1616812405480 -1616812405504 ,112.5730036,26.88489917,62.34194183,174.5152208,174.2988735,11.974325,0.108265041,1620000000000 ,1620000000000 ,1620000000000 ,1616812405490 -1616812405513 ,112.5730038,26.88489809,62.34443283,174.5120243,174.2910446,11.97816,0.108307379,1620000000000 ,1620000000000 ,1620000000000 ,1616812405500 -1616812405523 ,112.5730039,26.88489702,62.34688187,174.5096747,174.2921369,11.979838,0.108329039,1620000000000 ,1620000000000 ,1620000000000 ,1616812405510 -1616812405534 ,112.573004,26.88489594,62.34934235,174.5096747,174.3064879,11.981911,0.108345068,1620000000000 ,1620000000000 ,1620000000000 ,1616812405520 -1616812405549 ,112.5730041,26.88489486,62.35181427,174.5102758,174.3173892,11.984053,0.10836831,1620000000000 ,1620000000000 ,1620000000000 ,1616812405530 -1616812405556 ,112.5730042,26.88489378,62.35421753,174.5114779,174.3217978,11.987439,0.108395309,1620000000000 ,1620000000000 ,1620000000000 ,1616812405540 -1616812405565 ,112.5730043,26.8848927,62.35647964,174.5107948,174.3152175,11.990828,0.108423396,1620000000000 ,1620000000000 ,1620000000000 ,1616812405550 -1616812405575 ,112.5730044,26.88489162,62.35856247,174.513445,174.3297612,11.994361,0.108450015,1620000000000 ,1620000000000 ,1620000000000 ,1616812405560 -1616812405585 ,112.5730045,26.88489054,62.36045837,174.5145105,174.3507179,11.998921,0.108485256,1620000000000 ,1620000000000 ,1620000000000 ,1616812405570 -1616812405597 ,112.5730046,26.88488946,62.36219406,174.5154121,174.3719182,12.002942,0.108519268,1620000000000 ,1620000000000 ,1620000000000 ,1616812405580 -1616812405606 ,112.5730047,26.88488838,62.36384201,174.5156033,174.3752866,12.005539,0.108544203,1620000000000 ,1620000000000 ,1620000000000 ,1616812405590 -1616812405616 ,112.5730048,26.8848873,62.36543274,174.514046,174.3756,12.00892,0.108566935,1620000000000 ,1620000000000 ,1620000000000 ,1616812405600 -1616812405625 ,112.5730049,26.88488622,62.36692047,174.5136362,174.3914724,12.012124,0.108593827,1620000000000 ,1620000000000 ,1620000000000 ,1616812405610 -1616812405637 ,112.573005,26.88488514,62.36820984,174.5159585,174.4125414,12.0167465,0.108627454,1620000000000 ,1620000000000 ,1620000000000 ,1616812405620 -1616812405645 ,112.5730051,26.88488406,62.36930084,174.5167235,174.4303059,12.020872,0.108662212,1620000000000 ,1620000000000 ,1620000000000 ,1616812405630 -1616812405657 ,112.5730053,26.88488298,62.37028122,174.5164502,174.4227444,12.024549,0.108689737,1620000000000 ,1620000000000 ,1620000000000 ,1616812405640 -1616812405668 ,112.5730054,26.8848819,62.37125015,174.5195648,174.4002929,12.028589,0.108723615,1620000000000 ,1620000000000 ,1620000000000 ,1616812405650 -1616812405675 ,112.5730055,26.88488081,62.37219238,174.5259305,174.3880025,12.032179,0.108758868,1620000000000 ,1620000000000 ,1620000000000 ,1616812405660 -1616812405686 ,112.5730056,26.88487973,62.37310028,174.5320504,174.3791484,12.034633,0.108781388,1620000000000 ,1620000000000 ,1620000000000 ,1616812405670 -1616812405700 ,112.5730057,26.88487865,62.3740387,174.5372687,174.3595744,12.034761,0.108787416,1620000000000 ,1620000000000 ,1620000000000 ,1616812405680 -1616812405706 ,112.5730058,26.88487757,62.375103,174.5437164,174.3280128,12.034367,0.108788022,1620000000000 ,1620000000000 ,1620000000000 ,1616812405690 -1616812405718 ,112.5730059,26.88487648,62.37631226,174.5533606,174.2937938,12.033261,0.108784067,1620000000000 ,1620000000000 ,1620000000000 ,1616812405700 -1616812405726 ,112.573006,26.8848754,62.37763977,174.562677,174.2806332,12.0323305,0.108776782,1620000000000 ,1620000000000 ,1620000000000 ,1616812405710 -1616812405736 ,112.5730061,26.88487432,62.37905121,174.5725124,174.2839179,12.032045,0.108773962,1620000000000 ,1620000000000 ,1620000000000 ,1616812405720 -1616812405746 ,112.5730062,26.88487324,62.38050842,174.5806813,174.2817727,12.034617,0.108790157,1620000000000 ,1620000000000 ,1620000000000 ,1616812405730 -1616812405757 ,112.5730063,26.88487215,62.3819809,174.587894,174.280707,12.038193,0.108822017,1620000000000 ,1620000000000 ,1620000000000 ,1616812405740 -1616812405767 ,112.5730064,26.88487107,62.38344193,174.5970465,174.2885233,12.040379,0.108844973,1620000000000 ,1620000000000 ,1620000000000 ,1616812405750 -1616812405776 ,112.5730065,26.88486999,62.38486099,174.6059804,174.3017643,12.039937,0.108844641,1620000000000 ,1620000000000 ,1620000000000 ,1616812405760 -1616812405786 ,112.5730067,26.8848689,62.38626099,174.6183567,174.3157523,12.037554,0.108827667,1620000000000 ,1620000000000 ,1620000000000 ,1616812405770 -1616812405796 ,112.5730068,26.88486782,62.38772964,174.629886,174.3226245,12.035629,0.108808306,1620000000000 ,1620000000000 ,1620000000000 ,1616812405780 -1616812405808 ,112.5730069,26.88486674,62.38928223,174.6397488,174.3193461,12.036105,0.108807005,1620000000000 ,1620000000000 ,1620000000000 ,1616812405790 -1616812405817 ,112.573007,26.88486566,62.39085388,174.6514148,174.3332293,12.038259,0.1088244,1620000000000 ,1620000000000 ,1620000000000 ,1616812405800 -1616812405827 ,112.5730071,26.88486457,62.3923912,174.6621518,174.3605946,12.0412,0.108849636,1620000000000 ,1620000000000 ,1620000000000 ,1616812405810 -1616812405837 ,112.5730072,26.88486349,62.39393997,174.6715229,174.3821118,12.041691,0.108857833,1620000000000 ,1620000000000 ,1620000000000 ,1616812405820 -1616812405847 ,112.5730073,26.88486241,62.39560318,174.6801835,174.3813102,12.040919,0.108857229,1620000000000 ,1620000000000 ,1620000000000 ,1616812405830 -1616812405858 ,112.5730074,26.88486132,62.39737701,174.691385,174.3743743,12.0407295,0.10885711,1620000000000 ,1620000000000 ,1620000000000 ,1616812405840 -1616812405869 ,112.5730075,26.88486024,62.39918518,174.7023953,174.37867,12.041035,0.108861396,1620000000000 ,1620000000000 ,1620000000000 ,1616812405850 -1616812405883 ,112.5730076,26.88485916,62.40097046,174.7115204,174.3984207,12.039904,0.108852196,1620000000000 ,1620000000000 ,1620000000000 ,1616812405860 -1616812405893 ,112.5730077,26.88485807,62.402771,174.7228586,174.4132517,12.038553,0.108843028,1620000000000 ,1620000000000 ,1620000000000 ,1616812405870 -1616812405898 ,112.5730078,26.88485699,62.40463638,174.7333771,174.4104544,12.037827,0.10883628,1620000000000 ,1620000000000 ,1620000000000 ,1616812405880 -1616812405910 ,112.5730079,26.88485591,62.40651703,174.7468735,174.4052312,12.038622,0.108839304,1620000000000 ,1620000000000 ,1620000000000 ,1616812405890 -1616812405920 ,112.573008,26.88485482,62.40834808,174.7603426,174.4130358,12.041002,0.108855622,1620000000000 ,1620000000000 ,1620000000000 ,1616812405900 -1616812405931 ,112.5730081,26.88485374,62.41013718,174.7756696,174.4306331,12.041735,0.108868623,1620000000000 ,1620000000000 ,1620000000000 ,1616812405910 -1616812405938 ,112.5730082,26.88485266,62.41194153,174.7912697,174.433232,12.040683,0.108866332,1620000000000 ,1620000000000 ,1620000000000 ,1616812405920 -1616812405949 ,112.5730084,26.88485157,62.41380692,174.8067606,174.4274956,12.037884,0.108843769,1620000000000 ,1620000000000 ,1620000000000 ,1616812405930 -1616812405958 ,112.5730085,26.88485049,62.41571045,174.8258851,174.4218015,12.034335,0.108814767,1620000000000 ,1620000000000 ,1620000000000 ,1616812405940 -1616812405974 ,112.5730086,26.88484941,62.41757965,174.8446272,174.4281997,12.034644,0.108805976,1620000000000 ,1620000000000 ,1620000000000 ,1616812405950 -1616812405981 ,112.5730087,26.88484832,62.41936111,174.8642435,174.4485206,12.037885,0.108827956,1620000000000 ,1620000000000 ,1620000000000 ,1616812405960 -1616812405990 ,112.5730088,26.88484724,62.42105865,174.8805266,174.4683741,12.038877,0.108838335,1620000000000 ,1620000000000 ,1620000000000 ,1616812405970 -1616812405999 ,112.5730089,26.88484616,62.4227562,174.898531,174.4810268,12.037373,0.108833908,1620000000000 ,1620000000000 ,1620000000000 ,1616812405980 -1616812406010 ,112.573009,26.88484507,62.42450333,174.9159617,174.4883249,12.03576,0.108819689,1620000000000 ,1620000000000 ,1620000000000 ,1616812405990 -1616812406018 ,112.5730091,26.88484399,62.42627716,174.9354414,174.5129436,12.034467,0.108803418,1620000000000 ,1620000000000 ,1620000000000 ,1616812406000 -1616812406028 ,112.5730092,26.88484291,62.42803574,174.9564784,174.534799,12.034849,0.108799565,1620000000000 ,1620000000000 ,1620000000000 ,1616812406010 -1616812406039 ,112.5730093,26.88484183,62.42974091,174.9783076,174.5473996,12.035187,0.108802109,1620000000000 ,1620000000000 ,1620000000000 ,1616812406020 -1616812406049 ,112.5730094,26.88484074,62.43138885,175.0001096,174.5494838,12.0362835,0.108806946,1620000000000 ,1620000000000 ,1620000000000 ,1616812406030 -1616812406060 ,112.5730095,26.88483966,62.43297195,175.021693,174.5653918,12.0366535,0.108811485,1620000000000 ,1620000000000 ,1620000000000 ,1616812406040 -1616812406069 ,112.5730096,26.88483858,62.43445587,175.0461451,174.5973948,12.037902,0.108814342,1620000000000 ,1620000000000 ,1620000000000 ,1616812406050 -1616812406080 ,112.5730097,26.88483749,62.43585587,175.0703513,174.6261647,12.037488,0.108807617,1620000000000 ,1620000000000 ,1620000000000 ,1616812406060 -1616812406089 ,112.5730098,26.88483641,62.43723679,175.0932461,174.6448728,12.0375,0.108802865,1620000000000 ,1620000000000 ,1620000000000 ,1616812406070 -1616812406099 ,112.5730099,26.88483533,62.43862534,175.1190369,174.6519949,12.036666,0.108797767,1620000000000 ,1620000000000 ,1620000000000 ,1616812406080 -1616812406113 ,112.57301,26.88483424,62.43999481,175.1449096,174.6690431,12.038127,0.108802251,1620000000000 ,1620000000000 ,1620000000000 ,1616812406090 -1616812406119 ,112.5730101,26.88483316,62.44133759,175.1713288,174.700487,12.038333,0.108800667,1620000000000 ,1620000000000 ,1620000000000 ,1616812406100 -1616812406129 ,112.5730102,26.88483208,62.44265747,175.1978026,174.7314471,12.039196,0.108803635,1620000000000 ,1620000000000 ,1620000000000 ,1616812406110 -1616812406143 ,112.5730103,26.88483099,62.4439888,175.2226372,174.7638592,12.040227,0.108811422,1620000000000 ,1620000000000 ,1620000000000 ,1616812406120 -1616812406150 ,112.5730104,26.88482991,62.44531631,175.2471712,174.7899008,12.039528,0.108803598,1620000000000 ,1620000000000 ,1620000000000 ,1616812406130 -1616812406159 ,112.5730105,26.88482882,62.4466362,175.2726341,174.818314,12.039763,0.108801525,1620000000000 ,1620000000000 ,1620000000000 ,1616812406140 -1616812406169 ,112.5730106,26.88482774,62.4479599,175.2997363,174.8524829,12.040472,0.108797965,1620000000000 ,1620000000000 ,1620000000000 ,1616812406150 -1616812406181 ,112.5730107,26.88482666,62.44932556,175.3256091,174.884344,12.042779,0.108819382,1620000000000 ,1620000000000 ,1620000000000 ,1616812406160 -1616812406190 ,112.5730108,26.88482557,62.45080948,175.3520009,174.9150398,12.04121,0.108811383,1620000000000 ,1620000000000 ,1620000000000 ,1616812406170 -1616812406200 ,112.5730109,26.88482449,62.45246124,175.3791031,174.9497012,12.037185,0.108781887,1620000000000 ,1620000000000 ,1620000000000 ,1616812406180 -1616812406211 ,112.573011,26.88482341,62.45425034,175.4046754,174.9775835,12.0334015,0.108743003,1620000000000 ,1620000000000 ,1620000000000 ,1616812406190 -1616812406221 ,112.5730111,26.88482232,62.45599747,175.4216689,175.1673037,12.069764,0.109250352,1620000000000 ,1620000000000 ,1620000000000 ,1616812406200 -1616812406231 ,112.5730112,26.88482122,62.45771027,175.4449188,175.4458092,12.071169,0.110133452,1620000000000 ,1620000000000 ,1620000000000 ,1616812406210 -1616812406241 ,112.5730113,26.88482012,62.45954514,175.466229,175.4671248,12.072082,0.110142558,1620000000000 ,1620000000000 ,1620000000000 ,1616812406220 -1616812406251 ,112.5730113,26.88481902,62.46154404,175.4865284,175.4936978,12.071789,0.110145621,1620000000000 ,1620000000000 ,1620000000000 ,1616812406230 -1616812406267 ,112.5730114,26.88481793,62.46372223,175.5070736,175.5216184,12.070139,0.110131537,1620000000000 ,1620000000000 ,1620000000000 ,1616812406240 -1616812406274 ,112.5730115,26.88481683,62.46606827,175.5318535,175.5443862,12.070771,0.110132198,1620000000000 ,1620000000000 ,1620000000000 ,1616812406250 -1616812406281 ,112.5730116,26.88481573,62.46856308,175.5559777,175.5618013,12.070406,0.110131701,1620000000000 ,1620000000000 ,1620000000000 ,1616812406260 -1616812406291 ,112.5730117,26.88481463,62.47117615,175.5788452,175.5749858,12.067131,0.110113375,1620000000000 ,1620000000000 ,1620000000000 ,1616812406270 -1616812406301 ,112.5730118,26.88481353,62.47389603,175.6038437,175.6033445,12.060644,0.110059673,1620000000000 ,1620000000000 ,1620000000000 ,1616812406280 -1616812406311 ,112.5730119,26.88481244,62.47672272,175.6294432,175.662969,12.056762,0.110018696,1620000000000 ,1620000000000 ,1620000000000 ,1616812406290 -1616812406321 ,112.5730119,26.88481134,62.47968674,175.6574743,175.7159199,12.055176,0.109997476,1620000000000 ,1620000000000 ,1620000000000 ,1616812406300 -1616812406331 ,112.573012,26.88481024,62.48277283,175.6849317,175.7634981,12.0538025,0.109989613,1620000000000 ,1620000000000 ,1620000000000 ,1616812406310 -1616812406341 ,112.5730121,26.88480915,62.4859314,175.7112143,175.8031742,12.053084,0.109981703,1620000000000 ,1620000000000 ,1620000000000 ,1616812406320 -1616812406351 ,112.5730122,26.88480805,62.48905945,175.7354751,175.8355204,12.052196,0.109977801,1620000000000 ,1620000000000 ,1620000000000 ,1616812406330 -1616812406363 ,112.5730123,26.88480695,62.49214172,175.7558017,175.8807409,12.048824,0.109945104,1620000000000 ,1620000000000 ,1620000000000 ,1616812406340 -1616812406372 ,112.5730123,26.88480586,62.49524307,175.7746257,175.932484,12.045818,0.109922023,1620000000000 ,1620000000000 ,1620000000000 ,1616812406350 -1616812406383 ,112.5730124,26.88480476,62.49844742,175.7951709,175.9750176,12.042808,0.109897128,1620000000000 ,1620000000000 ,1620000000000 ,1616812406360 -1616812406393 ,112.5730125,26.88480366,62.50177383,175.8151424,176.0020418,12.0419655,0.109884932,1620000000000 ,1620000000000 ,1620000000000 ,1616812406370 -1616812406404 ,112.5730126,26.88480257,62.50515366,175.8378186,176.012695,12.040911,0.109884491,1620000000000 ,1620000000000 ,1620000000000 ,1616812406380 -1616812406412 ,112.5730126,26.88480147,62.50849915,175.862298,176.0290862,12.039449,0.109870467,1620000000000 ,1620000000000 ,1620000000000 ,1616812406390 -1616812406422 ,112.5730127,26.88480038,62.5117836,175.8855753,176.0399222,12.040808,0.109880632,1620000000000 ,1620000000000 ,1620000000000 ,1616812406400 -1616812406436 ,112.5730128,26.88479928,62.51504898,175.9129507,176.0599229,12.03747,0.109863738,1620000000000 ,1620000000000 ,1620000000000 ,1616812406410 -1616812406445 ,112.5730129,26.88479818,62.51839447,175.9382224,176.0611344,12.033515,0.109832309,1620000000000 ,1620000000000 ,1620000000000 ,1616812406420 -1616812406453 ,112.5730129,26.88479709,62.52192688,175.9654066,176.0480951,12.02705,0.109790157,1620000000000 ,1620000000000 ,1620000000000 ,1616812406430 -1616812406464 ,112.573013,26.88479599,62.52566147,175.9965796,176.0388254,12.021592,0.109745218,1620000000000 ,1620000000000 ,1620000000000 ,1616812406440 -1616812406473 ,112.5730131,26.88479491,62.52958298,176.0287088,175.8802919,12.018553,0.109181916,1620000000000 ,1620000000000 ,1620000000000 ,1616812406450 -1616812406485 ,112.5730132,26.88479382,62.53351212,176.0600457,175.7312347,12.018434,0.108646018,1620000000000 ,1620000000000 ,1620000000000 ,1616812406460 -1616812406493 ,112.5730133,26.88479274,62.53722382,176.0893608,175.7474423,12.0197315,0.108651978,1620000000000 ,1620000000000 ,1620000000000 ,1616812406480 -1616812406503 ,112.5730133,26.88479165,62.54069519,176.1184301,175.7849367,12.025156,0.108694397,1620000000000 ,1620000000000 ,1620000000000 ,1616812406480 -1616812406513 ,112.5730134,26.88479057,62.54391479,176.1493572,175.8343643,12.022563,0.108696584,1620000000000 ,1620000000000 ,1620000000000 ,1616812406500 -1616812406523 ,112.5730135,26.88478949,62.54698944,176.181623,175.8792265,12.014985,0.108638274,1620000000000 ,1620000000000 ,1620000000000 ,1616812406500 -1616812406533 ,112.5730136,26.8847884,62.55012131,176.2137249,175.9134268,12.006119,0.108567464,1620000000000 ,1620000000000 ,1620000000000 ,1616812406520 -1616812406544 ,112.5730137,26.88478624,62.55638123,176.278803,175.9596141,12.004566,0.217091596,1620000000000 ,1620000000000 ,1620000000000 ,1616812406530 -1616812406553 ,112.5730138,26.88478516,62.55909729,176.3154401,176.0767919,12.007577,0.108555069,1620000000000 ,1620000000000 ,1620000000000 ,1616812406540 -1616812406564 ,112.5730139,26.88478407,62.56154251,176.348225,176.1351931,12.006191,0.108559133,1620000000000 ,1620000000000 ,1620000000000 ,1616812406550 -1616812406573 ,112.5730139,26.88478299,62.56396866,176.3786057,176.1518952,11.998678,0.108512344,1620000000000 ,1620000000000 ,1620000000000 ,1616812406560 -1616812406583 ,112.573014,26.88478191,62.56658554,176.4053527,176.1535972,11.989094,0.10844123,1620000000000 ,1620000000000 ,1620000000000 ,1616812406570 -1616812406594 ,112.5730141,26.88478083,62.56926727,176.4365257,176.1790377,11.982412,0.10837672,1620000000000 ,1620000000000 ,1620000000000 ,1616812406580 -1616812406615 ,112.5730141,26.88478083,62.56926727,176.4365257,-400,11.982412,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812406590 -1616812406618 ,112.5730142,26.88477866,62.57382584,176.4994727,176.2550582,11.989051,0.216753668,1620000000000 ,1620000000000 ,1620000000000 ,1616812406600 -1616812406625 ,112.5730143,26.88477758,62.57544708,176.5324762,176.3260513,11.99369,0.108425697,1620000000000 ,1620000000000 ,1620000000000 ,1616812406610 -1616812406634 ,112.5730144,26.8847765,62.57672501,176.5659441,176.3034144,11.996949,0.108450802,1620000000000 ,1620000000000 ,1620000000000 ,1616812406620 -1616812406644 ,112.5730144,26.88477542,62.57767487,176.6009147,176.2930335,11.994288,0.10843359,1620000000000 ,1620000000000 ,1620000000000 ,1616812406630 -1616812406654 ,112.5730145,26.88477434,62.57840729,176.6380982,176.3311802,11.987876,0.108370397,1620000000000 ,1620000000000 ,1620000000000 ,1616812406640 -1616812406664 ,112.5730146,26.88477325,62.5790329,176.6736972,176.3438127,11.982213,0.108314152,1620000000000 ,1620000000000 ,1620000000000 ,1616812406650 -1616812406675 ,112.5730146,26.88477217,62.57962036,176.7135855,176.3464035,11.979691,0.108276562,1620000000000 ,1620000000000 ,1620000000000 ,1616812406660 -1616812406685 ,112.5730147,26.88477109,62.58001709,176.753747,176.3492239,11.983744,0.10828924,1620000000000 ,1620000000000 ,1620000000000 ,1616812406670 -1616812406695 ,112.5730148,26.88477001,62.58002853,176.792925,176.3715978,11.991148,0.10833293,1620000000000 ,1620000000000 ,1620000000000 ,1616812406680 -1616812406708 ,112.5730149,26.88476893,62.5796051,176.8329499,176.4291285,11.996949,0.108370967,1620000000000 ,1620000000000 ,1620000000000 ,1616812406690 -1616812406722 ,112.5730149,26.88476785,62.57873154,176.8726743,176.4742701,12.002916,0.108403945,1620000000000 ,1620000000000 ,1620000000000 ,1616812406700 -1616812406725 ,112.573015,26.88476677,62.57753372,176.911661,176.5404403,11.999593,0.108377362,1620000000000 ,1620000000000 ,1620000000000 ,1616812406710 -1616812406738 ,112.573015,26.88476569,62.57627487,176.9488172,176.5883331,11.996443,0.108349596,1620000000000 ,1620000000000 ,1620000000000 ,1616812406720 -1616812406749 ,112.5730151,26.8847646,62.57513809,176.9849079,176.6211311,11.990647,0.108288887,1620000000000 ,1620000000000 ,1620000000000 ,1616812406730 -1616812406756 ,112.5730152,26.88476352,62.57400513,177.0219549,176.6895726,11.99315,0.108292846,1620000000000 ,1620000000000 ,1620000000000 ,1616812406740 -1616812406765 ,112.5730152,26.88476244,62.57268524,177.0601766,176.7467634,11.991666,0.108272937,1620000000000 ,1620000000000 ,1620000000000 ,1616812406750 -1616812406777 ,112.5730153,26.88476136,62.57120895,177.094191,176.8524378,11.996874,0.108300905,1620000000000 ,1620000000000 ,1620000000000 ,1616812406760 -1616812406787 ,112.5730154,26.88476028,62.56982422,177.1268393,176.9061266,12.000923,0.108338491,1620000000000 ,1620000000000 ,1620000000000 ,1616812406770 -1616812406797 ,112.5730154,26.8847592,62.56863785,177.1606624,176.9278631,12.005627,0.108380895,1620000000000 ,1620000000000 ,1620000000000 ,1616812406780 -1616812406806 ,112.5730155,26.88475811,62.56768036,177.1953324,176.9710876,12.000104,0.108361626,1620000000000 ,1620000000000 ,1620000000000 ,1616812406790 -1616812406816 ,112.5730155,26.88475703,62.5671196,177.2277075,177.0291046,11.983229,0.108234862,1620000000000 ,1620000000000 ,1620000000000 ,1616812406800 -1616812406828 ,112.5730156,26.88475595,62.56706619,177.261394,177.0755459,11.968057,0.108093526,1620000000000 ,1620000000000 ,1620000000000 ,1616812406810 -1616812406836 ,112.5730156,26.88475487,62.56739807,177.2935505,177.1145189,11.968503,0.108061456,1620000000000 ,1620000000000 ,1620000000000 ,1616812406820 -1616812406855 ,112.5730157,26.8847538,62.56787109,177.32374,177.1828987,11.977269,0.108121786,1620000000000 ,1620000000000 ,1620000000000 ,1616812406830 -1616812406873 ,112.5730157,26.88475271,62.56843567,177.3545578,177.2677189,11.987947,0.108217776,1620000000000 ,1620000000000 ,1620000000000 ,1616812406840 -1616812406875 ,112.5730158,26.88475163,62.56923294,177.383709,177.2945003,11.991172,0.108269858,1620000000000 ,1620000000000 ,1620000000000 ,1616812406850 -1616812406879 ,112.5730158,26.88475055,62.57051468,177.4101828,177.3135365,11.985027,0.108234297,1620000000000 ,1620000000000 ,1620000000000 ,1616812406860 -1616812406888 ,112.5730159,26.88474947,62.57239532,177.435154,177.3640552,11.974893,0.108156981,1620000000000 ,1620000000000 ,1620000000000 ,1616812406870 -1616812406898 ,112.5730159,26.88474839,62.57472992,177.4627753,177.4308978,11.968531,0.108086338,1620000000000 ,1620000000000 ,1620000000000 ,1616812406880 -1616812406907 ,112.573016,26.88474731,62.57733536,177.4910796,177.4981867,11.973055,0.108104672,1620000000000 ,1620000000000 ,1620000000000 ,1616812406890 -1616812406920 ,112.573016,26.88474623,62.58004761,177.5192746,177.5368075,11.98226,0.108181613,1620000000000 ,1620000000000 ,1620000000000 ,1616812406900 -1616812406926 ,112.5730161,26.88474515,62.58288956,177.5426339,177.5655374,11.98986,0.108260137,1620000000000 ,1620000000000 ,1620000000000 ,1616812406910 -1616812406937 ,112.5730161,26.88474407,62.5859642,177.5661843,177.5739589,11.988792,0.108270051,1620000000000 ,1620000000000 ,1620000000000 ,1616812406920 -1616812406947 ,112.5730162,26.88474299,62.5893898,177.5879044,177.608179,11.987894,0.108263971,1620000000000 ,1620000000000 ,1620000000000 ,1616812406930 -1616812406968 ,112.5730162,26.8847419,62.59325027,177.6108538,177.6697854,11.982813,0.108238427,1620000000000 ,1620000000000 ,1620000000000 ,1616812406940 -1616812406972 ,112.5730163,26.88474082,62.59744644,177.6366446,177.6959534,11.98033,0.108211525,1620000000000 ,1620000000000 ,1620000000000 ,1616812406950 -1616812406979 ,112.5730163,26.88473974,62.60192871,177.6621895,177.7090359,11.982613,0.108231109,1620000000000 ,1620000000000 ,1620000000000 ,1616812406960 -1616812406987 ,112.5730163,26.88473866,62.60651779,177.6885267,177.698145,11.9876995,0.108274656,1620000000000 ,1620000000000 ,1620000000000 ,1616812406970 -1616812406997 ,112.5730164,26.88473758,62.61104965,177.7145087,177.7129476,11.994552,0.10833796,1620000000000 ,1620000000000 ,1620000000000 ,1616812406980 -1616812407008 ,112.5730164,26.88473649,62.61541748,177.7366932,177.7653968,11.996476,0.108371637,1620000000000 ,1620000000000 ,1620000000000 ,1616812406990 -1616812407017 ,112.5730165,26.88473541,62.61968613,177.7583039,177.8126817,11.997221,0.10838331,1620000000000 ,1620000000000 ,1620000000000 ,1616812407000 -1616812407027 ,112.5730165,26.88473433,62.62402344,177.7811167,177.835649,11.994961,0.108377004,1620000000000 ,1620000000000 ,1620000000000 ,1616812407010 -1616812407037 ,112.5730166,26.88473324,62.628479,177.8060333,177.8504296,11.99538,0.108382604,1620000000000 ,1620000000000 ,1620000000000 ,1616812407020 -1616812407047 ,112.5730166,26.88473216,62.63291168,177.8335726,177.8516619,11.996344,0.108395992,1620000000000 ,1620000000000 ,1620000000000 ,1616812407030 -1616812407066 ,112.5730166,26.88473108,62.6371727,177.859582,177.8617624,11.99801,0.108409978,1620000000000 ,1620000000000 ,1620000000000 ,1616812407040 -1616812407071 ,112.5730167,26.88472999,62.64117813,177.8870666,177.8889296,12.001474,0.108438722,1620000000000 ,1620000000000 ,1620000000000 ,1616812407050 -1616812407079 ,112.5730167,26.88472891,62.64493561,177.9132672,177.9217509,12.005803,0.108472751,1620000000000 ,1620000000000 ,1620000000000 ,1616812407060 -1616812407088 ,112.5730168,26.88472783,62.64850616,177.9378832,177.9561754,12.010059,0.108513698,1620000000000 ,1620000000000 ,1620000000000 ,1616812407070 -1616812407097 ,112.5730168,26.88472674,62.65194702,177.9654499,177.970403,12.013011,0.108543695,1620000000000 ,1620000000000 ,1620000000000 ,1616812407080 -1616812407108 ,112.5730168,26.88472566,62.65525436,177.9920603,177.9731779,12.015028,0.108564945,1620000000000 ,1620000000000 ,1620000000000 ,1616812407090 -1616812407118 ,112.5730169,26.88472457,62.6584053,178.0182609,177.9771083,12.016569,0.108578648,1620000000000 ,1620000000000 ,1620000000000 ,1616812407100 -1616812407128 ,112.5730169,26.88472349,62.66130066,178.0438878,177.9938359,12.021358,0.108606978,1620000000000 ,1620000000000 ,1620000000000 ,1616812407110 -1616812407138 ,112.5730169,26.8847224,62.66384506,178.0727658,178.0246986,12.02829,0.108663095,1620000000000 ,1620000000000 ,1620000000000 ,1616812407120 -1616812407151 ,112.573017,26.88472131,62.66600037,178.1015346,178.0555823,12.033943,0.108705274,1620000000000 ,1620000000000 ,1620000000000 ,1616812407130 -1616812407158 ,112.573017,26.88472023,62.6678772,178.1283909,178.074814,12.038469,0.108745094,1620000000000 ,1620000000000 ,1620000000000 ,1616812407140 -1616812407169 ,112.5730171,26.88471914,62.66959763,178.1540997,178.0822721,12.042364,0.10877886,1620000000000 ,1620000000000 ,1620000000000 ,1616812407150 -1616812407180 ,112.5730171,26.88471805,62.67121506,178.1836608,178.096967,12.046291,0.108807715,1620000000000 ,1620000000000 ,1620000000000 ,1616812407160 -1616812407189 ,112.5730171,26.88471696,62.67271805,178.2110362,178.1252966,12.048087,0.10882793,1620000000000 ,1620000000000 ,1620000000000 ,1616812407170 -1616812407199 ,112.5730172,26.88471588,62.67412567,178.2388487,178.155833,12.04951,0.108836589,1620000000000 ,1620000000000 ,1620000000000 ,1616812407180 -1616812407209 ,112.5730172,26.88471479,62.67544174,178.2661421,178.1774909,12.054508,0.108869128,1620000000000 ,1620000000000 ,1620000000000 ,1616812407190 -1616812407219 ,112.5730172,26.88471371,62.67529297,178.2942825,179.0228895,12.020373,0.107533187,1620000000000 ,1620000000000 ,1620000000000 ,1616812407200 -1616812407231 ,112.5730172,26.88471264,62.67485428,178.3236796,179.1711686,12.024068,0.107387868,1620000000000 ,1620000000000 ,1620000000000 ,1616812407210 -1616812407240 ,112.5730172,26.88471157,62.67429352,178.353268,179.1911985,12.028443,0.107423385,1620000000000 ,1620000000000 ,1620000000000 ,1616812407220 -1616812407249 ,112.5730173,26.88471049,62.67365265,178.382228,179.2259371,12.032319,0.107451644,1620000000000 ,1620000000000 ,1620000000000 ,1616812407230 -1616812407259 ,112.5730173,26.88470942,62.67294312,178.4109148,179.248884,12.03954,0.107510612,1620000000000 ,1620000000000 ,1620000000000 ,1616812407240 -1616812407270 ,112.5730173,26.88470834,62.67218399,178.4391645,179.2825599,12.044571,0.107558888,1620000000000 ,1620000000000 ,1620000000000 ,1616812407250 -1616812407280 ,112.5730173,26.88470726,62.67139816,178.465611,179.3053346,12.046574,0.107585033,1620000000000 ,1620000000000 ,1620000000000 ,1616812407260 -1616812407291 ,112.5730173,26.88470619,62.67060089,178.4921668,179.3321548,12.047226,0.107588902,1620000000000 ,1620000000000 ,1620000000000 ,1616812407270 -1616812407300 ,112.5730173,26.88470511,62.6698494,178.5171106,179.3673243,12.047392,0.107592112,1620000000000 ,1620000000000 ,1620000000000 ,1616812407280 -1616812407311 ,112.5730173,26.88470404,62.66917419,178.5412348,179.398749,12.047434,0.107591092,1620000000000 ,1620000000000 ,1620000000000 ,1616812407290 -1616812407323 ,112.5730173,26.88470296,62.66854095,178.5668071,179.4224504,12.053509,0.107629196,1620000000000 ,1620000000000 ,1620000000000 ,1616812407300 -1616812407330 ,112.5730174,26.88470188,62.6678772,178.5940185,179.4396343,12.061904,0.107704122,1620000000000 ,1620000000000 ,1620000000000 ,1616812407310 -1616812407340 ,112.5730174,26.88470081,62.66716003,178.6198913,179.4661889,12.068089,0.107762628,1620000000000 ,1620000000000 ,1620000000000 ,1616812407320 -1616812407351 ,112.5730174,26.88469973,62.66650391,178.6428407,179.4939502,12.070774,0.107792665,1620000000000 ,1620000000000 ,1620000000000 ,1616812407330 -1616812407360 ,112.5730174,26.88469865,62.66598892,178.6695877,179.5352985,12.071128,0.10780771,1620000000000 ,1620000000000 ,1620000000000 ,1616812407340 -1616812407371 ,112.5730174,26.88469757,62.66564178,178.6956518,179.577868,12.070786,0.107803815,1620000000000 ,1620000000000 ,1620000000000 ,1616812407350 -1616812407381 ,112.5730174,26.88469649,62.66548538,178.7213059,179.6143908,12.073519,0.107826263,1620000000000 ,1620000000000 ,1620000000000 ,1616812407360 -1616812407393 ,112.5730174,26.88469542,62.66547775,178.7452116,179.6447388,12.074642,0.107841523,1620000000000 ,1620000000000 ,1620000000000 ,1616812407370 -1616812407401 ,112.5730174,26.88469434,62.66550827,178.7682976,179.6773322,12.080701,0.107885292,1620000000000 ,1620000000000 ,1620000000000 ,1616812407380 -1616812407413 ,112.5730174,26.88469326,62.66552734,178.7925585,179.7285426,12.08707,0.107946882,1620000000000 ,1620000000000 ,1620000000000 ,1616812407390 -1616812407420 ,112.5730174,26.88469218,62.66559982,178.8161909,179.7759234,12.089251,0.107971692,1620000000000 ,1620000000000 ,1620000000000 ,1616812407400 -1616812407430 ,112.5730174,26.8846911,62.66586685,178.8388672,179.7985284,12.091974,0.108005512,1620000000000 ,1620000000000 ,1620000000000 ,1616812407410 -1616812407442 ,112.5730174,26.88469002,62.66639709,178.8626635,179.8185327,12.089182,0.107994421,1620000000000 ,1620000000000 ,1620000000000 ,1616812407420 -1616812407452 ,112.5730174,26.88468894,62.66717911,178.8861867,179.8653596,12.089963,0.108000278,1620000000000 ,1620000000000 ,1620000000000 ,1616812407430 -1616812407462 ,112.5730174,26.88468786,62.66810608,178.9075515,179.8831299,12.090287,0.108004406,1620000000000 ,1620000000000 ,1620000000000 ,1616812407440 -1616812407473 ,112.5730174,26.88468677,62.67028427,178.9284246,179.204323,12.094379,0.109208904,1620000000000 ,1620000000000 ,1620000000000 ,1616812407450 -1616812407482 ,112.5730175,26.88468567,62.67250061,178.9493523,179.2414205,12.100144,0.109264845,1620000000000 ,1620000000000 ,1620000000000 ,1616812407460 -1616812407491 ,112.5730175,26.88468458,62.67471313,178.9726842,179.2654463,12.105845,0.109312584,1620000000000 ,1620000000000 ,1620000000000 ,1616812407470 -1616812407502 ,112.5730175,26.88468349,62.67691422,178.9982018,179.2924766,12.108874,0.109350955,1620000000000 ,1620000000000 ,1620000000000 ,1616812407480 -1616812407515 ,112.5730175,26.88468239,62.67914963,179.0211512,179.2969527,12.110473,0.109370189,1620000000000 ,1620000000000 ,1620000000000 ,1616812407490 -1616812407522 ,112.5730175,26.8846813,62.68150711,179.0416145,179.3117636,12.112047,0.109392214,1620000000000 ,1620000000000 ,1620000000000 ,1616812407500 -1616812407533 ,112.5730175,26.88468021,62.68397522,179.0644546,179.346746,12.113374,0.109401233,1620000000000 ,1620000000000 ,1620000000000 ,1616812407510 -1616812407543 ,112.5730175,26.88467911,62.68646622,179.0883603,179.376186,12.118981,0.109446261,1620000000000 ,1620000000000 ,1620000000000 ,1616812407520 -1616812407552 ,112.5730176,26.88467802,62.68894958,179.1126485,179.4024929,12.123013,0.109492217,1620000000000 ,1620000000000 ,1620000000000 ,1616812407530 -1616812407563 ,112.5730176,26.88467692,62.69148254,179.132538,179.4253455,12.125822,0.10952089,1620000000000 ,1620000000000 ,1620000000000 ,1616812407540 -1616812407572 ,112.5730176,26.88467583,62.69409943,179.1552142,179.4337997,12.128199,0.109548225,1620000000000 ,1620000000000 ,1620000000000 ,1616812407550 -1616812407584 ,112.5730176,26.88467473,62.69669724,179.1744207,179.4499142,12.130037,0.109565996,1620000000000 ,1620000000000 ,1620000000000 ,1616812407560 -1616812407594 ,112.5730176,26.88467363,62.69921112,179.195485,179.4954129,12.135731,0.109606957,1620000000000 ,1620000000000 ,1620000000000 ,1616812407570 -1616812407604 ,112.5730176,26.88467254,62.7015686,179.2148554,179.5393412,12.143772,0.109678226,1620000000000 ,1620000000000 ,1620000000000 ,1616812407580 -1616812407616 ,112.5730176,26.88467144,62.70376205,179.2347176,179.5672507,12.150394,0.109735771,1620000000000 ,1620000000000 ,1620000000000 ,1616812407600 -1616812407624 ,112.5730176,26.88467034,62.70582581,179.2552355,179.5854263,12.156861,0.109796716,1620000000000 ,1620000000000 ,1620000000000 ,1616812407600 -1616812407633 ,112.5730176,26.88466924,62.70777893,179.2742234,179.5848269,12.161362,0.109840582,1620000000000 ,1620000000000 ,1620000000000 ,1616812407620 -1616812407645 ,112.5730176,26.88466814,62.70961761,179.2903427,179.6041745,12.16491,0.109871167,1620000000000 ,1620000000000 ,1620000000000 ,1616812407630 -1616812407655 ,112.5730176,26.88466705,62.71133423,179.3074728,179.6417733,12.170777,0.109913162,1620000000000 ,1620000000000 ,1620000000000 ,1616812407640 -1616812407664 ,112.5730176,26.88466595,62.71293259,179.3229363,179.6836965,12.173248,0.109945297,1620000000000 ,1620000000000 ,1620000000000 ,1616812407650 -1616812407674 ,112.5730177,26.88466375,62.71605301,179.3513772,179.7035941,12.185567,0.220049956,1620000000000 ,1620000000000 ,1620000000000 ,1616812407660 -1616812407684 ,112.5730177,26.88466375,62.71605301,179.3513772,-400,12.185567,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812407670 -1616812407695 ,112.5730177,26.88466154,62.71894073,179.375037,179.7149379,12.196931,0.220251105,1620000000000 ,1620000000000 ,1620000000000 ,1616812407680 -1616812407703 ,112.5730177,26.88466154,62.71894073,179.375037,-400,12.196931,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812407680 -1616812407713 ,112.5730177,26.88466044,62.72019958,179.3872221,179.7557353,12.202263,0.110193203,1620000000000 ,1620000000000 ,1620000000000 ,1616812407700 -1616812407723 ,112.5730177,26.88465824,62.72245789,179.4087781,179.7953458,12.214647,0.220532481,1620000000000 ,1620000000000 ,1620000000000 ,1616812407710 -1616812407733 ,112.5730177,26.88465713,62.72356415,179.4184497,179.809524,12.218981,0.110344798,1620000000000 ,1620000000000 ,1620000000000 ,1616812407720 -1616812407746 ,112.5730177,26.88465603,62.72466278,179.4265913,179.8123117,12.224289,0.110382981,1620000000000 ,1620000000000 ,1620000000000 ,1616812407730 -1616812407754 ,112.5730177,26.88465492,62.72570038,179.4344597,179.8116683,12.229534,0.110433023,1620000000000 ,1620000000000 ,1620000000000 ,1616812407740 -1616812407766 ,112.5730177,26.88465382,62.72662735,179.4435301,179.832868,12.233134,0.110460786,1620000000000 ,1620000000000 ,1620000000000 ,1616812407750 -1616812407781 ,112.5730177,26.88465271,62.72746658,179.4514805,179.8626232,12.241248,0.110523038,1620000000000 ,1620000000000 ,1620000000000 ,1616812407760 -1616812407790 ,112.5730177,26.88465161,62.72823715,179.4588571,179.874949,12.249434,0.110592762,1620000000000 ,1620000000000 ,1620000000000 ,1616812407770 -1616812407796 ,112.5730177,26.8846505,62.72899246,179.4688838,179.8669031,12.253035,0.110633443,1620000000000 ,1620000000000 ,1620000000000 ,1616812407780 -1616812407804 ,112.5730177,26.8846494,62.72980499,179.4777084,179.86484,12.258612,0.110684531,1620000000000 ,1620000000000 ,1620000000000 ,1616812407790 -1616812407817 ,112.5730177,26.88464829,62.73072052,179.4862325,179.8704426,12.260219,0.110704697,1620000000000 ,1620000000000 ,1620000000000 ,1616812407800 -1616812407826 ,112.5730177,26.88464829,62.73072052,179.4862325,-400,12.260219,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812407800 -1616812407836 ,112.5730177,26.88464607,62.73257065,179.4995104,179.8925391,12.269588,0.221523371,1620000000000 ,1620000000000 ,1620000000000 ,1616812407820 -1616812407844 ,112.5730177,26.88464496,62.73339081,179.5086082,179.9206797,12.27683,0.110836181,1620000000000 ,1620000000000 ,1620000000000 ,1616812407830 -1616812407858 ,112.5730177,26.88464386,62.73418045,179.5164766,179.9164453,12.2853,0.110906267,1620000000000 ,1620000000000 ,1620000000000 ,1616812407840 -1616812407870 ,112.5730177,26.88464275,62.7349968,179.5254378,179.893957,12.292129,0.110979555,1620000000000 ,1620000000000 ,1620000000000 ,1616812407850 -1616812407880 ,112.5730177,26.88464164,62.73587036,179.5313937,179.8856488,12.296189,0.111015055,1620000000000 ,1620000000000 ,1620000000000 ,1616812407860 -1616812407887 ,112.5730177,26.88464053,62.73679352,179.5386337,179.89974,12.29908,0.111048037,1620000000000 ,1620000000000 ,1620000000000 ,1616812407870 -1616812407896 ,112.5730177,26.88463941,62.73777771,179.5474583,179.9107753,12.302379,0.111070393,1620000000000 ,1620000000000 ,1620000000000 ,1616812407880 -1616812407907 ,112.5730177,26.8846383,62.73887253,179.5535782,179.9160863,12.309124,0.111131451,1620000000000 ,1620000000000 ,1620000000000 ,1616812407890 -1616812407920 ,112.5730177,26.88463719,62.7400856,179.5608455,179.9060571,12.315631,0.111189854,1620000000000 ,1620000000000 ,1620000000000 ,1616812407900 -1616812407928 ,112.5730177,26.88463608,62.74139786,179.5710634,179.8975971,12.320576,0.111242364,1620000000000 ,1620000000000 ,1620000000000 ,1616812407910 -1616812407938 ,112.5730177,26.88463497,62.74279022,179.5787132,179.8790134,12.322469,0.111262702,1620000000000 ,1620000000000 ,1620000000000 ,1616812407920 -1616812407949 ,112.5730177,26.88463385,62.74431992,179.5866089,179.8893531,12.326826,0.111301726,1620000000000 ,1620000000000 ,1620000000000 ,1616812407930 -1616812407957 ,112.5730177,26.88463274,62.74597931,179.5949964,179.906889,12.329583,0.111334209,1620000000000 ,1620000000000 ,1620000000000 ,1616812407940 -1616812407967 ,112.5730177,26.88463163,62.74767685,179.6016354,179.9199638,12.338669,0.111398242,1620000000000 ,1620000000000 ,1620000000000 ,1616812407950 -1616812407978 ,112.5730177,26.88463051,62.74938965,179.6097223,179.9215972,12.344402,0.111469626,1620000000000 ,1620000000000 ,1620000000000 ,1616812407960 -1616812407988 ,112.5730177,26.8846294,62.75113678,179.6170169,179.9277234,12.349415,0.111504626,1620000000000 ,1620000000000 ,1620000000000 ,1616812407970 -1616812407998 ,112.5730177,26.88462828,62.75299835,179.6233007,179.9276403,12.350767,0.11153627,1620000000000 ,1620000000000 ,1620000000000 ,1616812407980 -1616812408008 ,112.5730177,26.88462717,62.75495911,179.6319614,179.9342508,12.353816,0.111555414,1620000000000 ,1620000000000 ,1620000000000 ,1616812407990 -1616812408018 ,112.5730177,26.88462605,62.75697327,179.6382179,179.9674897,12.360471,0.111618334,1620000000000 ,1620000000000 ,1620000000000 ,1616812408000 -1616812408031 ,112.5730177,26.88462493,62.75901031,179.6440372,180.0019353,12.3649645,0.111659672,1620000000000 ,1620000000000 ,1620000000000 ,1616812408010 -1616812408038 ,112.5730177,26.88462382,62.76105118,179.650157,180.0234986,12.371382,0.111714212,1620000000000 ,1620000000000 ,1620000000000 ,1616812408020 -1616812408049 ,112.5730177,26.8846227,62.76307678,179.6565774,180.0195174,12.377231,0.111770013,1620000000000 ,1620000000000 ,1620000000000 ,1616812408030 -1616812408058 ,112.5730177,26.88462158,62.76506042,179.6608394,180.0113787,12.380393,0.111807438,1620000000000 ,1620000000000 ,1620000000000 ,1616812408040 -1616812408068 ,112.5730177,26.88462046,62.76702499,179.6641179,180.0149119,12.385181,0.111841283,1620000000000 ,1620000000000 ,1620000000000 ,1616812408050 -1616812408079 ,112.5730177,26.88461934,62.76896667,179.6664675,180.0380392,12.391613,0.111897979,1620000000000 ,1620000000000 ,1620000000000 ,1616812408060 -1616812408090 ,112.5730177,26.88461822,62.77084732,179.671276,180.0554695,12.400504,0.111967857,1620000000000 ,1620000000000 ,1620000000000 ,1616812408070 -1616812408101 ,112.5730177,26.8846171,62.77267456,179.6756473,180.0762094,12.408646,0.112050657,1620000000000 ,1620000000000 ,1620000000000 ,1616812408080 -1616812408115 ,112.5730177,26.88461598,62.7745018,179.6814666,180.0681128,12.410567,0.112082119,1620000000000 ,1620000000000 ,1620000000000 ,1616812408090 -1616812408120 ,112.5730177,26.88461486,62.77632141,179.6840621,180.0476104,12.410874,0.112081482,1620000000000 ,1620000000000 ,1620000000000 ,1616812408100 -1616812408129 ,112.5730177,26.88461374,62.77804565,179.6881329,180.0408007,12.41809,0.112127227,1620000000000 ,1620000000000 ,1620000000000 ,1616812408110 -1616812408141 ,112.5730177,26.88461262,62.77960205,179.6911382,180.0616331,12.429807,0.112224371,1620000000000 ,1620000000000 ,1620000000000 ,1616812408120 -1616812408151 ,112.5730177,26.88461149,62.78100204,179.6942527,180.0975258,12.43952,0.112312106,1620000000000 ,1620000000000 ,1620000000000 ,1616812408130 -1616812408159 ,112.5730177,26.88461037,62.78239822,179.6981869,180.0976577,12.449814,0.112403796,1620000000000 ,1620000000000 ,1620000000000 ,1616812408140 -1616812408170 ,112.5730177,26.88460925,62.78385544,179.6996622,180.066685,12.452544,0.112449054,1620000000000 ,1620000000000 ,1620000000000 ,1616812408150 -1616812408191 ,112.5730177,26.88460812,62.78536987,179.7041428,180.0486225,12.455419,0.112473047,1620000000000 ,1620000000000 ,1620000000000 ,1616812408160 -1616812408193 ,112.5730177,26.884607,62.78689957,179.7075853,180.0628369,12.460022,0.112511684,1620000000000 ,1620000000000 ,1620000000000 ,1616812408170 -1616812408200 ,112.5730177,26.88460587,62.78839874,179.7120112,180.0822241,12.466527,0.112563371,1620000000000 ,1620000000000 ,1620000000000 ,1616812408180 -1616812408214 ,112.5730177,26.88460474,62.78987503,179.7151531,180.0969334,12.47322,0.112625578,1620000000000 ,1620000000000 ,1620000000000 ,1616812408190 -1616812408222 ,112.5730177,26.88460361,62.7906189,179.7128855,179.697525,12.517017,0.11320128,1620000000000 ,1620000000000 ,1620000000000 ,1616812408200 -1616812408232 ,112.5730177,26.88460247,62.79066086,179.7137871,179.266102,12.521765,0.114099574,1620000000000 ,1620000000000 ,1620000000000 ,1616812408210 -1616812408240 ,112.5730178,26.88460133,62.79076767,179.7162459,179.26438,12.526716,0.114142869,1620000000000 ,1620000000000 ,1620000000000 ,1616812408220 -1616812408250 ,112.5730178,26.88460019,62.79088974,179.7209724,179.2687979,12.533641,0.114201749,1620000000000 ,1620000000000 ,1620000000000 ,1616812408230 -1616812408261 ,112.5730178,26.88459904,62.79103088,179.7250159,179.2777404,12.543175,0.114285464,1620000000000 ,1620000000000 ,1620000000000 ,1616812408240 -1616812408271 ,112.5730178,26.8845979,62.79124069,179.7277753,179.2778943,12.547253,0.11433723,1620000000000 ,1620000000000 ,1620000000000 ,1616812408250 -1616812408281 ,112.5730178,26.88459676,62.79149628,179.7318188,179.266178,12.553474,0.114388005,1620000000000 ,1620000000000 ,1620000000000 ,1616812408260 -1616812408291 ,112.5730178,26.88459561,62.79175186,179.7341684,179.2678079,12.556519,0.11442967,1620000000000 ,1620000000000 ,1620000000000 ,1616812408270 -1616812408301 ,112.5730178,26.88459447,62.79194641,179.7364087,179.258819,12.562359,0.114470333,1620000000000 ,1620000000000 ,1620000000000 ,1616812408280 -1616812408312 ,112.5730179,26.88459332,62.79209518,179.738649,179.2545097,12.571383,0.114550295,1620000000000 ,1620000000000 ,1620000000000 ,1616812408290 -1616812408321 ,112.5730179,26.88459218,62.79217911,179.7417635,179.2659851,12.5787,0.114611644,1620000000000 ,1620000000000 ,1620000000000 ,1616812408300 -1616812408332 ,112.5730179,26.88459103,62.79220963,179.7459436,179.2696151,12.584408,0.114667748,1620000000000 ,1620000000000 ,1620000000000 ,1616812408310 -1616812408341 ,112.5730179,26.88458988,62.79228973,179.7482659,179.2603655,12.58853,0.114719905,1620000000000 ,1620000000000 ,1620000000000 ,1616812408320 -1616812408351 ,112.5730179,26.88458874,62.79252625,179.7509979,179.2462104,12.588598,0.114728209,1620000000000 ,1620000000000 ,1620000000000 ,1616812408330 -1616812408361 ,112.5730179,26.88458759,62.79281235,179.7537847,179.2404771,12.594411,0.114768852,1620000000000 ,1620000000000 ,1620000000000 ,1616812408340 -1616812408377 ,112.573018,26.88458644,62.79300308,179.7582926,179.2485022,12.605441,0.114848807,1620000000000 ,1620000000000 ,1620000000000 ,1616812408350 -1616812408382 ,112.573018,26.88458529,62.79299164,179.763101,179.2746945,12.618745,0.114967465,1620000000000 ,1620000000000 ,1620000000000 ,1616812408360 -1616812408392 ,112.573018,26.88458414,62.79280472,179.7669259,179.2854882,12.627261,0.115051275,1620000000000 ,1620000000000 ,1620000000000 ,1616812408370 -1616812408402 ,112.573018,26.88458299,62.79256058,179.7691936,179.2719161,12.630091,0.115090284,1620000000000 ,1620000000000 ,1620000000000 ,1616812408380 -1616812408411 ,112.573018,26.88458184,62.79232788,179.7709148,179.2634892,12.632253,0.115112345,1620000000000 ,1620000000000 ,1620000000000 ,1616812408390 -1616812408421 ,112.573018,26.88458069,62.79204559,179.7751495,179.2753811,12.636879,0.115140441,1620000000000 ,1620000000000 ,1620000000000 ,1616812408400 -1616812408431 ,112.573018,26.88457954,62.79166794,179.7807229,179.2904885,12.645696,0.115210095,1620000000000 ,1620000000000 ,1620000000000 ,1616812408410 -1616812408443 ,112.5730181,26.88457838,62.79125595,179.7853401,179.3001212,12.652354,0.115274316,1620000000000 ,1620000000000 ,1620000000000 ,1616812408420 -1616812408452 ,112.5730181,26.88457723,62.79088211,179.7886733,179.2791319,12.661179,0.11535344,1620000000000 ,1620000000000 ,1620000000000 ,1616812408430 -1616812408462 ,112.5730181,26.88457608,62.79049301,179.7921976,179.2552165,12.666292,0.115400777,1620000000000 ,1620000000000 ,1620000000000 ,1616812408440 -1616812408472 ,112.5730181,26.88457493,62.79069138,179.7954215,179.6386045,12.677689,0.114970606,1620000000000 ,1620000000000 ,1620000000000 ,1616812408460 -1616812408483 ,112.5730181,26.88457378,62.7914238,179.8014047,180.044127,12.68727,0.114541376,1620000000000 ,1620000000000 ,1620000000000 ,1616812408470 -1616812408493 ,112.5730181,26.88457263,62.79204178,179.8061312,180.0566182,12.695532,0.114621798,1620000000000 ,1620000000000 ,1620000000000 ,1616812408480 -1616812408504 ,112.5730181,26.88457149,62.79272842,179.8082622,180.0415329,12.6989975,0.114661475,1620000000000 ,1620000000000 ,1620000000000 ,1616812408480 -1616812408514 ,112.5730181,26.88457034,62.79354477,179.812333,180.0247257,12.704305,0.114705592,1620000000000 ,1620000000000 ,1620000000000 ,1616812408500 -1616812408525 ,112.5730181,26.88456804,62.79518127,179.8221685,180.0325344,12.7185955,0.229595667,1620000000000 ,1620000000000 ,1620000000000 ,1616812408510 -1616812408535 ,112.5730181,26.8845669,62.79589844,179.8258841,180.0423183,12.726294,0.114896085,1620000000000 ,1620000000000 ,1620000000000 ,1616812408520 -1616812408545 ,112.5730181,26.88456575,62.79673386,179.8266491,180.0395951,12.7304535,0.114942997,1620000000000 ,1620000000000 ,1620000000000 ,1616812408530 -1616812408555 ,112.5730181,26.8845646,62.79770279,179.8300369,180.0369624,12.738172,0.115001447,1620000000000 ,1620000000000 ,1620000000000 ,1616812408540 -1616812408565 ,112.5730181,26.88456345,62.79876709,179.8344355,180.0501995,12.742035,0.115051336,1620000000000 ,1620000000000 ,1620000000000 ,1616812408550 -1616812408574 ,112.5730181,26.88456229,62.79989243,179.8383151,180.0502872,12.748474,0.115103397,1620000000000 ,1620000000000 ,1620000000000 ,1616812408560 -1616812408585 ,112.5730181,26.88456114,62.80106735,179.8406647,180.0453104,12.755181,0.115163555,1620000000000 ,1620000000000 ,1620000000000 ,1616812408570 -1616812408594 ,112.5730181,26.88455999,62.80221558,179.8418941,180.0559237,12.762903,0.115228374,1620000000000 ,1620000000000 ,1620000000000 ,1616812408580 -1616812408604 ,112.5730181,26.88455999,62.80221558,179.8418941,-400,12.762903,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812408590 -1616812408615 ,112.5730181,26.88455768,62.80432129,179.8501723,180.0800012,12.780514,0.230710607,1620000000000 ,1620000000000 ,1620000000000 ,1616812408600 -1616812408624 ,112.5730181,26.88455653,62.80540085,179.852959,180.0896923,12.784858,0.115432496,1620000000000 ,1620000000000 ,1620000000000 ,1616812408610 -1616812408634 ,112.5730181,26.88455537,62.80664444,179.8545163,180.0747284,12.786018,0.115456801,1620000000000 ,1620000000000 ,1620000000000 ,1616812408620 -1616812408645 ,112.5730181,26.88455422,62.80806732,179.8564287,180.0750138,12.792221,0.115494047,1620000000000 ,1620000000000 ,1620000000000 ,1616812408630 -1616812408654 ,112.5730181,26.88455306,62.80956268,179.8600624,180.1012345,12.80395,0.115597039,1620000000000 ,1620000000000 ,1620000000000 ,1616812408640 -1616812408664 ,112.5730181,26.88455191,62.81100082,179.8650075,180.1264311,12.811535,0.115672976,1620000000000 ,1620000000000 ,1620000000000 ,1616812408650 -1616812408674 ,112.5730181,26.88455075,62.81246185,179.8677395,180.139691,12.816133,0.115725583,1620000000000 ,1620000000000 ,1620000000000 ,1616812408660 -1616812408688 ,112.5730181,26.88454959,62.81409073,179.8683679,180.1298673,12.818193,0.115749633,1620000000000 ,1620000000000 ,1620000000000 ,1616812408670 -1616812408697 ,112.5730181,26.88454843,62.81584167,179.8711546,180.1219683,12.826719,0.115806518,1620000000000 ,1620000000000 ,1620000000000 ,1616812408680 -1616812408704 ,112.5730181,26.88454728,62.81755066,179.8759904,180.1369656,12.836059,0.11590136,1620000000000 ,1620000000000 ,1620000000000 ,1616812408690 -1616812408716 ,112.5730181,26.88454612,62.81918716,179.8803071,180.168455,12.842609,0.115957484,1620000000000 ,1620000000000 ,1620000000000 ,1616812408700 -1616812408724 ,112.573018,26.88454496,62.82091141,179.8829572,180.1753355,12.844286,0.115993356,1620000000000 ,1620000000000 ,1620000000000 ,1616812408710 -1616812408736 ,112.573018,26.8845438,62.82282639,179.8868641,180.1403391,12.847373,0.116015004,1620000000000 ,1620000000000 ,1620000000000 ,1616812408720 -1616812408745 ,112.573018,26.88454263,62.82477188,179.8924648,180.1316789,12.852792,0.116061059,1620000000000 ,1620000000000 ,1620000000000 ,1616812408730 -1616812408755 ,112.573018,26.88454147,62.82658768,179.8987759,180.1427986,12.863718,0.116139074,1620000000000 ,1620000000000 ,1620000000000 ,1616812408740 -1616812408765 ,112.573018,26.88454031,62.82825089,179.9019724,180.1578108,12.873736,0.116235514,1620000000000 ,1620000000000 ,1620000000000 ,1616812408750 -1616812408775 ,112.573018,26.88453915,62.82988739,179.9050324,180.1587526,12.882145,0.116313787,1620000000000 ,1620000000000 ,1620000000000 ,1616812408760 -1616812408787 ,112.573018,26.88453798,62.83152008,179.9091032,180.154067,12.889562,0.11638112,1620000000000 ,1620000000000 ,1620000000000 ,1616812408770 -1616812408802 ,112.573018,26.88453682,62.83314896,179.9165344,180.1565263,12.895549,0.116438778,1620000000000 ,1620000000000 ,1620000000000 ,1616812408780 -1616812408809 ,112.573018,26.88453565,62.8347702,179.922463,180.1615415,12.902957,0.116498236,1620000000000 ,1620000000000 ,1620000000000 ,1616812408790 -1616812408817 ,112.573018,26.88453449,62.83633804,179.9265611,180.1718799,12.9119625,0.116578749,1620000000000 ,1620000000000 ,1620000000000 ,1616812408800 -1616812408826 ,112.573018,26.88453332,62.83786011,179.9324897,180.1809519,12.919459,0.116644904,1620000000000 ,1620000000000 ,1620000000000 ,1616812408810 -1616812408837 ,112.573018,26.88453216,62.83940887,179.9356589,180.1873147,12.92573,0.116707793,1620000000000 ,1620000000000 ,1620000000000 ,1616812408820 -1616812408847 ,112.573018,26.88453099,62.84103394,179.939238,180.1822405,12.932295,0.1167664,1620000000000 ,1620000000000 ,1620000000000 ,1616812408830 -1616812408856 ,112.573018,26.88452982,62.84269333,179.942653,180.1819251,12.939287,0.116827392,1620000000000 ,1620000000000 ,1620000000000 ,1616812408840 -1616812408867 ,112.573018,26.88452865,62.84431839,179.9469424,180.1969994,12.949316,0.116907158,1620000000000 ,1620000000000 ,1620000000000 ,1616812408850 -1616812408876 ,112.573018,26.88452748,62.8458786,179.9494832,180.2229879,12.958973,0.116995031,1620000000000 ,1620000000000 ,1620000000000 ,1616812408860 -1616812408886 ,112.573018,26.88452631,62.84741592,179.9519148,180.2375596,12.967216,0.11707905,1620000000000 ,1620000000000 ,1620000000000 ,1616812408870 -1616812408896 ,112.573018,26.88452514,62.84899521,179.9538819,180.2412981,12.974196,0.117137539,1620000000000 ,1620000000000 ,1620000000000 ,1616812408880 -1616812408907 ,112.573018,26.88452397,62.85065842,179.9542917,180.2396743,12.978753,0.117193598,1620000000000 ,1620000000000 ,1620000000000 ,1616812408890 -1616812408917 ,112.573018,26.88452279,62.85238647,179.9574609,180.2365801,12.983889,0.117231307,1620000000000 ,1620000000000 ,1620000000000 ,1616812408900 -1616812408928 ,112.573018,26.88452162,62.85412979,179.9598924,180.2551919,12.992146,0.117305039,1620000000000 ,1620000000000 ,1620000000000 ,1616812408910 -1616812408937 ,112.573018,26.88452045,62.85585403,179.9620781,180.2682821,13.00295,0.117392801,1620000000000 ,1620000000000 ,1620000000000 ,1616812408920 -1616812408947 ,112.573018,26.88452045,62.85585403,179.9620781,-400,13.00295,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812408930 -1616812408957 ,112.573018,26.8845181,62.85932922,179.9663675,180.2525392,13.014149,0.234979335,1620000000000 ,1620000000000 ,1620000000000 ,1616812408940 -1616812408969 ,112.573018,26.88451692,62.8611412,179.9683346,180.250324,13.022772,0.117580889,1620000000000 ,1620000000000 ,1620000000000 ,1616812408950 -1616812408984 ,112.5730179,26.88451574,62.86296463,179.9716131,180.2472566,13.032703,0.117671321,1620000000000 ,1620000000000 ,1620000000000 ,1616812408960 -1616812408989 ,112.5730179,26.88451457,62.86474991,179.9734162,180.2578558,13.042664,0.117751903,1620000000000 ,1620000000000 ,1620000000000 ,1616812408970 -1616812408999 ,112.5730179,26.88451339,62.86654663,179.9738534,180.2683643,13.050813,0.11784472,1620000000000 ,1620000000000 ,1620000000000 ,1616812408980 -1616812409007 ,112.5730179,26.88451221,62.86837006,179.9758204,180.264654,13.058107,0.117906214,1620000000000 ,1620000000000 ,1620000000000 ,1616812408990 -1616812409018 ,112.5730179,26.88451103,62.87023544,179.9798366,180.2489433,13.062222,0.117954356,1620000000000 ,1620000000000 ,1620000000000 ,1616812409000 -1616812409029 ,112.5730179,26.88450985,62.87213898,179.9852461,180.2220456,13.069256,0.118009282,1620000000000 ,1620000000000 ,1620000000000 ,1616812409010 -1616812409038 ,112.5730179,26.88450867,62.87404633,179.9898633,180.228288,13.078904,0.118094754,1620000000000 ,1620000000000 ,1620000000000 ,1616812409020 -1616812409049 ,112.5730179,26.88450749,62.87591171,179.9957646,180.2365404,13.089999,0.118187611,1620000000000 ,1620000000000 ,1620000000000 ,1616812409030 -1616812409057 ,112.5730179,26.88450631,62.87770081,180.0010102,180.2380289,13.095705,0.118251742,1620000000000 ,1620000000000 ,1620000000000 ,1616812409040 -1616812409069 ,112.5730179,26.88450512,62.87947845,180.0059826,180.2401777,13.102436,0.118312819,1620000000000 ,1620000000000 ,1620000000000 ,1616812409050 -1616812409078 ,112.5730179,26.88450394,62.88130188,180.007895,180.2399368,13.108254,0.118363424,1620000000000 ,1620000000000 ,1620000000000 ,1616812409060 -1616812409088 ,112.5730179,26.88450275,62.88311386,180.0120204,180.2316466,13.116146,0.118432423,1620000000000 ,1620000000000 ,1620000000000 ,1616812409070 -1616812409099 ,112.5730179,26.88450157,62.88481522,180.0150257,180.2359496,13.124807,0.118500822,1620000000000 ,1620000000000 ,1620000000000 ,1616812409080 -1616812409108 ,112.5730179,26.88450038,62.8863678,180.0201894,180.2580562,13.134952,0.118595642,1620000000000 ,1620000000000 ,1620000000000 ,1616812409090 -1616812409118 ,112.5730179,26.8844992,62.88781738,180.0263638,180.2534591,13.143374,0.11866596,1620000000000 ,1620000000000 ,1620000000000 ,1616812409100 -1616812409129 ,112.5730179,26.88449801,62.8891983,180.031145,180.2430668,13.151916,0.118745594,1620000000000 ,1620000000000 ,1620000000000 ,1616812409110 -1616812409143 ,112.5730179,26.88449682,62.89053726,180.0356256,180.2407729,13.158664,0.118807273,1620000000000 ,1620000000000 ,1620000000000 ,1616812409120 -1616812409154 ,112.5730179,26.88449563,62.89179611,180.0393958,180.2443532,13.163869,0.118858222,1620000000000 ,1620000000000 ,1620000000000 ,1616812409130 -1616812409160 ,112.5730179,26.88449444,62.89301682,180.0433574,180.2454616,13.169715,0.118904348,1620000000000 ,1620000000000 ,1620000000000 ,1616812409140 -1616812409170 ,112.5730179,26.88449325,62.89431381,180.04486,180.2534148,13.178249,0.118975898,1620000000000 ,1620000000000 ,1620000000000 ,1616812409150 -1616812409180 ,112.5730178,26.88449206,62.89570618,180.0473462,180.2362066,13.1865,0.119054065,1620000000000 ,1620000000000 ,1620000000000 ,1616812409160 -1616812409190 ,112.5730178,26.88449087,62.89710999,180.0531655,180.225704,13.196616,0.119136147,1620000000000 ,1620000000000 ,1620000000000 ,1616812409170 -1616812409199 ,112.5730178,26.88448968,62.89848328,180.0576188,180.2220785,13.20677,0.11923615,1620000000000 ,1620000000000 ,1620000000000 ,1616812409180 -1616812409210 ,112.5730178,26.88448849,62.89982224,180.0648588,180.2158213,13.216257,0.11931616,1620000000000 ,1620000000000 ,1620000000000 ,1616812409190 -1616812409219 ,112.5730178,26.8844873,62.89968491,180.0633562,179.6751459,13.197947,0.11890764,1620000000000 ,1620000000000 ,1620000000000 ,1616812409200 -1616812409230 ,112.5730179,26.88448611,62.89780807,180.0662795,179.0047759,13.206515,0.118303595,1620000000000 ,1620000000000 ,1620000000000 ,1616812409210 -1616812409239 ,112.5730179,26.88448493,62.89600372,180.0686564,179.0160982,13.213131,0.118369508,1620000000000 ,1620000000000 ,1620000000000 ,1616812409220 -1616812409249 ,112.5730179,26.88448375,62.89431,180.0699131,179.0357756,13.220453,0.118436344,1620000000000 ,1620000000000 ,1620000000000 ,1616812409230 -1616812409260 ,112.5730179,26.88448256,62.89264679,180.0741479,179.0335927,13.227283,0.118497617,1620000000000 ,1620000000000 ,1620000000000 ,1616812409240 -1616812409270 ,112.5730179,26.88448138,62.89102554,180.0758964,179.049121,13.2344,0.118564145,1620000000000 ,1620000000000 ,1620000000000 ,1616812409250 -1616812409282 ,112.573018,26.88448019,62.889431,180.0824534,179.0441108,13.242567,0.118633763,1620000000000 ,1620000000000 ,1620000000000 ,1616812409260 -1616812409290 ,112.573018,26.884479,62.88777924,180.0863056,179.0462569,13.251494,0.118710648,1620000000000 ,1620000000000 ,1620000000000 ,1616812409270 -1616812409300 ,112.573018,26.88447782,62.88605118,180.0887918,179.0666253,13.2634325,0.118808206,1620000000000 ,1620000000000 ,1620000000000 ,1616812409280 -1616812409311 ,112.573018,26.88447663,62.88431931,180.0905676,179.0779484,13.27221,0.118899697,1620000000000 ,1620000000000 ,1620000000000 ,1616812409290 -1616812409320 ,112.573018,26.88447544,62.88271332,180.089666,179.0734628,13.279833,0.118967946,1620000000000 ,1620000000000 ,1620000000000 ,1616812409300 -1616812409331 ,112.5730181,26.88447425,62.88121414,180.0893109,179.0680794,13.290106,0.119056478,1620000000000 ,1620000000000 ,1620000000000 ,1616812409310 -1616812409340 ,112.5730181,26.88447306,62.87971878,180.0922069,179.0761886,13.297439,0.119132174,1620000000000 ,1620000000000 ,1620000000000 ,1616812409320 -1616812409351 ,112.5730181,26.88447186,62.87823486,180.0947477,179.0870858,13.302134,0.119178205,1620000000000 ,1620000000000 ,1620000000000 ,1616812409330 -1616812409360 ,112.5730181,26.88447067,62.87679672,180.0999933,179.0636031,13.307991,0.119231924,1620000000000 ,1620000000000 ,1620000000000 ,1616812409340 -1616812409371 ,112.5730181,26.88446948,62.87538147,180.103545,179.0411129,13.317045,0.119302799,1620000000000 ,1620000000000 ,1620000000000 ,1616812409350 -1616812409381 ,112.5730182,26.88446828,62.87392044,180.1054028,179.0381556,13.329099,0.119404839,1620000000000 ,1620000000000 ,1620000000000 ,1616812409360 -1616812409391 ,112.5730182,26.88446709,62.8723793,180.1054848,179.043567,13.339836,0.119508,1620000000000 ,1620000000000 ,1620000000000 ,1616812409370 -1616812409401 ,112.5730182,26.88446589,62.87084579,180.105758,179.0472685,13.348334,0.119583819,1620000000000 ,1620000000000 ,1620000000000 ,1616812409380 -1616812409412 ,112.5730182,26.8844647,62.86943054,180.1077797,179.0362357,13.354141,0.11965272,1620000000000 ,1620000000000 ,1620000000000 ,1616812409390 -1616812409421 ,112.5730182,26.8844635,62.86811066,180.1101566,179.0318093,13.357823,0.119683941,1620000000000 ,1620000000000 ,1620000000000 ,1616812409400 -1616812409431 ,112.5730183,26.8844623,62.86678696,180.1147738,179.0332564,13.366895,0.119759475,1620000000000 ,1620000000000 ,1620000000000 ,1616812409410 -1616812409441 ,112.5730183,26.88446111,62.86531448,180.1207844,179.0282252,13.377089,0.119842674,1620000000000 ,1620000000000 ,1620000000000 ,1616812409420 -1616812409452 ,112.5730183,26.88445991,62.86366653,180.1237623,179.0633664,13.389019,0.11994265,1620000000000 ,1620000000000 ,1620000000000 ,1616812409430 -1616812409463 ,112.5730183,26.88445871,62.86197662,180.1235711,179.0776387,13.39757,0.120028158,1620000000000 ,1620000000000 ,1620000000000 ,1616812409440 -1616812409472 ,112.5730183,26.8844575,62.86185837,180.1250737,179.6320749,13.405953,0.120557883,1620000000000 ,1620000000000 ,1620000000000 ,1616812409450 -1616812409482 ,112.5730183,26.88445629,62.86339951,180.1272594,180.1733446,13.414177,0.121110953,1620000000000 ,1620000000000 ,1620000000000 ,1616812409460 -1616812409492 ,112.5730183,26.88445508,62.86506271,180.1282156,180.1760998,13.420035,0.121163104,1620000000000 ,1620000000000 ,1620000000000 ,1616812409470 -1616812409502 ,112.5730183,26.88445387,62.86684036,180.1276965,180.1901913,13.425089,0.121212678,1620000000000 ,1620000000000 ,1620000000000 ,1616812409480 -1616812409516 ,112.5730183,26.88445265,62.86865616,180.1257568,180.184059,13.432205,0.121272459,1620000000000 ,1620000000000 ,1620000000000 ,1616812409490 -1616812409523 ,112.5730183,26.88445144,62.87038803,180.1283522,180.1805857,13.445708,0.121379379,1620000000000 ,1620000000000 ,1620000000000 ,1616812409500 -1616812409532 ,112.5730183,26.88445022,62.87198639,180.1314395,180.1733083,13.460082,0.121506514,1620000000000 ,1620000000000 ,1620000000000 ,1616812409510 -1616812409543 ,112.5730183,26.88444901,62.87347412,180.1333519,180.1556466,13.468896,0.121598366,1620000000000 ,1620000000000 ,1620000000000 ,1616812409530 -1616812409553 ,112.5730183,26.88444779,62.87498856,180.1337891,180.1403703,13.477406,0.12167553,1620000000000 ,1620000000000 ,1620000000000 ,1616812409540 -1616812409563 ,112.5730183,26.88444657,62.87653351,180.1376413,180.1362701,13.485488,0.121747899,1620000000000 ,1620000000000 ,1620000000000 ,1616812409550 -1616812409574 ,112.5730183,26.88444536,62.87807465,180.1427776,180.148327,13.494908,0.121828461,1620000000000 ,1620000000000 ,1620000000000 ,1616812409560 -1616812409584 ,112.5730183,26.88444292,62.8812561,180.1483237,180.1372802,13.508518,0.243877959,1620000000000 ,1620000000000 ,1620000000000 ,1616812409570 -1616812409593 ,112.5730183,26.8844417,62.88288498,180.1509738,180.1117404,13.515783,0.12202729,1620000000000 ,1620000000000 ,1620000000000 ,1616812409580 -1616812409603 ,112.5730183,26.8844417,62.88288498,180.1509738,-400,13.515783,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812409580 -1616812409617 ,112.5730183,26.88443925,62.88596725,180.155673,180.1361741,13.535096,0.244282267,1620000000000 ,1620000000000 ,1620000000000 ,1616812409600 -1616812409626 ,112.5730183,26.88443925,62.88596725,180.155673,-400,13.535096,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812409610 -1616812409638 ,112.5730183,26.88443681,62.88916779,180.1623666,180.1857754,13.554062,0.24465177,1620000000000 ,1620000000000 ,1620000000000 ,1616812409620 -1616812409646 ,112.5730183,26.88443558,62.89094543,180.1628583,180.1796252,13.558428,0.122422812,1620000000000 ,1620000000000 ,1620000000000 ,1616812409630 -1616812409654 ,112.5730183,26.88443436,62.89281082,180.164361,180.1897238,13.564154,0.122466684,1620000000000 ,1620000000000 ,1620000000000 ,1616812409640 -1616812409664 ,112.5730183,26.88443313,62.89466095,180.1649347,180.2095726,13.571852,0.122534956,1620000000000 ,1620000000000 ,1620000000000 ,1616812409650 -1616812409673 ,112.5730182,26.88443191,62.89640045,180.1671204,180.2217135,13.582412,0.122615323,1620000000000 ,1620000000000 ,1620000000000 ,1616812409660 -1616812409684 ,112.5730182,26.88443068,62.89805222,180.1687596,180.2229702,13.59562,0.122737109,1620000000000 ,1620000000000 ,1620000000000 ,1616812409670 -1616812409704 ,112.5730182,26.88442945,62.89963531,180.1709726,180.2190147,13.605171,0.122823595,1620000000000 ,1620000000000 ,1620000000000 ,1616812409680 -1616812409709 ,112.5730182,26.88442822,62.90115356,180.1733222,180.2064287,13.6152315,0.122914144,1620000000000 ,1620000000000 ,1620000000000 ,1616812409690 -1616812409716 ,112.5730182,26.88442699,62.90262222,180.1749614,180.198762,13.623172,0.12298641,1620000000000 ,1620000000000 ,1620000000000 ,1616812409700 -1616812409724 ,112.5730182,26.88442576,62.9040451,180.1756171,180.2118665,13.631964,0.123057566,1620000000000 ,1620000000000 ,1620000000000 ,1616812409710 -1616812409734 ,112.5730182,26.88442453,62.9054451,180.1771744,180.2287512,13.643739,0.12316237,1620000000000 ,1620000000000 ,1620000000000 ,1616812409720 -1616812409744 ,112.5730182,26.8844233,62.90680313,180.1806715,180.2178864,13.651993,0.123242132,1620000000000 ,1620000000000 ,1620000000000 ,1616812409730 -1616812409756 ,112.5730182,26.88442206,62.9081459,180.1824473,180.216211,13.659217,0.123306833,1620000000000 ,1620000000000 ,1620000000000 ,1616812409740 -1616812409767 ,112.5730182,26.88442083,62.9095192,180.183786,180.216874,13.669228,0.123392031,1620000000000 ,1620000000000 ,1620000000000 ,1616812409750 -1616812409775 ,112.5730182,26.8844196,62.91092682,180.1856439,180.2186021,13.674968,0.123451721,1620000000000 ,1620000000000 ,1620000000000 ,1616812409760 -1616812409790 ,112.5730182,26.88441836,62.91238785,180.1879934,180.2237854,13.68185,0.1235129,1620000000000 ,1620000000000 ,1620000000000 ,1616812409770 -1616812409795 ,112.5730182,26.88441713,62.91392517,180.1885399,180.2238394,13.686186,0.123555456,1620000000000 ,1620000000000 ,1620000000000 ,1616812409780 -1616812409805 ,112.5730182,26.88441589,62.91557312,180.1874743,180.2261366,13.694224,0.123620714,1620000000000 ,1620000000000 ,1620000000000 ,1616812409790 -1616812409818 ,112.5730182,26.88441465,62.9173317,180.1880481,180.2361421,13.704318,0.123707281,1620000000000 ,1620000000000 ,1620000000000 ,1616812409800 -1616812409826 ,112.5730182,26.88441341,62.91913605,180.1886765,180.2307459,13.711504,0.123785816,1620000000000 ,1620000000000 ,1620000000000 ,1616812409810 -1616812409836 ,112.5730182,26.88441218,62.92097473,180.189578,180.2135092,13.7164955,0.123834474,1620000000000 ,1620000000000 ,1620000000000 ,1616812409820 -1616812409845 ,112.5730182,26.88441094,62.92288971,180.1929658,180.2073914,13.721768,0.123876675,1620000000000 ,1620000000000 ,1620000000000 ,1616812409830 -1616812409855 ,112.5730182,26.8844097,62.9248848,180.1937035,180.2026481,13.730948,0.123955638,1620000000000 ,1620000000000 ,1620000000000 ,1616812409840 -1616812409865 ,112.5730182,26.88440846,62.92691422,180.1963263,180.1989186,13.742476,0.124051659,1620000000000 ,1620000000000 ,1620000000000 ,1616812409850 -1616812409875 ,112.5730182,26.88440722,62.92897797,180.1990037,180.1996208,13.7501135,0.124138611,1620000000000 ,1620000000000 ,1620000000000 ,1616812409860 -1616812409885 ,112.5730181,26.88440597,62.93112946,180.2007249,180.205856,13.757514,0.124200227,1620000000000 ,1620000000000 ,1620000000000 ,1616812409870 -1616812409897 ,112.5730181,26.88440473,62.93341064,180.2035116,180.2066799,13.766784,0.124284586,1620000000000 ,1620000000000 ,1620000000000 ,1616812409880 -1616812409906 ,112.5730181,26.88440349,62.9357605,180.2066262,180.2079689,13.774157,0.124356436,1620000000000 ,1620000000000 ,1620000000000 ,1616812409890 -1616812409916 ,112.5730181,26.88440224,62.93810272,180.2092763,180.2080026,13.783234,0.124432948,1620000000000 ,1620000000000 ,1620000000000 ,1616812409900 -1616812409926 ,112.5730181,26.884401,62.94042587,180.2095768,180.215464,13.793193,0.124524505,1620000000000 ,1620000000000 ,1620000000000 ,1616812409910 -1616812409936 ,112.5730181,26.88439975,62.94275284,180.2099867,180.236481,13.79945,0.124588383,1620000000000 ,1620000000000 ,1620000000000 ,1616812409920 -1616812409947 ,112.5730181,26.88439851,62.94511032,180.2123362,180.2405623,13.805439,0.124647613,1620000000000 ,1620000000000 ,1620000000000 ,1616812409930 -1616812409957 ,112.5730181,26.88439726,62.94755173,180.2132925,180.238449,13.809451,0.124689007,1620000000000 ,1620000000000 ,1620000000000 ,1616812409940 -1616812409966 ,112.5730181,26.88439601,62.95006561,180.2147951,180.2285695,13.816229,0.124739677,1620000000000 ,1620000000000 ,1620000000000 ,1616812409950 -1616812409976 ,112.5730181,26.88439476,62.9525032,180.2161065,180.2088539,13.825316,0.124820896,1620000000000 ,1620000000000 ,1620000000000 ,1616812409960 -1616812409988 ,112.5730181,26.88439351,62.95472717,180.2179643,180.2048366,13.833865,0.12489541,1620000000000 ,1620000000000 ,1620000000000 ,1616812409970 -1616812410006 ,112.5730181,26.88439226,62.95677185,180.2190298,180.2068628,13.843168,0.124978045,1620000000000 ,1620000000000 ,1620000000000 ,1616812409980 -1616812410014 ,112.5730181,26.88439101,62.95871353,180.2212974,180.1851349,13.854709,0.125069883,1620000000000 ,1620000000000 ,1620000000000 ,1616812409990 -1616812410020 ,112.5730181,26.88438976,62.96065521,180.22433,180.1750449,13.862759,0.125158646,1620000000000 ,1620000000000 ,1620000000000 ,1616812410000 -1616812410030 ,112.5730181,26.88438851,62.96265411,180.2278544,180.1642801,13.87016,0.125226161,1620000000000 ,1620000000000 ,1620000000000 ,1616812410010 -1616812410037 ,112.5730181,26.88438726,62.96471024,180.2301221,180.1498744,13.877124,0.125288457,1620000000000 ,1620000000000 ,1620000000000 ,1616812410020 -1616812410047 ,112.5730181,26.884386,62.96679688,180.2334005,180.1550051,13.887735,0.125377303,1620000000000 ,1620000000000 ,1620000000000 ,1616812410030 -1616812410057 ,112.5730181,26.88438475,62.96886444,180.2359414,180.1649093,13.898809,0.125482043,1620000000000 ,1620000000000 ,1620000000000 ,1616812410040 -1616812410068 ,112.5730181,26.88438349,62.97091675,180.2374987,180.1695599,13.905303,0.125554006,1620000000000 ,1620000000000 ,1620000000000 ,1616812410050 -1616812410078 ,112.5730181,26.88438224,62.97306442,180.2392199,180.163696,13.913704,0.125623189,1620000000000 ,1620000000000 ,1620000000000 ,1616812410060 -1616812410090 ,112.5730181,26.88438098,62.97532272,180.2415421,180.1514182,13.920414,0.125694671,1620000000000 ,1620000000000 ,1620000000000 ,1616812410070 -1616812410098 ,112.5730181,26.88437972,62.97761917,180.2440556,180.158535,13.928913,0.125766831,1620000000000 ,1620000000000 ,1620000000000 ,1616812410080 -1616812410109 ,112.5730181,26.88437846,62.97988892,180.2479352,180.1709879,13.938981,0.125862123,1620000000000 ,1620000000000 ,1620000000000 ,1616812410090 -1616812410118 ,112.5730181,26.8843772,62.98202515,180.251241,180.1747449,13.947453,0.125935037,1620000000000 ,1620000000000 ,1620000000000 ,1616812410100 -1616812410127 ,112.5730181,26.88437594,62.98400879,180.2536999,180.1622073,13.959163,0.12603524,1620000000000 ,1620000000000 ,1620000000000 ,1616812410110 -1616812410140 ,112.573018,26.88437468,62.98576736,180.2545741,180.1530525,13.971406,0.126138411,1620000000000 ,1620000000000 ,1620000000000 ,1616812410120 -1616812410149 ,112.573018,26.88437342,62.98734283,180.2567051,180.1714548,13.983604,0.126250723,1620000000000 ,1620000000000 ,1620000000000 ,1616812410130 -1616812410158 ,112.573018,26.88437216,62.98888397,180.2574428,180.1858186,13.996653,0.126363769,1620000000000 ,1620000000000 ,1620000000000 ,1616812410140 -1616812410167 ,112.573018,26.88437089,62.99048615,180.2611311,180.1713799,14.003368,0.12644648,1620000000000 ,1620000000000 ,1620000000000 ,1616812410150 -1616812410179 ,112.573018,26.88436963,62.99213409,180.2630982,180.1652442,14.009028,0.126500454,1620000000000 ,1620000000000 ,1620000000000 ,1616812410160 -1616812410192 ,112.573018,26.88436836,62.99375534,180.265038,180.1649025,14.017436,0.126568549,1620000000000 ,1620000000000 ,1620000000000 ,1616812410170 -1616812410208 ,112.573018,26.88436709,62.99526215,180.2655844,180.1653938,14.027262,0.126653379,1620000000000 ,1620000000000 ,1620000000000 ,1616812410180 -1616812410213 ,112.573018,26.88436583,62.99663162,180.2660215,180.1725286,14.039162,0.126755666,1620000000000 ,1620000000000 ,1620000000000 ,1616812410190 -1616812410219 ,112.573018,26.88436456,62.99869156,180.2682891,180.5054572,14.030161,0.126609942,1620000000000 ,1620000000000 ,1620000000000 ,1616812410200 -1616812410228 ,112.573018,26.8843633,63.00202179,180.2702016,181.0553878,14.037067,0.126318552,1620000000000 ,1620000000000 ,1620000000000 ,1616812410210 -1616812410238 ,112.573018,26.88436203,63.00539398,180.2726058,181.0397579,14.046522,0.126394057,1620000000000 ,1620000000000 ,1620000000000 ,1616812410220 -1616812410249 ,112.5730179,26.88436077,63.00865936,180.2780427,181.0375891,14.058139,0.126492952,1620000000000 ,1620000000000 ,1620000000000 ,1616812410230 -1616812410259 ,112.5730179,26.8843595,63.01168442,180.2829058,181.0582313,14.069071,0.126585193,1620000000000 ,1620000000000 ,1620000000000 ,1616812410240 -1616812410270 ,112.5730179,26.88435824,63.01451492,180.2848455,181.0707424,14.081112,0.126694677,1620000000000 ,1620000000000 ,1620000000000 ,1616812410250 -1616812410281 ,112.5730179,26.88435697,63.01724625,180.2870312,181.0551674,14.088242,0.126764656,1620000000000 ,1620000000000 ,1620000000000 ,1616812410260 -1616812410290 ,112.5730178,26.8843557,63.01993942,180.2859657,181.0347522,14.095733,0.126830506,1620000000000 ,1620000000000 ,1620000000000 ,1616812410270 -1616812410300 ,112.5730178,26.88435443,63.02262497,180.2869765,181.0338355,14.105248,0.126904823,1620000000000 ,1620000000000 ,1620000000000 ,1616812410280 -1616812410310 ,112.5730178,26.88435316,63.02526855,180.2912932,181.0521764,14.115619,0.127000529,1620000000000 ,1620000000000 ,1620000000000 ,1616812410290 -1616812410320 ,112.5730178,26.88435189,63.02788544,180.2959378,181.0634,14.122748,0.127069797,1620000000000 ,1620000000000 ,1620000000000 ,1616812410300 -1616812410332 ,112.5730178,26.88435062,63.03058243,180.300391,181.0622994,14.127549,0.127120414,1620000000000 ,1620000000000 ,1620000000000 ,1616812410310 -1616812410343 ,112.5730177,26.88434935,63.03335571,180.3040793,181.0533662,14.134033,0.12717403,1620000000000 ,1620000000000 ,1620000000000 ,1616812410320 -1616812410352 ,112.5730177,26.88434808,63.03607941,180.3064836,181.0662264,14.146279,0.127267428,1620000000000 ,1620000000000 ,1620000000000 ,1616812410330 -1616812410361 ,112.5730177,26.8843468,63.03863525,180.3114833,181.090521,14.161869,0.127396443,1620000000000 ,1620000000000 ,1620000000000 ,1616812410340 -1616812410371 ,112.5730177,26.88434553,63.04108429,180.3131498,181.127501,14.17283,0.127506969,1620000000000 ,1620000000000 ,1620000000000 ,1616812410350 -1616812410382 ,112.5730176,26.88434425,63.04363251,180.3145159,181.1217224,14.181678,0.127593325,1620000000000 ,1620000000000 ,1620000000000 ,1616812410360 -1616812410390 ,112.5730176,26.88434298,63.04631424,180.3180402,181.1011657,14.188482,0.127659544,1620000000000 ,1620000000000 ,1620000000000 ,1616812410370 -1616812410401 ,112.5730176,26.8843417,63.0490799,180.3213187,181.1108008,14.196357,0.127724285,1620000000000 ,1620000000000 ,1620000000000 ,1616812410380 -1616812410410 ,112.5730176,26.88434042,63.05186081,180.3239142,181.1295197,14.206428,0.127814674,1620000000000 ,1620000000000 ,1620000000000 ,1616812410390 -1616812410420 ,112.5730175,26.88433914,63.05468369,180.3263458,181.1440601,14.216667,0.127902242,1620000000000 ,1620000000000 ,1620000000000 ,1616812410400 -1616812410430 ,112.5730175,26.88433786,63.05759048,180.3264277,181.1472495,14.227521,0.128006436,1620000000000 ,1620000000000 ,1620000000000 ,1616812410410 -1616812410441 ,112.5730175,26.88433658,63.06057358,180.3267282,181.1316292,14.235782,0.128083736,1620000000000 ,1620000000000 ,1620000000000 ,1616812410420 -1616812410453 ,112.5730175,26.8843353,63.06365204,180.326619,181.1311683,14.247646,0.12818292,1620000000000 ,1620000000000 ,1620000000000 ,1616812410430 -1616812410461 ,112.5730174,26.88433402,63.06682968,180.3294603,181.1409089,14.256687,0.128275163,1620000000000 ,1620000000000 ,1620000000000 ,1616812410440 -1616812410472 ,112.5730174,26.88433273,63.06931686,180.3327935,180.8244146,14.264821,0.128566169,1620000000000 ,1620000000000 ,1620000000000 ,1616812410450 -1616812410481 ,112.5730174,26.88433144,63.07112503,180.3350338,180.5115567,14.27404,0.128877091,1620000000000 ,1620000000000 ,1620000000000 ,1616812410460 -1616812410491 ,112.5730174,26.88433016,63.07302475,180.3378478,180.4996767,14.280151,0.128939211,1620000000000 ,1620000000000 ,1620000000000 ,1616812410470 -1616812410501 ,112.5730174,26.88432887,63.07500839,180.3370828,180.5049111,14.285524,0.128991342,1620000000000 ,1620000000000 ,1620000000000 ,1616812410480 -1616812410514 ,112.5730174,26.88432757,63.07702637,180.3356348,180.517176,14.295101,0.129069635,1620000000000 ,1620000000000 ,1620000000000 ,1616812410490 -1616812410521 ,112.5730174,26.88432628,63.07904816,180.3369735,180.5454881,14.302501,0.129142912,1620000000000 ,1620000000000 ,1620000000000 ,1616812410500 -1616812410533 ,112.5730173,26.88432499,63.08110809,180.3404433,180.5505034,14.312998,0.129227323,1620000000000 ,1620000000000 ,1620000000000 ,1616812410510 -1616812410542 ,112.5730173,26.8843237,63.08325195,180.3412356,180.5201099,14.323526,0.129330683,1620000000000 ,1620000000000 ,1620000000000 ,1616812410520 -1616812410552 ,112.5730173,26.8843224,63.0855217,180.3416454,180.506735,14.332843,0.129417417,1620000000000 ,1620000000000 ,1620000000000 ,1616812410530 -1616812410562 ,112.5730173,26.88432111,63.0879097,180.3433939,180.5208682,14.341193,0.129497878,1620000000000 ,1620000000000 ,1620000000000 ,1616812410540 -1616812410572 ,112.5730173,26.88431981,63.09033203,180.346126,180.5270666,14.347442,0.129561244,1620000000000 ,1620000000000 ,1620000000000 ,1616812410550 -1616812410583 ,112.5730173,26.88431852,63.09278488,180.3486395,180.5186355,14.352023,0.129605851,1620000000000 ,1620000000000 ,1620000000000 ,1616812410560 -1616812410593 ,112.5730173,26.88431722,63.09522629,180.3507978,180.5079514,14.361511,0.129681035,1620000000000 ,1620000000000 ,1620000000000 ,1616812410570 -1616812410602 ,112.5730173,26.88431592,63.09757233,180.3536665,180.5167292,14.371552,0.129762069,1620000000000 ,1620000000000 ,1620000000000 ,1616812410580 -1616812410611 ,112.5730172,26.88431462,63.09973526,180.3587209,180.5280212,14.384132,0.129877836,1620000000000 ,1620000000000 ,1620000000000 ,1616812410590 -1616812410622 ,112.5730172,26.88431332,63.1017189,180.3630649,180.5407402,14.395099,0.129967523,1620000000000 ,1620000000000 ,1620000000000 ,1616812410600 -1616812410633 ,112.5730172,26.88431202,63.1036644,180.3649773,180.5268438,14.406709,0.130075802,1620000000000 ,1620000000000 ,1620000000000 ,1616812410610 -1616812410643 ,112.5730172,26.88431072,63.10562515,180.3651959,180.5067747,14.414734,0.130155834,1620000000000 ,1620000000000 ,1620000000000 ,1616812410620 -1616812410653 ,112.5730172,26.88430942,63.10755157,180.3704688,180.5000228,14.424382,0.130230672,1620000000000 ,1620000000000 ,1620000000000 ,1616812410640 -1616812410663 ,112.5730172,26.88430812,63.10933685,180.3745669,180.5133334,14.435683,0.130329373,1620000000000 ,1620000000000 ,1620000000000 ,1616812410650 -1616812410673 ,112.5730172,26.88430681,63.11099625,180.3800584,180.5380187,14.4465065,0.130424248,1620000000000 ,1620000000000 ,1620000000000 ,1616812410650 -1616812410683 ,112.5730172,26.8843042,63.11436844,180.3815337,180.5123884,14.461122,0.261062866,1620000000000 ,1620000000000 ,1620000000000 ,1616812410670 -1616812410693 ,112.5730171,26.8843029,63.11616135,180.3838833,180.5014472,14.4714365,0.130649743,1620000000000 ,1620000000000 ,1620000000000 ,1616812410680 -1616812410708 ,112.5730171,26.8843029,63.11616135,180.3838833,-400,14.4714365,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812410680 -1616812410717 ,112.5730171,26.88430028,63.11974335,180.3921615,180.513677,14.492419,0.261588569,1620000000000 ,1620000000000 ,1620000000000 ,1616812410700 -1616812410727 ,112.5730171,26.88429897,63.12169266,180.396123,180.4956677,14.497459,0.130892279,1620000000000 ,1620000000000 ,1620000000000 ,1616812410710 -1616812410734 ,112.5730171,26.88429897,63.12169266,180.396123,-400,14.497459,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812410720 -1616812410744 ,112.5730171,26.88429635,63.1259079,180.40115,180.4771419,14.515246,0.262018506,1620000000000 ,1620000000000 ,1620000000000 ,1616812410730 -1616812410754 ,112.5730171,26.88429504,63.12800217,180.4032537,180.5224486,14.5259495,0.131139515,1620000000000 ,1620000000000 ,1620000000000 ,1616812410740 -1616812410764 ,112.5730171,26.88429373,63.13008499,180.4079802,180.5408965,14.534378,0.131226661,1620000000000 ,1620000000000 ,1620000000000 ,1616812410750 -1616812410773 ,112.573017,26.88429241,63.13224792,180.4117504,180.5314164,14.538212,0.131270064,1620000000000 ,1620000000000 ,1620000000000 ,1616812410760 -1616812410784 ,112.573017,26.8842911,63.13459396,180.4143732,180.5300206,14.5440035,0.131322165,1620000000000 ,1620000000000 ,1620000000000 ,1616812410770 -1616812410797 ,112.573017,26.88428979,63.13709259,180.4180615,180.5293263,14.5511,0.131383205,1620000000000 ,1620000000000 ,1620000000000 ,1616812410780 -1616812410804 ,112.573017,26.88428847,63.13956833,180.422952,180.5491606,14.558461,0.131449886,1620000000000 ,1620000000000 ,1620000000000 ,1616812410790 -1616812410815 ,112.573017,26.88428716,63.14196014,180.4258753,180.5754926,14.570122,0.131542275,1620000000000 ,1620000000000 ,1620000000000 ,1616812410800 -1616812410825 ,112.573017,26.88428584,63.14432144,180.4258206,180.5809728,14.580838,0.131646806,1620000000000 ,1620000000000 ,1620000000000 ,1616812410810 -1616812410834 ,112.573017,26.88428452,63.14673233,180.4247005,180.5751406,14.586749,0.131707016,1620000000000 ,1620000000000 ,1620000000000 ,1616812410820 -1616812410846 ,112.573017,26.88428321,63.14915466,180.4270501,180.5692931,14.595286,0.131779151,1620000000000 ,1620000000000 ,1620000000000 ,1616812410830 -1616812410855 ,112.5730169,26.88428189,63.15155411,180.4289898,180.5765571,14.602682,0.131847933,1620000000000 ,1620000000000 ,1620000000000 ,1616812410840 -1616812410866 ,112.5730169,26.88428057,63.15394211,180.4289352,180.583589,14.610643,0.131921422,1620000000000 ,1620000000000 ,1620000000000 ,1616812410850 -1616812410875 ,112.5730169,26.88427925,63.15640259,180.4304652,180.5737031,14.616001,0.131979815,1620000000000 ,1620000000000 ,1620000000000 ,1616812410860 -1616812410886 ,112.5730169,26.88427793,63.15892029,180.4333065,180.5684007,14.621322,0.132018851,1620000000000 ,1620000000000 ,1620000000000 ,1616812410870 -1616812410896 ,112.5730169,26.88427661,63.16139984,180.436503,180.5610328,14.631359,0.13210632,1620000000000 ,1620000000000 ,1620000000000 ,1616812410880 -1616812410906 ,112.5730169,26.88427529,63.1637764,180.4386614,180.5665761,14.641272,0.13219032,1620000000000 ,1620000000000 ,1620000000000 ,1616812410890 -1616812410916 ,112.5730169,26.88427396,63.16611481,180.4376778,180.5682678,14.649975,0.132273675,1620000000000 ,1620000000000 ,1620000000000 ,1616812410900 -1616812410926 ,112.5730169,26.88427264,63.16846085,180.4351916,180.5539564,14.657748,0.132346045,1620000000000 ,1620000000000 ,1620000000000 ,1616812410910 -1616812410935 ,112.5730168,26.88427132,63.17078018,180.4366397,180.5594878,14.669777,0.132430804,1620000000000 ,1620000000000 ,1620000000000 ,1616812410920 -1616812410945 ,112.5730168,26.88426999,63.172966,180.4406831,180.55971,14.68143,0.132554406,1620000000000 ,1620000000000 ,1620000000000 ,1616812410930 -1616812410955 ,112.5730168,26.88426866,63.1750145,180.441776,180.5616513,14.689601,0.132623386,1620000000000 ,1620000000000 ,1620000000000 ,1616812410940 -1616812410966 ,112.5730168,26.88426734,63.17711639,180.4428688,180.563422,14.694779,0.132673086,1620000000000 ,1620000000000 ,1620000000000 ,1616812410950 -1616812410978 ,112.5730168,26.88426601,63.1792984,180.4445353,180.5475743,14.704546,0.132758251,1620000000000 ,1620000000000 ,1620000000000 ,1616812410960 -1616812410994 ,112.5730168,26.88426468,63.18148422,180.4454369,180.5541659,14.715373,0.132850082,1620000000000 ,1620000000000 ,1620000000000 ,1616812410970 -1616812411005 ,112.5730168,26.88426335,63.18368149,180.4434698,180.5651919,14.728515,0.132961085,1620000000000 ,1620000000000 ,1620000000000 ,1616812410980 -1616812411007 ,112.5730168,26.88426202,63.18599319,180.4421311,180.554129,14.734607,0.133040832,1620000000000 ,1620000000000 ,1620000000000 ,1616812410990 -1616812411016 ,112.5730167,26.88426069,63.1884079,180.4411203,180.5310015,14.742873,0.133103527,1620000000000 ,1620000000000 ,1620000000000 ,1616812411000 -1616812411027 ,112.5730167,26.88425936,63.19080353,180.44306,180.5193373,14.752032,0.133187395,1620000000000 ,1620000000000 ,1620000000000 ,1616812411010 -1616812411036 ,112.5730167,26.88425803,63.19311523,180.446038,180.5267362,14.760645,0.133264803,1620000000000 ,1620000000000 ,1620000000000 ,1616812411020 -1616812411046 ,112.5730167,26.88425669,63.19541931,180.4484969,180.534092,14.771679,0.133354462,1620000000000 ,1620000000000 ,1620000000000 ,1616812411030 -1616812411056 ,112.5730167,26.88425536,63.19782257,180.4519939,180.5277966,14.782407,0.133461422,1620000000000 ,1620000000000 ,1620000000000 ,1616812411040 -1616812411071 ,112.5730167,26.88425402,63.2003212,180.4533873,180.5210561,14.79115,0.133544565,1620000000000 ,1620000000000 ,1620000000000 ,1616812411050 -1616812411076 ,112.5730167,26.88425269,63.20284271,180.453879,180.5212322,14.794883,0.133591131,1620000000000 ,1620000000000 ,1620000000000 ,1616812411060 -1616812411086 ,112.5730167,26.88425135,63.20532608,180.456775,180.5264471,14.804696,0.133658753,1620000000000 ,1620000000000 ,1620000000000 ,1616812411070 -1616812411096 ,112.5730166,26.88425001,63.20775223,180.4608732,180.5454888,14.81762,0.133771221,1620000000000 ,1620000000000 ,1620000000000 ,1616812411080 -1616812411106 ,112.5730166,26.88424867,63.21012878,180.4652718,180.5442311,14.825827,0.133862818,1620000000000 ,1620000000000 ,1620000000000 ,1616812411090 -1616812411118 ,112.5730166,26.88424734,63.2125473,180.4669657,180.5321952,14.832659,0.133925057,1620000000000 ,1620000000000 ,1620000000000 ,1616812411100 -1616812411128 ,112.5730166,26.884246,63.21509552,180.4688508,180.517115,14.8342495,0.133952952,1620000000000 ,1620000000000 ,1620000000000 ,1616812411110 -1616812411139 ,112.5730166,26.88424466,63.21775436,180.4704901,180.5272755,14.841597,0.13400377,1620000000000 ,1620000000000 ,1620000000000 ,1616812411120 -1616812411150 ,112.5730166,26.88424332,63.22047806,180.4744243,180.5449112,14.848483,0.134078266,1620000000000 ,1620000000000 ,1620000000000 ,1616812411130 -1616812411157 ,112.5730166,26.88424197,63.22322083,180.4780306,180.5318317,14.855023,0.134133871,1620000000000 ,1620000000000 ,1620000000000 ,1616812411140 -1616812411167 ,112.5730166,26.88424063,63.22599411,180.4835494,180.5072876,14.866299,0.134232244,1620000000000 ,1620000000000 ,1620000000000 ,1616812411150 -1616812411180 ,112.5730165,26.88423929,63.2287674,180.4896146,180.5007862,14.8755,0.134313995,1620000000000 ,1620000000000 ,1620000000000 ,1616812411160 -1616812411192 ,112.5730165,26.88423794,63.2314415,180.4964994,180.508742,14.885087,0.134401638,1620000000000 ,1620000000000 ,1620000000000 ,1616812411170 -1616812411198 ,112.5730165,26.8842366,63.23401642,180.5021548,180.5365097,14.894933,0.134492928,1620000000000 ,1620000000000 ,1620000000000 ,1616812411180 -1616812411209 ,112.5730165,26.88423525,63.23655319,180.5058704,180.5445498,14.907058,0.13459085,1620000000000 ,1620000000000 ,1620000000000 ,1616812411190 -1616812411220 ,112.5730165,26.88423391,63.23959732,180.5081654,181.0736016,14.908831,0.134621484,1620000000000 ,1620000000000 ,1620000000000 ,1616812411200 -1616812411228 ,112.5730164,26.88423256,63.24322891,180.5091489,181.8701209,14.91773,0.134583923,1620000000000 ,1620000000000 ,1620000000000 ,1616812411210 -1616812411237 ,112.5730164,26.88423122,63.24670029,180.5115258,181.8920008,14.928768,0.134678225,1620000000000 ,1620000000000 ,1620000000000 ,1616812411220 -1616812411248 ,112.5730163,26.88422987,63.25003052,180.5142306,181.9060647,14.9368305,0.134757956,1620000000000 ,1620000000000 ,1620000000000 ,1616812411230 -1616812411259 ,112.5730163,26.88422852,63.25327301,180.5184653,181.8921089,14.948913,0.134848077,1620000000000 ,1620000000000 ,1620000000000 ,1616812411240 -1616812411268 ,112.5730163,26.88422717,63.25647736,180.5196948,181.8773936,14.960181,0.134952258,1620000000000 ,1620000000000 ,1620000000000 ,1616812411250 -1616812411280 ,112.5730162,26.88422582,63.25964355,180.5203504,181.8770743,14.968365,0.135036466,1620000000000 ,1620000000000 ,1620000000000 ,1616812411260 -1616812411288 ,112.5730162,26.88422447,63.26272583,180.5208695,181.8876882,14.97708,0.135107112,1620000000000 ,1620000000000 ,1620000000000 ,1616812411270 -1616812411302 ,112.5730161,26.88422312,63.26573944,180.5231098,181.89771,14.985084,0.13517683,1620000000000 ,1620000000000 ,1620000000000 ,1616812411280 -1616812411309 ,112.5730161,26.88422177,63.26881027,180.5243393,181.8874087,14.992881,0.135248835,1620000000000 ,1620000000000 ,1620000000000 ,1616812411290 -1616812411320 ,112.573016,26.88422042,63.2720108,180.5240661,181.8723277,15.002639,0.135337967,1620000000000 ,1620000000000 ,1620000000000 ,1616812411300 -1616812411329 ,112.573016,26.88421906,63.27525711,180.5231645,181.8814365,15.010435,0.135403743,1620000000000 ,1620000000000 ,1620000000000 ,1616812411310 -1616812411339 ,112.5730159,26.88421771,63.27851486,180.5245305,181.9022439,15.022956,0.135512123,1620000000000 ,1620000000000 ,1620000000000 ,1616812411320 -1616812411351 ,112.5730159,26.88421636,63.28181839,180.5252135,181.9143472,15.0278635,0.135574083,1620000000000 ,1620000000000 ,1620000000000 ,1616812411330 -1616812411360 ,112.5730159,26.884215,63.28526688,180.5242573,181.9033687,15.036155,0.135644633,1620000000000 ,1620000000000 ,1620000000000 ,1616812411340 -1616812411368 ,112.5730158,26.88421364,63.28881454,180.5245032,181.8890471,15.043022,0.135706317,1620000000000 ,1620000000000 ,1620000000000 ,1616812411350 -1616812411378 ,112.5730158,26.88421229,63.29243088,180.5248584,181.8999207,15.048757,0.135763448,1620000000000 ,1620000000000 ,1620000000000 ,1616812411360 -1616812411389 ,112.5730157,26.88421093,63.29605484,180.5288745,181.9007838,15.057826,0.13583854,1620000000000 ,1620000000000 ,1620000000000 ,1616812411370 -1616812411406 ,112.5730157,26.88420957,63.29965973,180.5337923,181.8918684,15.068793,0.135926292,1620000000000 ,1620000000000 ,1620000000000 ,1616812411380 -1616812411417 ,112.5730156,26.88420821,63.30331421,180.5361692,181.888771,15.07856,0.136021016,1620000000000 ,1620000000000 ,1620000000000 ,1616812411390 -1616812411420 ,112.5730156,26.88420685,63.30704117,180.5375898,181.8860495,15.086588,0.136103362,1620000000000 ,1620000000000 ,1620000000000 ,1616812411400 -1616812411430 ,112.5730155,26.88420549,63.3107872,180.5400487,181.8931072,15.093741,0.136166847,1620000000000 ,1620000000000 ,1620000000000 ,1616812411410 -1616812411439 ,112.5730155,26.88420413,63.31453323,180.5443927,181.8828586,15.101452,0.136235058,1620000000000 ,1620000000000 ,1620000000000 ,1616812411420 -1616812411449 ,112.5730155,26.88420277,63.318367,180.5472068,181.8751896,15.108339,0.136300759,1620000000000 ,1620000000000 ,1620000000000 ,1616812411430 -1616812411461 ,112.5730154,26.8842014,63.32230377,180.5510043,181.8669007,15.118838,0.136386961,1620000000000 ,1620000000000 ,1620000000000 ,1616812411440 -1616812411471 ,112.5730154,26.88420004,63.32570648,180.5557308,181.3320466,15.129961,0.136541786,1620000000000 ,1620000000000 ,1620000000000 ,1616812411450 -1616812411480 ,112.5730154,26.88419867,63.32856369,180.5616868,180.812036,15.137571,0.136682615,1620000000000 ,1620000000000 ,1620000000000 ,1616812411460 -1616812411489 ,112.5730153,26.8841973,63.33147812,180.5655117,180.8133745,15.1433935,0.136738707,1620000000000 ,1620000000000 ,1620000000000 ,1616812411470 -1616812411500 ,112.5730153,26.88419594,63.33451843,180.5682711,180.8111147,15.148936,0.136792795,1620000000000 ,1620000000000 ,1620000000000 ,1616812411480 -1616812411512 ,112.5730153,26.88419457,63.33758545,180.5734893,180.8040904,15.159659,0.13687714,1620000000000 ,1620000000000 ,1620000000000 ,1616812411490 -1616812411521 ,112.5730153,26.8841932,63.34057236,180.5779699,180.8205839,15.170819,0.136978344,1620000000000 ,1620000000000 ,1620000000000 ,1616812411500 -1616812411531 ,112.5730153,26.88419183,63.34347153,180.5816855,180.8416646,15.179972,0.137063976,1620000000000 ,1620000000000 ,1620000000000 ,1616812411510 -1616812411541 ,112.5730152,26.88419046,63.34634781,180.5840078,180.8439143,15.190372,0.137155673,1620000000000 ,1620000000000 ,1620000000000 ,1616812411520 -1616812411551 ,112.5730152,26.88418908,63.34928131,180.5872043,180.841355,15.19724,0.137230154,1620000000000 ,1620000000000 ,1620000000000 ,1616812411530 -1616812411563 ,112.5730152,26.88418771,63.35222626,180.5896359,180.8418409,15.203552,0.137287909,1620000000000 ,1620000000000 ,1620000000000 ,1616812411540 -1616812411570 ,112.5730152,26.88418634,63.35512161,180.5942258,180.8528176,15.211156,0.137351397,1620000000000 ,1620000000000 ,1620000000000 ,1616812411550 -1616812411582 ,112.5730152,26.88418496,63.35796738,180.5978868,180.8643636,15.217766,0.137415378,1620000000000 ,1620000000000 ,1620000000000 ,1616812411560 -1616812411593 ,112.5730151,26.88418359,63.36077118,180.6040612,180.8611908,15.226596,0.137489329,1620000000000 ,1620000000000 ,1620000000000 ,1616812411570 -1616812411602 ,112.5730151,26.88418221,63.3635025,180.6057551,180.8529995,15.235201,0.137564195,1620000000000 ,1620000000000 ,1620000000000 ,1616812411580 -1616812411611 ,112.5730151,26.88418084,63.36614227,180.6090883,180.8626977,15.245997,0.137655053,1620000000000 ,1620000000000 ,1620000000000 ,1616812411590 -1616812411621 ,112.5730151,26.88417946,63.36877823,180.6128312,180.8847378,15.25705,0.137759291,1620000000000 ,1620000000000 ,1620000000000 ,1616812411600 -1616812411631 ,112.5730151,26.88417808,63.37151337,180.6155633,180.8897105,15.267831,0.137856542,1620000000000 ,1620000000000 ,1620000000000 ,1616812411610 -1616812411641 ,112.573015,26.8841767,63.37432861,180.6164102,180.8903983,15.276011,0.137942926,1620000000000 ,1620000000000 ,1620000000000 ,1616812411620 -1616812411651 ,112.573015,26.88417532,63.37711334,180.6195248,180.8966649,15.281106,0.137996014,1620000000000 ,1620000000000 ,1620000000000 ,1616812411630 -1616812411662 ,112.573015,26.88417394,63.37977982,180.6211914,180.9053442,15.289947,0.138061212,1620000000000 ,1620000000000 ,1620000000000 ,1616812411640 -1616812411671 ,112.573015,26.88417256,63.38233566,180.6232951,180.9090234,15.299381,0.138147311,1620000000000 ,1620000000000 ,1620000000000 ,1616812411650 -1616812411686 ,112.5730149,26.88417118,63.38487625,180.6241966,180.9092683,15.30905,0.138234319,1620000000000 ,1620000000000 ,1620000000000 ,1616812411660 -1616812411696 ,112.5730149,26.8841698,63.38748932,180.6234043,180.8944046,15.313526,0.138287902,1620000000000 ,1620000000000 ,1620000000000 ,1616812411670 -1616812411702 ,112.5730149,26.88416841,63.39017105,180.6259998,180.8804558,15.317915,0.138327564,1620000000000 ,1620000000000 ,1620000000000 ,1616812411680 -1616812411712 ,112.5730149,26.88416703,63.39278412,180.6308629,180.8731136,15.331045,0.138419079,1620000000000 ,1620000000000 ,1620000000000 ,1616812411690 -1616812411722 ,112.5730149,26.88416564,63.39519501,180.6347698,180.8833615,15.346097,0.138551391,1620000000000 ,1620000000000 ,1620000000000 ,1616812411700 -1616812411737 ,112.5730148,26.88416426,63.39738464,180.6387586,180.8946647,15.358781,0.138667186,1620000000000 ,1620000000000 ,1620000000000 ,1616812411710 -1616812411742 ,112.5730148,26.88416287,63.3995018,180.6377751,180.8808622,15.368296,0.138764035,1620000000000 ,1620000000000 ,1620000000000 ,1616812411720 -1616812411756 ,112.5730148,26.88416148,63.40171432,180.6373926,180.8763725,15.373096,0.138812034,1620000000000 ,1620000000000 ,1620000000000 ,1616812411730 -1616812411763 ,112.5730148,26.88416009,63.40406418,180.6401246,180.8821635,15.381468,0.138885642,1620000000000 ,1620000000000 ,1620000000000 ,1616812411750 -1616812411773 ,112.5730148,26.8841587,63.40641403,180.6464631,180.8822703,15.390971,0.138965649,1620000000000 ,1620000000000 ,1620000000000 ,1616812411750 -1616812411783 ,112.5730147,26.88415592,63.41111374,180.6526102,180.8568256,15.406077,0.278153515,1620000000000 ,1620000000000 ,1620000000000 ,1616812411770 -1616812411797 ,112.5730147,26.88415453,63.41336823,180.6552057,180.8372273,15.414958,0.139181694,1620000000000 ,1620000000000 ,1620000000000 ,1616812411780 -1616812411804 ,112.5730147,26.88415453,63.41336823,180.6552057,-400,15.414958,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812411790 -1616812411814 ,112.5730146,26.88415174,63.41736603,180.6703141,180.8546009,15.44135,0.278679356,1620000000000 ,1620000000000 ,1620000000000 ,1616812411800 -1616812411823 ,112.5730146,26.88415035,63.41938019,180.67627,180.8434683,15.449093,0.139488097,1620000000000 ,1620000000000 ,1620000000000 ,1616812411810 -1616812411834 ,112.5730146,26.88414895,63.42162323,180.6829636,180.8204921,15.454769,0.139545294,1620000000000 ,1620000000000 ,1620000000000 ,1616812411820 -1616812411844 ,112.5730146,26.88414756,63.4240303,180.6913237,180.8287341,15.462261,0.139608871,1620000000000 ,1620000000000 ,1620000000000 ,1616812411830 -1616812411854 ,112.5730146,26.88414616,63.42637634,180.7006401,180.8499469,15.474184,0.139696984,1620000000000 ,1620000000000 ,1620000000000 ,1616812411840 -1616812411866 ,112.5730145,26.88414476,63.42861557,180.705913,180.8908573,15.48696,0.139821625,1620000000000 ,1620000000000 ,1620000000000 ,1616812411850 -1616812411875 ,112.5730145,26.88414336,63.43088531,180.7112133,180.8999134,15.496905,0.139916215,1620000000000 ,1620000000000 ,1620000000000 ,1616812411860 -1616812411889 ,112.5730145,26.88414196,63.43328857,180.7135355,180.8884737,15.504001,0.139986936,1620000000000 ,1620000000000 ,1620000000000 ,1616812411870 -1616812411894 ,112.5730145,26.88414056,63.43577957,180.7184259,180.8851222,15.51026,0.140043079,1620000000000 ,1620000000000 ,1620000000000 ,1616812411880 -1616812411904 ,112.5730145,26.88413916,63.4382515,180.726185,180.9067281,15.520043,0.140128862,1620000000000 ,1620000000000 ,1620000000000 ,1616812411890 -1616812411917 ,112.5730144,26.88413776,63.44067383,180.7340261,180.9354446,15.531917,0.140220939,1620000000000 ,1620000000000 ,1620000000000 ,1616812411900 -1616812411925 ,112.5730144,26.88413636,63.44314957,180.7405011,180.9289662,15.542208,0.140328176,1620000000000 ,1620000000000 ,1620000000000 ,1616812411910 -1616812411934 ,112.5730144,26.88413495,63.44565964,180.7434791,180.9127692,15.552441,0.140415441,1620000000000 ,1620000000000 ,1620000000000 ,1616812411920 -1616812411945 ,112.5730144,26.88413355,63.44817352,180.7480963,180.9332425,15.5646715,0.140523076,1620000000000 ,1620000000000 ,1620000000000 ,1616812411930 -1616812411955 ,112.5730143,26.88413214,63.45061493,180.7523856,180.9666686,15.574474,0.140608267,1620000000000 ,1620000000000 ,1620000000000 ,1616812411940 -1616812411965 ,112.5730143,26.88413074,63.45309067,180.7540249,180.9968648,15.5839815,0.14070888,1620000000000 ,1620000000000 ,1620000000000 ,1616812411950 -1616812411975 ,112.5730143,26.88412933,63.45572281,180.7555822,180.987517,15.591011,0.140770709,1620000000000 ,1620000000000 ,1620000000000 ,1616812411960 -1616812411989 ,112.5730143,26.88412792,63.45850754,180.7575766,180.9867523,15.600002,0.140857669,1620000000000 ,1620000000000 ,1620000000000 ,1616812411970 -1616812411997 ,112.5730142,26.88412651,63.46133041,180.7600901,180.9982045,15.606722,0.14091494,1620000000000 ,1620000000000 ,1620000000000 ,1616812411980 -1616812412005 ,112.5730142,26.8841251,63.46413803,180.7647073,181.0237592,15.617918,0.14101182,1620000000000 ,1620000000000 ,1620000000000 ,1616812411990 -1616812412015 ,112.5730142,26.88412369,63.4669838,180.7656635,181.034526,15.621745,0.141066557,1620000000000 ,1620000000000 ,1620000000000 ,1616812412000 -1616812412026 ,112.5730142,26.88412228,63.46987915,180.7668383,181.0220543,15.63137,0.141132863,1620000000000 ,1620000000000 ,1620000000000 ,1616812412010 -1616812412035 ,112.5730141,26.88412087,63.47274399,180.7686142,181.0180004,15.643011,0.141233697,1620000000000 ,1620000000000 ,1620000000000 ,1616812412020 -1616812412046 ,112.5730141,26.88411945,63.47546768,180.7708818,181.0262893,15.65442,0.141337042,1620000000000 ,1620000000000 ,1620000000000 ,1616812412030 -1616812412056 ,112.5730141,26.88411804,63.47806931,180.7730948,181.0425664,15.666879,0.141445984,1620000000000 ,1620000000000 ,1620000000000 ,1616812412040 -1616812412067 ,112.5730141,26.88411662,63.48071671,180.7746521,181.0284848,15.675642,0.141534063,1620000000000 ,1620000000000 ,1620000000000 ,1616812412050 -1616812412075 ,112.573014,26.88411521,63.48354721,180.7777666,181.0143853,15.679603,0.141580202,1620000000000 ,1620000000000 ,1620000000000 ,1616812412060 -1616812412086 ,112.573014,26.88411379,63.4865303,180.7822745,181.017966,15.685431,0.141632016,1620000000000 ,1620000000000 ,1620000000000 ,1616812412070 -1616812412096 ,112.573014,26.88411238,63.48956299,180.7879026,181.0245727,15.693528,0.141705337,1620000000000 ,1620000000000 ,1620000000000 ,1616812412080 -1616812412108 ,112.573014,26.88411096,63.49256134,180.7909899,181.0314996,15.704431,0.14179332,1620000000000 ,1620000000000 ,1620000000000 ,1616812412090 -1616812412117 ,112.5730139,26.88410954,63.49550247,180.7936127,181.0332747,15.71517,0.141889794,1620000000000 ,1620000000000 ,1620000000000 ,1616812412100 -1616812412126 ,112.5730139,26.88410812,63.49836349,180.797137,181.0353359,15.724333,0.141976672,1620000000000 ,1620000000000 ,1620000000000 ,1616812412110 -1616812412136 ,112.5730139,26.8841067,63.5011673,180.8041858,181.0428997,15.733621,0.142061553,1620000000000 ,1620000000000 ,1620000000000 ,1616812412120 -1616812412147 ,112.5730139,26.88410528,63.50397491,180.8115351,181.0476463,15.744809,0.142152696,1620000000000 ,1620000000000 ,1620000000000 ,1616812412130 -1616812412156 ,112.5730138,26.88410386,63.50685501,180.8161796,181.0478882,15.753837,0.142244763,1620000000000 ,1620000000000 ,1620000000000 ,1616812412140 -1616812412167 ,112.5730138,26.88410243,63.50980377,180.8213432,181.0387172,15.763224,0.142325596,1620000000000 ,1620000000000 ,1620000000000 ,1616812412150 -1616812412177 ,112.5730138,26.88410101,63.5127449,180.8259604,181.040797,15.772747,0.142421208,1620000000000 ,1620000000000 ,1620000000000 ,1616812412160 -1616812412188 ,112.5730138,26.88409958,63.5155983,180.8328726,181.0494774,15.786037,0.142523242,1620000000000 ,1620000000000 ,1620000000000 ,1616812412170 -1616812412208 ,112.5730137,26.88409816,63.51838303,180.839129,181.0539656,15.796129,0.142625609,1620000000000 ,1620000000000 ,1620000000000 ,1616812412180 -1616812412213 ,112.5730137,26.88409673,63.52120972,180.8445932,181.0465355,15.804367,0.142706764,1620000000000 ,1620000000000 ,1620000000000 ,1616812412190 -1616812412219 ,112.5730137,26.8840953,63.52483368,180.8542374,181.7505331,15.800377,0.142761713,1620000000000 ,1620000000000 ,1620000000000 ,1616812412200 -1616812412227 ,112.5730136,26.88409388,63.52946854,180.8636904,182.6846645,15.807826,0.142779442,1620000000000 ,1620000000000 ,1620000000000 ,1616812412210 -1616812412238 ,112.5730135,26.88409245,63.53408432,180.8745641,182.6856392,15.817004,0.142861472,1620000000000 ,1620000000000 ,1620000000000 ,1616812412220 -1616812412248 ,112.5730135,26.88409102,63.53856277,180.8814489,182.6937945,15.828305,0.14295728,1620000000000 ,1620000000000 ,1620000000000 ,1616812412230 -1616812412261 ,112.5730134,26.88408959,63.54290771,180.8875961,182.7068516,15.842623,0.143080366,1620000000000 ,1620000000000 ,1620000000000 ,1616812412240 -1616812412269 ,112.5730133,26.88408816,63.54711533,180.8929236,182.7122916,15.8540125,0.143183409,1620000000000 ,1620000000000 ,1620000000000 ,1616812412250 -1616812412280 ,112.5730133,26.88408673,63.5512619,180.9022946,182.723181,15.864628,0.143281552,1620000000000 ,1620000000000 ,1620000000000 ,1616812412260 -1616812412290 ,112.5730132,26.8840853,63.5554657,180.9120208,182.7221255,15.873269,0.143371301,1620000000000 ,1620000000000 ,1620000000000 ,1616812412270 -1616812412298 ,112.5730131,26.88408387,63.55972672,180.9228398,182.7277539,15.881621,0.143448564,1620000000000 ,1620000000000 ,1620000000000 ,1616812412280 -1616812412310 ,112.5730131,26.88408243,63.56394958,180.9318557,182.7304976,15.89308,0.143537601,1620000000000 ,1620000000000 ,1620000000000 ,1616812412290 -1616812412320 ,112.573013,26.884081,63.56800842,180.9394235,182.7370308,15.899808,0.14360607,1620000000000 ,1620000000000 ,1620000000000 ,1616812412300 -1616812412331 ,112.5730129,26.88407956,63.57187653,180.9492044,182.7532242,15.909935,0.14369273,1620000000000 ,1620000000000 ,1620000000000 ,1616812412310 -1616812412342 ,112.5730128,26.88407813,63.57566452,180.9565263,182.7675221,15.91951,0.143778244,1620000000000 ,1620000000000 ,1620000000000 ,1616812412320 -1616812412348 ,112.5730128,26.88407669,63.57950592,180.9629194,182.7639822,15.927792,0.143851228,1620000000000 ,1620000000000 ,1620000000000 ,1616812412330 -1616812412358 ,112.5730127,26.88407525,63.58346939,180.9713615,182.770292,15.94034,0.143956884,1620000000000 ,1620000000000 ,1620000000000 ,1616812412340 -1616812412371 ,112.5730126,26.88407381,63.58751297,180.9792845,182.7946906,15.950446,0.144057245,1620000000000 ,1620000000000 ,1620000000000 ,1616812412350 -1616812412380 ,112.5730126,26.88407237,63.59158707,180.9863606,182.8140016,15.95929,0.144141004,1620000000000 ,1620000000000 ,1620000000000 ,1616812412360 -1616812412390 ,112.5730125,26.88407093,63.59573364,180.9908685,182.8181152,15.963564,0.14419513,1620000000000 ,1620000000000 ,1620000000000 ,1616812412370 -1616812412400 ,112.5730124,26.88406949,63.59999466,180.997043,182.8117966,15.973229,0.144265363,1620000000000 ,1620000000000 ,1620000000000 ,1616812412380 -1616812412409 ,112.5730124,26.88406805,63.60428619,181.0031629,182.8137252,15.984686,0.144363011,1620000000000 ,1620000000000 ,1620000000000 ,1616812412390 -1616812412419 ,112.5730123,26.88406661,63.60852432,181.012889,182.8338105,15.99707,0.144476278,1620000000000 ,1620000000000 ,1620000000000 ,1616812412400 -1616812412432 ,112.5730122,26.88406516,63.61273575,181.0204842,182.8393058,16.007084,0.144577549,1620000000000 ,1620000000000 ,1620000000000 ,1616812412410 -1616812412440 ,112.5730121,26.88406372,63.61699295,181.0279155,182.8312896,16.013552,0.144635626,1620000000000 ,1620000000000 ,1620000000000 ,1616812412420 -1616812412452 ,112.5730121,26.88406228,63.62129593,181.0349096,182.8336776,16.020695,0.144705711,1620000000000 ,1620000000000 ,1620000000000 ,1616812412430 -1616812412460 ,112.573012,26.88406083,63.62555313,181.0440347,182.8409327,16.030922,0.144790835,1620000000000 ,1620000000000 ,1620000000000 ,1616812412440 -1616812412469 ,112.5730119,26.88405938,63.62911606,181.0524495,182.1503841,16.045942,0.144873146,1620000000000 ,1620000000000 ,1620000000000 ,1616812412450 -1616812412479 ,112.5730119,26.88405793,63.63202286,181.060837,181.4449019,16.059072,0.144988667,1620000000000 ,1620000000000 ,1620000000000 ,1616812412460 -1616812412490 ,112.5730119,26.88405648,63.63498688,181.0675032,181.4371908,16.069715,0.145098415,1620000000000 ,1620000000000 ,1620000000000 ,1616812412470 -1616812412501 ,112.5730118,26.88405503,63.63809967,181.0749891,181.4429595,16.076576,0.145169522,1620000000000 ,1620000000000 ,1620000000000 ,1616812412480 -1616812412512 ,112.5730118,26.88405358,63.6413765,181.0820106,181.4612764,16.085447,0.145245967,1620000000000 ,1620000000000 ,1620000000000 ,1616812412490 -1616812412523 ,112.5730118,26.88405213,63.64476395,181.09048,181.4688046,16.092154,0.145317439,1620000000000 ,1620000000000 ,1620000000000 ,1616812412500 -1616812412530 ,112.5730117,26.88405067,63.64822006,181.0981298,181.4767579,16.097576,0.145370767,1620000000000 ,1620000000000 ,1620000000000 ,1616812412510 -1616812412545 ,112.5730117,26.88404922,63.65171814,181.1058616,181.4792797,16.105934,0.145441789,1620000000000 ,1620000000000 ,1620000000000 ,1616812412520 -1616812412550 ,112.5730116,26.88404776,63.65516663,181.1184018,181.4884232,16.11555,0.145527617,1620000000000 ,1620000000000 ,1620000000000 ,1616812412530 -1616812412560 ,112.5730116,26.88404631,63.65848541,181.1310513,181.4988615,16.126772,0.145620714,1620000000000 ,1620000000000 ,1620000000000 ,1616812412540 -1616812412572 ,112.5730116,26.88404485,63.66171265,181.1388104,181.5044239,16.13861,0.145726119,1620000000000 ,1620000000000 ,1620000000000 ,1616812412550 -1616812412581 ,112.5730115,26.88404339,63.66490936,181.1443839,181.5133467,16.147705,0.145817645,1620000000000 ,1620000000000 ,1620000000000 ,1616812412560 -1616812412591 ,112.5730115,26.88404193,63.66802979,181.1530172,181.5242075,16.160437,0.145921793,1620000000000 ,1620000000000 ,1620000000000 ,1616812412570 -1616812412601 ,112.5730115,26.88404047,63.67100143,181.1636177,181.53924,16.173025,0.146034475,1620000000000 ,1620000000000 ,1620000000000 ,1616812412580 -1616812412614 ,112.5730114,26.88403901,63.67388153,181.174382,181.5433209,16.183317,0.146132742,1620000000000 ,1620000000000 ,1620000000000 ,1616812412590 -1616812412622 ,112.5730114,26.88403755,63.67678452,181.1833979,181.5321185,16.192268,0.146216784,1620000000000 ,1620000000000 ,1620000000000 ,1616812412600 -1616812412633 ,112.5730113,26.88403609,63.67972946,181.1929602,181.5328274,16.200335,0.146290121,1620000000000 ,1620000000000 ,1620000000000 ,1616812412610 -1616812412641 ,112.5730113,26.88403463,63.682621,181.2047081,181.5470193,16.210438,0.146376017,1620000000000 ,1620000000000 ,1620000000000 ,1616812412620 -1616812412652 ,112.5730113,26.88403316,63.68540955,181.2168658,181.5639306,16.221766,0.146477142,1620000000000 ,1620000000000 ,1620000000000 ,1616812412630 -1616812412662 ,112.5730112,26.8840317,63.6881218,181.223696,181.5668939,16.23177,0.14656679,1620000000000 ,1620000000000 ,1620000000000 ,1616812412640 -1616812412672 ,112.5730112,26.88403023,63.69086456,181.2295427,181.5622081,16.240973,0.146645743,1620000000000 ,1620000000000 ,1620000000000 ,1616812412650 -1616812412683 ,112.5730111,26.88402876,63.69363403,181.2377116,181.566156,16.251741,0.146744501,1620000000000 ,1620000000000 ,1620000000000 ,1616812412660 -1616812412693 ,112.5730111,26.8840273,63.69638824,181.248394,181.5883607,16.265915,0.146860283,1620000000000 ,1620000000000 ,1620000000000 ,1616812412670 -1616812412703 ,112.5730111,26.88402583,63.69915009,181.258448,181.6111446,16.275396,0.146958887,1620000000000 ,1620000000000 ,1620000000000 ,1616812412680 -1616812412714 ,112.573011,26.88402436,63.70200729,181.267218,181.6201643,16.28288,0.147036433,1620000000000 ,1620000000000 ,1620000000000 ,1616812412690 -1616812412722 ,112.573011,26.88402289,63.70493317,181.2761245,181.612816,16.287931,0.14708595,1620000000000 ,1620000000000 ,1620000000000 ,1616812412700 -1616812412732 ,112.5730109,26.88402142,63.70777893,181.2852224,181.6101764,16.29714,0.147150908,1620000000000 ,1620000000000 ,1620000000000 ,1616812412710 -1616812412742 ,112.5730109,26.88401994,63.71051407,181.2969703,181.6280194,16.309103,0.147252099,1620000000000 ,1620000000000 ,1620000000000 ,1616812412730 -1616812412752 ,112.5730108,26.88401847,63.71325302,181.3083357,181.6392574,16.320503,0.147357429,1620000000000 ,1620000000000 ,1620000000000 ,1616812412730 -1616812412762 ,112.5730108,26.884017,63.71612549,181.318581,181.6324842,16.329287,0.147442384,1620000000000 ,1620000000000 ,1620000000000 ,1616812412750 -1616812412772 ,112.5730107,26.88401405,63.72223282,181.3334162,181.6411218,16.350407,0.295138593,1620000000000 ,1620000000000 ,1620000000000 ,1616812412760 -1616812412783 ,112.5730107,26.88401405,63.72223282,181.3334162,-400,16.350407,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812412770 -1616812412794 ,112.5730106,26.88401109,63.72835541,181.3494808,181.662268,16.372604,0.295552509,1620000000000 ,1620000000000 ,1620000000000 ,1616812412780 -1616812412803 ,112.5730106,26.88401109,63.72835541,181.3494808,-400,16.372604,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812412780 -1616812412816 ,112.5730105,26.88400814,63.73474503,181.3693976,181.6518549,16.3922,0.295927111,1620000000000 ,1620000000000 ,1620000000000 ,1616812412800 -1616812412823 ,112.5730105,26.88400814,63.73474503,181.3693976,-400,16.3922,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812412810 -1616812412833 ,112.5730105,26.88400517,63.74142838,181.3889866,181.6709982,16.410757,0.296288829,1620000000000 ,1620000000000 ,1620000000000 ,1616812412820 -1616812412843 ,112.5730104,26.88400369,63.74479675,181.3960627,181.7023445,16.416985,0.148242307,1620000000000 ,1620000000000 ,1620000000000 ,1616812412830 -1616812412854 ,112.5730104,26.88400221,63.74811935,181.4030568,181.6952635,16.423939,0.148296801,1620000000000 ,1620000000000 ,1620000000000 ,1616812412840 -1616812412864 ,112.5730103,26.88400073,63.75137711,181.4116628,181.7080881,16.437859,0.148409528,1620000000000 ,1620000000000 ,1620000000000 ,1616812412850 -1616812412875 ,112.5730103,26.88399924,63.75455856,181.4228643,181.7169757,16.451103,0.148530878,1620000000000 ,1620000000000 ,1620000000000 ,1616812412860 -1616812412884 ,112.5730102,26.88399776,63.7577095,181.4334648,181.7152398,16.466814,0.148658892,1620000000000 ,1620000000000 ,1620000000000 ,1616812412870 -1616812412894 ,112.5730102,26.88399627,63.76108551,181.4399398,181.7211792,16.474539,0.148764582,1620000000000 ,1620000000000 ,1620000000000 ,1616812412880 -1616812412905 ,112.5730102,26.88399627,63.76108551,181.4399398,-400,16.474539,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812412890 -1616812412915 ,112.5730101,26.88399329,63.76861572,181.4507861,181.7363394,16.482235,0.297645955,1620000000000 ,1620000000000 ,1620000000000 ,1616812412900 -1616812412924 ,112.5730101,26.88399181,63.77246094,181.4579442,181.744993,16.49006,0.148903986,1620000000000 ,1620000000000 ,1620000000000 ,1616812412910 -1616812412934 ,112.57301,26.88399032,63.77612686,181.4682714,181.7536827,16.503988,0.149017655,1620000000000 ,1620000000000 ,1620000000000 ,1616812412920 -1616812412944 ,112.57301,26.88398883,63.77961731,181.4796095,181.7528736,16.516596,0.149136216,1620000000000 ,1620000000000 ,1620000000000 ,1616812412930 -1616812412956 ,112.5730099,26.88398733,63.78301239,181.4889259,181.7435055,16.529232,0.14924421,1620000000000 ,1620000000000 ,1620000000000 ,1616812412940 -1616812412965 ,112.5730099,26.88398584,63.78643036,181.4938983,181.7426375,16.539501,0.149345722,1620000000000 ,1620000000000 ,1620000000000 ,1616812412950 -1616812412975 ,112.5730098,26.88398435,63.78993225,181.4993898,181.7583555,16.548326,0.149434055,1620000000000 ,1620000000000 ,1620000000000 ,1616812412960 -1616812412985 ,112.5730098,26.88398285,63.79346466,181.506056,181.7816121,16.556995,0.149513065,1620000000000 ,1620000000000 ,1620000000000 ,1616812412970 -1616812412995 ,112.5730097,26.88398136,63.79698181,181.5150172,181.7877998,16.566313,0.149592651,1620000000000 ,1620000000000 ,1620000000000 ,1616812412980 -1616812413008 ,112.5730097,26.88397986,63.80046082,181.5239784,181.7713838,16.57702,0.149694512,1620000000000 ,1620000000000 ,1620000000000 ,1616812412990 -1616812413017 ,112.5730096,26.88397836,63.8038559,181.5344696,181.769114,16.587093,0.149778197,1620000000000 ,1620000000000 ,1620000000000 ,1616812413000 -1616812413028 ,112.5730096,26.88397687,63.80715942,181.5467093,181.7950476,16.598711,0.149882065,1620000000000 ,1620000000000 ,1620000000000 ,1616812413010 -1616812413036 ,112.5730096,26.88397537,63.81037521,181.5557252,181.8062595,16.60819,0.149978564,1620000000000 ,1620000000000 ,1620000000000 ,1616812413020 -1616812413045 ,112.5730095,26.88397387,63.81361389,181.5649869,181.8159799,16.61689,0.150058255,1620000000000 ,1620000000000 ,1620000000000 ,1616812413030 -1616812413055 ,112.5730095,26.88397237,63.81694412,181.5711614,181.8250602,16.624342,0.150129592,1620000000000 ,1620000000000 ,1620000000000 ,1616812413040 -1616812413066 ,112.5730094,26.88397087,63.82030869,181.5796035,181.8383158,16.63311,0.150208944,1620000000000 ,1620000000000 ,1620000000000 ,1616812413050 -1616812413076 ,112.5730094,26.88396936,63.82356644,181.5884281,181.8512502,16.643478,0.150297046,1620000000000 ,1620000000000 ,1620000000000 ,1616812413060 -1616812413085 ,112.5730093,26.88396786,63.82669449,181.5965697,181.8735213,16.65616,0.150407566,1620000000000 ,1620000000000 ,1620000000000 ,1616812413070 -1616812413096 ,112.5730093,26.88396636,63.82979965,181.6055855,181.8923953,16.66605,0.150504211,1620000000000 ,1620000000000 ,1620000000000 ,1616812413080 -1616812413106 ,112.5730092,26.88396485,63.83287811,181.6151751,181.8947513,16.678152,0.150610474,1620000000000 ,1620000000000 ,1620000000000 ,1616812413090 -1616812413118 ,112.5730092,26.88396334,63.83588791,181.6247374,181.9122658,16.688017,0.150705848,1620000000000 ,1620000000000 ,1620000000000 ,1616812413100 -1616812413127 ,112.5730091,26.88396184,63.83882141,181.635092,181.9244724,16.696817,0.150785032,1620000000000 ,1620000000000 ,1620000000000 ,1616812413110 -1616812413137 ,112.5730091,26.88396033,63.84169769,181.6455012,181.9289726,16.703304,0.150852239,1620000000000 ,1620000000000 ,1620000000000 ,1616812413120 -1616812413148 ,112.573009,26.88395882,63.84452438,181.6551181,181.942157,16.711689,0.150915804,1620000000000 ,1620000000000 ,1620000000000 ,1616812413130 -1616812413158 ,112.573009,26.88395731,63.84724808,181.6638607,181.9659287,16.723026,0.151015138,1620000000000 ,1620000000000 ,1620000000000 ,1616812413140 -1616812413168 ,112.5730089,26.8839558,63.84985733,181.6733957,181.9835646,16.735817,0.151122904,1620000000000 ,1620000000000 ,1620000000000 ,1616812413150 -1616812413181 ,112.5730089,26.88395429,63.85238266,181.6802259,181.9932684,16.74677,0.151225583,1620000000000 ,1620000000000 ,1620000000000 ,1616812413160 -1616812413189 ,112.5730088,26.88395278,63.8549118,181.6862364,182.0157382,16.755995,0.151310599,1620000000000 ,1620000000000 ,1620000000000 ,1616812413170 -1616812413199 ,112.5730087,26.88395126,63.85747528,181.6940502,182.0180909,16.76746,0.151411353,1620000000000 ,1620000000000 ,1620000000000 ,1616812413180 -1616812413209 ,112.5730087,26.88394975,63.85995865,181.7035031,182.0224783,16.780245,0.151518229,1620000000000 ,1620000000000 ,1620000000000 ,1616812413190 -1616812413221 ,112.5730086,26.88394823,63.86348343,181.7172455,182.918463,16.803932,0.151913521,1620000000000 ,1620000000000 ,1620000000000 ,1616812413200 -1616812413229 ,112.5730085,26.88394671,63.86828232,181.7235839,184.0013851,16.811325,0.152438677,1620000000000 ,1620000000000 ,1620000000000 ,1616812413210 -1616812413239 ,112.5730084,26.88394519,63.87312698,181.728365,184.0087636,16.81635,0.152488007,1620000000000 ,1620000000000 ,1620000000000 ,1616812413220 -1616812413249 ,112.5730083,26.88394367,63.87803268,181.7347034,184.0227476,16.822813,0.152543387,1620000000000 ,1620000000000 ,1620000000000 ,1616812413230 -1616812413270 ,112.5730082,26.88394215,63.88299561,181.7417249,184.0474241,16.831266,0.152614088,1620000000000 ,1620000000000 ,1620000000000 ,1616812413240 -1616812413272 ,112.5730081,26.88394062,63.88797379,181.7492654,184.0569416,16.842957,0.152713666,1620000000000 ,1620000000000 ,1620000000000 ,1616812413250 -1616812413279 ,112.573008,26.8839391,63.89288712,181.7548935,184.0679658,16.856466,0.152830057,1620000000000 ,1620000000000 ,1620000000000 ,1616812413260 -1616812413289 ,112.5730079,26.88393757,63.89780426,181.7577622,184.0774913,16.868258,0.152939275,1620000000000 ,1620000000000 ,1620000000000 ,1616812413270 -1616812413301 ,112.5730078,26.88393605,63.90278625,181.7607674,184.0711051,16.876976,0.15302755,1620000000000 ,1620000000000 ,1620000000000 ,1616812413280 -1616812413310 ,112.5730076,26.88393452,63.90786362,181.7670239,184.0730519,16.886639,0.153108868,1620000000000 ,1620000000000 ,1620000000000 ,1616812413290 -1616812413320 ,112.5730075,26.88393299,63.91304016,181.7744278,184.0959596,16.891983,0.153174446,1620000000000 ,1620000000000 ,1620000000000 ,1616812413300 -1616812413330 ,112.5730074,26.88393146,63.91834259,181.7837988,184.0978702,16.899738,0.153235992,1620000000000 ,1620000000000 ,1620000000000 ,1616812413310 -1616812413339 ,112.5730073,26.88392994,63.92377472,181.792241,184.0782234,16.908537,0.15331648,1620000000000 ,1620000000000 ,1620000000000 ,1616812413320 -1616812413350 ,112.5730072,26.88392841,63.92924118,181.8032785,184.0740154,16.9152,0.1533756,1620000000000 ,1620000000000 ,1620000000000 ,1616812413330 -1616812413360 ,112.5730071,26.88392687,63.93469238,181.8104639,184.0922992,16.923069,0.15344452,1620000000000 ,1620000000000 ,1620000000000 ,1616812413340 -1616812413371 ,112.573007,26.88392534,63.94012451,181.817458,184.1105636,16.929691,0.153513986,1620000000000 ,1620000000000 ,1620000000000 ,1616812413350 -1616812413384 ,112.5730069,26.88392381,63.9455452,181.822649,184.1173619,16.939514,0.153579628,1620000000000 ,1620000000000 ,1620000000000 ,1616812413360 -1616812413393 ,112.5730068,26.88392228,63.95095444,181.8302168,184.1157502,16.951895,0.153696729,1620000000000 ,1620000000000 ,1620000000000 ,1616812413370 -1616812413401 ,112.5730067,26.88392074,63.9564209,181.8362001,184.1129054,16.96046,0.153777094,1620000000000 ,1620000000000 ,1620000000000 ,1616812413380 -1616812413411 ,112.5730065,26.88391921,63.96207047,181.8436313,184.1083682,16.966137,0.153840751,1620000000000 ,1620000000000 ,1620000000000 ,1616812413390 -1616812413421 ,112.5730064,26.88391768,63.96794891,181.8506801,184.1143943,16.968592,0.153870826,1620000000000 ,1620000000000 ,1620000000000 ,1616812413400 -1616812413431 ,112.5730063,26.88391614,63.97404099,181.8628651,184.1127568,16.97055,0.153892849,1620000000000 ,1620000000000 ,1620000000000 ,1616812413410 -1616812413444 ,112.5730062,26.88391461,63.98025131,181.8760337,184.1081417,16.975704,0.153940287,1620000000000 ,1620000000000 ,1620000000000 ,1616812413420 -1616812413451 ,112.5730061,26.88391307,63.9865036,181.8875358,184.10779,16.984375,0.154005579,1620000000000 ,1620000000000 ,1620000000000 ,1616812413430 -1616812413462 ,112.573006,26.88391153,63.992733,181.8996662,184.1009896,16.992937,0.154088634,1620000000000 ,1620000000000 ,1620000000000 ,1616812413440 -1616812413473 ,112.5730059,26.88391,63.99785233,181.9072613,183.2692791,17.00026,0.15383759,1620000000000 ,1620000000000 ,1620000000000 ,1616812413450 -1616812413484 ,112.5730058,26.88390846,64.0019455,181.9135724,182.4439576,17.002369,0.153573347,1620000000000 ,1620000000000 ,1620000000000 ,1616812413460 -1616812413495 ,112.5730058,26.88390693,64.00617981,181.9220419,182.4652872,17.00735,0.153619678,1620000000000 ,1620000000000 ,1620000000000 ,1616812413470 -1616812413503 ,112.5730057,26.88390539,64.01055908,181.9301835,182.4691099,17.010172,0.153656933,1620000000000 ,1620000000000 ,1620000000000 ,1616812413480 -1616812413512 ,112.5730056,26.88390386,64.01506042,181.9388168,182.4630888,17.016306,0.153713588,1620000000000 ,1620000000000 ,1620000000000 ,1616812413490 -1616812413524 ,112.5730056,26.88390232,64.01964569,181.9478873,182.4709922,17.020824,0.15376525,1620000000000 ,1620000000000 ,1620000000000 ,1616812413500 -1616812413534 ,112.5730055,26.88390078,64.02425385,181.9596352,182.4873275,17.025734,0.153814913,1620000000000 ,1620000000000 ,1620000000000 ,1616812413510 -1616812413544 ,112.5730054,26.88389925,64.02879333,181.9713558,182.4953939,17.030972,0.153874586,1620000000000 ,1620000000000 ,1620000000000 ,1616812413520 -1616812413552 ,112.5730054,26.88389771,64.03323364,181.9819016,182.5069833,17.033213,0.15390551,1620000000000 ,1620000000000 ,1620000000000 ,1616812413530 -1616812413565 ,112.5730053,26.88389617,64.03749847,181.9923655,182.5124644,17.03669,0.153932432,1620000000000 ,1620000000000 ,1620000000000 ,1616812413540 -1616812413573 ,112.5730052,26.88389463,64.04148102,182.0052609,182.5203632,17.041126,0.153971767,1620000000000 ,1620000000000 ,1620000000000 ,1616812413550 -1616812413586 ,112.5730052,26.88389309,64.04508209,182.0162712,182.526383,17.051218,0.154037584,1620000000000 ,1620000000000 ,1620000000000 ,1616812413560 -1616812413594 ,112.5730051,26.88389155,64.04833984,182.0271721,182.5366588,17.061459,0.154123662,1620000000000 ,1620000000000 ,1620000000000 ,1616812413570 -1616812413608 ,112.573005,26.88389001,64.05137634,182.036188,182.5530498,17.065376,0.15417742,1620000000000 ,1620000000000 ,1620000000000 ,1616812413580 -1616812413617 ,112.573005,26.88388847,64.05434418,182.043346,182.5510895,17.069332,0.15421664,1620000000000 ,1620000000000 ,1620000000000 ,1616812413590 -1616812413622 ,112.5730049,26.88388693,64.05726624,182.0512964,182.5457732,17.074514,0.154251648,1620000000000 ,1620000000000 ,1620000000000 ,1616812413600 -1616812413636 ,112.5730048,26.88388539,64.06002808,182.0613504,182.562782,17.083534,0.154318435,1620000000000 ,1620000000000 ,1620000000000 ,1616812413620 -1616812413643 ,112.5730048,26.88388385,64.06253052,182.0747103,182.5920865,17.096226,0.15442677,1620000000000 ,1620000000000 ,1620000000000 ,1616812413630 -1616812413653 ,112.5730046,26.88388076,64.06678772,182.098534,182.6071772,17.110237,0.309065335,1620000000000 ,1620000000000 ,1620000000000 ,1616812413640 -1616812413663 ,112.5730045,26.88387922,64.06874847,182.1062384,182.6149139,17.111988,0.154578462,1620000000000 ,1620000000000 ,1620000000000 ,1616812413650 -1616812413674 ,112.5730045,26.88387767,64.07065582,182.1137243,182.6353486,17.116264,0.154601112,1620000000000 ,1620000000000 ,1620000000000 ,1616812413660 -1616812413685 ,112.5730044,26.88387613,64.07247925,182.1252263,182.6636051,17.126389,0.154678816,1620000000000 ,1620000000000 ,1620000000000 ,1616812413670 -1616812413694 ,112.5730043,26.88387458,64.07421112,182.1330674,182.6828105,17.13659,0.154763915,1620000000000 ,1620000000000 ,1620000000000 ,1616812413680 -1616812413711 ,112.5730043,26.88387458,64.07421112,182.1330674,-400,17.13659,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812413690 -1616812413716 ,112.5730042,26.88387149,64.07781982,182.1494325,182.6762927,17.14567,0.309702811,1620000000000 ,1620000000000 ,1620000000000 ,1616812413700 -1616812413724 ,112.5730041,26.88386994,64.07977295,182.1588035,182.6841814,17.14901,0.154891915,1620000000000 ,1620000000000 ,1620000000000 ,1616812413710 -1616812413735 ,112.573004,26.88386839,64.08180237,182.1695406,182.6969704,17.15251,0.154921689,1620000000000 ,1620000000000 ,1620000000000 ,1616812413720 -1616812413745 ,112.573004,26.88386684,64.08387756,182.1787204,182.7179368,17.157864,0.154966905,1620000000000 ,1620000000000 ,1620000000000 ,1616812413730 -1616812413756 ,112.5730039,26.8838653,64.08604431,182.1889383,182.7383101,17.164774,0.155022693,1620000000000 ,1620000000000 ,1620000000000 ,1616812413740 -1616812413764 ,112.5730038,26.88386375,64.08827209,182.1994568,182.7350314,17.170046,0.155080329,1620000000000 ,1620000000000 ,1620000000000 ,1616812413750 -1616812413774 ,112.5730037,26.8838622,64.09059143,182.2093196,182.7400997,17.173166,0.155109898,1620000000000 ,1620000000000 ,1620000000000 ,1616812413760 -1616812413784 ,112.5730037,26.88386065,64.0930481,182.216423,182.7487955,17.176355,0.155139042,1620000000000 ,1620000000000 ,1620000000000 ,1616812413770 -1616812413796 ,112.5730036,26.8838591,64.09566498,182.223663,182.7627352,17.178097,0.155160902,1620000000000 ,1620000000000 ,1620000000000 ,1616812413780 -1616812413804 ,112.5730035,26.88385755,64.09840393,182.2326516,182.7722623,17.182428,0.155192487,1620000000000 ,1620000000000 ,1620000000000 ,1616812413790 -1616812413816 ,112.5730034,26.883856,64.10118866,182.2426236,182.7766722,17.187885,0.155241024,1620000000000 ,1620000000000 ,1620000000000 ,1616812413800 -1616812413825 ,112.5730034,26.88385445,64.10402679,182.254235,182.7896378,17.194506,0.155297078,1620000000000 ,1620000000000 ,1620000000000 ,1616812413810 -1616812413836 ,112.5730033,26.88385289,64.10693359,182.2663654,182.7815457,17.202536,0.155370337,1620000000000 ,1620000000000 ,1620000000000 ,1616812413820 -1616812413845 ,112.5730032,26.88385134,64.10986328,182.275955,182.7750995,17.205782,0.155408769,1620000000000 ,1620000000000 ,1620000000000 ,1616812413830 -1616812413858 ,112.5730031,26.88384979,64.11280823,182.2839599,182.7967895,17.207638,0.155423411,1620000000000 ,1620000000000 ,1620000000000 ,1616812413840 -1616812413866 ,112.5730031,26.88384824,64.11589813,182.2908448,182.808199,17.210665,0.155457432,1620000000000 ,1620000000000 ,1620000000000 ,1616812413850 -1616812413877 ,112.573003,26.88384668,64.11923981,182.2968553,182.8161816,17.214596,0.155494462,1620000000000 ,1620000000000 ,1620000000000 ,1616812413860 -1616812413891 ,112.5730029,26.88384513,64.12283325,182.3042046,182.8263235,17.216778,0.15551577,1620000000000 ,1620000000000 ,1620000000000 ,1616812413870 -1616812413896 ,112.5730028,26.88384358,64.12654877,182.312756,182.8213897,17.220263,0.155552231,1620000000000 ,1620000000000 ,1620000000000 ,1616812413880 -1616812413908 ,112.5730028,26.88384202,64.1302948,182.3256241,182.8231821,17.220531,0.155559156,1620000000000 ,1620000000000 ,1620000000000 ,1616812413890 -1616812413918 ,112.5730027,26.88384047,64.13391876,182.3392298,182.8253107,17.226807,0.155599666,1620000000000 ,1620000000000 ,1620000000000 ,1616812413900 -1616812413926 ,112.5730026,26.88383891,64.13738251,182.3516061,182.8478824,17.235588,0.155670395,1620000000000 ,1620000000000 ,1620000000000 ,1616812413910 -1616812413937 ,112.5730025,26.88383736,64.14081573,182.3597204,182.8659797,17.241207,0.155731984,1620000000000 ,1620000000000 ,1620000000000 ,1616812413920 -1616812413948 ,112.5730025,26.8838358,64.14430237,182.3712498,182.8748972,17.243599,0.155760721,1620000000000 ,1620000000000 ,1620000000000 ,1616812413930 -1616812413956 ,112.5730024,26.88383425,64.14790344,182.3830796,182.8954271,17.242601,0.155761174,1620000000000 ,1620000000000 ,1620000000000 ,1616812413940 -1616812413966 ,112.5730023,26.88383269,64.15157318,182.3941172,182.8945947,17.243195,0.155759554,1620000000000 ,1620000000000 ,1620000000000 ,1616812413950 -1616812413976 ,112.5730022,26.88383114,64.15528107,182.403215,182.8978595,17.246634,0.155786072,1620000000000 ,1620000000000 ,1620000000000 ,1616812413960 -1616812413991 ,112.5730021,26.88382958,64.15895081,182.4119577,182.9149311,17.255331,0.155847628,1620000000000 ,1620000000000 ,1620000000000 ,1616812413970 -1616812413998 ,112.5730021,26.88382802,64.16252136,182.4246618,182.9245691,17.262716,0.155919212,1620000000000 ,1620000000000 ,1620000000000 ,1616812413980 -1616812414007 ,112.573002,26.88382647,64.16610718,182.4332132,182.9429031,17.26121,0.155930243,1620000000000 ,1620000000000 ,1620000000000 ,1616812413990 -1616812414018 ,112.5730019,26.88382491,64.1699295,182.4427209,182.9437231,17.26218,0.155934026,1620000000000 ,1620000000000 ,1620000000000 ,1616812414000 -1616812414028 ,112.5730018,26.88382335,64.17405701,182.4541409,182.9429718,17.262825,0.155946782,1620000000000 ,1620000000000 ,1620000000000 ,1616812414010 -1616812414038 ,112.5730017,26.88382179,64.17831421,182.4649326,182.9526712,17.265663,0.155963789,1620000000000 ,1620000000000 ,1620000000000 ,1616812414020 -1616812414048 ,112.5730017,26.88382024,64.18253326,182.478675,182.976116,17.270971,0.156014172,1620000000000 ,1620000000000 ,1620000000000 ,1616812414030 -1616812414059 ,112.5730016,26.88381868,64.18668365,182.4899311,183.006753,17.2713,0.156028206,1620000000000 ,1620000000000 ,1620000000000 ,1616812414040 -1616812414068 ,112.5730015,26.88381712,64.19087219,182.500313,183.0272698,17.273262,0.156045896,1620000000000 ,1620000000000 ,1620000000000 ,1616812414050 -1616812414078 ,112.5730014,26.88381556,64.19512177,182.5080175,183.0382925,17.27398,0.156059183,1620000000000 ,1620000000000 ,1620000000000 ,1616812414060 -1616812414089 ,112.5730013,26.883814,64.1993866,182.516241,183.0527855,17.278343,0.156088695,1620000000000 ,1620000000000 ,1620000000000 ,1616812414070 -1616812414103 ,112.5730012,26.88381244,64.20362854,182.5240001,183.0626803,17.282621,0.156137057,1620000000000 ,1620000000000 ,1620000000000 ,1616812414080 -1616812414109 ,112.5730012,26.88381088,64.207901,182.5317865,183.0769258,17.28257,0.156148434,1620000000000 ,1620000000000 ,1620000000000 ,1616812414090 -1616812414121 ,112.5730011,26.88380932,64.21228027,182.5400101,183.0872559,17.281908,0.156153473,1620000000000 ,1620000000000 ,1620000000000 ,1616812414100 -1616812414129 ,112.573001,26.88380776,64.21669769,182.5509657,183.0730514,17.28208,0.156157885,1620000000000 ,1620000000000 ,1620000000000 ,1616812414110 -1616812414140 ,112.5730009,26.88380621,64.22104645,182.5626043,183.0812981,17.283882,0.156171834,1620000000000 ,1620000000000 ,1620000000000 ,1616812414120 -1616812414151 ,112.5730008,26.88380465,64.22528076,182.574926,183.1000456,17.285915,0.156193455,1620000000000 ,1620000000000 ,1620000000000 ,1616812414130 -1616812414160 ,112.5730007,26.88380309,64.2293396,182.5856904,183.113311,17.289492,0.156221823,1620000000000 ,1620000000000 ,1620000000000 ,1616812414140 -1616812414169 ,112.5730007,26.88380153,64.23334503,182.5911545,183.1357166,17.292568,0.156253882,1620000000000 ,1620000000000 ,1620000000000 ,1616812414150 -1616812414180 ,112.5730006,26.88379997,64.23735809,182.5964001,183.1429286,17.293663,0.156279736,1620000000000 ,1620000000000 ,1620000000000 ,1616812414160 -1616812414191 ,112.5730005,26.8837984,64.24131775,182.6037767,183.165333,17.295399,0.156289997,1620000000000 ,1620000000000 ,1620000000000 ,1616812414170 -1616812414203 ,112.5730004,26.88379684,64.24516296,182.6154154,183.1789689,17.298668,0.156320208,1620000000000 ,1620000000000 ,1620000000000 ,1616812414180 -1616812414212 ,112.5730003,26.88379528,64.24881744,182.6252781,183.1750447,17.2995,0.156339541,1620000000000 ,1620000000000 ,1620000000000 ,1616812414190 -1616812414220 ,112.5730002,26.88379372,64.25292206,182.6274911,184.1175559,17.2758,0.156215887,1620000000000 ,1620000000000 ,1620000000000 ,1616812414200 -1616812414234 ,112.5730001,26.88379217,64.25737762,182.6371627,185.1251898,17.28044,0.155934377,1620000000000 ,1620000000000 ,1620000000000 ,1616812414210 -1616812414240 ,112.5729999,26.88379062,64.26148987,182.6515334,185.1290787,17.288368,0.155990234,1620000000000 ,1620000000000 ,1620000000000 ,1616812414220 -1616812414253 ,112.5729998,26.88378906,64.26517487,182.6656855,185.1351103,17.296833,0.156063888,1620000000000 ,1620000000000 ,1620000000000 ,1616812414230 -1616812414260 ,112.5729996,26.88378751,64.26851654,182.6774062,185.1398794,17.302116,0.156111042,1620000000000 ,1620000000000 ,1620000000000 ,1616812414240 -1616812414270 ,112.5729995,26.88378595,64.27176666,182.6844276,185.1431854,17.303806,0.156125068,1620000000000 ,1620000000000 ,1620000000000 ,1616812414250 -1616812414281 ,112.5729994,26.8837844,64.27507019,182.69358,185.1408277,17.304285,0.156136974,1620000000000 ,1620000000000 ,1620000000000 ,1616812414260 -1616812414291 ,112.5729992,26.88378284,64.27835846,182.70388,185.1545045,17.306597,0.156152725,1620000000000 ,1620000000000 ,1620000000000 ,1616812414270 -1616812414309 ,112.5729991,26.88378129,64.28155518,182.7160923,185.1723143,17.307814,0.156168373,1620000000000 ,1620000000000 ,1620000000000 ,1616812414280 -1616812414312 ,112.5729989,26.88377973,64.2846756,182.7245891,185.1840161,17.30877,0.156176104,1620000000000 ,1620000000000 ,1620000000000 ,1616812414290 -1616812414322 ,112.5729988,26.88377818,64.28778076,182.7357086,185.1847785,17.31252,0.156194009,1620000000000 ,1620000000000 ,1620000000000 ,1616812414300 -1616812414332 ,112.5729987,26.88377662,64.2907486,182.7521831,185.1852922,17.320196,0.156255783,1620000000000 ,1620000000000 ,1620000000000 ,1616812414310 -1616812414341 ,112.5729985,26.88377506,64.29353333,182.7684116,185.2071886,17.324791,0.156298195,1620000000000 ,1620000000000 ,1620000000000 ,1616812414320 -1616812414356 ,112.5729984,26.88377351,64.29628754,182.7807879,185.2189208,17.32333,0.156302352,1620000000000 ,1620000000000 ,1620000000000 ,1616812414330 -1616812414360 ,112.5729982,26.88377195,64.29920959,182.7934647,185.2152955,17.317446,0.156259302,1620000000000 ,1620000000000 ,1620000000000 ,1616812414340 -1616812414371 ,112.5729981,26.8837704,64.30233002,182.8050487,185.222616,17.320322,0.156258479,1620000000000 ,1620000000000 ,1620000000000 ,1616812414350 -1616812414381 ,112.5729979,26.88376884,64.30549622,182.81819,185.2403581,17.325575,0.156309325,1620000000000 ,1620000000000 ,1620000000000 ,1616812414360 -1616812414391 ,112.5729978,26.88376728,64.30865479,182.8317957,185.2676192,17.32917,0.156348619,1620000000000 ,1620000000000 ,1620000000000 ,1616812414370 -1616812414403 ,112.5729977,26.88376573,64.31184387,182.8458933,185.2752579,17.327957,0.156348713,1620000000000 ,1620000000000 ,1620000000000 ,1616812414380 -1616812414411 ,112.5729975,26.88376417,64.31513214,182.861029,185.2616858,17.324598,0.156320298,1620000000000 ,1620000000000 ,1620000000000 ,1616812414390 -1616812414422 ,112.5729974,26.88376261,64.31846619,182.8779951,185.2647851,17.325525,0.156314551,1620000000000 ,1620000000000 ,1620000000000 ,1616812414400 -1616812414432 ,112.5729972,26.88376106,64.32174683,182.8963547,185.2936805,17.33305,0.156367719,1620000000000 ,1620000000000 ,1620000000000 ,1616812414410 -1616812414442 ,112.5729971,26.8837595,64.32501984,182.9099058,185.3335441,17.335342,0.156409129,1620000000000 ,1620000000000 ,1620000000000 ,1616812414420 -1616812414452 ,112.5729969,26.88375794,64.32844543,182.9238121,185.3515037,17.332954,0.156403477,1620000000000 ,1620000000000 ,1620000000000 ,1616812414430 -1616812414462 ,112.5729968,26.88375638,64.3321228,182.936926,185.3616549,17.330576,0.15637499,1620000000000 ,1620000000000 ,1620000000000 ,1616812414440 -1616812414473 ,112.5729967,26.88375482,64.33538055,182.9505591,184.4372279,17.33213,0.156460407,1620000000000 ,1620000000000 ,1620000000000 ,1616812414450 -1616812414487 ,112.5729966,26.88375326,64.33815002,182.9644107,183.5058979,17.334347,0.156601186,1620000000000 ,1620000000000 ,1620000000000 ,1616812414460 -1616812414494 ,112.5729965,26.8837517,64.34103394,182.9769509,183.5326932,17.333641,0.156603193,1620000000000 ,1620000000000 ,1620000000000 ,1616812414470 -1616812414502 ,112.5729964,26.88375013,64.34406281,182.9946001,183.5485505,17.332714,0.156596675,1620000000000 ,1620000000000 ,1620000000000 ,1616812414480 -1616812414515 ,112.5729963,26.88374857,64.34719086,183.0128231,183.5448147,17.332827,0.156599142,1620000000000 ,1620000000000 ,1620000000000 ,1616812414490 -1616812414524 ,112.5729962,26.88374701,64.35042572,183.029598,183.5565322,17.334051,0.156608188,1620000000000 ,1620000000000 ,1620000000000 ,1616812414500 -1616812414533 ,112.5729961,26.88374545,64.35380554,183.0411547,183.5895236,17.336317,0.156630512,1620000000000 ,1620000000000 ,1620000000000 ,1616812414510 -1616812414549 ,112.572996,26.88374388,64.35726929,183.054214,183.6224201,17.335468,0.156633589,1620000000000 ,1620000000000 ,1620000000000 ,1616812414530 -1616812414554 ,112.5729959,26.88374232,64.36076355,183.0661259,183.6488847,17.336094,0.156641047,1620000000000 ,1620000000000 ,1620000000000 ,1616812414540 -1616812414563 ,112.5729958,26.88374076,64.36432648,183.0772727,183.6721568,17.334866,0.156633949,1620000000000 ,1620000000000 ,1620000000000 ,1616812414550 -1616812414573 ,112.5729957,26.88373919,64.36803436,183.0894851,183.6759634,17.334555,0.156631803,1620000000000 ,1620000000000 ,1620000000000 ,1616812414550 -1616812414584 ,112.5729956,26.88373763,64.3719101,183.1020254,183.6849532,17.332216,0.15662736,1620000000000 ,1620000000000 ,1620000000000 ,1616812414570 -1616812414594 ,112.5729954,26.8837345,64.38008881,183.1301931,183.7307349,17.328259,0.313225366,1620000000000 ,1620000000000 ,1620000000000 ,1616812414580 -1616812414604 ,112.5729954,26.8837345,64.38008881,183.1301931,-400,17.328259,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812414580 -1616812414615 ,112.5729952,26.88373138,64.3884964,183.1577051,183.7803169,17.33175,0.313222874,1620000000000 ,1620000000000 ,1620000000000 ,1616812414600 -1616812414626 ,112.5729951,26.88372982,64.39260864,183.1709556,183.7951091,17.336136,0.156669364,1620000000000 ,1620000000000 ,1620000000000 ,1616812414610 -1616812414634 ,112.572995,26.88372825,64.39659882,183.1860913,183.8137427,17.337175,0.15668366,1620000000000 ,1620000000000 ,1620000000000 ,1616812414620 -1616812414644 ,112.5729949,26.88372669,64.40055847,183.1990414,183.8331997,17.335325,0.156683796,1620000000000 ,1620000000000 ,1620000000000 ,1616812414630 -1616812414655 ,112.5729948,26.88372513,64.40453339,183.2140678,183.8540981,17.33278,0.156662399,1620000000000 ,1620000000000 ,1620000000000 ,1616812414640 -1616812414668 ,112.5729947,26.88372356,64.4085083,183.2273457,183.858193,17.33263,0.156658364,1620000000000 ,1620000000000 ,1620000000000 ,1616812414650 -1616812414676 ,112.5729945,26.883722,64.41236877,183.2407875,183.8526549,17.33367,0.156658519,1620000000000 ,1620000000000 ,1620000000000 ,1616812414660 -1616812414686 ,112.5729944,26.88372044,64.41596985,183.2548303,183.8673457,17.338284,0.156691718,1620000000000 ,1620000000000 ,1620000000000 ,1616812414670 -1616812414696 ,112.5729943,26.88371887,64.41924286,183.2691464,183.8917598,17.344969,0.156738038,1620000000000 ,1620000000000 ,1620000000000 ,1616812414680 -1616812414704 ,112.5729942,26.88371731,64.42219543,183.2841728,183.9090877,17.347929,0.156769848,1620000000000 ,1620000000000 ,1620000000000 ,1616812414690 -1616812414715 ,112.5729941,26.88371574,64.42498016,183.2998003,183.9019909,17.346802,0.156766075,1620000000000 ,1620000000000 ,1620000000000 ,1616812414700 -1616812414726 ,112.572994,26.88371418,64.42777252,183.3115756,183.8954096,17.346127,0.156756203,1620000000000 ,1620000000000 ,1620000000000 ,1616812414710 -1616812414735 ,112.5729939,26.88371262,64.43066406,183.3275855,183.9152232,17.345905,0.156749874,1620000000000 ,1620000000000 ,1620000000000 ,1616812414720 -1616812414745 ,112.5729938,26.88371105,64.43358612,183.3441965,183.9345121,17.348,0.15676897,1620000000000 ,1620000000000 ,1620000000000 ,1616812414730 -1616812414755 ,112.5729937,26.88370949,64.43643951,183.3619277,183.9602636,17.349827,0.156779117,1620000000000 ,1620000000000 ,1620000000000 ,1616812414740 -1616812414766 ,112.5729936,26.88370792,64.4392395,183.3784294,183.9695162,17.352371,0.156809205,1620000000000 ,1620000000000 ,1620000000000 ,1616812414750 -1616812414775 ,112.5729935,26.88370636,64.44198608,183.3964611,183.9696026,17.353573,0.156811587,1620000000000 ,1620000000000 ,1620000000000 ,1616812414760 -1616812414787 ,112.5729934,26.8837048,64.44468689,183.4136459,183.972802,17.354307,0.156818108,1620000000000 ,1620000000000 ,1620000000000 ,1616812414770 -1616812414797 ,112.5729933,26.88370323,64.44732666,183.4326065,183.9864189,17.355352,0.156829828,1620000000000 ,1620000000000 ,1620000000000 ,1616812414780 -1616812414805 ,112.5729931,26.88370167,64.45000458,183.451731,184.0201387,17.351597,0.156804182,1620000000000 ,1620000000000 ,1620000000000 ,1616812414790 -1616812414818 ,112.572993,26.8837001,64.45275879,183.4703092,184.0433582,17.350874,0.156787498,1620000000000 ,1620000000000 ,1620000000000 ,1616812414800 -1616812414825 ,112.5729929,26.88369854,64.45554352,183.4900621,184.0469829,17.353718,0.156806637,1620000000000 ,1620000000000 ,1620000000000 ,1616812414810 -1616812414836 ,112.5729928,26.88369697,64.45823669,183.509651,184.0430472,17.358118,0.156838658,1620000000000 ,1620000000000 ,1620000000000 ,1616812414820 -1616812414846 ,112.5729927,26.88369541,64.4608078,183.5272456,184.0625702,17.364258,0.156885134,1620000000000 ,1620000000000 ,1620000000000 ,1616812414830 -1616812414857 ,112.5729926,26.88369384,64.46335602,183.5451407,184.0982293,17.36336,0.156894419,1620000000000 ,1620000000000 ,1620000000000 ,1616812414840 -1616812414867 ,112.5729925,26.88369228,64.46601868,183.5647297,184.1261358,17.360918,0.156884698,1620000000000 ,1620000000000 ,1620000000000 ,1616812414850 -1616812414876 ,112.5729924,26.88369072,64.46894073,183.5853022,184.1317843,17.35342,0.15682834,1620000000000 ,1620000000000 ,1620000000000 ,1616812414860 -1616812414886 ,112.5729923,26.88368915,64.4720993,183.6050278,184.1466439,17.347433,0.156775345,1620000000000 ,1620000000000 ,1620000000000 ,1616812414870 -1616812414900 ,112.5729921,26.88368759,64.47527313,183.6259009,184.1656553,17.345762,0.156750489,1620000000000 ,1620000000000 ,1620000000000 ,1616812414880 -1616812414907 ,112.572992,26.88368602,64.4782486,183.6491781,184.1936217,17.347809,0.156756464,1620000000000 ,1620000000000 ,1620000000000 ,1616812414890 -1616812414917 ,112.5729919,26.88368446,64.48101044,183.6696414,184.2374499,17.353918,0.156802565,1620000000000 ,1620000000000 ,1620000000000 ,1616812414900 -1616812414926 ,112.5729918,26.8836829,64.48374939,183.6880556,184.2592452,17.353962,0.156817679,1620000000000 ,1620000000000 ,1620000000000 ,1616812414910 -1616812414937 ,112.5729917,26.88368133,64.48667908,183.7057048,184.266359,17.351868,0.156813284,1620000000000 ,1620000000000 ,1620000000000 ,1616812414920 -1616812414948 ,112.5729916,26.88367977,64.48988342,183.7228076,184.2776809,17.339735,0.156729158,1620000000000 ,1620000000000 ,1620000000000 ,1616812414930 -1616812414958 ,112.5729914,26.88367821,64.49338531,183.737916,184.3084827,17.328827,0.156636664,1620000000000 ,1620000000000 ,1620000000000 ,1616812414940 -1616812414968 ,112.5729913,26.88367665,64.49705505,183.7537347,184.3392886,17.32154,0.156567706,1620000000000 ,1620000000000 ,1620000000000 ,1616812414950 -1616812414976 ,112.5729912,26.88367509,64.50072479,183.7701545,184.3663416,17.32061,0.156549197,1620000000000 ,1620000000000 ,1620000000000 ,1616812414960 -1616812414991 ,112.5729911,26.88367353,64.50427246,183.7886779,184.3891116,17.323872,0.156569238,1620000000000 ,1620000000000 ,1620000000000 ,1616812414970 -1616812415001 ,112.572991,26.88367196,64.5076828,183.8073926,184.396905,17.32475,0.156589664,1620000000000 ,1620000000000 ,1620000000000 ,1616812414980 -1616812415007 ,112.5729908,26.8836704,64.51106262,183.8242222,184.4093925,17.320963,0.156563457,1620000000000 ,1620000000000 ,1620000000000 ,1616812414990 -1616812415021 ,112.5729907,26.88366884,64.51447296,183.8439751,184.4378015,17.319448,0.156549943,1620000000000 ,1620000000000 ,1620000000000 ,1616812415000 -1616812415028 ,112.5729906,26.88366728,64.51785278,183.8647936,184.4687823,17.317368,0.156528954,1620000000000 ,1620000000000 ,1620000000000 ,1616812415010 -1616812415039 ,112.5729905,26.88366572,64.52116394,183.8847104,184.497541,17.316603,0.156526695,1620000000000 ,1620000000000 ,1620000000000 ,1616812415020 -1616812415051 ,112.5729904,26.88366416,64.52440643,183.9025235,184.5077341,17.31157,0.156487915,1620000000000 ,1620000000000 ,1620000000000 ,1616812415030 -1616812415059 ,112.5729902,26.8836626,64.527565,183.9202001,184.515488,17.308859,0.156458092,1620000000000 ,1620000000000 ,1620000000000 ,1616812415040 -1616812415069 ,112.5729901,26.88366104,64.53059387,183.9381225,184.5333973,17.307484,0.156439849,1620000000000 ,1620000000000 ,1620000000000 ,1616812415050 -1616812415080 ,112.57299,26.88365948,64.53346252,183.9570284,184.5627934,17.310257,0.156456977,1620000000000 ,1620000000000 ,1620000000000 ,1616812415060 -1616812415090 ,112.5729899,26.88365792,64.53623199,183.9764262,184.5969061,17.309801,0.156456959,1620000000000 ,1620000000000 ,1620000000000 ,1616812415070 -1616812415098 ,112.5729897,26.88365636,64.53902435,183.9942393,184.6137306,17.305977,0.156435569,1620000000000 ,1620000000000 ,1620000000000 ,1616812415080 -1616812415110 ,112.5729896,26.8836548,64.54189301,184.010823,184.6231998,17.302225,0.156404486,1620000000000 ,1620000000000 ,1620000000000 ,1616812415090 -1616812415119 ,112.5729895,26.88365325,64.54480743,184.0268603,184.639363,17.297268,0.15636273,1620000000000 ,1620000000000 ,1620000000000 ,1616812415100 -1616812415128 ,112.5729894,26.88365169,64.54769897,184.0439631,184.6725304,17.29435,0.156325636,1620000000000 ,1620000000000 ,1620000000000 ,1616812415110 -1616812415139 ,112.5729892,26.88365013,64.55059814,184.0594813,184.7115987,17.291374,0.156310493,1620000000000 ,1620000000000 ,1620000000000 ,1616812415120 -1616812415154 ,112.5729891,26.88364857,64.55358887,184.0763928,184.7327437,17.288528,0.156283858,1620000000000 ,1620000000000 ,1620000000000 ,1616812415130 -1616812415158 ,112.572989,26.88364702,64.55673218,184.0946977,184.7424936,17.284748,0.156259444,1620000000000 ,1620000000000 ,1620000000000 ,1616812415140 -1616812415170 ,112.5729888,26.88364546,64.55993652,184.1160899,184.7539815,17.282803,0.156240753,1620000000000 ,1620000000000 ,1620000000000 ,1616812415150 -1616812415180 ,112.5729887,26.8836439,64.56304169,184.1366897,184.7753927,17.283508,0.156238895,1620000000000 ,1620000000000 ,1620000000000 ,1616812415160 -1616812415189 ,112.5729886,26.88364234,64.56594849,184.1573989,184.8050069,17.284834,0.156245166,1620000000000 ,1620000000000 ,1620000000000 ,1616812415170 -1616812415199 ,112.5729884,26.88364079,64.56873322,184.1749934,184.8333883,17.28148,0.156227474,1620000000000 ,1620000000000 ,1620000000000 ,1616812415180 -1616812415209 ,112.5729883,26.88363923,64.57154846,184.1916864,184.8487143,17.27646,0.156188172,1620000000000 ,1620000000000 ,1620000000000 ,1616812415190 -1616812415220 ,112.5729882,26.88363767,64.57411194,184.2146905,185.7966499,17.28923,0.15648757,1620000000000 ,1620000000000 ,1620000000000 ,1616812415200 -1616812415229 ,112.572988,26.88363612,64.57621002,184.2335691,186.9258268,17.283266,0.157035976,1620000000000 ,1620000000000 ,1620000000000 ,1616812415210 -1616812415240 ,112.5729878,26.88363456,64.57820892,184.2538958,186.9498016,17.284595,0.157031691,1620000000000 ,1620000000000 ,1620000000000 ,1616812415220 -1616812415250 ,112.5729876,26.883633,64.5799942,184.2725012,186.9791742,17.290207,0.157070352,1620000000000 ,1620000000000 ,1620000000000 ,1616812415230 -1616812415259 ,112.5729874,26.88363144,64.58164215,184.2887297,186.9925974,17.295586,0.157116551,1620000000000 ,1620000000000 ,1620000000000 ,1616812415240 -1616812415270 ,112.5729872,26.88362988,64.58332062,184.3024174,187.0128681,17.291416,0.157107872,1620000000000 ,1620000000000 ,1620000000000 ,1616812415250 -1616812415286 ,112.572987,26.88362832,64.58519745,184.3161871,187.0319364,17.282965,0.157048902,1620000000000 ,1620000000000 ,1620000000000 ,1616812415260 -1616812415291 ,112.5729868,26.88362676,64.58724976,184.3333172,187.0521428,17.272848,0.156965893,1620000000000 ,1620000000000 ,1620000000000 ,1616812415270 -1616812415301 ,112.5729866,26.88362521,64.5894165,184.3509391,187.0713528,17.270138,0.156921136,1620000000000 ,1620000000000 ,1620000000000 ,1616812415280 -1616812415310 ,112.5729864,26.88362365,64.59152985,184.3680692,187.0776022,17.273932,0.156944335,1620000000000 ,1620000000000 ,1620000000000 ,1616812415290 -1616812415321 ,112.5729862,26.88362209,64.59345245,184.3877675,187.0889833,17.277496,0.156975035,1620000000000 ,1620000000000 ,1620000000000 ,1616812415300 -1616812415333 ,112.572986,26.88362053,64.59522247,184.4050615,187.1113795,17.280552,0.157002459,1620000000000 ,1620000000000 ,1620000000000 ,1616812415310 -1616812415341 ,112.5729858,26.88361897,64.5969696,184.4231205,187.1276904,17.275978,0.156981294,1620000000000 ,1620000000000 ,1620000000000 ,1616812415320 -1616812415350 ,112.5729856,26.88361742,64.59882355,184.4404146,187.1455127,17.270796,0.156941103,1620000000000 ,1620000000000 ,1620000000000 ,1616812415330 -1616812415361 ,112.5729855,26.88361586,64.60080719,184.4575447,187.1571485,17.266886,0.156904095,1620000000000 ,1620000000000 ,1620000000000 ,1616812415340 -1616812415372 ,112.5729853,26.8836143,64.60287476,184.4734454,187.1777168,17.264297,0.156882358,1620000000000 ,1620000000000 ,1620000000000 ,1616812415350 -1616812415381 ,112.5729851,26.88361275,64.60492706,184.4902203,187.196198,17.26343,0.156870874,1620000000000 ,1620000000000 ,1620000000000 ,1616812415360 -1616812415394 ,112.5729849,26.88361119,64.60694122,184.5062849,187.222896,17.261784,0.156864491,1620000000000 ,1620000000000 ,1620000000000 ,1616812415370 -1616812415402 ,112.5729847,26.88360964,64.60901642,184.5193989,187.2453326,17.25829,0.156845749,1620000000000 ,1620000000000 ,1620000000000 ,1616812415380 -1616812415414 ,112.5729845,26.88360808,64.6111908,184.5346712,187.2561544,17.25535,0.156819324,1620000000000 ,1620000000000 ,1620000000000 ,1616812415390 -1616812415421 ,112.5729843,26.88360652,64.61343384,184.5506265,187.2745271,17.25494,0.156813863,1620000000000 ,1620000000000 ,1620000000000 ,1616812415400 -1616812415432 ,112.5729841,26.88360497,64.61567688,184.5680298,187.2960735,17.255041,0.156815732,1620000000000 ,1620000000000 ,1620000000000 ,1616812415410 -1616812415441 ,112.5729839,26.88360341,64.61791992,184.5852692,187.31384,17.25478,0.15682895,1620000000000 ,1620000000000 ,1620000000000 ,1616812415420 -1616812415452 ,112.5729837,26.88360186,64.62020874,184.6008694,187.3312935,17.25466,0.156823678,1620000000000 ,1620000000000 ,1620000000000 ,1616812415430 -1616812415462 ,112.5729835,26.8836003,64.62252808,184.6184913,187.3406315,17.25238,0.156820338,1620000000000 ,1620000000000 ,1620000000000 ,1616812415440 -1616812415474 ,112.5729833,26.88359875,64.62516785,184.6347744,186.4219621,17.248293,0.156357613,1620000000000 ,1620000000000 ,1620000000000 ,1616812415450 -1616812415484 ,112.5729831,26.8835972,64.62805176,184.6499375,185.5092946,17.24924,0.155969292,1620000000000 ,1620000000000 ,1620000000000 ,1616812415460 -1616812415493 ,112.572983,26.88359564,64.63075256,184.6666031,185.5365361,17.252666,0.155989816,1620000000000 ,1620000000000 ,1620000000000 ,1616812415470 -1616812415504 ,112.5729828,26.88359409,64.63328552,184.6830502,185.5673191,17.256681,0.156024591,1620000000000 ,1620000000000 ,1620000000000 ,1616812415480 -1616812415515 ,112.5729827,26.88359254,64.63569641,184.6952899,185.5828425,17.257706,0.156041934,1620000000000 ,1620000000000 ,1620000000000 ,1616812415490 -1616812415523 ,112.5729825,26.88359098,64.63804626,184.7097699,185.5946471,17.256636,0.156037073,1620000000000 ,1620000000000 ,1620000000000 ,1616812415500 -1616812415534 ,112.5729824,26.88358943,64.64034271,184.7244958,185.6132058,17.256222,0.156031062,1620000000000 ,1620000000000 ,1620000000000 ,1616812415510 -1616812415544 ,112.5729822,26.88358788,64.64256287,184.7396861,185.637556,17.256824,0.156029802,1620000000000 ,1620000000000 ,1620000000000 ,1616812415520 -1616812415553 ,112.5729821,26.88358633,64.64470673,184.7546306,185.6674406,17.258562,0.156044212,1620000000000 ,1620000000000 ,1620000000000 ,1616812415530 -1616812415571 ,112.5729819,26.88358477,64.64682007,184.7700395,185.6827711,17.26053,0.156066204,1620000000000 ,1620000000000 ,1620000000000 ,1616812415540 -1616812415575 ,112.5729818,26.88358322,64.64892578,184.7828256,185.6934358,17.258814,0.156057509,1620000000000 ,1620000000000 ,1620000000000 ,1616812415560 -1616812415585 ,112.5729816,26.88358167,64.65103149,184.7974695,185.7052787,17.25725,0.156041506,1620000000000 ,1620000000000 ,1620000000000 ,1616812415570 -1616812415595 ,112.5729815,26.88358012,64.65303802,184.813097,185.7148025,17.258398,0.156041645,1620000000000 ,1620000000000 ,1620000000000 ,1616812415570 -1616812415603 ,112.5729813,26.88357856,64.65489197,184.8278776,185.7411115,17.262459,0.156068011,1620000000000 ,1620000000000 ,1620000000000 ,1616812415580 -1616812415613 ,112.5729811,26.88357701,64.65660858,184.8426581,185.7696053,17.265291,0.156093838,1620000000000 ,1620000000000 ,1620000000000 ,1616812415600 -1616812415626 ,112.572981,26.88357546,64.65829468,184.8562911,185.7949078,17.26877,0.156126415,1620000000000 ,1620000000000 ,1620000000000 ,1616812415600 -1616812415635 ,112.5729807,26.88357235,64.66194153,184.8768637,185.8088162,17.265999,0.31224575,1620000000000 ,1620000000000 ,1620000000000 ,1616812415620 -1616812415643 ,112.5729805,26.8835708,64.66384125,184.8868904,185.8330213,17.260693,0.156073554,1620000000000 ,1620000000000 ,1620000000000 ,1616812415630 -1616812415653 ,112.5729804,26.88356924,64.66566467,184.8976821,185.854008,17.26392,0.156082705,1620000000000 ,1620000000000 ,1620000000000 ,1616812415640 -1616812415665 ,112.5729802,26.88356769,64.66738892,184.9099764,185.8790609,17.266968,0.156104879,1620000000000 ,1620000000000 ,1620000000000 ,1616812415650 -1616812415676 ,112.57298,26.88356614,64.66910553,184.9228172,185.8887741,17.269482,0.156133243,1620000000000 ,1620000000000 ,1620000000000 ,1616812415660 -1616812415688 ,112.5729799,26.88356459,64.6709137,184.932516,185.8796324,17.26703,0.156122026,1620000000000 ,1620000000000 ,1620000000000 ,1616812415670 -1616812415694 ,112.5729797,26.88356303,64.67280579,184.9436902,185.8829777,17.266075,0.156107794,1620000000000 ,1620000000000 ,1620000000000 ,1616812415680 -1616812415705 ,112.5729797,26.88356303,64.67280579,184.9436902,-400,17.266075,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812415690 -1616812415715 ,112.5729794,26.88355993,64.67667389,184.96888,185.9129908,17.269602,0.312241494,1620000000000 ,1620000000000 ,1620000000000 ,1616812415700 -1616812415725 ,112.5729792,26.88355837,64.67871857,184.978333,185.9372934,17.270336,0.156147647,1620000000000 ,1620000000000 ,1620000000000 ,1616812415710 -1616812415737 ,112.5729791,26.88355682,64.68089294,184.9878952,185.9422425,17.26729,0.15613087,1620000000000 ,1620000000000 ,1620000000000 ,1616812415720 -1616812415746 ,112.5729789,26.88355527,64.68318176,184.9987416,185.9464791,17.261694,0.156084999,1620000000000 ,1620000000000 ,1620000000000 ,1616812415730 -1616812415754 ,112.5729787,26.88355372,64.68558502,185.0088502,185.9620014,17.260832,0.156070311,1620000000000 ,1620000000000 ,1620000000000 ,1616812415740 -1616812415765 ,112.5729786,26.88355216,64.68807983,185.0172924,185.9713318,17.262455,0.156080452,1620000000000 ,1620000000000 ,1620000000000 ,1616812415750 -1616812415774 ,112.5729784,26.88355061,64.69055176,185.0248056,185.9769908,17.267235,0.156111432,1620000000000 ,1620000000000 ,1620000000000 ,1616812415760 -1616812415785 ,112.5729783,26.88354906,64.69291687,185.0348869,185.9990591,17.271852,0.156158495,1620000000000 ,1620000000000 ,1620000000000 ,1616812415770 -1616812415796 ,112.5729781,26.88354751,64.69522095,185.0459245,186.0166553,17.270985,0.156161313,1620000000000 ,1620000000000 ,1620000000000 ,1616812415780 -1616812415806 ,112.5729779,26.88354595,64.69761658,185.0555141,186.0128661,17.269905,0.156149434,1620000000000 ,1620000000000 ,1620000000000 ,1616812415790 -1616812415815 ,112.5729778,26.8835444,64.70021057,185.0622077,186.0049722,17.265537,0.156123849,1620000000000 ,1620000000000 ,1620000000000 ,1616812415800 -1616812415827 ,112.5729776,26.88354285,64.70300293,185.0713601,186.011339,17.26465,0.156111487,1620000000000 ,1620000000000 ,1620000000000 ,1616812415810 -1616812415837 ,112.5729774,26.88354129,64.70587921,185.0806492,186.0273924,17.261896,0.156091164,1620000000000 ,1620000000000 ,1620000000000 ,1616812415820 -1616812415847 ,112.5729773,26.88353974,64.70874023,185.0904573,186.0415463,17.264147,0.156100783,1620000000000 ,1620000000000 ,1620000000000 ,1616812415830 -1616812415856 ,112.5729771,26.88353819,64.71160889,185.0993912,186.04878,17.267822,0.15613389,1620000000000 ,1620000000000 ,1620000000000 ,1616812415840 -1616812415865 ,112.5729769,26.88353664,64.71450806,185.107888,186.0517654,17.270203,0.156158396,1620000000000 ,1620000000000 ,1620000000000 ,1616812415850 -1616812415876 ,112.5729768,26.88353508,64.717453,185.1173136,186.0614876,17.269772,0.156162475,1620000000000 ,1620000000000 ,1620000000000 ,1616812415860 -1616812415886 ,112.5729766,26.88353353,64.72042084,185.1263022,186.0797171,17.269032,0.156156907,1620000000000 ,1620000000000 ,1620000000000 ,1616812415870 -1616812415898 ,112.5729765,26.88353198,64.72350311,185.132504,186.0923346,17.268042,0.156155671,1620000000000 ,1620000000000 ,1620000000000 ,1616812415880 -1616812415906 ,112.5729763,26.88353043,64.72675323,185.1387878,186.0992474,17.266481,0.156145803,1620000000000 ,1620000000000 ,1620000000000 ,1616812415890 -1616812415922 ,112.5729761,26.88352887,64.73008728,185.1434596,186.1059251,17.268232,0.156157367,1620000000000 ,1620000000000 ,1620000000000 ,1616812415900 -1616812415926 ,112.572976,26.88352732,64.73335266,185.1522296,186.1162213,17.267675,0.156155907,1620000000000 ,1620000000000 ,1620000000000 ,1616812415910 -1616812415938 ,112.5729758,26.88352577,64.7365036,185.1589778,186.1368868,17.267395,0.156156569,1620000000000 ,1620000000000 ,1620000000000 ,1616812415920 -1616812415947 ,112.5729756,26.88352422,64.73955536,185.1671194,186.1438108,17.269312,0.156168932,1620000000000 ,1620000000000 ,1620000000000 ,1616812415930 -1616812415956 ,112.5729755,26.88352266,64.74251556,185.1758074,186.1411104,17.271933,0.156184124,1620000000000 ,1620000000000 ,1620000000000 ,1616812415940 -1616812415968 ,112.5729753,26.88352111,64.74541473,185.1833752,186.1453828,17.273504,0.156204297,1620000000000 ,1620000000000 ,1620000000000 ,1616812415950 -1616812415977 ,112.5729751,26.88351956,64.74828339,185.1893585,186.1533755,17.272514,0.156202225,1620000000000 ,1620000000000 ,1620000000000 ,1616812415960 -1616812416003 ,112.5729749,26.883518,64.75120544,185.1936205,186.1765109,17.27038,0.156189006,1620000000000 ,1620000000000 ,1620000000000 ,1616812415970 -1616812416005 ,112.5729748,26.88351645,64.75421906,185.1973088,186.1839072,17.269691,0.156175252,1620000000000 ,1620000000000 ,1620000000000 ,1616812415980 -1616812416007 ,112.5729746,26.8835149,64.75728607,185.2038385,186.1831667,17.271873,0.156195507,1620000000000 ,1620000000000 ,1620000000000 ,1616812415990 -1616812416019 ,112.5729744,26.88351334,64.76038361,185.2079912,186.1938576,17.273872,0.156222228,1620000000000 ,1620000000000 ,1620000000000 ,1616812416000 -1616812416028 ,112.5729743,26.88351179,64.7634964,185.2143023,186.2041642,17.274158,0.156228099,1620000000000 ,1620000000000 ,1620000000000 ,1616812416010 -1616812416040 ,112.5729741,26.88351024,64.76662445,185.2191108,186.2114978,17.270952,0.156208795,1620000000000 ,1620000000000 ,1620000000000 ,1616812416020 -1616812416048 ,112.5729739,26.88350869,64.76969147,185.2274436,186.2149656,17.270947,0.156203377,1620000000000 ,1620000000000 ,1620000000000 ,1616812416030 -1616812416059 ,112.5729738,26.88350713,64.7726059,185.2354486,186.2291178,17.273394,0.156220151,1620000000000 ,1620000000000 ,1620000000000 ,1616812416040 -1616812416072 ,112.5729736,26.88350558,64.77532959,185.2439454,186.245546,17.275694,0.156234426,1620000000000 ,1620000000000 ,1620000000000 ,1616812416050 -1616812416079 ,112.5729734,26.88350403,64.77788544,185.2494641,186.2492617,17.278027,0.156254811,1620000000000 ,1620000000000 ,1620000000000 ,1616812416060 -1616812416088 ,112.5729733,26.88350247,64.78034973,185.2539994,186.253039,17.279497,0.156269439,1620000000000 ,1620000000000 ,1620000000000 ,1616812416070 -1616812416099 ,112.5729731,26.88350092,64.78274536,185.2593816,186.2633854,17.281317,0.15628158,1620000000000 ,1620000000000 ,1620000000000 ,1616812416080 -1616812416109 ,112.5729729,26.88349937,64.78504181,185.2637802,186.2705561,17.27981,0.1562758,1620000000000 ,1620000000000 ,1620000000000 ,1616812416090 -1616812416119 ,112.5729727,26.88349781,64.78736877,185.2674685,186.2760429,17.282736,0.156294184,1620000000000 ,1620000000000 ,1620000000000 ,1616812416100 -1616812416128 ,112.5729726,26.88349626,64.78977966,185.2712115,186.2759229,17.280527,0.15628884,1620000000000 ,1620000000000 ,1620000000000 ,1616812416110 -1616812416143 ,112.5729724,26.88349471,64.79221344,185.2776318,186.2772566,17.2786,0.156274612,1620000000000 ,1620000000000 ,1620000000000 ,1616812416120 -1616812416151 ,112.5729722,26.88349315,64.79454803,185.2852817,186.279933,17.276234,0.156249383,1620000000000 ,1620000000000 ,1620000000000 ,1616812416130 -1616812416159 ,112.5729721,26.8834916,64.79675293,185.2947893,186.2988134,17.278524,0.156257318,1620000000000 ,1620000000000 ,1620000000000 ,1616812416140 -1616812416171 ,112.5729719,26.88349005,64.79888916,185.3012097,186.3058027,17.281544,0.156282247,1620000000000 ,1620000000000 ,1620000000000 ,1616812416150 -1616812416178 ,112.5729717,26.88348849,64.80097961,185.3062913,186.3096473,17.282299,0.156295377,1620000000000 ,1620000000000 ,1620000000000 ,1616812416160 -1616812416188 ,112.5729715,26.88348694,64.80306244,185.3117282,186.3259667,17.280638,0.156286903,1620000000000 ,1620000000000 ,1620000000000 ,1616812416170 -1616812416199 ,112.5729714,26.88348539,64.80511475,185.3188042,186.341497,17.278463,0.156267389,1620000000000 ,1620000000000 ,1620000000000 ,1616812416180 -1616812416210 ,112.5729712,26.88348383,64.80719757,185.3262901,186.3499596,17.273716,0.156228661,1620000000000 ,1620000000000 ,1620000000000 ,1616812416190 -1616812416226 ,112.5729711,26.88348227,64.80737305,185.3169737,184.6034092,17.284838,0.15689447,1620000000000 ,1620000000000 ,1620000000000 ,1616812416200 -1616812416230 ,112.5729709,26.88348071,64.80730438,185.3238586,184.5501999,17.28473,0.156939332,1620000000000 ,1620000000000 ,1620000000000 ,1616812416210 -1616812416240 ,112.5729708,26.88347914,64.80712891,185.330798,184.5611059,17.28802,0.15695626,1620000000000 ,1620000000000 ,1620000000000 ,1616812416220 -1616812416250 ,112.5729707,26.88347758,64.80680847,185.3388577,184.5819551,17.288319,0.156964393,1620000000000 ,1620000000000 ,1620000000000 ,1616812416230 -1616812416260 ,112.5729706,26.88347601,64.80643463,185.3458518,184.5898185,17.292835,0.156996724,1620000000000 ,1620000000000 ,1620000000000 ,1616812416240 -1616812416271 ,112.5729704,26.88347445,64.80610657,185.3514252,184.5859014,17.292305,0.156997022,1620000000000 ,1620000000000 ,1620000000000 ,1616812416250 -1616812416279 ,112.5729703,26.88347288,64.80583954,185.3562337,184.5858164,17.291769,0.156997135,1620000000000 ,1620000000000 ,1620000000000 ,1616812416260 -1616812416293 ,112.5729702,26.88347132,64.80557251,185.3650583,184.6040337,17.28803,0.156967952,1620000000000 ,1620000000000 ,1620000000000 ,1616812416270 -1616812416300 ,112.5729701,26.88346975,64.805336,185.3733365,184.613717,17.283577,0.156931782,1620000000000 ,1620000000000 ,1620000000000 ,1616812416280 -1616812416311 ,112.5729699,26.88346819,64.80516815,185.3812048,184.6217195,17.283062,0.156914288,1620000000000 ,1620000000000 ,1620000000000 ,1616812416290 -1616812416320 ,112.5729698,26.88346662,64.80504608,185.3879531,184.6338528,17.28496,0.156925885,1620000000000 ,1620000000000 ,1620000000000 ,1616812416300 -1616812416331 ,112.5729697,26.88346506,64.80492401,185.3960127,184.6472958,17.287561,0.156953337,1620000000000 ,1620000000000 ,1620000000000 ,1616812416310 -1616812416340 ,112.5729696,26.8834635,64.80485535,185.4012856,184.6612115,17.28597,0.156948701,1620000000000 ,1620000000000 ,1620000000000 ,1616812416320 -1616812416350 ,112.5729694,26.88346193,64.80487823,185.4073508,184.661262,17.283413,0.156928591,1620000000000 ,1620000000000 ,1620000000000 ,1616812416330 -1616812416359 ,112.5729693,26.88346037,64.80500793,185.4126783,184.669117,17.279242,0.156901635,1620000000000 ,1620000000000 ,1620000000000 ,1616812416340 -1616812416371 ,112.5729692,26.8834588,64.80522156,185.4178966,184.6785664,17.279139,0.156887477,1620000000000 ,1620000000000 ,1620000000000 ,1616812416350 -1616812416382 ,112.5729691,26.88345724,64.80554962,185.4239072,184.6771506,17.278343,0.156893695,1620000000000 ,1620000000000 ,1620000000000 ,1616812416360 -1616812416390 ,112.5729689,26.88345568,64.8060379,185.4304095,184.6729173,17.27447,0.156869313,1620000000000 ,1620000000000 ,1620000000000 ,1616812416370 -1616812416406 ,112.5729688,26.88345411,64.80664063,185.4380047,184.6699346,17.268888,0.156827933,1620000000000 ,1620000000000 ,1620000000000 ,1616812416380 -1616812416412 ,112.5729687,26.88345255,64.80726624,185.4465561,184.6748052,17.264307,0.156787271,1620000000000 ,1620000000000 ,1620000000000 ,1616812416390 -1616812416422 ,112.5729685,26.88345099,64.80783844,185.4558451,184.6794644,17.264854,0.156775913,1620000000000 ,1620000000000 ,1620000000000 ,1616812416400 -1616812416434 ,112.5729684,26.88344943,64.80828094,185.4664183,184.6811652,17.270035,0.156812988,1620000000000 ,1620000000000 ,1620000000000 ,1616812416410 -1616812416441 ,112.5729683,26.88344786,64.80857849,185.4760898,184.6859342,17.26958,0.156819719,1620000000000 ,1620000000000 ,1620000000000 ,1616812416420 -1616812416451 ,112.5729682,26.8834463,64.808815,185.4870181,184.6937532,17.2692,0.156816106,1620000000000 ,1620000000000 ,1620000000000 ,1616812416430 -1616812416461 ,112.572968,26.88344474,64.80909729,185.4947226,184.6934346,17.263464,0.156779191,1620000000000 ,1620000000000 ,1620000000000 ,1616812416440 -1616812416471 ,112.5729679,26.88344319,64.81108093,185.5060061,186.3846396,17.260267,0.156110955,1620000000000 ,1620000000000 ,1620000000000 ,1616812416450 -1616812416482 ,112.5729677,26.88344163,64.81297302,185.5154044,186.3998812,17.259794,0.15610208,1620000000000 ,1620000000000 ,1620000000000 ,1616812416460 -1616812416493 ,112.5729675,26.88344008,64.81465912,185.5281905,186.4144936,17.263283,0.156117689,1620000000000 ,1620000000000 ,1620000000000 ,1616812416470 -1616812416506 ,112.5729673,26.88343853,64.81616974,185.5413591,186.4223221,17.264374,0.156129441,1620000000000 ,1620000000000 ,1620000000000 ,1616812416480 -1616812416516 ,112.5729672,26.88343698,64.81761169,185.5523694,186.4092993,17.261496,0.156113401,1620000000000 ,1620000000000 ,1620000000000 ,1616812416490 -1616812416526 ,112.572967,26.88343543,64.81911469,185.5638441,186.4096728,17.26013,0.156096667,1620000000000 ,1620000000000 ,1620000000000 ,1616812416500 -1616812416545 ,112.5729668,26.88343388,64.82070923,185.5777504,186.4268897,17.255587,0.15606428,1620000000000 ,1620000000000 ,1620000000000 ,1616812416510 -1616812416550 ,112.5729666,26.88343233,64.8223114,185.5903452,186.449112,17.256065,0.156057417,1620000000000 ,1620000000000 ,1620000000000 ,1616812416520 -1616812416554 ,112.5729665,26.88343078,64.8239212,185.603869,186.4689882,17.254057,0.156047328,1620000000000 ,1620000000000 ,1620000000000 ,1616812416530 -1616812416561 ,112.5729663,26.88342923,64.82553864,185.6160541,186.4660682,17.252544,0.156033557,1620000000000 ,1620000000000 ,1620000000000 ,1616812416540 -1616812416572 ,112.5729661,26.88342768,64.82720184,185.629168,186.4760573,17.253181,0.1560307,1620000000000 ,1620000000000 ,1620000000000 ,1616812416550 -1616812416582 ,112.5729659,26.88342613,64.82891083,185.6420634,186.4885899,17.251831,0.156029229,1620000000000 ,1620000000000 ,1620000000000 ,1616812416560 -1616812416594 ,112.5729658,26.88342458,64.83063507,185.6565981,186.5094963,17.247206,0.15599558,1620000000000 ,1620000000000 ,1620000000000 ,1616812416570 -1616812416602 ,112.5729656,26.88342303,64.83241272,185.6692476,186.5297158,17.241253,0.155948909,1620000000000 ,1620000000000 ,1620000000000 ,1616812416580 -1616812416612 ,112.5729654,26.88342148,64.83420563,185.6850936,186.5389281,17.238821,0.15591135,1620000000000 ,1620000000000 ,1620000000000 ,1616812416590 -1616812416623 ,112.5729652,26.88341993,64.83588409,185.7029067,186.5483451,17.243391,0.155930805,1620000000000 ,1620000000000 ,1620000000000 ,1616812416600 -1616812416633 ,112.572965,26.88341838,64.83733368,185.720392,186.5484186,17.24912,0.155975555,1620000000000 ,1620000000000 ,1620000000000 ,1616812416610 -1616812416644 ,112.5729649,26.88341683,64.83862305,185.7330142,186.566751,17.24773,0.155976667,1620000000000 ,1620000000000 ,1620000000000 ,1616812416630 -1616812416656 ,112.5729647,26.88341528,64.83998108,185.7459096,186.586427,17.244463,0.15595031,1620000000000 ,1620000000000 ,1620000000000 ,1616812416630 -1616812416670 ,112.5729645,26.88341373,64.84149933,185.7609087,186.6169272,17.240421,0.155916981,1620000000000 ,1620000000000 ,1620000000000 ,1616812416650 -1616812416676 ,112.5729643,26.88341218,64.84313965,185.7751701,186.6326607,17.23906,0.155901735,1620000000000 ,1620000000000 ,1620000000000 ,1616812416660 -1616812416685 ,112.572964,26.88340909,64.8465271,185.7962618,186.6631658,17.237242,0.311754862,1620000000000 ,1620000000000 ,1620000000000 ,1616812416670 -1616812416699 ,112.5729638,26.88340754,64.84825897,185.808802,186.7016497,17.236128,0.155878571,1620000000000 ,1620000000000 ,1620000000000 ,1616812416680 -1616812416706 ,112.5729638,26.88340754,64.84825897,185.808802,-400,17.236128,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812416690 -1616812416714 ,112.5729634,26.88340444,64.85188293,185.8331448,186.736933,17.231962,0.311731254,1620000000000 ,1620000000000 ,1620000000000 ,1616812416700 -1616812416724 ,112.5729632,26.88340289,64.85389709,185.8441551,186.7622582,17.227295,0.155810675,1620000000000 ,1620000000000 ,1620000000000 ,1616812416710 -1616812416735 ,112.572963,26.88340135,64.85606384,185.8518868,186.7831463,17.225454,0.155789634,1620000000000 ,1620000000000 ,1620000000000 ,1616812416720 -1616812416745 ,112.5729629,26.8833998,64.858284,185.8622687,186.8090604,17.225616,0.155788955,1620000000000 ,1620000000000 ,1620000000000 ,1616812416730 -1616812416754 ,112.5729627,26.88339825,64.8605423,185.8703283,186.8369806,17.22507,0.155791454,1620000000000 ,1620000000000 ,1620000000000 ,1616812416740 -1616812416764 ,112.5729625,26.88339671,64.86291504,185.8754646,186.8511003,17.220137,0.155761555,1620000000000 ,1620000000000 ,1620000000000 ,1616812416750 -1616812416774 ,112.5729623,26.88339516,64.86549377,185.8808468,186.8601472,17.216751,0.155731907,1620000000000 ,1620000000000 ,1620000000000 ,1616812416760 -1616812416785 ,112.5729621,26.88339362,64.86823273,185.8877317,186.8717039,17.213253,0.155703373,1620000000000 ,1620000000000 ,1620000000000 ,1616812416770 -1616812416794 ,112.5729619,26.88339207,64.87101746,185.8943979,186.8909626,17.213095,0.155699274,1620000000000 ,1620000000000 ,1620000000000 ,1616812416780 -1616812416805 ,112.5729617,26.88339052,64.87380219,185.8978677,186.9189414,17.210756,0.155689798,1620000000000 ,1620000000000 ,1620000000000 ,1616812416790 -1616812416815 ,112.5729616,26.88338898,64.87664032,185.9021024,186.9464262,17.207863,0.155669136,1620000000000 ,1620000000000 ,1620000000000 ,1616812416800 -1616812416829 ,112.5729614,26.88338743,64.87953949,185.9059273,186.9595311,17.206982,0.15566309,1620000000000 ,1620000000000 ,1620000000000 ,1616812416810 -1616812416836 ,112.5729612,26.88338589,64.88239288,185.9107084,186.9701729,17.205034,0.155644495,1620000000000 ,1620000000000 ,1620000000000 ,1616812416820 -1616812416845 ,112.572961,26.88338434,64.88516235,185.9138776,186.9876242,17.203934,0.155642564,1620000000000 ,1620000000000 ,1620000000000 ,1616812416830 -1616812416855 ,112.5729608,26.8833828,64.88786316,185.9150797,187.0103887,17.200409,0.155614896,1620000000000 ,1620000000000 ,1620000000000 ,1616812416840 -1616812416865 ,112.5729606,26.88338126,64.89056396,185.9162545,187.0266395,17.196346,0.155583333,1620000000000 ,1620000000000 ,1620000000000 ,1616812416850 -1616812416875 ,112.5729604,26.88337971,64.89325714,185.9176479,187.0294859,17.195417,0.155567122,1620000000000 ,1620000000000 ,1620000000000 ,1616812416860 -1616812416885 ,112.5729602,26.88337817,64.89591217,185.9191505,187.0293861,17.192816,0.155552006,1620000000000 ,1620000000000 ,1620000000000 ,1616812416870 -1616812416896 ,112.57296,26.88337662,64.89849854,185.9174293,187.0252547,17.190725,0.155532399,1620000000000 ,1620000000000 ,1620000000000 ,1616812416880 -1616812416906 ,112.5729598,26.88337508,64.90102386,185.9142601,187.0198428,17.186594,0.15549903,1620000000000 ,1620000000000 ,1620000000000 ,1616812416890 -1616812416916 ,112.5729597,26.88337354,64.90345001,185.9135498,187.0178342,17.186176,0.155484819,1620000000000 ,1620000000000 ,1620000000000 ,1616812416900 -1616812416925 ,112.5729595,26.88337199,64.9057312,185.9158994,187.0232437,17.187147,0.155486381,1620000000000 ,1620000000000 ,1620000000000 ,1616812416910 -1616812416938 ,112.5729593,26.88337045,64.90786743,185.917484,187.0235355,17.186867,0.155486893,1620000000000 ,1620000000000 ,1620000000000 ,1616812416920 -1616812416950 ,112.5729591,26.88336891,64.90991974,185.9178118,187.0131839,17.18384,0.155464366,1620000000000 ,1620000000000 ,1620000000000 ,1616812416930 -1616812416957 ,112.5729589,26.88336737,64.91194916,185.9173747,187.0016709,17.18233,0.15543997,1620000000000 ,1620000000000 ,1620000000000 ,1616812416940 -1616812416966 ,112.5729587,26.88336582,64.91389465,185.9155442,186.9961421,17.180618,0.155423101,1620000000000 ,1620000000000 ,1620000000000 ,1616812416950 -1616812416975 ,112.5729585,26.88336428,64.91564941,185.9167736,187.000868,17.181553,0.155421262,1620000000000 ,1620000000000 ,1620000000000 ,1616812416960 -1616812416988 ,112.5729583,26.88336274,64.91719818,185.9176206,187.0119466,17.181479,0.155420327,1620000000000 ,1620000000000 ,1620000000000 ,1616812416970 -1616812417004 ,112.5729581,26.8833612,64.91864014,185.9171561,187.0085653,17.17917,0.155397233,1620000000000 ,1620000000000 ,1620000000000 ,1616812416980 -1616812417008 ,112.572958,26.88335965,64.92006683,185.9164458,186.980712,17.175074,0.155358347,1620000000000 ,1620000000000 ,1620000000000 ,1616812416990 -1616812417022 ,112.5729578,26.88335811,64.92144775,185.9157081,186.9664569,17.175243,0.15534742,1620000000000 ,1620000000000 ,1620000000000 ,1616812417000 -1616812417027 ,112.5729576,26.88335657,64.92276764,185.9177299,186.9680546,17.176973,0.155355012,1620000000000 ,1620000000000 ,1620000000000 ,1616812417010 -1616812417036 ,112.5729574,26.88335503,64.92401886,185.9204619,186.9686702,17.178663,0.155369338,1620000000000 ,1620000000000 ,1620000000000 ,1616812417020 -1616812417051 ,112.5729572,26.88335348,64.92532349,185.9213089,186.9580821,17.17854,0.15536981,1620000000000 ,1620000000000 ,1620000000000 ,1616812417030 -1616812417057 ,112.572957,26.88335194,64.92671967,185.9229208,186.9451404,17.17858,0.155369913,1620000000000 ,1620000000000 ,1620000000000 ,1616812417040 -1616812417067 ,112.5729568,26.8833504,64.92819977,185.9252977,186.9403615,17.179434,0.155375066,1620000000000 ,1620000000000 ,1620000000000 ,1616812417050 -1616812417076 ,112.5729566,26.88334886,64.92974091,185.9266091,186.941699,17.180468,0.155387346,1620000000000 ,1620000000000 ,1620000000000 ,1616812417060 -1616812417088 ,112.5729564,26.88334732,64.93139648,185.9272648,186.9462742,17.175982,0.155360258,1620000000000 ,1620000000000 ,1620000000000 ,1616812417070 -1616812417098 ,112.5729563,26.88334577,64.93315887,185.9295051,186.9439378,17.172075,0.155331558,1620000000000 ,1620000000000 ,1620000000000 ,1616812417080 -1616812417109 ,112.5729561,26.88334423,64.93495941,185.9346687,186.9342127,17.172462,0.155315644,1620000000000 ,1620000000000 ,1620000000000 ,1616812417090 -1616812417120 ,112.5729559,26.88334269,64.93666077,185.9424825,186.931927,17.17963,0.155360965,1620000000000 ,1620000000000 ,1620000000000 ,1616812417100 -1616812417132 ,112.5729557,26.88334115,64.93820953,185.9451326,186.9339042,17.183533,0.155406344,1620000000000 ,1620000000000 ,1620000000000 ,1616812417110 -1616812417141 ,112.5729555,26.8833396,64.93971252,185.9444496,186.9274906,17.18433,0.1554183,1620000000000 ,1620000000000 ,1620000000000 ,1616812417120 -1616812417150 ,112.5729553,26.88333806,64.94130707,185.9445042,186.9181175,17.18234,0.155400532,1620000000000 ,1620000000000 ,1620000000000 ,1616812417130 -1616812417159 ,112.5729551,26.88333652,64.94304657,185.9466079,186.9291573,17.178972,0.155378733,1620000000000 ,1620000000000 ,1620000000000 ,1616812417140 -1616812417171 ,112.5729549,26.88333498,64.94493103,185.9494219,186.9282753,17.178686,0.155371532,1620000000000 ,1620000000000 ,1620000000000 ,1616812417150 -1616812417180 ,112.5729548,26.88333343,64.94693756,185.9505421,186.9196323,17.180204,0.155383428,1620000000000 ,1620000000000 ,1620000000000 ,1616812417160 -1616812417190 ,112.5729546,26.88333189,64.94902802,185.9504601,186.9195651,17.180647,0.155393069,1620000000000 ,1620000000000 ,1620000000000 ,1616812417170 -1616812417200 ,112.5729544,26.88333035,64.9511261,185.9525092,186.9208317,17.180647,0.155394569,1620000000000 ,1620000000000 ,1620000000000 ,1616812417180 -1616812417211 ,112.5729542,26.88332881,64.95317841,185.9536293,186.9362441,17.179222,0.155389924,1620000000000 ,1620000000000 ,1620000000000 ,1616812417190 -1616812417222 ,112.572954,26.88332725,64.95381165,185.9389581,186.0000422,17.23701,0.156396392,1620000000000 ,1620000000000 ,1620000000000 ,1616812417200 -1616812417230 ,112.5729539,26.88332568,64.95294189,185.9400509,185.0927714,17.23846,0.157997998,1620000000000 ,1620000000000 ,1620000000000 ,1616812417210 -1616812417239 ,112.5729538,26.8833241,64.95210266,185.939204,185.0819812,17.238085,0.157995249,1620000000000 ,1620000000000 ,1620000000000 ,1616812417220 -1616812417252 ,112.5729536,26.88332253,64.95122528,185.9422912,185.0728655,17.240576,0.158018217,1620000000000 ,1620000000000 ,1620000000000 ,1616812417230 -1616812417262 ,112.5729535,26.88332096,64.95029449,185.9421,185.0751339,17.24,0.158010584,1620000000000 ,1620000000000 ,1620000000000 ,1616812417240 -1616812417271 ,112.5729533,26.88331938,64.94942474,185.9399143,185.0768254,17.238771,0.158006768,1620000000000 ,1620000000000 ,1620000000000 ,1616812417250 -1616812417281 ,112.5729532,26.88331781,64.94870758,185.9387122,185.0800981,17.235834,0.157987798,1620000000000 ,1620000000000 ,1620000000000 ,1616812417260 -1616812417293 ,112.5729531,26.88331623,64.94810486,185.9385483,185.0829949,17.238123,0.157994923,1620000000000 ,1620000000000 ,1620000000000 ,1616812417270 -1616812417304 ,112.5729529,26.88331466,64.94754791,185.9401056,185.0737869,17.24058,0.158026796,1620000000000 ,1620000000000 ,1620000000000 ,1616812417280 -1616812417313 ,112.5729528,26.88331309,64.94697571,185.9398597,185.0672265,17.23963,0.158021191,1620000000000 ,1620000000000 ,1620000000000 ,1616812417290 -1616812417322 ,112.5729526,26.88331151,64.94642639,185.9371549,185.068106,17.237131,0.158003912,1620000000000 ,1620000000000 ,1620000000000 ,1616812417300 -1616812417333 ,112.5729525,26.88330994,64.94586182,185.9374008,185.0768455,17.236576,0.157996397,1620000000000 ,1620000000000 ,1620000000000 ,1616812417310 -1616812417341 ,112.5729524,26.88330836,64.94527435,185.9401602,185.081914,17.237104,0.157993787,1620000000000 ,1620000000000 ,1620000000000 ,1616812417320 -1616812417351 ,112.5729522,26.88330679,64.94464111,185.9430562,185.0908577,17.240509,0.158014107,1620000000000 ,1620000000000 ,1620000000000 ,1616812417330 -1616812417361 ,112.5729521,26.88330522,64.94403076,185.943466,185.0899928,17.244076,0.15804891,1620000000000 ,1620000000000 ,1620000000000 ,1616812417340 -1616812417372 ,112.5729519,26.88330364,64.94348907,185.9440944,185.08113,17.245678,0.158070745,1620000000000 ,1620000000000 ,1620000000000 ,1616812417350 -1616812417382 ,112.5729518,26.88330207,64.94295502,185.9446135,185.0749777,17.24591,0.15807804,1620000000000 ,1620000000000 ,1620000000000 ,1616812417360 -1616812417396 ,112.5729517,26.88330049,64.94238281,185.9446954,185.0834009,17.24312,0.158058519,1620000000000 ,1620000000000 ,1620000000000 ,1616812417370 -1616812417411 ,112.5729515,26.88329892,64.9417572,185.9452419,185.0968601,17.242067,0.158040793,1620000000000 ,1620000000000 ,1620000000000 ,1616812417380 -1616812417415 ,112.5729514,26.88329734,64.9411087,185.9445042,185.0985387,17.242651,0.158045392,1620000000000 ,1620000000000 ,1620000000000 ,1616812417390 -1616812417424 ,112.5729512,26.88329577,64.94049072,185.9434933,185.0816078,17.24556,0.158068902,1620000000000 ,1620000000000 ,1620000000000 ,1616812417400 -1616812417434 ,112.5729511,26.8832942,64.93987274,185.9422639,185.0783484,17.246527,0.158080986,1620000000000 ,1620000000000 ,1620000000000 ,1616812417410 -1616812417442 ,112.572951,26.88329262,64.93917084,185.941936,185.0806862,17.248358,0.158093265,1620000000000 ,1620000000000 ,1620000000000 ,1616812417420 -1616812417452 ,112.5729508,26.88329105,64.93834686,185.941936,185.0900895,17.251654,0.158119162,1620000000000 ,1620000000000 ,1620000000000 ,1616812417430 -1616812417462 ,112.5729507,26.88328947,64.93754578,185.9438212,185.1038127,17.250662,0.158121966,1620000000000 ,1620000000000 ,1620000000000 ,1616812417440 -1616812417474 ,112.5729505,26.88328791,64.93824005,185.9433294,186.0340392,17.25232,0.157073968,1620000000000 ,1620000000000 ,1620000000000 ,1616812417450 -1616812417482 ,112.5729503,26.88328636,64.94050598,185.9409525,186.9652332,17.24809,0.156036037,1620000000000 ,1620000000000 ,1620000000000 ,1616812417460 -1616812417492 ,112.5729501,26.88328481,64.94289398,185.9401875,186.972799,17.243223,0.155998122,1620000000000 ,1620000000000 ,1620000000000 ,1616812417470 -1616812417503 ,112.5729499,26.88328326,64.94532776,185.9380292,186.9917271,17.23985,0.155966524,1620000000000 ,1620000000000 ,1620000000000 ,1616812417480 -1616812417513 ,112.5729498,26.88328172,64.94767761,185.9352425,186.9896595,17.241976,0.155971255,1620000000000 ,1620000000000 ,1620000000000 ,1616812417490 -1616812417524 ,112.5729496,26.88328017,64.94984436,185.9350512,186.9891333,17.248755,0.156024878,1620000000000 ,1620000000000 ,1620000000000 ,1616812417500 -1616812417534 ,112.5729494,26.88327862,64.95174408,185.9356523,186.9860898,17.256851,0.156084463,1620000000000 ,1620000000000 ,1620000000000 ,1616812417510 -1616812417543 ,112.5729492,26.88327707,64.95342255,185.9339311,186.9776512,17.262875,0.1561449,1620000000000 ,1620000000000 ,1620000000000 ,1616812417530 -1616812417553 ,112.572949,26.88327552,64.95500946,185.9300242,186.955767,17.259447,0.156129749,1620000000000 ,1620000000000 ,1620000000000 ,1616812417540 -1616812417563 ,112.5729488,26.88327397,64.95666504,185.9282757,186.9561766,17.25252,0.15607992,1620000000000 ,1620000000000 ,1620000000000 ,1616812417550 -1616812417573 ,112.5729486,26.88327242,64.95838928,185.9277839,186.9569025,17.246183,0.156016046,1620000000000 ,1620000000000 ,1620000000000 ,1616812417560 -1616812417584 ,112.5729484,26.88327087,64.96003723,185.9258988,186.9504414,17.245687,0.156000394,1620000000000 ,1620000000000 ,1620000000000 ,1616812417570 -1616812417594 ,112.5729482,26.88326932,64.96152496,185.9257075,186.939807,17.25346,0.156044576,1620000000000 ,1620000000000 ,1620000000000 ,1616812417580 -1616812417604 ,112.572948,26.88326777,64.96277618,185.9273468,186.9374233,17.262346,0.156108836,1620000000000 ,1620000000000 ,1620000000000 ,1616812417580 -1616812417614 ,112.5729477,26.88326467,64.96491241,185.9263359,186.9323211,17.26617,0.312338787,1620000000000 ,1620000000000 ,1620000000000 ,1616812417600 -1616812417625 ,112.5729475,26.88326312,64.96607971,185.9273741,186.941968,17.262777,0.156138434,1620000000000 ,1620000000000 ,1620000000000 ,1616812417610 -1616812417636 ,112.5729473,26.88326157,64.96733093,185.9288767,186.9442761,17.261974,0.156129365,1620000000000 ,1620000000000 ,1620000000000 ,1616812417620 -1616812417645 ,112.5729471,26.88326002,64.96856689,185.930516,186.9358302,17.265413,0.156146484,1620000000000 ,1620000000000 ,1620000000000 ,1616812417630 -1616812417655 ,112.5729469,26.88325847,64.96975708,185.9296417,186.9431268,17.267803,0.15617247,1620000000000 ,1620000000000 ,1620000000000 ,1616812417640 -1616812417665 ,112.5729467,26.88325692,64.97093964,185.9279478,186.9442985,17.265928,0.156160164,1620000000000 ,1620000000000 ,1620000000000 ,1616812417650 -1616812417673 ,112.5729465,26.88325537,64.97212219,185.9264725,186.9381144,17.266396,0.156157996,1620000000000 ,1620000000000 ,1620000000000 ,1616812417660 -1616812417684 ,112.5729464,26.88325382,64.97328186,185.9271828,186.9377004,17.268913,0.156175587,1620000000000 ,1620000000000 ,1620000000000 ,1616812417670 -1616812417696 ,112.5729462,26.88325227,64.97438049,185.9298056,186.9384556,17.274357,0.156212771,1620000000000 ,1620000000000 ,1620000000000 ,1616812417680 -1616812417705 ,112.572946,26.88325072,64.97543335,185.9322372,186.9385968,17.279127,0.156258626,1620000000000 ,1620000000000 ,1620000000000 ,1616812417690 -1616812417714 ,112.5729458,26.88324917,64.97657776,185.9296963,186.9328387,17.278471,0.156267521,1620000000000 ,1620000000000 ,1620000000000 ,1616812417700 -1616812417734 ,112.5729456,26.88324762,64.97792816,185.926008,186.9411852,17.2744,0.156243138,1620000000000 ,1620000000000 ,1620000000000 ,1616812417710 -1616812417736 ,112.5729454,26.88324607,64.97940826,185.9239317,186.9472088,17.272697,0.156220803,1620000000000 ,1620000000000 ,1620000000000 ,1616812417720 -1616812417747 ,112.5729452,26.88324452,64.98097992,185.9219919,186.9511388,17.270617,0.156207359,1620000000000 ,1620000000000 ,1620000000000 ,1616812417730 -1616812417756 ,112.572945,26.88324297,64.98270416,185.9179484,186.9429659,17.269125,0.156198537,1620000000000 ,1620000000000 ,1620000000000 ,1616812417740 -1616812417765 ,112.5729448,26.88324141,64.98460388,185.91885,186.9280606,17.269243,0.156200079,1620000000000 ,1620000000000 ,1620000000000 ,1616812417750 -1616812417776 ,112.5729447,26.88323986,64.98655701,185.919533,186.9137039,17.273178,0.156224162,1620000000000 ,1620000000000 ,1620000000000 ,1616812417760 -1616812417787 ,112.5729445,26.88323831,64.98849487,185.9198336,186.9125304,17.274916,0.156250012,1620000000000 ,1620000000000 ,1620000000000 ,1616812417770 -1616812417797 ,112.5729443,26.88323676,64.99043274,185.9210083,186.911559,17.273376,0.156241044,1620000000000 ,1620000000000 ,1620000000000 ,1616812417780 -1616812417805 ,112.5729441,26.88323521,64.99246979,185.9226749,186.9085869,17.270557,0.156222338,1620000000000 ,1620000000000 ,1620000000000 ,1616812417790 -1616812417815 ,112.5729439,26.88323366,64.99452972,185.9237404,186.9049625,17.270466,0.156213516,1620000000000 ,1620000000000 ,1620000000000 ,1616812417800 -1616812417825 ,112.5729437,26.88323211,64.99651337,185.926172,186.9026795,17.272747,0.156230687,1620000000000 ,1620000000000 ,1620000000000 ,1616812417810 -1616812417837 ,112.5729435,26.88323056,64.99835205,185.9302974,186.9109537,17.275663,0.156254403,1620000000000 ,1620000000000 ,1620000000000 ,1616812417820 -1616812417845 ,112.5729433,26.88322901,65.0001297,185.9331114,186.910186,17.279835,0.156281492,1620000000000 ,1620000000000 ,1620000000000 ,1616812417830 -1616812417855 ,112.5729431,26.88322745,65.00196075,185.9349146,186.8984095,17.278978,0.156294648,1620000000000 ,1620000000000 ,1620000000000 ,1616812417840 -1616812417865 ,112.572943,26.8832259,65.00389862,185.9357889,186.8973312,17.278973,0.156299392,1620000000000 ,1620000000000 ,1620000000000 ,1616812417850 -1616812417875 ,112.5729428,26.88322435,65.00585938,185.9388761,186.9044288,17.27505,0.156266161,1620000000000 ,1620000000000 ,1620000000000 ,1616812417860 -1616812417886 ,112.5729426,26.8832228,65.00775909,185.9452145,186.9095408,17.275444,0.156263199,1620000000000 ,1620000000000 ,1620000000000 ,1616812417870 -1616812417901 ,112.5729424,26.88322125,65.009552,185.9541484,186.9005677,17.278166,0.156279452,1620000000000 ,1620000000000 ,1620000000000 ,1616812417880 -1616812417906 ,112.5729422,26.8832197,65.0112381,185.9613611,186.8889944,17.281229,0.156305016,1620000000000 ,1620000000000 ,1620000000000 ,1616812417890 -1616812417916 ,112.572942,26.88321815,65.01290131,185.9679454,186.8851191,17.281818,0.156311544,1620000000000 ,1620000000000 ,1620000000000 ,1616812417900 -1616812417925 ,112.5729418,26.88321659,65.01461792,185.9740653,186.8848638,17.284538,0.156330294,1620000000000 ,1620000000000 ,1620000000000 ,1616812417910 -1616812417936 ,112.5729416,26.88321504,65.01646423,185.9813599,186.8991842,17.285917,0.156358172,1620000000000 ,1620000000000 ,1620000000000 ,1616812417920 -1616812417946 ,112.5729415,26.88321349,65.01837921,185.9925614,186.9015474,17.28319,0.156345824,1620000000000 ,1620000000000 ,1620000000000 ,1616812417930 -1616812417957 ,112.5729413,26.88321194,65.02031708,186.0023969,186.8968239,17.27907,0.156316986,1620000000000 ,1620000000000 ,1620000000000 ,1616812417940 -1616812417967 ,112.5729411,26.88321039,65.02220917,186.0111395,186.889815,17.278444,0.156294486,1620000000000 ,1620000000000 ,1620000000000 ,1616812417950 -1616812417978 ,112.5729409,26.88320883,65.02397156,186.0232426,186.8901643,17.284288,0.156331377,1620000000000 ,1620000000000 ,1620000000000 ,1616812417960 -1616812417986 ,112.5729407,26.88320728,65.02555084,186.0345261,186.9125386,17.293427,0.15641355,1620000000000 ,1620000000000 ,1620000000000 ,1616812417970 -1616812417997 ,112.5729405,26.88320573,65.02703857,186.0455364,186.9369575,17.294891,0.15644179,1620000000000 ,1620000000000 ,1620000000000 ,1616812417980 -1616812418011 ,112.5729403,26.88320417,65.02861786,186.0590875,186.9306486,17.293043,0.156439434,1620000000000 ,1620000000000 ,1620000000000 ,1616812417990 -1616812418019 ,112.5729401,26.88320262,65.03024292,186.0735128,186.9305519,17.28995,0.156419654,1620000000000 ,1620000000000 ,1620000000000 ,1616812418000 -1616812418031 ,112.57294,26.88320107,65.03175354,186.0899053,186.9432047,17.288797,0.156404288,1620000000000 ,1620000000000 ,1620000000000 ,1616812418010 -1616812418044 ,112.5729398,26.88319952,65.03310394,186.1026914,186.9614872,17.290194,0.156404887,1620000000000 ,1620000000000 ,1620000000000 ,1616812418020 -1616812418048 ,112.5729396,26.88319796,65.03446198,186.1149038,186.9724502,17.290773,0.156417081,1620000000000 ,1620000000000 ,1620000000000 ,1616812418030 -1616812418058 ,112.5729394,26.88319641,65.03595734,186.1247665,186.9895705,17.28806,0.156412582,1620000000000 ,1620000000000 ,1620000000000 ,1616812418040 -1616812418068 ,112.5729392,26.88319486,65.0375824,186.1366238,186.9966878,17.28562,0.156396322,1620000000000 ,1620000000000 ,1620000000000 ,1616812418050 -1616812418077 ,112.572939,26.88319331,65.03917694,186.151295,187.0116786,17.28673,0.156395176,1620000000000 ,1620000000000 ,1620000000000 ,1616812418060 -1616812418087 ,112.5729388,26.88319175,65.04051208,186.1683158,187.0058724,17.297863,0.156484097,1620000000000 ,1620000000000 ,1620000000000 ,1616812418070 -1616812418098 ,112.5729386,26.8831902,65.0414505,186.1867027,187.0302858,17.306871,0.156536575,1620000000000 ,1620000000000 ,1620000000000 ,1616812418080 -1616812418108 ,112.5729384,26.88318865,65.04219055,186.2021116,187.0497638,17.30731,0.156581053,1620000000000 ,1620000000000 ,1620000000000 ,1616812418090 -1616812418118 ,112.5729382,26.88318709,65.04299927,186.2186953,187.0415,17.299915,0.156537918,1620000000000 ,1620000000000 ,1620000000000 ,1616812418100 -1616812418127 ,112.572938,26.88318554,65.04400635,186.2371368,187.0451106,17.288864,0.156457877,1620000000000 ,1620000000000 ,1620000000000 ,1616812418110 -1616812418139 ,112.5729379,26.88318399,65.04494476,186.2574361,187.0506184,17.284628,0.156391831,1620000000000 ,1620000000000 ,1620000000000 ,1616812418120 -1616812418147 ,112.5729377,26.88318244,65.04555511,186.275058,187.0767342,17.28774,0.15639289,1620000000000 ,1620000000000 ,1620000000000 ,1616812418130 -1616812418160 ,112.5729375,26.88318088,65.04560089,186.2935269,187.0938758,17.302607,0.156480901,1620000000000 ,1620000000000 ,1620000000000 ,1616812418140 -1616812418173 ,112.5729373,26.88317933,65.04508209,186.3119684,187.1200603,17.322283,0.156630189,1620000000000 ,1620000000000 ,1620000000000 ,1616812418150 -1616812418179 ,112.5729371,26.88317777,65.04425049,186.3278144,187.1494448,17.330084,0.15672251,1620000000000 ,1620000000000 ,1620000000000 ,1616812418160 -1616812418189 ,112.5729369,26.88317622,65.04350281,186.3428681,187.1674162,17.321949,0.15669866,1620000000000 ,1620000000000 ,1620000000000 ,1616812418170 -1616812418199 ,112.5729367,26.88317467,65.04317474,186.3606813,187.1724231,17.304457,0.156570347,1620000000000 ,1620000000000 ,1620000000000 ,1616812418180 -1616812418210 ,112.5729365,26.88317311,65.04322815,186.3784671,187.187756,17.296646,0.156477883,1620000000000 ,1620000000000 ,1620000000000 ,1616812418190 -1616812418223 ,112.5729363,26.88317156,65.04329681,186.3987391,187.2187094,17.30012,0.156486784,1620000000000 ,1620000000000 ,1620000000000 ,1616812418200 -1616812418237 ,112.5729361,26.88317003,65.03960419,186.4248851,187.9644984,17.260601,0.154643859,1620000000000 ,1620000000000 ,1620000000000 ,1616812418210 -1616812418239 ,112.5729359,26.8831685,65.03542328,186.4458674,188.058286,17.272055,0.154514283,1620000000000 ,1620000000000 ,1620000000000 ,1616812418220 -1616812418252 ,112.5729356,26.88316697,65.03096008,186.4620413,188.0967826,17.279306,0.154583841,1620000000000 ,1620000000000 ,1620000000000 ,1616812418230 -1616812418259 ,112.5729354,26.88316544,65.02650452,186.4753738,188.1247574,17.280207,0.154610055,1620000000000 ,1620000000000 ,1620000000000 ,1616812418240 -1616812418272 ,112.5729352,26.88316391,65.02227783,186.4921761,188.1424173,17.277702,0.154601029,1620000000000 ,1620000000000 ,1620000000000 ,1616812418250 -1616812418280 ,112.572935,26.88316238,65.01828003,186.5093062,188.1812851,17.270094,0.154550208,1620000000000 ,1620000000000 ,1620000000000 ,1616812418260 -1616812418289 ,112.5729348,26.88316085,65.01449585,186.5240867,188.2120704,17.266111,0.154514446,1620000000000 ,1620000000000 ,1620000000000 ,1616812418270 -1616812418300 ,112.5729345,26.88315932,65.01086426,186.5383208,188.2366392,17.266376,0.154510106,1620000000000 ,1620000000000 ,1620000000000 ,1616812418280 -1616812418310 ,112.5729343,26.88315779,65.00726318,186.5544128,188.2455731,17.269102,0.154532646,1620000000000 ,1620000000000 ,1620000000000 ,1616812418290 -1616812418324 ,112.5729341,26.88315626,65.00363922,186.5702588,188.2774349,17.274809,0.154579123,1620000000000 ,1620000000000 ,1620000000000 ,1616812418300 -1616812418338 ,112.5729339,26.88315473,65.00005341,186.584329,188.3235306,17.275368,0.154606547,1620000000000 ,1620000000000 ,1620000000000 ,1616812418310 -1616812418340 ,112.5729337,26.8831532,64.99664307,186.5964594,188.3472487,17.275333,0.154613693,1620000000000 ,1620000000000 ,1620000000000 ,1616812418320 -1616812418350 ,112.5729334,26.88315167,64.99339294,186.6094641,188.3659186,17.276073,0.154625756,1620000000000 ,1620000000000 ,1620000000000 ,1616812418330 -1616812418360 ,112.5729332,26.88315014,64.99023438,186.6224415,188.3771262,17.274408,0.154612586,1620000000000 ,1620000000000 ,1620000000000 ,1616812418340 -1616812418371 ,112.572933,26.88314861,64.98712921,186.637905,188.3865356,17.271355,0.154595558,1620000000000 ,1620000000000 ,1620000000000 ,1616812418350 -1616812418381 ,112.5729328,26.88314708,64.98416901,186.6528221,188.4062054,17.268099,0.154569617,1620000000000 ,1620000000000 ,1620000000000 ,1616812418360 -1616812418390 ,112.5729325,26.88314555,64.98139954,186.6685042,188.4171983,17.26899,0.154577809,1620000000000 ,1620000000000 ,1620000000000 ,1616812418370 -1616812418400 ,112.5729323,26.88314402,64.97872162,186.6854431,188.4276602,17.269035,0.154579298,1620000000000 ,1620000000000 ,1620000000000 ,1616812418380 -1616812418411 ,112.5729321,26.8831425,64.97608185,186.7014531,188.4518426,17.27137,0.154598976,1620000000000 ,1620000000000 ,1620000000000 ,1616812418390 -1616812418420 ,112.5729318,26.88314097,64.97344208,186.7141299,188.4750517,17.27564,0.15464524,1620000000000 ,1620000000000 ,1620000000000 ,1616812418400 -1616812418433 ,112.5729316,26.88313944,64.9708786,186.7249489,188.4825934,17.275215,0.154653338,1620000000000 ,1620000000000 ,1620000000000 ,1616812418410 -1616812418443 ,112.5729314,26.88313791,64.96843719,186.7381449,188.5019648,17.27443,0.154651228,1620000000000 ,1620000000000 ,1620000000000 ,1616812418420 -1616812418451 ,112.5729312,26.88313638,64.96604919,186.7563405,188.5290161,17.273592,0.154646656,1620000000000 ,1620000000000 ,1620000000000 ,1616812418430 -1616812418461 ,112.5729309,26.88313485,64.96368408,186.7760387,188.5483572,17.272821,0.15465183,1620000000000 ,1620000000000 ,1620000000000 ,1616812418440 -1616812418472 ,112.5729307,26.88313332,64.96133423,186.7939612,188.5504649,17.27267,0.154648448,1620000000000 ,1620000000000 ,1620000000000 ,1616812418450 -1616812418481 ,112.5729305,26.88313177,64.96244812,186.8121841,187.9123863,17.271624,0.156319118,1620000000000 ,1620000000000 ,1620000000000 ,1616812418460 -1616812418492 ,112.5729303,26.88313022,64.96352386,186.829123,187.9276835,17.27404,0.156337167,1620000000000 ,1620000000000 ,1620000000000 ,1616812418470 -1616812418502 ,112.57293,26.88312867,64.96456909,186.8472093,187.9557691,17.272661,0.156334113,1620000000000 ,1620000000000 ,1620000000000 ,1616812418480 -1616812418513 ,112.5729298,26.88312713,64.96561432,186.8646126,187.9763239,17.271746,0.15633284,1620000000000 ,1620000000000 ,1620000000000 ,1616812418490 -1616812418527 ,112.5729296,26.88312558,64.96671295,186.8815242,187.9754314,17.272455,0.156338156,1620000000000 ,1620000000000 ,1620000000000 ,1616812418500 -1616812418532 ,112.5729294,26.88312403,64.96787262,186.895649,187.9778407,17.27262,0.156343079,1620000000000 ,1620000000000 ,1620000000000 ,1616812418510 -1616812418547 ,112.5729292,26.88312248,64.96902466,186.9130797,187.9992476,17.276611,0.156375842,1620000000000 ,1620000000000 ,1620000000000 ,1616812418520 -1616812418553 ,112.572929,26.88312093,64.97003174,186.9320403,188.0307708,17.278904,0.156402294,1620000000000 ,1620000000000 ,1620000000000 ,1616812418530 -1616812418564 ,112.5729287,26.88311938,64.97091675,186.9466022,188.0578464,17.278364,0.156405088,1620000000000 ,1620000000000 ,1620000000000 ,1616812418540 -1616812418574 ,112.5729285,26.88311783,64.97185516,186.9622843,188.0648331,17.274796,0.156387552,1620000000000 ,1620000000000 ,1620000000000 ,1616812418550 -1616812418584 ,112.5729283,26.88311629,64.97277832,186.9803434,188.0804783,17.274029,0.156376079,1620000000000 ,1620000000000 ,1620000000000 ,1616812418560 -1616812418593 ,112.5729281,26.88311474,64.973526,187.0015443,188.0978674,17.27614,0.15638265,1620000000000 ,1620000000000 ,1620000000000 ,1616812418570 -1616812418606 ,112.5729279,26.88311319,64.97402191,187.0190296,188.1178071,17.27648,0.156390248,1620000000000 ,1620000000000 ,1620000000000 ,1616812418580 -1616812418613 ,112.5729276,26.88311164,64.97434235,187.0354493,188.1384301,17.276989,0.15638642,1620000000000 ,1620000000000 ,1620000000000 ,1616812418590 -1616812418630 ,112.5729274,26.88311009,64.97446442,187.0523882,188.1491014,17.280895,0.156410273,1620000000000 ,1620000000000 ,1620000000000 ,1616812418610 -1616812418644 ,112.5729272,26.88310855,64.97434235,187.0685348,188.1612052,17.284292,0.156429114,1620000000000 ,1620000000000 ,1620000000000 ,1616812418610 -1616812418650 ,112.572927,26.883107,64.97405243,187.0834519,188.1781248,17.286041,0.15645156,1620000000000 ,1620000000000 ,1620000000000 ,1616812418630 -1616812418670 ,112.5729268,26.88310545,64.97374725,187.0976041,188.1940062,17.285408,0.156445288,1620000000000 ,1620000000000 ,1620000000000 ,1616812418640 -1616812418673 ,112.5729265,26.8831039,64.97350311,187.113614,188.2002752,17.285646,0.156452759,1620000000000 ,1620000000000 ,1620000000000 ,1616812418640 -1616812418675 ,112.5729263,26.88310235,64.9732666,187.1320009,188.2115575,17.287392,0.156463952,1620000000000 ,1620000000000 ,1620000000000 ,1616812418660 -1616812418684 ,112.5729259,26.88309925,64.97254944,187.1662065,188.2399473,17.284775,0.312909221,1620000000000 ,1620000000000 ,1620000000000 ,1616812418670 -1616812418695 ,112.5729259,26.88309925,64.97254944,187.1662065,-400,17.284775,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812418670 -1616812418705 ,112.5729256,26.88309771,64.97206879,187.1806045,188.2592358,17.285053,0.156441974,1620000000000 ,1620000000000 ,1620000000000 ,1616812418680 -1616812418715 ,112.5729252,26.88309461,64.9706955,187.2160395,188.2947934,17.293867,0.312927133,1620000000000 ,1620000000000 ,1620000000000 ,1616812418700 -1616812418723 ,112.5729252,26.88309461,64.9706955,187.2160395,-400,17.293867,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812418710 -1616812418734 ,112.5729247,26.88309151,64.96876526,187.2462563,188.3172607,17.296108,0.313014045,1620000000000 ,1620000000000 ,1620000000000 ,1616812418720 -1616812418750 ,112.5729245,26.88308996,64.96793365,187.2617745,188.3299224,17.294235,0.156505379,1620000000000 ,1620000000000 ,1620000000000 ,1616812418730 -1616812418755 ,112.5729243,26.88308842,64.96714783,187.2807897,188.347752,17.292532,0.156496365,1620000000000 ,1620000000000 ,1620000000000 ,1616812418740 -1616812418764 ,112.572924,26.88308687,64.96636963,187.3014989,188.3643766,17.290365,0.156480247,1620000000000 ,1620000000000 ,1620000000000 ,1616812418750 -1616812418776 ,112.5729238,26.88308532,64.96564484,187.3196125,188.3753721,17.29199,0.156482849,1620000000000 ,1620000000000 ,1620000000000 ,1616812418760 -1616812418785 ,112.5729236,26.88308377,64.96502686,187.3382726,188.3903543,17.295267,0.156509473,1620000000000 ,1620000000000 ,1620000000000 ,1616812418770 -1616812418797 ,112.5729234,26.88308222,64.96444702,187.3572878,188.414795,17.298603,0.156545117,1620000000000 ,1620000000000 ,1620000000000 ,1616812418780 -1616812418807 ,112.5729231,26.88308067,64.96385956,187.3735983,188.4610396,17.295553,0.156536916,1620000000000 ,1620000000000 ,1620000000000 ,1616812418790 -1616812418817 ,112.5729229,26.88307913,64.96334839,187.3897722,188.498459,17.291048,0.15650014,1620000000000 ,1620000000000 ,1620000000000 ,1616812418800 -1616812418831 ,112.5729227,26.88307758,64.96296692,187.4050172,188.5192131,17.290657,0.156489721,1620000000000 ,1620000000000 ,1620000000000 ,1616812418810 -1616812418835 ,112.5729224,26.88307603,64.96266937,187.4226391,188.5307768,17.294222,0.156513725,1620000000000 ,1620000000000 ,1620000000000 ,1616812418820 -1616812418846 ,112.5729222,26.88307448,64.96237183,187.4403429,188.5385658,17.297722,0.156546606,1620000000000 ,1620000000000 ,1620000000000 ,1616812418830 -1616812418855 ,112.572922,26.88307293,64.96214294,187.4545497,188.5719027,17.296118,0.156553069,1620000000000 ,1620000000000 ,1620000000000 ,1616812418840 -1616812418868 ,112.5729217,26.88307139,64.96213531,187.4697674,188.6080683,17.292805,0.156531861,1620000000000 ,1620000000000 ,1620000000000 ,1616812418850 -1616812418875 ,112.5729215,26.88306984,64.96232605,187.4827721,188.6453856,17.288729,0.156505524,1620000000000 ,1620000000000 ,1620000000000 ,1616812418860 -1616812418884 ,112.5729213,26.88306829,64.96259308,187.4971974,188.6590535,17.291582,0.156520847,1620000000000 ,1620000000000 ,1620000000000 ,1616812418870 -1616812418895 ,112.572921,26.88306674,64.96286774,187.511213,188.6792053,17.29253,0.156532063,1620000000000 ,1620000000000 ,1620000000000 ,1616812418880 -1616812418905 ,112.5729208,26.8830652,64.96318817,187.524245,188.7036956,17.294247,0.156555782,1620000000000 ,1620000000000 ,1620000000000 ,1616812418890 -1616812418916 ,112.5729206,26.88306365,64.96354675,187.5390802,188.7318688,17.295753,0.156570453,1620000000000 ,1620000000000 ,1620000000000 ,1616812418900 -1616812418926 ,112.5729203,26.8830621,64.96395874,187.5538334,188.7588121,17.294304,0.156571825,1620000000000 ,1620000000000 ,1620000000000 ,1616812418910 -1616812418937 ,112.5729201,26.88306055,64.96448517,187.567767,188.7815332,17.291569,0.156552053,1620000000000 ,1620000000000 ,1620000000000 ,1616812418920 -1616812418946 ,112.5729198,26.88305901,64.96509552,187.5796515,188.7962496,17.29272,0.156560238,1620000000000 ,1620000000000 ,1620000000000 ,1616812418930 -1616812418956 ,112.5729196,26.88305746,64.96573639,187.5886673,188.8121893,17.296343,0.156585145,1620000000000 ,1620000000000 ,1620000000000 ,1616812418940 -1616812418967 ,112.5729194,26.88305591,64.96640015,187.5978744,188.83982,17.296396,0.156604619,1620000000000 ,1620000000000 ,1620000000000 ,1616812418950 -1616812418982 ,112.5729191,26.88305437,64.96713257,187.6077099,188.8586635,17.294533,0.156597943,1620000000000 ,1620000000000 ,1620000000000 ,1616812418960 -1616812418986 ,112.5729189,26.88305282,64.96794128,187.6202501,188.8816412,17.291246,0.156575059,1620000000000 ,1620000000000 ,1620000000000 ,1616812418970 -1616812418996 ,112.5729186,26.88305127,64.96877289,187.6327084,188.8884079,17.291431,0.156574717,1620000000000 ,1620000000000 ,1620000000000 ,1616812418980 -1616812419007 ,112.5729184,26.88304972,64.9695816,187.6457677,188.8993872,17.292213,0.156581291,1620000000000 ,1620000000000 ,1620000000000 ,1616812418990 -1616812419018 ,112.5729181,26.88304818,64.97034454,187.6586358,188.9183251,17.294271,0.156596025,1620000000000 ,1620000000000 ,1620000000000 ,1616812419000 -1616812419028 ,112.5729179,26.88304663,64.97103882,187.6716951,188.9372111,17.296295,0.156614772,1620000000000 ,1620000000000 ,1620000000000 ,1616812419010 -1616812419037 ,112.5729177,26.88304508,64.97170258,187.6845905,188.9665717,17.296389,0.156626552,1620000000000 ,1620000000000 ,1620000000000 ,1616812419020 -1616812419055 ,112.5729174,26.88304354,64.97235107,187.6959559,188.9753592,17.295807,0.156625176,1620000000000 ,1620000000000 ,1620000000000 ,1616812419030 -1616812419058 ,112.5729172,26.88304199,64.97298431,187.7067203,188.9742596,17.295345,0.156617217,1620000000000 ,1620000000000 ,1620000000000 ,1616812419040 -1616812419068 ,112.5729169,26.88304044,64.97362518,187.7163919,188.9797957,17.297375,0.156628912,1620000000000 ,1620000000000 ,1620000000000 ,1616812419050 -1616812419077 ,112.5729167,26.88303889,64.97418976,187.7309265,188.9970007,17.30025,0.156655454,1620000000000 ,1620000000000 ,1620000000000 ,1616812419060 -1616812419088 ,112.5729164,26.88303735,64.974617,187.7469365,189.0116874,17.302597,0.156676532,1620000000000 ,1620000000000 ,1620000000000 ,1616812419070 -1616812419096 ,112.5729162,26.8830358,64.9749527,187.762482,189.0249152,17.302343,0.156678788,1620000000000 ,1620000000000 ,1620000000000 ,1616812419080 -1616812419106 ,112.5729159,26.88303425,64.97523499,187.7783827,189.020808,17.302319,0.156674715,1620000000000 ,1620000000000 ,1620000000000 ,1616812419090 -1616812419118 ,112.5729157,26.88303271,64.97540283,187.7915786,189.0196457,17.305693,0.156691664,1620000000000 ,1620000000000 ,1620000000000 ,1616812419100 -1616812419128 ,112.5729155,26.88303116,64.97538757,187.8038729,189.0426767,17.309553,0.156718046,1620000000000 ,1620000000000 ,1620000000000 ,1616812419110 -1616812419138 ,112.5729152,26.88302961,64.9752121,187.8157575,189.0758482,17.312525,0.156747354,1620000000000 ,1620000000000 ,1620000000000 ,1616812419120 -1616812419148 ,112.572915,26.88302806,64.97502136,187.8271229,189.0918794,17.31418,0.156762852,1620000000000 ,1620000000000 ,1620000000000 ,1616812419130 -1616812419159 ,112.5729147,26.88302651,64.97489929,187.8407013,189.0873069,17.313055,0.156762878,1620000000000 ,1620000000000 ,1620000000000 ,1616812419140 -1616812419168 ,112.5729145,26.88302497,64.97486877,187.8556184,189.0786081,17.311783,0.156751997,1620000000000 ,1620000000000 ,1620000000000 ,1616812419150 -1616812419181 ,112.5729142,26.88302342,64.97485352,187.8714918,189.0888344,17.316622,0.156778162,1620000000000 ,1620000000000 ,1620000000000 ,1616812419160 -1616812419188 ,112.572914,26.88302187,64.97479248,187.8859991,189.1079489,17.320599,0.156821579,1620000000000 ,1620000000000 ,1620000000000 ,1616812419170 -1616812419201 ,112.5729137,26.88302032,64.97467041,187.9002332,189.1300097,17.321255,0.15683257,1620000000000 ,1620000000000 ,1620000000000 ,1616812419180 -1616812419209 ,112.5729135,26.88301877,64.97457123,187.9114074,189.1506671,17.31802,0.156817098,1620000000000 ,1620000000000 ,1620000000000 ,1616812419190 -1616812419219 ,112.5729132,26.88301722,64.97457123,187.9228548,189.1536404,17.315784,0.156798379,1620000000000 ,1620000000000 ,1620000000000 ,1616812419200 -1616812419231 ,112.572913,26.88301571,64.97608185,187.9413783,189.9952022,17.27204,0.154066072,1620000000000 ,1620000000000 ,1620000000000 ,1616812419210 -1616812419241 ,112.5729127,26.88301419,64.97771454,187.9572243,190.1023786,17.277477,0.15392474,1620000000000 ,1620000000000 ,1620000000000 ,1616812419220 -1616812419249 ,112.5729124,26.88301268,64.97923279,187.9709394,190.1226768,17.281796,0.153966423,1620000000000 ,1620000000000 ,1620000000000 ,1616812419230 -1616812419260 ,112.5729121,26.88301116,64.98072815,187.9827146,190.1351915,17.285236,0.153998064,1620000000000 ,1620000000000 ,1620000000000 ,1616812419240 -1616812419273 ,112.5729119,26.88300964,64.98230743,187.9954734,190.1582535,17.285437,0.15401682,1620000000000 ,1620000000000 ,1620000000000 ,1616812419250 -1616812419279 ,112.5729116,26.88300813,64.98400879,188.0096256,190.1793584,17.283615,0.154007545,1620000000000 ,1620000000000 ,1620000000000 ,1616812419260 -1616812419289 ,112.5729113,26.88300661,64.98576355,188.0197342,190.1866615,17.28351,0.154010687,1620000000000 ,1620000000000 ,1620000000000 ,1616812419270 -1616812419300 ,112.5729111,26.8830051,64.98753357,188.0315368,190.1903534,17.281792,0.153995786,1620000000000 ,1620000000000 ,1620000000000 ,1616812419280 -1616812419310 ,112.5729108,26.88300358,64.98923492,188.0466179,190.196492,17.28459,0.15400831,1620000000000 ,1620000000000 ,1620000000000 ,1616812419290 -1616812419319 ,112.5729105,26.88300207,64.99076843,188.0636387,190.2067831,17.288393,0.154038523,1620000000000 ,1620000000000 ,1620000000000 ,1616812419300 -1616812419330 ,112.5729102,26.88300055,64.99221039,188.0762609,190.2214299,17.292786,0.154077832,1620000000000 ,1620000000000 ,1620000000000 ,1616812419310 -1616812419342 ,112.57291,26.88299903,64.99370575,188.0856046,190.2339346,17.295265,0.154107211,1620000000000 ,1620000000000 ,1620000000000 ,1616812419320 -1616812419350 ,112.5729097,26.88299752,64.99530029,188.0973798,190.2585218,17.294867,0.154106509,1620000000000 ,1620000000000 ,1620000000000 ,1616812419330 -1616812419359 ,112.5729094,26.882996,64.99693298,188.1068601,190.2752092,17.293234,0.154110593,1620000000000 ,1620000000000 ,1620000000000 ,1616812419340 -1616812419372 ,112.5729091,26.88299448,64.99860382,188.1149744,190.2832976,17.291183,0.154086358,1620000000000 ,1620000000000 ,1620000000000 ,1616812419350 -1616812419389 ,112.5729089,26.88299297,65.00039673,188.1221051,190.2894967,17.289057,0.154069978,1620000000000 ,1620000000000 ,1620000000000 ,1616812419360 -1616812419392 ,112.5729086,26.88299145,65.00231171,188.1326236,190.2959795,17.288792,0.15407239,1620000000000 ,1620000000000 ,1620000000000 ,1616812419370 -1616812419403 ,112.5729083,26.88298994,65.00430298,188.1481691,190.3153141,17.289965,0.154083042,1620000000000 ,1620000000000 ,1620000000000 ,1616812419380 -1616812419416 ,112.572908,26.88298842,65.00621033,188.1656271,190.3268081,17.294659,0.154115145,1620000000000 ,1620000000000 ,1620000000000 ,1616812419390 -1616812419425 ,112.5729078,26.8829869,65.00797272,188.1775389,190.3481551,17.29826,0.154149809,1620000000000 ,1620000000000 ,1620000000000 ,1616812419400 -1616812419432 ,112.5729075,26.88298539,65.00966644,188.1845604,190.3593082,17.306408,0.154214307,1620000000000 ,1620000000000 ,1620000000000 ,1616812419410 -1616812419441 ,112.5729072,26.88298387,65.01133728,188.1924287,190.3803288,17.308561,0.154246085,1620000000000 ,1620000000000 ,1620000000000 ,1616812419420 -1616812419452 ,112.5729069,26.88298235,65.01292419,188.2033024,190.3901809,17.309414,0.154256123,1620000000000 ,1620000000000 ,1620000000000 ,1616812419430 -1616812419461 ,112.5729066,26.88298083,65.01451111,188.2145859,190.4074722,17.301287,0.154208642,1620000000000 ,1620000000000 ,1620000000000 ,1616812419440 -1616812419470 ,112.5729064,26.88297932,65.01631165,188.2255688,190.4022389,17.295511,0.154154648,1620000000000 ,1620000000000 ,1620000000000 ,1616812419450 -1616812419481 ,112.5729061,26.88297777,65.01701355,188.2405133,189.6574852,17.299868,0.156690056,1620000000000 ,1620000000000 ,1620000000000 ,1616812419460 -1616812419491 ,112.5729058,26.88297623,65.01763153,188.2546108,189.6757289,17.30812,0.156758671,1620000000000 ,1620000000000 ,1620000000000 ,1616812419470 -1616812419502 ,112.5729056,26.88297468,65.01803589,188.2652386,189.7205855,17.316122,0.1568343,1620000000000 ,1620000000000 ,1620000000000 ,1616812419480 -1616812419511 ,112.5729053,26.88297314,65.01844025,188.2694733,189.7703952,17.315374,0.156863205,1620000000000 ,1620000000000 ,1620000000000 ,1616812419490 -1616812419521 ,112.572905,26.88297159,65.01909637,188.276604,189.7684867,17.314642,0.156848578,1620000000000 ,1620000000000 ,1620000000000 ,1616812419500 -1616812419530 ,112.5729048,26.88297005,65.02000427,188.2851281,189.7710842,17.310522,0.156835648,1620000000000 ,1620000000000 ,1620000000000 ,1616812419510 -1616812419543 ,112.5729045,26.8829685,65.02113342,188.2949635,189.7825335,17.306278,0.156805618,1620000000000 ,1620000000000 ,1620000000000 ,1616812419520 -1616812419552 ,112.5729042,26.88296696,65.02235413,188.3075038,189.7977209,17.302986,0.156779368,1620000000000 ,1620000000000 ,1620000000000 ,1616812419530 -1616812419562 ,112.572904,26.88296541,65.02348328,188.3219018,189.8059561,17.303423,0.156773939,1620000000000 ,1620000000000 ,1620000000000 ,1616812419540 -1616812419573 ,112.5729037,26.88296387,65.02438354,188.3366004,189.8132951,17.311031,0.156819828,1620000000000 ,1620000000000 ,1620000000000 ,1616812419550 -1616812419581 ,112.5729034,26.88296232,65.02500916,188.3475287,189.8268386,17.31811,0.156876402,1620000000000 ,1620000000000 ,1620000000000 ,1616812419560 -1616812419597 ,112.5729032,26.88296077,65.02545929,188.354031,189.8422089,17.321972,0.156920081,1620000000000 ,1620000000000 ,1620000000000 ,1616812419570 -1616812419603 ,112.5729029,26.88295923,65.02584839,188.3608885,189.853913,17.323534,0.156933582,1620000000000 ,1620000000000 ,1620000000000 ,1616812419580 -1616812419612 ,112.5729026,26.88295768,65.02636719,188.3693033,189.8636118,17.31771,0.156906028,1620000000000 ,1620000000000 ,1620000000000 ,1616812419590 -1616812419624 ,112.5729024,26.88295614,65.02701569,188.3793027,189.8716697,17.316366,0.156886065,1620000000000 ,1620000000000 ,1620000000000 ,1616812419600 -1616812419633 ,112.5729021,26.88295459,65.02765656,188.3900124,189.8855419,17.319168,0.156898109,1620000000000 ,1620000000000 ,1620000000000 ,1616812419610 -1616812419643 ,112.5729018,26.88295304,65.02817535,188.3991922,189.9040844,17.324835,0.156945374,1620000000000 ,1620000000000 ,1620000000000 ,1616812419620 -1616812419654 ,112.5729016,26.8829515,65.02855682,188.4069786,189.9263762,17.329794,0.156991376,1620000000000 ,1620000000000 ,1620000000000 ,1616812419630 -1616812419663 ,112.5729013,26.88294995,65.02881622,188.4181255,189.9488144,17.33162,0.15701243,1620000000000 ,1620000000000 ,1620000000000 ,1616812419640 -1616812419672 ,112.572901,26.8829484,65.02909088,188.4287533,189.9618738,17.329432,0.157005988,1620000000000 ,1620000000000 ,1620000000000 ,1616812419650 -1616812419682 ,112.5729007,26.88294686,65.02953339,188.4374413,189.9600406,17.32556,0.15697815,1620000000000 ,1620000000000 ,1620000000000 ,1616812419660 -1616812419692 ,112.5729005,26.88294531,65.03014374,188.4503913,189.9639596,17.326406,0.156976123,1620000000000 ,1620000000000 ,1620000000000 ,1616812419670 -1616812419711 ,112.5729002,26.88294377,65.0306778,188.4640244,189.971389,17.33119,0.157007038,1620000000000 ,1620000000000 ,1620000000000 ,1616812419680 -1616812419717 ,112.5728999,26.88294222,65.03105927,188.4780126,189.9940339,17.335884,0.157049591,1620000000000 ,1620000000000 ,1620000000000 ,1616812419690 -1616812419725 ,112.5728997,26.88294067,65.03139496,188.4853346,190.0043937,17.337448,0.157073994,1620000000000 ,1620000000000 ,1620000000000 ,1616812419700 -1616812419735 ,112.5728994,26.88293913,65.03179932,188.4918915,190.0017251,17.338554,0.157080687,1620000000000 ,1620000000000 ,1620000000000 ,1616812419720 -1616812419744 ,112.5728991,26.88293758,65.03224945,188.4992955,190.0090898,17.339863,0.157097342,1620000000000 ,1620000000000 ,1620000000000 ,1616812419730 -1616812419754 ,112.5728988,26.88293603,65.03272247,188.509049,190.0298079,17.340769,0.157110111,1620000000000 ,1620000000000 ,1620000000000 ,1616812419740 -1616812419763 ,112.5728983,26.88293294,65.03390503,188.5287199,190.041197,17.338861,0.314203677,1620000000000 ,1620000000000 ,1620000000000 ,1616812419750 -1616812419775 ,112.572898,26.88293139,65.03456879,188.54167,190.0451074,17.340124,0.15711505,1620000000000 ,1620000000000 ,1620000000000 ,1616812419760 -1616812419784 ,112.5728977,26.88292984,65.03514862,188.5532813,190.0596225,17.343548,0.157132428,1620000000000 ,1620000000000 ,1620000000000 ,1616812419770 -1616812419803 ,112.5728975,26.8829283,65.0356369,188.5644828,190.0832418,17.346472,0.157163499,1620000000000 ,1620000000000 ,1620000000000 ,1616812419780 -1616812419805 ,112.5728975,26.8829283,65.0356369,188.5644828,-400,17.346472,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812419780 -1616812419816 ,112.5728969,26.8829252,65.0366745,188.5834707,190.1004575,17.34716,0.314360137,1620000000000 ,1620000000000 ,1620000000000 ,1616812419800 -1616812419823 ,112.5728969,26.8829252,65.0366745,188.5834707,-400,17.34716,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812419810 -1616812419834 ,112.5728966,26.88292365,65.03727722,188.5916396,190.1018545,17.346306,0.157177751,1620000000000 ,1620000000000 ,1620000000000 ,1616812419820 -1616812419846 ,112.5728961,26.88292056,65.03844452,188.6105456,190.1109046,17.345379,0.314354898,1620000000000 ,1620000000000 ,1620000000000 ,1616812419830 -1616812419855 ,112.5728958,26.88291901,65.03903198,188.616966,190.1313966,17.345009,0.157169611,1620000000000 ,1620000000000 ,1620000000000 ,1616812419840 -1616812419865 ,112.5728955,26.88291746,65.03956604,188.6271839,190.1326602,17.34606,0.157171815,1620000000000 ,1620000000000 ,1620000000000 ,1616812419850 -1616812419874 ,112.5728953,26.88291592,65.03998566,188.6376751,190.1356396,17.35122,0.157205502,1620000000000 ,1620000000000 ,1620000000000 ,1616812419860 -1616812419885 ,112.572895,26.88291437,65.04029083,188.6451064,190.1374423,17.3548,0.157242479,1620000000000 ,1620000000000 ,1620000000000 ,1616812419870 -1616812419894 ,112.5728947,26.88291282,65.04059601,188.6516087,190.1412849,17.357328,0.157268105,1620000000000 ,1620000000000 ,1620000000000 ,1616812419880 -1616812419905 ,112.5728944,26.88291127,65.04094696,188.6614442,190.1575511,17.359844,0.157287019,1620000000000 ,1620000000000 ,1620000000000 ,1616812419890 -1616812419917 ,112.5728941,26.88290972,65.04129028,188.673438,190.1631892,17.361982,0.157312665,1620000000000 ,1620000000000 ,1620000000000 ,1616812419900 -1616812419926 ,112.5728939,26.88290818,65.04160309,188.6836833,190.1750892,17.360489,0.157309146,1620000000000 ,1620000000000 ,1620000000000 ,1616812419910 -1616812419936 ,112.5728936,26.88290663,65.04192352,188.6960869,190.1723208,17.357895,0.15728485,1620000000000 ,1620000000000 ,1620000000000 ,1616812419920 -1616812419956 ,112.5728933,26.88290508,65.04221344,188.708108,190.1714896,17.360771,0.157294696,1620000000000 ,1620000000000 ,1620000000000 ,1616812419930 -1616812419958 ,112.572893,26.88290353,65.04242706,188.7210854,190.181811,17.360798,0.157306572,1620000000000 ,1620000000000 ,1620000000000 ,1616812419940 -1616812419967 ,112.5728928,26.88290198,65.04256439,188.7326147,190.2014306,17.364994,0.157332555,1620000000000 ,1620000000000 ,1620000000000 ,1616812419950 -1616812419984 ,112.5728925,26.88290043,65.04271698,188.7432425,190.2125233,17.365631,0.15733935,1620000000000 ,1620000000000 ,1620000000000 ,1616812419960 -1616812419988 ,112.5728922,26.88289889,65.04290009,188.753761,190.1959453,17.36701,0.157355859,1620000000000 ,1620000000000 ,1620000000000 ,1616812419970 -1616812419994 ,112.5728919,26.88289734,65.0431366,188.7603726,190.1908768,17.369968,0.157377447,1620000000000 ,1620000000000 ,1620000000000 ,1616812419980 -1616812420005 ,112.5728916,26.88289579,65.04345703,188.7690879,190.2131769,17.374172,0.157418607,1620000000000 ,1620000000000 ,1620000000000 ,1616812419990 -1616812420018 ,112.5728914,26.88289424,65.04386139,188.7797157,190.2292987,17.372078,0.157413224,1620000000000 ,1620000000000 ,1620000000000 ,1616812420000 -1616812420027 ,112.5728911,26.88289269,65.04442596,188.7916276,190.2421343,17.36527,0.157377418,1620000000000 ,1620000000000 ,1620000000000 ,1616812420010 -1616812420037 ,112.5728908,26.88289114,65.04517365,188.8049601,190.2443123,17.360952,0.157341431,1620000000000 ,1620000000000 ,1620000000000 ,1616812420020 -1616812420045 ,112.5728905,26.88288959,65.04594421,188.818238,190.2387058,17.361704,0.157333257,1620000000000 ,1620000000000 ,1620000000000 ,1616812420030 -1616812420055 ,112.5728902,26.88288804,65.04657745,188.8284013,190.256104,17.369026,0.157376496,1620000000000 ,1620000000000 ,1620000000000 ,1616812420040 -1616812420067 ,112.57289,26.8828865,65.04694366,188.8373352,190.2836753,17.374992,0.157431977,1620000000000 ,1620000000000 ,1620000000000 ,1616812420050 -1616812420076 ,112.5728897,26.88288495,65.04702759,188.8489738,190.3182183,17.38005,0.157477103,1620000000000 ,1620000000000 ,1620000000000 ,1616812420060 -1616812420088 ,112.5728894,26.8828834,65.04697418,188.858782,190.3306581,17.381979,0.157501604,1620000000000 ,1620000000000 ,1620000000000 ,1616812420070 -1616812420096 ,112.5728891,26.88288185,65.04702759,188.8675246,190.3213009,17.376354,0.157456152,1620000000000 ,1620000000000 ,1620000000000 ,1616812420080 -1616812420107 ,112.5728888,26.8828803,65.04734802,188.8741363,190.3071371,17.374117,0.157445172,1620000000000 ,1620000000000 ,1620000000000 ,1616812420090 -1616812420118 ,112.5728885,26.88287875,65.04777527,188.8841903,190.312662,17.37527,0.157447062,1620000000000 ,1620000000000 ,1620000000000 ,1616812420100 -1616812420127 ,112.5728883,26.8828772,65.04814148,188.8942717,190.3361424,17.376741,0.157462276,1620000000000 ,1620000000000 ,1620000000000 ,1616812420110 -1616812420137 ,112.572888,26.88287565,65.04841614,188.9019761,190.3628993,17.380943,0.157488233,1620000000000 ,1620000000000 ,1620000000000 ,1616812420120 -1616812420150 ,112.5728877,26.8828741,65.04871368,188.909462,190.3697029,17.380945,0.157504088,1620000000000 ,1620000000000 ,1620000000000 ,1616812420130 -1616812420158 ,112.5728874,26.88287255,65.04906464,188.919598,190.368371,17.383238,0.157522291,1620000000000 ,1620000000000 ,1620000000000 ,1616812420140 -1616812420168 ,112.5728871,26.882871,65.04938507,188.9295701,190.3725268,17.3842,0.157535269,1620000000000 ,1620000000000 ,1620000000000 ,1616812420150 -1616812420180 ,112.5728868,26.88286945,65.04960632,188.9397607,190.3907387,17.385986,0.157538536,1620000000000 ,1620000000000 ,1620000000000 ,1616812420160 -1616812420189 ,112.5728866,26.8828679,65.04980469,188.9480935,190.4164979,17.38766,0.157557608,1620000000000 ,1620000000000 ,1620000000000 ,1616812420170 -1616812420199 ,112.5728863,26.88286635,65.0500412,188.9565903,190.4225499,17.385885,0.157550807,1620000000000 ,1620000000000 ,1620000000000 ,1616812420180 -1616812420207 ,112.572886,26.8828648,65.050354,188.9669995,190.4269613,17.385798,0.157547625,1620000000000 ,1620000000000 ,1620000000000 ,1616812420190 -1616812420220 ,112.5728857,26.88286327,65.05098724,188.9808785,190.5517024,17.328592,0.155888554,1620000000000 ,1620000000000 ,1620000000000 ,1616812420200 -1616812420230 ,112.5728854,26.88286176,65.05199432,188.9913969,190.7077433,17.33006,0.153756609,1620000000000 ,1620000000000 ,1620000000000 ,1616812420210 -1616812420239 ,112.5728851,26.88286025,65.05299377,189.001369,190.7128965,17.33425,0.153789102,1620000000000 ,1620000000000 ,1620000000000 ,1616812420220 -1616812420249 ,112.5728848,26.88285874,65.05396271,189.0089369,190.7224372,17.340689,0.153842928,1620000000000 ,1620000000000 ,1620000000000 ,1616812420230 -1616812420258 ,112.5728846,26.88285723,65.05493927,189.0172424,190.7385783,17.345604,0.153896884,1620000000000 ,1620000000000 ,1620000000000 ,1616812420240 -1616812420268 ,112.5728843,26.88285571,65.05596924,189.0261216,190.7540454,17.34437,0.153897494,1620000000000 ,1620000000000 ,1620000000000 ,1616812420250 -1616812420278 ,112.572884,26.8828542,65.0570755,189.0357659,190.7731545,17.34121,0.153881545,1620000000000 ,1620000000000 ,1620000000000 ,1616812420260 -1616812420293 ,112.5728837,26.88285269,65.05831909,189.0460385,190.7862729,17.33475,0.153838443,1620000000000 ,1620000000000 ,1620000000000 ,1616812420270 -1616812420300 ,112.5728834,26.88285118,65.05966187,189.0580869,190.7973253,17.33329,0.153811421,1620000000000 ,1620000000000 ,1620000000000 ,1616812420280 -1616812420311 ,112.5728831,26.88284967,65.06102753,189.0692338,190.8153481,17.337255,0.153841303,1620000000000 ,1620000000000 ,1620000000000 ,1616812420290 -1616812420319 ,112.5728828,26.88284816,65.0623703,189.0790146,190.8308962,17.343021,0.153885593,1620000000000 ,1620000000000 ,1620000000000 ,1616812420300 -1616812420330 ,112.5728825,26.88284665,65.06376648,189.0877573,190.8608492,17.34356,0.15391509,1620000000000 ,1620000000000 ,1620000000000 ,1616812420310 -1616812420340 ,112.5728823,26.88284514,65.06519318,189.0970463,190.8769149,17.346085,0.15394389,1620000000000 ,1620000000000 ,1620000000000 ,1616812420320 -1616812420350 ,112.572882,26.88284362,65.06665039,189.107237,190.8942985,17.342924,0.153926689,1620000000000 ,1620000000000 ,1620000000000 ,1616812420330 -1616812420359 ,112.5728817,26.88284211,65.06815338,189.1161708,190.9036938,17.344566,0.153927823,1620000000000 ,1620000000000 ,1620000000000 ,1616812420340 -1616812420370 ,112.5728814,26.8828406,65.06972504,189.125897,190.9056385,17.3406,0.153924404,1620000000000 ,1620000000000 ,1620000000000 ,1616812420350 -1616812420380 ,112.5728811,26.88283909,65.07131195,189.134667,190.90854,17.337786,0.153891866,1620000000000 ,1620000000000 ,1620000000000 ,1616812420360 -1616812420390 ,112.5728808,26.88283758,65.07289124,189.1430545,190.9349195,17.334755,0.153873209,1620000000000 ,1620000000000 ,1620000000000 ,1616812420370 -1616812420400 ,112.5728805,26.88283607,65.07442474,189.1520157,190.9617699,17.334116,0.153853039,1620000000000 ,1620000000000 ,1620000000000 ,1616812420380 -1616812420410 ,112.5728802,26.88283456,65.07582092,189.1626981,190.9768383,17.343699,0.153922436,1620000000000 ,1620000000000 ,1620000000000 ,1616812420390 -1616812420420 ,112.5728799,26.88283305,65.07700348,189.170102,190.9899729,17.351974,0.153990128,1620000000000 ,1620000000000 ,1620000000000 ,1616812420400 -1616812420430 ,112.5728796,26.88283153,65.07807159,189.1741455,190.9889246,17.357132,0.154045834,1620000000000 ,1620000000000 ,1620000000000 ,1616812420410 -1616812420441 ,112.5728793,26.88283002,65.07915497,189.1778065,190.9926809,17.35227,0.154025315,1620000000000 ,1620000000000 ,1620000000000 ,1616812420420 -1616812420451 ,112.572879,26.88282851,65.08034515,189.1849645,191.0033631,17.350353,0.154006476,1620000000000 ,1620000000000 ,1620000000000 ,1616812420430 -1616812420459 ,112.5728787,26.882827,65.08159637,189.1951825,191.012738,17.345446,0.153971557,1620000000000 ,1620000000000 ,1620000000000 ,1616812420440 -1616812420472 ,112.5728784,26.88282547,65.08251953,189.2043349,190.8762113,17.345,0.155593717,1620000000000 ,1620000000000 ,1620000000000 ,1616812420450 -1616812420479 ,112.5728782,26.88282393,65.08300018,189.2143343,190.7478076,17.349907,0.157261872,1620000000000 ,1620000000000 ,1620000000000 ,1616812420460 -1616812420490 ,112.5728779,26.88282238,65.08316803,189.2221754,190.7498304,17.355562,0.157299028,1620000000000 ,1620000000000 ,1620000000000 ,1616812420470 -1616812420500 ,112.5728776,26.88282083,65.0830307,189.2304536,190.7650194,17.36199,0.15734216,1620000000000 ,1620000000000 ,1620000000000 ,1616812420480 -1616812420511 ,112.5728773,26.88281929,65.08274078,189.2384859,190.785665,17.366215,0.157384726,1620000000000 ,1620000000000 ,1620000000000 ,1616812420490 -1616812420521 ,112.572877,26.88281774,65.08251953,189.2454253,190.78918,17.367792,0.157398602,1620000000000 ,1620000000000 ,1620000000000 ,1616812420500 -1616812420530 ,112.5728767,26.8828162,65.08253479,189.2523921,190.7867911,17.365536,0.157402539,1620000000000 ,1620000000000 ,1620000000000 ,1616812420510 -1616812420558 ,112.5728764,26.88281465,65.08283234,189.2612441,190.776229,17.357952,0.15735052,1620000000000 ,1620000000000 ,1620000000000 ,1616812420520 -1616812420565 ,112.5728761,26.8828131,65.08325958,189.2726915,190.7835529,17.354473,0.157312543,1620000000000 ,1620000000000 ,1620000000000 ,1616812420530 -1616812420567 ,112.5728758,26.88281156,65.0836792,189.2853683,190.7930159,17.355902,0.157309099,1620000000000 ,1620000000000 ,1620000000000 ,1616812420540 -1616812420571 ,112.5728755,26.88281001,65.08403015,189.2960234,190.8120526,17.359259,0.157338822,1620000000000 ,1620000000000 ,1620000000000 ,1616812420550 -1616812420580 ,112.5728752,26.88280847,65.0843277,189.3067331,190.8162128,17.365942,0.157396819,1620000000000 ,1620000000000 ,1620000000000 ,1616812420560 -1616812420597 ,112.5728749,26.88280692,65.0845871,189.3185357,190.8131118,17.371565,0.157443866,1620000000000 ,1620000000000 ,1620000000000 ,1616812420570 -1616812420603 ,112.5728746,26.88280537,65.08481598,189.3309666,190.8205924,17.373064,0.157464245,1620000000000 ,1620000000000 ,1620000000000 ,1616812420580 -1616812420613 ,112.5728743,26.88280383,65.08505249,189.3447363,190.8401598,17.372877,0.1574719,1620000000000 ,1620000000000 ,1620000000000 ,1616812420590 -1616812420623 ,112.572874,26.88280228,65.08533478,189.3598993,190.8387178,17.370222,0.157456574,1620000000000 ,1620000000000 ,1620000000000 ,1616812420600 -1616812420631 ,112.5728737,26.88280074,65.08573914,189.3726308,190.8380128,17.367897,0.157433306,1620000000000 ,1620000000000 ,1620000000000 ,1616812420610 -1616812420647 ,112.5728734,26.88279919,65.08625031,189.385089,190.8498287,17.364225,0.157412697,1620000000000 ,1620000000000 ,1620000000000 ,1616812420620 -1616812420655 ,112.5728731,26.88279764,65.08680725,189.4004706,190.8659554,17.367119,0.157428036,1620000000000 ,1620000000000 ,1620000000000 ,1616812420630 -1616812420662 ,112.5728728,26.8827961,65.08737946,189.4115082,190.8923391,17.369476,0.157456211,1620000000000 ,1620000000000 ,1620000000000 ,1616812420640 -1616812420672 ,112.5728725,26.88279455,65.08800507,189.4222726,190.9110472,17.372963,0.157491119,1620000000000 ,1620000000000 ,1620000000000 ,1616812420650 -1616812420683 ,112.5728722,26.882793,65.08869934,189.4321627,190.9338481,17.373371,0.157515561,1620000000000 ,1620000000000 ,1620000000000 ,1616812420660 -1616812420693 ,112.5728719,26.88279146,65.08937836,189.4462329,190.945703,17.373816,0.157520933,1620000000000 ,1620000000000 ,1620000000000 ,1616812420670 -1616812420703 ,112.5728716,26.88278991,65.09008026,189.4601665,190.9611316,17.373312,0.157520808,1620000000000 ,1620000000000 ,1620000000000 ,1616812420680 -1616812420714 ,112.5728713,26.88278836,65.09087372,189.4733624,190.9736752,17.371515,0.157518503,1620000000000 ,1620000000000 ,1620000000000 ,1616812420690 -1616812420723 ,112.572871,26.88278682,65.09174347,189.4888806,190.9838504,17.367558,0.157487456,1620000000000 ,1620000000000 ,1620000000000 ,1616812420700 -1616812420732 ,112.5728707,26.88278527,65.09255219,189.5035792,191.0067022,17.36911,0.157503356,1620000000000 ,1620000000000 ,1620000000000 ,1616812420710 -1616812420743 ,112.5728704,26.88278373,65.09320068,189.5179499,191.0211996,17.368948,0.157489491,1620000000000 ,1620000000000 ,1620000000000 ,1616812420720 -1616812420752 ,112.5728701,26.88278218,65.09359741,189.5312005,191.0259607,17.372805,0.15751852,1620000000000 ,1620000000000 ,1620000000000 ,1616812420730 -1616812420762 ,112.5728698,26.88278063,65.09373474,189.5421014,191.0434407,17.378784,0.157555656,1620000000000 ,1620000000000 ,1620000000000 ,1616812420740 -1616812420772 ,112.5728695,26.88277909,65.09358215,189.5540679,191.0603229,17.384832,0.157602109,1620000000000 ,1620000000000 ,1620000000000 ,1616812420750 -1616812420782 ,112.5728692,26.88277754,65.09323883,189.5639034,191.0800486,17.384,0.157605422,1620000000000 ,1620000000000 ,1620000000000 ,1616812420760 -1616812420793 ,112.5728689,26.88277599,65.09288788,189.5752142,191.0885347,17.382542,0.157593454,1620000000000 ,1620000000000 ,1620000000000 ,1616812420770 -1616812420804 ,112.5728686,26.88277445,65.09259796,189.5853775,191.0913301,17.38337,0.157599197,1620000000000 ,1620000000000 ,1620000000000 ,1616812420780 -1616812420814 ,112.5728683,26.8827729,65.09228516,189.597426,191.0999617,17.383343,0.157591005,1620000000000 ,1620000000000 ,1620000000000 ,1616812420800 -1616812420830 ,112.572868,26.88277135,65.09187317,189.6107858,191.1229969,17.387182,0.157617684,1620000000000 ,1620000000000 ,1620000000000 ,1616812420810 -1616812420838 ,112.5728674,26.88276826,65.09086609,189.6410026,191.1570345,17.39163,0.315305036,1620000000000 ,1620000000000 ,1620000000000 ,1616812420820 -1616812420844 ,112.5728674,26.88276826,65.09086609,189.6410026,-400,17.39163,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812420830 -1616812420854 ,112.5728671,26.88276671,65.09046936,189.6552913,191.1697845,17.390503,0.157664103,1620000000000 ,1620000000000 ,1620000000000 ,1616812420840 -1616812420863 ,112.5728668,26.88276517,65.09013367,189.6677769,191.194832,17.391373,0.157662349,1620000000000 ,1620000000000 ,1620000000000 ,1616812420850 -1616812420873 ,112.5728665,26.88276362,65.0898056,189.6828033,191.2141217,17.391302,0.157671821,1620000000000 ,1620000000000 ,1620000000000 ,1616812420860 -1616812420882 ,112.5728662,26.88276207,65.08943939,189.6960812,191.2315878,17.392076,0.157675791,1620000000000 ,1620000000000 ,1620000000000 ,1616812420870 -1616812420893 ,112.5728656,26.88275898,65.08876038,189.7244675,191.260631,17.393038,0.31538268,1620000000000 ,1620000000000 ,1620000000000 ,1616812420880 -1616812420906 ,112.5728656,26.88275898,65.08876038,189.7244675,-400,17.393038,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812420880 -1616812420920 ,112.572865,26.88275589,65.08846283,189.7491928,191.2627475,17.390812,0.315346509,1620000000000 ,1620000000000 ,1620000000000 ,1616812420900 -1616812420926 ,112.5728646,26.88275434,65.08854675,189.7642465,191.284247,17.390379,0.157669927,1620000000000 ,1620000000000 ,1620000000000 ,1616812420910 -1616812420934 ,112.5728643,26.8827528,65.08876801,189.7770326,191.306846,17.392517,0.157691576,1620000000000 ,1620000000000 ,1620000000000 ,1616812420920 -1616812420946 ,112.572864,26.88275125,65.08909607,189.7889445,191.3303523,17.393156,0.157716729,1620000000000 ,1620000000000 ,1620000000000 ,1616812420930 -1616812420955 ,112.5728637,26.8827497,65.08953094,189.803042,191.3482995,17.394705,0.157723195,1620000000000 ,1620000000000 ,1620000000000 ,1616812420940 -1616812420964 ,112.5728634,26.88274816,65.09003448,189.817522,191.3474606,17.395205,0.157738113,1620000000000 ,1620000000000 ,1620000000000 ,1616812420950 -1616812420974 ,112.5728631,26.88274661,65.09054565,189.8322479,191.3477273,17.39236,0.157713545,1620000000000 ,1620000000000 ,1620000000000 ,1616812420960 -1616812420984 ,112.5728628,26.88274506,65.09106445,189.8463454,191.3791383,17.39528,0.157738272,1620000000000 ,1620000000000 ,1620000000000 ,1616812420970 -1616812420995 ,112.5728625,26.88274352,65.09152985,189.8611259,191.4009742,17.39243,0.157723906,1620000000000 ,1620000000000 ,1620000000000 ,1616812420980 -1616812421008 ,112.5728625,26.88274352,65.09152985,189.8611259,-400,17.39243,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812420980 -1616812421022 ,112.5728618,26.88274043,65.092453,189.891971,191.4358964,17.393982,0.315454811,1620000000000 ,1620000000000 ,1620000000000 ,1616812421000 -1616812421027 ,112.5728615,26.88273888,65.09288788,189.9030906,191.4425811,17.395868,0.157747844,1620000000000 ,1620000000000 ,1620000000000 ,1616812421010 -1616812421036 ,112.5728612,26.88273733,65.0933609,189.913773,191.4481048,17.397448,0.157760427,1620000000000 ,1620000000000 ,1620000000000 ,1616812421020 -1616812421045 ,112.5728609,26.88273579,65.09388733,189.9229255,191.4718398,17.397987,0.157770564,1620000000000 ,1620000000000 ,1620000000000 ,1616812421030 -1616812421056 ,112.5728606,26.88273424,65.09453583,189.9331161,191.5021663,17.400743,0.157802817,1620000000000 ,1620000000000 ,1620000000000 ,1616812421040 -1616812421068 ,112.5728603,26.8827327,65.09535217,189.9438805,191.5086159,17.397808,0.157803254,1620000000000 ,1620000000000 ,1620000000000 ,1616812421050 -1616812421074 ,112.57286,26.88273115,65.09641266,189.9568305,191.5079885,17.391777,0.157756053,1620000000000 ,1620000000000 ,1620000000000 ,1616812421060 -1616812421085 ,112.5728596,26.8827296,65.09759521,189.9688517,191.5083276,17.387106,0.157722136,1620000000000 ,1620000000000 ,1620000000000 ,1616812421070 -1616812421097 ,112.5728593,26.88272806,65.0986557,189.9835229,191.5100224,17.388475,0.157715663,1620000000000 ,1620000000000 ,1620000000000 ,1616812421080 -1616812421107 ,112.572859,26.88272651,65.0994873,189.9968281,191.5420554,17.396685,0.157764378,1620000000000 ,1620000000000 ,1620000000000 ,1616812421090 -1616812421118 ,112.5728587,26.88272497,65.10012054,190.0112535,191.5701913,17.399164,0.15780474,1620000000000 ,1620000000000 ,1620000000000 ,1616812421100 -1616812421125 ,112.5728584,26.88272342,65.10069275,190.0230834,191.5695994,17.401295,0.157824756,1620000000000 ,1620000000000 ,1620000000000 ,1616812421110 -1616812421140 ,112.5728581,26.88272187,65.10133362,190.0339024,191.5628057,17.396975,0.15780665,1620000000000 ,1620000000000 ,1620000000000 ,1616812421120 -1616812421149 ,112.5728578,26.88272033,65.102005,190.0489288,191.5661155,17.395584,0.157776417,1620000000000 ,1620000000000 ,1620000000000 ,1616812421130 -1616812421158 ,112.5728574,26.88271878,65.10261536,190.0625345,191.586873,17.397781,0.15779023,1620000000000 ,1620000000000 ,1620000000000 ,1616812421140 -1616812421169 ,112.5728571,26.88271724,65.10313416,190.0735175,191.594955,17.399868,0.157809546,1620000000000 ,1620000000000 ,1620000000000 ,1616812421150 -1616812421177 ,112.5728568,26.88271569,65.10367584,190.0840633,191.6087639,17.404615,0.157852716,1620000000000 ,1620000000000 ,1620000000000 ,1616812421160 -1616812421186 ,112.5728565,26.88271414,65.10424805,190.0960571,191.6154205,17.402916,0.157854072,1620000000000 ,1620000000000 ,1620000000000 ,1616812421170 -1616812421198 ,112.5728562,26.8827126,65.10482025,190.1095809,191.6180234,17.399591,0.15782694,1620000000000 ,1620000000000 ,1620000000000 ,1616812421180 -1616812421207 ,112.5728558,26.88271105,65.10532379,190.1243614,191.637974,17.399786,0.157821508,1620000000000 ,1620000000000 ,1620000000000 ,1616812421190 -1616812421218 ,112.5728555,26.88270952,65.10624695,190.1307818,191.9024829,17.376394,0.15625703,1620000000000 ,1620000000000 ,1620000000000 ,1616812421200 -1616812421229 ,112.5728552,26.88270801,65.10787964,190.1452071,192.233131,17.38494,0.154516531,1620000000000 ,1620000000000 ,1620000000000 ,1616812421210 -1616812421237 ,112.5728549,26.8827065,65.10939026,190.158567,192.2481357,17.383095,0.154521927,1620000000000 ,1620000000000 ,1620000000000 ,1616812421220 -1616812421249 ,112.5728545,26.88270499,65.11096954,190.1703149,192.2602027,17.383999,0.154526761,1620000000000 ,1620000000000 ,1620000000000 ,1616812421230 -1616812421258 ,112.5728542,26.88270348,65.1127243,190.1826093,192.2771977,17.381691,0.154524881,1620000000000 ,1620000000000 ,1620000000000 ,1616812421240 -1616812421269 ,112.5728539,26.88270197,65.11457062,190.1958598,192.2809697,17.384705,0.154539761,1620000000000 ,1620000000000 ,1620000000000 ,1616812421250 -1616812421279 ,112.5728536,26.88270046,65.11639404,190.2097661,192.2932799,17.386278,0.154558926,1620000000000 ,1620000000000 ,1620000000000 ,1616812421260 -1616812421290 ,112.5728532,26.88269895,65.11810303,190.2267323,192.3102222,17.386166,0.154562577,1620000000000 ,1620000000000 ,1620000000000 ,1616812421270 -1616812421299 ,112.5728529,26.88269744,65.11972809,190.2399828,192.3241771,17.38945,0.154590663,1620000000000 ,1620000000000 ,1620000000000 ,1616812421280 -1616812421309 ,112.5728526,26.88269593,65.12136078,190.2535886,192.3405202,17.389172,0.154596876,1620000000000 ,1620000000000 ,1620000000000 ,1616812421290 -1616812421319 ,112.5728522,26.88269442,65.12306213,190.2675495,192.3654563,17.38774,0.154586443,1620000000000 ,1620000000000 ,1620000000000 ,1616812421300 -1616812421341 ,112.5728519,26.88269291,65.12476349,190.2819475,192.3877013,17.391361,0.154615495,1620000000000 ,1620000000000 ,1620000000000 ,1616812421310 -1616812421345 ,112.5728516,26.8826914,65.1263504,190.2951981,192.4138575,17.394638,0.15464123,1620000000000 ,1620000000000 ,1620000000000 ,1616812421320 -1616812421351 ,112.5728512,26.88268989,65.12784576,190.3036402,192.4389522,17.399767,0.154691478,1620000000000 ,1620000000000 ,1620000000000 ,1616812421330 -1616812421359 ,112.5728509,26.88268838,65.12936401,190.3124102,192.4548729,17.39997,0.154699198,1620000000000 ,1620000000000 ,1620000000000 ,1616812421340 -1616812421368 ,112.5728506,26.88268687,65.13095093,190.3241308,192.4721489,17.402483,0.154724274,1620000000000 ,1620000000000 ,1620000000000 ,1616812421350 -1616812421378 ,112.5728502,26.88268536,65.13253784,190.335988,192.4963372,17.399818,0.154719752,1620000000000 ,1620000000000 ,1620000000000 ,1616812421360 -1616812421391 ,112.5728499,26.88268385,65.13417816,190.3505226,192.5165369,17.397903,0.154701726,1620000000000 ,1620000000000 ,1620000000000 ,1616812421370 -1616812421398 ,112.5728496,26.88268234,65.13582611,190.3620247,192.5233384,17.400133,0.154716849,1620000000000 ,1620000000000 ,1620000000000 ,1616812421380 -1616812421411 ,112.5728492,26.88268083,65.13739014,190.3725158,192.535835,17.40867,0.15477337,1620000000000 ,1620000000000 ,1620000000000 ,1616812421390 -1616812421418 ,112.5728489,26.88267932,65.13868713,190.3851927,192.5575524,17.419376,0.154861371,1620000000000 ,1620000000000 ,1620000000000 ,1616812421400 -1616812421429 ,112.5728486,26.88267781,65.1396637,190.3994541,192.5898761,17.42372,0.154911657,1620000000000 ,1620000000000 ,1620000000000 ,1616812421410 -1616812421442 ,112.5728482,26.88267629,65.14051819,190.4080875,192.6101685,17.42337,0.154913083,1620000000000 ,1620000000000 ,1620000000000 ,1616812421420 -1616812421451 ,112.5728479,26.88267478,65.14160919,190.4151089,192.6075665,17.421656,0.154911301,1620000000000 ,1620000000000 ,1620000000000 ,1616812421430 -1616812421459 ,112.5728475,26.88267327,65.14299011,190.424234,192.6144275,17.419153,0.154899623,1620000000000 ,1620000000000 ,1620000000000 ,1616812421440 -1616812421470 ,112.5728472,26.88267174,65.14382935,190.4362005,192.3787774,17.420267,0.156479758,1620000000000 ,1620000000000 ,1620000000000 ,1616812421450 -1616812421478 ,112.5728469,26.8826702,65.14400482,190.4471288,192.1562588,17.41823,0.158043154,1620000000000 ,1620000000000 ,1620000000000 ,1616812421460 -1616812421488 ,112.5728465,26.88266865,65.14415741,190.45609,192.1698163,17.423847,0.158075929,1620000000000 ,1620000000000 ,1620000000000 ,1616812421470 -1616812421502 ,112.5728462,26.88266711,65.14434052,190.4651059,192.1759728,17.431667,0.158149885,1620000000000 ,1620000000000 ,1620000000000 ,1616812421480 -1616812421509 ,112.5728459,26.88266556,65.14450073,190.4759249,192.185891,17.43872,0.158219363,1620000000000 ,1620000000000 ,1620000000000 ,1616812421490 -1616812421520 ,112.5728455,26.88266401,65.14466858,190.4858697,192.2087839,17.439396,0.158247855,1620000000000 ,1620000000000 ,1620000000000 ,1616812421500 -1616812421529 ,112.5728452,26.88266247,65.1449585,190.4937927,192.227362,17.433395,0.158219744,1620000000000 ,1620000000000 ,1620000000000 ,1616812421510 -1616812421540 ,112.5728449,26.88266092,65.14539337,190.5041472,192.2246612,17.433018,0.158196892,1620000000000 ,1620000000000 ,1620000000000 ,1616812421520 -1616812421551 ,112.5728445,26.88265937,65.14587402,190.5154307,192.217213,17.43335,0.158212427,1620000000000 ,1620000000000 ,1620000000000 ,1616812421530 -1616812421561 ,112.5728442,26.88265783,65.14622498,190.5279983,192.2151401,17.43722,0.15823158,1620000000000 ,1620000000000 ,1620000000000 ,1616812421540 -1616812421570 ,112.5728439,26.88265628,65.14635468,190.538626,192.2281401,17.444668,0.158286591,1620000000000 ,1620000000000 ,1620000000000 ,1616812421550 -1616812421581 ,112.5728435,26.88265473,65.14629364,190.5486801,192.2360263,17.447565,0.158315605,1620000000000 ,1620000000000 ,1620000000000 ,1616812421560 -1616812421595 ,112.5728432,26.88265319,65.14615631,190.5588161,192.2350619,17.45146,0.158350164,1620000000000 ,1620000000000 ,1620000000000 ,1616812421570 -1616812421603 ,112.5728429,26.88265164,65.14596558,190.5681051,192.2304484,17.454487,0.158378469,1620000000000 ,1620000000000 ,1620000000000 ,1616812421580 -1616812421611 ,112.5728425,26.88265009,65.14568329,190.5776401,192.2500732,17.45879,0.158408518,1620000000000 ,1620000000000 ,1620000000000 ,1616812421590 -1616812421621 ,112.5728422,26.88264854,65.1453476,190.5880493,192.261783,17.461493,0.158438359,1620000000000 ,1620000000000 ,1620000000000 ,1616812421600 -1616812421631 ,112.5728418,26.88264699,65.14500427,190.5986497,192.2561153,17.460814,0.158436513,1620000000000 ,1620000000000 ,1620000000000 ,1616812421610 -1616812421642 ,112.5728415,26.88264544,65.14467621,190.6109168,192.2581634,17.462854,0.158452914,1620000000000 ,1620000000000 ,1620000000000 ,1616812421620 -1616812421653 ,112.5728412,26.8826439,65.14430237,190.6269267,192.2660786,17.464703,0.158465609,1620000000000 ,1620000000000 ,1620000000000 ,1616812421630 -1616812421660 ,112.5728408,26.88264235,65.14382935,190.6432372,192.2827291,17.469812,0.158494268,1620000000000 ,1620000000000 ,1620000000000 ,1616812421640 -1616812421672 ,112.5728405,26.8826408,65.14324188,190.6571981,192.2898656,17.474136,0.15854212,1620000000000 ,1620000000000 ,1620000000000 ,1616812421650 -1616812421681 ,112.5728402,26.88263925,65.1425705,190.6706399,192.2907307,17.477745,0.158563684,1620000000000 ,1620000000000 ,1620000000000 ,1616812421660 -1616812421692 ,112.5728398,26.8826377,65.14190674,190.6818961,192.3050267,17.482895,0.158605643,1620000000000 ,1620000000000 ,1620000000000 ,1616812421670 -1616812421711 ,112.5728395,26.88263615,65.14124298,190.6955838,192.3110226,17.484926,0.158628908,1620000000000 ,1620000000000 ,1620000000000 ,1616812421680 -1616812421713 ,112.5728391,26.8826346,65.14058685,190.7089163,192.3252679,17.488602,0.158659158,1620000000000 ,1620000000000 ,1620000000000 ,1616812421690 -1616812421721 ,112.5728388,26.88263305,65.13998413,190.7212107,192.3430922,17.492767,0.158706479,1620000000000 ,1620000000000 ,1620000000000 ,1616812421700 -1616812421731 ,112.5728385,26.8826315,65.13949585,190.73274,192.3469594,17.494131,0.158718976,1620000000000 ,1620000000000 ,1620000000000 ,1616812421710 -1616812421744 ,112.5728381,26.88262995,65.13908386,190.743723,192.350208,17.496408,0.158739307,1620000000000 ,1620000000000 ,1620000000000 ,1616812421720 -1616812421753 ,112.5728378,26.8826284,65.13871765,190.7567003,192.3618478,17.495047,0.158737455,1620000000000 ,1620000000000 ,1620000000000 ,1616812421730 -1616812421761 ,112.5728374,26.88262685,65.13844299,190.771235,192.3950156,17.496153,0.158739848,1620000000000 ,1620000000000 ,1620000000000 ,1616812421740 -1616812421772 ,112.5728371,26.8826253,65.13834381,190.7857696,192.4225319,17.50046,0.158788037,1620000000000 ,1620000000000 ,1620000000000 ,1616812421750 -1616812421786 ,112.5728368,26.88262375,65.13838196,190.7979,192.4267288,17.505318,0.158830322,1620000000000 ,1620000000000 ,1620000000000 ,1616812421760 -1616812421794 ,112.5728364,26.88262219,65.13852692,190.8103856,192.4391784,17.51095,0.158892389,1620000000000 ,1620000000000 ,1620000000000 ,1616812421770 -1616812421804 ,112.5728361,26.88262064,65.13877869,190.8192922,192.4519493,17.511652,0.158906445,1620000000000 ,1620000000000 ,1620000000000 ,1616812421780 -1616812421813 ,112.5728357,26.88261909,65.13909912,190.8287452,192.4801209,17.51377,0.158932852,1620000000000 ,1620000000000 ,1620000000000 ,1616812421790 -1616812421823 ,112.5728354,26.88261754,65.13948059,190.8413127,192.5009747,17.512913,0.158935194,1620000000000 ,1620000000000 ,1620000000000 ,1616812421800 -1616812421833 ,112.572835,26.88261599,65.13999939,190.8555468,192.5125688,17.51105,0.158932264,1620000000000 ,1620000000000 ,1620000000000 ,1616812421810 -1616812421858 ,112.5728347,26.88261444,65.14070892,190.870983,192.5260606,17.509323,0.158927441,1620000000000 ,1620000000000 ,1620000000000 ,1616812421830 -1616812421863 ,112.5728344,26.88261288,65.14151001,190.8838238,192.5447949,17.510271,0.158928568,1620000000000 ,1620000000000 ,1620000000000 ,1616812421830 -1616812421866 ,112.572834,26.88261133,65.14224243,190.8951892,192.5669263,17.51648,0.158983383,1620000000000 ,1620000000000 ,1620000000000 ,1616812421850 -1616812421874 ,112.5728333,26.88260823,65.14352417,190.9122374,192.6400863,17.525383,0.31808335,1620000000000 ,1620000000000 ,1620000000000 ,1616812421860 -1616812421883 ,112.5728333,26.88260823,65.14352417,190.9122374,-400,17.525383,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812421870 -1616812421895 ,112.572833,26.88260668,65.14424896,190.921144,192.6813264,17.530056,0.159127784,1620000000000 ,1620000000000 ,1620000000000 ,1616812421880 -1616812421904 ,112.5728326,26.88260512,65.14511871,190.9306516,192.685475,17.528631,0.159135025,1620000000000 ,1620000000000 ,1620000000000 ,1616812421880 -1616812421915 ,112.5728319,26.88260202,65.14717102,190.9485193,192.6912368,17.52798,0.318284906,1620000000000 ,1620000000000 ,1620000000000 ,1616812421900 -1616812421925 ,112.5728319,26.88260202,65.14717102,190.9485193,-400,17.52798,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812421910 -1616812421934 ,112.5728312,26.88259891,65.14851379,190.9734632,192.7311217,17.539265,0.31838715,1620000000000 ,1620000000000 ,1620000000000 ,1616812421920 -1616812421944 ,112.5728309,26.88259736,65.14867401,190.9851018,192.7583127,17.545671,0.159269379,1620000000000 ,1620000000000 ,1620000000000 ,1616812421930 -1616812421958 ,112.5728305,26.88259581,65.14860535,190.9958116,192.7573631,17.549126,0.15928854,1620000000000 ,1620000000000 ,1620000000000 ,1616812421940 -1616812421963 ,112.5728302,26.88259425,65.14840698,191.0026144,192.7636837,17.554441,0.159328061,1620000000000 ,1620000000000 ,1620000000000 ,1616812421950 -1616812421975 ,112.5728298,26.8825927,65.14813232,191.0069858,192.7813296,17.5593,0.159377817,1620000000000 ,1620000000000 ,1620000000000 ,1616812421960 -1616812421985 ,112.5728295,26.88259114,65.14788818,191.0110566,192.8203724,17.560911,0.159389083,1620000000000 ,1620000000000 ,1620000000000 ,1616812421970 -1616812421998 ,112.5728291,26.88258959,65.1477356,191.0163841,192.8389474,17.56646,0.159447484,1620000000000 ,1620000000000 ,1620000000000 ,1616812421980 -1616812422007 ,112.5728291,26.88258959,65.1477356,191.0163841,-400,17.56646,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812421980 -1616812422014 ,112.5728284,26.88258648,65.14768219,191.03264,192.8326173,17.567846,0.318935736,1620000000000 ,1620000000000 ,1620000000000 ,1616812422000 -1616812422024 ,112.572828,26.88258492,65.14771271,191.0424754,192.8237457,17.571047,0.15948766,1620000000000 ,1620000000000 ,1620000000000 ,1616812422010 -1616812422034 ,112.5728277,26.88258337,65.14775848,191.0536769,192.8288281,17.576157,0.159541895,1620000000000 ,1620000000000 ,1620000000000 ,1616812422020 -1616812422045 ,112.5728273,26.88258181,65.14774323,191.065179,192.8430739,17.580519,0.159584235,1620000000000 ,1620000000000 ,1620000000000 ,1616812422030 -1616812422056 ,112.572827,26.88258026,65.14764404,191.0763258,192.8564247,17.58358,0.159612996,1620000000000 ,1620000000000 ,1620000000000 ,1616812422040 -1616812422065 ,112.5728266,26.8825787,65.14749908,191.0851231,192.8579729,17.583261,0.159607205,1620000000000 ,1620000000000 ,1620000000000 ,1616812422050 -1616812422074 ,112.5728263,26.88257714,65.14737701,191.0938111,192.8566112,17.584234,0.159620989,1620000000000 ,1620000000000 ,1620000000000 ,1616812422060 -1616812422084 ,112.5728259,26.88257559,65.14727783,191.1034827,192.8599234,17.587214,0.159636757,1620000000000 ,1620000000000 ,1620000000000 ,1616812422070 -1616812422096 ,112.5728255,26.88257403,65.1472168,191.1124439,192.8615699,17.588287,0.15965679,1620000000000 ,1620000000000 ,1620000000000 ,1616812422080 -1616812422105 ,112.5728252,26.88257248,65.14727783,191.1207767,192.8592671,17.594044,0.159695173,1620000000000 ,1620000000000 ,1620000000000 ,1616812422090 -1616812422116 ,112.5728248,26.88257092,65.14749146,191.1278255,192.8611483,17.599304,0.159758843,1620000000000 ,1620000000000 ,1620000000000 ,1616812422100 -1616812422128 ,112.5728245,26.88256936,65.14778137,191.1355299,192.8571628,17.602299,0.159794951,1620000000000 ,1620000000000 ,1620000000000 ,1616812422110 -1616812422137 ,112.5728241,26.8825678,65.14809418,191.14695,192.8653936,17.600813,0.159788376,1620000000000 ,1620000000000 ,1620000000000 ,1616812422120 -1616812422146 ,112.5728238,26.88256624,65.14836121,191.1609929,192.8609386,17.603237,0.159810342,1620000000000 ,1620000000000 ,1620000000000 ,1616812422130 -1616812422156 ,112.5728234,26.88256469,65.14848328,191.177358,192.8538423,17.603836,0.15980019,1620000000000 ,1620000000000 ,1620000000000 ,1616812422140 -1616812422167 ,112.5728231,26.88256313,65.14839172,191.1941603,192.8430342,17.608814,0.159832508,1620000000000 ,1620000000000 ,1620000000000 ,1616812422150 -1616812422179 ,112.5728227,26.88256157,65.14808655,191.2074928,192.8457905,17.61578,0.159875517,1620000000000 ,1620000000000 ,1620000000000 ,1616812422160 -1616812422188 ,112.5728223,26.88256001,65.14768219,191.2198964,192.8555791,17.621666,0.159932357,1620000000000 ,1620000000000 ,1620000000000 ,1616812422170 -1616812422196 ,112.572822,26.88255845,65.14723206,191.2333382,192.8716785,17.625507,0.159968135,1620000000000 ,1620000000000 ,1620000000000 ,1616812422180 -1616812422207 ,112.5728216,26.88255689,65.14687347,191.2443758,192.8842844,17.625238,0.159978902,1620000000000 ,1620000000000 ,1620000000000 ,1616812422190 -1616812422227 ,112.5728213,26.88255533,65.14665985,191.2538015,192.8804356,17.629896,0.160017221,1620000000000 ,1620000000000 ,1620000000000 ,1616812422200 -1616812422240 ,112.5728209,26.88255381,65.14849854,191.2889633,194.1675402,17.58907,0.15635665,1620000000000 ,1620000000000 ,1620000000000 ,1616812422210 -1616812422241 ,112.5728205,26.8825523,65.15039063,191.3003561,194.2634985,17.592379,0.1562057,1620000000000 ,1620000000000 ,1620000000000 ,1616812422220 -1616812422248 ,112.5728201,26.88255079,65.15236664,191.3112297,194.2736707,17.58992,0.156197365,1620000000000 ,1620000000000 ,1620000000000 ,1616812422230 -1616812422257 ,112.5728197,26.88254927,65.15447998,191.3248081,194.290124,17.593014,0.156220286,1620000000000 ,1620000000000 ,1620000000000 ,1616812422240 -1616812422270 ,112.5728194,26.88254776,65.1566391,191.3410093,194.3033521,17.59702,0.156261402,1620000000000 ,1620000000000 ,1620000000000 ,1616812422250 -1616812422280 ,112.572819,26.88254624,65.15874481,191.3558445,194.327398,17.605097,0.156328478,1620000000000 ,1620000000000 ,1620000000000 ,1616812422260 -1616812422289 ,112.5728186,26.88254473,65.16085815,191.3668821,194.3363044,17.607224,0.156366971,1620000000000 ,1620000000000 ,1620000000000 ,1616812422270 -1616812422298 ,112.5728182,26.88254321,65.1631012,191.3749417,194.3477554,17.608067,0.1563837,1620000000000 ,1620000000000 ,1620000000000 ,1616812422280 -1616812422310 ,112.5728178,26.8825417,65.16542816,191.3873727,194.3721723,17.606924,0.156395477,1620000000000 ,1620000000000 ,1620000000000 ,1616812422290 -1616812422319 ,112.5728174,26.88254018,65.16782379,191.4000768,194.3988301,17.603647,0.156371047,1620000000000 ,1620000000000 ,1620000000000 ,1616812422300 -1616812422329 ,112.572817,26.88253867,65.17036438,191.4102128,194.4087081,17.601393,0.156358355,1620000000000 ,1620000000000 ,1620000000000 ,1616812422310 -1616812422340 ,112.5728166,26.88253716,65.17298126,191.4204308,194.4052516,17.60751,0.156399089,1620000000000 ,1620000000000 ,1620000000000 ,1616812422320 -1616812422350 ,112.5728162,26.88253564,65.1754837,191.4295832,194.4139375,17.61724,0.156482219,1620000000000 ,1620000000000 ,1620000000000 ,1616812422330 -1616812422358 ,112.5728159,26.88253412,65.17773438,191.4375882,194.4409259,17.62428,0.156555089,1620000000000 ,1620000000000 ,1620000000000 ,1616812422340 -1616812422369 ,112.5728155,26.88253261,65.17983246,191.4428338,194.4842153,17.628197,0.156599541,1620000000000 ,1620000000000 ,1620000000000 ,1616812422350 -1616812422380 ,112.5728151,26.88253109,65.18196106,191.4484619,194.4950527,17.62985,0.156635171,1620000000000 ,1620000000000 ,1620000000000 ,1616812422360 -1616812422390 ,112.5728147,26.88252957,65.18424988,191.4528878,194.495543,17.627878,0.156625178,1620000000000 ,1620000000000 ,1620000000000 ,1616812422370 -1616812422399 ,112.5728143,26.88252806,65.18666077,191.4599912,194.4882956,17.62753,0.156636065,1620000000000 ,1620000000000 ,1620000000000 ,1616812422380 -1616812422411 ,112.5728139,26.88252654,65.18901062,191.4716299,194.4943559,17.627361,0.156624313,1620000000000 ,1620000000000 ,1620000000000 ,1616812422390 -1616812422420 ,112.5728135,26.88252503,65.19110107,191.4828314,194.5175112,17.631992,0.156665183,1620000000000 ,1620000000000 ,1620000000000 ,1616812422400 -1616812422432 ,112.5728131,26.88252351,65.19284058,191.4909183,194.5483751,17.637007,0.156701042,1620000000000 ,1620000000000 ,1620000000000 ,1616812422410 -1616812422442 ,112.5728127,26.88252199,65.19430542,191.4983496,194.5643652,17.643902,0.156745409,1620000000000 ,1620000000000 ,1620000000000 ,1616812422420 -1616812422450 ,112.5728123,26.88252047,65.19556427,191.5059994,194.5570573,17.649626,0.156801398,1620000000000 ,1620000000000 ,1620000000000 ,1616812422430 -1616812422459 ,112.5728119,26.88251896,65.19667053,191.5130481,194.5626956,17.65191,0.156826829,1620000000000 ,1620000000000 ,1620000000000 ,1616812422440 -1616812422482 ,112.5728115,26.88251744,65.19773865,191.5209438,194.5839089,17.65048,0.156823926,1620000000000 ,1620000000000 ,1620000000000 ,1616812422450 -1616812422485 ,112.5728112,26.88251588,65.19689178,191.5273369,193.3774518,17.651382,0.160293476,1620000000000 ,1620000000000 ,1620000000000 ,1616812422460 -1616812422493 ,112.5728108,26.88251432,65.19612885,191.5330196,193.3821879,17.65556,0.160344501,1620000000000 ,1620000000000 ,1620000000000 ,1616812422470 -1616812422502 ,112.5728104,26.88251276,65.19532776,191.5407787,193.3829692,17.663462,0.160403548,1620000000000 ,1620000000000 ,1620000000000 ,1616812422480 -1616812422511 ,112.5728101,26.8825112,65.19443512,191.5471991,193.3830771,17.660864,0.1603965,1620000000000 ,1620000000000 ,1620000000000 ,1616812422490 -1616812422521 ,112.5728097,26.88250964,65.1934967,191.5543844,193.3969388,17.661945,0.160400804,1620000000000 ,1620000000000 ,1620000000000 ,1616812422500 -1616812422530 ,112.5728093,26.88250808,65.19244385,191.5669793,193.4020534,17.665419,0.160417588,1620000000000 ,1620000000000 ,1620000000000 ,1616812422510 -1616812422541 ,112.5728089,26.88250652,65.19112396,191.5804758,193.4083471,17.67274,0.160461442,1620000000000 ,1620000000000 ,1620000000000 ,1616812422520 -1616812422551 ,112.5728086,26.88250495,65.18949127,191.5952017,193.4214955,17.679474,0.160519269,1620000000000 ,1620000000000 ,1620000000000 ,1616812422530 -1616812422561 ,112.5728082,26.88250339,65.18763733,191.6041629,193.422573,17.685637,0.160549075,1620000000000 ,1620000000000 ,1620000000000 ,1616812422540 -1616812422574 ,112.5728078,26.88250183,65.18576813,191.6092172,193.4354471,17.68546,0.160571526,1620000000000 ,1620000000000 ,1620000000000 ,1616812422550 -1616812422580 ,112.5728074,26.88250027,65.18399048,191.6142715,193.4616613,17.689514,0.160591896,1620000000000 ,1620000000000 ,1620000000000 ,1616812422560 -1616812422592 ,112.5728071,26.88249871,65.18229675,191.6227683,193.4943009,17.69423,0.160633702,1620000000000 ,1620000000000 ,1620000000000 ,1616812422570 -1616812422601 ,112.5728067,26.88249715,65.18069458,191.6307733,193.4987453,17.697824,0.160676678,1620000000000 ,1620000000000 ,1620000000000 ,1616812422580 -1616812422612 ,112.5728063,26.88249558,65.17926025,191.6373576,193.48421,17.698586,0.160693401,1620000000000 ,1620000000000 ,1620000000000 ,1616812422590 -1616812422621 ,112.5728059,26.88249402,65.17803955,191.6453626,193.4694363,17.69649,0.160682054,1620000000000 ,1620000000000 ,1620000000000 ,1616812422600 -1616812422632 ,112.5728056,26.88249246,65.17698669,191.6570832,193.4774233,17.697311,0.160678658,1620000000000 ,1620000000000 ,1620000000000 ,1616812422610 -1616812422641 ,112.5728052,26.88249089,65.17604828,191.6695141,193.515665,17.699827,0.160712641,1620000000000 ,1620000000000 ,1620000000000 ,1616812422620 -1616812422654 ,112.5728048,26.88248933,65.17523956,191.6795955,193.5546862,17.703573,0.160754055,1620000000000 ,1620000000000 ,1620000000000 ,1616812422630 -1616812422661 ,112.5728044,26.88248777,65.17460632,191.6867262,193.5628419,17.707056,0.16078768,1620000000000 ,1620000000000 ,1620000000000 ,1616812422640 -1616812422672 ,112.5728041,26.88248621,65.17418671,191.691398,193.5615244,17.707338,0.160795426,1620000000000 ,1620000000000 ,1620000000000 ,1616812422650 -1616812422681 ,112.5728037,26.88248464,65.17390442,191.6960153,193.570419,17.711014,0.160837135,1620000000000 ,1620000000000 ,1620000000000 ,1616812422660 -1616812422690 ,112.5728033,26.88248308,65.17378998,191.7029274,193.5949579,17.711702,0.160855725,1620000000000 ,1620000000000 ,1620000000000 ,1616812422670 -1616812422709 ,112.5728029,26.88248152,65.17392731,191.7116427,193.6098439,17.705051,0.160822059,1620000000000 ,1620000000000 ,1620000000000 ,1616812422680 -1616812422718 ,112.5728026,26.88247995,65.17443085,191.7201941,193.6035192,17.70181,0.160796003,1620000000000 ,1620000000000 ,1620000000000 ,1616812422690 -1616812422723 ,112.5728022,26.88247839,65.17516327,191.7286909,193.5916293,17.703762,0.160809027,1620000000000 ,1620000000000 ,1620000000000 ,1616812422700 -1616812422732 ,112.5728018,26.88247683,65.17590332,191.737734,193.5966028,17.712374,0.16087434,1620000000000 ,1620000000000 ,1620000000000 ,1616812422710 -1616812422742 ,112.5728014,26.88247526,65.17652893,191.7431982,193.6209784,17.715977,0.160917955,1620000000000 ,1620000000000 ,1620000000000 ,1616812422720 -1616812422753 ,112.572801,26.8824737,65.17711639,191.7492907,193.6389784,17.718996,0.160946657,1620000000000 ,1620000000000 ,1620000000000 ,1616812422730 -1616812422762 ,112.5728007,26.88247213,65.17778015,191.7557657,193.6355798,17.718122,0.160962105,1620000000000 ,1620000000000 ,1620000000000 ,1616812422740 -1616812422776 ,112.5728003,26.88247057,65.17860413,191.7641532,193.631942,17.71602,0.160935604,1620000000000 ,1620000000000 ,1620000000000 ,1616812422750 -1616812422784 ,112.5727999,26.88246901,65.17960358,191.7710654,193.6279771,17.717453,0.160955116,1620000000000 ,1620000000000 ,1620000000000 ,1616812422760 -1616812422792 ,112.5727995,26.88246744,65.18062592,191.7791796,193.6236572,17.717375,0.160953917,1620000000000 ,1620000000000 ,1620000000000 ,1616812422770 -1616812422803 ,112.5727991,26.88246588,65.18148041,191.7880862,193.6441452,17.722168,0.160982604,1620000000000 ,1620000000000 ,1620000000000 ,1616812422780 -1616812422814 ,112.5727988,26.88246431,65.18210602,191.7968015,193.6766422,17.726694,0.161025292,1620000000000 ,1620000000000 ,1620000000000 ,1616812422790 -1616812422825 ,112.5727984,26.88246275,65.18254852,191.8025389,193.6720916,17.731775,0.161064465,1620000000000 ,1620000000000 ,1620000000000 ,1616812422800 -1616812422838 ,112.572798,26.88246118,65.1829834,191.8082762,193.6545203,17.735828,0.161099512,1620000000000 ,1620000000000 ,1620000000000 ,1616812422820 -1616812422846 ,112.5727976,26.88245962,65.18351746,191.8136311,193.6446559,17.735971,0.161115797,1620000000000 ,1620000000000 ,1620000000000 ,1616812422830 -1616812422853 ,112.5727972,26.88245805,65.1841507,191.820352,193.6558294,17.739933,0.161142875,1620000000000 ,1620000000000 ,1620000000000 ,1616812422840 -1616812422863 ,112.5727965,26.88245492,65.18553925,191.8385203,193.6751197,17.739647,0.322324874,1620000000000 ,1620000000000 ,1620000000000 ,1616812422850 -1616812422874 ,112.5727965,26.88245492,65.18553925,191.8385203,-400,17.739647,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812422860 -1616812422889 ,112.5727957,26.88245179,65.18704224,191.855186,193.6485078,17.742958,0.322376019,1620000000000 ,1620000000000 ,1620000000000 ,1616812422870 -1616812422893 ,112.5727953,26.88245022,65.18785095,191.863109,193.6554654,17.748352,0.161240624,1620000000000 ,1620000000000 ,1620000000000 ,1616812422880 -1616812422904 ,112.5727953,26.88245022,65.18785095,191.863109,-400,17.748352,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812422890 -1616812422914 ,112.5727946,26.88244709,65.18953705,191.8798566,193.6800172,17.75067,0.322544125,1620000000000 ,1620000000000 ,1620000000000 ,1616812422900 -1616812422924 ,112.5727942,26.88244552,65.19037628,191.8879436,193.6900965,17.753546,0.161316704,1620000000000 ,1620000000000 ,1620000000000 ,1616812422910 -1616812422936 ,112.5727938,26.88244395,65.19107819,191.8980249,193.6876101,17.757542,0.16134486,1620000000000 ,1620000000000 ,1620000000000 ,1616812422920 -1616812422944 ,112.5727934,26.88244238,65.19155121,191.9068222,193.6934662,17.76122,0.161383798,1620000000000 ,1620000000000 ,1620000000000 ,1616812422930 -1616812422957 ,112.572793,26.88244081,65.19181061,191.9147999,193.7099416,17.759567,0.161375739,1620000000000 ,1620000000000 ,1620000000000 ,1616812422940 -1616812422965 ,112.5727927,26.88243925,65.19191742,191.9260287,193.7270635,17.757874,0.161363284,1620000000000 ,1620000000000 ,1620000000000 ,1616812422950 -1616812422974 ,112.5727923,26.88243768,65.19187927,191.9380498,193.7337719,17.75907,0.161365547,1620000000000 ,1620000000000 ,1620000000000 ,1616812422960 -1616812422985 ,112.5727919,26.88243611,65.19169617,191.9477487,193.7326309,17.76172,0.161377721,1620000000000 ,1620000000000 ,1620000000000 ,1616812422970 -1616812422995 ,112.5727915,26.88243454,65.19130707,191.9546609,193.7280995,17.770853,0.16143781,1620000000000 ,1620000000000 ,1620000000000 ,1616812422980 -1616812423005 ,112.5727915,26.88243454,65.19130707,191.9546609,-400,17.770853,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812422990 -1616812423015 ,112.5727907,26.88243141,65.18982697,191.9684852,193.7579042,17.781456,0.323025762,1620000000000 ,1620000000000 ,1620000000000 ,1616812423000 -1616812423026 ,112.5727904,26.88242984,65.18884277,191.9753153,193.7827605,17.782383,0.161550084,1620000000000 ,1620000000000 ,1620000000000 ,1616812423010 -1616812423036 ,112.57279,26.88242827,65.18785858,191.9832384,193.8022099,17.780605,0.161544599,1620000000000 ,1620000000000 ,1620000000000 ,1616812423020 -1616812423050 ,112.5727896,26.8824267,65.18682861,191.9896861,193.7944985,17.777039,0.161515223,1620000000000 ,1620000000000 ,1620000000000 ,1616812423030 -1616812423057 ,112.5727892,26.88242513,65.18556213,191.9998767,193.779413,17.776924,0.161497847,1620000000000 ,1620000000000 ,1620000000000 ,1616812423040 -1616812423072 ,112.5727888,26.88242356,65.18392944,192.0098215,193.8032563,17.782122,0.161500998,1620000000000 ,1620000000000 ,1620000000000 ,1616812423050 -1616812423077 ,112.5727884,26.88242199,65.18192291,192.0202853,193.8372415,17.78945,0.161554629,1620000000000 ,1620000000000 ,1620000000000 ,1616812423060 -1616812423087 ,112.572788,26.88242042,65.1796875,192.0286181,193.863655,17.796444,0.161613452,1620000000000 ,1620000000000 ,1620000000000 ,1616812423070 -1616812423096 ,112.5727877,26.88241886,65.17745972,192.0364865,193.8697561,17.804882,0.161679036,1620000000000 ,1620000000000 ,1620000000000 ,1616812423080 -1616812423107 ,112.5727873,26.88241729,65.17533112,192.0421146,193.8628642,17.807981,0.161721433,1620000000000 ,1620000000000 ,1620000000000 ,1616812423090 -1616812423116 ,112.5727869,26.88241571,65.17326355,192.0485623,193.8550449,17.809504,0.16173308,1620000000000 ,1620000000000 ,1620000000000 ,1616812423100 -1616812423127 ,112.5727865,26.88241414,65.17118835,192.0560755,193.8749114,17.807814,0.16172521,1620000000000 ,1620000000000 ,1620000000000 ,1616812423110 -1616812423136 ,112.5727861,26.88241257,65.16912079,192.0615943,193.9158501,17.807749,0.161722078,1620000000000 ,1620000000000 ,1620000000000 ,1616812423120 -1616812423147 ,112.5727857,26.88241101,65.16721344,192.0652553,193.9337044,17.804737,0.161706932,1620000000000 ,1620000000000 ,1620000000000 ,1616812423130 -1616812423157 ,112.5727853,26.88240944,65.1655426,192.0685611,193.9336949,17.800749,0.161677043,1620000000000 ,1620000000000 ,1620000000000 ,1616812423140 -1616812423167 ,112.5727849,26.88240787,65.1639328,192.076648,193.9219201,17.806282,0.16169995,1620000000000 ,1620000000000 ,1620000000000 ,1616812423150 -1616812423177 ,112.5727845,26.8824063,65.16217041,192.0821122,193.9135829,17.816786,0.161755953,1620000000000 ,1620000000000 ,1620000000000 ,1616812423160 -1616812423188 ,112.5727842,26.88240473,65.16038513,192.0845164,193.9541587,17.820665,0.161836722,1620000000000 ,1620000000000 ,1620000000000 ,1616812423170 -1616812423199 ,112.5727838,26.88240315,65.15876007,192.0924121,193.9759422,17.832348,0.161924138,1620000000000 ,1620000000000 ,1620000000000 ,1616812423180 -1616812423207 ,112.5727834,26.88240158,65.15751648,192.0997614,193.9617859,17.828316,0.161919744,1620000000000 ,1620000000000 ,1620000000000 ,1616812423190 -1616812423219 ,112.572783,26.88240003,65.15835571,192.1081489,194.7612795,17.803215,0.160436603,1620000000000 ,1620000000000 ,1620000000000 ,1616812423200 -1616812423231 ,112.5727825,26.8823985,65.16149139,192.1076025,195.6097077,17.788567,0.158846165,1620000000000 ,1620000000000 ,1620000000000 ,1616812423210 -1616812423241 ,112.5727821,26.88239697,65.16498566,192.1060998,195.629286,17.785967,0.158808774,1620000000000 ,1620000000000 ,1620000000000 ,1616812423220 -1616812423247 ,112.5727817,26.88239544,65.1685257,192.1110449,195.6487049,17.797766,0.158892314,1620000000000 ,1620000000000 ,1620000000000 ,1616812423230 -1616812423258 ,112.5727813,26.88239391,65.17190552,192.1238037,195.6593618,17.81446,0.1590289,1620000000000 ,1620000000000 ,1620000000000 ,1616812423240 -1616812423270 ,112.5727808,26.88239238,65.17526245,192.1308251,195.6548625,17.821293,0.159123698,1620000000000 ,1620000000000 ,1620000000000 ,1616812423250 -1616812423278 ,112.5727804,26.88239085,65.17902374,192.1291585,195.6229948,17.81202,0.159083011,1620000000000 ,1620000000000 ,1620000000000 ,1616812423260 -1616812423288 ,112.57278,26.88238932,65.1833725,192.124596,195.6254439,17.79735,0.158972335,1620000000000 ,1620000000000 ,1620000000000 ,1616812423270 -1616812423298 ,112.5727795,26.88238779,65.18804169,192.1234758,195.6590899,17.796936,0.158952902,1620000000000 ,1620000000000 ,1620000000000 ,1616812423280 -1616812423309 ,112.5727791,26.88238626,65.19275665,192.1271914,195.696187,17.797358,0.158963297,1620000000000 ,1620000000000 ,1620000000000 ,1616812423290 -1616812423319 ,112.5727787,26.88238472,65.19749451,192.1294591,195.7110594,17.801493,0.159013542,1620000000000 ,1620000000000 ,1620000000000 ,1616812423300 -1616812423328 ,112.5727782,26.88238319,65.20243073,192.1303333,195.6701613,17.8012,0.159021963,1620000000000 ,1620000000000 ,1620000000000 ,1616812423310 -1616812423340 ,112.5727778,26.88238166,65.20751953,192.1287487,195.633927,17.802666,0.159029631,1620000000000 ,1620000000000 ,1620000000000 ,1616812423320 -1616812423350 ,112.5727774,26.88238013,65.21253967,192.1286121,195.6319679,17.804457,0.159053849,1620000000000 ,1620000000000 ,1620000000000 ,1616812423330 -1616812423359 ,112.572777,26.8823786,65.21738434,192.1314262,195.6861905,17.804192,0.159064426,1620000000000 ,1620000000000 ,1620000000000 ,1616812423340 -1616812423371 ,112.5727765,26.88237707,65.22212219,192.1318086,195.7238151,17.806854,0.159095278,1620000000000 ,1620000000000 ,1620000000000 ,1616812423350 -1616812423379 ,112.5727761,26.88237554,65.22692871,192.1339943,195.7000424,17.80245,0.159078542,1620000000000 ,1620000000000 ,1620000000000 ,1616812423360 -1616812423389 ,112.5727757,26.882374,65.23178101,192.136863,195.6567058,17.800493,0.159051247,1620000000000 ,1620000000000 ,1620000000000 ,1616812423370 -1616812423399 ,112.5727752,26.88237247,65.23649597,192.140442,195.640313,17.801182,0.159039498,1620000000000 ,1620000000000 ,1620000000000 ,1616812423380 -1616812423410 ,112.5727748,26.88237094,65.24086761,192.142655,195.6646499,17.807121,0.159081563,1620000000000 ,1620000000000 ,1620000000000 ,1616812423390 -1616812423421 ,112.5727744,26.88236941,65.24492645,192.1441576,195.7047751,17.809492,0.159113096,1620000000000 ,1620000000000 ,1620000000000 ,1616812423400 -1616812423429 ,112.572774,26.88236788,65.24885559,192.146316,195.7172943,17.808834,0.15911538,1620000000000 ,1620000000000 ,1620000000000 ,1616812423410 -1616812423443 ,112.5727735,26.88236635,65.2527771,192.1477366,195.6933549,17.809824,0.159126474,1620000000000 ,1620000000000 ,1620000000000 ,1616812423420 -1616812423451 ,112.5727731,26.88236481,65.25656128,192.1477093,195.6634715,17.81533,0.159147641,1620000000000 ,1620000000000 ,1620000000000 ,1616812423430 -1616812423462 ,112.5727727,26.88236328,65.26005554,192.1489114,195.6683003,17.819107,0.159175352,1620000000000 ,1620000000000 ,1620000000000 ,1616812423440 -1616812423472 ,112.5727722,26.88236173,65.26161194,192.1515615,194.8784244,17.822187,0.160574262,1620000000000 ,1620000000000 ,1620000000000 ,1616812423450 -1616812423479 ,112.5727719,26.88236016,65.26130676,192.1554684,194.1015024,17.826023,0.16199424,1620000000000 ,1620000000000 ,1620000000000 ,1616812423460 -1616812423491 ,112.5727715,26.88235859,65.26086426,192.1606594,194.0994431,17.827246,0.162007662,1620000000000 ,1620000000000 ,1620000000000 ,1616812423470 -1616812423499 ,112.5727711,26.88235702,65.26037598,192.1621074,194.0837338,17.824757,0.161993783,1620000000000 ,1620000000000 ,1620000000000 ,1616812423480 -1616812423514 ,112.5727707,26.88235544,65.25987244,192.1633641,194.0702104,17.825102,0.161986649,1620000000000 ,1620000000000 ,1620000000000 ,1616812423490 -1616812423522 ,112.5727703,26.88235387,65.2592392,192.1656044,194.0836739,17.82941,0.162005251,1620000000000 ,1620000000000 ,1620000000000 ,1616812423500 -1616812423531 ,112.5727699,26.8823523,65.25841522,192.1692381,194.1232999,17.835463,0.162053775,1620000000000 ,1620000000000 ,1620000000000 ,1616812423510 -1616812423546 ,112.5727695,26.88235073,65.25752258,192.1674895,194.1421745,17.838476,0.162101393,1620000000000 ,1620000000000 ,1620000000000 ,1616812423520 -1616812423552 ,112.5727691,26.88234916,65.25679779,192.1653585,194.1347927,17.833899,0.162075888,1620000000000 ,1620000000000 ,1620000000000 ,1616812423530 -1616812423562 ,112.5727687,26.88234759,65.25627899,192.1634461,194.1234844,17.833939,0.162074984,1620000000000 ,1620000000000 ,1620000000000 ,1616812423540 -1616812423574 ,112.5727683,26.88234601,65.25578308,192.1633368,194.1237351,17.836248,0.16208665,1620000000000 ,1620000000000 ,1620000000000 ,1616812423550 -1616812423581 ,112.5727679,26.88234444,65.25517273,192.1641018,194.1318044,17.841572,0.162132092,1620000000000 ,1620000000000 ,1620000000000 ,1616812423560 -1616812423591 ,112.5727675,26.88234287,65.25443268,192.1639925,194.145894,17.840889,0.1621385,1620000000000 ,1620000000000 ,1620000000000 ,1616812423570 -1616812423601 ,112.5727671,26.8823413,65.2535553,192.1673529,194.1291276,17.844046,0.162153701,1620000000000 ,1620000000000 ,1620000000000 ,1616812423580 -1616812423610 ,112.5727667,26.88233972,65.25247192,192.1712325,194.1100527,17.84788,0.16217259,1620000000000 ,1620000000000 ,1620000000000 ,1616812423590 -1616812423622 ,112.5727663,26.88233815,65.25118256,192.1718882,194.1078965,17.849382,0.16217968,1620000000000 ,1620000000000 ,1620000000000 ,1616812423600 -1616812423632 ,112.5727659,26.88233658,65.24983215,192.1686917,194.1078097,17.847334,0.162183888,1620000000000 ,1620000000000 ,1620000000000 ,1616812423610 -1616812423642 ,112.5727655,26.88233501,65.24850464,192.1690195,194.1125214,17.8448,0.162149028,1620000000000 ,1620000000000 ,1620000000000 ,1616812423620 -1616812423652 ,112.5727651,26.88233343,65.24716949,192.1718609,194.1268539,17.844446,0.162144014,1620000000000 ,1620000000000 ,1620000000000 ,1616812423630 -1616812423663 ,112.5727647,26.88233186,65.24589539,192.1722434,194.1245291,17.842337,0.162132184,1620000000000 ,1620000000000 ,1620000000000 ,1616812423640 -1616812423673 ,112.5727643,26.88233029,65.24475098,192.17238,194.1123563,17.847317,0.162171916,1620000000000 ,1620000000000 ,1620000000000 ,1616812423650 -1616812423684 ,112.5727639,26.88232872,65.24368286,192.1721068,194.1071405,17.853298,0.162217831,1620000000000 ,1620000000000 ,1620000000000 ,1616812423660 -1616812423693 ,112.5727636,26.88232714,65.24258423,192.174429,194.1188261,17.853676,0.162248471,1620000000000 ,1620000000000 ,1620000000000 ,1616812423670 -1616812423702 ,112.5727632,26.88232557,65.24149323,192.1760683,194.1252716,17.85253,0.162239045,1620000000000 ,1620000000000 ,1620000000000 ,1616812423680 -1616812423711 ,112.5727628,26.882324,65.24048615,192.1765874,194.1084125,17.845911,0.162196564,1620000000000 ,1620000000000 ,1620000000000 ,1616812423690 -1616812423721 ,112.5727624,26.88232242,65.23941803,192.1811772,194.0926899,17.845467,0.162164957,1620000000000 ,1620000000000 ,1620000000000 ,1616812423700 -1616812423732 ,112.572762,26.88232085,65.23802948,192.1912586,194.0855495,17.8501,0.162180609,1620000000000 ,1620000000000 ,1620000000000 ,1616812423710 -1616812423742 ,112.5727616,26.88231928,65.2361908,192.2003564,194.0874474,17.855824,0.162210001,1620000000000 ,1620000000000 ,1620000000000 ,1616812423720 -1616812423753 ,112.5727612,26.8823177,65.23406982,192.2058752,194.0745985,17.8617,0.162239281,1620000000000 ,1620000000000 ,1620000000000 ,1616812423730 -1616812423763 ,112.5727608,26.88231613,65.23188782,192.2067768,194.0767229,17.861732,0.162255455,1620000000000 ,1620000000000 ,1620000000000 ,1616812423740 -1616812423773 ,112.5727604,26.88231455,65.22981262,192.2110662,194.0804441,17.861217,0.162260357,1620000000000 ,1620000000000 ,1620000000000 ,1616812423750 -1616812423782 ,112.57276,26.88231298,65.22784424,192.2148637,194.0790921,17.863075,0.16225207,1620000000000 ,1620000000000 ,1620000000000 ,1616812423760 -1616812423795 ,112.5727596,26.88231141,65.22607422,192.2190438,194.0783241,17.866667,0.162293896,1620000000000 ,1620000000000 ,1620000000000 ,1616812423770 -1616812423803 ,112.5727592,26.88230983,65.22446442,192.2243987,194.0769064,17.870857,0.162336161,1620000000000 ,1620000000000 ,1620000000000 ,1616812423780 -1616812423815 ,112.5727588,26.88230826,65.22301483,192.2293984,194.0760259,17.866014,0.162319152,1620000000000 ,1620000000000 ,1620000000000 ,1616812423790 -1616812423830 ,112.5727584,26.88230668,65.22177124,192.236857,194.0687164,17.854837,0.162238807,1620000000000 ,1620000000000 ,1620000000000 ,1616812423800 -1616812423834 ,112.572758,26.88230511,65.22071838,192.2481404,194.0674777,17.848206,0.162164569,1620000000000 ,1620000000000 ,1620000000000 ,1616812423820 -1616812423845 ,112.5727576,26.88230354,65.21979523,192.2622106,194.068311,17.853651,0.162185832,1620000000000 ,1620000000000 ,1620000000000 ,1616812423830 -1616812423855 ,112.5727572,26.88230196,65.21892548,192.2763901,194.0685881,17.86371,0.162274502,1620000000000 ,1620000000000 ,1620000000000 ,1616812423840 -1616812423865 ,112.5727568,26.88230039,65.21814728,192.2864441,194.069618,17.867416,0.1623246,1620000000000 ,1620000000000 ,1620000000000 ,1616812423840 -1616812423875 ,112.5727561,26.88229724,65.21725464,192.3047764,194.0834185,17.860924,0.324621188,1620000000000 ,1620000000000 ,1620000000000 ,1616812423860 -1616812423883 ,112.5727557,26.88229567,65.2171936,192.3172346,194.1035565,17.851498,0.162232802,1620000000000 ,1620000000000 ,1620000000000 ,1616812423870 -1616812423895 ,112.5727553,26.88229409,65.21741486,192.3279717,194.0999246,17.848692,0.162200814,1620000000000 ,1620000000000 ,1620000000000 ,1616812423880 -1616812423907 ,112.5727553,26.88229409,65.21741486,192.3279717,-400,17.848692,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812423890 -1616812423918 ,112.5727545,26.88229095,65.21824646,192.3592266,194.0919317,17.86088,0.324524328,1620000000000 ,1620000000000 ,1620000000000 ,1616812423900 -1616812423923 ,112.5727545,26.88229095,65.21824646,192.3592266,-400,17.86088,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812423910 -1616812423934 ,112.5727537,26.8822878,65.21876526,192.3935142,194.1144327,17.863537,0.324698337,1620000000000 ,1620000000000 ,1620000000000 ,1616812423920 -1616812423945 ,112.5727533,26.88228622,65.21906281,192.4099613,194.1397675,17.858793,0.162313624,1620000000000 ,1620000000000 ,1620000000000 ,1616812423930 -1616812423954 ,112.5727529,26.88228465,65.21946716,192.4275012,194.149808,17.856936,0.162285704,1620000000000 ,1620000000000 ,1620000000000 ,1616812423940 -1616812423965 ,112.5727525,26.88228308,65.21993256,192.4463252,194.1619818,17.856438,0.16229517,1620000000000 ,1620000000000 ,1620000000000 ,1616812423950 -1616812423976 ,112.5727521,26.8822815,65.22040558,192.4656136,194.1704475,17.855484,0.162286462,1620000000000 ,1620000000000 ,1620000000000 ,1616812423960 -1616812423986 ,112.5727517,26.88227993,65.22097015,192.4819515,194.1864457,17.856863,0.162299709,1620000000000 ,1620000000000 ,1620000000000 ,1616812423970 -1616812423994 ,112.5727513,26.88227836,65.2216568,192.4976609,194.2054066,17.858908,0.162328491,1620000000000 ,1620000000000 ,1620000000000 ,1616812423980 -1616812424005 ,112.5727513,26.88227836,65.2216568,192.4976609,-400,17.858908,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812423990 -1616812424015 ,112.5727505,26.88227521,65.22309875,192.5343253,194.2477726,17.865318,0.32475995,1620000000000 ,1620000000000 ,1620000000000 ,1616812424000 -1616812424026 ,112.5727501,26.88227363,65.22387695,192.5489693,194.284406,17.86312,0.162406028,1620000000000 ,1620000000000 ,1620000000000 ,1616812424010 -1616812424037 ,112.5727497,26.88227206,65.22478485,192.5659355,194.2983857,17.85917,0.162387338,1620000000000 ,1620000000000 ,1620000000000 ,1616812424020 -1616812424047 ,112.5727493,26.88227049,65.22564697,192.5856884,194.3188904,17.859507,0.162384415,1620000000000 ,1620000000000 ,1620000000000 ,1616812424030 -1616812424057 ,112.5727489,26.88226891,65.22627258,192.6063155,194.3477435,17.861326,0.162391234,1620000000000 ,1620000000000 ,1620000000000 ,1616812424040 -1616812424067 ,112.5727485,26.88226734,65.2265625,192.6278443,194.3762615,17.86385,0.162406803,1620000000000 ,1620000000000 ,1620000000000 ,1616812424050 -1616812424079 ,112.5727481,26.88226577,65.22655487,192.6467229,194.3957844,17.867697,0.162434612,1620000000000 ,1620000000000 ,1620000000000 ,1616812424060 -1616812424088 ,112.5727477,26.88226419,65.22640228,192.6619952,194.4066507,17.874136,0.162481375,1620000000000 ,1620000000000 ,1620000000000 ,1616812424070 -1616812424100 ,112.5727473,26.88226262,65.22619629,192.6775681,194.4234185,17.874453,0.162497079,1620000000000 ,1620000000000 ,1620000000000 ,1616812424080 -1616812424112 ,112.5727469,26.88226105,65.22596741,192.6946982,194.4557905,17.871897,0.162484731,1620000000000 ,1620000000000 ,1620000000000 ,1616812424090 -1616812424120 ,112.5727465,26.88225947,65.22566986,192.7142052,194.4891198,17.86869,0.162463842,1620000000000 ,1620000000000 ,1620000000000 ,1616812424100 -1616812424128 ,112.5727461,26.8822579,65.22528839,192.734286,194.5001188,17.870949,0.162466708,1620000000000 ,1620000000000 ,1620000000000 ,1616812424110 -1616812424140 ,112.5727456,26.88225633,65.22477722,192.7541208,194.5042179,17.876059,0.162503303,1620000000000 ,1620000000000 ,1620000000000 ,1616812424120 -1616812424150 ,112.5727452,26.88225475,65.22402954,192.7751032,194.5298394,17.880487,0.162540584,1620000000000 ,1620000000000 ,1620000000000 ,1616812424130 -1616812424161 ,112.5727448,26.88225318,65.22299194,192.7951293,194.5648114,17.886366,0.162586175,1620000000000 ,1620000000000 ,1620000000000 ,1616812424140 -1616812424169 ,112.5727444,26.88225161,65.22174072,192.811631,194.6033277,17.889465,0.162611943,1620000000000 ,1620000000000 ,1620000000000 ,1616812424150 -1616812424179 ,112.572744,26.88225003,65.22040558,192.8280508,194.6297712,17.890656,0.162628382,1620000000000 ,1620000000000 ,1620000000000 ,1616812424160 -1616812424190 ,112.5727436,26.88224846,65.21907043,192.8444706,194.6410874,17.891962,0.162636691,1620000000000 ,1620000000000 ,1620000000000 ,1616812424170 -1616812424199 ,112.5727432,26.88224689,65.21773529,192.8615461,194.6633858,17.890244,0.162633926,1620000000000 ,1620000000000 ,1620000000000 ,1616812424180 -1616812424210 ,112.5727428,26.88224531,65.21637726,192.8782664,194.6852572,17.888752,0.162616116,1620000000000 ,1620000000000 ,1620000000000 ,1616812424190 -1616812424219 ,112.5727423,26.88224374,65.21474457,192.9181,195.4621728,17.895983,0.163376442,1620000000000 ,1620000000000 ,1620000000000 ,1616812424200 -1616812424231 ,112.5727419,26.88224216,65.21258545,192.9356126,196.1986544,17.900297,0.164244223,1620000000000 ,1620000000000 ,1620000000000 ,1616812424210 -1616812424242 ,112.5727414,26.88224058,65.21035767,192.9528247,196.2192606,17.907324,0.164303041,1620000000000 ,1620000000000 ,1620000000000 ,1616812424220 -1616812424249 ,112.572741,26.88223901,65.20809174,192.9676326,196.2442801,17.9097,0.164342525,1620000000000 ,1620000000000 ,1620000000000 ,1616812424230 -1616812424263 ,112.5727405,26.88223743,65.20586395,192.9828229,196.2713133,17.911888,0.164363655,1620000000000 ,1620000000000 ,1620000000000 ,1616812424240 -1616812424270 ,112.57274,26.88223585,65.20371246,192.9981772,196.2959701,17.909649,0.164366147,1620000000000 ,1620000000000 ,1620000000000 ,1616812424250 -1616812424279 ,112.5727396,26.88223427,65.20166779,193.015116,196.3063677,17.905668,0.164336484,1620000000000 ,1620000000000 ,1620000000000 ,1616812424260 -1616812424291 ,112.5727391,26.8822327,65.19972229,193.0311533,196.3133693,17.901701,0.164303008,1620000000000 ,1620000000000 ,1620000000000 ,1616812424270 -1616812424303 ,112.5727387,26.88223112,65.1978302,193.0468081,196.3275694,17.902199,0.164295744,1620000000000 ,1620000000000 ,1620000000000 ,1616812424280 -1616812424319 ,112.5727382,26.88222954,65.19595337,193.063665,196.3416985,17.907717,0.164341457,1620000000000 ,1620000000000 ,1620000000000 ,1616812424290 -1616812424322 ,112.5727377,26.88222797,65.19405365,193.0823251,196.361115,17.9147,0.164402329,1620000000000 ,1620000000000 ,1620000000000 ,1616812424300 -1616812424330 ,112.5727373,26.88222639,65.19207764,193.0997557,196.3887322,17.920378,0.164462718,1620000000000 ,1620000000000 ,1620000000000 ,1616812424310 -1616812424340 ,112.5727368,26.88222481,65.19010925,193.1151373,196.4152977,17.920246,0.164484088,1620000000000 ,1620000000000 ,1620000000000 ,1616812424320 -1616812424351 ,112.5727363,26.88222323,65.18824768,193.1277595,196.4249934,17.916956,0.164462176,1620000000000 ,1620000000000 ,1620000000000 ,1616812424330 -1616812424361 ,112.5727359,26.88222165,65.18653107,193.1414745,196.4336834,17.916103,0.164454546,1620000000000 ,1620000000000 ,1620000000000 ,1616812424340 -1616812424371 ,112.5727354,26.88222008,65.18491364,193.1542606,196.4572302,17.91254,0.164437122,1620000000000 ,1620000000000 ,1620000000000 ,1616812424350 -1616812424380 ,112.5727349,26.8822185,65.18338013,193.1711449,196.4803326,17.913849,0.164451336,1620000000000 ,1620000000000 ,1620000000000 ,1616812424360 -1616812424391 ,112.5727345,26.88221692,65.18192291,193.1864172,196.4906995,17.916256,0.164474361,1620000000000 ,1620000000000 ,1620000000000 ,1616812424370 -1616812424401 ,112.572734,26.88221535,65.18051147,193.1999136,196.4962259,17.917063,0.164485847,1620000000000 ,1620000000000 ,1620000000000 ,1616812424380 -1616812424411 ,112.5727335,26.88221377,65.17915344,193.2120714,196.499125,17.923912,0.164542427,1620000000000 ,1620000000000 ,1620000000000 ,1616812424390 -1616812424422 ,112.5727331,26.88221219,65.17787933,193.2261142,196.5118599,17.92325,0.164557568,1620000000000 ,1620000000000 ,1620000000000 ,1616812424400 -1616812424431 ,112.5727326,26.88221061,65.17676544,193.2395014,196.5419887,17.918667,0.164548969,1620000000000 ,1620000000000 ,1620000000000 ,1616812424410 -1616812424441 ,112.5727321,26.88220904,65.17588806,193.253435,196.5474537,17.908916,0.164479408,1620000000000 ,1620000000000 ,1620000000000 ,1616812424420 -1616812424457 ,112.5727317,26.88220746,65.17520142,193.2695542,196.5569033,17.905977,0.164447273,1620000000000 ,1620000000000 ,1620000000000 ,1616812424430 -1616812424461 ,112.5727312,26.88220588,65.17448425,193.2888973,196.5660767,17.910248,0.164471204,1620000000000 ,1620000000000 ,1620000000000 ,1616812424440 -1616812424472 ,112.5727307,26.88220431,65.17373657,193.3058635,195.8288386,17.921307,0.163748282,1620000000000 ,1620000000000 ,1620000000000 ,1616812424450 -1616812424481 ,112.5727303,26.88220273,65.17295074,193.317912,195.107401,17.927143,0.163028617,1620000000000 ,1620000000000 ,1620000000000 ,1616812424460 -1616812424492 ,112.5727299,26.88220116,65.17210388,193.3277474,195.1436521,17.930532,0.163070516,1620000000000 ,1620000000000 ,1620000000000 ,1616812424470 -1616812424503 ,112.5727295,26.88219959,65.17134094,193.3398505,195.1643569,17.928017,0.16306725,1620000000000 ,1620000000000 ,1620000000000 ,1616812424480 -1616812424514 ,112.572729,26.88219801,65.17063904,193.3530738,195.16157,17.920248,0.16301516,1620000000000 ,1620000000000 ,1620000000000 ,1616812424490 -1616812424522 ,112.5727286,26.88219644,65.16992188,193.369193,195.1560341,17.917513,0.162975383,1620000000000 ,1620000000000 ,1620000000000 ,1616812424500 -1616812424535 ,112.5727282,26.88219487,65.16905212,193.383755,195.1634617,17.92226,0.162994089,1620000000000 ,1620000000000 ,1620000000000 ,1616812424510 -1616812424545 ,112.5727278,26.88219329,65.16793823,193.4009124,195.1841965,17.926733,0.163028549,1620000000000 ,1620000000000 ,1620000000000 ,1616812424520 -1616812424553 ,112.5727273,26.88219172,65.16663361,193.4129062,195.2088467,17.935308,0.163088449,1620000000000 ,1620000000000 ,1620000000000 ,1616812424530 -1616812424565 ,112.5727269,26.88219015,65.16531372,193.419873,195.2158166,17.938656,0.163144817,1620000000000 ,1620000000000 ,1620000000000 ,1616812424540 -1616812424573 ,112.5727265,26.88218857,65.16415405,193.424299,195.2137166,17.936502,0.163128876,1620000000000 ,1620000000000 ,1620000000000 ,1616812424550 -1616812424583 ,112.5727261,26.882187,65.16320801,193.4325225,195.2419236,17.93135,0.16311263,1620000000000 ,1620000000000 ,1620000000000 ,1616812424560 -1616812424594 ,112.5727256,26.88218542,65.16239929,193.4428225,195.2615288,17.934336,0.163130545,1620000000000 ,1620000000000 ,1620000000000 ,1616812424580 -1616812424603 ,112.5727252,26.88218385,65.16161346,193.4554173,195.27355,17.935009,0.163136335,1620000000000 ,1620000000000 ,1620000000000 ,1616812424580 -1616812424614 ,112.5727248,26.88218228,65.16078949,193.4674385,195.2876553,17.932178,0.163119632,1620000000000 ,1620000000000 ,1620000000000 ,1616812424600 -1616812424624 ,112.5727243,26.8821807,65.15991211,193.4785034,195.2898876,17.929792,0.16310933,1620000000000 ,1620000000000 ,1620000000000 ,1616812424600 -1616812424636 ,112.5727235,26.88217756,65.15787506,193.497464,195.2968524,17.938026,0.326233447,1620000000000 ,1620000000000 ,1620000000000 ,1616812424620 -1616812424649 ,112.572723,26.88217598,65.15659332,193.5084742,195.3292397,17.947275,0.16321799,1620000000000 ,1620000000000 ,1620000000000 ,1616812424630 -1616812424654 ,112.572723,26.88217598,65.15659332,193.5084742,-400,17.947275,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812424640 -1616812424669 ,112.5727222,26.88217283,65.15396118,193.519949,195.340987,17.945244,0.326487078,1620000000000 ,1620000000000 ,1620000000000 ,1616812424650 -1616812424678 ,112.5727217,26.88217126,65.1529007,193.5261508,195.3212607,17.942774,0.163212767,1620000000000 ,1620000000000 ,1620000000000 ,1616812424660 -1616812424685 ,112.5727213,26.88216969,65.15194702,193.5329536,195.3400566,17.941412,0.163201094,1620000000000 ,1620000000000 ,1620000000000 ,1616812424670 -1616812424696 ,112.5727209,26.88216811,65.15094757,193.5435814,195.3595404,17.939022,0.163191292,1620000000000 ,1620000000000 ,1620000000000 ,1616812424680 -1616812424705 ,112.5727204,26.88216654,65.14981842,193.5540453,195.3678933,17.93792,0.163170089,1620000000000 ,1620000000000 ,1620000000000 ,1616812424690 -1616812424715 ,112.57272,26.88216497,65.14859009,193.5651102,195.3846758,17.940533,0.163184438,1620000000000 ,1620000000000 ,1620000000000 ,1616812424700 -1616812424726 ,112.5727196,26.88216339,65.14733887,193.5736069,195.4074661,17.944906,0.163221544,1620000000000 ,1620000000000 ,1620000000000 ,1616812424710 -1616812424737 ,112.5727191,26.88216182,65.14612579,193.5774865,195.4158689,17.94749,0.163253017,1620000000000 ,1620000000000 ,1620000000000 ,1616812424720 -1616812424747 ,112.5727187,26.88216024,65.14492798,193.5827594,195.4380894,17.950785,0.163279719,1620000000000 ,1620000000000 ,1620000000000 ,1616812424730 -1616812424756 ,112.5727183,26.88215867,65.1436615,193.5899721,195.4577942,17.953821,0.163308242,1620000000000 ,1620000000000 ,1620000000000 ,1616812424740 -1616812424766 ,112.5727178,26.8821571,65.14233398,193.5971028,195.468558,17.952139,0.163294733,1620000000000 ,1620000000000 ,1620000000000 ,1616812424750 -1616812424780 ,112.5727174,26.88215552,65.14108276,193.6041242,195.4525548,17.95117,0.163282596,1620000000000 ,1620000000000 ,1620000000000 ,1616812424760 -1616812424802 ,112.572717,26.88215395,65.13989258,193.6122658,195.4323495,17.954119,0.163304837,1620000000000 ,1620000000000 ,1620000000000 ,1616812424770 -1616812424804 ,112.5727165,26.88215237,65.13863373,193.622675,195.4329963,17.959896,0.163339572,1620000000000 ,1620000000000 ,1620000000000 ,1616812424780 -1616812424809 ,112.5727161,26.8821508,65.13722229,193.6317182,195.4570319,17.960045,0.163352992,1620000000000 ,1620000000000 ,1620000000000 ,1616812424790 -1616812424820 ,112.5727157,26.88214923,65.1357193,193.6349694,195.4647157,17.956587,0.163342687,1620000000000 ,1620000000000 ,1620000000000 ,1616812424800 -1616812424829 ,112.5727152,26.88214765,65.13420868,193.6381659,195.4710798,17.957834,0.163320825,1620000000000 ,1620000000000 ,1620000000000 ,1616812424810 -1616812424836 ,112.5727148,26.88214608,65.13276672,193.6439852,195.509388,17.961237,0.163350897,1620000000000 ,1620000000000 ,1620000000000 ,1616812424820 -1616812424848 ,112.5727144,26.8821445,65.13131714,193.6543398,195.5287439,17.96603,0.163401582,1620000000000 ,1620000000000 ,1620000000000 ,1616812424830 -1616812424863 ,112.5727139,26.88214293,65.13000488,193.6634649,195.5390254,17.963753,0.163410941,1620000000000 ,1620000000000 ,1620000000000 ,1616812424840 -1616812424869 ,112.5727135,26.88214135,65.12905884,193.6696394,195.5422211,17.959755,0.163380413,1620000000000 ,1620000000000 ,1620000000000 ,1616812424850 -1616812424878 ,112.572713,26.88213978,65.128479,193.6772892,195.5495837,17.958109,0.163367366,1620000000000 ,1620000000000 ,1620000000000 ,1616812424860 -1616812424887 ,112.5727126,26.88213821,65.12802887,193.6831632,195.5690298,17.957664,0.163382168,1620000000000 ,1620000000000 ,1620000000000 ,1616812424870 -1616812424898 ,112.5727122,26.88213663,65.12754822,193.6919331,195.5895362,17.963705,0.163422306,1620000000000 ,1620000000000 ,1620000000000 ,1616812424880 -1616812424909 ,112.5727117,26.88213506,65.12708282,193.6991458,195.6005916,17.963726,0.163450728,1620000000000 ,1620000000000 ,1620000000000 ,1616812424890 -1616812424921 ,112.5727113,26.88213348,65.12677002,193.7065771,195.5898893,17.959871,0.163424396,1620000000000 ,1620000000000 ,1620000000000 ,1616812424900 -1616812424929 ,112.5727108,26.88213191,65.12646484,193.716112,195.5810958,17.960182,0.163417512,1620000000000 ,1620000000000 ,1620000000000 ,1616812424910 -1616812424938 ,112.5727104,26.88213034,65.12597656,193.7240623,195.5911327,17.961643,0.163432439,1620000000000 ,1620000000000 ,1620000000000 ,1616812424920 -1616812424948 ,112.57271,26.88212876,65.1252594,193.7304008,195.6158565,17.969183,0.163472845,1620000000000 ,1620000000000 ,1620000000000 ,1616812424930 -1616812424961 ,112.5727095,26.88212719,65.12442017,193.731357,195.6409318,17.972916,0.163520269,1620000000000 ,1620000000000 ,1620000000000 ,1616812424940 -1616812424970 ,112.5727091,26.88212561,65.12362671,193.7295265,195.65129,17.97399,0.163541715,1620000000000 ,1620000000000 ,1620000000000 ,1616812424950 -1616812424977 ,112.5727086,26.88212404,65.12306213,193.7304281,195.6441678,17.971386,0.163541031,1620000000000 ,1620000000000 ,1620000000000 ,1616812424960 -1616812424988 ,112.5727082,26.88212246,65.12272644,193.7333787,195.6387376,17.968592,0.163524499,1620000000000 ,1620000000000 ,1620000000000 ,1616812424970 -1616812424998 ,112.5727078,26.88212089,65.12249756,193.7399903,195.6348311,17.967958,0.163522681,1620000000000 ,1620000000000 ,1620000000000 ,1616812424980 -1616812425010 ,112.5727073,26.88211931,65.12221527,193.7479407,195.6493353,17.965305,0.163512458,1620000000000 ,1620000000000 ,1620000000000 ,1616812424990 -1616812425019 ,112.5727069,26.88211774,65.12174988,193.7600984,195.6520858,17.968462,0.163523484,1620000000000 ,1620000000000 ,1620000000000 ,1616812425000 -1616812425028 ,112.5727064,26.88211616,65.12100983,193.7699612,195.6404182,17.972065,0.163550236,1620000000000 ,1620000000000 ,1620000000000 ,1616812425010 -1616812425039 ,112.572706,26.88211459,65.12000275,193.7782667,195.6382139,17.977015,0.163572071,1620000000000 ,1620000000000 ,1620000000000 ,1616812425020 -1616812425049 ,112.5727056,26.88211301,65.11882019,193.7837036,195.6560432,17.978481,0.163605048,1620000000000 ,1620000000000 ,1620000000000 ,1616812425030 -1616812425060 ,112.5727051,26.88211144,65.11756897,193.7887306,195.6600115,17.980207,0.163609809,1620000000000 ,1620000000000 ,1620000000000 ,1616812425040 -1616812425075 ,112.5727047,26.88210986,65.11637115,193.7941674,195.6571738,17.982183,0.163630995,1620000000000 ,1620000000000 ,1620000000000 ,1616812425050 -1616812425084 ,112.5727042,26.88210829,65.11520386,193.8000414,195.6641638,17.98027,0.163628032,1620000000000 ,1620000000000 ,1620000000000 ,1616812425060 -1616812425093 ,112.5727038,26.88210671,65.1138382,193.8088933,195.6603212,17.980589,0.163616758,1620000000000 ,1620000000000 ,1620000000000 ,1616812425070 -1616812425101 ,112.5727034,26.88210514,65.11212158,193.8195757,195.6602149,17.983305,0.163623811,1620000000000 ,1620000000000 ,1620000000000 ,1616812425080 -1616812425111 ,112.5727029,26.88210356,65.11013031,193.8251491,195.6661641,17.990011,0.163651842,1620000000000 ,1620000000000 ,1620000000000 ,1616812425090 -1616812425123 ,112.5727025,26.88210198,65.1080246,193.8324165,195.6653279,17.995016,0.163703346,1620000000000 ,1620000000000 ,1620000000000 ,1616812425100 -1616812425134 ,112.572702,26.88210041,65.10590363,193.8404214,195.6699592,17.995909,0.163725284,1620000000000 ,1620000000000 ,1620000000000 ,1616812425110 -1616812425140 ,112.5727016,26.88209883,65.10370636,193.8517322,195.6608326,18.001266,0.16376241,1620000000000 ,1620000000000 ,1620000000000 ,1616812425120 -1616812425152 ,112.5727011,26.88209725,65.10138702,193.8614584,195.6743901,17.999083,0.163736638,1620000000000 ,1620000000000 ,1620000000000 ,1616812425130 -1616812425163 ,112.5727007,26.88209568,65.09898376,193.8697639,195.6806834,18.008259,0.163799024,1620000000000 ,1620000000000 ,1620000000000 ,1616812425140 -1616812425172 ,112.5727003,26.8820941,65.09654999,193.8803644,195.6791069,18.013397,0.163862301,1620000000000 ,1620000000000 ,1620000000000 ,1616812425150 -1616812425180 ,112.5726998,26.88209252,65.09408569,193.8900086,195.6909646,18.007587,0.163826454,1620000000000 ,1620000000000 ,1620000000000 ,1616812425160 -1616812425190 ,112.5726994,26.88209095,65.09175873,193.9008003,195.7032804,17.992664,0.163715621,1620000000000 ,1620000000000 ,1620000000000 ,1616812425170 -1616812425200 ,112.5726989,26.88208937,65.08966827,193.9097069,195.7051025,17.984734,0.163632625,1620000000000 ,1620000000000 ,1620000000000 ,1616812425180 -1616812425214 ,112.5726985,26.8820878,65.08761597,193.9180124,195.7042098,17.99774,0.163702853,1620000000000 ,1620000000000 ,1620000000000 ,1616812425190 -1616812425223 ,112.572698,26.88208622,65.08490753,193.9330115,196.5206971,18.044733,0.164812371,1620000000000 ,1620000000000 ,1620000000000 ,1616812425200 -1616812425230 ,112.5726975,26.88208463,65.08126831,193.9403881,197.4682468,18.05357,0.166180749,1620000000000 ,1620000000000 ,1620000000000 ,1616812425210 -1616812425245 ,112.572697,26.88208304,65.07762146,193.9465626,197.4857866,18.053558,0.166212599,1620000000000 ,1620000000000 ,1620000000000 ,1616812425220 -1616812425251 ,112.5726965,26.88208146,65.07429504,193.953584,197.4864778,18.039326,0.166119587,1620000000000 ,1620000000000 ,1620000000000 ,1616812425230 -1616812425265 ,112.572696,26.88207988,65.07138824,193.9639386,197.4669001,18.030064,0.166032965,1620000000000 ,1620000000000 ,1620000000000 ,1616812425240 -1616812425272 ,112.5726955,26.88207829,65.06861115,193.9792655,197.4622866,18.028757,0.165999976,1620000000000 ,1620000000000 ,1620000000000 ,1616812425250 -1616812425282 ,112.572695,26.88207671,65.06568146,193.9957673,197.4840186,18.03724,0.166051009,1620000000000 ,1620000000000 ,1620000000000 ,1616812425260 -1616812425292 ,112.5726945,26.88207513,65.06243134,194.0094276,197.5140683,18.046947,0.166131489,1620000000000 ,1620000000000 ,1620000000000 ,1616812425270 -1616812425302 ,112.572694,26.88207354,65.05903625,194.0192904,197.5362945,18.05398,0.166206674,1620000000000 ,1620000000000 ,1620000000000 ,1616812425280 -1616812425312 ,112.5726935,26.88207196,65.05571747,194.0299182,197.5291634,18.056004,0.166232385,1620000000000 ,1620000000000 ,1620000000000 ,1616812425290 -1616812425322 ,112.572693,26.88207037,65.0526123,194.0368577,197.5263691,18.056774,0.166243164,1620000000000 ,1620000000000 ,1620000000000 ,1616812425300 -1616812425341 ,112.5726925,26.88206878,65.04979706,194.0443163,197.5370328,18.054329,0.16624853,1620000000000 ,1620000000000 ,1620000000000 ,1616812425310 -1616812425345 ,112.572692,26.8820672,65.04723358,194.0526491,197.5525348,18.049139,0.166216004,1620000000000 ,1620000000000 ,1620000000000 ,1616812425320 -1616812425353 ,112.5726915,26.88206562,65.04488373,194.0639872,197.565862,18.046907,0.166200043,1620000000000 ,1620000000000 ,1620000000000 ,1616812425330 -1616812425361 ,112.572691,26.88206403,65.04259491,194.0799425,197.5641216,18.045631,0.166191646,1620000000000 ,1620000000000 ,1620000000000 ,1616812425340 -1616812425375 ,112.5726905,26.88206245,65.04029846,194.0959525,197.5865519,18.046816,0.16619922,1620000000000 ,1620000000000 ,1620000000000 ,1616812425350 -1616812425383 ,112.57269,26.88206086,65.03803253,194.1084927,197.5994851,18.052273,0.166243797,1620000000000 ,1620000000000 ,1620000000000 ,1616812425360 -1616812425395 ,112.5726895,26.88205928,65.03586578,194.1196396,197.6161116,18.055473,0.166290779,1620000000000 ,1620000000000 ,1620000000000 ,1616812425370 -1616812425406 ,112.572689,26.88205769,65.03379822,194.1333546,197.6518033,18.054468,0.16629696,1620000000000 ,1620000000000 ,1620000000000 ,1616812425380 -1616812425416 ,112.5726885,26.88205611,65.03179169,194.1454031,197.6803144,18.055079,0.166310295,1620000000000 ,1620000000000 ,1620000000000 ,1616812425390 -1616812425423 ,112.572688,26.88205452,65.02993011,194.1564953,197.7022789,18.054644,0.166319253,1620000000000 ,1620000000000 ,1620000000000 ,1616812425400 -1616812425434 ,112.5726875,26.88205294,65.02825165,194.165757,197.7073731,18.05818,0.166347282,1620000000000 ,1620000000000 ,1620000000000 ,1616812425410 -1616812425443 ,112.572687,26.88205135,65.02661133,194.1750461,197.7088032,18.060371,0.16638097,1620000000000 ,1620000000000 ,1620000000000 ,1616812425420 -1616812425454 ,112.5726865,26.88204977,65.02488708,194.186029,197.7186295,18.060305,0.166383228,1620000000000 ,1620000000000 ,1620000000000 ,1616812425430 -1616812425467 ,112.572686,26.88204818,65.02309418,194.1979135,197.7390418,18.061026,0.166394534,1620000000000 ,1620000000000 ,1620000000000 ,1616812425450 -1616812425475 ,112.5726855,26.8820466,65.02177429,194.2102898,196.9637006,18.05838,0.165376824,1620000000000 ,1620000000000 ,1620000000000 ,1616812425460 -1616812425483 ,112.572685,26.88204502,65.02094269,194.2232945,196.17219,18.058783,0.164396401,1620000000000 ,1620000000000 ,1620000000000 ,1616812425470 -1616812425495 ,112.5726841,26.88204186,65.01906586,194.2464898,196.1931418,18.067577,0.328877539,1620000000000 ,1620000000000 ,1620000000000 ,1616812425480 -1616812425504 ,112.5726841,26.88204186,65.01906586,194.2464898,-400,18.067577,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812425480 -1616812425515 ,112.5726836,26.88204029,65.01795959,194.2561341,196.2309325,18.068998,0.164489058,1620000000000 ,1620000000000 ,1620000000000 ,1616812425500 -1616812425524 ,112.5726827,26.88203713,65.01599121,194.274357,196.253414,18.074108,0.329077608,1620000000000 ,1620000000000 ,1620000000000 ,1616812425510 -1616812425534 ,112.5726823,26.88203555,65.01519775,194.2883999,196.2628066,18.068953,0.164535548,1620000000000 ,1620000000000 ,1620000000000 ,1616812425520 -1616812425546 ,112.5726818,26.88203397,65.01445007,194.3068141,196.2628768,18.06318,0.164481174,1620000000000 ,1620000000000 ,1620000000000 ,1616812425530 -1616812425555 ,112.5726813,26.88203239,65.01356506,194.3277964,196.2662381,18.062805,0.164465124,1620000000000 ,1620000000000 ,1620000000000 ,1616812425540 -1616812425565 ,112.5726809,26.88203081,65.0124588,194.3420032,196.2721737,18.067781,0.164488062,1620000000000 ,1620000000000 ,1620000000000 ,1616812425550 -1616812425574 ,112.5726804,26.88202923,65.01107788,194.3543795,196.2941547,18.07629,0.164555161,1620000000000 ,1620000000000 ,1620000000000 ,1616812425560 -1616812425584 ,112.57268,26.88202765,65.00943756,194.3653898,196.3293122,18.079935,0.16458601,1620000000000 ,1620000000000 ,1620000000000 ,1616812425570 -1616812425595 ,112.5726795,26.88202607,65.00759888,194.3760449,196.3560289,18.081451,0.164604465,1620000000000 ,1620000000000 ,1620000000000 ,1616812425580 -1616812425604 ,112.572679,26.88202449,65.00572968,194.3858257,196.3555404,18.080692,0.164601471,1620000000000 ,1620000000000 ,1620000000000 ,1616812425590 -1616812425615 ,112.5726786,26.88202291,65.00399017,194.3965354,196.3504852,18.080622,0.164593818,1620000000000 ,1620000000000 ,1620000000000 ,1616812425600 -1616812425625 ,112.5726781,26.88202133,65.00233459,194.406972,196.3465293,18.087353,0.16464768,1620000000000 ,1620000000000 ,1620000000000 ,1616812425610 -1616812425637 ,112.5726776,26.88201975,65.00061798,194.4191844,196.360994,18.088945,0.164668338,1620000000000 ,1620000000000 ,1620000000000 ,1616812425620 -1616812425647 ,112.5726772,26.88201817,64.99872589,194.4346752,196.3844431,18.088205,0.164669232,1620000000000 ,1620000000000 ,1620000000000 ,1616812425630 -1616812425658 ,112.5726767,26.88201659,64.99674225,194.4450025,196.4008849,18.086243,0.164647855,1620000000000 ,1620000000000 ,1620000000000 ,1616812425640 -1616812425666 ,112.5726762,26.88201501,64.99475861,194.4557668,196.4074075,18.087828,0.164655292,1620000000000 ,1620000000000 ,1620000000000 ,1616812425650 -1616812425675 ,112.5726758,26.88201343,64.99271393,194.4732248,196.4099838,18.096323,0.164711104,1620000000000 ,1620000000000 ,1620000000000 ,1616812425660 -1616812425687 ,112.5726753,26.88201185,64.99045563,194.4910379,196.4201719,18.101017,0.164749107,1620000000000 ,1620000000000 ,1620000000000 ,1616812425670 -1616812425720 ,112.5726749,26.88201027,64.98807526,194.5046437,196.4380595,18.102976,0.164780815,1620000000000 ,1620000000000 ,1620000000000 ,1616812425680 -1616812425723 ,112.5726744,26.88200869,64.98583221,194.5157086,196.449581,18.100725,0.164762877,1620000000000 ,1620000000000 ,1620000000000 ,1616812425690 -1616812425732 ,112.5726739,26.88200711,64.9838562,194.5278663,196.469766,18.09971,0.164767315,1620000000000 ,1620000000000 ,1620000000000 ,1616812425700 -1616812425738 ,112.5726734,26.88200553,64.98200989,194.5380843,196.4741477,18.097347,0.164751204,1620000000000 ,1620000000000 ,1620000000000 ,1616812425710 -1616812425744 ,112.572673,26.88200395,64.98026276,194.5479744,196.4800844,18.094837,0.164737493,1620000000000 ,1620000000000 ,1620000000000 ,1616812425720 -1616812425749 ,112.5726725,26.88200237,64.97865295,194.5552144,196.4920291,18.09436,0.164730857,1620000000000 ,1620000000000 ,1620000000000 ,1616812425730 -1616812425759 ,112.572672,26.88200079,64.97711182,194.5684376,196.4881877,18.098469,0.164764655,1620000000000 ,1620000000000 ,1620000000000 ,1616812425740 -1616812425767 ,112.5726716,26.88199921,64.97546387,194.5855951,196.4857076,18.105747,0.164819988,1620000000000 ,1620000000000 ,1620000000000 ,1616812425750 -1616812425777 ,112.5726711,26.88199763,64.97366333,194.601687,196.5091674,18.107643,0.164850434,1620000000000 ,1620000000000 ,1620000000000 ,1616812425760 -1616812425788 ,112.5726706,26.88199605,64.97184753,194.6116591,196.5252637,18.108139,0.164855963,1620000000000 ,1620000000000 ,1620000000000 ,1616812425770 -1616812425796 ,112.5726702,26.88199447,64.97014618,194.624773,196.5248253,18.10374,0.164834659,1620000000000 ,1620000000000 ,1620000000000 ,1616812425780 -1616812425806 ,112.5726697,26.88199289,64.96850586,194.6367669,196.5346692,18.100597,0.164801658,1620000000000 ,1620000000000 ,1620000000000 ,1616812425790 -1616812425816 ,112.5726692,26.88199131,64.96691132,194.6504272,196.5533831,18.10016,0.164794862,1620000000000 ,1620000000000 ,1620000000000 ,1616812425800 -1616812425832 ,112.5726688,26.88198973,64.96535492,194.6642515,196.5723664,18.104109,0.164828158,1620000000000 ,1620000000000 ,1620000000000 ,1616812425810 -1616812425839 ,112.5726683,26.88198815,64.96385956,194.6753438,196.5776119,18.10769,0.164864854,1620000000000 ,1620000000000 ,1620000000000 ,1616812425820 -1616812425848 ,112.5726678,26.88198657,64.96239471,194.6872283,196.5767871,18.11099,0.164897144,1620000000000 ,1620000000000 ,1620000000000 ,1616812425830 -1616812425858 ,112.5726674,26.88198499,64.96102142,194.69649,196.5909477,18.108225,0.164893514,1620000000000 ,1620000000000 ,1620000000000 ,1616812425840 -1616812425877 ,112.5726669,26.88198341,64.95977783,194.7072544,196.6166741,18.105455,0.164880997,1620000000000 ,1620000000000 ,1620000000000 ,1616812425850 -1616812425880 ,112.5726664,26.88198183,64.95858002,194.7188657,196.6251236,18.10757,0.164885416,1620000000000 ,1620000000000 ,1620000000000 ,1616812425860 -1616812425888 ,112.5726659,26.88198025,64.95732117,194.732089,196.629999,18.109894,0.16490835,1620000000000 ,1620000000000 ,1620000000000 ,1616812425870 -1616812425898 ,112.5726655,26.88197867,64.95588684,194.7452029,196.6424357,18.112467,0.164926356,1620000000000 ,1620000000000 ,1620000000000 ,1616812425880 -1616812425907 ,112.572665,26.88197709,64.95426941,194.7581257,196.6463168,18.116064,0.164945505,1620000000000 ,1620000000000 ,1620000000000 ,1616812425890 -1616812425924 ,112.5726645,26.88197551,64.95252228,194.7695457,196.6538055,18.117754,0.164962584,1620000000000 ,1620000000000 ,1620000000000 ,1616812425900 -1616812425930 ,112.572664,26.88197393,64.95082092,194.7806653,196.6654117,18.119883,0.164982245,1620000000000 ,1620000000000 ,1620000000000 ,1616812425910 -1616812425944 ,112.5726636,26.88197235,64.94926453,194.7924952,196.6793584,18.115946,0.164969617,1620000000000 ,1620000000000 ,1620000000000 ,1616812425920 -1616812425948 ,112.5726631,26.88197077,64.94787598,194.8032869,196.6933671,18.113323,0.164954676,1620000000000 ,1620000000000 ,1620000000000 ,1616812425930 -1616812425958 ,112.5726626,26.88196919,64.94664764,194.8106635,196.6966182,18.115547,0.164961746,1620000000000 ,1620000000000 ,1620000000000 ,1616812425940 -1616812425974 ,112.5726622,26.88196761,64.94544983,194.8174117,196.6970841,18.117819,0.164988622,1620000000000 ,1620000000000 ,1620000000000 ,1616812425950 -1616812425977 ,112.5726617,26.88196603,64.94419098,194.8272745,196.7128261,18.124023,0.165037567,1620000000000 ,1620000000000 ,1620000000000 ,1616812425960 -1616812425991 ,112.5726612,26.88196445,64.9429245,194.8371919,196.7383327,18.126007,0.165072586,1620000000000 ,1620000000000 ,1620000000000 ,1616812425970 -1616812426002 ,112.5726607,26.88196287,64.94184875,194.8473279,196.7429559,18.123463,0.16507423,1620000000000 ,1620000000000 ,1620000000000 ,1616812425980 -1616812426009 ,112.5726603,26.88196129,64.94104004,194.8582016,196.7470063,18.12051,0.16506177,1620000000000 ,1620000000000 ,1620000000000 ,1616812425990 -1616812426019 ,112.5726598,26.88195971,64.94033813,194.8684742,196.7474861,18.117735,0.165045484,1620000000000 ,1620000000000 ,1620000000000 ,1616812426000 -1616812426029 ,112.5726593,26.88195813,64.93952942,194.8776266,196.7683522,18.119055,0.165042134,1620000000000 ,1620000000000 ,1620000000000 ,1616812426010 -1616812426039 ,112.5726588,26.88195655,64.93854523,194.8842383,196.8012518,18.118347,0.165046302,1620000000000 ,1620000000000 ,1620000000000 ,1616812426020 -1616812426049 ,112.5726583,26.88195497,64.93743896,194.8908499,196.8166427,18.122711,0.165074035,1620000000000 ,1620000000000 ,1620000000000 ,1616812426030 -1616812426059 ,112.5726579,26.88195339,64.93627167,194.8972703,196.8230095,18.125196,0.165100488,1620000000000 ,1620000000000 ,1620000000000 ,1616812426040 -1616812426074 ,112.5726574,26.88195181,64.93510437,194.904401,196.8273155,18.124937,0.165111413,1620000000000 ,1620000000000 ,1620000000000 ,1616812426050 -1616812426083 ,112.5726569,26.88195023,64.93392944,194.909346,196.829492,18.125513,0.165117894,1620000000000 ,1620000000000 ,1620000000000 ,1616812426060 -1616812426090 ,112.5726564,26.88194864,64.93276215,194.9126792,196.8367374,18.125551,0.16511977,1620000000000 ,1620000000000 ,1620000000000 ,1616812426070 -1616812426100 ,112.572656,26.88194706,64.93154907,194.9167227,196.8512658,18.128242,0.165137909,1620000000000 ,1620000000000 ,1620000000000 ,1616812426080 -1616812426114 ,112.5726555,26.88194548,64.93024445,194.921695,196.8715304,18.130161,0.165169471,1620000000000 ,1620000000000 ,1620000000000 ,1616812426090 -1616812426121 ,112.572655,26.8819439,64.92883301,194.9272138,196.8778817,18.130688,0.165172617,1620000000000 ,1620000000000 ,1620000000000 ,1616812426100 -1616812426132 ,112.5726545,26.88194232,64.92731476,194.9308475,196.8690645,18.127764,0.16515188,1620000000000 ,1620000000000 ,1620000000000 ,1616812426110 -1616812426140 ,112.572654,26.88194074,64.92560577,194.9343992,196.867566,18.130283,0.16515539,1620000000000 ,1620000000000 ,1620000000000 ,1616812426120 -1616812426150 ,112.5726536,26.88193916,64.92358398,194.9423768,196.8928166,18.135534,0.165179598,1620000000000 ,1620000000000 ,1620000000000 ,1616812426130 -1616812426161 ,112.5726531,26.88193758,64.9211731,194.9482235,196.9298401,18.140514,0.165216165,1620000000000 ,1620000000000 ,1620000000000 ,1616812426140 -1616812426173 ,112.5726526,26.881936,64.91849518,194.9524036,196.9485854,18.142027,0.165231334,1620000000000 ,1620000000000 ,1620000000000 ,1616812426150 -1616812426180 ,112.5726521,26.88193442,64.91586304,194.9530866,196.9476312,18.140293,0.165225934,1620000000000 ,1620000000000 ,1620000000000 ,1616812426160 -1616812426192 ,112.5726516,26.88193284,64.91337585,194.9533598,196.9426159,18.137978,0.165195789,1620000000000 ,1620000000000 ,1620000000000 ,1616812426170 -1616812426202 ,112.5726511,26.88193126,64.91091156,194.9539062,196.9522706,18.144096,0.165241021,1620000000000 ,1620000000000 ,1620000000000 ,1616812426180 -1616812426211 ,112.5726507,26.88192968,64.9083786,194.9544253,196.9805535,18.150087,0.165296623,1620000000000 ,1620000000000 ,1620000000000 ,1616812426190 -1616812426222 ,112.5726502,26.8819281,64.90569305,194.9653263,197.7085208,18.155432,0.165894914,1620000000000 ,1620000000000 ,1620000000000 ,1616812426200 -1616812426233 ,112.5726496,26.88192652,64.90286255,194.9616107,198.5757043,18.153894,0.166507227,1620000000000 ,1620000000000 ,1620000000000 ,1616812426210 -1616812426244 ,112.5726491,26.88192494,64.90003967,194.9610916,198.5689403,18.147776,0.166459031,1620000000000 ,1620000000000 ,1620000000000 ,1616812426220 -1616812426251 ,112.5726486,26.88192336,64.89719391,194.960873,198.5716522,18.147272,0.166437281,1620000000000 ,1620000000000 ,1620000000000 ,1616812426230 -1616812426262 ,112.572648,26.88192179,64.89428711,194.961638,198.5920529,18.147564,0.16643756,1620000000000 ,1620000000000 ,1620000000000 ,1616812426240 -1616812426273 ,112.5726475,26.88192021,64.89129639,194.9631133,198.5974566,18.154171,0.166487006,1620000000000 ,1620000000000 ,1620000000000 ,1616812426250 -1616812426281 ,112.572647,26.88191863,64.88822174,194.9625942,198.590814,18.16056,0.166528752,1620000000000 ,1620000000000 ,1620000000000 ,1616812426260 -1616812426291 ,112.5726464,26.88191705,64.88512421,194.9588786,198.5840191,18.16246,0.16656345,1620000000000 ,1620000000000 ,1620000000000 ,1616812426270 -1616812426301 ,112.5726459,26.88191547,64.88207245,194.9560645,198.5842452,18.164808,0.166579715,1620000000000 ,1620000000000 ,1620000000000 ,1616812426280 -1616812426311 ,112.5726454,26.88191389,64.87915039,194.9538789,198.588988,18.162645,0.166577177,1620000000000 ,1620000000000 ,1620000000000 ,1616812426290 -1616812426324 ,112.5726449,26.88191231,64.87643433,194.9517479,198.5786051,18.158625,0.166555903,1620000000000 ,1620000000000 ,1620000000000 ,1616812426300 -1616812426332 ,112.5726443,26.88191074,64.87393188,194.9517205,198.5643643,18.150322,0.166495349,1620000000000 ,1620000000000 ,1620000000000 ,1616812426310 -1616812426341 ,112.5726438,26.88190916,64.87158966,194.9499993,198.5514545,18.146585,0.166454303,1620000000000 ,1620000000000 ,1620000000000 ,1616812426320 -1616812426351 ,112.5726433,26.88190758,64.86927032,194.9507097,198.543857,18.14852,0.16645879,1620000000000 ,1620000000000 ,1620000000000 ,1616812426330 -1616812426363 ,112.5726427,26.881906,64.86679077,194.9513654,198.54728,18.158276,0.166519722,1620000000000 ,1620000000000 ,1620000000000 ,1616812426340 -1616812426373 ,112.5726422,26.88190442,64.86406708,194.954398,198.5605576,18.167448,0.166602519,1620000000000 ,1620000000000 ,1620000000000 ,1616812426350 -1616812426384 ,112.5726417,26.88190284,64.86119843,194.9559006,198.5514133,18.173231,0.166655552,1620000000000 ,1620000000000 ,1620000000000 ,1616812426360 -1616812426393 ,112.5726411,26.88190126,64.85845947,194.9531959,198.5257169,18.167236,0.166624622,1620000000000 ,1620000000000 ,1620000000000 ,1616812426370 -1616812426403 ,112.5726406,26.88189968,64.85604095,194.9539608,198.5098785,18.156055,0.166549992,1620000000000 ,1620000000000 ,1620000000000 ,1616812426380 -1616812426416 ,112.5726401,26.8818981,64.85379791,194.9575399,198.5151121,18.148928,0.166482135,1620000000000 ,1620000000000 ,1620000000000 ,1616812426390 -1616812426422 ,112.5726396,26.88189653,64.85150146,194.9638783,198.5233204,18.147509,0.166451944,1620000000000 ,1620000000000 ,1620000000000 ,1616812426400 -1616812426433 ,112.572639,26.88189495,64.84897614,194.970326,198.5224091,18.156303,0.166502947,1620000000000 ,1620000000000 ,1620000000000 ,1616812426410 -1616812426444 ,112.5726385,26.88189337,64.84620667,194.9722111,198.5189429,18.164654,0.166567184,1620000000000 ,1620000000000 ,1620000000000 ,1616812426420 -1616812426453 ,112.572638,26.88189179,64.84335327,194.9731947,198.5198369,18.169111,0.166620996,1620000000000 ,1620000000000 ,1620000000000 ,1616812426430 -1616812426462 ,112.5726374,26.88189021,64.84059906,194.9732766,198.5218801,18.16904,0.166632476,1620000000000 ,1620000000000 ,1620000000000 ,1616812426440 -1616812426472 ,112.5726369,26.88188863,64.8381958,194.9755716,197.8254011,18.165642,0.166049379,1620000000000 ,1620000000000 ,1620000000000 ,1616812426450 -1616812426483 ,112.5726364,26.88188705,64.83614349,194.9776206,197.1183343,18.159422,0.165464484,1620000000000 ,1620000000000 ,1620000000000 ,1616812426460 -1616812426493 ,112.572636,26.88188546,64.83425903,194.9798063,197.1140742,18.153542,0.165414473,1620000000000 ,1620000000000 ,1620000000000 ,1616812426480 -1616812426502 ,112.5726355,26.88188388,64.83234406,194.9824018,197.1012934,18.154745,0.165404895,1620000000000 ,1620000000000 ,1620000000000 ,1616812426480 -1616812426515 ,112.5726345,26.88188072,64.82776642,194.9907346,197.1107576,18.167719,0.330925787,1620000000000 ,1620000000000 ,1620000000000 ,1616812426500 -1616812426522 ,112.572634,26.88187914,64.82509613,194.9945048,197.1252162,18.172894,0.165537403,1620000000000 ,1620000000000 ,1620000000000 ,1616812426510 -1616812426532 ,112.572634,26.88187914,64.82509613,194.9945048,-400,18.172894,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812426520 -1616812426546 ,112.5726335,26.88187756,64.82234192,194.9945595,197.1261206,18.17274,0.165537016,1620000000000 ,1620000000000 ,1620000000000 ,1616812426530 -1616812426555 ,112.572633,26.88187598,64.81969452,194.9953791,197.1245821,18.17247,0.165544425,1620000000000 ,1620000000000 ,1620000000000 ,1616812426540 -1616812426564 ,112.5726321,26.88187281,64.81482697,194.9993679,197.1409923,18.17078,0.331067828,1620000000000 ,1620000000000 ,1620000000000 ,1616812426550 -1616812426573 ,112.5726316,26.88187123,64.81241608,195.0005701,197.1613285,18.170534,0.165537904,1620000000000 ,1620000000000 ,1620000000000 ,1616812426560 -1616812426583 ,112.5726311,26.88186965,64.81007385,195.0001329,197.1701041,18.166828,0.165519281,1620000000000 ,1620000000000 ,1620000000000 ,1616812426570 -1616812426598 ,112.5726306,26.88186807,64.80788422,195.0003515,197.1625449,18.16528,0.16550768,1620000000000 ,1620000000000 ,1620000000000 ,1616812426580 -1616812426605 ,112.5726306,26.88186807,64.80788422,195.0003515,-400,18.16528,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812426590 -1616812426613 ,112.5726296,26.8818649,64.80358887,195.0022366,197.1704427,18.17201,0.331096055,1620000000000 ,1620000000000 ,1620000000000 ,1616812426600 -1616812426624 ,112.5726291,26.88186332,64.80140686,195.005078,197.1816445,18.169775,0.165558292,1620000000000 ,1620000000000 ,1620000000000 ,1616812426610 -1616812426635 ,112.5726286,26.88186174,64.79931641,195.0080286,197.1703233,18.16965,0.165551,1620000000000 ,1620000000000 ,1620000000000 ,1616812426620 -1616812426644 ,112.5726282,26.88186016,64.7973175,195.0098591,197.1518219,18.169003,0.165545203,1620000000000 ,1620000000000 ,1620000000000 ,1616812426630 -1616812426656 ,112.5726277,26.88185858,64.79527283,195.0125912,197.1386878,18.169558,0.165544924,1620000000000 ,1620000000000 ,1620000000000 ,1616812426640 -1616812426665 ,112.5726272,26.88185699,64.7930603,195.0175636,197.137663,18.17136,0.165552853,1620000000000 ,1620000000000 ,1620000000000 ,1616812426650 -1616812426674 ,112.5726267,26.88185541,64.79068756,195.0221535,197.1435629,18.171856,0.16554521,1620000000000 ,1620000000000 ,1620000000000 ,1616812426660 -1616812426684 ,112.5726262,26.88185383,64.78827667,195.0275083,197.1402468,18.174536,0.165570813,1620000000000 ,1620000000000 ,1620000000000 ,1616812426670 -1616812426694 ,112.5726257,26.88185225,64.78590393,195.0336828,197.1309816,18.175108,0.165577135,1620000000000 ,1620000000000 ,1620000000000 ,1616812426680 -1616812426705 ,112.5726252,26.88185067,64.78349304,195.0410048,197.1160557,18.174826,0.165572361,1620000000000 ,1620000000000 ,1620000000000 ,1616812426690 -1616812426716 ,112.5726247,26.88184908,64.78097534,195.0481901,197.1095995,18.178167,0.165582728,1620000000000 ,1620000000000 ,1620000000000 ,1616812426700 -1616812426726 ,112.5726243,26.8818475,64.77835083,195.0574519,197.1159109,18.180803,0.165600619,1620000000000 ,1620000000000 ,1620000000000 ,1616812426710 -1616812426736 ,112.5726238,26.88184592,64.7756958,195.0667409,197.1218311,18.181461,0.165617537,1620000000000 ,1620000000000 ,1620000000000 ,1616812426720 -1616812426745 ,112.5726233,26.88184434,64.77312469,195.0773141,197.1158198,18.178904,0.16559765,1620000000000 ,1620000000000 ,1620000000000 ,1616812426730 -1616812426762 ,112.5726228,26.88184275,64.77075195,195.0863572,197.1127143,18.177607,0.165586365,1620000000000 ,1620000000000 ,1620000000000 ,1616812426740 -1616812426771 ,112.5726223,26.88184117,64.76850891,195.0935426,197.0992587,18.17676,0.165586132,1620000000000 ,1620000000000 ,1620000000000 ,1616812426750 -1616812426780 ,112.5726218,26.88183959,64.76625061,195.1037606,197.1020073,18.17735,0.165581219,1620000000000 ,1620000000000 ,1620000000000 ,1616812426760 -1616812426790 ,112.5726213,26.881838,64.76397705,195.1134594,197.1240317,18.180029,0.165606813,1620000000000 ,1620000000000 ,1620000000000 ,1616812426770 -1616812426802 ,112.5726208,26.88183642,64.76171875,195.1215464,197.1324536,18.183311,0.165633887,1620000000000 ,1620000000000 ,1620000000000 ,1616812426780 -1616812426805 ,112.5726204,26.88183484,64.75955963,195.1332123,197.1366727,18.181166,0.165633362,1620000000000 ,1620000000000 ,1620000000000 ,1616812426790 -1616812426818 ,112.5726199,26.88183326,64.75746918,195.1457252,197.1283687,18.177057,0.165602389,1620000000000 ,1620000000000 ,1620000000000 ,1616812426800 -1616812426827 ,112.5726194,26.88183167,64.75543976,195.1563257,197.1261345,18.176414,0.165594168,1620000000000 ,1620000000000 ,1620000000000 ,1616812426810 -1616812426836 ,112.5726189,26.88183009,64.75344849,195.1656147,197.1298447,18.180962,0.165612835,1620000000000 ,1620000000000 ,1620000000000 ,1616812426820 -1616812426846 ,112.5726184,26.88182851,64.75143433,195.173647,197.1506803,18.181604,0.165632828,1620000000000 ,1620000000000 ,1620000000000 ,1616812426830 -1616812426858 ,112.5726179,26.88182693,64.74938965,195.1833459,197.1777374,18.184782,0.165671955,1620000000000 ,1620000000000 ,1620000000000 ,1616812426840 -1616812426866 ,112.5726174,26.88182534,64.74736786,195.1958042,197.1919521,18.181107,0.165654204,1620000000000 ,1620000000000 ,1620000000000 ,1616812426850 -1616812426878 ,112.5726169,26.88182376,64.74542999,195.2067325,197.1892602,18.179594,0.165627469,1620000000000 ,1620000000000 ,1620000000000 ,1616812426860 -1616812426889 ,112.5726164,26.88182218,64.74356842,195.2160215,197.1901069,18.177164,0.165612768,1620000000000 ,1620000000000 ,1620000000000 ,1616812426870 -1616812426896 ,112.572616,26.8818206,64.74172211,195.2246822,197.2096078,18.179674,0.165637537,1620000000000 ,1620000000000 ,1620000000000 ,1616812426880 -1616812426906 ,112.5726155,26.88181901,64.73983002,195.2335341,197.2397187,18.183062,0.165668889,1620000000000 ,1620000000000 ,1620000000000 ,1616812426890 -1616812426916 ,112.572615,26.88181743,64.73787689,195.2414298,197.2681512,18.183378,0.165677765,1620000000000 ,1620000000000 ,1620000000000 ,1616812426900 -1616812426926 ,112.5726145,26.88181585,64.73601532,195.2477136,197.2820497,18.181574,0.165675297,1620000000000 ,1620000000000 ,1620000000000 ,1616812426910 -1616812426937 ,112.572614,26.88181427,64.73429871,195.2538608,197.2845967,18.18094,0.16567596,1620000000000 ,1620000000000 ,1620000000000 ,1616812426920 -1616812426947 ,112.5726135,26.88181269,64.73255157,195.2632318,197.2886277,18.184452,0.165695618,1620000000000 ,1620000000000 ,1620000000000 ,1616812426930 -1616812426958 ,112.572613,26.8818111,64.73069,195.2718105,197.3068829,18.183525,0.165699945,1620000000000 ,1620000000000 ,1620000000000 ,1616812426940 -1616812426966 ,112.5726125,26.88180952,64.72880554,195.2757447,197.3328559,18.180174,0.165679313,1620000000000 ,1620000000000 ,1620000000000 ,1616812426950 -1616812426979 ,112.572612,26.88180794,64.72705841,195.2810449,197.3441793,18.176218,0.1656537,1620000000000 ,1620000000000 ,1620000000000 ,1616812426960 -1616812426989 ,112.5726115,26.88180636,64.72530365,195.2912083,197.3414757,18.179283,0.165662002,1620000000000 ,1620000000000 ,1620000000000 ,1616812426970 -1616812426998 ,112.572611,26.88180478,64.72338867,195.299022,197.3539239,18.181887,0.165682736,1620000000000 ,1620000000000 ,1620000000000 ,1616812426980 -1616812427007 ,112.5726105,26.8818032,64.72132111,195.3074914,197.380727,18.185421,0.165711151,1620000000000 ,1620000000000 ,1620000000000 ,1616812426990 -1616812427017 ,112.57261,26.88180162,64.71921539,195.3097591,197.3872628,18.18948,0.16574677,1620000000000 ,1620000000000 ,1620000000000 ,1616812427000 -1616812427029 ,112.5726095,26.88180003,64.71716309,195.313502,197.3927315,18.18937,0.165760074,1620000000000 ,1620000000000 ,1620000000000 ,1616812427010 -1616812427041 ,112.572609,26.88179845,64.71516418,195.3182558,197.4114044,18.187521,0.165756818,1620000000000 ,1620000000000 ,1620000000000 ,1616812427020 -1616812427050 ,112.5726085,26.88179687,64.71318054,195.3241025,197.4263478,18.185133,0.165741305,1620000000000 ,1620000000000 ,1620000000000 ,1616812427030 -1616812427059 ,112.5726081,26.88179529,64.71114349,195.3319708,197.435892,18.184639,0.165729942,1620000000000 ,1620000000000 ,1620000000000 ,1616812427040 -1616812427068 ,112.5726076,26.88179371,64.708992,195.3382273,197.4407108,18.187428,0.16574415,1620000000000 ,1620000000000 ,1620000000000 ,1616812427050 -1616812427079 ,112.5726071,26.88179213,64.70665741,195.3441832,197.4420979,18.190014,0.165761649,1620000000000 ,1620000000000 ,1620000000000 ,1616812427060 -1616812427088 ,112.5726066,26.88179055,64.70415497,195.3488277,197.4529789,18.190811,0.165762177,1620000000000 ,1620000000000 ,1620000000000 ,1616812427070 -1616812427098 ,112.5726061,26.88178896,64.70161438,195.3517511,197.4674624,18.192753,0.165782575,1620000000000 ,1620000000000 ,1620000000000 ,1616812427080 -1616812427108 ,112.5726056,26.88178738,64.69915009,195.3516145,197.4807764,18.194157,0.165798819,1620000000000 ,1620000000000 ,1620000000000 ,1616812427090 -1616812427118 ,112.5726051,26.8817858,64.69683838,195.3524341,197.4799226,18.192993,0.165806503,1620000000000 ,1620000000000 ,1620000000000 ,1616812427100 -1616812427128 ,112.5726046,26.88178422,64.69460297,195.3528985,197.4825784,18.190245,0.165781194,1620000000000 ,1620000000000 ,1620000000000 ,1616812427110 -1616812427138 ,112.5726041,26.88178264,64.69242859,195.355412,197.479544,18.189331,0.165783388,1620000000000 ,1620000000000 ,1620000000000 ,1616812427120 -1616812427149 ,112.5726036,26.88178106,64.69026184,195.3577616,197.4658832,18.188452,0.165763869,1620000000000 ,1620000000000 ,1620000000000 ,1616812427130 -1616812427158 ,112.5726031,26.88177948,64.68808746,195.3647284,197.4635976,18.188848,0.165772055,1620000000000 ,1620000000000 ,1620000000000 ,1616812427140 -1616812427168 ,112.5726026,26.88177789,64.6858139,195.372187,197.4617499,18.191727,0.165787865,1620000000000 ,1620000000000 ,1620000000000 ,1616812427150 -1616812427179 ,112.5726021,26.88177631,64.68340302,195.3767222,197.4642074,18.19644,0.165822867,1620000000000 ,1620000000000 ,1620000000000 ,1616812427160 -1616812427204 ,112.5726016,26.88177473,64.68083954,195.3833612,197.4666889,18.199247,0.165845442,1620000000000 ,1620000000000 ,1620000000000 ,1616812427170 -1616812427213 ,112.5726011,26.88177315,64.67813873,195.3862025,197.4640765,18.2011,0.165855575,1620000000000 ,1620000000000 ,1620000000000 ,1616812427180 -1616812427216 ,112.5726006,26.88177157,64.675354,195.3886068,197.4630112,18.199282,0.165846927,1620000000000 ,1620000000000 ,1620000000000 ,1616812427190 -1616812427225 ,112.5726001,26.88176998,64.67263031,195.4056822,197.7058042,18.215532,0.16621575,1620000000000 ,1620000000000 ,1620000000000 ,1616812427200 -1616812427234 ,112.5725996,26.8817684,64.67008209,195.409917,197.9993612,18.213043,0.166746611,1620000000000 ,1620000000000 ,1620000000000 ,1616812427210 -1616812427241 ,112.5725991,26.88176681,64.6676178,195.4146434,197.9861173,18.210976,0.166730163,1620000000000 ,1620000000000 ,1620000000000 ,1616812427220 -1616812427251 ,112.5725985,26.88176523,64.66522217,195.4164739,197.9813327,18.214209,0.166751632,1620000000000 ,1620000000000 ,1620000000000 ,1616812427230 -1616812427261 ,112.572598,26.88176364,64.66280365,195.4212277,197.9819752,18.219177,0.166786558,1620000000000 ,1620000000000 ,1620000000000 ,1616812427240 -1616812427270 ,112.5725975,26.88176205,64.66034698,195.4211185,197.9885462,18.220886,0.166818997,1620000000000 ,1620000000000 ,1620000000000 ,1616812427250 -1616812427280 ,112.572597,26.88176047,64.65795135,195.4239325,197.9936515,18.218239,0.166809155,1620000000000 ,1620000000000 ,1620000000000 ,1616812427260 -1616812427290 ,112.5725965,26.88175888,64.65570831,195.4272656,197.9791979,18.21599,0.166795629,1620000000000 ,1620000000000 ,1620000000000 ,1616812427270 -1616812427305 ,112.572596,26.88175729,64.65351105,195.4355985,197.9747907,18.214851,0.166779841,1620000000000 ,1620000000000 ,1620000000000 ,1616812427280 -1616812427312 ,112.5725954,26.88175571,64.65118408,195.4446416,197.9784956,18.215237,0.166778596,1620000000000 ,1620000000000 ,1620000000000 ,1616812427290 -1616812427324 ,112.5725949,26.88175412,64.64862823,195.4524007,197.9854152,18.220236,0.166810972,1620000000000 ,1620000000000 ,1620000000000 ,1616812427300 -1616812427331 ,112.5725944,26.88175253,64.64590454,195.4579195,197.987969,18.222507,0.166821394,1620000000000 ,1620000000000 ,1620000000000 ,1616812427310 -1616812427340 ,112.5725939,26.88175095,64.64303589,195.462646,197.9943218,18.224987,0.166836098,1620000000000 ,1620000000000 ,1620000000000 ,1616812427320 -1616812427351 ,112.5725934,26.88174936,64.64011383,195.466307,197.9970179,18.222685,0.166839906,1620000000000 ,1620000000000 ,1620000000000 ,1616812427330 -1616812427361 ,112.5725929,26.88174777,64.63721466,195.4706237,198.0086607,18.22294,0.166832566,1620000000000 ,1620000000000 ,1620000000000 ,1616812427340 -1616812427373 ,112.5725924,26.88174619,64.63439941,195.4736016,198.0160342,18.22158,0.16682233,1620000000000 ,1620000000000 ,1620000000000 ,1616812427350 -1616812427381 ,112.5725918,26.8817446,64.63160706,195.477809,198.0172981,18.221567,0.166830584,1620000000000 ,1620000000000 ,1620000000000 ,1616812427360 -1616812427393 ,112.5725913,26.88174301,64.62877655,195.480705,198.0288331,18.223415,0.166844414,1620000000000 ,1620000000000 ,1620000000000 ,1616812427370 -1616812427401 ,112.5725908,26.88174143,64.62588501,195.4847212,198.0325586,18.225523,0.166862753,1620000000000 ,1620000000000 ,1620000000000 ,1616812427380 -1616812427416 ,112.5725903,26.88173984,64.62295532,195.4894204,198.0440746,18.224821,0.166865954,1620000000000 ,1620000000000 ,1620000000000 ,1616812427390 -1616812427424 ,112.5725898,26.88173825,64.61999512,195.4928901,198.0515896,18.226099,0.166870097,1620000000000 ,1620000000000 ,1620000000000 ,1616812427400 -1616812427436 ,112.5725893,26.88173667,64.61701202,195.4956495,198.0612583,18.225021,0.166865681,1620000000000 ,1620000000000 ,1620000000000 ,1616812427410 -1616812427442 ,112.5725887,26.88173508,64.61399841,195.4972887,198.0624734,18.224958,0.166866448,1620000000000 ,1620000000000 ,1620000000000 ,1616812427420 -1616812427451 ,112.5725882,26.8817335,64.61088562,195.5002121,198.0715023,18.2252,0.166858924,1620000000000 ,1620000000000 ,1620000000000 ,1616812427430 -1616812427462 ,112.5725877,26.88173191,64.60772705,195.5005399,198.0808012,18.225409,0.166862959,1620000000000 ,1620000000000 ,1620000000000 ,1616812427440 -1616812427472 ,112.5725872,26.88173032,64.60442352,195.5029988,197.8581755,18.225992,0.166477299,1620000000000 ,1620000000000 ,1620000000000 ,1616812427450 -1616812427481 ,112.5725867,26.88172874,64.60100555,195.5042282,197.6355714,18.22927,0.166125313,1620000000000 ,1620000000000 ,1620000000000 ,1616812427460 -1616812427492 ,112.5725862,26.88172716,64.59754181,195.506168,197.6338382,18.234009,0.166160182,1620000000000 ,1620000000000 ,1620000000000 ,1616812427470 -1616812427504 ,112.5725857,26.88172557,64.59405518,195.5057308,197.6492882,18.22997,0.166144174,1620000000000 ,1620000000000 ,1620000000000 ,1616812427480 -1616812427512 ,112.5725852,26.88172399,64.5905838,195.5051298,197.6600926,18.231037,0.166143948,1620000000000 ,1620000000000 ,1620000000000 ,1616812427490 -1616812427522 ,112.5725847,26.88172241,64.5871582,195.5036545,197.6663983,18.23167,0.166146452,1620000000000 ,1620000000000 ,1620000000000 ,1616812427500 -1616812427539 ,112.5725842,26.88172083,64.58378601,195.5027802,197.6680425,18.23054,0.166145398,1620000000000 ,1620000000000 ,1620000000000 ,1616812427510 -1616812427546 ,112.5725837,26.88171924,64.58048248,195.5035998,197.6609066,18.231663,0.166150086,1620000000000 ,1620000000000 ,1620000000000 ,1616812427520 -1616812427560 ,112.5725832,26.88171766,64.57718658,195.5061407,197.6546746,18.23347,0.166164718,1620000000000 ,1620000000000 ,1620000000000 ,1616812427530 -1616812427565 ,112.5725827,26.88171607,64.57389069,195.5080531,197.6636081,18.238096,0.166200981,1620000000000 ,1620000000000 ,1620000000000 ,1616812427540 -1616812427573 ,112.5725822,26.88171449,64.57061005,195.5076706,197.6667704,18.238663,0.166210746,1620000000000 ,1620000000000 ,1620000000000 ,1616812427550 -1616812427584 ,112.5725816,26.88171291,64.56739807,195.5083263,197.6657789,18.238253,0.166214303,1620000000000 ,1620000000000 ,1620000000000 ,1616812427560 -1616812427593 ,112.5725811,26.88171132,64.56429291,195.5073428,197.672116,18.234592,0.166196312,1620000000000 ,1620000000000 ,1620000000000 ,1616812427580 -1616812427604 ,112.5725806,26.88170974,64.56135559,195.5062773,197.6749307,18.229826,0.166165425,1620000000000 ,1620000000000 ,1620000000000 ,1616812427580 -1616812427613 ,112.5725801,26.88170816,64.5586319,195.5046107,197.6828913,18.224894,0.166126249,1620000000000 ,1620000000000 ,1620000000000 ,1616812427600 -1616812427625 ,112.5725796,26.88170657,64.5560379,195.5050751,197.683217,18.226505,0.166134061,1620000000000 ,1620000000000 ,1620000000000 ,1616812427610 -1616812427633 ,112.5725786,26.88170341,64.55092621,195.506851,197.6872246,18.232769,0.332364031,1620000000000 ,1620000000000 ,1620000000000 ,1616812427620 -1616812427644 ,112.5725786,26.88170341,64.55092621,195.506851,-400,18.232769,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812427630 -1616812427656 ,112.5725776,26.88170024,64.54638672,195.5087634,197.6812788,18.22773,0.33240205,1620000000000 ,1620000000000 ,1620000000000 ,1616812427640 -1616812427673 ,112.5725771,26.88169866,64.54433441,195.5109218,197.673214,18.222692,0.166140719,1620000000000 ,1620000000000 ,1620000000000 ,1616812427650 -1616812427677 ,112.5725766,26.88169708,64.54225159,195.5179705,197.6839496,18.220364,0.166118435,1620000000000 ,1620000000000 ,1620000000000 ,1616812427660 -1616812427684 ,112.5725761,26.88169549,64.53999329,195.524309,197.6646698,18.22166,0.166105319,1620000000000 ,1620000000000 ,1620000000000 ,1616812427670 -1616812427695 ,112.5725756,26.88169391,64.53752136,195.5308933,197.6492255,18.225998,0.166121348,1620000000000 ,1620000000000 ,1620000000000 ,1616812427680 -1616812427703 ,112.5725756,26.88169391,64.53752136,195.5308933,-400,18.225998,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812427690 -1616812427716 ,112.5725746,26.88169074,64.53206635,195.5514658,197.6538723,18.232544,0.332325465,1620000000000 ,1620000000000 ,1620000000000 ,1616812427700 -1616812427724 ,112.5725741,26.88168916,64.5292511,195.5614652,197.6541813,18.233643,0.166182933,1620000000000 ,1620000000000 ,1620000000000 ,1616812427710 -1616812427734 ,112.5725736,26.88168758,64.52658081,195.5705903,197.655515,18.229015,0.166153209,1620000000000 ,1620000000000 ,1620000000000 ,1616812427720 -1616812427745 ,112.5725731,26.88168599,64.52407074,195.5822016,197.6526221,18.225555,0.166124859,1620000000000 ,1620000000000 ,1620000000000 ,1616812427730 -1616812427754 ,112.5725726,26.88168441,64.5216217,195.5961899,197.6559968,18.225498,0.166119743,1620000000000 ,1620000000000 ,1620000000000 ,1616812427740 -1616812427765 ,112.5725721,26.88168283,64.51912689,195.6144675,197.6643818,18.229631,0.166143354,1620000000000 ,1620000000000 ,1620000000000 ,1616812427750 -1616812427776 ,112.5725716,26.88168124,64.51660919,195.6324992,197.6654102,18.227093,0.16613525,1620000000000 ,1620000000000 ,1620000000000 ,1616812427760 -1616812427785 ,112.5725711,26.88167966,64.51413727,195.6562682,197.6462695,18.22831,0.166133101,1620000000000 ,1620000000000 ,1620000000000 ,1616812427770 -1616812427801 ,112.5725706,26.88167808,64.5116806,195.6804471,197.6422566,18.231607,0.166153435,1620000000000 ,1620000000000 ,1620000000000 ,1616812427780 -1616812427807 ,112.57257,26.88167649,64.5092392,195.7058281,197.6623018,18.233976,0.166181524,1620000000000 ,1620000000000 ,1620000000000 ,1616812427790 -1616812427818 ,112.5725695,26.88167491,64.50685883,195.731291,197.6783572,18.236015,0.166200702,1620000000000 ,1620000000000 ,1620000000000 ,1616812427800 -1616812427828 ,112.572569,26.88167333,64.5045929,195.7578741,197.694035,18.232866,0.166195679,1620000000000 ,1620000000000 ,1620000000000 ,1616812427810 -1616812427837 ,112.5725685,26.88167174,64.50246429,195.784949,197.698429,18.22685,0.16615125,1620000000000 ,1620000000000 ,1620000000000 ,1616812427820 -1616812427847 ,112.572568,26.88167016,64.50046539,195.8105212,197.7132114,18.225859,0.166141973,1620000000000 ,1620000000000 ,1620000000000 ,1616812427830 -1616812427859 ,112.5725675,26.88166858,64.49858856,195.8381971,197.7328582,18.224463,0.166130292,1620000000000 ,1620000000000 ,1620000000000 ,1616812427840 -1616812427865 ,112.572567,26.881667,64.49675751,195.8677582,197.7581176,18.229486,0.1661727,1620000000000 ,1620000000000 ,1620000000000 ,1616812427850 -1616812427876 ,112.5725665,26.88166541,64.49500275,195.8963903,197.7834583,18.230373,0.166205846,1620000000000 ,1620000000000 ,1620000000000 ,1616812427860 -1616812427887 ,112.572566,26.88166383,64.49338531,195.9255143,197.8004171,18.227993,0.166198402,1620000000000 ,1620000000000 ,1620000000000 ,1616812427870 -1616812427897 ,112.5725655,26.88166225,64.49197388,195.9559496,197.8126359,18.22549,0.166186133,1620000000000 ,1620000000000 ,1620000000000 ,1616812427880 -1616812427908 ,112.572565,26.88166067,64.49064636,195.9885433,197.8280161,18.223202,0.166178918,1620000000000 ,1620000000000 ,1620000000000 ,1616812427890 -1616812427916 ,112.5725645,26.88165909,64.48927307,196.0232406,197.8578056,18.224445,0.166185005,1620000000000 ,1620000000000 ,1620000000000 ,1616812427900 -1616812427926 ,112.572564,26.8816575,64.48780823,196.0576648,197.8914105,18.225435,0.166201256,1620000000000 ,1620000000000 ,1620000000000 ,1616812427910 -1616812427950 ,112.5725635,26.88165592,64.48628998,196.0922255,197.9112615,18.224861,0.166202824,1620000000000 ,1620000000000 ,1620000000000 ,1616812427920 -1616812427953 ,112.5725629,26.88165434,64.48475647,196.1272781,197.941703,18.223253,0.166203627,1620000000000 ,1620000000000 ,1620000000000 ,1616812427930 -1616812427957 ,112.5725624,26.88165276,64.48310852,196.1628224,197.9769905,18.22245,0.166194573,1620000000000 ,1620000000000 ,1620000000000 ,1616812427940 -1616812427967 ,112.5725619,26.88165118,64.48127747,196.2000606,198.0128887,18.22321,0.166200993,1620000000000 ,1620000000000 ,1620000000000 ,1616812427950 -1616812427977 ,112.5725614,26.8816496,64.47924805,196.2353863,198.0584936,18.224535,0.166206985,1620000000000 ,1620000000000 ,1620000000000 ,1616812427960 -1616812427986 ,112.5725609,26.88164802,64.47711945,196.2680073,198.0947413,18.225634,0.166228146,1620000000000 ,1620000000000 ,1620000000000 ,1616812427970 -1616812427997 ,112.5725604,26.88164644,64.47498322,196.3016391,198.1359987,18.224525,0.166234152,1620000000000 ,1620000000000 ,1620000000000 ,1616812427980 -1616812428007 ,112.5725598,26.88164486,64.47278595,196.3371288,198.1712739,18.224487,0.166230273,1620000000000 ,1620000000000 ,1620000000000 ,1616812427990 -1616812428018 ,112.5725593,26.88164328,64.47047424,196.3723179,198.2076581,18.224035,0.166236325,1620000000000 ,1620000000000 ,1620000000000 ,1616812428000 -1616812428028 ,112.5725588,26.8816417,64.46804047,196.4097747,198.2502724,18.224625,0.166243632,1620000000000 ,1620000000000 ,1620000000000 ,1616812428010 -1616812428036 ,112.5725583,26.88164012,64.46547699,196.4459747,198.2762641,18.227083,0.166254235,1620000000000 ,1620000000000 ,1620000000000 ,1616812428020 -1616812428046 ,112.5725578,26.88163855,64.46272278,196.4816829,198.3142124,18.22709,0.166262398,1620000000000 ,1620000000000 ,1620000000000 ,1616812428030 -1616812428057 ,112.5725572,26.88163697,64.45976257,196.5191124,198.3551704,18.228043,0.166267553,1620000000000 ,1620000000000 ,1620000000000 ,1616812428040 -1616812428067 ,112.5725567,26.88163539,64.456604,196.558946,198.3999522,18.229616,0.16627651,1620000000000 ,1620000000000 ,1620000000000 ,1616812428050 -1616812428078 ,112.5725562,26.88163381,64.45331573,196.5944903,198.4439696,18.231676,0.166290031,1620000000000 ,1620000000000 ,1620000000000 ,1616812428060 -1616812428088 ,112.5725557,26.88163224,64.44995117,196.6311821,198.4730695,18.234583,0.166318391,1620000000000 ,1620000000000 ,1620000000000 ,1616812428070 -1616812428098 ,112.5725551,26.88163066,64.44650269,196.6669176,198.5158739,18.235073,0.166334257,1620000000000 ,1620000000000 ,1620000000000 ,1616812428080 -1616812428108 ,112.5725546,26.88162908,64.44294739,196.7049755,198.5684743,18.237787,0.166352718,1620000000000 ,1620000000000 ,1620000000000 ,1616812428090 -1616812428117 ,112.5725541,26.8816275,64.43929291,196.7419678,198.621855,18.236963,0.166359282,1620000000000 ,1620000000000 ,1620000000000 ,1616812428100 -1616812428131 ,112.5725535,26.88162593,64.43563843,196.776146,198.6664581,18.237482,0.166375731,1620000000000 ,1620000000000 ,1620000000000 ,1616812428110 -1616812428138 ,112.572553,26.88162435,64.43206024,196.8094774,198.7073998,18.236725,0.166373459,1620000000000 ,1620000000000 ,1620000000000 ,1616812428120 -1616812428149 ,112.5725525,26.88162278,64.42853546,196.8425901,198.7552656,18.235804,0.166376747,1620000000000 ,1620000000000 ,1620000000000 ,1616812428130 -1616812428159 ,112.5725519,26.8816212,64.42498779,196.8751018,198.789271,18.23173,0.16635362,1620000000000 ,1620000000000 ,1620000000000 ,1616812428140 -1616812428173 ,112.5725514,26.88161963,64.42142487,196.9072857,198.8416247,18.22895,0.166327474,1620000000000 ,1620000000000 ,1620000000000 ,1616812428150 -1616812428181 ,112.5725509,26.88161805,64.4178772,196.9420923,198.8844218,18.23395,0.166361358,1620000000000 ,1620000000000 ,1620000000000 ,1616812428160 -1616812428191 ,112.5725503,26.88161648,64.41436768,196.9763799,198.899571,18.2358,0.166390181,1620000000000 ,1620000000000 ,1620000000000 ,1616812428170 -1616812428198 ,112.5725498,26.88161491,64.41091156,197.0125252,198.9321156,18.239443,0.166434009,1620000000000 ,1620000000000 ,1620000000000 ,1616812428180 -1616812428209 ,112.5725492,26.88161333,64.40749359,197.0468401,198.9736132,18.236994,0.166424834,1620000000000 ,1620000000000 ,1620000000000 ,1616812428190 -1616812428218 ,112.5725487,26.88161176,64.4043808,197.0903894,199.14043,18.239302,0.16647843,1620000000000 ,1620000000000 ,1620000000000 ,1616812428200 -1616812428229 ,112.5725481,26.88161019,64.40167999,197.1231743,199.374578,18.239187,0.166652904,1620000000000 ,1620000000000 ,1620000000000 ,1616812428210 -1616812428239 ,112.5725476,26.88160861,64.39889526,197.1562597,199.4089788,18.241331,0.166659591,1620000000000 ,1620000000000 ,1620000000000 ,1616812428220 -1616812428252 ,112.572547,26.88160704,64.39601135,197.1893178,199.4565508,18.243021,0.166679131,1620000000000 ,1620000000000 ,1620000000000 ,1616812428230 -1616812428264 ,112.5725465,26.88160547,64.39310455,197.2205455,199.4867887,18.243273,0.166692947,1620000000000 ,1620000000000 ,1620000000000 ,1616812428240 -1616812428270 ,112.5725459,26.8816039,64.39025879,197.2536036,199.5114443,18.245302,0.166713887,1620000000000 ,1620000000000 ,1620000000000 ,1616812428250 -1616812428281 ,112.5725454,26.88160233,64.38752747,197.2863338,199.542004,18.247158,0.166732474,1620000000000 ,1620000000000 ,1620000000000 ,1616812428260 -1616812428294 ,112.5725448,26.88160076,64.38491058,197.3164686,199.5737415,18.247784,0.166752399,1620000000000 ,1620000000000 ,1620000000000 ,1616812428270 -1616812428305 ,112.5725442,26.88159919,64.38241577,197.3481061,199.6126357,18.246645,0.16676402,1620000000000 ,1620000000000 ,1620000000000 ,1616812428280 -1616812428313 ,112.5725437,26.88159762,64.38005829,197.3801533,199.6386079,18.248333,0.166784006,1620000000000 ,1620000000000 ,1620000000000 ,1616812428290 -1616812428321 ,112.5725431,26.88159605,64.37787628,197.4121459,199.677104,18.245186,0.166779688,1620000000000 ,1620000000000 ,1620000000000 ,1616812428300 -1616812428329 ,112.5725426,26.88159448,64.3759079,197.4461603,199.716792,18.238945,0.166750722,1620000000000 ,1620000000000 ,1620000000000 ,1616812428310 -1616812428341 ,112.572542,26.88159291,64.37408447,197.4788905,199.7577465,18.233263,0.166713437,1620000000000 ,1620000000000 ,1620000000000 ,1616812428320 -1616812428351 ,112.5725414,26.88159134,64.37236023,197.5100908,199.8070185,18.234434,0.166724901,1620000000000 ,1620000000000 ,1620000000000 ,1616812428330 -1616812428361 ,112.5725409,26.88158977,64.37068939,197.5404988,199.8534529,18.238377,0.166765738,1620000000000 ,1620000000000 ,1620000000000 ,1616812428340 -1616812428369 ,112.5725403,26.8815882,64.3690033,197.5718357,199.8981293,18.243637,0.166817948,1620000000000 ,1620000000000 ,1620000000000 ,1616812428350 -1616812428380 ,112.5725397,26.88158663,64.36733246,197.6022711,199.9394581,18.244774,0.166859998,1620000000000 ,1620000000000 ,1620000000000 ,1616812428360 -1616812428392 ,112.5725392,26.88158506,64.36579895,197.6282531,199.9651446,18.240398,0.166844056,1620000000000 ,1620000000000 ,1620000000000 ,1616812428370 -1616812428400 ,112.5725386,26.8815835,64.36453247,197.6560383,199.995636,18.232847,0.166802931,1620000000000 ,1620000000000 ,1620000000000 ,1616812428380 -1616812428410 ,112.572538,26.88158193,64.36343384,197.6859545,200.0122661,18.229034,0.166775577,1620000000000 ,1620000000000 ,1620000000000 ,1616812428390 -1616812428421 ,112.5725374,26.88158036,64.3622818,197.7157342,200.0321716,18.229324,0.166774171,1620000000000 ,1620000000000 ,1620000000000 ,1616812428400 -1616812428431 ,112.5725369,26.8815788,64.36092377,197.7460875,200.0846052,18.230007,0.166780525,1620000000000 ,1620000000000 ,1620000000000 ,1616812428410 -1616812428440 ,112.5725363,26.88157723,64.35935211,197.7737635,200.1173644,18.23311,0.166805995,1620000000000 ,1620000000000 ,1620000000000 ,1616812428420 -1616812428450 ,112.5725357,26.88157566,64.35755157,197.8030786,200.1443802,18.240778,0.166860988,1620000000000 ,1620000000000 ,1620000000000 ,1616812428430 -1616812428461 ,112.5725351,26.8815741,64.35552979,197.8306453,200.1744647,18.242407,0.16688745,1620000000000 ,1620000000000 ,1620000000000 ,1616812428440 -1616812428474 ,112.5725346,26.88157253,64.3531723,197.8569825,200.0948734,18.241577,0.166806952,1620000000000 ,1620000000000 ,1620000000000 ,1616812428450 -1616812428486 ,112.572534,26.88157096,64.35059357,197.8832651,200.0006102,18.23793,0.166695458,1620000000000 ,1620000000000 ,1620000000000 ,1616812428460 -1616812428495 ,112.5725334,26.8815694,64.34805298,197.9090558,200.0225284,18.236967,0.166685643,1620000000000 ,1620000000000 ,1620000000000 ,1616812428470 -1616812428502 ,112.5725329,26.88156783,64.34542084,197.9356389,200.0540688,18.235834,0.166682253,1620000000000 ,1620000000000 ,1620000000000 ,1616812428480 -1616812428518 ,112.5725323,26.88156627,64.34260559,197.9625499,200.0852048,18.237919,0.166689647,1620000000000 ,1620000000000 ,1620000000000 ,1616812428490 -1616812428523 ,112.5725317,26.8815647,64.33960724,197.9892149,200.1196555,18.238277,0.166693218,1620000000000 ,1620000000000 ,1620000000000 ,1616812428500 -1616812428533 ,112.5725311,26.88156314,64.33647919,198.0151697,200.1324319,18.24162,0.166721597,1620000000000 ,1620000000000 ,1620000000000 ,1616812428510 -1616812428544 ,112.5725306,26.88156157,64.33326721,198.0416435,200.1460718,18.245123,0.166737434,1620000000000 ,1620000000000 ,1620000000000 ,1616812428520 -1616812428552 ,112.57253,26.88156001,64.32996368,198.0684725,200.1685029,18.24575,0.166759946,1620000000000 ,1620000000000 ,1620000000000 ,1616812428530 -1616812428562 ,112.5725294,26.88155844,64.32654572,198.0944545,200.2074513,18.24963,0.166785012,1620000000000 ,1620000000000 ,1620000000000 ,1616812428540 -1616812428571 ,112.5725288,26.88155688,64.32310486,198.120136,200.2387273,18.245043,0.166775152,1620000000000 ,1620000000000 ,1620000000000 ,1616812428550 -1616812428584 ,112.5725283,26.88155531,64.319664,198.1466918,200.2701255,18.243917,0.166759001,1620000000000 ,1620000000000 ,1620000000000 ,1616812428560 -1616812428593 ,112.5725277,26.88155375,64.31624603,198.1732749,200.2727199,18.240513,0.166729933,1620000000000 ,1620000000000 ,1620000000000 ,1616812428570 -1616812428602 ,112.5725271,26.88155218,64.31268311,198.2029999,200.2844246,18.24114,0.166717547,1620000000000 ,1620000000000 ,1620000000000 ,1616812428580 -1616812428611 ,112.5725265,26.88155062,64.30898285,198.2326429,200.3296779,18.242088,0.166732465,1620000000000 ,1620000000000 ,1620000000000 ,1616812428590 -1616812428622 ,112.5725259,26.88154906,64.30514526,198.2615209,200.3665042,18.248816,0.166772374,1620000000000 ,1620000000000 ,1620000000000 ,1616812428600 -1616812428632 ,112.5725254,26.88154749,64.30130005,198.2858364,200.3969489,18.251904,0.166816373,1620000000000 ,1620000000000 ,1620000000000 ,1616812428610 -1616812428647 ,112.5725248,26.88154593,64.29748535,198.3084853,200.4171428,18.252329,0.166828931,1620000000000 ,1620000000000 ,1620000000000 ,1616812428620 -1616812428654 ,112.5725242,26.88154437,64.29368591,198.3313801,200.4430962,18.2532,0.166842244,1620000000000 ,1620000000000 ,1620000000000 ,1616812428630 -1616812428665 ,112.5725236,26.8815428,64.28988647,198.3536192,200.4681741,18.24826,0.166811018,1620000000000 ,1620000000000 ,1620000000000 ,1616812428640 -1616812428674 ,112.572523,26.88154124,64.28614807,198.3754212,200.5003114,18.247194,0.166800021,1620000000000 ,1620000000000 ,1620000000000 ,1616812428650 -1616812428684 ,112.5725224,26.88153968,64.2824707,198.3994361,200.5294541,18.24656,0.166799324,1620000000000 ,1620000000000 ,1620000000000 ,1616812428660 -1616812428705 ,112.5725219,26.88153812,64.27870941,198.4254728,200.5541607,18.248915,0.166817222,1620000000000 ,1620000000000 ,1620000000000 ,1616812428670 -1616812428708 ,112.5725213,26.88153656,64.27483368,198.4449798,200.5801238,18.252892,0.166843445,1620000000000 ,1620000000000 ,1620000000000 ,1616812428680 -1616812428715 ,112.5725207,26.88153499,64.27090454,198.4610991,200.6042398,18.252756,0.166856504,1620000000000 ,1620000000000 ,1620000000000 ,1616812428700 -1616812428724 ,112.5725201,26.88153343,64.26702881,198.4778467,200.6518974,18.252808,0.166853066,1620000000000 ,1620000000000 ,1620000000000 ,1616812428710 -1616812428733 ,112.5725195,26.88153187,64.26322174,198.4951134,200.6996457,18.253336,0.166879568,1620000000000 ,1620000000000 ,1620000000000 ,1616812428720 -1616812428742 ,112.5725189,26.88153031,64.25952148,198.5114512,200.7242017,18.25669,0.166910597,1620000000000 ,1620000000000 ,1620000000000 ,1616812428730 -1616812428754 ,112.5725177,26.88152719,64.25272369,198.5410396,200.7574442,18.25013,0.333809817,1620000000000 ,1620000000000 ,1620000000000 ,1616812428740 -1616812428767 ,112.5725171,26.88152563,64.24951172,198.5541809,200.8011209,18.248219,0.166887358,1620000000000 ,1620000000000 ,1620000000000 ,1616812428750 -1616812428776 ,112.5725165,26.88152407,64.24630737,198.5695625,200.8409043,18.247465,0.166876928,1620000000000 ,1620000000000 ,1620000000000 ,1616812428760 -1616812428785 ,112.572516,26.88152251,64.24310303,198.5845069,200.872204,18.25,0.166905362,1620000000000 ,1620000000000 ,1620000000000 ,1616812428770 -1616812428794 ,112.5725154,26.88152095,64.24001312,198.5968832,200.8802004,18.250378,0.166924435,1620000000000 ,1620000000000 ,1620000000000 ,1616812428780 -1616812428804 ,112.5725148,26.88151939,64.23708344,198.6061723,200.893392,18.249735,0.16692553,1620000000000 ,1620000000000 ,1620000000000 ,1616812428790 -1616812428814 ,112.5725142,26.88151783,64.23423004,198.6155433,200.9210954,18.24647,0.166919183,1620000000000 ,1620000000000 ,1620000000000 ,1616812428800 -1616812428828 ,112.5725136,26.88151627,64.23136139,198.6281382,200.9512548,18.248318,0.166925152,1620000000000 ,1620000000000 ,1620000000000 ,1616812428810 -1616812428837 ,112.572513,26.88151471,64.228508,198.6389299,200.9872915,18.247066,0.166927899,1620000000000 ,1620000000000 ,1620000000000 ,1616812428820 -1616812428847 ,112.5725124,26.88151316,64.2257843,198.6465524,200.9915328,18.244541,0.166924382,1620000000000 ,1620000000000 ,1620000000000 ,1616812428830 -1616812428857 ,112.5725118,26.8815116,64.22327423,198.6519072,200.9911658,18.24174,0.166910059,1620000000000 ,1620000000000 ,1620000000000 ,1616812428840 -1616812428865 ,112.5725112,26.88151004,64.22089386,198.6577265,201.008249,18.240822,0.166911674,1620000000000 ,1620000000000 ,1620000000000 ,1616812428850 -1616812428874 ,112.5725106,26.88150848,64.21848297,198.6656769,201.0382959,18.240435,0.166901447,1620000000000 ,1620000000000 ,1620000000000 ,1616812428860 -1616812428886 ,112.57251,26.88150692,64.21591949,198.6766325,201.0621706,18.239576,0.166906266,1620000000000 ,1620000000000 ,1620000000000 ,1616812428870 -1616812428895 ,112.5725094,26.88150537,64.2131424,198.6876701,201.0679577,18.242617,0.166910417,1620000000000 ,1620000000000 ,1620000000000 ,1616812428880 -1616812428909 ,112.5725088,26.88150381,64.21024323,198.6976968,201.071686,18.246346,0.166939287,1620000000000 ,1620000000000 ,1620000000000 ,1616812428890 -1616812428918 ,112.5725082,26.88150225,64.20727539,198.705975,201.0726484,18.248678,0.166956641,1620000000000 ,1620000000000 ,1620000000000 ,1616812428900 -1616812428927 ,112.5725076,26.88150069,64.20426178,198.7155646,201.0960748,18.249893,0.16697834,1620000000000 ,1620000000000 ,1620000000000 ,1616812428910 -1616812428935 ,112.572507,26.88149913,64.20121002,198.7245258,201.1180331,18.248266,0.166972608,1620000000000 ,1620000000000 ,1620000000000 ,1616812428920 -1616812428948 ,112.5725064,26.88149758,64.19818878,198.7311921,201.1311082,18.245317,0.166952314,1620000000000 ,1620000000000 ,1620000000000 ,1616812428930 -1616812428955 ,112.5725058,26.88149602,64.19525909,198.7366289,201.1374914,18.243343,0.166934746,1620000000000 ,1620000000000 ,1620000000000 ,1616812428940 -1616812428965 ,112.5725052,26.88149446,64.19231415,198.7426121,201.1377656,18.245094,0.166943887,1620000000000 ,1620000000000 ,1620000000000 ,1616812428950 -1616812428979 ,112.5725046,26.88149291,64.18927765,198.7488686,201.1485838,18.244541,0.166947436,1620000000000 ,1620000000000 ,1620000000000 ,1616812428960 -1616812428988 ,112.572504,26.88149135,64.18624115,198.7552343,201.1632108,18.240015,0.166916132,1620000000000 ,1620000000000 ,1620000000000 ,1616812428970 -1616812428996 ,112.5725034,26.88148979,64.18339539,198.7578298,201.1700517,18.235798,0.166889827,1620000000000 ,1620000000000 ,1620000000000 ,1616812428980 -1616812429005 ,112.5725028,26.88148824,64.18068695,198.7651244,201.1695458,18.238077,0.16689933,1620000000000 ,1620000000000 ,1620000000000 ,1616812428990 -1616812429015 ,112.5725022,26.88148668,64.17792511,198.775561,201.1787239,18.244442,0.166952295,1620000000000 ,1620000000000 ,1620000000000 ,1616812429000 -1616812429026 ,112.5725016,26.88148512,64.17499542,198.7811344,201.1917232,18.248005,0.166985878,1620000000000 ,1620000000000 ,1620000000000 ,1616812429010 -1616812429036 ,112.572501,26.88148357,64.17205811,198.7846588,201.1973945,18.241493,0.166944889,1620000000000 ,1620000000000 ,1620000000000 ,1616812429020 -1616812429046 ,112.5725003,26.88148201,64.16931152,198.7887296,201.1896371,18.23295,0.166891564,1620000000000 ,1620000000000 ,1620000000000 ,1616812429030 -1616812429059 ,112.5724997,26.88148045,64.16663361,198.7964887,201.184187,18.229855,0.166846057,1620000000000 ,1620000000000 ,1620000000000 ,1616812429040 -1616812429068 ,112.5724991,26.8814789,64.16384125,198.805122,201.1823667,18.229313,0.166830235,1620000000000 ,1620000000000 ,1620000000000 ,1616812429050 -1616812429076 ,112.5724985,26.88147734,64.16080475,198.8143564,201.1896591,18.230282,0.166821606,1620000000000 ,1620000000000 ,1620000000000 ,1616812429060 -1616812429086 ,112.5724979,26.88147579,64.15753937,198.8225527,201.192701,18.23311,0.166832656,1620000000000 ,1620000000000 ,1620000000000 ,1616812429070 -1616812429107 ,112.5724973,26.88147423,64.15406799,198.8326887,201.1787204,18.238617,0.166860391,1620000000000 ,1620000000000 ,1620000000000 ,1616812429080 -1616812429110 ,112.5724967,26.88147268,64.15042114,198.842169,201.1730583,18.239607,0.166870632,1620000000000 ,1620000000000 ,1620000000000 ,1616812429090 -1616812429118 ,112.5724961,26.88147112,64.14680481,198.8482615,201.1742825,18.238348,0.166860857,1620000000000 ,1620000000000 ,1620000000000 ,1616812429100 -1616812429126 ,112.5724955,26.88146956,64.14339447,198.8557201,201.1693532,18.235746,0.166846525,1620000000000 ,1620000000000 ,1620000000000 ,1616812429110 -1616812429144 ,112.5724949,26.88146801,64.14015961,198.8659927,201.1717229,18.235195,0.166849857,1620000000000 ,1620000000000 ,1620000000000 ,1616812429120 -1616812429157 ,112.5724943,26.88146645,64.13698578,198.8770849,201.1743104,18.23289,0.16683347,1620000000000 ,1620000000000 ,1620000000000 ,1616812429130 -1616812429160 ,112.5724937,26.8814649,64.13378906,198.8850899,201.1796543,18.229958,0.166810518,1620000000000 ,1620000000000 ,1620000000000 ,1616812429140 -1616812429168 ,112.5724931,26.88146334,64.13053131,198.8948161,201.173591,18.229496,0.166789753,1620000000000 ,1620000000000 ,1620000000000 ,1616812429150 -1616812429178 ,112.5724925,26.88146179,64.12717438,198.9085584,201.1734075,18.233963,0.166818499,1620000000000 ,1620000000000 ,1620000000000 ,1616812429160 -1616812429190 ,112.5724919,26.88146023,64.12376404,198.9220822,201.18269,18.237402,0.166851958,1620000000000 ,1620000000000 ,1620000000000 ,1616812429170 -1616812429197 ,112.5724913,26.88145868,64.12047577,198.9354967,201.1868277,18.236324,0.166859016,1620000000000 ,1620000000000 ,1620000000000 ,1616812429180 -1616812429211 ,112.5724907,26.88145712,64.11737823,198.9472173,201.1995623,18.234383,0.166857561,1620000000000 ,1620000000000 ,1620000000000 ,1616812429190 -1616812429224 ,112.5724901,26.88145557,64.11418152,198.964566,201.3943753,18.207731,0.166529539,1620000000000 ,1620000000000 ,1620000000000 ,1616812429200 -1616812429235 ,112.5724895,26.88145403,64.11060333,198.9704126,201.7263798,18.204575,0.166005947,1620000000000 ,1620000000000 ,1620000000000 ,1616812429210 -1616812429239 ,112.5724889,26.88145249,64.10710144,198.9744014,201.746123,18.200558,0.165979611,1620000000000 ,1620000000000 ,1620000000000 ,1616812429220 -1616812429249 ,112.5724883,26.88145094,64.1036377,198.9821332,201.7626861,18.199001,0.165978387,1620000000000 ,1620000000000 ,1620000000000 ,1616812429230 -1616812429258 ,112.5724876,26.8814494,64.10022736,198.9930888,201.7642562,18.195034,0.16594746,1620000000000 ,1620000000000 ,1620000000000 ,1616812429240 -1616812429269 ,112.572487,26.88144786,64.0967865,199.0059296,201.7666283,18.194048,0.165934607,1620000000000 ,1620000000000 ,1620000000000 ,1616812429250 -1616812429279 ,112.5724864,26.88144632,64.09321594,199.0163934,201.7711591,18.196262,0.165945465,1620000000000 ,1620000000000 ,1620000000000 ,1616812429260 -1616812429291 ,112.5724858,26.88144478,64.08942413,199.0249995,201.7872724,18.201794,0.165976029,1620000000000 ,1620000000000 ,1620000000000 ,1616812429270 -1616812429301 ,112.5724852,26.88144324,64.0854187,199.0316931,201.8100123,18.204762,0.16601047,1620000000000 ,1620000000000 ,1620000000000 ,1616812429280 -1616812429314 ,112.5724846,26.8814417,64.08122253,199.0410641,201.8297476,18.20202,0.165989141,1620000000000 ,1620000000000 ,1620000000000 ,1616812429290 -1616812429320 ,112.5724839,26.88144016,64.07695007,199.0486866,201.8320208,18.197206,0.165950928,1620000000000 ,1620000000000 ,1620000000000 ,1616812429300 -1616812429331 ,112.5724833,26.88143862,64.0727005,199.0591504,201.82263,18.193192,0.165907728,1620000000000 ,1620000000000 ,1620000000000 ,1616812429310 -1616812429342 ,112.5724827,26.88143708,64.0684433,199.0686854,201.8196906,18.193066,0.165895223,1620000000000 ,1620000000000 ,1620000000000 ,1616812429320 -1616812429349 ,112.5724821,26.88143554,64.06401825,199.0808431,201.8164687,18.196087,0.165908264,1620000000000 ,1620000000000 ,1620000000000 ,1616812429330 -1616812429360 ,112.5724815,26.881434,64.05934906,199.0899682,201.84062,18.197275,0.165910881,1620000000000 ,1620000000000 ,1620000000000 ,1616812429340 -1616812429374 ,112.5724809,26.88143246,64.05454254,199.097017,201.8698979,18.19652,0.165912351,1620000000000 ,1620000000000 ,1620000000000 ,1616812429350 -1616812429379 ,112.5724802,26.88143092,64.04974365,199.1018254,201.8762366,18.194054,0.165893417,1620000000000 ,1620000000000 ,1620000000000 ,1616812429360 -1616812429391 ,112.5724796,26.88142938,64.04504395,199.107836,201.8779488,18.194435,0.165897546,1620000000000 ,1620000000000 ,1620000000000 ,1616812429370 -1616812429398 ,112.572479,26.88142784,64.04042816,199.1172344,201.8858917,18.19246,0.165885565,1620000000000 ,1620000000000 ,1620000000000 ,1616812429380 -1616812429410 ,112.5724784,26.8814263,64.03585815,199.126742,201.9007208,18.190641,0.165873254,1620000000000 ,1620000000000 ,1620000000000 ,1616812429390 -1616812429418 ,112.5724778,26.88142476,64.03134155,199.1374244,201.9140318,18.187233,0.165857986,1620000000000 ,1620000000000 ,1620000000000 ,1616812429400 -1616812429431 ,112.5724771,26.88142322,64.02681732,199.1490357,201.9224878,18.185637,0.165839358,1620000000000 ,1620000000000 ,1620000000000 ,1616812429410 -1616812429441 ,112.5724765,26.88142168,64.02220917,199.1616852,201.9387965,18.186916,0.165839702,1620000000000 ,1620000000000 ,1620000000000 ,1616812429420 -1616812429451 ,112.5724759,26.88142015,64.01748657,199.1720671,201.9704591,18.186293,0.165842843,1620000000000 ,1620000000000 ,1620000000000 ,1616812429430 -1616812429462 ,112.5724753,26.88141861,64.01276398,199.1809464,201.9829937,18.185999,0.165842544,1620000000000 ,1620000000000 ,1620000000000 ,1616812429440 -1616812429475 ,112.5724747,26.88141707,64.00835419,199.1893065,201.8117975,18.182795,0.16612948,1620000000000 ,1620000000000 ,1620000000000 ,1616812429450 -1616812429480 ,112.572474,26.88141552,64.00424194,199.198377,201.6455803,18.182487,0.1664287,1620000000000 ,1620000000000 ,1620000000000 ,1616812429460 -1616812429490 ,112.5724734,26.88141397,64.00018311,199.2065186,201.6593337,18.182703,0.166430183,1620000000000 ,1620000000000 ,1620000000000 ,1616812429470 -1616812429501 ,112.5724728,26.88141242,63.99615097,199.2144689,201.664642,18.182224,0.166433967,1620000000000 ,1620000000000 ,1620000000000 ,1616812429480 -1616812429510 ,112.5724722,26.88141088,63.99216843,199.2228837,201.6861602,18.184097,0.166456538,1620000000000 ,1620000000000 ,1620000000000 ,1616812429490 -1616812429521 ,112.5724716,26.88140933,63.98822021,199.2295227,201.7057176,18.182638,0.166453767,1620000000000 ,1620000000000 ,1620000000000 ,1616812429500 -1616812429531 ,112.572471,26.88140779,63.98432541,199.2365168,201.7187751,18.177057,0.166420522,1620000000000 ,1620000000000 ,1620000000000 ,1616812429510 -1616812429542 ,112.5724704,26.88140624,63.9805603,199.2438114,201.7398425,18.169596,0.166365418,1620000000000 ,1620000000000 ,1620000000000 ,1616812429520 -1616812429555 ,112.5724697,26.8814047,63.9768486,199.2519803,201.7452746,18.166414,0.166335274,1620000000000 ,1620000000000 ,1620000000000 ,1616812429530 -1616812429564 ,112.5724691,26.88140315,63.9730835,199.2608869,201.7640724,18.167675,0.16632827,1620000000000 ,1620000000000 ,1620000000000 ,1616812429540 -1616812429571 ,112.5724685,26.88140161,63.96915054,199.2721977,201.7672028,18.173769,0.16636709,1620000000000 ,1620000000000 ,1620000000000 ,1616812429550 -1616812429581 ,112.5724679,26.88140006,63.96504974,199.2827162,201.7813657,18.180696,0.166417134,1620000000000 ,1620000000000 ,1620000000000 ,1616812429560 -1616812429593 ,112.5724673,26.88139851,63.96101379,199.2874427,201.8049329,18.176414,0.166420708,1620000000000 ,1620000000000 ,1620000000000 ,1616812429570 -1616812429601 ,112.5724667,26.88139697,63.95721054,199.2921692,201.8200653,18.174013,0.166409631,1620000000000 ,1620000000000 ,1620000000000 ,1616812429580 -1616812429613 ,112.572466,26.88139543,63.95365143,199.2990813,201.8167565,18.164257,0.16634237,1620000000000 ,1620000000000 ,1620000000000 ,1616812429590 -1616812429622 ,112.5724654,26.88139388,63.95027924,199.3044089,201.8230714,18.159462,0.166303558,1620000000000 ,1620000000000 ,1620000000000 ,1616812429600 -1616812429637 ,112.5724648,26.88139234,63.94701767,199.3092173,201.831559,18.155466,0.166275804,1620000000000 ,1620000000000 ,1620000000000 ,1616812429610 -1616812429646 ,112.5724642,26.88139079,63.94366074,199.3182878,201.8373581,18.156616,0.166271876,1620000000000 ,1620000000000 ,1620000000000 ,1616812429620 -1616812429655 ,112.5724636,26.88138925,63.94008636,199.3269758,201.8532706,18.155888,0.166260272,1620000000000 ,1620000000000 ,1620000000000 ,1616812429630 -1616812429663 ,112.5724629,26.88138771,63.93637466,199.3329317,201.8693145,18.156387,0.166256748,1620000000000 ,1620000000000 ,1620000000000 ,1616812429640 -1616812429673 ,112.5724623,26.88138617,63.93279266,199.3355545,201.8719396,18.153517,0.166247339,1620000000000 ,1620000000000 ,1620000000000 ,1616812429650 -1616812429684 ,112.5724617,26.88138462,63.9294281,199.3400898,201.8709418,18.149298,0.166216712,1620000000000 ,1620000000000 ,1620000000000 ,1616812429660 -1616812429692 ,112.5724611,26.88138308,63.92618179,199.345472,201.8823742,18.147202,0.166204603,1620000000000 ,1620000000000 ,1620000000000 ,1616812429670 -1616812429703 ,112.5724605,26.88138154,63.92298508,199.3520016,201.9015694,18.148767,0.166220822,1620000000000 ,1620000000000 ,1620000000000 ,1616812429680 -1616812429714 ,112.5724598,26.88138,63.91972351,199.3592416,201.9043434,18.152246,0.16623741,1620000000000 ,1620000000000 ,1620000000000 ,1616812429690 -1616812429721 ,112.5724592,26.88137845,63.91635132,199.3634217,201.876976,18.149965,0.166229937,1620000000000 ,1620000000000 ,1620000000000 ,1616812429700 -1616812429733 ,112.5724586,26.88137691,63.91289139,199.3681755,201.8701147,18.146057,0.166189385,1620000000000 ,1620000000000 ,1620000000000 ,1616812429710 -1616812429742 ,112.572458,26.88137537,63.90937805,199.3741314,201.8746423,18.138727,0.16612684,1620000000000 ,1620000000000 ,1620000000000 ,1616812429720 -1616812429753 ,112.5724574,26.88137383,63.90576935,199.3849231,201.8749611,18.135553,0.166077776,1620000000000 ,1620000000000 ,1620000000000 ,1616812429730 -1616812429762 ,112.5724567,26.88137229,63.90205765,199.3942395,201.866519,18.137823,0.166078288,1620000000000 ,1620000000000 ,1620000000000 ,1616812429740 -1616812429774 ,112.5724561,26.88137075,63.89818192,199.4060421,201.8654948,18.14345,0.166116437,1620000000000 ,1620000000000 ,1620000000000 ,1616812429750 -1616812429785 ,112.5724555,26.8813692,63.89415359,199.4160688,201.8659389,18.150608,0.166157063,1620000000000 ,1620000000000 ,1620000000000 ,1616812429760 -1616812429796 ,112.5724549,26.88136766,63.89006805,199.423582,201.8604782,18.14852,0.1661631,1620000000000 ,1620000000000 ,1620000000000 ,1616812429780 -1616812429803 ,112.5724543,26.88136612,63.88611984,199.4288549,201.8628386,18.145895,0.166147719,1620000000000 ,1620000000000 ,1620000000000 ,1616812429780 -1616812429814 ,112.572453,26.88136304,63.87914658,199.441723,201.8834084,18.12471,0.332092421,1620000000000 ,1620000000000 ,1620000000000 ,1616812429800 -1616812429824 ,112.572453,26.88136304,63.87914658,199.441723,-400,18.12471,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812429810 -1616812429835 ,112.5724518,26.88135996,63.87278748,199.4603831,201.8845245,18.119995,0.331878626,1620000000000 ,1620000000000 ,1620000000000 ,1616812429820 -1616812429844 ,112.5724518,26.88135996,63.87278748,199.4603831,-400,18.119995,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812429830 -1616812429854 ,112.5724506,26.88135688,63.86548615,199.4829227,201.9044915,18.133389,0.332000771,1620000000000 ,1620000000000 ,1620000000000 ,1616812429840 -1616812429865 ,112.5724499,26.88135534,63.86153793,199.4890972,201.9191993,18.136948,0.166062468,1620000000000 ,1620000000000 ,1620000000000 ,1616812429850 -1616812429874 ,112.5724493,26.8813538,63.85774994,199.4910643,201.9316557,18.130884,0.166042441,1620000000000 ,1620000000000 ,1620000000000 ,1616812429860 -1616812429884 ,112.5724487,26.88135226,63.85429001,199.4948618,201.9507506,18.117182,0.165956873,1620000000000 ,1620000000000 ,1620000000000 ,1616812429870 -1616812429894 ,112.5724481,26.88135072,63.85108566,199.4992605,201.9634689,18.107834,0.165863673,1620000000000 ,1620000000000 ,1620000000000 ,1616812429880 -1616812429904 ,112.5724481,26.88135072,63.85108566,199.4992605,-400,18.107834,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812429890 -1616812429915 ,112.5724468,26.88134764,63.84449005,199.5141776,201.9733578,18.111486,0.331700218,1620000000000 ,1620000000000 ,1620000000000 ,1616812429900 -1616812429924 ,112.5724462,26.88134611,63.84083939,199.5190134,201.9950186,18.119677,0.165922898,1620000000000 ,1620000000000 ,1620000000000 ,1616812429910 -1616812429935 ,112.5724456,26.88134457,63.8371048,199.5236306,201.9997313,18.118807,0.16593188,1620000000000 ,1620000000000 ,1620000000000 ,1616812429920 -1616812429944 ,112.572445,26.88134303,63.83348083,199.5281932,202.0014828,18.111538,0.165899445,1620000000000 ,1620000000000 ,1620000000000 ,1616812429930 -1616812429954 ,112.5724444,26.88134149,63.83008194,199.532947,202.0212291,18.104836,0.16584751,1620000000000 ,1620000000000 ,1620000000000 ,1616812429940 -1616812429968 ,112.5724437,26.88133995,63.82679367,199.5400777,202.0320433,18.100542,0.165803359,1620000000000 ,1620000000000 ,1620000000000 ,1616812429950 -1616812429977 ,112.5724437,26.88133995,63.82679367,199.5400777,-400,18.100542,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812429960 -1616812429986 ,112.5724425,26.88133688,63.81973267,199.556716,202.0318534,18.100895,0.331567884,1620000000000 ,1620000000000 ,1620000000000 ,1616812429970 -1616812429997 ,112.5724419,26.88133534,63.81583405,199.5665242,202.0478844,18.101501,0.165766935,1620000000000 ,1620000000000 ,1620000000000 ,1616812429980 -1616812430009 ,112.5724412,26.88133381,63.81185913,199.5721523,202.0575003,18.10018,0.165760295,1620000000000 ,1620000000000 ,1620000000000 ,1616812429990 -1616812430015 ,112.5724406,26.88133227,63.80794144,199.5765236,202.051913,18.099667,0.165747401,1620000000000 ,1620000000000 ,1620000000000 ,1616812430000 -1616812430027 ,112.57244,26.88133074,63.80415726,199.5798021,202.0536557,18.09859,0.16574706,1620000000000 ,1620000000000 ,1620000000000 ,1616812430010 -1616812430036 ,112.5724394,26.8813292,63.800457,199.5874246,202.062051,18.097582,0.165743814,1620000000000 ,1620000000000 ,1620000000000 ,1616812430020 -1616812430048 ,112.5724388,26.88132766,63.79681778,199.5955388,202.0776926,18.098597,0.165753557,1620000000000 ,1620000000000 ,1620000000000 ,1616812430030 -1616812430057 ,112.5724381,26.88132613,63.79321671,199.6070682,202.0790558,18.098951,0.165752628,1620000000000 ,1620000000000 ,1620000000000 ,1616812430040 -1616812430066 ,112.5724375,26.88132459,63.78963089,199.6186795,202.0820499,18.09386,0.1657324,1620000000000 ,1620000000000 ,1620000000000 ,1616812430050 -1616812430076 ,112.5724369,26.88132306,63.78607178,199.6324765,202.0924009,18.085152,0.165660175,1620000000000 ,1620000000000 ,1620000000000 ,1616812430060 -1616812430089 ,112.5724363,26.88132152,63.78252029,199.6492788,202.1015334,18.082136,0.165615701,1620000000000 ,1620000000000 ,1620000000000 ,1616812430070 -1616812430096 ,112.5724356,26.88131999,63.77897263,199.6637314,202.112249,18.08267,0.165614253,1620000000000 ,1620000000000 ,1620000000000 ,1616812430080 -1616812430108 ,112.572435,26.88131845,63.77545166,199.6775284,202.1336609,18.083141,0.165624524,1620000000000 ,1620000000000 ,1620000000000 ,1616812430090 -1616812430116 ,112.5724344,26.88131692,63.77204514,199.6870634,202.1644026,18.086637,0.165662273,1620000000000 ,1620000000000 ,1620000000000 ,1616812430100 -1616812430126 ,112.5724338,26.88131539,63.76880646,199.6980463,202.1942066,18.085278,0.165677853,1620000000000 ,1620000000000 ,1620000000000 ,1616812430110 -1616812430136 ,112.5724331,26.88131385,63.76581192,199.705259,202.2066003,18.078966,0.165642647,1620000000000 ,1620000000000 ,1620000000000 ,1616812430120 -1616812430151 ,112.5724325,26.88131232,63.76308823,199.7126629,202.1980609,18.069492,0.165580119,1620000000000 ,1620000000000 ,1620000000000 ,1616812430130 -1616812430159 ,112.5724319,26.88131079,63.76055527,199.7263506,202.1949655,18.062183,0.165521213,1620000000000 ,1620000000000 ,1620000000000 ,1616812430140 -1616812430169 ,112.5724313,26.88130925,63.75805283,199.7424699,202.2083013,18.061146,0.165496327,1620000000000 ,1620000000000 ,1620000000000 ,1616812430150 -1616812430177 ,112.5724306,26.88130772,63.7554245,199.7608841,202.2316297,18.061096,0.165511609,1620000000000 ,1620000000000 ,1620000000000 ,1616812430160 -1616812430190 ,112.57243,26.88130619,63.75267792,199.7732877,202.2441642,18.055174,0.165465963,1620000000000 ,1620000000000 ,1620000000000 ,1616812430170 -1616812430198 ,112.5724294,26.88130466,63.74983215,199.7846804,202.2577404,18.05637,0.165451544,1620000000000 ,1620000000000 ,1620000000000 ,1616812430180 -1616812430210 ,112.5724288,26.88130313,63.74676895,199.7918112,202.2855736,18.063793,0.16549816,1620000000000 ,1620000000000 ,1620000000000 ,1616812430190 -1616812430220 ,112.5724281,26.8813016,63.74341583,199.8081216,202.3363042,18.073875,0.16554579,1620000000000 ,1620000000000 ,1620000000000 ,1616812430200 -1616812430229 ,112.5724275,26.88130007,63.73989105,199.8156075,202.4012595,18.07137,0.16561403,1620000000000 ,1620000000000 ,1620000000000 ,1616812430210 -1616812430239 ,112.5724269,26.88129853,63.73659897,199.8225197,202.3819857,18.05964,0.165532606,1620000000000 ,1620000000000 ,1620000000000 ,1616812430220 -1616812430247 ,112.5724262,26.881297,63.73363495,199.832683,202.3599952,18.052095,0.165461539,1620000000000 ,1620000000000 ,1620000000000 ,1616812430230 -1616812430257 ,112.5724256,26.88129547,63.73075485,199.8447588,202.3669417,18.052588,0.165460043,1620000000000 ,1620000000000 ,1620000000000 ,1616812430240 -1616812430277 ,112.572425,26.88129394,63.72769547,199.857217,202.3867624,18.054674,0.165469591,1620000000000 ,1620000000000 ,1620000000000 ,1616812430250 -1616812430282 ,112.5724243,26.88129241,63.72434616,199.8641838,202.4178867,18.056555,0.165483048,1620000000000 ,1620000000000 ,1620000000000 ,1616812430260 -1616812430291 ,112.5724237,26.88129089,63.72082901,199.8716697,202.4359451,18.056875,0.165488909,1620000000000 ,1620000000000 ,1620000000000 ,1616812430270 -1616812430297 ,112.5724231,26.88128936,63.71718597,199.8818877,202.4306328,18.055387,0.16547025,1620000000000 ,1620000000000 ,1620000000000 ,1616812430280 -1616812430309 ,112.5724224,26.88128783,63.71345139,199.8953295,202.4290277,18.054401,0.165455245,1620000000000 ,1620000000000 ,1620000000000 ,1616812430290 -1616812430318 ,112.5724218,26.8812863,63.70965958,199.907214,202.4375268,18.056776,0.165462803,1620000000000 ,1620000000000 ,1620000000000 ,1616812430300 -1616812430330 ,112.5724212,26.88128477,63.70586014,199.9148912,202.4650849,18.056147,0.165476825,1620000000000 ,1620000000000 ,1620000000000 ,1616812430310 -1616812430340 ,112.5724205,26.88128324,63.70212936,199.9206558,202.4761855,18.056185,0.165476348,1620000000000 ,1620000000000 ,1620000000000 ,1616812430320 -1616812430355 ,112.5724199,26.88128171,63.69852448,199.9266937,202.4914348,18.048811,0.165439784,1620000000000 ,1620000000000 ,1620000000000 ,1616812430330 -1616812430358 ,112.5724193,26.88128018,63.69509888,199.9322125,202.4871219,18.03785,0.165359815,1620000000000 ,1620000000000 ,1620000000000 ,1616812430340 -1616812430368 ,112.5724187,26.88127865,63.69177246,199.9407366,202.4796521,18.030828,0.165290337,1620000000000 ,1620000000000 ,1620000000000 ,1616812430350 -1616812430379 ,112.572418,26.88127713,63.68843079,199.9532768,202.4828206,18.028946,0.165259993,1620000000000 ,1620000000000 ,1620000000000 ,1616812430360 -1616812430392 ,112.5724174,26.8812756,63.68496704,199.9657624,202.4897455,18.034279,0.165294563,1620000000000 ,1620000000000 ,1620000000000 ,1616812430370 -1616812430399 ,112.5724168,26.88127407,63.68133926,199.9741499,202.4988781,18.037092,0.165322191,1620000000000 ,1620000000000 ,1620000000000 ,1616812430380 -1616812430409 ,112.5724161,26.88127255,63.67753601,199.9815538,202.5090483,18.039148,0.1653337,1620000000000 ,1620000000000 ,1620000000000 ,1616812430390 -1616812430418 ,112.5724155,26.88127102,63.67351532,199.9872092,202.5304678,18.039337,0.165331262,1620000000000 ,1620000000000 ,1620000000000 ,1616812430400 -1616812430430 ,112.5724149,26.88126949,63.66935349,199.9936842,202.545813,18.039244,0.165330261,1620000000000 ,1620000000000 ,1620000000000 ,1616812430410 -1616812430439 ,112.5724142,26.88126797,63.66518402,200.0012248,202.544455,18.035538,0.165296078,1620000000000 ,1620000000000 ,1620000000000 ,1616812430420 -1616812430449 ,112.5724136,26.88126644,63.66106796,200.0104045,202.5417212,18.031286,0.165260813,1620000000000 ,1620000000000 ,1620000000000 ,1616812430430 -1616812430460 ,112.572413,26.88126491,63.6568985,200.0203766,202.5450431,18.02719,0.165221598,1620000000000 ,1620000000000 ,1620000000000 ,1616812430440 -1616812430471 ,112.5724123,26.88126339,63.65254974,200.030458,202.5355344,18.027071,0.165195836,1620000000000 ,1620000000000 ,1620000000000 ,1616812430450 -1616812430479 ,112.5724117,26.88126186,63.64801025,200.0373428,202.5369842,18.027262,0.165167517,1620000000000 ,1620000000000 ,1620000000000 ,1616812430460 -1616812430490 ,112.5724111,26.88126034,63.64339828,200.0424245,202.5469705,18.027075,0.165172321,1620000000000 ,1620000000000 ,1620000000000 ,1616812430470 -1616812430500 ,112.5724104,26.88125881,63.63882065,200.0491727,202.5535582,18.027246,0.165171183,1620000000000 ,1620000000000 ,1620000000000 ,1616812430480 -1616812430511 ,112.5724098,26.88125729,63.63434601,200.056522,202.5522453,18.027796,0.165183425,1620000000000 ,1620000000000 ,1620000000000 ,1616812430490 -1616812430523 ,112.5724092,26.88125576,63.62995529,200.0610299,202.5518465,18.028942,0.165193618,1620000000000 ,1620000000000 ,1620000000000 ,1616812430500 -1616812430529 ,112.5724085,26.88125423,63.62561798,200.0689802,202.5639797,18.028759,0.165197499,1620000000000 ,1620000000000 ,1620000000000 ,1616812430510 -1616812430545 ,112.5724079,26.88125271,63.62128448,200.0791982,202.5784122,18.0261,0.1651837,1620000000000 ,1620000000000 ,1620000000000 ,1616812430520 -1616812430552 ,112.5724073,26.88125118,63.61699677,200.0871485,202.5869907,18.01945,0.165138091,1620000000000 ,1620000000000 ,1620000000000 ,1616812430530 -1616812430559 ,112.5724066,26.88124966,63.61281586,200.0950716,202.5824701,18.01086,0.165066838,1620000000000 ,1620000000000 ,1620000000000 ,1616812430540 -1616812430571 ,112.572406,26.88124814,63.60874557,200.1044972,202.5837786,18.006496,0.165019034,1620000000000 ,1620000000000 ,1620000000000 ,1616812430550 -1616812430580 ,112.5724054,26.88124661,63.60468674,200.1136497,202.5945348,18.00788,0.165019924,1620000000000 ,1620000000000 ,1620000000000 ,1616812430560 -1616812430593 ,112.5724047,26.88124509,63.60051346,200.1246873,202.6153764,18.0146,0.165069544,1620000000000 ,1620000000000 ,1620000000000 ,1616812430570 -1616812430600 ,112.5724041,26.88124356,63.59618759,200.131818,202.6306254,18.018951,0.165116325,1620000000000 ,1620000000000 ,1620000000000 ,1616812430580 -1616812430611 ,112.5724034,26.88124204,63.59184265,200.1406153,202.6403591,18.017775,0.165110937,1620000000000 ,1620000000000 ,1620000000000 ,1616812430590 -1616812430623 ,112.5724028,26.88124052,63.58759689,200.1473362,202.6375872,18.012486,0.16507523,1620000000000 ,1620000000000 ,1620000000000 ,1616812430600 -1616812430635 ,112.5724022,26.88123899,63.58355713,200.1553138,202.6304412,18.003855,0.165025243,1620000000000 ,1620000000000 ,1620000000000 ,1616812430610 -1616812430644 ,112.5724015,26.88123747,63.57972336,200.1668159,202.6340073,17.994253,0.164938794,1620000000000 ,1620000000000 ,1620000000000 ,1616812430620 -1616812430650 ,112.5724009,26.88123595,63.57595825,200.1811866,202.6564238,17.989626,0.164891175,1620000000000 ,1620000000000 ,1620000000000 ,1616812430630 -1616812430660 ,112.5724003,26.88123443,63.57210159,200.1941093,202.6718601,17.993364,0.164908821,1620000000000 ,1620000000000 ,1620000000000 ,1616812430640 -1616812430673 ,112.5723996,26.88123291,63.56805038,200.2038901,202.6838389,18.00009,0.164954786,1620000000000 ,1620000000000 ,1620000000000 ,1616812430650 -1616812430681 ,112.572399,26.88123138,63.56390381,200.2078516,202.7012029,18.005486,0.165005296,1620000000000 ,1620000000000 ,1620000000000 ,1616812430660 -1616812430693 ,112.5723984,26.88122986,63.55978394,200.209245,202.7186775,18.00259,0.164998332,1620000000000 ,1620000000000 ,1620000000000 ,1616812430670 -1616812430705 ,112.5723977,26.88122834,63.55574799,200.2165943,202.7468605,17.99799,0.164982756,1620000000000 ,1620000000000 ,1620000000000 ,1616812430680 -1616812430714 ,112.5723971,26.88122682,63.55185318,200.2253369,202.7609368,17.987652,0.164899249,1620000000000 ,1620000000000 ,1620000000000 ,1616812430690 -1616812430722 ,112.5723964,26.8812253,63.54814911,200.2359647,202.7546227,17.981844,0.164842305,1620000000000 ,1620000000000 ,1620000000000 ,1616812430700 -1616812430732 ,112.5723958,26.88122378,63.544487,200.2465925,202.738445,17.981833,0.164829621,1620000000000 ,1620000000000 ,1620000000000 ,1616812430710 -1616812430744 ,112.5723952,26.88122226,63.54066849,200.2566738,202.7444482,17.989094,0.164868836,1620000000000 ,1620000000000 ,1620000000000 ,1616812430720 -1616812430761 ,112.5723945,26.88122074,63.53665161,200.2638865,202.7859109,17.989397,0.16488744,1620000000000 ,1620000000000 ,1620000000000 ,1616812430730 -1616812430765 ,112.5723939,26.88121922,63.53266907,200.2672196,202.8132768,17.98658,0.164875823,1620000000000 ,1620000000000 ,1620000000000 ,1616812430740 -1616812430772 ,112.5723933,26.8812177,63.52894592,200.2712904,202.8183956,17.983961,0.164867442,1620000000000 ,1620000000000 ,1620000000000 ,1616812430750 -1616812430781 ,112.5723926,26.88121618,63.52548218,200.2756891,202.8182102,17.98151,0.164855247,1620000000000 ,1620000000000 ,1620000000000 ,1616812430760 -1616812430792 ,112.572392,26.88121466,63.52214813,200.2823007,202.8198318,17.977581,0.16483251,1620000000000 ,1620000000000 ,1620000000000 ,1616812430770 -1616812430802 ,112.5723913,26.88121314,63.51888657,200.2871638,202.834434,17.971254,0.164784031,1620000000000 ,1620000000000 ,1620000000000 ,1616812430780 -1616812430812 ,112.5723907,26.88121162,63.51563263,200.297573,202.8345946,17.97099,0.16476889,1620000000000 ,1620000000000 ,1620000000000 ,1616812430790 -1616812430825 ,112.5723901,26.88121011,63.51231766,200.3075724,202.8426544,17.970388,0.1647667,1620000000000 ,1620000000000 ,1620000000000 ,1616812430800 -1616812430832 ,112.5723894,26.88120859,63.50897598,200.3152769,202.860866,17.969118,0.164759912,1620000000000 ,1620000000000 ,1620000000000 ,1616812430810 -1616812430842 ,112.5723888,26.88120707,63.50564957,200.3191837,202.8670435,17.968973,0.164762229,1620000000000 ,1620000000000 ,1620000000000 ,1616812430820 -1616812430852 ,112.5723881,26.88120555,63.50233078,200.3252762,202.8692237,17.968681,0.164750525,1620000000000 ,1620000000000 ,1620000000000 ,1616812430830 -1616812430863 ,112.5723875,26.88120403,63.4989624,200.3318332,202.882359,17.969362,0.16475914,1620000000000 ,1620000000000 ,1620000000000 ,1616812430840 -1616812430873 ,112.5723869,26.88120252,63.49556732,200.3384995,202.8931367,17.967834,0.164760653,1620000000000 ,1620000000000 ,1620000000000 ,1616812430860 -1616812430883 ,112.5723862,26.881201,63.49225998,200.3448652,202.8939227,17.965681,0.16474147,1620000000000 ,1620000000000 ,1620000000000 ,1616812430870 -1616812430897 ,112.5723856,26.88119948,63.48904419,200.3517774,202.8918003,17.959848,0.164703718,1620000000000 ,1620000000000 ,1620000000000 ,1616812430880 -1616812430903 ,112.5723849,26.88119796,63.4858284,200.3568317,202.9063702,17.956291,0.164673272,1620000000000 ,1620000000000 ,1620000000000 ,1616812430880 -1616812430915 ,112.5723836,26.88119493,63.47918701,200.3722406,202.9269399,17.95316,0.329283231,1620000000000 ,1620000000000 ,1620000000000 ,1616812430900 -1616812430924 ,112.572383,26.88119341,63.4757843,200.380191,202.9317119,17.95223,0.164631047,1620000000000 ,1620000000000 ,1620000000000 ,1616812430910 -1616812430933 ,112.572383,26.88119341,63.4757843,200.380191,-400,17.95223,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812430920 -1616812430946 ,112.5723817,26.88119038,63.46889114,200.3950535,202.9388837,17.953375,0.329248066,1620000000000 ,1620000000000 ,1620000000000 ,1616812430930 -1616812430957 ,112.5723811,26.88118887,63.46528244,200.4008455,202.9477456,17.954659,0.164640125,1620000000000 ,1620000000000 ,1620000000000 ,1616812430940 -1616812430964 ,112.5723804,26.88118735,63.46152878,200.405572,202.9627848,17.955635,0.164647297,1620000000000 ,1620000000000 ,1620000000000 ,1616812430950 -1616812430974 ,112.5723798,26.88118583,63.4577713,200.4079215,202.9684945,17.950327,0.164613383,1620000000000 ,1620000000000 ,1620000000000 ,1616812430960 -1616812430985 ,112.5723792,26.88118432,63.45404816,200.4141233,202.9648996,17.948174,0.164581829,1620000000000 ,1620000000000 ,1620000000000 ,1616812430970 -1616812431004 ,112.5723785,26.8811828,63.45026016,200.4228933,202.9592891,17.946537,0.16457172,1620000000000 ,1620000000000 ,1620000000000 ,1616812430980 -1616812431008 ,112.5723785,26.8811828,63.45026016,200.4228933,-400,17.946537,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812430980 -1616812431015 ,112.5723772,26.88117977,63.44227982,200.4377558,202.9657323,17.944445,0.329093695,1620000000000 ,1620000000000 ,1620000000000 ,1616812431000 -1616812431025 ,112.5723766,26.88117826,63.43810272,200.4421271,202.9728363,17.948065,0.164553896,1620000000000 ,1620000000000 ,1620000000000 ,1616812431010 -1616812431034 ,112.5723759,26.88117674,63.43379211,200.4478645,202.9874407,17.951967,0.164582395,1620000000000 ,1620000000000 ,1620000000000 ,1616812431020 -1616812431045 ,112.5723753,26.88117523,63.42941666,200.4534106,202.9936013,17.952694,0.164600706,1620000000000 ,1620000000000 ,1620000000000 ,1616812431030 -1616812431055 ,112.5723747,26.88117371,63.42509079,200.4586562,202.992287,17.948387,0.164575272,1620000000000 ,1620000000000 ,1620000000000 ,1616812431040 -1616812431065 ,112.572374,26.8811722,63.42095184,200.4636559,202.9870604,17.944326,0.164551379,1620000000000 ,1620000000000 ,1620000000000 ,1616812431050 -1616812431076 ,112.5723734,26.88117068,63.41697311,200.47218,202.9838198,17.937765,0.164506863,1620000000000 ,1620000000000 ,1620000000000 ,1616812431060 -1616812431084 ,112.5723727,26.88116917,63.41302109,200.4818515,202.9934767,17.933039,0.164466843,1620000000000 ,1620000000000 ,1620000000000 ,1616812431070 -1616812431096 ,112.5723721,26.88116766,63.40899658,200.4915231,203.0068236,17.931978,0.164448672,1620000000000 ,1620000000000 ,1620000000000 ,1616812431080 -1616812431108 ,112.5723714,26.88116614,63.40489197,200.49808,203.0137876,17.928667,0.164425535,1620000000000 ,1620000000000 ,1620000000000 ,1616812431090 -1616812431115 ,112.5723708,26.88116463,63.40073013,200.504637,203.0186579,17.92689,0.164409635,1620000000000 ,1620000000000 ,1620000000000 ,1616812431100 -1616812431127 ,112.5723702,26.88116312,63.39645004,200.5122868,203.0350958,17.923292,0.164372474,1620000000000 ,1620000000000 ,1620000000000 ,1616812431110 -1616812431135 ,112.5723695,26.8811616,63.39201736,200.5213573,203.0398205,17.923483,0.164362927,1620000000000 ,1620000000000 ,1620000000000 ,1616812431120 -1616812431145 ,112.5723689,26.88116009,63.38745499,200.5295535,203.0452858,17.923412,0.164355847,1620000000000 ,1620000000000 ,1620000000000 ,1616812431130 -1616812431155 ,112.5723682,26.88115858,63.3827858,200.5372034,203.0425322,17.922852,0.164344293,1620000000000 ,1620000000000 ,1620000000000 ,1616812431140 -1616812431165 ,112.5723676,26.88115707,63.37796021,200.5441155,203.030714,17.922724,0.164327264,1620000000000 ,1620000000000 ,1620000000000 ,1616812431150 -1616812431178 ,112.5723669,26.88115556,63.37291336,200.5530221,203.0433132,17.921106,0.164300246,1620000000000 ,1620000000000 ,1620000000000 ,1616812431160 -1616812431188 ,112.5723663,26.88115404,63.36761856,200.5610544,203.0592152,17.92402,0.164301714,1620000000000 ,1620000000000 ,1620000000000 ,1616812431170 -1616812431198 ,112.5723657,26.88115253,63.36214066,200.5688954,203.0657343,17.924194,0.164304045,1620000000000 ,1620000000000 ,1620000000000 ,1616812431180 -1616812431206 ,112.572365,26.88115102,63.35655212,200.5784031,203.0589734,17.925016,0.164292009,1620000000000 ,1620000000000 ,1620000000000 ,1616812431190 -1616812431216 ,112.5723644,26.88114951,63.3511467,200.5775834,202.972893,17.92454,0.164240356,1620000000000 ,1620000000000 ,1620000000000 ,1616812431200 -1616812431228 ,112.5723637,26.881148,63.3460083,200.5876102,202.8260089,17.923452,0.164156746,1620000000000 ,1620000000000 ,1620000000000 ,1616812431210 -1616812431241 ,112.5723631,26.88114648,63.34073257,200.5956971,202.8442237,17.926172,0.164158507,1620000000000 ,1620000000000 ,1620000000000 ,1616812431220 -1616812431251 ,112.5723625,26.88114497,63.33545685,200.6049862,202.8672398,17.925093,0.164164324,1620000000000 ,1620000000000 ,1620000000000 ,1616812431230 -1616812431259 ,112.5723618,26.88114346,63.3303299,200.6110787,202.8678214,17.923937,0.164157582,1620000000000 ,1620000000000 ,1620000000000 ,1616812431240 -1616812431267 ,112.5723612,26.88114195,63.3254776,200.6186739,202.8669308,17.919489,0.164131754,1620000000000 ,1620000000000 ,1620000000000 ,1616812431250 -1616812431277 ,112.5723605,26.88114043,63.32095718,200.6258319,202.8787841,17.915697,0.164107114,1620000000000 ,1620000000000 ,1620000000000 ,1616812431260 -1616812431287 ,112.5723599,26.88113892,63.31677246,200.6310775,202.890434,17.9082,0.164067622,1620000000000 ,1620000000000 ,1620000000000 ,1616812431270 -1616812431297 ,112.5723593,26.88113741,63.31288147,200.6360499,202.8977195,17.902126,0.164025646,1620000000000 ,1620000000000 ,1620000000000 ,1616812431280 -1616812431309 ,112.5723586,26.8811359,63.30925369,200.6426068,202.9058704,17.902342,0.164020397,1620000000000 ,1620000000000 ,1620000000000 ,1616812431290 -1616812431318 ,112.572358,26.88113439,63.30588531,200.6506938,202.9112746,17.90086,0.164025194,1620000000000 ,1620000000000 ,1620000000000 ,1616812431300 -1616812431332 ,112.5723574,26.88113288,63.3028183,200.658125,202.928967,17.899052,0.1640276,1620000000000 ,1620000000000 ,1620000000000 ,1616812431310 -1616812431338 ,112.5723567,26.88113137,63.30001831,200.6674687,202.9427177,17.896233,0.164026432,1620000000000 ,1620000000000 ,1620000000000 ,1616812431320 -1616812431348 ,112.5723561,26.88112986,63.29729462,200.6751459,202.9410031,17.892414,0.163983757,1620000000000 ,1620000000000 ,1620000000000 ,1616812431330 -1616812431359 ,112.5723554,26.88112835,63.29452896,200.6817848,202.9534825,17.892786,0.163978173,1620000000000 ,1620000000000 ,1620000000000 ,1616812431340 -1616812431370 ,112.5723548,26.88112684,63.29175186,200.6888062,202.9723787,17.890772,0.163974332,1620000000000 ,1620000000000 ,1620000000000 ,1616812431350 -1616812431378 ,112.5723542,26.88112533,63.28912735,200.6977401,202.96602,17.893015,0.163978609,1620000000000 ,1620000000000 ,1620000000000 ,1616812431360 -1616812431392 ,112.5723535,26.88112382,63.28678513,200.7045703,202.9750062,17.88664,0.163961594,1620000000000 ,1620000000000 ,1620000000000 ,1616812431370 -1616812431399 ,112.5723529,26.88112231,63.28482056,200.7124387,202.9823195,17.873556,0.163877368,1620000000000 ,1620000000000 ,1620000000000 ,1616812431380 -1616812431411 ,112.5723522,26.8811208,63.28315353,200.720389,202.9966346,17.866371,0.163819814,1620000000000 ,1620000000000 ,1620000000000 ,1616812431390 -1616812431419 ,112.5723516,26.88111929,63.28162384,200.7260717,203.0064376,17.865852,0.163793142,1620000000000 ,1620000000000 ,1620000000000 ,1616812431400 -1616812431430 ,112.572351,26.88111779,63.28003693,200.7333937,203.0179303,17.87153,0.163837668,1620000000000 ,1620000000000 ,1620000000000 ,1616812431410 -1616812431439 ,112.5723503,26.88111628,63.27833939,200.7394316,203.0447564,17.87422,0.16387383,1620000000000 ,1620000000000 ,1620000000000 ,1616812431420 -1616812431452 ,112.5723497,26.88111477,63.27672195,200.7448138,203.0562917,17.871058,0.163874335,1620000000000 ,1620000000000 ,1620000000000 ,1616812431430 -1616812431459 ,112.572349,26.88111326,63.27530289,200.752245,203.0516234,17.86251,0.163810715,1620000000000 ,1620000000000 ,1620000000000 ,1616812431440 -1616812431469 ,112.5723484,26.88111176,63.27373505,200.7597856,203.1344315,17.856342,0.163802322,1620000000000 ,1620000000000 ,1620000000000 ,1616812431450 -1616812431482 ,112.5723477,26.88111025,63.27182388,200.7682004,203.2275351,17.853844,0.163815482,1620000000000 ,1620000000000 ,1620000000000 ,1616812431460 -1616812431490 ,112.5723471,26.88110875,63.26975632,200.7769976,203.2442931,17.857191,0.163839064,1620000000000 ,1620000000000 ,1620000000000 ,1616812431470 -1616812431503 ,112.5723464,26.88110724,63.26751709,200.7872702,203.2532541,17.858133,0.163842252,1620000000000 ,1620000000000 ,1620000000000 ,1616812431480 -1616812431511 ,112.5723458,26.88110574,63.26519394,200.7962588,203.255627,17.856108,0.163829957,1620000000000 ,1620000000000 ,1620000000000 ,1616812431490 -1616812431518 ,112.5723452,26.88110423,63.26292419,200.8047009,203.2591007,17.85209,0.163800532,1620000000000 ,1620000000000 ,1620000000000 ,1616812431500 -1616812431534 ,112.5723445,26.88110273,63.26073837,200.811012,203.2636726,17.84726,0.163765348,1620000000000 ,1620000000000 ,1620000000000 ,1616812431510 -1616812431542 ,112.5723439,26.88110122,63.2586174,200.8162576,203.2893197,17.84488,0.163750612,1620000000000 ,1620000000000 ,1620000000000 ,1616812431520 -1616812431553 ,112.5723432,26.88109972,63.25652695,200.8235249,203.3130055,17.842644,0.163734087,1620000000000 ,1620000000000 ,1620000000000 ,1616812431530 -1616812431560 ,112.5723426,26.88109822,63.25445175,200.831885,203.329808,17.839283,0.16371185,1620000000000 ,1620000000000 ,1620000000000 ,1616812431540 -1616812431568 ,112.5723419,26.88109671,63.25239182,200.8381415,203.3330429,17.833107,0.163673658,1620000000000 ,1620000000000 ,1620000000000 ,1616812431550 -1616812431579 ,112.5723413,26.88109521,63.25033951,200.8458733,203.3252556,17.830294,0.163634729,1620000000000 ,1620000000000 ,1620000000000 ,1616812431560 -1616812431592 ,112.5723406,26.88109371,63.24824905,200.8519385,203.3261536,17.830244,0.163632093,1620000000000 ,1620000000000 ,1620000000000 ,1616812431570 -1616812431600 ,112.57234,26.8810922,63.24604416,200.8599161,203.3363364,17.830805,0.163631234,1620000000000 ,1620000000000 ,1620000000000 ,1616812431580 -1616812431613 ,112.5723393,26.8810907,63.2436676,200.8704619,203.3566997,17.828613,0.163625746,1620000000000 ,1620000000000 ,1620000000000 ,1616812431590 -1616812431620 ,112.5723387,26.8810892,63.2412262,200.8779478,203.3712339,17.820272,0.163569675,1620000000000 ,1620000000000 ,1620000000000 ,1616812431600 -1616812431630 ,112.572338,26.8810877,63.23880768,200.8846687,203.3633839,17.812407,0.163490804,1620000000000 ,1620000000000 ,1620000000000 ,1616812431610 -1616812431640 ,112.5723374,26.8810862,63.23633194,200.8931928,203.3512906,17.804794,0.163423729,1620000000000 ,1620000000000 ,1620000000000 ,1616812431620 -1616812431649 ,112.5723367,26.8810847,63.23363495,200.9021267,203.3558918,17.802036,0.163376267,1620000000000 ,1620000000000 ,1620000000000 ,1616812431630 -1616812431660 ,112.5723361,26.8810832,63.23067093,200.9098585,203.3901583,17.803335,0.163373644,1620000000000 ,1620000000000 ,1620000000000 ,1616812431640 -1616812431671 ,112.5723354,26.8810817,63.22756195,200.9164701,203.4141385,17.802443,0.163376057,1620000000000 ,1620000000000 ,1620000000000 ,1616812431650 -1616812431681 ,112.5723348,26.8810802,63.22441864,200.9215244,203.4126826,17.803581,0.163375548,1620000000000 ,1620000000000 ,1620000000000 ,1616812431660 -1616812431690 ,112.5723341,26.8810787,63.22127151,200.9273164,203.4080116,17.79785,0.163349371,1620000000000 ,1620000000000 ,1620000000000 ,1616812431670 -1616812431700 ,112.5723335,26.8810772,63.21806335,200.9379715,203.4016601,17.788885,0.163267625,1620000000000 ,1620000000000 ,1620000000000 ,1616812431680 -1616812431720 ,112.5723328,26.88107571,63.21469498,200.9495282,203.4065584,17.7817,0.163190549,1620000000000 ,1620000000000 ,1620000000000 ,1616812431690 -1616812431722 ,112.5723322,26.88107421,63.21111679,200.9602926,203.4184594,17.77377,0.16311198,1620000000000 ,1620000000000 ,1620000000000 ,1616812431700 -1616812431731 ,112.5723315,26.88107271,63.20729828,200.9722591,203.4257011,17.77258,0.163072032,1620000000000 ,1620000000000 ,1620000000000 ,1616812431710 -1616812431740 ,112.5723309,26.88107122,63.20320511,200.9827229,203.4292405,17.768826,0.163029286,1620000000000 ,1620000000000 ,1620000000000 ,1616812431720 -1616812431750 ,112.5723302,26.88106972,63.1987648,200.9915749,203.4288573,17.769165,0.163000761,1620000000000 ,1620000000000 ,1620000000000 ,1616812431730 -1616812431761 ,112.5723296,26.88106823,63.19401169,200.997804,203.4454152,17.76615,0.162965005,1620000000000 ,1620000000000 ,1620000000000 ,1616812431740 -1616812431771 ,112.5723289,26.88106673,63.18911743,201.0009459,203.4657348,17.761848,0.162916047,1620000000000 ,1620000000000 ,1620000000000 ,1616812431750 -1616812431781 ,112.5723283,26.88106524,63.18420792,201.0055904,203.4730997,17.756628,0.162873572,1620000000000 ,1620000000000 ,1620000000000 ,1616812431760 -1616812431791 ,112.5723276,26.88106375,63.17935944,201.0121474,203.4789509,17.743351,0.162775844,1620000000000 ,1620000000000 ,1620000000000 ,1616812431770 -1616812431801 ,112.572327,26.88106225,63.17470169,201.0182672,203.4826151,17.72731,0.162642004,1620000000000 ,1620000000000 ,1620000000000 ,1616812431780 -1616812431812 ,112.5723264,26.88106076,63.1702919,201.0256438,203.4791742,17.710619,0.162493299,1620000000000 ,1620000000000 ,1620000000000 ,1616812431790 -1616812431830 ,112.5723257,26.88105927,63.16598892,201.0329658,203.4835806,17.701195,0.162395811,1620000000000 ,1620000000000 ,1620000000000 ,1616812431800 -1616812431835 ,112.5723251,26.88105779,63.16161728,201.0434843,203.5029246,17.698454,0.162357478,1620000000000 ,1620000000000 ,1620000000000 ,1616812431810 -1616812431844 ,112.5723244,26.8810563,63.15713882,201.0520357,203.5311987,17.695335,0.162331205,1620000000000 ,1620000000000 ,1620000000000 ,1616812431820 -1616812431851 ,112.5723238,26.88105481,63.15275574,201.0574452,203.5325632,17.684093,0.162249837,1620000000000 ,1620000000000 ,1620000000000 ,1616812431830 -1616812431862 ,112.5723231,26.88105332,63.1486702,201.0632372,203.5090427,17.670448,0.16213797,1620000000000 ,1620000000000 ,1620000000000 ,1616812431840 -1616812431872 ,112.5723225,26.88105184,63.14484787,201.0688926,203.5187289,17.65274,0.162001275,1620000000000 ,1620000000000 ,1620000000000 ,1616812431850 -1616812431883 ,112.5723218,26.88105035,63.14123154,201.0764878,203.539289,17.635757,0.16185788,1620000000000 ,1620000000000 ,1620000000000 ,1616812431860 -1616812431893 ,112.5723212,26.88104887,63.13775253,201.0858588,203.5421828,17.618755,0.161706844,1620000000000 ,1620000000000 ,1620000000000 ,1616812431870 -1616812431902 ,112.5723205,26.88104739,63.13444901,201.0945468,203.5428451,17.604086,0.16157699,1620000000000 ,1620000000000 ,1620000000000 ,1616812431880 -1616812431913 ,112.5723199,26.88104591,63.13129425,201.104191,203.5473833,17.593456,0.16148903,1620000000000 ,1620000000000 ,1620000000000 ,1616812431890 -1616812431922 ,112.5723192,26.88104443,63.12820435,201.1146549,203.5593021,17.581879,0.161385402,1620000000000 ,1620000000000 ,1620000000000 ,1616812431900 -1616812431932 ,112.5723186,26.88104295,63.12518692,201.1243264,203.5844851,17.564774,0.161256052,1620000000000 ,1620000000000 ,1620000000000 ,1616812431910 -1616812431943 ,112.572318,26.88104148,63.12238693,201.1297086,203.6146269,17.552458,0.161151378,1620000000000 ,1620000000000 ,1620000000000 ,1616812431920 -1616812431954 ,112.5723173,26.88104,63.11992264,201.1351454,203.6280054,17.535927,0.161038126,1620000000000 ,1620000000000 ,1620000000000 ,1616812431940 -1616812431964 ,112.5723167,26.88103853,63.1176796,201.1406916,203.6375702,17.518663,0.160896305,1620000000000 ,1620000000000 ,1620000000000 ,1616812431940 -1616812431974 ,112.572316,26.88103705,63.11555862,201.1492156,203.6436425,17.500364,0.160740846,1620000000000 ,1620000000000 ,1620000000000 ,1616812431960 -1616812431984 ,112.5723154,26.88103558,63.11343002,201.1557999,203.6494084,17.481726,0.160579278,1620000000000 ,1620000000000 ,1620000000000 ,1616812431970 -1616812431998 ,112.5723141,26.88103264,63.10891724,201.1719738,203.6585799,17.460857,0.320842231,1620000000000 ,1620000000000 ,1620000000000 ,1616812431980 -1616812432006 ,112.5723141,26.88103264,63.10891724,201.1719738,-400,17.460857,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812431980 -1616812432014 ,112.5723128,26.88102971,63.1039772,201.1825743,203.6558707,17.43352,0.320409198,1620000000000 ,1620000000000 ,1620000000000 ,1616812432000 -1616812432024 ,112.5723122,26.88102824,63.10146713,201.1908798,203.665283,17.417091,0.159971876,1620000000000 ,1620000000000 ,1620000000000 ,1616812432010 -1616812432033 ,112.5723115,26.88102678,63.0989151,201.1986116,203.6744711,17.402742,0.159849207,1620000000000 ,1620000000000 ,1620000000000 ,1616812432020 -1616812432048 ,112.5723109,26.88102532,63.09627151,201.2066439,203.680583,17.386343,0.159693868,1620000000000 ,1620000000000 ,1620000000000 ,1616812432030 -1616812432055 ,112.5723102,26.88102386,63.09350967,201.2147581,203.7103042,17.375982,0.159589762,1620000000000 ,1620000000000 ,1620000000000 ,1616812432040 -1616812432064 ,112.5723096,26.8810224,63.09062958,201.2212331,203.7335673,17.366772,0.159500783,1620000000000 ,1620000000000 ,1620000000000 ,1616812432050 -1616812432075 ,112.5723089,26.88102094,63.08769226,201.2274896,203.7364808,17.353088,0.159388232,1620000000000 ,1620000000000 ,1620000000000 ,1616812432060 -1616812432087 ,112.5723083,26.88101948,63.08475494,201.2338007,203.735436,17.337055,0.159243369,1620000000000 ,1620000000000 ,1620000000000 ,1616812432070 -1616812432094 ,112.5723077,26.88101802,63.08181,201.2417237,203.7434231,17.321917,0.159104454,1620000000000 ,1620000000000 ,1620000000000 ,1616812432080 -1616812432104 ,112.572307,26.88101657,63.0787735,201.2519963,203.7539,17.307636,0.158970816,1620000000000 ,1620000000000 ,1620000000000 ,1616812432090 -1616812432117 ,112.5723064,26.88101511,63.07565308,201.2623509,203.7693165,17.296494,0.158861295,1620000000000 ,1620000000000 ,1620000000000 ,1616812432100 -1616812432126 ,112.5723057,26.88101366,63.07252502,201.2705744,203.7858431,17.282413,0.158740208,1620000000000 ,1620000000000 ,1620000000000 ,1616812432110 -1616812432135 ,112.5723051,26.88101221,63.06941986,201.2814754,203.7875402,17.270054,0.158630503,1620000000000 ,1620000000000 ,1620000000000 ,1616812432120 -1616812432144 ,112.5723045,26.88101076,63.06625748,201.2892345,203.7932827,17.255753,0.158499094,1620000000000 ,1620000000000 ,1620000000000 ,1616812432130 -1616812432154 ,112.5723038,26.88100931,63.06294632,201.2973488,203.7936928,17.240454,0.15835781,1620000000000 ,1620000000000 ,1620000000000 ,1616812432140 -1616812432168 ,112.5723032,26.88100786,63.05949402,201.3016381,203.798936,17.224285,0.158194886,1620000000000 ,1620000000000 ,1620000000000 ,1616812432150 -1616812432175 ,112.5723026,26.88100642,63.05596161,201.3060641,203.8117886,17.21248,0.1580789,1620000000000 ,1620000000000 ,1620000000000 ,1616812432160 -1616812432185 ,112.5723019,26.88100497,63.05236435,201.3129762,203.8296058,17.204445,0.157994265,1620000000000 ,1620000000000 ,1620000000000 ,1616812432170 -1616812432202 ,112.5723013,26.88100353,63.04870605,201.3215003,203.8487501,17.190062,0.15787815,1620000000000 ,1620000000000 ,1620000000000 ,1616812432180 -1616812432206 ,112.5723006,26.88100209,63.04515839,201.3279207,203.8562552,17.17326,0.15774259,1620000000000 ,1620000000000 ,1620000000000 ,1616812432190 -1616812432225 ,112.5723,26.88100064,63.04200363,201.3265273,203.9555284,17.166737,0.157744001,1620000000000 ,1620000000000 ,1620000000000 ,1616812432200 -1616812432228 ,112.5722994,26.8809992,63.03912735,201.3378108,204.1018287,17.150383,0.157885146,1620000000000 ,1620000000000 ,1620000000000 ,1616812432210 -1616812432244 ,112.5722987,26.88099776,63.03603363,201.3498319,204.1160478,17.135794,0.157735019,1620000000000 ,1620000000000 ,1620000000000 ,1616812432220 -1616812432246 ,112.5722981,26.88099632,63.03268051,201.3583014,204.1401121,17.11998,0.157586167,1620000000000 ,1620000000000 ,1620000000000 ,1616812432230 -1616812432257 ,112.5722974,26.88099489,63.02923584,201.3645852,204.1423396,17.104515,0.157433192,1620000000000 ,1620000000000 ,1620000000000 ,1616812432240 -1616812432267 ,112.5722968,26.88099345,63.02574921,201.369175,204.1448056,17.097408,0.157340449,1620000000000 ,1620000000000 ,1620000000000 ,1616812432250 -1616812432275 ,112.5722961,26.88099202,63.02218246,201.3751856,204.1591553,17.086178,0.157257032,1620000000000 ,1620000000000 ,1620000000000 ,1616812432260 -1616812432286 ,112.5722955,26.88099058,63.01847458,201.3853216,204.1692997,17.06939,0.157096745,1620000000000 ,1620000000000 ,1620000000000 ,1616812432270 -1616812432296 ,112.5722948,26.88098915,63.01477432,201.3954849,204.1651238,17.046944,0.156896992,1620000000000 ,1620000000000 ,1620000000000 ,1616812432280 -1616812432308 ,112.5722942,26.88098772,63.01118851,201.4057029,204.1543431,17.026464,0.156715025,1620000000000 ,1620000000000 ,1620000000000 ,1616812432290 -1616812432317 ,112.5722936,26.88098629,63.00763702,201.4158662,204.1525653,17.009964,0.156541749,1620000000000 ,1620000000000 ,1620000000000 ,1616812432300 -1616812432327 ,112.5722929,26.88098487,63.00405502,201.4275868,204.1636648,16.996134,0.156417764,1620000000000 ,1620000000000 ,1620000000000 ,1616812432310 -1616812432339 ,112.5722923,26.88098344,63.0004158,201.4400178,204.1871259,16.97936,0.156264845,1620000000000 ,1620000000000 ,1620000000000 ,1616812432320 -1616812432351 ,112.5722916,26.88098202,62.99686432,201.4469026,204.2064222,16.96711,0.156152252,1620000000000 ,1620000000000 ,1620000000000 ,1616812432330 -1616812432362 ,112.572291,26.88098059,62.99348831,201.4574484,204.1988635,16.94973,0.156008262,1620000000000 ,1620000000000 ,1620000000000 ,1616812432340 -1616812432370 ,112.5722904,26.88097917,62.99020386,201.4711634,204.1875327,16.928335,0.155829478,1620000000000 ,1620000000000 ,1620000000000 ,1616812432350 -1616812432377 ,112.5722897,26.88097775,62.98693848,201.486545,204.1960293,16.908571,0.155638194,1620000000000 ,1620000000000 ,1620000000000 ,1616812432360 -1616812432387 ,112.5722891,26.88097634,62.98366165,201.5008064,204.2042301,16.890673,0.155476092,1620000000000 ,1620000000000 ,1620000000000 ,1616812432370 -1616812432400 ,112.5722885,26.88097492,62.98044205,201.5141663,204.220799,16.875841,0.155329792,1620000000000 ,1620000000000 ,1620000000000 ,1616812432380 -1616812432415 ,112.5722878,26.8809735,62.97726822,201.5300123,204.2368712,16.860352,0.155194804,1620000000000 ,1620000000000 ,1620000000000 ,1616812432390 -1616812432418 ,112.5722872,26.88097209,62.97418594,201.5429077,204.2489909,16.844706,0.155067442,1620000000000 ,1620000000000 ,1620000000000 ,1616812432400 -1616812432428 ,112.5722865,26.88097068,62.97129059,201.5551201,204.2550451,16.81798,0.154861949,1620000000000 ,1620000000000 ,1620000000000 ,1616812432410 -1616812432439 ,112.5722859,26.88096927,62.96855164,201.5704197,204.268168,16.791628,0.154614803,1620000000000 ,1620000000000 ,1620000000000 ,1616812432420 -1616812432451 ,112.5722853,26.88096786,62.96585846,201.5830966,204.273648,16.776043,0.154462262,1620000000000 ,1620000000000 ,1620000000000 ,1616812432430 -1616812432458 ,112.5722846,26.88096645,62.96318054,201.5956914,204.2873432,16.762564,0.154334986,1620000000000 ,1620000000000 ,1620000000000 ,1616812432440 -1616812432468 ,112.572284,26.88096505,62.96038055,201.6072481,204.2107057,16.747665,0.154037148,1620000000000 ,1620000000000 ,1620000000000 ,1616812432450 -1616812432478 ,112.5722834,26.88096365,62.95748138,201.6212363,204.1292372,16.73364,0.153767481,1620000000000 ,1620000000000 ,1620000000000 ,1616812432460 -1616812432488 ,112.5722827,26.88096224,62.95472336,201.6340498,204.1403442,16.709671,0.153586216,1620000000000 ,1620000000000 ,1620000000000 ,1616812432470 -1616812432497 ,112.5722821,26.88096084,62.95220566,201.646672,204.1569917,16.683727,0.153361864,1620000000000 ,1620000000000 ,1620000000000 ,1616812432480 -1616812432508 ,112.5722815,26.88095945,62.94982529,201.6619989,204.1678411,16.661724,0.153158551,1620000000000 ,1620000000000 ,1620000000000 ,1616812432490 -1616812432520 ,112.5722809,26.88095805,62.9472847,201.6792929,204.1620296,16.648434,0.153015306,1620000000000 ,1620000000000 ,1620000000000 ,1616812432500 -1616812432528 ,112.5722802,26.88095666,62.94446182,201.6912594,204.1874435,16.635899,0.152889925,1620000000000 ,1620000000000 ,1620000000000 ,1616812432510 -1616812432546 ,112.5722796,26.88095526,62.94151306,201.6984994,204.2213925,16.620329,0.15275916,1620000000000 ,1620000000000 ,1620000000000 ,1616812432520 -1616812432550 ,112.572279,26.88095387,62.93865967,201.7049745,204.2194319,16.595627,0.152555973,1620000000000 ,1620000000000 ,1620000000000 ,1616812432530 -1616812432560 ,112.5722784,26.88095248,62.93589783,201.7159301,204.2205097,16.577152,0.152385388,1620000000000 ,1620000000000 ,1620000000000 ,1616812432540 -1616812432569 ,112.5722777,26.88095109,62.93320084,201.7261754,204.2389579,16.555481,0.152207419,1620000000000 ,1620000000000 ,1620000000000 ,1616812432550 -1616812432578 ,112.5722771,26.88094971,62.93050385,201.7392893,204.257037,16.53663,0.152030936,1620000000000 ,1620000000000 ,1620000000000 ,1616812432560 -1616812432590 ,112.5722765,26.88094832,62.92778778,201.7534142,204.2550623,16.514492,0.151836047,1620000000000 ,1620000000000 ,1620000000000 ,1616812432570 -1616812432599 ,112.5722759,26.88094694,62.92503738,201.7672658,204.2600918,16.495155,0.151663298,1620000000000 ,1620000000000 ,1620000000000 ,1616812432580 -1616812432610 ,112.5722752,26.88094556,62.92224884,201.779888,204.2849423,16.477522,0.15148797,1620000000000 ,1620000000000 ,1620000000000 ,1616812432590 -1616812432619 ,112.5722746,26.88094418,62.919384,201.7925648,204.3079666,16.463757,0.151374115,1620000000000 ,1620000000000 ,1620000000000 ,1616812432600 -1616812432632 ,112.572274,26.8809428,62.91646957,201.8033838,204.329089,16.445787,0.151218315,1620000000000 ,1620000000000 ,1620000000000 ,1616812432610 -1616812432639 ,112.5722734,26.88094143,62.91350174,201.8143668,204.326004,16.42917,0.151061967,1620000000000 ,1620000000000 ,1620000000000 ,1616812432620 -1616812432649 ,112.5722728,26.88094005,62.91042328,201.8284096,204.3253367,16.408306,0.150871149,1620000000000 ,1620000000000 ,1620000000000 ,1616812432630 -1616812432659 ,112.5722721,26.88093868,62.90711212,201.8445835,204.336669,16.386929,0.150670674,1620000000000 ,1620000000000 ,1620000000000 ,1616812432640 -1616812432671 ,112.5722715,26.88093731,62.90355301,201.8640086,204.3625183,16.365871,0.150464224,1620000000000 ,1620000000000 ,1620000000000 ,1616812432650 -1616812432679 ,112.5722709,26.88093594,62.89986801,201.8798819,204.3651659,16.346619,0.150275173,1620000000000 ,1620000000000 ,1620000000000 ,1616812432660 -1616812432689 ,112.5722703,26.88093457,62.89610291,201.8957007,204.3713725,16.33144,0.150123233,1620000000000 ,1620000000000 ,1620000000000 ,1616812432670 -1616812432703 ,112.5722697,26.88093321,62.89213943,201.9165191,204.3924797,16.317986,0.14999198,1620000000000 ,1620000000000 ,1620000000000 ,1616812432680 -1616812432711 ,112.572269,26.88093184,62.88788986,201.9350152,204.4374395,16.299942,0.149816398,1620000000000 ,1620000000000 ,1620000000000 ,1616812432690 -1616812432722 ,112.5722684,26.88093048,62.88348389,201.9504788,204.4567322,16.27809,0.149626584,1620000000000 ,1620000000000 ,1620000000000 ,1616812432700 -1616812432729 ,112.5722678,26.88092912,62.87911224,201.9651773,204.4651823,16.25665,0.149421164,1620000000000 ,1620000000000 ,1620000000000 ,1616812432710 -1616812432740 ,112.5722672,26.88092776,62.87472153,201.9781001,204.4776468,16.242424,0.149274063,1620000000000 ,1620000000000 ,1620000000000 ,1616812432720 -1616812432753 ,112.5722666,26.8809264,62.87024689,201.9934543,204.5058079,16.223118,0.149106884,1620000000000 ,1620000000000 ,1620000000000 ,1616812432730 -1616812432760 ,112.5722659,26.88092505,62.86571503,202.007907,204.5387151,16.203445,0.148930633,1620000000000 ,1620000000000 ,1620000000000 ,1616812432740 -1616812432770 ,112.5722653,26.8809237,62.86129379,202.0208844,204.5649155,16.18634,0.148771289,1620000000000 ,1620000000000 ,1620000000000 ,1616812432750 -1616812432782 ,112.5722647,26.88092235,62.85705948,202.0376866,204.5744778,16.162842,0.148595894,1620000000000 ,1620000000000 ,1620000000000 ,1616812432760 -1616812432794 ,112.5722641,26.880921,62.85284424,202.0559642,204.5894112,16.140545,0.148369676,1620000000000 ,1620000000000 ,1620000000000 ,1616812432770 -1616812432803 ,112.5722635,26.88091965,62.84852982,202.0764275,204.6064531,16.122803,0.148203466,1620000000000 ,1620000000000 ,1620000000000 ,1616812432780 -1616812432814 ,112.5722629,26.8809183,62.84399033,202.0935576,204.621709,16.105356,0.148021068,1620000000000 ,1620000000000 ,1620000000000 ,1616812432790 -1616812432821 ,112.5722622,26.88091696,62.83933258,202.1051143,204.6460362,16.084621,0.147836893,1620000000000 ,1620000000000 ,1620000000000 ,1616812432800 -1616812432830 ,112.5722616,26.88091562,62.83471298,202.1144033,204.6788126,16.070213,0.147682058,1620000000000 ,1620000000000 ,1620000000000 ,1616812432810 -1616812432843 ,112.572261,26.88091428,62.83018875,202.1282549,204.7005822,16.060951,0.147595576,1620000000000 ,1620000000000 ,1620000000000 ,1616812432820 -1616812432851 ,112.5722604,26.88091294,62.82574081,202.1413143,204.7353633,16.038212,0.147430637,1620000000000 ,1620000000000 ,1620000000000 ,1616812432830 -1616812432861 ,112.5722598,26.8809116,62.82146072,202.1520513,204.7601143,16.008667,0.147192653,1620000000000 ,1620000000000 ,1620000000000 ,1616812432840 -1616812432872 ,112.5722592,26.88091027,62.81744385,202.1622966,204.7652903,15.980878,0.146936917,1620000000000 ,1620000000000 ,1620000000000 ,1616812432850 -1616812432886 ,112.5722585,26.88090893,62.81361389,202.1730337,204.7852899,15.96183,0.146756012,1620000000000 ,1620000000000 ,1620000000000 ,1616812432860 -1616812432894 ,112.5722579,26.8809076,62.80983734,202.1854373,204.8266096,15.944083,0.146597674,1620000000000 ,1620000000000 ,1620000000000 ,1616812432870 -1616812432903 ,112.5722573,26.88090628,62.80615616,202.1975677,204.8552155,15.924849,0.146442915,1620000000000 ,1620000000000 ,1620000000000 ,1616812432880 -1616812432913 ,112.5722567,26.88090495,62.80276489,202.2083867,204.8628605,15.902028,0.146258651,1620000000000 ,1620000000000 ,1620000000000 ,1616812432890 -1616812432921 ,112.5722561,26.88090362,62.79967499,202.2205171,204.8781769,15.879475,0.146069462,1620000000000 ,1620000000000 ,1620000000000 ,1616812432900 -1616812432932 ,112.5722555,26.8809023,62.79675674,202.2299428,204.8812009,15.865632,0.145925007,1620000000000 ,1620000000000 ,1620000000000 ,1616812432910 -1616812432941 ,112.5722549,26.88090098,62.79389954,202.2379478,204.8963006,15.844878,0.145763409,1620000000000 ,1620000000000 ,1620000000000 ,1616812432920 -1616812432951 ,112.5722542,26.88089966,62.79099655,202.2499416,204.917234,15.821084,0.145549718,1620000000000 ,1620000000000 ,1620000000000 ,1616812432930 -1616812432961 ,112.5722536,26.88089834,62.78807831,202.2622633,204.9282211,15.796605,0.145325364,1620000000000 ,1620000000000 ,1620000000000 ,1616812432940 -1616812432976 ,112.572253,26.88089702,62.78512192,202.2761422,204.9196072,15.77661,0.145122699,1620000000000 ,1620000000000 ,1620000000000 ,1616812432950 -1616812432991 ,112.5722524,26.88089571,62.78216553,202.2884092,204.9112942,15.761536,0.144980169,1620000000000 ,1620000000000 ,1620000000000 ,1616812432960 -1616812432997 ,112.5722518,26.88089439,62.77929688,202.2959224,204.9308646,15.740088,0.144799786,1620000000000 ,1620000000000 ,1620000000000 ,1616812432970 -1616812433008 ,112.5722512,26.88089308,62.7766571,202.3062224,204.9598389,15.719369,0.144639082,1620000000000 ,1620000000000 ,1620000000000 ,1616812432980 -1616812433012 ,112.5722506,26.88089177,62.77419281,202.3160032,204.9710264,15.693293,0.144411331,1620000000000 ,1620000000000 ,1620000000000 ,1616812432990 -1616812433024 ,112.57225,26.88089047,62.7718277,202.327915,204.9679233,15.667437,0.144176911,1620000000000 ,1620000000000 ,1620000000000 ,1616812433000 -1616812433033 ,112.5722494,26.88088916,62.76951599,202.3406465,204.9776569,15.651609,0.144021883,1620000000000 ,1620000000000 ,1620000000000 ,1616812433010 -1616812433043 ,112.5722487,26.88088786,62.76720047,202.3526676,204.9695695,15.635801,0.143876319,1620000000000 ,1620000000000 ,1620000000000 ,1616812433020 -1616812433053 ,112.5722481,26.88088655,62.76477432,202.3653445,204.9618335,15.616752,0.14369966,1620000000000 ,1620000000000 ,1620000000000 ,1616812433040 -1616812433063 ,112.5722475,26.88088525,62.76226044,202.3783765,204.9926519,15.587615,0.143460147,1620000000000 ,1620000000000 ,1620000000000 ,1616812433040 -1616812433072 ,112.5722469,26.88088396,62.75986099,202.3875836,205.0174625,15.561715,0.14322861,1620000000000 ,1620000000000 ,1620000000000 ,1616812433050 -1616812433084 ,112.5722463,26.88088266,62.75771332,202.3987304,205.0145475,15.541387,0.143042215,1620000000000 ,1620000000000 ,1620000000000 ,1616812433060 -1616812433097 ,112.5722457,26.88088137,62.75565338,202.4124728,205.0110404,15.526846,0.142888062,1620000000000 ,1620000000000 ,1620000000000 ,1616812433080 -1616812433106 ,112.5722451,26.88088007,62.75346375,202.4263244,205.0237346,15.517353,0.142794061,1620000000000 ,1620000000000 ,1620000000000 ,1616812433080 -1616812433113 ,112.5722445,26.88087878,62.75108719,202.4369249,205.0461017,15.497295,0.14264075,1620000000000 ,1620000000000 ,1620000000000 ,1616812433100 -1616812433123 ,112.5722439,26.88087749,62.74860764,202.4454216,205.0669756,15.467969,0.142386367,1620000000000 ,1620000000000 ,1620000000000 ,1616812433110 -1616812433132 ,112.5722427,26.88087492,62.74372482,202.4690267,205.0662182,15.413487,0.284008738,1620000000000 ,1620000000000 ,1620000000000 ,1616812433120 -1616812433143 ,112.5722421,26.88087363,62.74129868,202.4829603,205.0569237,15.39869,0.141719151,1620000000000 ,1620000000000 ,1620000000000 ,1616812433130 -1616812433155 ,112.5722415,26.88087235,62.73871231,202.4991615,205.0822477,15.389052,0.141612736,1620000000000 ,1620000000000 ,1620000000000 ,1616812433140 -1616812433164 ,112.5722415,26.88087235,62.73871231,202.4991615,-400,15.389052,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812433150 -1616812433175 ,112.5722403,26.88086979,62.73272705,202.528504,205.1186364,15.361078,0.282878234,1620000000000 ,1620000000000 ,1620000000000 ,1616812433160 -1616812433184 ,112.5722397,26.88086851,62.72956085,202.537356,205.1363849,15.333093,0.141115016,1620000000000 ,1620000000000 ,1620000000000 ,1616812433170 -1616812433194 ,112.5722391,26.88086724,62.72649765,202.545962,205.1519495,15.30571,0.140878421,1620000000000 ,1620000000000 ,1620000000000 ,1616812433180 -1616812433207 ,112.5722391,26.88086724,62.72649765,202.545962,-400,15.30571,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812433180 -1616812433215 ,112.5722379,26.88086469,62.72048187,202.5620266,205.2298117,15.262575,0.281066471,1620000000000 ,1620000000000 ,1620000000000 ,1616812433200 -1616812433225 ,112.5722373,26.88086343,62.71747589,202.5721899,205.4838024,15.24424,0.140340117,1620000000000 ,1620000000000 ,1620000000000 ,1616812433210 -1616812433234 ,112.5722367,26.88086216,62.71453857,202.5807686,205.5222304,15.229345,0.140222076,1620000000000 ,1620000000000 ,1620000000000 ,1616812433220 -1616812433249 ,112.5722361,26.8808609,62.71165085,202.5906041,205.5401521,15.206084,0.140039545,1620000000000 ,1620000000000 ,1620000000000 ,1616812433230 -1616812433255 ,112.5722355,26.88085964,62.70882797,202.6027345,205.5394133,15.177341,0.13978946,1620000000000 ,1620000000000 ,1620000000000 ,1616812433240 -1616812433266 ,112.5722349,26.88085838,62.70611954,202.6155753,205.5563926,15.15175,0.139546206,1620000000000 ,1620000000000 ,1620000000000 ,1616812433250 -1616812433277 ,112.5722343,26.88085712,62.70325089,202.6325688,205.5660141,15.133093,0.139364233,1620000000000 ,1620000000000 ,1620000000000 ,1616812433260 -1616812433285 ,112.5722337,26.88085587,62.69990158,202.6520485,205.5652218,15.118511,0.139174079,1620000000000 ,1620000000000 ,1620000000000 ,1616812433270 -1616812433295 ,112.5722331,26.88085461,62.69597244,202.6642609,205.5860751,15.110926,0.139052246,1620000000000 ,1620000000000 ,1620000000000 ,1616812433280 -1616812433305 ,112.5722325,26.88085336,62.69169617,202.6681951,205.6306575,15.095103,0.138923799,1620000000000 ,1620000000000 ,1620000000000 ,1616812433290 -1616812433316 ,112.5722319,26.88085211,62.6875,202.6725117,205.667312,15.068852,0.138704953,1620000000000 ,1620000000000 ,1620000000000 ,1616812433300 -1616812433328 ,112.5722313,26.88085086,62.68362427,202.6767191,205.6703209,15.030867,0.138410027,1620000000000 ,1620000000000 ,1620000000000 ,1616812433310 -1616812433339 ,112.5722307,26.88084962,62.68003845,202.6877021,205.6799213,15.000268,0.138116723,1620000000000 ,1620000000000 ,1620000000000 ,1616812433320 -1616812433347 ,112.5722301,26.88084837,62.67655182,202.7019362,205.7031265,14.985368,0.137950244,1620000000000 ,1620000000000 ,1620000000000 ,1616812433330 -1616812433357 ,112.5722295,26.88084713,62.6729393,202.7157605,205.7258301,14.973433,0.137840521,1620000000000 ,1620000000000 ,1620000000000 ,1616812433340 -1616812433366 ,112.5722289,26.88084589,62.66912842,202.7255686,205.7370134,14.96077,0.137707226,1620000000000 ,1620000000000 ,1620000000000 ,1616812433350 -1616812433376 ,112.5722283,26.88084465,62.66516876,202.7331911,205.7587467,14.94005,0.137528415,1620000000000 ,1620000000000 ,1620000000000 ,1616812433360 -1616812433387 ,112.5722277,26.88084342,62.66123199,202.738628,205.8133229,14.919851,0.137351806,1620000000000 ,1620000000000 ,1620000000000 ,1616812433370 -1616812433397 ,112.5722271,26.88084218,62.65751266,202.7429993,205.8355946,14.895091,0.137151365,1620000000000 ,1620000000000 ,1620000000000 ,1616812433380 -1616812433408 ,112.5722265,26.88084095,62.65410614,202.7487366,205.8361543,14.868525,0.136926461,1620000000000 ,1620000000000 ,1620000000000 ,1616812433390 -1616812433419 ,112.5722259,26.88083972,62.65090942,202.7539003,205.8224844,14.844282,0.136705111,1620000000000 ,1620000000000 ,1620000000000 ,1616812433400 -1616812433434 ,112.5722253,26.88083849,62.64778519,202.7578891,205.8408214,14.821677,0.136499988,1620000000000 ,1620000000000 ,1620000000000 ,1616812433410 -1616812433436 ,112.5722247,26.88083726,62.64466476,202.7588727,205.8838008,14.793632,0.136268165,1620000000000 ,1620000000000 ,1620000000000 ,1616812433420 -1616812433445 ,112.5722241,26.88083604,62.64161301,202.7571788,205.9131696,14.766963,0.136023229,1620000000000 ,1620000000000 ,1620000000000 ,1616812433430 -1616812433458 ,112.5722235,26.88083482,62.63876343,202.7594464,205.9037129,14.742596,0.135805413,1620000000000 ,1620000000000 ,1620000000000 ,1616812433440 -1616812433467 ,112.5722229,26.8808336,62.63616943,202.7625063,205.7622716,14.724486,0.135628005,1620000000000 ,1620000000000 ,1620000000000 ,1616812433450 -1616812433477 ,112.5722224,26.88083238,62.63380051,202.7636265,205.6672431,14.705535,0.135447617,1620000000000 ,1620000000000 ,1620000000000 ,1616812433460 -1616812433487 ,112.5722218,26.88083116,62.63147736,202.7673694,205.6869173,14.683478,0.135268546,1620000000000 ,1620000000000 ,1620000000000 ,1616812433470 -1616812433498 ,112.5722212,26.88082994,62.62906265,202.7717407,205.7010389,14.661482,0.135060906,1620000000000 ,1620000000000 ,1620000000000 ,1616812433480 -1616812433510 ,112.5722206,26.88082873,62.62662888,202.7718773,205.6954059,14.633138,0.134806711,1620000000000 ,1620000000000 ,1620000000000 ,1616812433490 -1616812433517 ,112.57222,26.88082751,62.62438202,202.7693911,205.6738141,14.609531,0.134593723,1620000000000 ,1620000000000 ,1620000000000 ,1616812433500 -1616812433527 ,112.5722194,26.8808263,62.62231827,202.7691726,205.6742787,14.588793,0.134410212,1620000000000 ,1620000000000 ,1620000000000 ,1616812433510 -1616812433538 ,112.5722189,26.88082509,62.62018585,202.7740083,205.6746165,14.564792,0.134179571,1620000000000 ,1620000000000 ,1620000000000 ,1616812433520 -1616812433549 ,112.5722183,26.88082389,62.61787033,202.7767677,205.6882227,14.540434,0.133958972,1620000000000 ,1620000000000 ,1620000000000 ,1616812433530 -1616812433565 ,112.5722177,26.88082268,62.61545563,202.7754837,205.6937559,14.515267,0.133726958,1620000000000 ,1620000000000 ,1620000000000 ,1616812433540 -1616812433569 ,112.5722171,26.88082148,62.61303711,202.7768497,205.6659583,14.49786,0.133536962,1620000000000 ,1620000000000 ,1620000000000 ,1616812433550 -1616812433579 ,112.5722165,26.88082027,62.61051559,202.7799096,205.6654044,14.481379,0.133381096,1620000000000 ,1620000000000 ,1620000000000 ,1616812433560 -1616812433588 ,112.572216,26.88081907,62.60784531,202.7843083,205.6740826,14.459435,0.133189108,1620000000000 ,1620000000000 ,1620000000000 ,1616812433570 -1616812433599 ,112.5722154,26.88081788,62.60513306,202.7874228,205.6736009,14.431549,0.132941822,1620000000000 ,1620000000000 ,1620000000000 ,1616812433580 -1616812433612 ,112.5722148,26.88081668,62.60256958,202.7887342,205.6647623,14.410175,0.132730394,1620000000000 ,1620000000000 ,1620000000000 ,1616812433590 -1616812433619 ,112.5722142,26.88081548,62.60004807,202.7923133,205.646294,14.391148,0.132550344,1620000000000 ,1620000000000 ,1620000000000 ,1616812433600 -1616812433628 ,112.5722137,26.88081429,62.59739685,202.7952912,205.6463161,14.373228,0.132367174,1620000000000 ,1620000000000 ,1620000000000 ,1616812433610 -1616812433640 ,112.5722131,26.8808131,62.59461975,202.7973403,205.6517959,14.350642,0.132176611,1620000000000 ,1620000000000 ,1620000000000 ,1616812433620 -1616812433649 ,112.5722125,26.88081191,62.59193039,202.7978594,205.6441199,14.326775,0.131949319,1620000000000 ,1620000000000 ,1620000000000 ,1616812433630 -1616812433665 ,112.5722119,26.88081072,62.58944321,202.801493,205.6382217,14.306904,0.131768232,1620000000000 ,1620000000000 ,1620000000000 ,1616812433640 -1616812433671 ,112.5722114,26.88080954,62.58702087,202.8110553,205.6533434,14.289033,0.131618449,1620000000000 ,1620000000000 ,1620000000000 ,1616812433650 -1616812433678 ,112.5722108,26.88080835,62.58455276,202.8206449,205.6697878,14.269125,0.13142462,1620000000000 ,1620000000000 ,1620000000000 ,1616812433660 -1616812433689 ,112.5722102,26.88080717,62.58200836,202.8267374,205.6693555,14.2453375,0.131226615,1620000000000 ,1620000000000 ,1620000000000 ,1616812433670 -1616812433698 ,112.5722097,26.88080599,62.57950592,202.8288138,205.6396373,14.227507,0.131033164,1620000000000 ,1620000000000 ,1620000000000 ,1616812433680 -1616812433710 ,112.5722091,26.88080481,62.57701111,202.8322835,205.6533568,14.21322,0.130901053,1620000000000 ,1620000000000 ,1620000000000 ,1616812433690 -1616812433721 ,112.5722085,26.88080363,62.57440186,202.8383761,205.6714876,14.1945715,0.130728263,1620000000000 ,1620000000000 ,1620000000000 ,1616812433700 -1616812433731 ,112.572208,26.88080245,62.57164383,202.8458346,205.6997765,14.182091,0.13059456,1620000000000 ,1620000000000 ,1620000000000 ,1616812433710 -1616812433740 ,112.5722074,26.88080128,62.56878662,202.8518725,205.7163104,14.163414,0.130437107,1620000000000 ,1620000000000 ,1620000000000 ,1616812433720 -1616812433750 ,112.5722068,26.8808001,62.56593323,202.8576918,205.685486,14.13946,0.130228625,1620000000000 ,1620000000000 ,1620000000000 ,1616812433730 -1616812433758 ,112.5722063,26.88079893,62.56311035,202.8580197,205.6747132,14.116052,0.130005965,1620000000000 ,1620000000000 ,1620000000000 ,1616812433740 -1616812433769 ,112.5722057,26.88079776,62.56027603,202.8609976,205.6938672,14.1005335,0.129834862,1620000000000 ,1620000000000 ,1620000000000 ,1616812433750 -1616812433779 ,112.5722052,26.88079659,62.55736542,202.8667077,205.7083444,14.0919895,0.129738065,1620000000000 ,1620000000000 ,1620000000000 ,1616812433760 -1616812433790 ,112.5722046,26.88079542,62.55441284,202.8741662,205.7213898,14.07633,0.129624037,1620000000000 ,1620000000000 ,1620000000000 ,1616812433770 -1616812433800 ,112.572204,26.88079426,62.55158997,202.88045,205.7126977,14.056195,0.129451209,1620000000000 ,1620000000000 ,1620000000000 ,1616812433780 -1616812433810 ,112.5722035,26.88079309,62.54888916,202.8897118,205.7053261,14.034069,0.129248806,1620000000000 ,1620000000000 ,1620000000000 ,1616812433790 -1616812433824 ,112.5722029,26.88079193,62.5461998,202.8971976,205.7188142,14.016488,0.12907741,1620000000000 ,1620000000000 ,1620000000000 ,1616812433800 -1616812433832 ,112.5722024,26.88079077,62.54340744,202.9051207,205.7288509,14.002694,0.128938886,1620000000000 ,1620000000000 ,1620000000000 ,1616812433810 -1616812433842 ,112.5722018,26.88078961,62.5405426,202.9110219,205.7560359,13.993347,0.128848968,1620000000000 ,1620000000000 ,1620000000000 ,1616812433820 -1616812433851 ,112.5722012,26.88078845,62.53764725,202.914437,205.7593363,13.978219,0.128715284,1620000000000 ,1620000000000 ,1620000000000 ,1616812433830 -1616812433861 ,112.5722007,26.88078729,62.53471756,202.9170598,205.7595089,13.96207,0.128567648,1620000000000 ,1620000000000 ,1620000000000 ,1616812433840 -1616812433871 ,112.5722001,26.88078614,62.53178787,202.9223874,205.7996792,13.945886,0.128422179,1620000000000 ,1620000000000 ,1620000000000 ,1616812433850 -1616812433881 ,112.5721996,26.88078498,62.52888107,202.9281794,205.8175482,13.925796,0.128255268,1620000000000 ,1620000000000 ,1620000000000 ,1616812433860 -1616812433889 ,112.572199,26.88078383,62.52607727,202.9314579,205.8211408,13.911509,0.128103203,1620000000000 ,1620000000000 ,1620000000000 ,1616812433870 -1616812433905 ,112.5721984,26.88078268,62.52334595,202.934791,205.8314784,13.895318,0.127978375,1620000000000 ,1620000000000 ,1620000000000 ,1616812433880 -1616812433921 ,112.5721979,26.88078153,62.52055359,202.9389984,205.8450681,13.880217,0.127838732,1620000000000 ,1620000000000 ,1620000000000 ,1616812433890 -1616812433927 ,112.5721973,26.88078038,62.51770782,202.9402005,205.8563496,13.864889,0.127702578,1620000000000 ,1620000000000 ,1620000000000 ,1616812433900 -1616812433934 ,112.5721968,26.88077923,62.51487732,202.9431785,205.8516318,13.851143,0.127544054,1620000000000 ,1620000000000 ,1620000000000 ,1616812433910 -1616812433941 ,112.5721962,26.88077808,62.51212311,202.9490524,205.85868,13.839372,0.127463153,1620000000000 ,1620000000000 ,1620000000000 ,1616812433920 -1616812433950 ,112.5721957,26.88077694,62.50946045,202.9544619,205.8536569,13.825045,0.127339172,1620000000000 ,1620000000000 ,1620000000000 ,1616812433930 -1616812433961 ,112.5721951,26.88077579,62.50695419,202.9576312,205.8492428,13.810075,0.127212771,1620000000000 ,1620000000000 ,1620000000000 ,1616812433940 -1616812433972 ,112.5721945,26.88077465,62.50457001,202.9618932,205.8650041,13.789102,0.127034802,1620000000000 ,1620000000000 ,1620000000000 ,1616812433950 -1616812433992 ,112.572194,26.88077351,62.50210571,202.966565,205.8739371,13.773378,0.12688221,1620000000000 ,1620000000000 ,1620000000000 ,1616812433960 -1616812433994 ,112.5721934,26.88077237,62.49946213,202.9701441,205.8865879,13.7628975,0.126766799,1620000000000 ,1620000000000 ,1620000000000 ,1616812433970 -1616812434004 ,112.5721929,26.88077123,62.49670792,202.971073,205.8930113,13.755298,0.126678441,1620000000000 ,1620000000000 ,1620000000000 ,1616812433980 -1616812434011 ,112.5721923,26.88077009,62.49389267,202.97457,205.8905057,13.746339,0.126599559,1620000000000 ,1620000000000 ,1620000000000 ,1616812433990 -1616812434021 ,112.5721918,26.88076895,62.49101639,202.9822745,205.8788548,13.737509,0.126513861,1620000000000 ,1620000000000 ,1620000000000 ,1616812434000 -1616812434033 ,112.5721912,26.88076781,62.48815155,202.9872195,205.9073775,13.726405,0.126421885,1620000000000 ,1620000000000 ,1620000000000 ,1616812434010 -1616812434043 ,112.5721907,26.88076668,62.48533249,202.9908259,205.9221414,13.709356,0.126287511,1620000000000 ,1620000000000 ,1620000000000 ,1616812434020 -1616812434052 ,112.5721901,26.88076554,62.48244476,202.995006,205.9182259,13.699009,0.126162468,1620000000000 ,1620000000000 ,1620000000000 ,1616812434030 -1616812434061 ,112.5721896,26.88076441,62.47940826,202.99782,205.9200414,13.694197,0.12609006,1620000000000 ,1620000000000 ,1620000000000 ,1616812434040 -1616812434072 ,112.572189,26.88076327,62.47619247,203.0024099,205.9491901,13.689844,0.126050405,1620000000000 ,1620000000000 ,1620000000000 ,1616812434050 -1616812434084 ,112.5721885,26.88076214,62.47280502,203.0068632,205.9601669,13.685416,0.126004422,1620000000000 ,1620000000000 ,1620000000000 ,1616812434060 -1616812434096 ,112.5721879,26.88076101,62.46938705,203.0101963,205.9568074,13.680928,0.125953871,1620000000000 ,1620000000000 ,1620000000000 ,1616812434070 -1616812434103 ,112.5721874,26.88075988,62.46603012,203.0144583,205.9530478,13.671577,0.125879524,1620000000000 ,1620000000000 ,1620000000000 ,1616812434080 -1616812434116 ,112.5721868,26.88075874,62.46260452,203.0218623,205.9562311,13.667462,0.125828744,1620000000000 ,1620000000000 ,1620000000000 ,1616812434090 -1616812434123 ,112.5721863,26.88075761,62.45911789,203.0277635,205.9708544,13.663819,0.125780489,1620000000000 ,1620000000000 ,1620000000000 ,1616812434100 -1616812434133 ,112.5721857,26.88075648,62.4556694,203.0287198,205.9722016,13.658726,0.125751083,1620000000000 ,1620000000000 ,1620000000000 ,1616812434110 -1616812434142 ,112.5721852,26.88075535,62.45223999,203.0309054,205.9828934,13.657116,0.125716614,1620000000000 ,1620000000000 ,1620000000000 ,1616812434120 -1616812434152 ,112.5721846,26.88075422,62.44869995,203.0344298,205.9924309,13.658692,0.125727944,1620000000000 ,1620000000000 ,1620000000000 ,1616812434130 -1616812434163 ,112.5721841,26.88075309,62.44503403,203.0412327,206.0046517,13.655185,0.12569663,1620000000000 ,1620000000000 ,1620000000000 ,1616812434140 -1616812434174 ,112.5721835,26.88075196,62.44143295,203.0450029,206.0232449,13.653621,0.125683452,1620000000000 ,1620000000000 ,1620000000000 ,1616812434150 -1616812434183 ,112.572183,26.88075083,62.43803024,203.0455767,206.0180547,13.653023,0.125683149,1620000000000 ,1620000000000 ,1620000000000 ,1616812434170 -1616812434195 ,112.5721824,26.88074971,62.43477249,203.0507403,206.0168569,13.652614,0.125688331,1620000000000 ,1620000000000 ,1620000000000 ,1616812434180 -1616812434204 ,112.5721819,26.88074858,62.43155289,203.052926,206.0364085,13.644698,0.125647771,1620000000000 ,1620000000000 ,1620000000000 ,1616812434180 -1616812434215 ,112.5721808,26.88074632,62.42526245,203.0559312,205.9957912,13.638266,0.251124986,1620000000000 ,1620000000000 ,1620000000000 ,1616812434200 -1616812434224 ,112.5721808,26.88074632,62.42526245,203.0559312,-400,13.638266,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812434210 -1616812434234 ,112.5721797,26.88074406,62.4194603,203.0651383,205.6788358,13.642527,0.251163219,1620000000000 ,1620000000000 ,1620000000000 ,1616812434220 -1616812434244 ,112.5721797,26.88074406,62.4194603,203.0651383,-400,13.642527,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812434230 -1616812434254 ,112.5721786,26.88074179,62.41400146,203.0671054,205.6786824,13.633277,0.251156031,1620000000000 ,1620000000000 ,1620000000000 ,1616812434240 -1616812434265 ,112.5721786,26.88074179,62.41400146,203.0671054,-400,13.633277,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812434250 -1616812434274 ,112.5721775,26.88073953,62.40933609,203.0747279,205.6834328,13.623828,0.250977908,1620000000000 ,1620000000000 ,1620000000000 ,1616812434260 -1616812434284 ,112.572177,26.8807384,62.40690231,203.0801374,205.6842846,13.625833,0.125480637,1620000000000 ,1620000000000 ,1620000000000 ,1616812434270 -1616812434300 ,112.572177,26.8807384,62.40690231,203.0801374,-400,13.625833,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812434280 -1616812434307 ,112.5721764,26.88073727,62.40428925,203.0777332,205.672784,13.625918,0.125465611,1620000000000 ,1620000000000 ,1620000000000 ,1616812434290 -1616812434315 ,112.5721753,26.88073501,62.39876938,203.0724603,205.6860024,13.629997,0.250991415,1620000000000 ,1620000000000 ,1620000000000 ,1616812434300 -1616812434325 ,112.5721748,26.88073388,62.39579773,203.0753836,205.7352652,13.630425,0.125506918,1620000000000 ,1620000000000 ,1620000000000 ,1616812434310 -1616812434336 ,112.5721742,26.88073275,62.39279175,203.0765584,205.75844,13.621046,0.12544099,1620000000000 ,1620000000000 ,1620000000000 ,1616812434320 -1616812434346 ,112.5721737,26.88073162,62.38990402,203.0772141,205.7367605,13.6148615,0.125375404,1620000000000 ,1620000000000 ,1620000000000 ,1616812434330 -1616812434357 ,112.5721731,26.88073049,62.38702774,203.0784982,205.7104544,13.614909,0.125354001,1620000000000 ,1620000000000 ,1620000000000 ,1616812434340 -1616812434369 ,112.5721726,26.88072936,62.38401794,203.0750831,205.7136418,13.618103,0.125373276,1620000000000 ,1620000000000 ,1620000000000 ,1616812434350 -1616812434376 ,112.5721721,26.88072823,62.38085938,203.0687447,205.7520131,13.619912,0.125393593,1620000000000 ,1620000000000 ,1620000000000 ,1616812434360 -1616812434384 ,112.5721715,26.8807271,62.37762833,203.0602752,205.7547713,13.618408,0.125382297,1620000000000 ,1620000000000 ,1620000000000 ,1616812434370 -1616812434394 ,112.572171,26.88072597,62.3744545,203.0510955,205.7283066,13.61459,0.125344189,1620000000000 ,1620000000000 ,1620000000000 ,1616812434380 -1616812434404 ,112.5721704,26.88072484,62.37142563,203.0463963,205.710362,13.617106,0.125365251,1620000000000 ,1620000000000 ,1620000000000 ,1616812434390 -1616812434415 ,112.5721699,26.88072371,62.36846924,203.0453581,205.6852166,13.614705,0.12535387,1620000000000 ,1620000000000 ,1620000000000 ,1616812434400 -1616812434426 ,112.5721693,26.88072258,62.36556244,203.0463417,205.6536851,13.609823,0.125307684,1620000000000 ,1620000000000 ,1620000000000 ,1616812434410 -1616812434437 ,112.5721688,26.88072145,62.36275864,203.0472432,205.6458394,13.601085,0.125245298,1620000000000 ,1620000000000 ,1620000000000 ,1616812434420 -1616812434447 ,112.5721683,26.88072032,62.36003876,203.050549,205.6461957,13.59401,0.125170804,1620000000000 ,1620000000000 ,1620000000000 ,1616812434430 -1616812434455 ,112.5721677,26.8807192,62.35731506,203.050713,205.6355509,13.598328,0.125192801,1620000000000 ,1620000000000 ,1620000000000 ,1616812434440 -1616812434466 ,112.5721672,26.88071807,62.35441208,203.0474345,205.7401105,13.603107,0.125213451,1620000000000 ,1620000000000 ,1620000000000 ,1616812434450 -1616812434477 ,112.5721666,26.88071694,62.35134506,203.0424621,205.8861418,13.602184,0.12521136,1620000000000 ,1620000000000 ,1620000000000 ,1616812434460 -1616812434486 ,112.5721661,26.88071581,62.34826279,203.0363696,205.8972102,13.594177,0.125159065,1620000000000 ,1620000000000 ,1620000000000 ,1616812434470 -1616812434496 ,112.5721655,26.88071469,62.34524536,203.0317797,205.8759318,13.585409,0.125072327,1620000000000 ,1620000000000 ,1620000000000 ,1616812434480 -1616812434506 ,112.572165,26.88071356,62.34228516,203.0258238,205.8101067,13.581166,0.125010768,1620000000000 ,1620000000000 ,1620000000000 ,1616812434490 -1616812434516 ,112.5721644,26.88071244,62.33922958,203.0189389,205.7985019,13.586597,0.125020759,1620000000000 ,1620000000000 ,1620000000000 ,1616812434500 -1616812434527 ,112.5721639,26.88071131,62.33598709,203.0153326,205.8226355,13.5880375,0.125043229,1620000000000 ,1620000000000 ,1620000000000 ,1616812434510 -1616812434542 ,112.5721633,26.88071019,62.33256149,203.0164527,205.807638,13.592304,0.125066074,1620000000000 ,1620000000000 ,1620000000000 ,1616812434520 -1616812434550 ,112.5721628,26.88070906,62.32923126,203.0160156,205.780861,13.590238,0.125061784,1620000000000 ,1620000000000 ,1620000000000 ,1616812434530 -1616812434557 ,112.5721623,26.88070794,62.3262558,203.0168899,205.7605223,13.581897,0.125003796,1620000000000 ,1620000000000 ,1620000000000 ,1616812434540 -1616812434566 ,112.5721617,26.88070681,62.32345963,203.0181466,205.7393228,13.577617,0.124964216,1620000000000 ,1620000000000 ,1620000000000 ,1616812434550 -1616812434576 ,112.5721612,26.88070568,62.32060242,203.0206328,205.7254006,13.575412,0.124936448,1620000000000 ,1620000000000 ,1620000000000 ,1616812434560 -1616812434587 ,112.5721606,26.88070456,62.31750488,203.021589,205.7464664,13.577508,0.124924237,1620000000000 ,1620000000000 ,1620000000000 ,1616812434570 -1616812434596 ,112.5721601,26.88070343,62.31430817,203.016562,205.8065632,13.578939,0.124949473,1620000000000 ,1620000000000 ,1620000000000 ,1616812434580 -1616812434609 ,112.5721595,26.88070231,62.31124878,203.0095406,205.8065444,13.57577,0.124937016,1620000000000 ,1620000000000 ,1620000000000 ,1616812434590 -1616812434617 ,112.572159,26.88070118,62.30831528,203.0045409,205.7760796,13.573488,0.124912331,1620000000000 ,1620000000000 ,1620000000000 ,1616812434600 -1616812434628 ,112.5721585,26.88070006,62.30548859,202.9969184,205.762803,13.573091,0.124900968,1620000000000 ,1620000000000 ,1620000000000 ,1616812434610 -1616812434638 ,112.5721579,26.88069893,62.30266953,202.9899516,205.7717141,13.5766945,0.12492684,1620000000000 ,1620000000000 ,1620000000000 ,1616812434620 -1616812434647 ,112.5721574,26.88069781,62.29981613,202.9842416,205.7856864,13.580146,0.124964845,1620000000000 ,1620000000000 ,1620000000000 ,1616812434630 -1616812434657 ,112.5721568,26.88069668,62.29694748,202.9778485,205.7712849,13.579225,0.124961235,1620000000000 ,1620000000000 ,1620000000000 ,1616812434640 -1616812434667 ,112.5721563,26.88069556,62.29417801,202.9707451,205.7535269,13.571466,0.124908944,1620000000000 ,1620000000000 ,1620000000000 ,1616812434650 -1616812434677 ,112.5721557,26.88069443,62.29165649,202.9652263,205.7324588,13.5621195,0.124837696,1620000000000 ,1620000000000 ,1620000000000 ,1616812434660 -1616812434687 ,112.5721552,26.88069331,62.28940201,202.9628767,205.7147945,13.555091,0.124772622,1620000000000 ,1620000000000 ,1620000000000 ,1616812434670 -1616812434697 ,112.5721547,26.88069219,62.28731537,202.9583688,205.7209941,13.55258,0.124753115,1620000000000 ,1620000000000 ,1620000000000 ,1616812434680 -1616812434708 ,112.5721541,26.88069106,62.28534698,202.9546532,205.7296864,13.551297,0.124750951,1620000000000 ,1620000000000 ,1620000000000 ,1616812434690 -1616812434723 ,112.5721536,26.88068994,62.28354645,202.9464023,205.7404758,13.551815,0.124760181,1620000000000 ,1620000000000 ,1620000000000 ,1616812434700 -1616812434729 ,112.572153,26.88068881,62.2818985,202.9320316,205.7372783,13.548266,0.124748888,1620000000000 ,1620000000000 ,1620000000000 ,1616812434710 -1616812434747 ,112.5721525,26.88068769,62.28026199,202.9171691,205.7350993,13.550439,0.124753419,1620000000000 ,1620000000000 ,1620000000000 ,1616812434720 -1616812434757 ,112.572152,26.88068657,62.27849579,202.9029896,205.7494605,13.550786,0.124762473,1620000000000 ,1620000000000 ,1620000000000 ,1616812434730 -1616812434759 ,112.5721514,26.88068544,62.27655792,202.8915149,205.7720164,13.549829,0.12475128,1620000000000 ,1620000000000 ,1620000000000 ,1616812434740 -1616812434768 ,112.5721514,26.88068544,62.27655792,202.8765431,-400,13.545322,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812434750 -1616812434779 ,112.5721503,26.8806832,62.27286911,202.8630194,205.7473497,13.537847,0.249398185,1620000000000 ,1620000000000 ,1620000000000 ,1616812434760 -1616812434793 ,112.5721498,26.88068207,62.2712822,202.8494956,205.714783,13.533233,0.124632492,1620000000000 ,1620000000000 ,1620000000000 ,1616812434770 -1616812434800 ,112.5721492,26.88068095,62.26977921,202.8371193,205.722517,13.529846,0.124597632,1620000000000 ,1620000000000 ,1620000000000 ,1616812434780 -1616812434811 ,112.5721487,26.88067983,62.26821518,202.8229671,205.7358803,13.5322,0.124619863,1620000000000 ,1620000000000 ,1620000000000 ,1616812434790 -1616812434820 ,112.5721482,26.88067871,62.26648331,202.8088423,205.7266924,13.534052,0.124622793,1620000000000 ,1620000000000 ,1620000000000 ,1616812434800 -1616812434829 ,112.5721476,26.88067758,62.26449966,202.7924225,205.7092508,13.539736,0.124655975,1620000000000 ,1620000000000 ,1620000000000 ,1616812434810 -1616812434840 ,112.5721471,26.88067646,62.26221085,202.7763306,205.6944636,13.540353,0.124653173,1620000000000 ,1620000000000 ,1620000000000 ,1616812434820 -1616812434849 ,112.5721465,26.88067534,62.25964355,202.7573973,205.6886644,13.540344,0.124641898,1620000000000 ,1620000000000 ,1620000000000 ,1616812434830 -1616812434861 ,112.572146,26.88067421,62.25691605,202.7375078,205.6865122,13.536083,0.124600883,1620000000000 ,1620000000000 ,1620000000000 ,1616812434840 -1616812434869 ,112.5721455,26.88067309,62.25418854,202.716744,205.6805743,13.531249,0.124559696,1620000000000 ,1620000000000 ,1620000000000 ,1616812434850 -1616812434879 ,112.5721449,26.88067197,62.25154877,202.6975922,205.6585119,13.525711,0.124512033,1620000000000 ,1620000000000 ,1620000000000 ,1616812434860 -1616812434889 ,112.5721444,26.88067085,62.24890137,202.6810085,205.6340691,13.524368,0.124489262,1620000000000 ,1620000000000 ,1620000000000 ,1616812434870 -1616812434899 ,112.5721438,26.88066972,62.24616241,202.665463,205.619351,13.52721,0.124496602,1620000000000 ,1620000000000 ,1620000000000 ,1616812434880 -1616812434910 ,112.5721433,26.8806686,62.24329758,202.6473493,205.6099379,13.53141,0.124527669,1620000000000 ,1620000000000 ,1620000000000 ,1616812434890 -1616812434920 ,112.5721428,26.88066748,62.24036407,202.6305197,205.5948493,13.5335455,0.124542392,1620000000000 ,1620000000000 ,1620000000000 ,1616812434900 -1616812434933 ,112.5721422,26.88066635,62.23737335,202.6159305,205.5604243,13.532854,0.124542256,1620000000000 ,1620000000000 ,1620000000000 ,1616812434910 -1616812434941 ,112.5721417,26.88066523,62.23436356,202.6018329,205.5368647,13.530677,0.124517361,1620000000000 ,1620000000000 ,1620000000000 ,1616812434920 -1616812434951 ,112.5721412,26.88066411,62.23137665,202.580632,205.5174609,13.523992,0.124459903,1620000000000 ,1620000000000 ,1620000000000 ,1616812434930 -1616812434961 ,112.5721406,26.88066298,62.22832108,202.5622178,205.4912018,13.524075,0.124439164,1620000000000 ,1620000000000 ,1620000000000 ,1616812434940 -1616812434971 ,112.5721401,26.88066186,62.22507095,202.5458254,205.4741605,13.522087,0.12441025,1620000000000 ,1620000000000 ,1620000000000 ,1616812434950 -1616812434981 ,112.5721396,26.88066074,62.22159576,202.5268101,205.4594892,13.521567,0.124387579,1620000000000 ,1620000000000 ,1620000000000 ,1616812434960 -1616812434991 ,112.572139,26.88065962,62.21806335,202.5056639,205.4361538,13.516344,0.12434108,1620000000000 ,1620000000000 ,1620000000000 ,1616812434970 -1616812435000 ,112.5721385,26.88065849,62.21458817,202.4862661,205.4026973,13.517282,0.124327848,1620000000000 ,1620000000000 ,1620000000000 ,1616812434980 -1616812435011 ,112.572138,26.88065737,62.21107101,202.4689448,205.385229,13.518174,0.124336222,1620000000000 ,1620000000000 ,1620000000000 ,1616812434990 -1616812435020 ,112.5721374,26.88065625,62.20738602,202.4523884,205.3673927,13.522162,0.124345848,1620000000000 ,1620000000000 ,1620000000000 ,1616812435000 -1616812435031 ,112.5721369,26.88065512,62.20358276,202.4344933,205.3504991,13.520964,0.124340025,1620000000000 ,1620000000000 ,1620000000000 ,1616812435010 -1616812435052 ,112.5721364,26.880654,62.19976425,202.4128279,205.2966897,13.520132,0.124313566,1620000000000 ,1620000000000 ,1620000000000 ,1616812435020 -1616812435055 ,112.5721358,26.88065287,62.19595337,202.3920095,205.2500595,13.516701,0.124284397,1620000000000 ,1620000000000 ,1620000000000 ,1616812435030 -1616812435061 ,112.5721353,26.88065175,62.19210815,202.3725845,205.2271491,13.513665,0.12423998,1620000000000 ,1620000000000 ,1620000000000 ,1616812435040 -1616812435072 ,112.5721348,26.88065063,62.18824387,202.3540064,205.2133702,13.513358,0.124227269,1620000000000 ,1620000000000 ,1620000000000 ,1616812435050 -1616812435084 ,112.5721342,26.8806495,62.18444443,202.3333792,205.1711865,13.512786,0.124218417,1620000000000 ,1620000000000 ,1620000000000 ,1616812435060 -1616812435091 ,112.5721337,26.88064838,62.18074417,202.3150196,205.119393,13.5122795,0.124208369,1620000000000 ,1620000000000 ,1620000000000 ,1616812435070 -1616812435101 ,112.5721332,26.88064725,62.17708588,202.296141,205.0825434,13.510408,0.124189613,1620000000000 ,1620000000000 ,1620000000000 ,1616812435080 -1616812435111 ,112.5721327,26.88064613,62.17340469,202.2797212,205.059008,13.507296,0.124152993,1620000000000 ,1620000000000 ,1620000000000 ,1616812435090 -1616812435123 ,112.5721321,26.880645,62.16971588,202.261389,205.0567534,13.502315,0.124109715,1620000000000 ,1620000000000 ,1620000000000 ,1616812435100 -1616812435131 ,112.5721316,26.88064388,62.16611481,202.2419639,205.0290103,13.499911,0.124085486,1620000000000 ,1620000000000 ,1620000000000 ,1616812435110 -1616812435148 ,112.5721311,26.88064275,62.16258621,202.220162,205.0102887,13.506393,0.124115868,1620000000000 ,1620000000000 ,1620000000000 ,1616812435120 -1616812435152 ,112.5721306,26.88064163,62.15909576,202.1978409,204.9944131,13.511327,0.124164747,1620000000000 ,1620000000000 ,1620000000000 ,1616812435130 -1616812435162 ,112.57213,26.8806405,62.15555954,202.1805469,204.9916945,13.507531,0.124152311,1620000000000 ,1620000000000 ,1620000000000 ,1616812435140 -1616812435173 ,112.5721295,26.88063938,62.15209198,202.1600017,204.9782042,13.495074,0.12406387,1620000000000 ,1620000000000 ,1620000000000 ,1616812435150 -1616812435183 ,112.572129,26.88063826,62.14895248,202.1391559,204.9224022,13.474839,0.123892725,1620000000000 ,1620000000000 ,1620000000000 ,1616812435160 -1616812435193 ,112.5721285,26.88063713,62.14616013,202.1189659,204.8720601,13.465551,0.123782372,1620000000000 ,1620000000000 ,1620000000000 ,1616812435170 -1616812435203 ,112.572128,26.88063601,62.1435318,202.0975191,204.8405077,13.464068,0.123757326,1620000000000 ,1620000000000 ,1620000000000 ,1616812435180 -1616812435213 ,112.5721274,26.88063489,62.1408844,202.0736408,204.8067477,13.467519,0.12376402,1620000000000 ,1620000000000 ,1620000000000 ,1616812435200 -1616812435224 ,112.5721269,26.88063376,62.13801956,202.0563194,204.79279,13.478418,0.123916467,1620000000000 ,1620000000000 ,1620000000000 ,1616812435200 -1616812435234 ,112.5721264,26.88063263,62.13497162,202.0316487,204.7767127,13.482046,0.124085062,1620000000000 ,1620000000000 ,1620000000000 ,1616812435220 -1616812435244 ,112.5721254,26.88063038,62.12915421,201.9893016,204.7025588,13.47327,0.248108785,1620000000000 ,1620000000000 ,1620000000000 ,1616812435230 -1616812435253 ,112.5721248,26.88062925,62.12621689,201.9690842,204.6315312,13.457166,0.123875142,1620000000000 ,1620000000000 ,1620000000000 ,1616812435240 -1616812435263 ,112.5721248,26.88062925,62.12621689,201.9690842,-400,13.457166,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812435250 -1616812435275 ,112.5721238,26.880627,62.12032318,201.9322832,204.5355836,13.452424,0.247456447,1620000000000 ,1620000000000 ,1620000000000 ,1616812435260 -1616812435284 ,112.5721233,26.88062588,62.11716461,201.9222838,204.5134902,13.46339,0.123821178,1620000000000 ,1620000000000 ,1620000000000 ,1616812435270 -1616812435294 ,112.5721228,26.88062475,62.11394882,201.9111096,204.5583959,13.469657,0.12388679,1620000000000 ,1620000000000 ,1620000000000 ,1616812435280 -1616812435303 ,112.5721228,26.88062475,62.11394882,201.9111096,-400,13.469657,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812435290 -1616812435314 ,112.5721218,26.8806225,62.10811615,201.8804557,204.5582248,13.466811,0.247855803,1620000000000 ,1620000000000 ,1620000000000 ,1616812435300 -1616812435327 ,112.5721212,26.88062137,62.10529709,201.8601564,204.5546161,13.457167,0.123821377,1620000000000 ,1620000000000 ,1620000000000 ,1616812435310 -1616812435338 ,112.5721207,26.88062024,62.10214615,201.8423705,204.5309606,13.449192,0.123707435,1620000000000 ,1620000000000 ,1620000000000 ,1616812435320 -1616812435369 ,112.5721202,26.88061912,62.0984993,201.8192299,204.5493866,13.438647,0.123598662,1620000000000 ,1620000000000 ,1620000000000 ,1616812435330 -1616812435376 ,112.5721197,26.880618,62.09470367,201.7942041,204.5785149,13.450496,0.123641708,1620000000000 ,1620000000000 ,1620000000000 ,1616812435340 -1616812435379 ,112.5721192,26.88061687,62.09122086,201.7717464,204.5636765,13.459471,0.123746198,1620000000000 ,1620000000000 ,1620000000000 ,1616812435350 -1616812435382 ,112.5721187,26.88061574,62.08827591,201.748715,204.501098,13.467063,0.123828763,1620000000000 ,1620000000000 ,1620000000000 ,1616812435360 -1616812435385 ,112.5721182,26.88061462,62.08594131,201.7277873,204.4695568,13.453741,0.123768115,1620000000000 ,1620000000000 ,1620000000000 ,1616812435370 -1616812435396 ,112.5721176,26.88061349,62.084198,201.7100288,204.4562894,13.435821,0.123627579,1620000000000 ,1620000000000 ,1620000000000 ,1616812435380 -1616812435406 ,112.5721171,26.88061237,62.08285904,201.6974886,204.4520011,13.430802,0.123554549,1620000000000 ,1620000000000 ,1620000000000 ,1616812435390 -1616812435416 ,112.5721166,26.88061124,62.08157349,201.6829813,204.4108328,13.437314,0.123576845,1620000000000 ,1620000000000 ,1620000000000 ,1616812435400 -1616812435429 ,112.5721166,26.88061124,62.08157349,201.6829813,-400,13.437314,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812435410 -1616812435436 ,112.5721156,26.88060899,62.07868195,201.6417269,204.3959797,13.44619,0.247354374,1620000000000 ,1620000000000 ,1620000000000 ,1616812435420 -1616812435446 ,112.5721151,26.88060786,62.07758713,201.6209085,204.4214197,13.436938,0.123620628,1620000000000 ,1620000000000 ,1620000000000 ,1616812435430 -1616812435455 ,112.5721146,26.88060674,62.07714462,201.6010463,204.404578,13.415664,0.123477765,1620000000000 ,1620000000000 ,1620000000000 ,1616812435440 -1616812435465 ,112.5721141,26.88060562,62.07775879,201.5835337,204.4023966,13.400762,0.123248346,1620000000000 ,1620000000000 ,1620000000000 ,1616812435450 -1616812435476 ,112.5721136,26.88060449,62.07909393,201.5641906,204.4104744,13.405501,0.123188398,1620000000000 ,1620000000000 ,1620000000000 ,1616812435460 -1616812435486 ,112.5721131,26.88060337,62.08024979,201.5342471,204.414842,13.408249,0.123199747,1620000000000 ,1620000000000 ,1620000000000 ,1616812435470 -1616812435495 ,112.5721125,26.88060225,62.08102798,201.4995497,204.424354,13.419114,0.123289443,1620000000000 ,1620000000000 ,1620000000000 ,1616812435480 -1616812435505 ,112.572112,26.88060113,62.08143997,201.4600712,204.4916291,13.429417,0.123400841,1620000000000 ,1620000000000 ,1620000000000 ,1616812435490 -1616812435517 ,112.5721115,26.8806,62.08188248,201.4227784,204.5002937,13.431939,0.123443982,1620000000000 ,1620000000000 ,1620000000000 ,1616812435500 -1616812435526 ,112.572111,26.88059888,62.0826683,201.3946107,204.4324959,13.41315,0.123338434,1620000000000 ,1620000000000 ,1620000000000 ,1616812435510 -1616812435537 ,112.5721105,26.88059776,62.08414459,201.367044,204.3488399,13.383449,0.123108644,1620000000000 ,1620000000000 ,1620000000000 ,1616812435520 -1616812435546 ,112.57211,26.88059664,62.08642578,201.3436028,204.2886047,13.363146,0.122913122,1620000000000 ,1620000000000 ,1620000000000 ,1616812435530 -1616812435556 ,112.5721095,26.88059552,62.0890274,201.3230849,204.246079,13.366554,0.122910264,1620000000000 ,1620000000000 ,1620000000000 ,1616812435540 -1616812435566 ,112.572109,26.8805944,62.09136581,201.2960647,204.207136,13.377565,0.122994107,1620000000000 ,1620000000000 ,1620000000000 ,1616812435550 -1616812435575 ,112.5721085,26.88059327,62.09310913,201.2675965,204.1918241,13.3908615,0.12309689,1620000000000 ,1620000000000 ,1620000000000 ,1616812435560 -1616812435587 ,112.572108,26.88059215,62.09421539,201.2366967,204.2031893,13.403059,0.123201341,1620000000000 ,1620000000000 ,1620000000000 ,1616812435570 -1616812435596 ,112.5721075,26.88059103,62.0949707,201.2032834,204.1789813,13.404404,0.123237272,1620000000000 ,1620000000000 ,1620000000000 ,1616812435580 -1616812435608 ,112.572107,26.8805899,62.09569168,201.1713454,204.1175497,13.390483,0.123151927,1620000000000 ,1620000000000 ,1620000000000 ,1616812435590 -1616812435617 ,112.5721065,26.88058878,62.09650803,201.146265,204.0419911,13.377388,0.123030408,1620000000000 ,1620000000000 ,1620000000000 ,1616812435600 -1616812435627 ,112.572106,26.88058765,62.09720612,201.1247362,203.9894319,13.367352,0.1229235,1620000000000 ,1620000000000 ,1620000000000 ,1616812435610 -1616812435636 ,112.5721055,26.88058653,62.0974884,201.1035626,203.9795304,13.364112,0.122857855,1620000000000 ,1620000000000 ,1620000000000 ,1616812435620 -1616812435647 ,112.572105,26.88058541,62.09725189,201.079575,203.9670956,13.36769,0.122860984,1620000000000 ,1620000000000 ,1620000000000 ,1616812435630 -1616812435656 ,112.5721045,26.88058429,62.09648514,201.0558606,203.9282837,13.377486,0.12290606,1620000000000 ,1620000000000 ,1620000000000 ,1616812435640 -1616812435669 ,112.572104,26.88058316,62.09516907,201.0326926,203.904443,13.392415,0.123000099,1620000000000 ,1620000000000 ,1620000000000 ,1616812435650 -1616812435677 ,112.5721035,26.88058204,62.09333801,201.0087869,203.8903341,13.402713,0.123083526,1620000000000 ,1620000000000 ,1620000000000 ,1616812435660 -1616812435686 ,112.572103,26.88058091,62.09119034,200.9824224,203.8738982,13.401659,0.123091498,1620000000000 ,1620000000000 ,1620000000000 ,1616812435670 -1616812435697 ,112.5721025,26.88057979,62.08886337,200.9570961,203.8130707,13.391936,0.123001076,1620000000000 ,1620000000000 ,1620000000000 ,1616812435680 -1616812435709 ,112.572102,26.88057866,62.08639526,200.9331904,203.7526568,13.381895,0.122891471,1620000000000 ,1620000000000 ,1620000000000 ,1616812435690 -1616812435723 ,112.5721015,26.88057754,62.08372498,200.9104869,203.7180827,13.3775425,0.122814937,1620000000000 ,1620000000000 ,1620000000000 ,1616812435700 -1616812435728 ,112.572101,26.88057641,62.08068848,200.8896684,203.6892466,13.380352,0.122801195,1620000000000 ,1620000000000 ,1620000000000 ,1616812435710 -1616812435747 ,112.5721005,26.88057529,62.07720947,200.8693964,203.648496,13.387876,0.122824082,1620000000000 ,1620000000000 ,1620000000000 ,1616812435720 -1616812435754 ,112.5721,26.88057416,62.07336044,200.8479223,203.6014181,13.396207,0.122872519,1620000000000 ,1620000000000 ,1620000000000 ,1616812435730 -1616812435758 ,112.5720995,26.88057303,62.06930923,200.8269673,203.547409,13.402914,0.122917071,1620000000000 ,1620000000000 ,1620000000000 ,1616812435740 -1616812435767 ,112.572099,26.88057191,62.06514359,200.8098645,203.4877105,13.405225,0.122931385,1620000000000 ,1620000000000 ,1620000000000 ,1616812435750 -1616812435778 ,112.5720985,26.88057078,62.06089401,200.794401,203.4369744,13.401658,0.12290028,1620000000000 ,1620000000000 ,1620000000000 ,1616812435760 -1616812435788 ,112.5720981,26.88056965,62.05653381,200.7775987,203.40188,13.395811,0.122830611,1620000000000 ,1620000000000 ,1620000000000 ,1616812435770 -1616812435797 ,112.5720976,26.88056852,62.05203629,200.7619985,203.366839,13.38667,0.122742633,1620000000000 ,1620000000000 ,1620000000000 ,1616812435780 -1616812435811 ,112.5720971,26.8805674,62.04738235,200.7452236,203.3481598,13.388097,0.122708784,1620000000000 ,1620000000000 ,1620000000000 ,1616812435790 -1616812435817 ,112.5720966,26.88056627,62.04266357,200.7301972,203.3126676,13.394421,0.122744049,1620000000000 ,1620000000000 ,1620000000000 ,1616812435800 -1616812435830 ,112.5720961,26.88056514,62.03792191,200.7138867,203.2658365,13.401091,0.122799337,1620000000000 ,1620000000000 ,1620000000000 ,1616812435810 -1616812435838 ,112.5720956,26.88056401,62.0332756,200.6977948,203.247312,13.400785,0.122819226,1620000000000 ,1620000000000 ,1620000000000 ,1616812435820 -1616812435848 ,112.5720951,26.88056289,62.02886581,200.6818941,203.2345697,13.389314,0.122745351,1620000000000 ,1620000000000 ,1620000000000 ,1616812435830 -1616812435859 ,112.5720947,26.88056176,62.02476883,200.6658295,203.2031847,13.375194,0.12262547,1620000000000 ,1620000000000 ,1620000000000 ,1616812435840 -1616812435875 ,112.5720942,26.88056063,62.02084351,200.6516227,203.1708741,13.371854,0.12256873,1620000000000 ,1620000000000 ,1620000000000 ,1616812435850 -1616812435880 ,112.5720937,26.88055951,62.01687622,200.6409676,203.1419564,13.380358,0.122609243,1620000000000 ,1620000000000 ,1620000000000 ,1616812435860 -1616812435888 ,112.5720932,26.88055838,62.01279068,200.6284274,203.1327714,13.386382,0.122672363,1620000000000 ,1620000000000 ,1620000000000 ,1616812435870 -1616812435900 ,112.5720927,26.88055725,62.00873184,200.6156139,203.1088937,13.386954,0.122679105,1620000000000 ,1620000000000 ,1620000000000 ,1616812435880 -1616812435909 ,112.5720922,26.88055612,62.00494003,200.6025546,203.0819057,13.382435,0.122658124,1620000000000 ,1620000000000 ,1620000000000 ,1616812435890 -1616812435922 ,112.5720918,26.88055499,62.00150299,200.5887303,203.0786929,13.374323,0.122606354,1620000000000 ,1620000000000 ,1620000000000 ,1616812435900 -1616812435930 ,112.5720913,26.88055386,61.99834061,200.5757529,203.0712559,13.370063,0.122568722,1620000000000 ,1620000000000 ,1620000000000 ,1616812435910 -1616812435940 ,112.5720908,26.88055274,61.99531174,200.5615735,203.0606249,13.36953,0.122552712,1620000000000 ,1620000000000 ,1620000000000 ,1616812435920 -1616812435950 ,112.5720903,26.88055161,61.9923439,200.5459733,203.0590491,13.371819,0.122569859,1620000000000 ,1620000000000 ,1620000000000 ,1616812435930 -1616812435958 ,112.5720898,26.88055048,61.98939133,200.5298814,203.0485765,13.376143,0.122605155,1620000000000 ,1620000000000 ,1620000000000 ,1616812435940 -1616812435969 ,112.5720894,26.88054935,61.98651886,200.5127786,203.0348818,13.37632,0.122615256,1620000000000 ,1620000000000 ,1620000000000 ,1616812435950 -1616812435979 ,112.5720889,26.88054822,61.98380661,200.4970418,203.0206067,13.3742075,0.122604595,1620000000000 ,1620000000000 ,1620000000000 ,1616812435960 -1616812435990 ,112.5720884,26.8805471,61.98134613,200.4813324,203.026564,13.370462,0.122588185,1620000000000 ,1620000000000 ,1620000000000 ,1616812435970 -1616812436018 ,112.5720879,26.88054597,61.97917557,200.4666065,203.0295685,13.362656,0.122537634,1620000000000 ,1620000000000 ,1620000000000 ,1616812435980 -1616812436021 ,112.5720875,26.88054484,61.97728348,200.4519899,203.020779,13.355619,0.122478779,1620000000000 ,1620000000000 ,1620000000000 ,1616812435990 -1616812436024 ,112.572087,26.88054371,61.97558975,200.4344227,202.9953863,13.354433,0.122455899,1620000000000 ,1620000000000 ,1620000000000 ,1616812436000 -1616812436031 ,112.5720865,26.88054259,61.97398376,200.415708,202.9825403,13.356581,0.122472672,1620000000000 ,1620000000000 ,1620000000000 ,1616812436010 -1616812436046 ,112.572086,26.88054146,61.97244644,200.3973757,202.9782602,13.357987,0.122492916,1620000000000 ,1620000000000 ,1620000000000 ,1616812436020 -1616812436050 ,112.5720855,26.88054033,61.971035,200.3806827,202.9676456,13.356929,0.122494206,1620000000000 ,1620000000000 ,1620000000000 ,1616812436030 -1616812436061 ,112.5720851,26.8805392,61.96989059,200.362733,202.9459269,13.350384,0.122455843,1620000000000 ,1620000000000 ,1620000000000 ,1616812436040 -1616812436070 ,112.5720846,26.88053808,61.96906281,200.3440729,202.9261316,13.345736,0.122419723,1620000000000 ,1620000000000 ,1620000000000 ,1616812436050 -1616812436080 ,112.5720841,26.88053695,61.96848297,200.3244839,202.90224,13.340412,0.122386112,1620000000000 ,1620000000000 ,1620000000000 ,1616812436060 -1616812436090 ,112.5720836,26.88053582,61.9679718,200.3042939,202.8744694,13.336871,0.12234723,1620000000000 ,1620000000000 ,1620000000000 ,1616812436070 -1616812436100 ,112.5720832,26.88053469,61.96743393,200.2844044,202.8496991,13.338669,0.122350907,1620000000000 ,1620000000000 ,1620000000000 ,1616812436080 -1616812436111 ,112.5720827,26.88053357,61.96688461,200.2673016,202.8460116,13.339861,0.122367379,1620000000000 ,1620000000000 ,1620000000000 ,1616812436090 -1616812436126 ,112.5720822,26.88053244,61.96636963,200.2525211,202.8211842,13.340161,0.122375397,1620000000000 ,1620000000000 ,1620000000000 ,1616812436100 -1616812436132 ,112.5720817,26.88053131,61.96592712,200.2392978,202.7761533,13.338406,0.12236605,1620000000000 ,1620000000000 ,1620000000000 ,1616812436110 -1616812436142 ,112.5720813,26.88053018,61.96558762,200.2227961,202.7412163,13.332334,0.122323625,1620000000000 ,1620000000000 ,1620000000000 ,1616812436120 -1616812436150 ,112.5720808,26.88052905,61.96525955,200.2074691,202.7360705,13.32903,0.122291014,1620000000000 ,1620000000000 ,1620000000000 ,1616812436130 -1616812436160 ,112.5720803,26.88052793,61.9648056,200.1955027,202.7357535,13.327904,0.122272813,1620000000000 ,1620000000000 ,1620000000000 ,1616812436140 -1616812436172 ,112.5720798,26.8805268,61.96412659,200.1816237,202.7242475,13.328651,0.122271337,1620000000000 ,1620000000000 ,1620000000000 ,1616812436150 -1616812436182 ,112.5720794,26.88052567,61.96326065,200.1613244,202.7127876,13.32779,0.122261367,1620000000000 ,1620000000000 ,1620000000000 ,1616812436160 -1616812436193 ,112.5720789,26.88052454,61.96231461,200.1402874,202.6965068,13.325834,0.122243616,1620000000000 ,1620000000000 ,1620000000000 ,1616812436170 -1616812436201 ,112.5720784,26.88052341,61.96126938,200.1224196,202.6773032,13.32347,0.122218296,1620000000000 ,1620000000000 ,1620000000000 ,1616812436180 -1616812436210 ,112.572078,26.88052229,61.96006775,200.1069834,202.6646622,13.321875,0.122197498,1620000000000 ,1620000000000 ,1620000000000 ,1616812436190 -1616812436222 ,112.5720775,26.88052116,61.958992,200.0875583,202.7632202,13.350394,0.122692666,1620000000000 ,1620000000000 ,1620000000000 ,1616812436200 -1616812436231 ,112.572077,26.88052002,61.95830154,200.0732423,202.9289013,13.3503685,0.123498976,1620000000000 ,1620000000000 ,1620000000000 ,1616812436210 -1616812436247 ,112.5720765,26.88051888,61.95739365,200.0609752,202.8933577,13.35401,0.123504249,1620000000000 ,1620000000000 ,1620000000000 ,1616812436220 -1616812436251 ,112.572076,26.88051774,61.95623016,200.047069,202.8562438,13.357367,0.123518446,1620000000000 ,1620000000000 ,1620000000000 ,1616812436230 -1616812436263 ,112.5720756,26.8805166,61.9548378,200.0285455,202.8271719,13.359196,0.123526255,1620000000000 ,1620000000000 ,1620000000000 ,1616812436240 -1616812436272 ,112.5720751,26.88051547,61.95330429,200.0104045,202.8149153,13.35801,0.123514194,1620000000000 ,1620000000000 ,1620000000000 ,1616812436250 -1616812436281 ,112.5720746,26.88051433,61.95165634,199.9954054,202.8019163,13.35739,0.12350125,1620000000000 ,1620000000000 ,1620000000000 ,1616812436260 -1616812436292 ,112.5720741,26.88051319,61.94982147,199.982674,202.7754203,13.356992,0.12348048,1620000000000 ,1620000000000 ,1620000000000 ,1616812436270 -1616812436304 ,112.5720736,26.88051205,61.94775391,199.9711992,202.7378638,13.357513,0.123463113,1620000000000 ,1620000000000 ,1620000000000 ,1616812436280 -1616812436328 ,112.5720732,26.88051091,61.9454422,199.9578667,202.702371,13.358259,0.123450707,1620000000000 ,1620000000000 ,1620000000000 ,1616812436290 -1616812436335 ,112.5720727,26.88050977,61.94290543,199.9458729,202.6769836,13.360318,0.123446914,1620000000000 ,1620000000000 ,1620000000000 ,1616812436300 -1616812436343 ,112.5720722,26.88050863,61.94015503,199.9354364,202.6688156,13.362326,0.123449763,1620000000000 ,1620000000000 ,1620000000000 ,1616812436310 -1616812436345 ,112.5720717,26.88050749,61.93725586,199.9235518,202.6571058,13.363433,0.123452254,1620000000000 ,1620000000000 ,1620000000000 ,1616812436330 -1616812436353 ,112.5720713,26.88050635,61.93427277,199.9105472,202.6361007,13.364704,0.123454227,1620000000000 ,1620000000000 ,1620000000000 ,1616812436340 -1616812436365 ,112.5720708,26.88050521,61.93123627,199.8966682,202.6110925,13.366204,0.123455086,1620000000000 ,1620000000000 ,1620000000000 ,1616812436350 -1616812436373 ,112.5720703,26.88050407,61.9280777,199.8827346,202.5851548,13.36759,0.123454694,1620000000000 ,1620000000000 ,1620000000000 ,1616812436360 -1616812436383 ,112.5720698,26.88050293,61.92474365,199.8707681,202.5615751,13.367659,0.123444013,1620000000000 ,1620000000000 ,1620000000000 ,1616812436370 -1616812436395 ,112.5720689,26.88050065,61.91778183,199.8487476,202.5401592,13.370707,0.246894966,1620000000000 ,1620000000000 ,1620000000000 ,1616812436380 -1616812436404 ,112.5720689,26.88050065,61.91778183,199.8487476,-400,13.370707,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812436380 -1616812436417 ,112.572068,26.88049837,61.91096115,199.8332021,202.4867546,13.371158,0.246899656,1620000000000 ,1620000000000 ,1620000000000 ,1616812436400 -1616812436428 ,112.572068,26.88049837,61.91096115,199.8332021,-400,13.371158,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812436410 -1616812436442 ,112.572067,26.88049609,61.90431213,199.8180937,202.4674284,13.369981,0.246892221,1620000000000 ,1620000000000 ,1620000000000 ,1616812436420 -1616812436452 ,112.5720665,26.88049495,61.90103912,199.8149518,202.4433804,13.367691,0.123419711,1620000000000 ,1620000000000 ,1620000000000 ,1616812436430 -1616812436454 ,112.5720661,26.88049381,61.89779282,199.8113728,202.4250366,13.370139,0.123429002,1620000000000 ,1620000000000 ,1620000000000 ,1616812436440 -1616812436466 ,112.5720656,26.88049267,61.89429855,199.806619,202.3087326,13.371199,0.122930685,1620000000000 ,1620000000000 ,1620000000000 ,1616812436450 -1616812436475 ,112.5720651,26.88049154,61.89056015,199.8021657,202.1968022,13.370255,0.122412803,1620000000000 ,1620000000000 ,1620000000000 ,1616812436460 -1616812436485 ,112.5720647,26.88049041,61.88689423,199.7989419,202.2031577,13.372186,0.122424913,1620000000000 ,1620000000000 ,1620000000000 ,1616812436470 -1616812436495 ,112.5720642,26.88048927,61.8833046,199.7966196,202.2043227,13.372496,0.122441482,1620000000000 ,1620000000000 ,1620000000000 ,1616812436480 -1616812436507 ,112.5720638,26.88048814,61.87985229,199.7949804,202.1903566,13.370095,0.122426637,1620000000000 ,1620000000000 ,1620000000000 ,1616812436490 -1616812436522 ,112.5720633,26.88048701,61.87663651,199.7930406,202.1715669,13.362631,0.12238014,1620000000000 ,1620000000000 ,1620000000000 ,1616812436500 -1616812436530 ,112.5720628,26.88048587,61.87366867,199.7951989,202.1518883,13.359182,0.122346532,1620000000000 ,1620000000000 ,1620000000000 ,1616812436510 -1616812436539 ,112.5720624,26.88048474,61.87083054,199.7985867,202.1348413,13.361408,0.122355062,1620000000000 ,1620000000000 ,1620000000000 ,1616812436520 -1616812436553 ,112.5720619,26.8804836,61.86804962,199.7991331,202.1370467,13.365265,0.122390622,1620000000000 ,1620000000000 ,1620000000000 ,1616812436530 -1616812436556 ,112.5720614,26.88048247,61.86536026,199.7971114,202.1264513,13.366849,0.122416512,1620000000000 ,1620000000000 ,1620000000000 ,1616812436540 -1616812436565 ,112.572061,26.88048134,61.86283875,199.7952536,202.123976,13.366178,0.122423348,1620000000000 ,1620000000000 ,1620000000000 ,1616812436550 -1616812436582 ,112.5720605,26.8804802,61.86048889,199.796483,202.1236611,13.362367,0.1224006,1620000000000 ,1620000000000 ,1620000000000 ,1616812436560 -1616812436587 ,112.5720601,26.88047907,61.85823822,199.8009363,202.1054973,13.357984,0.12236532,1620000000000 ,1620000000000 ,1620000000000 ,1616812436570 -1616812436597 ,112.5720596,26.88047794,61.8560257,199.8042421,202.0911569,13.356988,0.122345789,1620000000000 ,1620000000000 ,1620000000000 ,1616812436580 -1616812436607 ,112.5720591,26.8804768,61.85381699,199.8049798,202.0907959,13.3594,0.122358382,1620000000000 ,1620000000000 ,1620000000000 ,1616812436590 -1616812436616 ,112.5720587,26.88047567,61.8515892,199.8044333,202.105123,13.362014,0.122384954,1620000000000 ,1620000000000 ,1620000000000 ,1616812436600 -1616812436626 ,112.5720582,26.88047453,61.84931183,199.8073293,202.1369429,13.362556,0.122399215,1620000000000 ,1620000000000 ,1620000000000 ,1616812436610 -1616812436637 ,112.5720578,26.8804734,61.84707642,199.8082309,202.158709,13.359782,0.122391845,1620000000000 ,1620000000000 ,1620000000000 ,1616812436620 -1616812436648 ,112.5720573,26.88047227,61.84503937,199.8088866,202.1538632,13.3534565,0.122343187,1620000000000 ,1620000000000 ,1620000000000 ,1616812436630 -1616812436656 ,112.5720568,26.88047113,61.84321213,199.8089413,202.161955,13.351129,0.122323867,1620000000000 ,1620000000000 ,1620000000000 ,1616812436640 -1616812436666 ,112.5720564,26.88047,61.84141541,199.8104439,202.1720751,13.349287,0.122309248,1620000000000 ,1620000000000 ,1620000000000 ,1616812436650 -1616812436676 ,112.5720559,26.88046887,61.83953094,199.8069195,202.197463,13.3508415,0.12232102,1620000000000 ,1620000000000 ,1620000000000 ,1616812436660 -1616812436686 ,112.5720555,26.88046774,61.837677,199.8033678,202.2469546,13.349467,0.122319289,1620000000000 ,1620000000000 ,1620000000000 ,1616812436670 -1616812436697 ,112.572055,26.88046661,61.83594131,199.8000893,202.2557574,13.349727,0.122326053,1620000000000 ,1620000000000 ,1620000000000 ,1616812436680 -1616812436708 ,112.5720545,26.88046547,61.83426666,199.7990238,202.245845,13.347262,0.122322131,1620000000000 ,1620000000000 ,1620000000000 ,1616812436690 -1616812436716 ,112.5720541,26.88046434,61.83272171,199.7963464,202.2415244,13.342432,0.122282318,1620000000000 ,1620000000000 ,1620000000000 ,1616812436700 -1616812436728 ,112.5720536,26.88046321,61.83130646,199.793669,202.2494418,13.338807,0.122255294,1620000000000 ,1620000000000 ,1620000000000 ,1616812436710 -1616812436737 ,112.5720531,26.88046208,61.82991791,199.7938602,202.2499901,13.336743,0.122236762,1620000000000 ,1620000000000 ,1620000000000 ,1616812436720 -1616812436747 ,112.5720527,26.88046095,61.82842255,199.7938329,202.2445599,13.337917,0.122234721,1620000000000 ,1620000000000 ,1620000000000 ,1616812436730 -1616812436758 ,112.5720522,26.88045982,61.82683182,199.7917565,202.2408821,13.336578,0.122225937,1620000000000 ,1620000000000 ,1620000000000 ,1616812436740 -1616812436767 ,112.5720517,26.88045868,61.82526779,199.7883414,202.2224385,13.335621,0.122215439,1620000000000 ,1620000000000 ,1620000000000 ,1616812436750 -1616812436779 ,112.5720513,26.88045755,61.82370377,199.7884507,202.2078353,13.335599,0.122208158,1620000000000 ,1620000000000 ,1620000000000 ,1616812436760 -1616812436788 ,112.5720508,26.88045642,61.82207108,199.7911008,202.200892,13.334684,0.122201676,1620000000000 ,1620000000000 ,1620000000000 ,1616812436770 -1616812436799 ,112.5720504,26.88045529,61.82036972,199.792221,202.2079882,13.333274,0.122190027,1620000000000 ,1620000000000 ,1620000000000 ,1616812436780 -1616812436807 ,112.5720499,26.88045416,61.81864166,199.7907456,202.1952738,13.331326,0.122168169,1620000000000 ,1620000000000 ,1620000000000 ,1616812436790 -1616812436818 ,112.5720494,26.88045303,61.81689835,199.7890518,202.1828775,13.330715,0.122156402,1620000000000 ,1620000000000 ,1620000000000 ,1616812436800 -1616812436829 ,112.572049,26.8804519,61.81507874,199.7920024,202.1819606,13.330979,0.12215744,1620000000000 ,1620000000000 ,1620000000000 ,1616812436810 -1616812436841 ,112.5720485,26.88045077,61.81312561,199.7948711,202.1874609,13.331481,0.122155377,1620000000000 ,1620000000000 ,1620000000000 ,1616812436820 -1616812436851 ,112.5720481,26.88044963,61.81108475,199.795718,202.1892299,13.331223,0.122149325,1620000000000 ,1620000000000 ,1620000000000 ,1616812436830 -1616812436859 ,112.5720476,26.8804485,61.80901718,199.7945979,202.1824758,13.328809,0.122131195,1620000000000 ,1620000000000 ,1620000000000 ,1616812436840 -1616812436868 ,112.5720471,26.88044737,61.80692673,199.7949257,202.1826581,13.327568,0.122114166,1620000000000 ,1620000000000 ,1620000000000 ,1616812436850 -1616812436878 ,112.5720467,26.88044624,61.8047905,199.795035,202.1866559,13.325772,0.122102128,1620000000000 ,1620000000000 ,1620000000000 ,1616812436860 -1616812436887 ,112.5720462,26.88044511,61.80258942,199.7958,202.1944198,13.3232765,0.122072346,1620000000000 ,1620000000000 ,1620000000000 ,1616812436870 -1616812436899 ,112.5720458,26.88044398,61.80036545,199.7956907,202.1852052,13.320368,0.122050164,1620000000000 ,1620000000000 ,1620000000000 ,1616812436880 -1616812436911 ,112.5720453,26.88044285,61.79811478,199.7968655,202.1678499,13.319296,0.122029652,1620000000000 ,1620000000000 ,1620000000000 ,1616812436890 -1616812436919 ,112.5720448,26.88044172,61.79578018,199.7982589,202.1679279,13.320425,0.122026699,1620000000000 ,1620000000000 ,1620000000000 ,1616812436900 -1616812436928 ,112.5720444,26.88044059,61.79333878,199.8012641,202.1694767,13.322098,0.122038209,1620000000000 ,1620000000000 ,1620000000000 ,1616812436910 -1616812436938 ,112.5720439,26.88043946,61.79084778,199.8002806,202.1675421,13.319581,0.122023608,1620000000000 ,1620000000000 ,1620000000000 ,1616812436920 -1616812436950 ,112.5720435,26.88043833,61.78838348,199.8005265,202.1598731,13.3158655,0.121989432,1620000000000 ,1620000000000 ,1620000000000 ,1616812436930 -1616812436959 ,112.572043,26.8804372,61.78591919,199.8055535,202.1602965,13.313706,0.121962934,1620000000000 ,1620000000000 ,1620000000000 ,1616812436940 -1616812436969 ,112.5720425,26.88043607,61.78336716,199.8089139,202.1647056,13.31234,0.121945345,1620000000000 ,1620000000000 ,1620000000000 ,1616812436950 -1616812437005 ,112.5720421,26.88043494,61.78068542,199.8154436,202.1696122,13.314539,0.121952627,1620000000000 ,1620000000000 ,1620000000000 ,1616812436960 -1616812437008 ,112.5720416,26.88043381,61.77793503,199.8179571,202.1579247,13.31286,0.121937254,1620000000000 ,1620000000000 ,1620000000000 ,1616812436970 -1616812437011 ,112.5720412,26.88043268,61.77522278,199.8208804,202.1471851,13.311572,0.121926689,1620000000000 ,1620000000000 ,1620000000000 ,1616812436980 -1616812437013 ,112.5720407,26.88043156,61.77257538,199.8262626,202.1493789,13.307225,0.121892307,1620000000000 ,1620000000000 ,1620000000000 ,1616812436990 -1616812437018 ,112.5720402,26.88043043,61.76993942,199.8326557,202.1528578,13.306561,0.121878805,1620000000000 ,1620000000000 ,1620000000000 ,1616812437000 -1616812437030 ,112.5720398,26.8804293,61.76726151,199.8383657,202.1584066,13.305268,0.121867891,1620000000000 ,1620000000000 ,1620000000000 ,1616812437010 -1616812437041 ,112.5720393,26.88042817,61.76451111,199.8464527,202.1618833,13.306104,0.121865136,1620000000000 ,1620000000000 ,1620000000000 ,1616812437020 -1616812437049 ,112.5720389,26.88042704,61.76170349,199.8551407,202.1673654,13.3057375,0.121860779,1620000000000 ,1620000000000 ,1620000000000 ,1616812437030 -1616812437061 ,112.5720384,26.88042591,61.75891113,199.86249,202.1699882,13.302845,0.121838296,1620000000000 ,1620000000000 ,1620000000000 ,1616812437040 -1616812437072 ,112.5720379,26.88042478,61.75616837,199.8730358,202.175366,13.3006315,0.121820536,1620000000000 ,1620000000000 ,1620000000000 ,1616812437050 -1616812437080 ,112.5720375,26.88042366,61.75349808,199.8800845,202.1827319,13.297928,0.121800263,1620000000000 ,1620000000000 ,1620000000000 ,1616812437060 -1616812437091 ,112.572037,26.88042253,61.75091934,199.887625,202.1821889,13.297086,0.121793526,1620000000000 ,1620000000000 ,1620000000000 ,1616812437070 -1616812437100 ,112.5720366,26.8804214,61.74841309,199.8981435,202.1881809,13.297123,0.121794526,1620000000000 ,1620000000000 ,1620000000000 ,1616812437080 -1616812437112 ,112.5720361,26.88042027,61.74595642,199.9074326,202.1907641,13.294304,0.121779092,1620000000000 ,1620000000000 ,1620000000000 ,1616812437090 -1616812437122 ,112.5720356,26.88041915,61.74352646,199.9180604,202.1858691,13.288918,0.12173123,1620000000000 ,1620000000000 ,1620000000000 ,1616812437100 -1616812437131 ,112.5720352,26.88041802,61.74115753,199.9283603,202.1882073,13.285543,0.121702711,1620000000000 ,1620000000000 ,1620000000000 ,1616812437110 -1616812437142 ,112.5720347,26.88041689,61.73883057,199.9433321,202.1938353,13.285741,0.121692602,1620000000000 ,1620000000000 ,1620000000000 ,1616812437120 -1616812437150 ,112.5720343,26.88041577,61.73653793,199.958741,202.1816346,13.2880945,0.121713314,1620000000000 ,1620000000000 ,1620000000000 ,1616812437130 -1616812437161 ,112.5720338,26.88041464,61.73430252,199.9735761,202.1755316,13.285519,0.121706507,1620000000000 ,1620000000000 ,1620000000000 ,1616812437140 -1616812437172 ,112.5720333,26.88041351,61.73215866,199.989914,202.1793076,13.280503,0.121668304,1620000000000 ,1620000000000 ,1620000000000 ,1616812437150 -1616812437182 ,112.5720329,26.88041239,61.73010254,200.0080276,202.1921642,13.275153,0.12162238,1620000000000 ,1620000000000 ,1620000000000 ,1616812437160 -1616812437191 ,112.5720324,26.88041126,61.72811127,200.0270155,202.2063099,13.272045,0.121597648,1620000000000 ,1620000000000 ,1620000000000 ,1616812437170 -1616812437201 ,112.572032,26.88041013,61.72617722,200.0452931,202.2210238,13.27177,0.121593811,1620000000000 ,1620000000000 ,1620000000000 ,1616812437180 -1616812437211 ,112.5720315,26.88040901,61.72429276,200.0668492,202.2329168,13.272007,0.121597548,1620000000000 ,1620000000000 ,1620000000000 ,1616812437190 -1616812437222 ,112.572031,26.88040788,61.72228241,200.0894162,202.4891396,13.303555,0.122155631,1620000000000 ,1620000000000 ,1620000000000 ,1616812437200 -1616812437232 ,112.5720306,26.88040675,61.72005081,200.1111362,202.9127768,13.300932,0.123012332,1620000000000 ,1620000000000 ,1620000000000 ,1616812437210 -1616812437245 ,112.5720301,26.88040561,61.71784973,200.131135,202.9497983,13.297564,0.122992955,1620000000000 ,1620000000000 ,1620000000000 ,1616812437220 -1616812437251 ,112.5720296,26.88040448,61.7157135,200.1538931,202.9790939,13.2941065,0.12296851,1620000000000 ,1620000000000 ,1620000000000 ,1616812437230 -1616812437262 ,112.5720291,26.88040335,61.71366501,200.1750121,202.9967568,13.291974,0.12295309,1620000000000 ,1620000000000 ,1620000000000 ,1616812437240 -1616812437272 ,112.5720286,26.88040222,61.71165085,200.199191,203.0133229,13.291082,0.122948308,1620000000000 ,1620000000000 ,1620000000000 ,1616812437250 -1616812437286 ,112.5720281,26.88040109,61.70960617,200.2231786,203.0339143,13.291642,0.122952033,1620000000000 ,1620000000000 ,1620000000000 ,1616812437260 -1616812437294 ,112.5720277,26.88039996,61.70752335,200.2471935,203.0642832,13.289769,0.122946266,1620000000000 ,1620000000000 ,1620000000000 ,1616812437270 -1616812437304 ,112.5720272,26.88039883,61.70544052,200.2711538,203.0818902,13.289447,0.122944318,1620000000000 ,1620000000000 ,1620000000000 ,1616812437280 -1616812437314 ,112.5720267,26.88039769,61.70336533,200.2973818,203.1217368,13.286624,0.122927808,1620000000000 ,1620000000000 ,1620000000000 ,1616812437290 -1616812437326 ,112.5720262,26.88039656,61.7012825,200.3249211,203.1468151,13.284651,0.122914944,1620000000000 ,1620000000000 ,1620000000000 ,1616812437300 -1616812437333 ,112.5720257,26.88039543,61.69916153,200.352679,203.1539305,13.281125,0.122888956,1620000000000 ,1620000000000 ,1620000000000 ,1616812437310 -1616812437343 ,112.5720253,26.88039431,61.69704819,200.3775955,203.1636302,13.277386,0.122854633,1620000000000 ,1620000000000 ,1620000000000 ,1616812437330 -1616812437354 ,112.5720248,26.88039318,61.69496536,200.4052441,203.1812276,13.275926,0.122839788,1620000000000 ,1620000000000 ,1620000000000 ,1616812437330 -1616812437363 ,112.5720243,26.88039205,61.69283676,200.4328927,203.2129774,13.276799,0.122844649,1620000000000 ,1620000000000 ,1620000000000 ,1616812437340 -1616812437373 ,112.5720238,26.88039092,61.69062424,200.4598583,203.2450959,13.277408,0.122856582,1620000000000 ,1620000000000 ,1620000000000 ,1616812437360 -1616812437384 ,112.5720233,26.88038979,61.68837738,200.4872064,203.270365,13.276665,0.12285782,1620000000000 ,1620000000000 ,1620000000000 ,1616812437370 -1616812437394 ,112.5720228,26.88038866,61.68616867,200.5139261,203.2918892,13.272101,0.122828093,1620000000000 ,1620000000000 ,1620000000000 ,1616812437380 -1616812437404 ,112.5720223,26.88038753,61.68398285,200.5435691,203.3168494,13.268877,0.122801057,1620000000000 ,1620000000000 ,1620000000000 ,1616812437380 -1616812437413 ,112.5720219,26.88038641,61.68174744,200.5749606,203.347587,13.266794,0.122782883,1620000000000 ,1620000000000 ,1620000000000 ,1616812437400 -1616812437423 ,112.5720214,26.88038528,61.67943954,200.6064615,203.390565,13.264572,0.122766111,1620000000000 ,1620000000000 ,1620000000000 ,1616812437410 -1616812437433 ,112.5720204,26.88038303,61.67473221,200.6662666,203.4307708,13.264239,0.245532097,1620000000000 ,1620000000000 ,1620000000000 ,1616812437420 -1616812437446 ,112.5720199,26.8803819,61.67235947,200.6961282,203.4817347,13.263698,0.122766122,1620000000000 ,1620000000000 ,1620000000000 ,1616812437430 -1616812437455 ,112.5720194,26.88038078,61.6699295,200.7254161,203.5194549,13.260809,0.122751788,1620000000000 ,1620000000000 ,1620000000000 ,1616812437440 -1616812437464 ,112.5720189,26.88037965,61.66762543,200.7548951,203.3088683,13.259147,0.122177306,1620000000000 ,1620000000000 ,1620000000000 ,1616812437450 -1616812437474 ,112.5720185,26.88037853,61.66545868,200.7848933,203.082604,13.2581,0.12160302,1620000000000 ,1620000000000 ,1620000000000 ,1616812437460 -1616812437483 ,112.572018,26.88037742,61.66323471,200.8178968,203.1127351,13.257486,0.121598165,1620000000000 ,1620000000000 ,1620000000000 ,1616812437470 -1616812437494 ,112.5720175,26.8803763,61.66090775,200.853004,203.1562931,13.257499,0.121602549,1620000000000 ,1620000000000 ,1620000000000 ,1616812437480 -1616812437504 ,112.5720175,26.8803763,61.66090775,200.853004,-400,13.257499,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812437490 -1616812437521 ,112.5720165,26.88037406,61.65617371,200.9187377,203.2117913,13.250506,0.243137313,1620000000000 ,1620000000000 ,1620000000000 ,1616812437500 -1616812437528 ,112.5720161,26.88037295,61.6538887,200.9528887,203.2488415,13.246537,0.121527389,1620000000000 ,1620000000000 ,1620000000000 ,1616812437510 -1616812437539 ,112.5720156,26.88037183,61.6516304,200.9872309,203.2869095,13.24542,0.12151569,1620000000000 ,1620000000000 ,1620000000000 ,1616812437520 -1616812437548 ,112.5720151,26.88037071,61.64936829,201.0195786,203.3295625,13.244142,0.12151325,1620000000000 ,1620000000000 ,1620000000000 ,1616812437530 -1616812437555 ,112.5720146,26.8803696,61.64706421,201.0535383,203.3691367,13.244077,0.121511598,1620000000000 ,1620000000000 ,1620000000000 ,1616812437540 -1616812437564 ,112.5720141,26.88036848,61.64471054,201.0860774,203.4058435,13.24442,0.12151888,1620000000000 ,1620000000000 ,1620000000000 ,1616812437550 -1616812437576 ,112.5720137,26.88036737,61.64231873,201.119354,203.439208,13.243623,0.121518066,1620000000000 ,1620000000000 ,1620000000000 ,1616812437560 -1616812437586 ,112.5720132,26.88036625,61.6399231,201.1532318,203.4614502,13.24058,0.121500215,1620000000000 ,1620000000000 ,1620000000000 ,1616812437570 -1616812437595 ,112.5720127,26.88036514,61.6375618,201.1868636,203.4852704,13.236779,0.121468892,1620000000000 ,1620000000000 ,1620000000000 ,1616812437580 -1616812437606 ,112.5720122,26.88036403,61.63524628,201.221479,203.5232068,13.233213,0.121444765,1620000000000 ,1620000000000 ,1620000000000 ,1616812437590 -1616812437615 ,112.5720117,26.88036291,61.63293839,201.2580069,203.5600387,13.232626,0.121437082,1620000000000 ,1620000000000 ,1620000000000 ,1616812437600 -1616812437627 ,112.5720112,26.8803618,61.6305809,201.2947806,203.5909916,13.232671,0.121441803,1620000000000 ,1620000000000 ,1620000000000 ,1616812437610 -1616812437636 ,112.5720107,26.88036069,61.62817383,201.3299424,203.6228645,13.233372,0.121446727,1620000000000 ,1620000000000 ,1620000000000 ,1616812437620 -1616812437648 ,112.5720103,26.88035958,61.62573242,201.3655141,203.6494159,13.234506,0.121455694,1620000000000 ,1620000000000 ,1620000000000 ,1616812437630 -1616812437657 ,112.5720098,26.88035846,61.62329102,201.4029162,203.6946098,13.232773,0.121456191,1620000000000 ,1620000000000 ,1620000000000 ,1616812437640 -1616812437670 ,112.5720093,26.88035735,61.62082291,201.4425859,203.7348186,13.2334,0.121464128,1620000000000 ,1620000000000 ,1620000000000 ,1616812437650 -1616812437677 ,112.5720088,26.88035624,61.61829758,201.4799061,203.771259,13.227862,0.121420724,1620000000000 ,1620000000000 ,1620000000000 ,1616812437660 -1616812437689 ,112.5720083,26.88035513,61.6157341,201.5150679,203.8059748,13.224606,0.12139656,1620000000000 ,1620000000000 ,1620000000000 ,1616812437670 -1616812437696 ,112.5720078,26.88035402,61.61317062,201.5477981,203.8446437,13.224485,0.121394696,1620000000000 ,1620000000000 ,1620000000000 ,1616812437680 -1616812437706 ,112.5720073,26.88035291,61.61055374,201.5842987,203.8981706,13.228147,0.12141421,1620000000000 ,1620000000000 ,1620000000000 ,1616812437690 -1616812437716 ,112.5720068,26.8803518,61.60786438,201.6208265,203.9646571,13.227825,0.121432577,1620000000000 ,1620000000000 ,1620000000000 ,1616812437700 -1616812437727 ,112.5720063,26.88035069,61.6052475,201.6551141,204.0164248,13.222756,0.121417747,1620000000000 ,1620000000000 ,1620000000000 ,1616812437710 -1616812437738 ,112.5720058,26.88034958,61.60285568,201.6886913,204.0320996,13.21886,0.12138711,1620000000000 ,1620000000000 ,1620000000000 ,1616812437720 -1616812437747 ,112.5720053,26.88034847,61.6006012,201.722569,204.0667931,13.215324,0.121362071,1620000000000 ,1620000000000 ,1620000000000 ,1616812437730 -1616812437757 ,112.5720048,26.88034737,61.59832001,201.7577308,204.107854,13.215009,0.121357091,1620000000000 ,1620000000000 ,1620000000000 ,1616812437740 -1616812437766 ,112.5720043,26.88034626,61.59594727,201.7886033,204.1598723,13.213194,0.121352971,1620000000000 ,1620000000000 ,1620000000000 ,1616812437750 -1616812437783 ,112.5720038,26.88034515,61.59356689,201.8194211,204.2020005,13.212115,0.121344619,1620000000000 ,1620000000000 ,1620000000000 ,1616812437760 -1616812437788 ,112.5720033,26.88034405,61.59123611,201.852206,204.2295726,13.211553,0.121344445,1620000000000 ,1620000000000 ,1620000000000 ,1616812437770 -1616812437797 ,112.5720029,26.88034294,61.58896255,201.8836522,204.258209,13.211571,0.121352441,1620000000000 ,1620000000000 ,1620000000000 ,1616812437780 -1616812437807 ,112.5720024,26.88034183,61.58673859,201.9172567,204.2988552,13.20794,0.12133831,1620000000000 ,1620000000000 ,1620000000000 ,1616812437790 -1616812437817 ,112.5720019,26.88034073,61.58456802,201.9491127,204.3365016,13.205489,0.121323384,1620000000000 ,1620000000000 ,1620000000000 ,1616812437800 -1616812437827 ,112.5720014,26.88033962,61.58242416,201.9834549,204.3654939,13.201938,0.121297802,1620000000000 ,1620000000000 ,1620000000000 ,1616812437810 -1616812437842 ,112.5720009,26.88033852,61.58023453,202.0186167,204.4024656,13.20316,0.12129744,1620000000000 ,1620000000000 ,1620000000000 ,1616812437820 -1616812437848 ,112.5720003,26.88033741,61.57796097,202.0535873,204.4215673,13.20514,0.121317392,1620000000000 ,1620000000000 ,1620000000000 ,1616812437830 -1616812437858 ,112.5719998,26.88033631,61.57564163,202.0878749,204.4509413,13.202924,0.121314559,1620000000000 ,1620000000000 ,1620000000000 ,1616812437840 -1616812437869 ,112.5719993,26.88033521,61.57337952,202.119485,204.4863468,13.198293,0.121284313,1620000000000 ,1620000000000 ,1620000000000 ,1616812437850 -1616812437879 ,112.5719988,26.8803341,61.57117844,202.1531442,204.5191407,13.19433,0.121255273,1620000000000 ,1620000000000 ,1620000000000 ,1616812437860 -1616812437888 ,112.5719983,26.880333,61.56898499,202.1882786,204.558813,13.190996,0.121229071,1620000000000 ,1620000000000 ,1620000000000 ,1616812437870 -1616812437899 ,112.5719978,26.8803319,61.56677246,202.2244786,204.6074892,13.191309,0.121230775,1620000000000 ,1620000000000 ,1620000000000 ,1616812437880 -1616812437908 ,112.5719973,26.8803308,61.56454849,202.2566079,204.638992,13.191646,0.121242518,1620000000000 ,1620000000000 ,1620000000000 ,1616812437890 -1616812437918 ,112.5719968,26.88032969,61.5623436,202.2925073,204.6689648,13.188671,0.121225682,1620000000000 ,1620000000000 ,1620000000000 ,1616812437900 -1616812437929 ,112.5719963,26.88032859,61.56018066,202.3275052,204.6955579,13.188908,0.121233846,1620000000000 ,1620000000000 ,1620000000000 ,1616812437910 -1616812437942 ,112.5719958,26.88032749,61.55802917,202.3629949,204.7206188,13.184498,0.121209242,1620000000000 ,1620000000000 ,1620000000000 ,1616812437920 -1616812437951 ,112.5719953,26.88032639,61.55590057,202.3987304,204.7530925,13.182005,0.121188111,1620000000000 ,1620000000000 ,1620000000000 ,1616812437930 -1616812437959 ,112.5719948,26.88032529,61.55380249,202.436597,204.7766572,13.180481,0.121178196,1620000000000 ,1620000000000 ,1620000000000 ,1616812437940 -1616812437973 ,112.5719943,26.88032419,61.5516777,202.4746002,204.8090005,13.178461,0.12116577,1620000000000 ,1620000000000 ,1620000000000 ,1616812437950 -1616812437980 ,112.5719938,26.88032309,61.54951859,202.5123848,204.851528,13.178311,0.121166563,1620000000000 ,1620000000000 ,1620000000000 ,1616812437960 -1616812438001 ,112.5719933,26.88032199,61.54730606,202.550306,204.8936242,13.1770735,0.121164548,1620000000000 ,1620000000000 ,1620000000000 ,1616812437970 -1616812438002 ,112.5719928,26.88032089,61.54506302,202.5889375,204.9282446,13.176935,0.121163073,1620000000000 ,1620000000000 ,1620000000000 ,1616812437980 -1616812438010 ,112.5719922,26.8803198,61.54272461,202.6250829,204.9651421,13.175925,0.121154049,1620000000000 ,1620000000000 ,1620000000000 ,1616812437990 -1616812438019 ,112.5719917,26.8803187,61.54026031,202.6614468,205.0040989,13.17518,0.121151181,1620000000000 ,1620000000000 ,1620000000000 ,1616812438000 -1616812438029 ,112.5719912,26.8803176,61.53769684,202.6954612,205.0471391,13.173668,0.121138832,1620000000000 ,1620000000000 ,1620000000000 ,1616812438010 -1616812438039 ,112.5719907,26.8803165,61.53507614,202.7301312,205.0911355,13.172144,0.121126969,1620000000000 ,1620000000000 ,1620000000000 ,1616812438020 -1616812438052 ,112.5719902,26.88031541,61.53236008,202.7672601,205.1167118,13.172567,0.121127969,1620000000000 ,1620000000000 ,1620000000000 ,1616812438030 -1616812438060 ,112.5719897,26.88031431,61.52951431,202.8032962,205.1556928,13.169535,0.121097926,1620000000000 ,1620000000000 ,1620000000000 ,1616812438040 -1616812438070 ,112.5719892,26.88031321,61.52658081,202.8399607,205.2148323,13.172754,0.121130898,1620000000000 ,1620000000000 ,1620000000000 ,1616812438050 -1616812438078 ,112.5719886,26.88031212,61.52360535,202.8764339,205.2550028,13.171667,0.121122771,1620000000000 ,1620000000000 ,1620000000000 ,1616812438060 -1616812438088 ,112.5719881,26.88031102,61.52064514,202.9128251,205.3148693,13.172026,0.121140553,1620000000000 ,1620000000000 ,1620000000000 ,1616812438070 -1616812438099 ,112.5719876,26.88030993,61.51772308,202.9488066,205.3551573,13.165919,0.121103164,1620000000000 ,1620000000000 ,1620000000000 ,1616812438080 -1616812438112 ,112.5719871,26.88030884,61.51486588,202.9849519,205.3854234,13.161979,0.121071375,1620000000000 ,1620000000000 ,1620000000000 ,1616812438090 -1616812438121 ,112.5719866,26.88030774,61.51202011,203.0206328,205.4175499,13.163099,0.121073228,1620000000000 ,1620000000000 ,1620000000000 ,1616812438100 -1616812438130 ,112.571986,26.88030665,61.50910187,203.0517238,205.4500111,13.164412,0.12108582,1620000000000 ,1620000000000 ,1620000000000 ,1616812438110 -1616812438141 ,112.5719855,26.88030556,61.50615692,203.0831427,205.5065219,13.164636,0.121095096,1620000000000 ,1620000000000 ,1620000000000 ,1616812438120 -1616812438150 ,112.571985,26.88030446,61.50323486,203.1176761,205.5478289,13.162778,0.121094435,1620000000000 ,1620000000000 ,1620000000000 ,1616812438130 -1616812438159 ,112.5719845,26.88030337,61.50036621,203.1527014,205.5904521,13.159929,0.121081808,1620000000000 ,1620000000000 ,1620000000000 ,1616812438140 -1616812438170 ,112.571984,26.88030228,61.4975853,203.1885735,205.6174921,13.155819,0.121047773,1620000000000 ,1620000000000 ,1620000000000 ,1616812438150 -1616812438182 ,112.5719834,26.88030119,61.49485397,203.2243637,205.6374583,13.1543045,0.121036271,1620000000000 ,1620000000000 ,1620000000000 ,1616812438160 -1616812438194 ,112.5719829,26.8803001,61.49211884,203.2617385,205.6767598,13.154765,0.121039107,1620000000000 ,1620000000000 ,1620000000000 ,1616812438170 -1616812438203 ,112.5719824,26.88029901,61.48932648,203.2971735,205.7252318,13.155355,0.121052062,1620000000000 ,1620000000000 ,1620000000000 ,1616812438180 -1616812438216 ,112.5719819,26.88029792,61.48655701,203.330177,205.7785434,13.151665,0.12103945,1620000000000 ,1620000000000 ,1620000000000 ,1616812438190 -1616812438220 ,112.5719813,26.88029683,61.4839592,203.3595468,206.0112804,13.158544,0.121216733,1620000000000 ,1620000000000 ,1620000000000 ,1616812438200 -1616812438256 ,112.5719808,26.88029574,61.48152542,203.3937797,206.3519813,13.159333,0.121557607,1620000000000 ,1620000000000 ,1620000000000 ,1616812438210 -1616812438259 ,112.5719802,26.88029465,61.47914124,203.4266466,206.3889685,13.157994,0.121563605,1620000000000 ,1620000000000 ,1620000000000 ,1616812438220 -1616812438261 ,112.5719797,26.88029356,61.47672653,203.4616445,206.4415233,13.156795,0.121557109,1620000000000 ,1620000000000 ,1620000000000 ,1616812438230 -1616812438262 ,112.5719792,26.88029247,61.47427368,203.496779,206.4851936,13.155431,0.121553425,1620000000000 ,1620000000000 ,1620000000000 ,1616812438240 -1616812438272 ,112.5719786,26.88029139,61.47186661,203.5301649,206.505559,13.150203,0.121519144,1620000000000 ,1620000000000 ,1620000000000 ,1616812438250 -1616812438281 ,112.5719781,26.8802903,61.46956635,203.5637695,206.5247082,13.146937,0.121494828,1620000000000 ,1620000000000 ,1620000000000 ,1616812438260 -1616812438291 ,112.5719775,26.88028921,61.46733475,203.6000241,206.5694355,13.146461,0.121490547,1620000000000 ,1620000000000 ,1620000000000 ,1616812438270 -1616812438301 ,112.571977,26.88028813,61.46511459,203.6369891,206.6182103,13.148044,0.121510188,1620000000000 ,1620000000000 ,1620000000000 ,1616812438280 -1616812438312 ,112.5719764,26.88028704,61.46288681,203.673353,206.649059,13.150281,0.121541415,1620000000000 ,1620000000000 ,1620000000000 ,1616812438290 -1616812438322 ,112.5719759,26.88028595,61.46070099,203.7072854,206.6723922,13.149272,0.121545888,1620000000000 ,1620000000000 ,1620000000000 ,1616812438300 -1616812438333 ,112.5719754,26.88028487,61.45853806,203.7412997,206.7070562,13.146322,0.121527642,1620000000000 ,1620000000000 ,1620000000000 ,1616812438310 -1616812438343 ,112.5719748,26.88028378,61.45633316,203.7752868,206.7435571,13.141422,0.121494875,1620000000000 ,1620000000000 ,1620000000000 ,1616812438320 -1616812438357 ,112.5719743,26.8802827,61.45408249,203.8084815,206.7876969,13.137573,0.12146207,1620000000000 ,1620000000000 ,1620000000000 ,1616812438330 -1616812438364 ,112.5719737,26.88028161,61.45188522,203.8423592,206.8277756,13.135097,0.121446125,1620000000000 ,1620000000000 ,1620000000000 ,1616812438340 -1616812438373 ,112.5719732,26.88028053,61.44977951,203.8772478,206.8508795,13.133273,0.121435555,1620000000000 ,1620000000000 ,1620000000000 ,1616812438350 -1616812438384 ,112.5719726,26.88027945,61.44769287,203.9130107,206.8746459,13.134845,0.121447592,1620000000000 ,1620000000000 ,1620000000000 ,1616812438360 -1616812438393 ,112.5719721,26.88027836,61.44555664,203.9467245,206.9125553,13.134451,0.121450416,1620000000000 ,1620000000000 ,1620000000000 ,1616812438370 -1616812438401 ,112.5719715,26.88027728,61.44340897,203.9807935,206.965062,13.13575,0.121473249,1620000000000 ,1620000000000 ,1620000000000 ,1616812438380 -1616812438412 ,112.571971,26.8802762,61.4413414,204.0140429,207.0078395,13.133458,0.121471743,1620000000000 ,1620000000000 ,1620000000000 ,1616812438390 -1616812438422 ,112.5719704,26.88027512,61.43935776,204.04915,207.0416625,13.12787,0.121442567,1620000000000 ,1620000000000 ,1620000000000 ,1616812438400 -1616812438434 ,112.5719699,26.88027404,61.43739319,204.0840113,207.0659002,13.127282,0.121425033,1620000000000 ,1620000000000 ,1620000000000 ,1616812438410 -1616812438448 ,112.5719693,26.88027296,61.4353447,204.1216047,207.1125001,13.118376,0.121372884,1620000000000 ,1620000000000 ,1620000000000 ,1616812438430 -1616812438455 ,112.5719682,26.8802708,61.43103027,204.1885132,207.172523,13.121161,0.242771729,1620000000000 ,1620000000000 ,1620000000000 ,1616812438440 -1616812438469 ,112.5719676,26.88026972,61.42889404,204.2224183,207.0327963,13.122325,0.121181556,1620000000000 ,1620000000000 ,1620000000000 ,1616812438450 -1616812438474 ,112.5719671,26.88026864,61.42679977,204.2551212,206.8750029,13.118629,0.120968722,1620000000000 ,1620000000000 ,1620000000000 ,1616812438460 -1616812438484 ,112.5719665,26.88026756,61.42479706,204.287387,206.8991801,13.111032,0.120911347,1620000000000 ,1620000000000 ,1620000000000 ,1616812438470 -1616812438494 ,112.571966,26.88026648,61.4228096,204.3188879,206.9227493,13.109272,0.120878333,1620000000000 ,1620000000000 ,1620000000000 ,1616812438480 -1616812438506 ,112.5719655,26.8802654,61.42060471,204.3545414,206.9535137,13.11221,0.120887686,1620000000000 ,1620000000000 ,1620000000000 ,1616812438490 -1616812438515 ,112.5719649,26.88026433,61.4180336,204.3905502,206.9986518,13.118514,0.120932344,1620000000000 ,1620000000000 ,1620000000000 ,1616812438500 -1616812438525 ,112.5719644,26.88026325,61.41520691,204.4247011,207.0487177,13.120363,0.120955333,1620000000000 ,1620000000000 ,1620000000000 ,1616812438510 -1616812438541 ,112.5719638,26.88026217,61.41241074,204.4546447,207.0728018,13.11561,0.120927369,1620000000000 ,1620000000000 ,1620000000000 ,1616812438520 -1616812438552 ,112.5719633,26.8802611,61.40982437,204.4899431,207.0895557,13.107501,0.120878135,1620000000000 ,1620000000000 ,1620000000000 ,1616812438530 -1616812438557 ,112.5719627,26.88026002,61.40739822,204.5259246,207.1228326,13.101941,0.120831746,1620000000000 ,1620000000000 ,1620000000000 ,1616812438540 -1616812438567 ,112.5719622,26.88025895,61.40500641,204.561824,207.1723914,13.100366,0.120810359,1620000000000 ,1620000000000 ,1620000000000 ,1616812438550 -1616812438576 ,112.5719616,26.88025787,61.4025116,204.5974776,207.2112843,13.103543,0.12083319,1620000000000 ,1620000000000 ,1620000000000 ,1616812438560 -1616812438585 ,112.571961,26.8802568,61.3998909,204.6308909,207.2364819,13.106182,0.12085692,1620000000000 ,1620000000000 ,1620000000000 ,1616812438570 -1616812438604 ,112.5719605,26.88025572,61.39723587,204.6638397,207.2719515,13.106999,0.120872245,1620000000000 ,1620000000000 ,1620000000000 ,1616812438580 -1616812438609 ,112.5719599,26.88025465,61.39462662,204.6944936,207.3101432,13.108124,0.120887982,1620000000000 ,1620000000000 ,1620000000000 ,1616812438590 -1616812438618 ,112.5719594,26.88025358,61.39207077,204.7274698,207.3492417,13.103031,0.120872899,1620000000000 ,1620000000000 ,1620000000000 ,1616812438600 -1616812438627 ,112.5719588,26.8802525,61.38956451,204.7596263,207.4034534,13.094832,0.120809531,1620000000000 ,1620000000000 ,1620000000000 ,1616812438610 -1616812438637 ,112.5719583,26.88025143,61.38713074,204.7915643,207.4374826,13.089929,0.120766708,1620000000000 ,1620000000000 ,1620000000000 ,1616812438620 -1616812438646 ,112.5719577,26.88025036,61.38473511,204.8234476,207.4701031,13.086998,0.120742271,1620000000000 ,1620000000000 ,1620000000000 ,1616812438630 -1616812438656 ,112.5719572,26.88024929,61.38228989,204.8564511,207.5169143,13.087601,0.120745601,1620000000000 ,1620000000000 ,1620000000000 ,1616812438640 -1616812438666 ,112.5719566,26.88024822,61.37979507,204.8904381,207.5717744,13.088151,0.120758076,1620000000000 ,1620000000000 ,1620000000000 ,1616812438650 -1616812438677 ,112.571956,26.88024715,61.37738419,204.920409,207.6195581,13.088657,0.120772316,1620000000000 ,1620000000000 ,1620000000000 ,1616812438660 -1616812438686 ,112.5719555,26.88024608,61.37516403,204.9512814,207.6589904,13.087267,0.120783689,1620000000000 ,1620000000000 ,1620000000000 ,1616812438670 -1616812438699 ,112.5719549,26.88024501,61.37308502,204.9830008,207.6891091,13.086769,0.120788864,1620000000000 ,1620000000000 ,1620000000000 ,1616812438680 -1616812438720 ,112.5719544,26.88024394,61.3710556,205.011469,207.7179378,13.081474,0.120763177,1620000000000 ,1620000000000 ,1620000000000 ,1616812438690 -1616812438722 ,112.5719538,26.88024287,61.36902618,205.0397733,207.7468154,13.076257,0.120715326,1620000000000 ,1620000000000 ,1620000000000 ,1616812438700 -1616812438728 ,112.5719532,26.8802418,61.36698151,205.0679957,207.7666619,13.072046,0.120675091,1620000000000 ,1620000000000 ,1620000000000 ,1616812438710 -1616812438737 ,112.5719527,26.88024074,61.36494446,205.0967644,207.7923506,13.069715,0.120655594,1620000000000 ,1620000000000 ,1620000000000 ,1616812438720 -1616812438748 ,112.5719521,26.88023967,61.36295319,205.1290303,207.8271061,13.069499,0.120658361,1620000000000 ,1620000000000 ,1620000000000 ,1616812438730 -1616812438758 ,112.5719515,26.8802386,61.36101151,205.158482,207.8583393,13.071646,0.120679303,1620000000000 ,1620000000000 ,1620000000000 ,1616812438740 -1616812438767 ,112.571951,26.88023754,61.3591156,205.1877426,207.9012022,13.070331,0.120686822,1620000000000 ,1620000000000 ,1620000000000 ,1616812438750 -1616812438779 ,112.5719504,26.88023647,61.35723877,205.217249,207.9362904,13.068844,0.120681635,1620000000000 ,1620000000000 ,1620000000000 ,1616812438760 -1616812438787 ,112.5719498,26.8802354,61.35535049,205.2457445,207.9712308,13.065982,0.120659013,1620000000000 ,1620000000000 ,1620000000000 ,1616812438770 -1616812438797 ,112.5719493,26.88023434,61.35343933,205.274404,207.9933502,13.062886,0.120641548,1620000000000 ,1620000000000 ,1620000000000 ,1616812438780 -1616812438808 ,112.5719487,26.88023327,61.35145187,205.3024897,208.0161866,13.059014,0.120598995,1620000000000 ,1620000000000 ,1620000000000 ,1616812438790 -1616812438817 ,112.5719481,26.88023221,61.3493042,205.3324606,208.0066384,13.059758,0.120603119,1620000000000 ,1620000000000 ,1620000000000 ,1616812438800 -1616812438828 ,112.5719476,26.88023115,61.34696579,205.3607922,208.0339709,13.058987,0.120568355,1620000000000 ,1620000000000 ,1620000000000 ,1616812438810 -1616812438838 ,112.571947,26.88023008,61.3446312,205.3833865,208.078634,13.059777,0.120596052,1620000000000 ,1620000000000 ,1620000000000 ,1616812438820 -1616812438858 ,112.5719464,26.88022902,61.34240723,205.4081937,208.1103972,13.059929,0.120612352,1620000000000 ,1620000000000 ,1620000000000 ,1616812438830 -1616812438861 ,112.5719459,26.88022795,61.340271,205.4354872,208.1358804,13.056792,0.12060184,1620000000000 ,1620000000000 ,1620000000000 ,1616812438840 -1616812438868 ,112.5719453,26.88022689,61.33826447,205.4624801,208.1565957,13.048107,0.120530199,1620000000000 ,1620000000000 ,1620000000000 ,1616812438850 -1616812438877 ,112.5719447,26.88022583,61.33638,205.4890359,208.1753647,13.04506,0.120499513,1620000000000 ,1620000000000 ,1620000000000 ,1616812438860 -1616812438888 ,112.5719442,26.88022477,61.33446884,205.5153731,208.1993775,13.048854,0.120528261,1620000000000 ,1620000000000 ,1620000000000 ,1616812438870 -1616812438903 ,112.5719436,26.8802237,61.33237076,205.5413824,208.238157,13.054089,0.120572505,1620000000000 ,1620000000000 ,1620000000000 ,1616812438880 -1616812438913 ,112.571943,26.88022264,61.33013153,205.5629658,208.3092181,13.052456,0.120578135,1620000000000 ,1620000000000 ,1620000000000 ,1616812438890 -1616812438919 ,112.5719424,26.88022158,61.32799149,205.5837023,208.3407118,13.045681,0.120536355,1620000000000 ,1620000000000 ,1620000000000 ,1616812438900 -1616812438929 ,112.5719419,26.88022052,61.32606506,205.6072528,208.3519372,13.040724,0.120502254,1620000000000 ,1620000000000 ,1620000000000 ,1616812438910 -1616812438939 ,112.5719413,26.88021946,61.3242569,205.6280985,208.3745243,13.0393305,0.120494356,1620000000000 ,1620000000000 ,1620000000000 ,1616812438920 -1616812438949 ,112.5719407,26.8802184,61.32241821,205.64807,208.4039321,13.039142,0.120489935,1620000000000 ,1620000000000 ,1620000000000 ,1616812438930 -1616812438962 ,112.5719402,26.88021734,61.32048798,205.6677409,208.4363297,13.038955,0.120492804,1620000000000 ,1620000000000 ,1620000000000 ,1616812438940 -1616812438971 ,112.5719396,26.88021628,61.31850433,205.6863737,208.4589093,13.037517,0.120485621,1620000000000 ,1620000000000 ,1620000000000 ,1616812438950 -1616812438980 ,112.571939,26.88021522,61.31648636,205.706673,208.4671493,13.037057,0.120481395,1620000000000 ,1620000000000 ,1620000000000 ,1616812438960 -1616812438996 ,112.5719384,26.88021416,61.31448364,205.7241856,208.4759237,13.03444,0.120465862,1620000000000 ,1620000000000 ,1620000000000 ,1616812438970 -1616812439001 ,112.5719379,26.88021311,61.31254578,205.7427911,208.4913182,13.036369,0.120479869,1620000000000 ,1620000000000 ,1620000000000 ,1616812438980 -1616812439011 ,112.5719373,26.88021205,61.3106308,205.7631177,208.5196534,13.033406,0.120471122,1620000000000 ,1620000000000 ,1620000000000 ,1616812438990 -1616812439020 ,112.5719367,26.88021099,61.30866623,205.7832804,208.5461283,13.028212,0.120432079,1620000000000 ,1620000000000 ,1620000000000 ,1616812439000 -1616812439031 ,112.5719361,26.88020993,61.3066597,205.8025962,208.5676211,13.024465,0.120398677,1620000000000 ,1620000000000 ,1620000000000 ,1616812439010 -1616812439044 ,112.5719356,26.88020887,61.30464172,205.8209284,208.5751498,13.020749,0.120363672,1620000000000 ,1620000000000 ,1620000000000 ,1616812439020 -1616812439051 ,112.571935,26.88020782,61.3025856,205.8392333,208.5848971,13.020392,0.1203576,1620000000000 ,1620000000000 ,1620000000000 ,1616812439030 -1616812439062 ,112.5719344,26.88020676,61.30046463,205.8569099,208.6013587,13.022459,0.120372156,1620000000000 ,1620000000000 ,1620000000000 ,1616812439040 -1616812439072 ,112.5719338,26.8802057,61.29831696,205.8738487,208.6242038,13.021225,0.120372245,1620000000000 ,1620000000000 ,1620000000000 ,1616812439050 -1616812439081 ,112.5719333,26.88020465,61.29622269,205.8879462,208.6427117,13.019015,0.120360851,1620000000000 ,1620000000000 ,1620000000000 ,1616812439060 -1616812439091 ,112.5719327,26.88020359,61.29412842,205.9025082,208.6539808,13.016295,0.120341232,1620000000000 ,1620000000000 ,1620000000000 ,1616812439070 -1616812439102 ,112.5719321,26.88020254,61.29196167,205.9175893,208.6624876,13.013275,0.1203105,1620000000000 ,1620000000000 ,1620000000000 ,1616812439080 -1616812439112 ,112.5719315,26.88020148,61.28969955,205.9330255,208.6796285,13.010492,0.120282932,1620000000000 ,1620000000000 ,1620000000000 ,1616812439090 -1616812439125 ,112.5719309,26.88020043,61.28733826,205.9466585,208.6957399,13.009724,0.120269627,1620000000000 ,1620000000000 ,1620000000000 ,1616812439100 -1616812439132 ,112.5719304,26.88019937,61.28488922,205.9609473,208.7108684,13.00882,0.120258692,1620000000000 ,1620000000000 ,1620000000000 ,1616812439110 -1616812439142 ,112.5719298,26.88019832,61.28234863,205.9754819,208.7212857,13.008928,0.120256315,1620000000000 ,1620000000000 ,1620000000000 ,1616812439120 -1616812439152 ,112.5719292,26.88019726,61.27974319,205.9852628,208.7266464,13.008729,0.120251945,1620000000000 ,1620000000000 ,1620000000000 ,1616812439130 -1616812439162 ,112.5719286,26.88019621,61.27708435,205.994224,208.7461769,13.007193,0.120238816,1620000000000 ,1620000000000 ,1620000000000 ,1616812439140 -1616812439174 ,112.5719281,26.88019515,61.27436829,206.0047971,208.7654994,13.005072,0.120220332,1620000000000 ,1620000000000 ,1620000000000 ,1616812439150 -1616812439184 ,112.5719275,26.8801941,61.27159119,206.0150151,208.7763681,13.002021,0.120193151,1620000000000 ,1620000000000 ,1620000000000 ,1616812439160 -1616812439195 ,112.5719269,26.88019305,61.26878357,206.0259161,208.7902059,12.999228,0.120167741,1620000000000 ,1620000000000 ,1620000000000 ,1616812439170 -1616812439202 ,112.5719263,26.88019199,61.2658844,206.0370902,208.7957802,13.001249,0.120154968,1620000000000 ,1620000000000 ,1620000000000 ,1616812439180 -1616812439223 ,112.5719257,26.88019094,61.26278687,206.0490294,208.8141456,12.999048,0.120157405,1620000000000 ,1620000000000 ,1620000000000 ,1616812439190 -1616812439230 ,112.5719252,26.88018989,61.25949097,206.0570617,208.8385892,13.002163,0.120151641,1620000000000 ,1620000000000 ,1620000000000 ,1616812439200 -1616812439234 ,112.5719246,26.88018885,61.25566101,206.0540838,209.2390205,12.976046,0.119423117,1620000000000 ,1620000000000 ,1620000000000 ,1616812439210 -1616812439244 ,112.571924,26.88018781,61.25184631,206.061515,209.319315,12.975378,0.11931792,1620000000000 ,1620000000000 ,1620000000000 ,1616812439230 -1616812439255 ,112.5719234,26.88018677,61.24811172,206.0704216,209.3252971,12.973897,0.119319135,1620000000000 ,1620000000000 ,1620000000000 ,1616812439240 -1616812439265 ,112.5719228,26.88018573,61.24444962,206.0783719,209.3275456,12.968018,0.119268304,1620000000000 ,1620000000000 ,1620000000000 ,1616812439250 -1616812439275 ,112.5719217,26.88018365,61.23733521,206.0963216,209.3224955,12.962881,0.238414932,1620000000000 ,1620000000000 ,1620000000000 ,1616812439260 -1616812439285 ,112.5719211,26.88018261,61.23372269,206.1069494,209.343796,12.96586,0.119228731,1620000000000 ,1620000000000 ,1620000000000 ,1616812439270 -1616812439294 ,112.5719205,26.88018157,61.23009491,206.1145992,209.37545,12.967103,0.119248381,1620000000000 ,1620000000000 ,1620000000000 ,1616812439280 -1616812439303 ,112.5719205,26.88018157,61.23009491,206.1145992,-400,12.967103,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812439290 -1616812439318 ,112.5719193,26.88017949,61.22327805,206.1306638,209.3708572,12.958499,0.2384216,1620000000000 ,1620000000000 ,1620000000000 ,1616812439300 -1616812439328 ,112.5719187,26.88017845,61.22006226,206.1406359,209.3553412,12.954295,0.119154576,1620000000000 ,1620000000000 ,1620000000000 ,1616812439310 -1616812439336 ,112.5719181,26.88017742,61.21692276,206.1544056,209.3619735,12.951214,0.119123932,1620000000000 ,1620000000000 ,1620000000000 ,1616812439320 -1616812439348 ,112.5719176,26.88017638,61.21385193,206.1655251,209.3664652,12.950095,0.119111398,1620000000000 ,1620000000000 ,1620000000000 ,1616812439330 -1616812439355 ,112.571917,26.88017534,61.21087646,206.1771091,209.3718764,12.948276,0.119106393,1620000000000 ,1620000000000 ,1620000000000 ,1616812439340 -1616812439365 ,112.5719164,26.8801743,61.20804977,206.1888024,209.377415,12.945016,0.119084972,1620000000000 ,1620000000000 ,1620000000000 ,1616812439350 -1616812439375 ,112.5719158,26.88017326,61.2053566,206.1980915,209.3791847,12.943772,0.119074184,1620000000000 ,1620000000000 ,1620000000000 ,1616812439360 -1616812439387 ,112.5719152,26.88017223,61.20276642,206.2099214,209.3968387,12.93916,0.119049731,1620000000000 ,1620000000000 ,1620000000000 ,1616812439370 -1616812439397 ,112.5719146,26.88017119,61.20025253,206.22309,209.4215683,12.935464,0.119018087,1620000000000 ,1620000000000 ,1620000000000 ,1616812439380 -1616812439406 ,112.5719141,26.88017015,61.19786453,206.2371055,209.4290112,12.931085,0.11898974,1620000000000 ,1620000000000 ,1620000000000 ,1616812439390 -1616812439415 ,112.5719135,26.88016912,61.19563675,206.2516675,209.4314953,12.9278555,0.118965586,1620000000000 ,1620000000000 ,1620000000000 ,1616812439400 -1616812439426 ,112.5719129,26.88016808,61.19354248,206.2662021,209.4407906,12.925854,0.118950928,1620000000000 ,1620000000000 ,1620000000000 ,1616812439410 -1616812439435 ,112.5719123,26.88016705,61.19151306,206.2784965,209.4628567,12.9217005,0.118928705,1620000000000 ,1620000000000 ,1620000000000 ,1616812439420 -1616812439446 ,112.5719117,26.88016601,61.18953705,206.2908181,209.5026986,12.918052,0.118903482,1620000000000 ,1620000000000 ,1620000000000 ,1616812439430 -1616812439457 ,112.5719111,26.88016498,61.18758392,206.3042326,209.5239562,12.9164505,0.118888575,1620000000000 ,1620000000000 ,1620000000000 ,1616812439440 -1616812439467 ,112.5719105,26.88016394,61.18561935,206.3186033,209.5489581,12.916159,0.118887028,1620000000000 ,1620000000000 ,1620000000000 ,1616812439450 -1616812439480 ,112.57191,26.8801629,61.18405914,206.3332472,209.2394119,12.916004,0.119501974,1620000000000 ,1620000000000 ,1620000000000 ,1616812439460 -1616812439491 ,112.5719094,26.88016186,61.18247604,206.3457602,209.2274473,12.914141,0.119486117,1620000000000 ,1620000000000 ,1620000000000 ,1616812439470 -1616812439497 ,112.5719088,26.88016081,61.18089676,206.3572622,209.2345139,12.909873,0.119453267,1620000000000 ,1620000000000 ,1620000000000 ,1616812439480 -1616812439507 ,112.5719082,26.88015977,61.1792984,206.3708406,209.2612236,12.907134,0.119429445,1620000000000 ,1620000000000 ,1620000000000 ,1616812439490 -1616812439516 ,112.5719076,26.88015873,61.17765427,206.3878888,209.2915269,12.904265,0.119402922,1620000000000 ,1620000000000 ,1620000000000 ,1616812439500 -1616812439528 ,112.571907,26.88015769,61.1759758,206.4064122,209.2990481,12.903167,0.119391536,1620000000000 ,1620000000000 ,1620000000000 ,1616812439510 -1616812439537 ,112.5719065,26.88015665,61.174263,206.4228593,209.305615,12.902759,0.119384434,1620000000000 ,1620000000000 ,1620000000000 ,1616812439520 -1616812439549 ,112.5719059,26.88015561,61.17248917,206.4407544,209.313698,12.9023075,0.119377435,1620000000000 ,1620000000000 ,1620000000000 ,1616812439530 -1616812439557 ,112.5719053,26.88015457,61.17062759,206.459114,209.331947,12.899713,0.119357741,1620000000000 ,1620000000000 ,1620000000000 ,1616812439540 -1616812439566 ,112.5719047,26.88015353,61.16870499,206.4789488,209.3538689,12.896184,0.119330086,1620000000000 ,1620000000000 ,1620000000000 ,1616812439550 -1616812439579 ,112.5719041,26.88015249,61.16678238,206.4996853,209.3674526,12.894968,0.119307516,1620000000000 ,1620000000000 ,1620000000000 ,1616812439560 -1616812439588 ,112.5719035,26.88015145,61.16489792,206.5167881,209.3701029,12.889815,0.119286522,1620000000000 ,1620000000000 ,1620000000000 ,1616812439570 -1616812439598 ,112.5719029,26.88015041,61.16300583,206.5324975,209.3743929,12.888837,0.119249595,1620000000000 ,1620000000000 ,1620000000000 ,1616812439580 -1616812439611 ,112.5719024,26.88014937,61.16108704,206.5502014,209.4050233,12.8860445,0.119238584,1620000000000 ,1620000000000 ,1620000000000 ,1616812439590 -1616812439620 ,112.5719018,26.88014833,61.15913391,206.5708012,209.452746,12.88604,0.119239126,1620000000000 ,1620000000000 ,1620000000000 ,1616812439600 -1616812439631 ,112.5719012,26.88014729,61.15716553,206.5937233,209.4664776,12.884866,0.119235046,1620000000000 ,1620000000000 ,1620000000000 ,1616812439610 -1616812439641 ,112.5719006,26.88014626,61.15524292,206.6163176,209.4678901,12.880104,0.119193954,1620000000000 ,1620000000000 ,1620000000000 ,1616812439620 -1616812439651 ,112.5719,26.88014522,61.15344238,206.6405784,209.4788501,12.874882,0.119153011,1620000000000 ,1620000000000 ,1620000000000 ,1616812439630 -1616812439661 ,112.5718994,26.88014418,61.15167618,206.6654676,209.501678,12.87677,0.119164943,1620000000000 ,1620000000000 ,1620000000000 ,1616812439640 -1616812439670 ,112.5718988,26.88014315,61.1498642,206.6881712,209.536157,12.8758745,0.119161863,1620000000000 ,1620000000000 ,1620000000000 ,1616812439650 -1616812439681 ,112.5718983,26.88014211,61.14799118,206.7090169,209.5789982,12.874374,0.11915435,1620000000000 ,1620000000000 ,1620000000000 ,1616812439660 -1616812439691 ,112.5718977,26.88014107,61.14614487,206.7276497,209.6059592,12.870012,0.119127019,1620000000000 ,1620000000000 ,1620000000000 ,1616812439670 -1616812439700 ,112.5718971,26.88014004,61.14433289,206.7498888,209.6187659,12.866228,0.119095459,1620000000000 ,1620000000000 ,1620000000000 ,1616812439680 -1616812439712 ,112.5718965,26.880139,61.14249039,206.7745048,209.6321004,12.866096,0.119081017,1620000000000 ,1620000000000 ,1620000000000 ,1616812439690 -1616812439721 ,112.5718959,26.88013797,61.14057541,206.8005415,209.6595583,12.86602,0.119080507,1620000000000 ,1620000000000 ,1620000000000 ,1616812439700 -1616812439743 ,112.5718953,26.88013693,61.1386261,206.8231084,209.6769743,12.863849,0.119074663,1620000000000 ,1620000000000 ,1620000000000 ,1616812439710 -1616812439747 ,112.5718947,26.8801359,61.13670349,206.8454841,209.7010818,12.859305,0.119037852,1620000000000 ,1620000000000 ,1620000000000 ,1616812439720 -1616812439754 ,112.5718941,26.88013487,61.1348114,206.8682423,209.7347406,12.854966,0.11900083,1620000000000 ,1620000000000 ,1620000000000 ,1616812439730 -1616812439765 ,112.5718935,26.88013383,61.13290787,206.8916289,209.7718139,12.852888,0.118984363,1620000000000 ,1620000000000 ,1620000000000 ,1616812439740 -1616812439772 ,112.5718929,26.8801328,61.1309967,206.9176929,209.8152695,12.854385,0.118996427,1620000000000 ,1620000000000 ,1620000000000 ,1616812439750 -1616812439782 ,112.5718924,26.88013177,61.12913513,206.9432378,209.8244668,12.852668,0.118991241,1620000000000 ,1620000000000 ,1620000000000 ,1616812439760 -1616812439799 ,112.5718918,26.88013074,61.1273613,206.9695477,209.8218948,12.849914,0.118970487,1620000000000 ,1620000000000 ,1620000000000 ,1616812439770 -1616812439803 ,112.5718912,26.8801297,61.12569809,206.9948467,209.8491933,12.844065,0.118936774,1620000000000 ,1620000000000 ,1620000000000 ,1616812439780 -1616812439812 ,112.5718906,26.88012867,61.12412262,207.0204189,209.8888957,12.836543,0.118880417,1620000000000 ,1620000000000 ,1620000000000 ,1616812439790 -1616812439823 ,112.57189,26.88012764,61.12261581,207.0432591,209.9268348,12.831526,0.118837883,1620000000000 ,1620000000000 ,1620000000000 ,1616812439800 -1616812439834 ,112.5718894,26.88012661,61.12109756,207.0694597,209.9527274,12.8314495,0.11882861,1620000000000 ,1620000000000 ,1620000000000 ,1616812439810 -1616812439844 ,112.5718888,26.88012559,61.11955261,207.095551,209.9755222,12.833486,0.118845766,1620000000000 ,1620000000000 ,1620000000000 ,1616812439820 -1616812439852 ,112.5718882,26.88012456,61.1180687,207.1210959,209.9904181,12.83149,0.118846608,1620000000000 ,1620000000000 ,1620000000000 ,1616812439830 -1616812439863 ,112.5718876,26.88012353,61.11672592,207.1468047,209.9937348,12.82618,0.118811441,1620000000000 ,1620000000000 ,1620000000000 ,1616812439840 -1616812439873 ,112.571887,26.8801225,61.11548996,207.1740162,210.0197193,12.823097,0.118785214,1620000000000 ,1620000000000 ,1620000000000 ,1616812439850 -1616812439883 ,112.5718864,26.88012147,61.1142807,207.2022112,210.0458075,12.819648,0.118760792,1620000000000 ,1620000000000 ,1620000000000 ,1616812439860 -1616812439892 ,112.5718858,26.88012044,61.11302567,207.2315537,210.0671337,12.817817,0.118747264,1620000000000 ,1620000000000 ,1620000000000 ,1616812439870 -1616812439903 ,112.5718852,26.88011942,61.1117363,207.2593663,210.0805836,12.81611,0.118731123,1620000000000 ,1620000000000 ,1620000000000 ,1616812439880 -1616812439915 ,112.5718846,26.88011839,61.11040115,207.2850204,210.0887634,12.813372,0.118707687,1620000000000 ,1620000000000 ,1620000000000 ,1616812439900 -1616812439925 ,112.571884,26.88011736,61.10905075,207.3130515,210.1237783,12.8102455,0.118685129,1620000000000 ,1620000000000 ,1620000000000 ,1616812439910 -1616812439934 ,112.5718834,26.88011634,61.10766983,207.3444704,210.1724471,12.809484,0.118686572,1620000000000 ,1620000000000 ,1620000000000 ,1616812439920 -1616812439944 ,112.5718823,26.88011428,61.10485458,207.4035652,210.2208706,12.805192,0.237343017,1620000000000 ,1620000000000 ,1620000000000 ,1616812439930 -1616812439958 ,112.5718817,26.88011326,61.1035614,207.4301483,210.2533723,12.801113,0.118634212,1620000000000 ,1620000000000 ,1620000000000 ,1616812439940 -1616812439965 ,112.5718811,26.88011224,61.10232162,207.4578242,210.2965394,12.799528,0.118624362,1620000000000 ,1620000000000 ,1620000000000 ,1616812439950 -1616812439977 ,112.5718805,26.88011121,61.10100937,207.4876858,210.3269671,12.795889,0.118606097,1620000000000 ,1620000000000 ,1620000000000 ,1616812439960 -1616812439983 ,112.5718799,26.88011019,61.09955597,207.5173562,210.3611398,12.7916155,0.118560774,1620000000000 ,1620000000000 ,1620000000000 ,1616812439970 -1616812439993 ,112.5718793,26.88010917,61.09804535,207.5452233,210.3744948,12.788615,0.118536527,1620000000000 ,1620000000000 ,1620000000000 ,1616812439980 -1616812440004 ,112.5718793,26.88010917,61.09804535,207.5452233,-400,12.788615,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812439980 -1616812440015 ,112.5718781,26.88010712,61.09505844,207.5979797,210.4053949,12.791516,0.237088474,1620000000000 ,1620000000000 ,1620000000000 ,1616812440000 -1616812440025 ,112.5718775,26.8801061,61.09348679,207.6299177,210.4721015,12.79049,0.118565709,1620000000000 ,1620000000000 ,1620000000000 ,1616812440010 -1616812440036 ,112.5718775,26.8801061,61.09348679,207.6299177,-400,12.79049,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812440020 -1616812440047 ,112.5718763,26.88010406,61.09057617,207.687182,210.4985983,12.781097,0.237046899,1620000000000 ,1620000000000 ,1620000000000 ,1616812440030 -1616812440055 ,112.5718757,26.88010304,61.08917999,207.7190926,210.5073039,12.776759,0.118462887,1620000000000 ,1620000000000 ,1620000000000 ,1616812440040 -1616812440064 ,112.5718751,26.88010202,61.08758926,207.750812,210.5402414,12.775413,0.118440124,1620000000000 ,1620000000000 ,1620000000000 ,1616812440050 -1616812440076 ,112.5718744,26.880101,61.0858078,207.7791983,210.5934593,12.771452,0.11841253,1620000000000 ,1620000000000 ,1620000000000 ,1616812440060 -1616812440084 ,112.5718738,26.88009998,61.08398819,207.8062458,210.6256021,12.768769,0.118386654,1620000000000 ,1620000000000 ,1620000000000 ,1616812440070 -1616812440095 ,112.5718732,26.88009896,61.08219528,207.8333754,210.6420674,12.768974,0.11838558,1620000000000 ,1620000000000 ,1620000000000 ,1616812440080 -1616812440105 ,112.5718726,26.88009794,61.08038712,207.8612698,210.6620003,12.771495,0.118411513,1620000000000 ,1620000000000 ,1620000000000 ,1616812440090 -1616812440114 ,112.571872,26.88009692,61.07850647,207.8896834,210.7075059,12.772786,0.118428652,1620000000000 ,1620000000000 ,1620000000000 ,1616812440100 -1616812440125 ,112.5718714,26.8800959,61.07656479,207.9168949,210.7470356,12.77273,0.118439484,1620000000000 ,1620000000000 ,1620000000000 ,1616812440110 -1616812440135 ,112.5718708,26.88009489,61.07459641,207.9428496,210.7628993,12.768137,0.118409696,1620000000000 ,1620000000000 ,1620000000000 ,1616812440120 -1616812440146 ,112.5718702,26.88009387,61.07262039,207.9710173,210.7728445,12.764952,0.118381439,1620000000000 ,1620000000000 ,1620000000000 ,1616812440130 -1616812440157 ,112.5718696,26.88009285,61.07059097,207.9995129,210.8040638,12.76313,0.118361827,1620000000000 ,1620000000000 ,1620000000000 ,1616812440140 -1616812440168 ,112.571869,26.88009184,61.06849289,208.0278172,210.8517602,12.762536,0.118364604,1620000000000 ,1620000000000 ,1620000000000 ,1616812440150 -1616812440177 ,112.5718684,26.88009082,61.06637192,208.0574056,210.888481,12.761263,0.118359245,1620000000000 ,1620000000000 ,1620000000000 ,1616812440160 -1616812440187 ,112.5718678,26.88008981,61.06429291,208.0857918,210.9174807,12.761051,0.11836426,1620000000000 ,1620000000000 ,1620000000000 ,1616812440170 -1616812440197 ,112.5718672,26.88008879,61.06225586,208.1086593,210.9409347,12.762318,0.11837623,1620000000000 ,1620000000000 ,1620000000000 ,1616812440180 -1616812440206 ,112.5718666,26.88008778,61.06020355,208.134013,210.9633036,12.762021,0.118382701,1620000000000 ,1620000000000 ,1620000000000 ,1616812440190 -1616812440215 ,112.571866,26.88008676,61.05810165,208.1578093,210.9936964,12.758493,0.118366833,1620000000000 ,1620000000000 ,1620000000000 ,1616812440200 -1616812440230 ,112.5718653,26.88008575,61.05620193,208.1803763,211.3357392,12.764303,0.118722974,1620000000000 ,1620000000000 ,1620000000000 ,1616812440210 -1616812440236 ,112.5718647,26.88008473,61.05428696,208.2051016,211.4082685,12.762264,0.118745828,1620000000000 ,1620000000000 ,1620000000000 ,1616812440220 -1616812440247 ,112.5718641,26.88008372,61.05218124,208.2356735,211.4279138,12.76528,0.118760095,1620000000000 ,1620000000000 ,1620000000000 ,1616812440230 -1616812440257 ,112.5718635,26.88008271,61.04981232,208.2647155,211.4566041,12.770702,0.11879958,1620000000000 ,1620000000000 ,1620000000000 ,1616812440240 -1616812440266 ,112.5718629,26.88008169,61.04731369,208.2902877,211.488116,12.772038,0.118816642,1620000000000 ,1620000000000 ,1620000000000 ,1616812440250 -1616812440276 ,112.5718622,26.88008068,61.04491425,208.3176904,211.5110711,12.770879,0.118832141,1620000000000 ,1620000000000 ,1620000000000 ,1616812440260 -1616812440286 ,112.5718616,26.88007967,61.04272461,208.345339,211.5332154,12.766642,0.118814572,1620000000000 ,1620000000000 ,1620000000000 ,1616812440270 -1616812440296 ,112.571861,26.88007866,61.04068756,208.3758017,211.5643852,12.760747,0.118772961,1620000000000 ,1620000000000 ,1620000000000 ,1616812440280 -1616812440312 ,112.5718604,26.88007764,61.03869247,208.4072752,211.5842437,12.7588415,0.11875574,1620000000000 ,1620000000000 ,1620000000000 ,1616812440290 -1616812440319 ,112.5718598,26.88007663,61.03657532,208.4362352,211.596319,12.760983,0.118758883,1620000000000 ,1620000000000 ,1620000000000 ,1616812440300 -1616812440328 ,112.5718591,26.88007562,61.03422928,208.4622172,211.6309809,12.767671,0.118805528,1620000000000 ,1620000000000 ,1620000000000 ,1616812440310 -1616812440338 ,112.5718585,26.88007461,61.03164673,208.4896473,211.6783103,12.771831,0.118848185,1620000000000 ,1620000000000 ,1620000000000 ,1616812440320 -1616812440350 ,112.5718579,26.8800736,61.02888489,208.5210661,211.7216352,12.775709,0.118879346,1620000000000 ,1620000000000 ,1620000000000 ,1616812440330 -1616812440359 ,112.5718573,26.88007259,61.02605438,208.5510643,211.7461761,12.771895,0.118866841,1620000000000 ,1620000000000 ,1620000000000 ,1616812440340 -1616812440368 ,112.5718566,26.88007158,61.0232811,208.5811171,211.7653975,12.769654,0.118841174,1620000000000 ,1620000000000 ,1620000000000 ,1616812440350 -1616812440377 ,112.571856,26.88007057,61.02054214,208.6113885,211.7737086,12.768715,0.118836686,1620000000000 ,1620000000000 ,1620000000000 ,1616812440360 -1616812440388 ,112.5718554,26.88006956,61.01765823,208.6428621,211.7829852,12.776694,0.118875208,1620000000000 ,1620000000000 ,1620000000000 ,1616812440370 -1616812440397 ,112.5718548,26.88006855,61.01450348,208.6732974,211.8500968,12.782691,0.118935066,1620000000000 ,1620000000000 ,1620000000000 ,1616812440380 -1616812440410 ,112.5718541,26.88006754,61.01115417,208.7066287,211.9089321,12.785764,0.118976861,1620000000000 ,1620000000000 ,1620000000000 ,1616812440390 -1616812440418 ,112.5718535,26.88006653,61.0078392,208.7372826,211.9241254,12.783163,0.118967771,1620000000000 ,1620000000000 ,1620000000000 ,1616812440400 -1616812440429 ,112.5718529,26.88006552,61.00475311,208.7688927,211.9195098,12.781451,0.118951634,1620000000000 ,1620000000000 ,1620000000000 ,1616812440410 -1616812440441 ,112.5718522,26.88006451,61.00181961,208.8006941,211.9433125,12.782507,0.118965421,1620000000000 ,1620000000000 ,1620000000000 ,1616812440420 -1616812440448 ,112.5718516,26.8800635,60.99890137,208.8325501,212.0105251,12.78433,0.118999459,1620000000000 ,1620000000000 ,1620000000000 ,1616812440430 -1616812440459 ,112.571851,26.88006249,60.99596786,208.8646246,212.0621389,12.784583,0.119008887,1620000000000 ,1620000000000 ,1620000000000 ,1616812440440 -1616812440472 ,112.5718503,26.88006148,60.99315643,208.8934754,212.0867647,12.783895,0.119012229,1620000000000 ,1620000000000 ,1620000000000 ,1616812440450 -1616812440484 ,112.5718497,26.88006047,60.99030304,208.9221348,211.8549304,12.784109,0.118695215,1620000000000 ,1620000000000 ,1620000000000 ,1616812440460 -1616812440500 ,112.5718491,26.88005947,60.98749542,208.9536357,211.8895818,12.789059,0.118737513,1620000000000 ,1620000000000 ,1620000000000 ,1616812440470 -1616812440502 ,112.5718485,26.88005846,60.98469162,208.9827323,211.9380139,12.79157,0.118777335,1620000000000 ,1620000000000 ,1620000000000 ,1616812440480 -1616812440513 ,112.5718478,26.88005745,60.98200607,209.0122387,211.9906952,12.789511,0.118783415,1620000000000 ,1620000000000 ,1620000000000 ,1616812440490 -1616812440520 ,112.5718472,26.88005644,60.97954178,209.0401332,212.0198888,12.78684,0.118775525,1620000000000 ,1620000000000 ,1620000000000 ,1616812440500 -1616812440533 ,112.5718466,26.88005544,60.97725296,209.0696942,212.0537158,12.78517,0.118769877,1620000000000 ,1620000000000 ,1620000000000 ,1616812440510 -1616812440542 ,112.5718459,26.88005443,60.97506332,209.0987089,212.083788,12.786699,0.118783883,1620000000000 ,1620000000000 ,1620000000000 ,1616812440520 -1616812440550 ,112.5718453,26.88005342,60.97290421,209.1263302,212.126186,12.789203,0.118817108,1620000000000 ,1620000000000 ,1620000000000 ,1616812440530 -1616812440560 ,112.5718447,26.88005242,60.97082138,209.1514926,212.1784039,12.790662,0.118844606,1620000000000 ,1620000000000 ,1620000000000 ,1616812440540 -1616812440573 ,112.571844,26.88005141,60.96887589,209.1786221,212.2096368,12.790767,0.118864334,1620000000000 ,1620000000000 ,1620000000000 ,1616812440550 -1616812440579 ,112.5718434,26.88005041,60.96707535,209.2075001,212.2348565,12.789323,0.118864811,1620000000000 ,1620000000000 ,1620000000000 ,1616812440560 -1616812440592 ,112.5718428,26.8800494,60.96539688,209.2338647,212.2695354,12.789609,0.11887449,1620000000000 ,1620000000000 ,1620000000000 ,1616812440570 -1616812440601 ,112.5718421,26.8800484,60.96378708,209.2617592,212.3029372,12.789629,0.118888541,1620000000000 ,1620000000000 ,1620000000000 ,1616812440580 -1616812440610 ,112.5718415,26.88004739,60.96222687,209.2886701,212.3359168,12.790204,0.118897141,1620000000000 ,1620000000000 ,1620000000000 ,1616812440590 -1616812440621 ,112.5718409,26.88004639,60.96069717,209.315581,212.3761143,12.793369,0.118932376,1620000000000 ,1620000000000 ,1620000000000 ,1616812440600 -1616812440630 ,112.5718402,26.88004538,60.95920944,209.3416724,212.4159606,12.794906,0.118961896,1620000000000 ,1620000000000 ,1620000000000 ,1616812440610 -1616812440642 ,112.5718396,26.88004438,60.95779419,209.367026,212.4504714,12.795072,0.118978928,1620000000000 ,1620000000000 ,1620000000000 ,1616812440620 -1616812440650 ,112.5718389,26.88004338,60.95644379,209.3916694,212.4730845,12.796538,0.118995578,1620000000000 ,1620000000000 ,1620000000000 ,1616812440630 -1616812440659 ,112.5718383,26.88004237,60.95513535,209.4196185,212.5022956,12.798939,0.119022797,1620000000000 ,1620000000000 ,1620000000000 ,1616812440640 -1616812440675 ,112.5718377,26.88004137,60.95382309,209.4458191,212.5277903,12.801624,0.119051513,1620000000000 ,1620000000000 ,1620000000000 ,1616812440650 -1616812440680 ,112.571837,26.88004036,60.95250702,209.4729486,212.550038,12.801697,0.119068715,1620000000000 ,1620000000000 ,1620000000000 ,1616812440660 -1616812440690 ,112.5718364,26.88003936,60.95121002,209.5001601,212.5757866,12.803755,0.119084328,1620000000000 ,1620000000000 ,1620000000000 ,1616812440670 -1616812440700 ,112.5718357,26.88003836,60.94991684,209.5272076,212.6081547,12.804911,0.119106165,1620000000000 ,1620000000000 ,1620000000000 ,1616812440680 -1616812440710 ,112.5718351,26.88003735,60.94857407,209.5551841,212.6190237,12.807075,0.119122464,1620000000000 ,1620000000000 ,1620000000000 ,1616812440690 -1616812440719 ,112.5718345,26.88003635,60.94711304,209.580811,212.6384612,12.809147,0.119142666,1620000000000 ,1620000000000 ,1620000000000 ,1616812440700 -1616812440731 ,112.5718338,26.88003535,60.94551849,209.6085415,212.6755108,12.811,0.119159922,1620000000000 ,1620000000000 ,1620000000000 ,1616812440710 -1616812440740 ,112.5718332,26.88003434,60.94381714,209.6360808,212.7104777,12.813951,0.119187762,1620000000000 ,1620000000000 ,1620000000000 ,1616812440720 -1616812440753 ,112.5718325,26.88003334,60.94205093,209.6634836,212.7340773,12.815025,0.119204967,1620000000000 ,1620000000000 ,1620000000000 ,1616812440730 -1616812440764 ,112.5718319,26.88003234,60.94028854,209.69146,212.7477215,12.816231,0.119216492,1620000000000 ,1620000000000 ,1620000000000 ,1616812440740 -1616812440771 ,112.5718312,26.88003134,60.93854523,209.7181797,212.7770279,12.815766,0.119223089,1620000000000 ,1620000000000 ,1620000000000 ,1616812440750 -1616812440781 ,112.5718306,26.88003033,60.93679047,209.7439159,212.802184,12.816581,0.119233121,1620000000000 ,1620000000000 ,1620000000000 ,1616812440760 -1616812440791 ,112.5718299,26.88002933,60.93497467,209.769734,212.8319952,12.818255,0.119245655,1620000000000 ,1620000000000 ,1620000000000 ,1616812440770 -1616812440803 ,112.5718293,26.88002833,60.9331131,209.7947598,212.8668979,12.821389,0.119279792,1620000000000 ,1620000000000 ,1620000000000 ,1616812440780 -1616812440810 ,112.5718287,26.88002733,60.93122482,209.8191572,212.9015052,12.82227,0.119296916,1620000000000 ,1620000000000 ,1620000000000 ,1616812440790 -1616812440821 ,112.571828,26.88002633,60.92932892,209.844347,212.9319808,12.823202,0.119313699,1620000000000 ,1620000000000 ,1620000000000 ,1616812440800 -1616812440834 ,112.5718274,26.88002533,60.92744827,209.8691269,212.9479919,12.822501,0.119314895,1620000000000 ,1620000000000 ,1620000000000 ,1616812440810 -1616812440848 ,112.5718267,26.88002433,60.92557907,209.8938522,212.9641184,12.82347,0.119323607,1620000000000 ,1620000000000 ,1620000000000 ,1616812440820 -1616812440852 ,112.5718261,26.88002332,60.92370224,209.9197249,212.9859959,12.825145,0.119341478,1620000000000 ,1620000000000 ,1620000000000 ,1616812440830 -1616812440862 ,112.5718254,26.88002232,60.92179108,209.9448054,213.01405,12.826324,0.119357262,1620000000000 ,1620000000000 ,1620000000000 ,1616812440840 -1616812440874 ,112.5718248,26.88002132,60.91987991,209.96811,213.0476216,12.826053,0.119364955,1620000000000 ,1620000000000 ,1620000000000 ,1616812440850 -1616812440883 ,112.5718241,26.88002032,60.91799545,209.9938188,213.0758203,12.827197,0.119379181,1620000000000 ,1620000000000 ,1620000000000 ,1616812440860 -1616812440893 ,112.5718234,26.88001932,60.91612244,210.0198555,213.0949374,12.828615,0.119396786,1620000000000 ,1620000000000 ,1620000000000 ,1616812440870 -1616812440902 ,112.5718228,26.88001832,60.91423416,210.0425044,213.1204289,12.829599,0.119412312,1620000000000 ,1620000000000 ,1620000000000 ,1616812440880 -1616812440913 ,112.5718221,26.88001732,60.9122963,210.067339,213.1417298,12.830491,0.119423136,1620000000000 ,1620000000000 ,1620000000000 ,1616812440890 -1616812440922 ,112.5718215,26.88001632,60.91030502,210.090425,213.1726317,12.831624,0.119436976,1620000000000 ,1620000000000 ,1620000000000 ,1616812440900 -1616812440933 ,112.5718208,26.88001532,60.90830612,210.1106424,213.1984715,12.832457,0.119447212,1620000000000 ,1620000000000 ,1620000000000 ,1616812440910 -1616812440942 ,112.5718202,26.88001432,60.906353,210.1321165,213.2152931,12.833433,0.119466502,1620000000000 ,1620000000000 ,1620000000000 ,1616812440920 -1616812440952 ,112.5718195,26.88001332,60.90444183,210.1543283,213.2313317,12.833267,0.119469784,1620000000000 ,1620000000000 ,1620000000000 ,1616812440930 -1616812440963 ,112.5718189,26.88001232,60.90251541,210.1781793,213.2541908,12.833898,0.119478046,1620000000000 ,1620000000000 ,1620000000000 ,1616812440940 -1616812440972 ,112.5718182,26.88001133,60.90055847,210.2015385,213.2726278,12.833379,0.119481663,1620000000000 ,1620000000000 ,1620000000000 ,1616812440950 -1616812441000 ,112.5718176,26.88001033,60.89859772,210.2245699,213.2889058,12.835153,0.119496074,1620000000000 ,1620000000000 ,1620000000000 ,1616812440960 -1616812441002 ,112.5718169,26.88000933,60.8966217,210.2466724,213.3080525,12.836497,0.119510269,1620000000000 ,1620000000000 ,1620000000000 ,1616812440970 -1616812441004 ,112.5718162,26.88000833,60.89459991,210.2699224,213.3327007,12.838023,0.11952733,1620000000000 ,1620000000000 ,1620000000000 ,1616812440980 -1616812441012 ,112.5718156,26.88000733,60.89256668,210.2930358,213.3607358,12.837551,0.11953475,1620000000000 ,1620000000000 ,1620000000000 ,1616812440990 -1616812441022 ,112.5718149,26.88000633,60.89055634,210.3177064,213.3794568,12.838117,0.119542391,1620000000000 ,1620000000000 ,1620000000000 ,1616812441010 -1616812441033 ,112.5718143,26.88000533,60.88856506,210.3407378,213.3986533,12.838665,0.119552906,1620000000000 ,1620000000000 ,1620000000000 ,1616812441010 -1616812441047 ,112.5718136,26.88000434,60.88654709,210.3641244,213.417362,12.83852,0.119552046,1620000000000 ,1620000000000 ,1620000000000 ,1616812441020 -1616812441055 ,112.571813,26.88000334,60.88451767,210.3869372,213.4406617,12.839266,0.119562525,1620000000000 ,1620000000000 ,1620000000000 ,1616812441040 -1616812441063 ,112.5718123,26.88000234,60.88251114,210.4094495,213.4640584,12.838678,0.119567875,1620000000000 ,1620000000000 ,1620000000000 ,1616812441050 -1616812441072 ,112.5718116,26.88000134,60.88051224,210.4302406,213.4897275,12.839286,0.119576733,1620000000000 ,1620000000000 ,1620000000000 ,1616812441060 -1616812441083 ,112.5718103,26.87999935,60.87648773,210.4791174,213.5146304,12.842184,0.239189951,1620000000000 ,1620000000000 ,1620000000000 ,1616812441070 -1616812441094 ,112.5718103,26.87999935,60.87648773,210.4791174,-400,12.842184,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812441080 -1616812441103 ,112.5718097,26.87999835,60.87444305,210.5046623,213.5430008,12.84409,0.119624456,1620000000000 ,1620000000000 ,1620000000000 ,1616812441080 -1616812441114 ,112.5718083,26.87999636,60.87030792,210.5515721,213.5782318,12.844127,0.239278176,1620000000000 ,1620000000000 ,1620000000000 ,1616812441100 -1616812441124 ,112.5718077,26.87999536,60.86830521,210.5740844,213.6057401,12.84277,0.11963142,1620000000000 ,1620000000000 ,1620000000000 ,1616812441110 -1616812441134 ,112.571807,26.87999437,60.86631775,210.5964054,213.6314997,12.84321,0.119639965,1620000000000 ,1620000000000 ,1620000000000 ,1616812441120 -1616812441144 ,112.5718063,26.87999337,60.86426163,210.6210488,213.6556976,12.84488,0.119653596,1620000000000 ,1620000000000 ,1620000000000 ,1616812441130 -1616812441153 ,112.5718057,26.87999238,60.86211014,210.6429327,213.6750531,12.8471985,0.119674467,1620000000000 ,1620000000000 ,1620000000000 ,1616812441140 -1616812441164 ,112.571805,26.87999138,60.85989761,210.664079,213.6982849,12.848951,0.119691425,1620000000000 ,1620000000000 ,1620000000000 ,1616812441150 -1616812441175 ,112.5718044,26.87999038,60.85767746,210.6845695,213.7241568,12.849843,0.119705624,1620000000000 ,1620000000000 ,1620000000000 ,1616812441160 -1616812441183 ,112.5718037,26.87998939,60.85550308,210.7061802,213.7548165,12.85035,0.119721648,1620000000000 ,1620000000000 ,1620000000000 ,1616812441170 -1616812441196 ,112.571803,26.87998839,60.85339737,210.7286106,213.7805888,12.849195,0.119724786,1620000000000 ,1620000000000 ,1620000000000 ,1616812441180 -1616812441207 ,112.5718024,26.8799874,60.85135269,210.7485274,213.7997839,12.845798,0.119702676,1620000000000 ,1620000000000 ,1620000000000 ,1616812441190 -1616812441216 ,112.5718017,26.8799864,60.84933472,210.767488,213.8202156,12.8447275,0.11969107,1620000000000 ,1620000000000 ,1620000000000 ,1616812441200 -1616812441226 ,112.571801,26.8799854,60.84807587,210.7751925,213.827623,12.870672,0.120491486,1620000000000 ,1620000000000 ,1620000000000 ,1616812441210 -1616812441235 ,112.5718003,26.8799844,60.84693527,210.7949454,213.8530007,12.875057,0.120653961,1620000000000 ,1620000000000 ,1620000000000 ,1616812441220 -1616812441250 ,112.5717997,26.8799834,60.84582901,210.8146983,213.8847777,12.877852,0.120698718,1620000000000 ,1620000000000 ,1620000000000 ,1616812441230 -1616812441255 ,112.571799,26.8799824,60.84479523,210.8326753,213.9027947,12.878161,0.120713483,1620000000000 ,1620000000000 ,1620000000000 ,1616812441240 -1616812441266 ,112.5717983,26.8799814,60.84382248,210.853685,213.9200116,12.875806,0.120703265,1620000000000 ,1620000000000 ,1620000000000 ,1616812441250 -1616812441275 ,112.5717977,26.87998039,60.8428688,210.8715255,213.9362254,12.872741,0.12068109,1620000000000 ,1620000000000 ,1620000000000 ,1616812441260 -1616812441284 ,112.571797,26.87997939,60.8419075,210.8884916,213.9646471,12.871569,0.120670691,1620000000000 ,1620000000000 ,1620000000000 ,1616812441270 -1616812441295 ,112.5717963,26.87997839,60.84095001,210.9039825,213.9964214,12.871439,0.120676575,1620000000000 ,1620000000000 ,1620000000000 ,1616812441280 -1616812441307 ,112.5717956,26.87997739,60.84000778,210.9210307,214.0139754,12.872511,0.120686562,1620000000000 ,1620000000000 ,1620000000000 ,1616812441290 -1616812441315 ,112.571795,26.87997639,60.83908844,210.9374231,214.0296087,12.876064,0.120719775,1620000000000 ,1620000000000 ,1620000000000 ,1616812441300 -1616812441328 ,112.5717943,26.87997539,60.8381691,210.9532418,214.0465958,12.880506,0.120763158,1620000000000 ,1620000000000 ,1620000000000 ,1616812441310 -1616812441339 ,112.5717936,26.87997439,60.83717346,210.9653176,214.0612477,12.884143,0.120800657,1620000000000 ,1620000000000 ,1620000000000 ,1616812441320 -1616812441349 ,112.5717929,26.87997339,60.83609772,210.9792512,214.0834775,12.882859,0.120804621,1620000000000 ,1620000000000 ,1620000000000 ,1616812441330 -1616812441357 ,112.5717922,26.87997239,60.8349762,210.9915182,214.1016003,12.878752,0.120769743,1620000000000 ,1620000000000 ,1620000000000 ,1616812441340 -1616812441366 ,112.5717916,26.87997139,60.8338356,211.0031842,214.1168327,12.876329,0.120746429,1620000000000 ,1620000000000 ,1620000000000 ,1616812441350 -1616812441376 ,112.5717909,26.87997039,60.83265686,211.0166806,214.1274661,12.878559,0.120754339,1620000000000 ,1620000000000 ,1620000000000 ,1616812441360 -1616812441386 ,112.5717902,26.87996939,60.83137894,211.0304776,214.13104,12.885455,0.120804379,1620000000000 ,1620000000000 ,1620000000000 ,1616812441370 -1616812441397 ,112.5717895,26.87996839,60.83002472,211.04116,214.1503598,12.893816,0.120881209,1620000000000 ,1620000000000 ,1620000000000 ,1616812441380 -1616812441405 ,112.5717889,26.87996739,60.8286438,211.0511868,214.1677247,12.899925,0.120943742,1620000000000 ,1620000000000 ,1620000000000 ,1616812441390 -1616812441417 ,112.5717882,26.87996639,60.82730865,211.0603119,214.1833015,12.904234,0.121003691,1620000000000 ,1620000000000 ,1620000000000 ,1616812441400 -1616812441426 ,112.5717875,26.87996539,60.82605743,211.0693277,214.2005574,12.903893,0.12101479,1620000000000 ,1620000000000 ,1620000000000 ,1616812441410 -1616812441436 ,112.5717868,26.87996439,60.8248291,211.0777152,214.2057844,12.902692,0.121006519,1620000000000 ,1620000000000 ,1620000000000 ,1616812441420 -1616812441447 ,112.5717861,26.87996339,60.82349014,211.0855016,214.2030526,12.902623,0.120995678,1620000000000 ,1620000000000 ,1620000000000 ,1616812441430 -1616812441456 ,112.5717855,26.87996239,60.82192993,211.0929056,214.2289743,12.909701,0.121041159,1620000000000 ,1620000000000 ,1620000000000 ,1616812441440 -1616812441469 ,112.5717848,26.87996139,60.82014465,211.0999816,214.2590948,12.920642,0.121125859,1620000000000 ,1620000000000 ,1620000000000 ,1616812441450 -1616812441477 ,112.5717841,26.87996039,60.81764603,211.1033967,214.2907815,12.9291725,0.120548932,1620000000000 ,1620000000000 ,1620000000000 ,1616812441460 -1616812441486 ,112.5717834,26.87995939,60.81524277,211.1072763,214.2943628,12.931565,0.120585976,1620000000000 ,1620000000000 ,1620000000000 ,1616812441470 -1616812441496 ,112.5717827,26.8799584,60.81308746,211.1082325,214.2956066,12.930431,0.120599895,1620000000000 ,1620000000000 ,1620000000000 ,1616812441480 -1616812441507 ,112.5717821,26.8799574,60.81106186,211.1113471,214.2945119,12.92994,0.120596151,1620000000000 ,1620000000000 ,1620000000000 ,1616812441490 -1616812441517 ,112.5717814,26.8799564,60.80898666,211.1174942,214.2983368,12.937161,0.120644969,1620000000000 ,1620000000000 ,1620000000000 ,1616812441500 -1616812441529 ,112.5717807,26.87995541,60.80669022,211.1205542,214.2955164,12.944386,0.120700913,1620000000000 ,1620000000000 ,1620000000000 ,1616812441510 -1616812441541 ,112.57178,26.87995441,60.80415344,211.1257178,214.3051391,12.951897,0.120762766,1620000000000 ,1620000000000 ,1620000000000 ,1616812441520 -1616812441547 ,112.5717793,26.87995341,60.80149841,211.1287504,214.2982814,12.958624,0.12082228,1620000000000 ,1620000000000 ,1620000000000 ,1616812441530 -1616812441557 ,112.5717787,26.87995241,60.7988472,211.1301437,214.2858994,12.960029,0.120844964,1620000000000 ,1620000000000 ,1620000000000 ,1616812441540 -1616812441567 ,112.571778,26.87995141,60.79637527,211.132384,214.2921095,12.962123,0.120869261,1620000000000 ,1620000000000 ,1620000000000 ,1616812441550 -1616812441577 ,112.5717773,26.87995042,60.79411697,211.133832,214.3008297,12.958563,0.120869079,1620000000000 ,1620000000000 ,1620000000000 ,1616812441560 -1616812441587 ,112.5717766,26.87994942,60.79201889,211.1369193,214.2946118,12.958036,0.120857349,1620000000000 ,1620000000000 ,1620000000000 ,1616812441570 -1616812441598 ,112.5717759,26.87994842,60.78987503,211.1407715,214.2750862,12.963904,0.120890342,1620000000000 ,1620000000000 ,1620000000000 ,1616812441580 -1616812441609 ,112.5717752,26.87994742,60.78739548,211.1471919,214.2761642,12.972794,0.120948174,1620000000000 ,1620000000000 ,1620000000000 ,1616812441590 -1616812441619 ,112.5717746,26.87994642,60.78448486,211.1527926,214.2932771,12.986711,0.121049677,1620000000000 ,1620000000000 ,1620000000000 ,1616812441600 -1616812441630 ,112.5717739,26.87994542,60.78131866,211.1538308,214.2924346,12.994873,0.121128835,1620000000000 ,1620000000000 ,1620000000000 ,1616812441610 -1616812441638 ,112.5717732,26.87994442,60.77820206,211.1524375,214.2872763,12.997259,0.121164833,1620000000000 ,1620000000000 ,1620000000000 ,1616812441620 -1616812441648 ,112.5717725,26.87994342,60.77531433,211.1558526,214.2839768,12.992221,0.121150294,1620000000000 ,1620000000000 ,1620000000000 ,1616812441630 -1616812441659 ,112.5717718,26.87994242,60.77264023,211.1589398,214.2997802,12.987057,0.121105834,1620000000000 ,1620000000000 ,1620000000000 ,1616812441640 -1616812441671 ,112.5717712,26.87994141,60.77009583,211.1636936,214.2883712,12.990118,0.121117245,1620000000000 ,1620000000000 ,1620000000000 ,1616812441650 -1616812441680 ,112.5717705,26.87994041,60.76748657,211.1679283,214.2616211,13.002237,0.121202515,1620000000000 ,1620000000000 ,1620000000000 ,1616812441660 -1616812441688 ,112.5717698,26.87993941,60.7646904,211.1700594,214.2658378,13.015573,0.12131292,1620000000000 ,1620000000000 ,1620000000000 ,1616812441670 -1616812441699 ,112.5717691,26.87993841,60.76173019,211.1725456,214.2899089,13.022583,0.121396453,1620000000000 ,1620000000000 ,1620000000000 ,1616812441680 -1616812441710 ,112.5717684,26.8799374,60.75878906,211.1723816,214.3029453,13.023161,0.1214155,1620000000000 ,1620000000000 ,1620000000000 ,1616812441690 -1616812441718 ,112.5717677,26.8799364,60.75609589,211.1722177,214.288072,13.0231285,0.121423966,1620000000000 ,1620000000000 ,1620000000000 ,1616812441700 -1616812441730 ,112.5717671,26.8799354,60.75360107,211.170196,214.278961,13.025358,0.121443082,1620000000000 ,1620000000000 ,1620000000000 ,1616812441710 -1616812441739 ,112.5717664,26.87993439,60.75112534,211.1722723,214.2800774,13.028014,0.121474121,1620000000000 ,1620000000000 ,1620000000000 ,1616812441720 -1616812441751 ,112.5717657,26.87993339,60.74851608,211.1726002,214.279758,13.034427,0.121516193,1620000000000 ,1620000000000 ,1620000000000 ,1616812441730 -1616812441760 ,112.571765,26.87993239,60.74581528,211.1704692,214.2924222,13.039899,0.12156518,1620000000000 ,1620000000000 ,1620000000000 ,1616812441740 -1616812441777 ,112.5717643,26.87993138,60.74316788,211.1694037,214.292649,13.043544,0.121608833,1620000000000 ,1620000000000 ,1620000000000 ,1616812441750 -1616812441780 ,112.5717636,26.87993038,60.74065399,211.1673,214.2851922,13.04602,0.121640692,1620000000000 ,1620000000000 ,1620000000000 ,1616812441760 -1616812441792 ,112.5717629,26.87992937,60.73830032,211.1673273,214.2824578,13.047453,0.121659665,1620000000000 ,1620000000000 ,1620000000000 ,1616812441770 -1616812441801 ,112.5717623,26.87992836,60.73601151,211.1648957,214.2850584,13.051939,0.121695443,1620000000000 ,1620000000000 ,1620000000000 ,1616812441780 -1616812441810 ,112.5717616,26.87992736,60.73374176,211.1626554,214.2986675,13.057333,0.121746796,1620000000000 ,1620000000000 ,1620000000000 ,1616812441790 -1616812441822 ,112.5717609,26.87992635,60.73146057,211.1610708,214.3029569,13.062995,0.121800807,1620000000000 ,1620000000000 ,1620000000000 ,1616812441800 -1616812441833 ,112.5717602,26.87992535,60.72919846,211.1576011,214.2901703,13.067166,0.121842205,1620000000000 ,1620000000000 ,1620000000000 ,1616812441810 -1616812441841 ,112.5717595,26.87992434,60.72703934,211.1550056,214.2821468,13.06932,0.121871083,1620000000000 ,1620000000000 ,1620000000000 ,1616812441820 -1616812441850 ,112.5717588,26.87992333,60.72498322,211.1512627,214.2838352,13.070539,0.121886444,1620000000000 ,1620000000000 ,1620000000000 ,1616812441830 -1616812441862 ,112.5717581,26.87992232,60.72298431,211.150607,214.2846476,13.073969,0.121918769,1620000000000 ,1620000000000 ,1620000000000 ,1616812441840 -1616812441872 ,112.5717575,26.87992132,60.721035,211.1487219,214.2839138,13.078619,0.121963223,1620000000000 ,1620000000000 ,1620000000000 ,1616812441850 -1616812441883 ,112.5717568,26.87992031,60.71914291,211.1470826,214.2880858,13.082495,0.122004635,1620000000000 ,1620000000000 ,1620000000000 ,1616812441860 -1616812441891 ,112.5717561,26.8799193,60.71724701,211.145416,214.2767016,13.088585,0.122053069,1620000000000 ,1620000000000 ,1620000000000 ,1616812441870 -1616812441901 ,112.5717554,26.87991829,60.71531296,211.14405,214.2905337,13.092043,0.122092269,1620000000000 ,1620000000000 ,1620000000000 ,1616812441880 -1616812441912 ,112.5717547,26.87991728,60.71340179,211.142602,214.289382,13.097084,0.122135556,1620000000000 ,1620000000000 ,1620000000000 ,1616812441890 -1616812441921 ,112.571754,26.87991627,60.71153641,211.1383673,214.283125,13.102082,0.122190779,1620000000000 ,1620000000000 ,1620000000000 ,1616812441900 -1616812441930 ,112.5717533,26.87991526,60.70968246,211.1344331,214.2791794,13.103247,0.122201559,1620000000000 ,1620000000000 ,1620000000000 ,1616812441910 -1616812441952 ,112.5717526,26.87991425,60.70778275,211.132548,214.269655,13.1055975,0.122221464,1620000000000 ,1620000000000 ,1620000000000 ,1616812441920 -1616812441964 ,112.5717519,26.87991324,60.70584869,211.1286957,214.2771032,13.106671,0.122232539,1620000000000 ,1620000000000 ,1620000000000 ,1616812441930 -1616812441970 ,112.5717513,26.87991223,60.70394516,211.1257178,214.2701948,13.11276,0.122281582,1620000000000 ,1620000000000 ,1620000000000 ,1616812441940 -1616812441978 ,112.5717506,26.87991122,60.70205307,211.1237507,214.2624074,13.115128,0.122309054,1620000000000 ,1620000000000 ,1620000000000 ,1616812441950 -1616812441982 ,112.5717499,26.87991021,60.70018387,211.1215377,214.2519888,13.121452,0.122358444,1620000000000 ,1620000000000 ,1620000000000 ,1616812441960 -1616812441991 ,112.5717492,26.8799092,60.69832611,211.1200077,214.2439463,13.12664,0.12241169,1620000000000 ,1620000000000 ,1620000000000 ,1616812441970 -1616812442001 ,112.5717485,26.87990819,60.69647217,211.1201717,214.2453544,13.129728,0.122444262,1620000000000 ,1620000000000 ,1620000000000 ,1616812441980 -1616812442011 ,112.5717478,26.87990717,60.6946373,211.1181226,214.2530433,13.131718,0.122469746,1620000000000 ,1620000000000 ,1620000000000 ,1616812441990 -1616812442022 ,112.5717471,26.87990616,60.69281006,211.1168932,214.2609481,13.132998,0.122482177,1620000000000 ,1620000000000 ,1620000000000 ,1616812442000 -1616812442033 ,112.5717464,26.87990515,60.69094467,211.1151446,214.2655268,13.137888,0.122520793,1620000000000 ,1620000000000 ,1620000000000 ,1616812442010 -1616812442042 ,112.5717457,26.87990414,60.68894958,211.1125492,214.260762,13.14377,0.122566316,1620000000000 ,1620000000000 ,1620000000000 ,1616812442020 -1616812442053 ,112.5717451,26.87990312,60.68684006,211.1094346,214.2647578,13.148738,0.122610481,1620000000000 ,1620000000000 ,1620000000000 ,1616812442030 -1616812442062 ,112.5717444,26.87990211,60.68469238,211.1055551,214.2549086,13.15018,0.122630669,1620000000000 ,1620000000000 ,1620000000000 ,1616812442040 -1616812442072 ,112.5717437,26.8799011,60.68257523,211.1040524,214.2539493,13.150842,0.122639536,1620000000000 ,1620000000000 ,1620000000000 ,1616812442050 -1616812442082 ,112.571743,26.87990008,60.68049622,211.1024951,214.236642,13.154615,0.122659532,1620000000000 ,1620000000000 ,1620000000000 ,1616812442060 -1616812442095 ,112.5717423,26.87989907,60.67840195,211.100528,214.2256081,13.157077,0.12268954,1620000000000 ,1620000000000 ,1620000000000 ,1616812442070 -1616812442103 ,112.5717416,26.87989805,60.67625427,211.1002275,214.2240668,13.158289,0.122697757,1620000000000 ,1620000000000 ,1620000000000 ,1616812442080 -1616812442113 ,112.5717409,26.87989704,60.67399979,211.0988888,214.2228753,13.161741,0.122718387,1620000000000 ,1620000000000 ,1620000000000 ,1616812442090 -1616812442124 ,112.5717402,26.87989602,60.6716156,211.0994352,214.235711,13.163291,0.122729855,1620000000000 ,1620000000000 ,1620000000000 ,1616812442100 -1616812442133 ,112.5717395,26.87989501,60.66917038,211.1026317,214.2502494,13.165622,0.122753803,1620000000000 ,1620000000000 ,1620000000000 ,1616812442120 -1616812442144 ,112.5717388,26.87989399,60.66674042,211.1043803,214.2375176,13.169154,0.122780701,1620000000000 ,1620000000000 ,1620000000000 ,1616812442120 -1616812442155 ,112.5717382,26.87989298,60.66444397,211.1027137,214.2136959,13.168165,0.122784051,1620000000000 ,1620000000000 ,1620000000000 ,1616812442140 -1616812442164 ,112.5717375,26.87989196,60.66226196,211.1008286,214.2132373,13.16692,0.122774881,1620000000000 ,1620000000000 ,1620000000000 ,1616812442150 -1616812442182 ,112.5717361,26.87988993,60.65777588,211.0957742,214.2469009,13.168558,0.245560416,1620000000000 ,1620000000000 ,1620000000000 ,1616812442160 -1616812442186 ,112.5717354,26.87988892,60.65537262,211.0924957,214.2633205,13.172169,0.122809189,1620000000000 ,1620000000000 ,1620000000000 ,1616812442170 -1616812442195 ,112.5717347,26.8798879,60.65296555,211.0891626,214.2341057,13.175607,0.122832459,1620000000000 ,1620000000000 ,1620000000000 ,1616812442180 -1616812442204 ,112.5717347,26.8798879,60.65296555,211.0891626,-400,13.175607,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812442180 -1616812442217 ,112.5717333,26.87988587,60.64835739,211.0877692,214.1960741,13.181133,0.245748507,1620000000000 ,1620000000000 ,1620000000000 ,1616812442200 -1616812442225 ,112.5717333,26.87988587,60.64835739,211.0877692,-400,13.181133,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812442210 -1616812442235 ,112.5717319,26.87988384,60.64365768,211.0816221,214.4383172,13.176525,0.245666992,1620000000000 ,1620000000000 ,1620000000000 ,1616812442220 -1616812442250 ,112.5717312,26.87988283,60.64132309,211.0820046,214.4314397,13.175804,0.122823311,1620000000000 ,1620000000000 ,1620000000000 ,1616812442230 -1616812442256 ,112.5717305,26.87988182,60.63904572,211.0828242,214.411368,13.175337,0.12281407,1620000000000 ,1620000000000 ,1620000000000 ,1616812442240 -1616812442264 ,112.5717298,26.8798808,60.6367569,211.0837258,214.4057008,13.177193,0.122820864,1620000000000 ,1620000000000 ,1620000000000 ,1616812442250 -1616812442274 ,112.5717292,26.87987979,60.63442612,211.0855563,214.425766,13.178367,0.122837932,1620000000000 ,1620000000000 ,1620000000000 ,1616812442260 -1616812442283 ,112.5717285,26.87987878,60.632164,211.0864305,214.4432277,13.181487,0.122871114,1620000000000 ,1620000000000 ,1620000000000 ,1616812442270 -1616812442294 ,112.5717278,26.87987776,60.63006592,211.0849552,214.4509452,13.181528,0.122884471,1620000000000 ,1620000000000 ,1620000000000 ,1616812442280 -1616812442305 ,112.5717271,26.87987675,60.62811279,211.0835345,214.4567121,13.184189,0.122910493,1620000000000 ,1620000000000 ,1620000000000 ,1616812442290 -1616812442317 ,112.5717264,26.87987574,60.62621689,211.0816221,214.4555508,13.183338,0.12291599,1620000000000 ,1620000000000 ,1620000000000 ,1616812442300 -1616812442325 ,112.5717257,26.87987472,60.62433624,211.0796277,214.4748326,13.184437,0.122925862,1620000000000 ,1620000000000 ,1620000000000 ,1616812442310 -1616812442335 ,112.571725,26.87987371,60.62252426,211.0783982,214.4943661,13.183129,0.122924712,1620000000000 ,1620000000000 ,1620000000000 ,1616812442320 -1616812442346 ,112.5717243,26.8798727,60.62081146,211.0773054,214.4924801,13.180706,0.122914036,1620000000000 ,1620000000000 ,1620000000000 ,1616812442330 -1616812442355 ,112.5717236,26.87987168,60.61924744,211.0776879,214.4711929,13.17972,0.122901439,1620000000000 ,1620000000000 ,1620000000000 ,1616812442340 -1616812442365 ,112.5717229,26.87987067,60.61779022,211.0763765,214.4455217,13.180481,0.122910389,1620000000000 ,1620000000000 ,1620000000000 ,1616812442350 -1616812442376 ,112.5717222,26.87986966,60.61638641,211.0770595,214.4483513,13.18188,0.122915651,1620000000000 ,1620000000000 ,1620000000000 ,1616812442360 -1616812442387 ,112.5717215,26.87986864,60.61509323,211.0754203,214.4545157,13.186461,0.122966052,1620000000000 ,1620000000000 ,1620000000000 ,1616812442370 -1616812442397 ,112.5717208,26.87986763,60.61394501,211.0737264,214.439271,13.183538,0.122962338,1620000000000 ,1620000000000 ,1620000000000 ,1616812442380 -1616812442408 ,112.5717201,26.87986662,60.61289597,211.0740542,214.4293611,13.183507,0.122957613,1620000000000 ,1620000000000 ,1620000000000 ,1616812442390 -1616812442417 ,112.5717194,26.8798656,60.61175919,211.077442,214.418134,13.181177,0.122931866,1620000000000 ,1620000000000 ,1620000000000 ,1616812442400 -1616812442426 ,112.5717187,26.87986459,60.61037445,211.0797643,214.414529,13.185469,0.122947959,1620000000000 ,1620000000000 ,1620000000000 ,1616812442410 -1616812442437 ,112.571718,26.87986357,60.60876465,211.0810483,214.4155106,13.191308,0.122989182,1620000000000 ,1620000000000 ,1620000000000 ,1616812442420 -1616812442448 ,112.5717173,26.87986256,60.60706711,211.0809664,214.429148,13.194796,0.123026909,1620000000000 ,1620000000000 ,1620000000000 ,1616812442430 -1616812442456 ,112.5717166,26.87986154,60.6054306,211.0808298,214.4438978,13.192037,0.123027416,1620000000000 ,1620000000000 ,1620000000000 ,1616812442440 -1616812442466 ,112.5717159,26.87986053,60.60394287,211.0819226,214.4354479,13.184449,0.122975036,1620000000000 ,1620000000000 ,1620000000000 ,1616812442450 -1616812442478 ,112.5717152,26.87985951,60.6026268,211.0841902,214.2540878,13.182756,0.12297058,1620000000000 ,1620000000000 ,1620000000000 ,1616812442460 -1616812442487 ,112.5717146,26.8798585,60.60124969,211.0856382,214.2365703,13.1883,0.122998588,1620000000000 ,1620000000000 ,1620000000000 ,1616812442470 -1616812442497 ,112.5717139,26.87985748,60.59964752,211.0879878,214.2458904,13.195098,0.123054447,1620000000000 ,1620000000000 ,1620000000000 ,1616812442480 -1616812442507 ,112.5717132,26.87985646,60.59782791,211.0888894,214.265804,13.20046,0.123106956,1620000000000 ,1620000000000 ,1620000000000 ,1616812442490 -1616812442517 ,112.5717125,26.87985544,60.59595108,211.0894358,214.274842,13.202183,0.123128237,1620000000000 ,1620000000000 ,1620000000000 ,1616812442500 -1616812442527 ,112.5717118,26.87985443,60.59417343,211.0903374,214.2680095,13.200607,0.123125313,1620000000000 ,1620000000000 ,1620000000000 ,1616812442510 -1616812442537 ,112.5717111,26.87985341,60.59249115,211.0915668,214.2567071,13.198272,0.123108089,1620000000000 ,1620000000000 ,1620000000000 ,1616812442520 -1616812442550 ,112.5717104,26.87985239,60.59082794,211.0942716,214.2633339,13.199605,0.123117296,1620000000000 ,1620000000000 ,1620000000000 ,1616812442530 -1616812442559 ,112.5717097,26.87985137,60.589077,211.0989708,214.2762332,13.201811,0.123135566,1620000000000 ,1620000000000 ,1620000000000 ,1616812442540 -1616812442567 ,112.571709,26.87985036,60.58721924,211.1050906,214.2763619,13.204202,0.123154108,1620000000000 ,1620000000000 ,1620000000000 ,1616812442550 -1616812442577 ,112.5717083,26.87984934,60.58525848,211.1096532,214.262999,13.205507,0.123161481,1620000000000 ,1620000000000 ,1620000000000 ,1616812442560 -1616812442589 ,112.5717076,26.87984832,60.58324051,211.1125765,214.2526525,13.2065525,0.123171311,1620000000000 ,1620000000000 ,1620000000000 ,1616812442570 -1616812442600 ,112.5717069,26.8798473,60.58121109,211.1149534,214.2555358,13.210334,0.123195544,1620000000000 ,1620000000000 ,1620000000000 ,1616812442580 -1616812442609 ,112.5717062,26.87984628,60.57916641,211.1197072,214.2746189,13.214889,0.123244492,1620000000000 ,1620000000000 ,1620000000000 ,1616812442590 -1616812442618 ,112.5717055,26.87984526,60.57709885,211.1240785,214.287612,13.212698,0.123243846,1620000000000 ,1620000000000 ,1620000000000 ,1616812442600 -1616812442628 ,112.5717048,26.87984425,60.57501221,211.1303077,214.2763221,13.212094,0.123231333,1620000000000 ,1620000000000 ,1620000000000 ,1616812442610 -1616812442638 ,112.5717042,26.87984323,60.57288361,211.13681,214.2584354,13.211847,0.123222664,1620000000000 ,1620000000000 ,1620000000000 ,1616812442620 -1616812442648 ,112.5717035,26.87984221,60.57063293,211.1427659,214.2524841,13.21754,0.123250751,1620000000000 ,1620000000000 ,1620000000000 ,1616812442630 -1616812442657 ,112.5717028,26.87984119,60.56827164,211.1454707,214.268858,13.22165,0.123297446,1620000000000 ,1620000000000 ,1620000000000 ,1616812442640 -1616812442668 ,112.5717021,26.87984017,60.56585693,211.148394,214.2920347,13.224969,0.123331745,1620000000000 ,1620000000000 ,1620000000000 ,1616812442650 -1616812442679 ,112.5717014,26.87983915,60.56346893,211.1551422,214.3008345,13.226825,0.123360607,1620000000000 ,1620000000000 ,1620000000000 ,1616812442660 -1616812442687 ,112.5717007,26.87983813,60.56112289,211.1611801,214.288314,13.226396,0.123356361,1620000000000 ,1620000000000 ,1620000000000 ,1616812442670 -1616812442697 ,112.5717,26.87983711,60.55877686,211.1683655,214.2805542,13.229762,0.123376764,1620000000000 ,1620000000000 ,1620000000000 ,1616812442680 -1616812442711 ,112.5716993,26.87983609,60.55634689,211.1763978,214.2801274,13.237499,0.123435516,1620000000000 ,1620000000000 ,1620000000000 ,1616812442690 -1616812442718 ,112.5716986,26.87983507,60.55376053,211.1834192,214.2979541,13.2447605,0.123499072,1620000000000 ,1620000000000 ,1620000000000 ,1616812442700 -1616812442728 ,112.5716979,26.87983405,60.55099106,211.1892112,214.3095971,13.252726,0.123566574,1620000000000 ,1620000000000 ,1620000000000 ,1616812442710 -1616812442739 ,112.5716972,26.87983303,60.54808044,211.1942382,214.3177385,13.255553,0.123594852,1620000000000 ,1620000000000 ,1620000000000 ,1616812442720 -1616812442750 ,112.5716965,26.87983201,60.54508209,211.1981997,214.3171101,13.261522,0.12363762,1620000000000 ,1620000000000 ,1620000000000 ,1616812442730 -1616812442759 ,112.5716958,26.87983099,60.54202271,211.2010957,214.3130178,13.267419,0.123686848,1620000000000 ,1620000000000 ,1620000000000 ,1616812442740 -1616812442769 ,112.5716951,26.87982997,60.53889084,211.2065599,214.3241532,13.273984,0.123743671,1620000000000 ,1620000000000 ,1620000000000 ,1616812442750 -1616812442779 ,112.5716944,26.87982895,60.53570175,211.2120514,214.3399917,13.279227,0.123796493,1620000000000 ,1620000000000 ,1620000000000 ,1616812442760 -1616812442788 ,112.5716937,26.87982792,60.53251266,211.2167505,214.345041,13.282216,0.123828148,1620000000000 ,1620000000000 ,1620000000000 ,1616812442770 -1616812442799 ,112.571693,26.8798269,60.52935791,211.2240452,214.3404287,13.284309,0.123848936,1620000000000 ,1620000000000 ,1620000000000 ,1616812442780 -1616812442810 ,112.5716923,26.87982588,60.52615738,211.2293454,214.3410749,13.290124,0.123890091,1620000000000 ,1620000000000 ,1620000000000 ,1616812442790 -1616812442820 ,112.5716916,26.87982485,60.52290726,211.2337441,214.3606639,13.297386,0.123957185,1620000000000 ,1620000000000 ,1620000000000 ,1616812442800 -1616812442830 ,112.5716909,26.87982383,60.51963425,211.239017,214.3625498,13.300871,0.123993121,1620000000000 ,1620000000000 ,1620000000000 ,1616812442810 -1616812442838 ,112.5716902,26.87982281,60.51646042,211.2421588,214.3676732,13.302699,0.124020673,1620000000000 ,1620000000000 ,1620000000000 ,1616812442820 -1616812442850 ,112.5716895,26.87982178,60.51343155,211.2477596,214.3687022,13.305208,0.124048619,1620000000000 ,1620000000000 ,1620000000000 ,1616812442830 -1616812442863 ,112.5716888,26.87982076,60.5104866,211.2504917,214.3674243,13.310003,0.124088959,1620000000000 ,1620000000000 ,1620000000000 ,1616812442840 -1616812442870 ,112.5716881,26.87981973,60.50755692,211.2583054,214.3711347,13.315333,0.124135825,1620000000000 ,1620000000000 ,1620000000000 ,1616812442850 -1616812442880 ,112.5716874,26.87981871,60.50462341,211.265081,214.3774698,13.321895,0.124198957,1620000000000 ,1620000000000 ,1620000000000 ,1616812442860 -1616812442890 ,112.5716867,26.87981768,60.5017662,211.2694796,214.3813606,13.324762,0.12424059,1620000000000 ,1620000000000 ,1620000000000 ,1616812442870 -1616812442899 ,112.571686,26.87981666,60.49907684,211.2746432,214.3852632,13.326926,0.124268444,1620000000000 ,1620000000000 ,1620000000000 ,1616812442880 -1616812442912 ,112.5716853,26.87981563,60.49657822,211.2793697,214.3845743,13.327994,0.124287648,1620000000000 ,1620000000000 ,1620000000000 ,1616812442890 -1616812442920 ,112.5716846,26.87981461,60.49416733,211.2850524,214.393357,13.331114,0.124316204,1620000000000 ,1620000000000 ,1620000000000 ,1616812442900 -1616812442929 ,112.5716839,26.87981358,60.49178314,211.2916641,214.4042901,13.337611,0.124376687,1620000000000 ,1620000000000 ,1620000000000 ,1616812442910 -1616812442940 ,112.5716832,26.87981255,60.48941803,211.2983576,214.4005002,13.343047,0.124427301,1620000000000 ,1620000000000 ,1620000000000 ,1616812442920 -1616812442953 ,112.5716825,26.87981153,60.4871788,211.3026197,214.39592,13.346671,0.124470043,1620000000000 ,1620000000000 ,1620000000000 ,1616812442930 -1616812442961 ,112.5716818,26.8798105,60.48508072,211.3088215,214.3944818,13.348826,0.124501912,1620000000000 ,1620000000000 ,1620000000000 ,1616812442940 -1616812442972 ,112.5716811,26.87980947,60.48303604,211.3161708,214.3993881,13.352358,0.124534038,1620000000000 ,1620000000000 ,1620000000000 ,1616812442950 -1616812442988 ,112.5716804,26.87980844,60.48098755,211.3190668,214.4069086,13.35715,0.124570575,1620000000000 ,1620000000000 ,1620000000000 ,1616812442960 -1616812442992 ,112.5716797,26.87980742,60.47894669,211.322236,214.4167265,13.364389,0.124640348,1620000000000 ,1620000000000 ,1620000000000 ,1616812442970 -1616812443000 ,112.571679,26.87980639,60.47694778,211.3276728,214.4085982,13.366974,0.124670838,1620000000000 ,1620000000000 ,1620000000000 ,1616812442980 -1616812443010 ,112.5716783,26.87980536,60.47497177,211.3317709,214.4253979,13.374624,0.124749992,1620000000000 ,1620000000000 ,1620000000000 ,1616812442990 -1616812443026 ,112.5716776,26.87980433,60.47305298,211.3400764,214.4421288,13.376538,0.124769215,1620000000000 ,1620000000000 ,1620000000000 ,1616812443000 -1616812443034 ,112.5716769,26.8798033,60.47111511,211.3488737,214.4217388,13.381551,0.124814511,1620000000000 ,1620000000000 ,1620000000000 ,1616812443010 -1616812443042 ,112.5716762,26.87980227,60.46916199,211.3545564,214.4165704,13.38574,0.124850452,1620000000000 ,1620000000000 ,1620000000000 ,1616812443020 -1616812443051 ,112.5716754,26.87980124,60.46719742,211.3567421,214.4319073,13.393656,0.124910008,1620000000000 ,1620000000000 ,1620000000000 ,1616812443030 -1616812443061 ,112.5716747,26.87980021,60.46515274,211.3642553,214.4561501,13.400199,0.124981875,1620000000000 ,1620000000000 ,1620000000000 ,1616812443040 -1616812443071 ,112.571674,26.87979918,60.46304321,211.3690911,214.4759686,13.405076,0.125033571,1620000000000 ,1620000000000 ,1620000000000 ,1616812443050 -1616812443080 ,112.5716733,26.87979815,60.46097565,211.3737629,214.4765716,13.409309,0.125081331,1620000000000 ,1620000000000 ,1620000000000 ,1616812443060 -1616812443091 ,112.5716726,26.87979712,60.458992,211.3777791,214.4605151,13.413083,0.125105674,1620000000000 ,1620000000000 ,1620000000000 ,1616812443070 -1616812443102 ,112.5716719,26.87979608,60.45701981,211.3805112,214.4654944,13.418819,0.125157615,1620000000000 ,1620000000000 ,1620000000000 ,1616812443080 -1616812443112 ,112.5716712,26.87979505,60.45491409,211.3872594,214.4821204,13.427071,0.125229192,1620000000000 ,1620000000000 ,1620000000000 ,1616812443090 -1616812443123 ,112.5716705,26.87979402,60.4526825,211.393106,214.5126548,13.434976,0.125304811,1620000000000 ,1620000000000 ,1620000000000 ,1616812443100 -1616812443132 ,112.5716698,26.87979299,60.45051193,211.3952097,214.5172064,13.436777,0.125341056,1620000000000 ,1620000000000 ,1620000000000 ,1616812443110 -1616812443142 ,112.5716691,26.87979195,60.44852066,211.4003733,214.4976521,13.441035,0.125374827,1620000000000 ,1620000000000 ,1620000000000 ,1616812443120 -1616812443151 ,112.5716684,26.87979092,60.44664383,211.4035972,214.4892099,13.444664,0.125412855,1620000000000 ,1620000000000 ,1620000000000 ,1616812443130 -1616812443163 ,112.5716676,26.87978988,60.44477463,211.4086789,214.4997876,13.451327,0.125469565,1620000000000 ,1620000000000 ,1620000000000 ,1616812443140 -1616812443176 ,112.5716669,26.87978885,60.44290161,211.4149353,214.510174,13.457043,0.125531035,1620000000000 ,1620000000000 ,1620000000000 ,1616812443150 -1616812443186 ,112.5716662,26.87978782,60.4410553,211.4199077,214.5062994,13.462028,0.125575177,1620000000000 ,1620000000000 ,1620000000000 ,1616812443160 -1616812443201 ,112.5716655,26.87978678,60.43924332,211.4265466,214.5026392,13.466758,0.125622901,1620000000000 ,1620000000000 ,1620000000000 ,1616812443170 -1616812443207 ,112.5716648,26.87978574,60.43743134,211.4315737,214.5089184,13.473154,0.12568046,1620000000000 ,1620000000000 ,1620000000000 ,1616812443180 -1616812443217 ,112.5716641,26.87978471,60.43558502,211.4368466,214.5270113,13.479672,0.125739094,1620000000000 ,1620000000000 ,1620000000000 ,1616812443190 -1616812443225 ,112.5716634,26.87978367,60.43373108,211.4429664,214.5389224,13.485176,0.125799314,1620000000000 ,1620000000000 ,1620000000000 ,1616812443200 -1616812443235 ,112.5716626,26.87978263,60.43208694,211.4469006,214.9377636,13.529083,0.127253225,1620000000000 ,1620000000000 ,1620000000000 ,1616812443210 -1616812443245 ,112.5716619,26.87978158,60.4304924,211.4541406,214.9887935,13.5345335,0.127502642,1620000000000 ,1620000000000 ,1620000000000 ,1616812443220 -1616812443254 ,112.5716612,26.87978054,60.42884445,211.4619543,214.993771,13.5420685,0.127567051,1620000000000 ,1620000000000 ,1620000000000 ,1616812443230 -1616812443263 ,112.5716605,26.87977949,60.42710495,211.4681835,215.0021655,13.549061,0.127630928,1620000000000 ,1620000000000 ,1620000000000 ,1616812443240 -1616812443272 ,112.5716597,26.87977845,60.42531967,211.472746,215.0121588,13.5550995,0.127691054,1620000000000 ,1620000000000 ,1620000000000 ,1616812443260 -1616812443282 ,112.571659,26.8797774,60.42354584,211.477937,215.0252858,13.55953,0.127738186,1620000000000 ,1620000000000 ,1620000000000 ,1616812443270 -1616812443292 ,112.5716583,26.87977636,60.42180634,211.4848218,215.0245088,13.564653,0.127785987,1620000000000 ,1620000000000 ,1620000000000 ,1616812443280 -1616812443303 ,112.5716575,26.87977531,60.42013931,211.4927448,215.0182471,13.568819,0.127825469,1620000000000 ,1620000000000 ,1620000000000 ,1616812443280 -1616812443315 ,112.5716568,26.87977426,60.41853333,211.5000941,215.0227637,13.575374,0.127888729,1620000000000 ,1620000000000 ,1620000000000 ,1616812443300 -1616812443323 ,112.5716561,26.87977321,60.41692352,211.5081264,215.0185828,13.583052,0.127952356,1620000000000 ,1620000000000 ,1620000000000 ,1616812443310 -1616812443333 ,112.5716553,26.87977217,60.41527557,211.5177706,215.0219245,13.589442,0.128014114,1620000000000 ,1620000000000 ,1620000000000 ,1616812443320 -1616812443345 ,112.5716538,26.87977007,60.41199112,211.5346275,215.0230472,13.597695,0.256160648,1620000000000 ,1620000000000 ,1620000000000 ,1616812443330 -1616812443355 ,112.5716538,26.87977007,60.41199112,211.5346275,-400,13.597695,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812443340 -1616812443366 ,112.5716524,26.87976797,60.40872192,211.5523041,215.025095,13.610811,0.256365699,1620000000000 ,1620000000000 ,1620000000000 ,1616812443350 -1616812443379 ,112.5716516,26.87976692,60.40699005,211.5613199,215.0342143,13.616238,0.128264737,1620000000000 ,1620000000000 ,1620000000000 ,1616812443360 -1616812443385 ,112.5716509,26.87976587,60.40526962,211.5703904,215.0413618,13.62118,0.128314421,1620000000000 ,1620000000000 ,1620000000000 ,1616812443370 -1616812443395 ,112.5716502,26.87976482,60.40361023,211.5785593,215.0427681,13.626782,0.128367673,1620000000000 ,1620000000000 ,1620000000000 ,1616812443380 -1616812443403 ,112.5716502,26.87976482,60.40361023,211.5785593,-400,13.626782,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812443390 -1616812443414 ,112.5716487,26.87976271,60.40027618,211.5992958,215.0422149,13.637806,0.256886093,1620000000000 ,1620000000000 ,1620000000000 ,1616812443400 -1616812443426 ,112.571648,26.87976166,60.3985672,211.6088307,215.0608446,13.644915,0.128536186,1620000000000 ,1620000000000 ,1620000000000 ,1616812443410 -1616812443434 ,112.5716472,26.87976061,60.39682388,211.6171909,215.0623881,13.65201,0.128596656,1620000000000 ,1620000000000 ,1620000000000 ,1616812443420 -1616812443445 ,112.5716465,26.87975956,60.39503098,211.6260701,215.0737348,13.657583,0.128652293,1620000000000 ,1620000000000 ,1620000000000 ,1616812443430 -1616812443456 ,112.5716457,26.8797585,60.3932457,211.6372989,215.0819556,13.663846,0.128716079,1620000000000 ,1620000000000 ,1620000000000 ,1616812443440 -1616812443467 ,112.571645,26.87975745,60.39151764,211.6490196,215.0771677,13.667544,0.128754616,1620000000000 ,1620000000000 ,1620000000000 ,1616812443450 -1616812443476 ,112.571645,26.87975745,60.39151764,211.6490196,-400,13.667544,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812443460 -1616812443484 ,112.5716435,26.87975535,60.38806152,211.6689091,214.7461337,13.67533,0.255197521,1620000000000 ,1620000000000 ,1620000000000 ,1616812443470 -1616812443494 ,112.5716428,26.8797543,60.38637543,211.6784986,214.7631595,13.681907,0.12767796,1620000000000 ,1620000000000 ,1620000000000 ,1616812443480 -1616812443505 ,112.5716421,26.87975325,60.384655,211.6895909,214.7690387,13.690194,0.127746717,1620000000000 ,1620000000000 ,1620000000000 ,1616812443490 -1616812443519 ,112.5716414,26.8797522,60.38288116,211.6993717,214.7792082,13.6989155,0.127832167,1620000000000 ,1620000000000 ,1620000000000 ,1616812443500 -1616812443526 ,112.5716406,26.87975115,60.381073,211.7089886,214.7765182,13.706274,0.127900531,1620000000000 ,1620000000000 ,1620000000000 ,1616812443510 -1616812443536 ,112.5716399,26.8797501,60.37926483,211.7192066,214.7694093,13.7114935,0.127952021,1620000000000 ,1620000000000 ,1620000000000 ,1616812443520 -1616812443549 ,112.5716392,26.87974905,60.37753296,211.7285776,214.776389,13.714212,0.127985099,1620000000000 ,1620000000000 ,1620000000000 ,1616812443530 -1616812443555 ,112.5716384,26.879748,60.37587357,211.741391,214.7887945,13.717508,0.12802308,1620000000000 ,1620000000000 ,1620000000000 ,1616812443540 -1616812443568 ,112.5716377,26.87974695,60.37426376,211.7536307,214.8014774,13.721498,0.128061559,1620000000000 ,1620000000000 ,1620000000000 ,1616812443550 -1616812443575 ,112.571637,26.8797459,60.37269211,211.7638214,214.7984793,13.726207,0.128101379,1620000000000 ,1620000000000 ,1620000000000 ,1616812443560 -1616812443587 ,112.5716362,26.87974484,60.37114716,211.7734383,214.8040955,13.734437,0.128175276,1620000000000 ,1620000000000 ,1620000000000 ,1616812443570 -1616812443599 ,112.5716355,26.87974379,60.3695755,211.7842027,214.8193761,13.74356,0.12825854,1620000000000 ,1620000000000 ,1620000000000 ,1616812443580 -1616812443614 ,112.5716348,26.87974274,60.36796188,211.7970981,214.8330473,13.751643,0.128339731,1620000000000 ,1620000000000 ,1620000000000 ,1616812443590 -1616812443618 ,112.571634,26.87974168,60.36641693,211.8092831,214.8435174,13.754162,0.128381733,1620000000000 ,1620000000000 ,1620000000000 ,1616812443600 -1616812443629 ,112.5716333,26.87974063,60.36503983,211.8208944,214.8456208,13.757373,0.128419216,1620000000000 ,1620000000000 ,1620000000000 ,1616812443610 -1616812443639 ,112.5716326,26.87973958,60.36373901,211.8324784,214.8514397,13.76109,0.128454096,1620000000000 ,1620000000000 ,1620000000000 ,1616812443620 -1616812443647 ,112.5716318,26.87973852,60.36243439,211.8429423,214.8767428,13.766817,0.12850934,1620000000000 ,1620000000000 ,1620000000000 ,1616812443630 -1616812443659 ,112.5716311,26.87973747,60.3610878,211.8541438,214.8938731,13.772646,0.128566798,1620000000000 ,1620000000000 ,1620000000000 ,1616812443640 -1616812443674 ,112.5716304,26.87973641,60.3597641,211.8654546,214.9094769,13.778607,0.128625469,1620000000000 ,1620000000000 ,1620000000000 ,1616812443650 -1616812443678 ,112.5716296,26.87973536,60.35848999,211.8764102,214.9104472,13.784414,0.128686434,1620000000000 ,1620000000000 ,1620000000000 ,1616812443660 -1616812443688 ,112.5716289,26.8797343,60.35723114,211.8887319,214.9204202,13.790304,0.128744384,1620000000000 ,1620000000000 ,1620000000000 ,1616812443670 -1616812443697 ,112.5716282,26.87973324,60.35596085,211.9006437,214.9375622,13.796467,0.128801876,1620000000000 ,1620000000000 ,1620000000000 ,1616812443680 -1616812443707 ,112.5716274,26.87973219,60.35463715,211.9123916,214.9629785,13.80375,0.12887292,1620000000000 ,1620000000000 ,1620000000000 ,1616812443690 -1616812443717 ,112.5716267,26.87973113,60.35325241,211.9234566,214.9824735,13.809269,0.128926183,1620000000000 ,1620000000000 ,1620000000000 ,1616812443700 -1616812443730 ,112.5716259,26.87973008,60.35181427,211.9330461,214.9951203,13.81566,0.128989196,1620000000000 ,1620000000000 ,1620000000000 ,1616812443710 -1616812443738 ,112.5716252,26.87972902,60.3503418,211.9421166,215.012767,13.820908,0.129040713,1620000000000 ,1620000000000 ,1620000000000 ,1616812443720 -1616812443750 ,112.5716245,26.87972796,60.34887314,211.9529357,215.024361,13.828447,0.129107059,1620000000000 ,1620000000000 ,1620000000000 ,1616812443730 -1616812443761 ,112.5716237,26.8797269,60.34744644,211.9630443,215.033979,13.834527,0.129174927,1620000000000 ,1620000000000 ,1620000000000 ,1616812443740 -1616812443771 ,112.571623,26.87972585,60.34604263,211.974,215.0418004,13.841297,0.129238082,1620000000000 ,1620000000000 ,1620000000000 ,1616812443750 -1616812443778 ,112.5716222,26.87972479,60.34464645,211.9853654,215.0544645,13.848881,0.129313221,1620000000000 ,1620000000000 ,1620000000000 ,1616812443760 -1616812443790 ,112.5716215,26.87972373,60.34321213,211.9957746,215.0723961,13.854788,0.129374003,1620000000000 ,1620000000000 ,1620000000000 ,1616812443770 -1616812443799 ,112.5716207,26.87972267,60.3417244,212.0070034,215.0859741,13.859529,0.129423618,1620000000000 ,1620000000000 ,1620000000000 ,1616812443780 -1616812443809 ,112.57162,26.87972161,60.340168,212.0183415,215.1050087,13.86444,0.129473054,1620000000000 ,1620000000000 ,1620000000000 ,1616812443790 -1616812443820 ,112.5716193,26.87972055,60.33860779,212.02886,215.1278343,13.870946,0.129527816,1620000000000 ,1620000000000 ,1620000000000 ,1616812443800 -1616812443828 ,112.5716185,26.87971949,60.33707428,212.0419194,215.1250423,13.876742,0.129588649,1620000000000 ,1620000000000 ,1620000000000 ,1616812443810 -1616812443840 ,112.5716178,26.87971843,60.33559036,212.0520827,215.1425175,13.884053,0.129663006,1620000000000 ,1620000000000 ,1620000000000 ,1616812443820 -1616812443849 ,112.571617,26.87971737,60.33409119,212.0621367,215.1644127,13.89008,0.129726504,1620000000000 ,1620000000000 ,1620000000000 ,1616812443830 -1616812443858 ,112.5716163,26.87971631,60.33253479,212.0703876,215.1850362,13.89658,0.129790069,1620000000000 ,1620000000000 ,1620000000000 ,1616812443840 -1616812443868 ,112.5716155,26.87971525,60.33093643,212.0771631,215.1994413,13.903933,0.129857316,1620000000000 ,1620000000000 ,1620000000000 ,1616812443850 -1616812443878 ,112.5716148,26.87971419,60.32930756,212.0833376,215.2102129,13.911704,0.129931197,1620000000000 ,1620000000000 ,1620000000000 ,1616812443860 -1616812443889 ,112.571614,26.87971312,60.32766342,212.093419,215.2164414,13.9166765,0.129986317,1620000000000 ,1620000000000 ,1620000000000 ,1616812443870 -1616812443900 ,112.5716133,26.87971206,60.32606506,212.1033364,215.2239441,13.9195175,0.130026266,1620000000000 ,1620000000000 ,1620000000000 ,1616812443880 -1616812443909 ,112.5716125,26.879711,60.32455063,212.1132812,215.2228607,13.922919,0.130056302,1620000000000 ,1620000000000 ,1620000000000 ,1616812443890 -1616812443918 ,112.5716118,26.87970994,60.32305908,212.1249745,215.2285061,13.930348,0.130117903,1620000000000 ,1620000000000 ,1620000000000 ,1616812443900 -1616812443929 ,112.571611,26.87970887,60.32149506,212.1362852,215.2390837,13.939343,0.13019967,1620000000000 ,1620000000000 ,1620000000000 ,1616812443910 -1616812443938 ,112.5716103,26.87970781,60.31980515,212.1461207,215.2543201,13.947025,0.130274499,1620000000000 ,1620000000000 ,1620000000000 ,1616812443920 -1616812443949 ,112.5716095,26.87970675,60.31801987,212.1563933,215.2611074,13.952246,0.130327804,1620000000000 ,1620000000000 ,1620000000000 ,1616812443930 -1616812443961 ,112.5716088,26.87970568,60.316185,212.1656277,215.2627389,13.957659,0.130372932,1620000000000 ,1620000000000 ,1620000000000 ,1616812443940 -1616812443969 ,112.571608,26.87970462,60.31430435,212.1779767,215.2675089,13.9631815,0.130426517,1620000000000 ,1620000000000 ,1620000000000 ,1616812443950 -1616812443980 ,112.5716073,26.87970355,60.31232071,212.1892875,215.2789255,13.970269,0.130481767,1620000000000 ,1620000000000 ,1620000000000 ,1616812443960 -1616812444002 ,112.5716065,26.87970249,60.31023788,212.1988225,215.2896239,13.978049,0.130555826,1620000000000 ,1620000000000 ,1620000000000 ,1616812443970 -1616812444006 ,112.5716057,26.87970142,60.30809402,212.2062537,215.3074325,13.985233,0.130623247,1620000000000 ,1620000000000 ,1620000000000 ,1616812443980 -1616812444010 ,112.571605,26.87970035,60.30594635,212.215133,215.3256143,13.991588,0.13068976,1620000000000 ,1620000000000 ,1620000000000 ,1616812443990 -1616812444019 ,112.5716042,26.87969929,60.30375671,212.2251597,215.3317374,13.99649,0.130737269,1620000000000 ,1620000000000 ,1620000000000 ,1616812444000 -1616812444033 ,112.5716035,26.87969822,60.30158997,212.2346127,215.3408224,14.000164,0.13078084,1620000000000 ,1620000000000 ,1620000000000 ,1616812444010 -1616812444043 ,112.5716027,26.87969715,60.29946136,212.2426176,215.3440956,14.004266,0.130814845,1620000000000 ,1620000000000 ,1620000000000 ,1616812444020 -1616812444051 ,112.571602,26.87969609,60.29732132,212.251333,215.3457486,14.010307,0.130869859,1620000000000 ,1620000000000 ,1620000000000 ,1616812444030 -1616812444060 ,112.5716012,26.87969502,60.29512024,212.2580265,215.3631356,14.017509,0.130933414,1620000000000 ,1620000000000 ,1620000000000 ,1616812444040 -1616812444070 ,112.5716004,26.87969395,60.29292679,212.2630809,215.3781023,14.023739,0.13100287,1620000000000 ,1620000000000 ,1620000000000 ,1616812444050 -1616812444080 ,112.5715997,26.87969288,60.290802,212.2669877,215.3742544,14.028914,0.131050257,1620000000000 ,1620000000000 ,1620000000000 ,1616812444060 -1616812444090 ,112.5715989,26.87969181,60.28872299,212.2708127,215.3783087,14.034995,0.13110945,1620000000000 ,1620000000000 ,1620000000000 ,1616812444070 -1616812444100 ,112.5715982,26.87969074,60.28661346,212.2757304,215.3820859,14.040826,0.131161777,1620000000000 ,1620000000000 ,1620000000000 ,1616812444080 -1616812444112 ,112.5715974,26.87968967,60.28446579,212.2795553,215.3906107,14.046481,0.131217734,1620000000000 ,1620000000000 ,1620000000000 ,1616812444090 -1616812444122 ,112.5715966,26.8796886,60.28232956,212.2835441,215.3892107,14.050978,0.131260672,1620000000000 ,1620000000000 ,1620000000000 ,1616812444100 -1616812444131 ,112.5715959,26.87968753,60.28022766,212.2875603,215.3847826,14.055391,0.131304757,1620000000000 ,1620000000000 ,1620000000000 ,1616812444110 -1616812444141 ,112.5715951,26.87968646,60.27815247,212.291112,215.3872722,14.059614,0.131342648,1620000000000 ,1620000000000 ,1620000000000 ,1616812444120 -1616812444156 ,112.5715944,26.87968539,60.27609253,212.2964942,215.3953663,14.065441,0.131398258,1620000000000 ,1620000000000 ,1620000000000 ,1616812444130 -1616812444163 ,112.5715936,26.87968432,60.27402878,212.2998819,215.3942773,14.07047,0.131443321,1620000000000 ,1620000000000 ,1620000000000 ,1616812444140 -1616812444173 ,112.5715928,26.87968325,60.27196121,212.301849,215.3984463,14.076609,0.131499209,1620000000000 ,1620000000000 ,1620000000000 ,1616812444150 -1616812444183 ,112.5715921,26.87968217,60.26987457,212.3029419,215.395654,14.082405,0.131549824,1620000000000 ,1620000000000 ,1620000000000 ,1616812444160 -1616812444192 ,112.5715913,26.8796811,60.26771927,212.3036249,215.4027562,14.0890045,0.131606471,1620000000000 ,1620000000000 ,1620000000000 ,1616812444170 -1616812444202 ,112.5715906,26.87968003,60.26550293,212.3042533,215.4156262,14.095016,0.131663621,1620000000000 ,1620000000000 ,1620000000000 ,1616812444180 -1616812444214 ,112.5715898,26.87967896,60.26326752,212.3035156,215.4174314,14.100403,0.131715339,1620000000000 ,1620000000000 ,1620000000000 ,1616812444190 -1616812444222 ,112.571589,26.87967788,60.26088715,212.2932976,215.6520915,14.113571,0.131992409,1620000000000 ,1620000000000 ,1620000000000 ,1616812444200 -1616812444231 ,112.5715882,26.87967681,60.25827026,212.2918223,216.0306962,14.117111,0.13239207,1620000000000 ,1620000000000 ,1620000000000 ,1616812444210 -1616812444243 ,112.5715875,26.87967574,60.25570679,212.2914398,216.0282747,14.120655,0.13242769,1620000000000 ,1620000000000 ,1620000000000 ,1616812444220 -1616812444254 ,112.5715867,26.87967467,60.25322723,212.2914671,216.0315336,14.12638,0.132478647,1620000000000 ,1620000000000 ,1620000000000 ,1616812444230 -1616812444263 ,112.5715859,26.8796736,60.25083923,212.2908388,216.0218673,14.132171,0.132528098,1620000000000 ,1620000000000 ,1620000000000 ,1616812444240 -1616812444273 ,112.5715851,26.87967253,60.24850082,212.2908661,216.0094856,14.1384535,0.132583666,1620000000000 ,1620000000000 ,1620000000000 ,1616812444250 -1616812444284 ,112.5715843,26.87967145,60.24619293,212.2918496,216.0048522,14.143562,0.132639536,1620000000000 ,1620000000000 ,1620000000000 ,1616812444260 -1616812444291 ,112.5715836,26.87967038,60.24394608,212.2906475,216.0010383,14.147711,0.132680462,1620000000000 ,1620000000000 ,1620000000000 ,1616812444270 -1616812444302 ,112.5715828,26.87966931,60.24182129,212.2895274,216.0074383,14.150407,0.132709912,1620000000000 ,1620000000000 ,1620000000000 ,1616812444280 -1616812444315 ,112.571582,26.87966823,60.23983383,212.2892542,216.0099615,14.154171,0.132750479,1620000000000 ,1620000000000 ,1620000000000 ,1616812444290 -1616812444323 ,112.5715812,26.87966716,60.23796463,212.2878335,216.0037634,14.158043,0.132791404,1620000000000 ,1620000000000 ,1620000000000 ,1616812444300 -1616812444336 ,112.5715804,26.87966608,60.23619843,212.2886531,216.0033132,14.161828,0.13283046,1620000000000 ,1620000000000 ,1620000000000 ,1616812444320 -1616812444344 ,112.5715797,26.87966501,60.23451614,212.2874783,216.000787,14.167418,0.132882046,1620000000000 ,1620000000000 ,1620000000000 ,1616812444330 -1616812444353 ,112.5715789,26.87966393,60.23289108,212.2887624,216.003037,14.173391,0.132940198,1620000000000 ,1620000000000 ,1620000000000 ,1616812444340 -1616812444363 ,112.5715781,26.87966286,60.23134995,212.2879974,216.0018694,14.179148,0.132999074,1620000000000 ,1620000000000 ,1620000000000 ,1616812444350 -1616812444378 ,112.5715773,26.87966178,60.22986984,212.2861123,216.0019151,14.182282,0.13303803,1620000000000 ,1620000000000 ,1620000000000 ,1616812444350 -1616812444385 ,112.5715758,26.87965963,60.22714996,212.2855932,216.0070272,14.187916,0.266176838,1620000000000 ,1620000000000 ,1620000000000 ,1616812444370 -1616812444395 ,112.571575,26.87965855,60.22592163,212.2831343,216.0043858,14.19086,0.133130132,1620000000000 ,1620000000000 ,1620000000000 ,1616812444380 -1616812444406 ,112.571575,26.87965855,60.22592163,212.2831343,-400,14.19086,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812444380 -1616812444418 ,112.5715734,26.87965639,60.223526,212.2832436,215.986407,14.199955,0.266376538,1620000000000 ,1620000000000 ,1620000000000 ,1616812444400 -1616812444425 ,112.5715734,26.87965639,60.223526,212.2832436,-400,14.199955,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812444410 -1616812444434 ,112.5715718,26.87965424,60.22093201,212.2807028,215.9820579,14.20843,0.26654752,1620000000000 ,1620000000000 ,1620000000000 ,1616812444420 -1616812444443 ,112.5715711,26.87965316,60.2195549,212.2800744,215.9821477,14.211067,0.133315547,1620000000000 ,1620000000000 ,1620000000000 ,1616812444430 -1616812444455 ,112.5715703,26.87965208,60.21812057,212.2784898,215.9781019,14.213207,0.133336497,1620000000000 ,1620000000000 ,1620000000000 ,1616812444440 -1616812444464 ,112.5715695,26.879651,60.21684647,212.2784351,215.7299077,14.215811,0.133111006,1620000000000 ,1620000000000 ,1620000000000 ,1616812444450 -1616812444475 ,112.5715687,26.87964992,60.21577072,212.2767686,215.4823899,14.219151,0.132895738,1620000000000 ,1620000000000 ,1620000000000 ,1616812444460 -1616812444485 ,112.571568,26.87964883,60.21465683,212.2762495,215.4806917,14.222006,0.132919673,1620000000000 ,1620000000000 ,1620000000000 ,1616812444470 -1616812444494 ,112.5715672,26.87964775,60.21345139,212.2761129,215.4954469,14.224892,0.132951081,1620000000000 ,1620000000000 ,1620000000000 ,1616812444480 -1616812444506 ,112.5715664,26.87964667,60.21213913,212.2762222,215.5015734,14.228778,0.132981814,1620000000000 ,1620000000000 ,1620000000000 ,1616812444490 -1616812444514 ,112.5715656,26.87964559,60.21077728,212.273736,215.4953215,14.232957,0.133012727,1620000000000 ,1620000000000 ,1620000000000 ,1616812444500 -1616812444530 ,112.5715649,26.8796445,60.20937347,212.2723426,215.4849528,14.237082,0.133052067,1620000000000 ,1620000000000 ,1620000000000 ,1616812444510 -1616812444537 ,112.5715641,26.87964342,60.20789337,212.2724246,215.4914988,14.2395315,0.133074386,1620000000000 ,1620000000000 ,1620000000000 ,1616812444520 -1616812444547 ,112.5715633,26.87964234,60.20636368,212.2701843,215.5033349,14.240738,0.133092906,1620000000000 ,1620000000000 ,1620000000000 ,1616812444530 -1616812444556 ,112.5715625,26.87964125,60.20483017,212.2691734,215.501369,14.242408,0.133100784,1620000000000 ,1620000000000 ,1620000000000 ,1616812444540 -1616812444567 ,112.5715618,26.87964017,60.20328903,212.2693647,215.4934767,14.246191,0.133131693,1620000000000 ,1620000000000 ,1620000000000 ,1616812444550 -1616812444576 ,112.571561,26.87963908,60.20163727,212.2670424,215.4850901,14.250621,0.133164508,1620000000000 ,1620000000000 ,1620000000000 ,1616812444560 -1616812444584 ,112.5715602,26.879638,60.19984436,212.2665506,215.4898622,14.256454,0.133210637,1620000000000 ,1620000000000 ,1620000000000 ,1616812444570 -1616812444595 ,112.5715595,26.87963691,60.19796753,212.2653212,215.4900881,14.259984,0.133238091,1620000000000 ,1620000000000 ,1620000000000 ,1616812444580 -1616812444605 ,112.5715587,26.87963583,60.1960907,212.2632721,215.4749597,14.262795,0.133270021,1620000000000 ,1620000000000 ,1620000000000 ,1616812444590 -1616812444616 ,112.5715579,26.87963474,60.19425964,212.2611684,215.4673447,14.263501,0.133281005,1620000000000 ,1620000000000 ,1620000000000 ,1616812444600 -1616812444628 ,112.5715571,26.87963366,60.19245529,212.2609225,215.4643526,14.266781,0.133300923,1620000000000 ,1620000000000 ,1620000000000 ,1616812444610 -1616812444636 ,112.5715564,26.87963257,60.19063187,212.2633814,215.4741797,14.270656,0.133336053,1620000000000 ,1620000000000 ,1620000000000 ,1616812444620 -1616812444645 ,112.5715556,26.87963149,60.18880463,212.266496,215.4811047,14.273267,0.133367183,1620000000000 ,1620000000000 ,1620000000000 ,1616812444630 -1616812444655 ,112.5715548,26.8796304,60.18698883,212.2670151,215.478496,14.274553,0.133383318,1620000000000 ,1620000000000 ,1620000000000 ,1616812444640 -1616812444665 ,112.571554,26.87962931,60.18518829,212.2667145,215.4754524,14.276908,0.133396685,1620000000000 ,1620000000000 ,1620000000000 ,1616812444650 -1616812444677 ,112.5715533,26.87962823,60.18337631,212.2658403,215.4781848,14.281724,0.133435956,1620000000000 ,1620000000000 ,1620000000000 ,1616812444660 -1616812444687 ,112.5715525,26.87962714,60.18154907,212.2657583,215.4870118,14.286401,0.133482343,1620000000000 ,1620000000000 ,1620000000000 ,1616812444670 -1616812444698 ,112.5715517,26.87962605,60.17973328,212.2648021,215.5005411,14.289694,0.133521091,1620000000000 ,1620000000000 ,1620000000000 ,1616812444680 -1616812444706 ,112.5715509,26.87962497,60.1779747,212.2625345,215.5138174,14.291173,0.133544772,1620000000000 ,1620000000000 ,1620000000000 ,1616812444690 -1616812444716 ,112.5715502,26.87962388,60.17631149,212.2603488,215.5091324,14.291828,0.133554786,1620000000000 ,1620000000000 ,1620000000000 ,1616812444700 -1616812444726 ,112.5715494,26.87962279,60.1747551,212.2580265,215.4970001,14.293987,0.133573252,1620000000000 ,1620000000000 ,1620000000000 ,1616812444710 -1616812444737 ,112.5715486,26.8796217,60.17324066,212.2571796,215.4903267,14.2982025,0.133608112,1620000000000 ,1620000000000 ,1620000000000 ,1616812444720 -1616812444747 ,112.5715478,26.87962062,60.17172623,212.2560594,215.4937898,14.302221,0.133649412,1620000000000 ,1620000000000 ,1620000000000 ,1616812444730 -1616812444760 ,112.5715471,26.87961953,60.17022705,212.2565785,215.4958451,14.304006,0.133676888,1620000000000 ,1620000000000 ,1620000000000 ,1616812444740 -1616812444768 ,112.5715463,26.87961844,60.16882324,212.2570703,215.4930493,14.304852,0.133691008,1620000000000 ,1620000000000 ,1620000000000 ,1616812444750 -1616812444780 ,112.5715455,26.87961735,60.16753387,212.2564146,215.4874916,14.304531,0.133697143,1620000000000 ,1620000000000 ,1620000000000 ,1616812444760 -1616812444788 ,112.5715447,26.87961626,60.16630936,212.2569337,215.4872447,14.304851,0.133702806,1620000000000 ,1620000000000 ,1620000000000 ,1616812444770 -1616812444797 ,112.571544,26.87961517,60.1651001,212.256961,215.4947008,14.305622,0.133714921,1620000000000 ,1620000000000 ,1620000000000 ,1616812444780 -1616812444807 ,112.5715432,26.87961408,60.1639061,212.2566605,215.502397,14.307138,0.133731703,1620000000000 ,1620000000000 ,1620000000000 ,1616812444790 -1616812444818 ,112.5715424,26.879613,60.16275787,212.2544475,215.5005056,14.307535,0.133745799,1620000000000 ,1620000000000 ,1620000000000 ,1616812444800 -1616812444829 ,112.5715416,26.87961191,60.16165543,212.2506773,215.4967336,14.307961,0.133756054,1620000000000 ,1620000000000 ,1620000000000 ,1616812444810 -1616812444838 ,112.5715408,26.87961082,60.16057587,212.2469343,215.5023213,14.310252,0.133776585,1620000000000 ,1620000000000 ,1620000000000 ,1616812444820 -1616812444851 ,112.5715401,26.87960973,60.15946198,212.2467704,215.5117775,14.312596,0.133800782,1620000000000 ,1620000000000 ,1620000000000 ,1616812444830 -1616812444858 ,112.5715393,26.87960864,60.15829849,212.2462786,215.5182151,14.313642,0.133822152,1620000000000 ,1620000000000 ,1620000000000 ,1616812444840 -1616812444870 ,112.5715385,26.87960755,60.15711594,212.2464699,215.5056943,14.314211,0.133828423,1620000000000 ,1620000000000 ,1620000000000 ,1616812444850 -1616812444877 ,112.5715377,26.87960646,60.15592957,212.2436831,215.4815643,14.314847,0.133831043,1620000000000 ,1620000000000 ,1620000000000 ,1616812444860 -1616812444888 ,112.571537,26.87960537,60.15468216,212.2427542,215.4678801,14.316807,0.133842321,1620000000000 ,1620000000000 ,1620000000000 ,1616812444870 -1616812444898 ,112.5715362,26.87960428,60.15325546,212.2436012,215.4573335,14.321402,0.133870859,1620000000000 ,1620000000000 ,1620000000000 ,1616812444880 -1616812444912 ,112.5715354,26.87960319,60.151577,212.243328,215.4561834,14.325857,0.133901044,1620000000000 ,1620000000000 ,1620000000000 ,1616812444890 -1616812444920 ,112.5715346,26.8796021,60.14963531,212.2444208,215.4561768,14.330366,0.133933751,1620000000000 ,1620000000000 ,1620000000000 ,1616812444900 -1616812444929 ,112.5715339,26.87960101,60.14747238,212.2451311,215.446129,14.334642,0.133960436,1620000000000 ,1620000000000 ,1620000000000 ,1616812444910 -1616812444939 ,112.5715331,26.87959991,60.14511871,212.2441749,215.4356357,14.338213,0.133984673,1620000000000 ,1620000000000 ,1620000000000 ,1616812444920 -1616812444948 ,112.5715323,26.87959882,60.14258575,212.2449945,215.4245813,14.340894,0.13399804,1620000000000 ,1620000000000 ,1620000000000 ,1616812444930 -1616812444957 ,112.5715315,26.87959773,60.13987732,212.2459508,215.424716,14.344049,0.134018309,1620000000000 ,1620000000000 ,1620000000000 ,1616812444940 -1616812444973 ,112.5715307,26.87959664,60.13703537,212.244776,215.4266044,14.347986,0.1340446,1620000000000 ,1620000000000 ,1620000000000 ,1616812444950 -1616812444982 ,112.57153,26.87959555,60.13408279,212.2449945,215.4243819,14.351901,0.134075655,1620000000000 ,1620000000000 ,1620000000000 ,1616812444960 -1616812444989 ,112.5715292,26.87959445,60.13104248,212.2448306,215.4218205,14.355407,0.134101679,1620000000000 ,1620000000000 ,1620000000000 ,1616812444970 -1616812445005 ,112.5715284,26.87959336,60.12792587,212.2469343,215.4217191,14.360052,0.134136538,1620000000000 ,1620000000000 ,1620000000000 ,1616812444980 -1616812445008 ,112.5715276,26.87959227,60.12475204,212.2482184,215.4200517,14.362925,0.134164232,1620000000000 ,1620000000000 ,1620000000000 ,1616812444990 -1616812445018 ,112.5715269,26.87959117,60.12154388,212.2505953,215.416919,14.364712,0.134178721,1620000000000 ,1620000000000 ,1620000000000 ,1616812445000 -1616812445031 ,112.5715261,26.87959008,60.11832047,212.2516608,215.4106364,14.36593,0.134185784,1620000000000 ,1620000000000 ,1620000000000 ,1616812445010 -1616812445040 ,112.5715253,26.87958899,60.11511612,212.2535733,215.4072614,14.365586,0.134184163,1620000000000 ,1620000000000 ,1620000000000 ,1616812445020 -1616812445051 ,112.5715245,26.87958789,60.11196136,212.254912,215.4060904,14.365817,0.134185095,1620000000000 ,1620000000000 ,1620000000000 ,1616812445030 -1616812445060 ,112.5715237,26.8795868,60.10885239,212.2580265,215.411192,14.366885,0.134192689,1620000000000 ,1620000000000 ,1620000000000 ,1616812445040 -1616812445071 ,112.571523,26.8795857,60.1057663,212.2589554,215.4177138,14.370447,0.134220933,1620000000000 ,1620000000000 ,1620000000000 ,1616812445050 -1616812445082 ,112.5715222,26.87958461,60.10267639,212.2622886,215.4118735,14.373251,0.13424418,1620000000000 ,1620000000000 ,1620000000000 ,1616812445060 -1616812445090 ,112.5715214,26.87958352,60.09959793,212.2644469,215.4007636,14.377223,0.134274903,1620000000000 ,1620000000000 ,1620000000000 ,1616812445070 -1616812445102 ,112.5715206,26.87958242,60.09657288,212.2667145,215.3926138,14.378924,0.134294271,1620000000000 ,1620000000000 ,1620000000000 ,1616812445080 -1616812445112 ,112.5715199,26.87958133,60.09363556,212.2679167,215.3930121,14.379363,0.134303172,1620000000000 ,1620000000000 ,1620000000000 ,1616812445090 -1616812445120 ,112.5715191,26.87958023,60.09079742,212.2696105,215.3952302,14.380122,0.134310825,1620000000000 ,1620000000000 ,1620000000000 ,1616812445100 -1616812445134 ,112.5715183,26.87957914,60.08805847,212.2734901,215.3957439,14.381166,0.134322475,1620000000000 ,1620000000000 ,1620000000000 ,1616812445110 -1616812445141 ,112.5715175,26.87957804,60.08540726,212.275102,215.3898007,14.382514,0.134339044,1620000000000 ,1620000000000 ,1620000000000 ,1616812445120 -1616812445151 ,112.5715167,26.87957695,60.08284378,212.2779707,215.3859598,14.38397,0.134352614,1620000000000 ,1620000000000 ,1620000000000 ,1616812445130 -1616812445160 ,112.571516,26.87957585,60.08039093,212.2823693,215.3917876,14.385176,0.134368146,1620000000000 ,1620000000000 ,1620000000000 ,1616812445140 -1616812445170 ,112.5715152,26.87957476,60.07807159,212.2856205,215.4015004,14.38549,0.134382303,1620000000000 ,1620000000000 ,1620000000000 ,1616812445150 -1616812445180 ,112.5715144,26.87957366,60.07590485,212.288899,215.4254558,14.383635,0.134383443,1620000000000 ,1620000000000 ,1620000000000 ,1616812445160 -1616812445190 ,112.5715136,26.87957257,60.07391357,212.2905929,215.4537483,14.382466,0.134382421,1620000000000 ,1620000000000 ,1620000000000 ,1616812445170 -1616812445199 ,112.5715129,26.87957147,60.07209778,212.291795,215.4759385,14.384236,0.134402622,1620000000000 ,1620000000000 ,1620000000000 ,1616812445180 -1616812445213 ,112.5715121,26.87957038,60.07048035,212.2923961,215.4987475,14.385977,0.134436628,1620000000000 ,1620000000000 ,1620000000000 ,1616812445190 -1616812445221 ,112.5715113,26.87956928,60.06905746,212.2925873,215.5113211,14.384723,0.134441391,1620000000000 ,1620000000000 ,1620000000000 ,1616812445200 -1616812445231 ,112.5715105,26.87956819,60.06827927,212.2833256,216.034372,14.392765,0.135171436,1620000000000 ,1620000000000 ,1620000000000 ,1616812445210 -1616812445242 ,112.5715097,26.8795671,60.06769562,212.2814677,216.0847812,14.393241,0.13523074,1620000000000 ,1620000000000 ,1620000000000 ,1616812445220 -1616812445250 ,112.5715089,26.879566,60.067173,212.2799105,216.0965298,14.397216,0.135265479,1620000000000 ,1620000000000 ,1620000000000 ,1616812445230 -1616812445260 ,112.5715081,26.87956491,60.06668091,212.2814951,216.1026309,14.399495,0.135297991,1620000000000 ,1620000000000 ,1620000000000 ,1616812445240 -1616812445271 ,112.5715073,26.87956382,60.06621552,212.281741,216.0877675,14.4013195,0.135312018,1620000000000 ,1620000000000 ,1620000000000 ,1616812445250 -1616812445287 ,112.5715065,26.87956272,60.0657959,212.2835714,216.066503,14.401495,0.135310752,1620000000000 ,1620000000000 ,1620000000000 ,1616812445260 -1616812445292 ,112.5715057,26.87956163,60.06537247,212.2863855,216.0379106,14.402402,0.135310447,1620000000000 ,1620000000000 ,1620000000000 ,1616812445270 -1616812445302 ,112.5715049,26.87956053,60.06483078,212.2900465,216.0269884,14.4049225,0.135320647,1620000000000 ,1620000000000 ,1620000000000 ,1616812445280 -1616812445312 ,112.5715041,26.87955944,60.06411362,212.294008,216.0331415,14.409774,0.135350435,1620000000000 ,1620000000000 ,1620000000000 ,1616812445290 -1616812445322 ,112.5715033,26.87955834,60.0632019,212.2967947,216.0345301,14.416057,0.135397873,1620000000000 ,1620000000000 ,1620000000000 ,1616812445300 -1616812445334 ,112.5715025,26.87955725,60.06217194,212.2950735,216.0343908,14.4180355,0.135422739,1620000000000 ,1620000000000 ,1620000000000 ,1616812445310 -1616812445348 ,112.5715017,26.87955615,60.06112289,212.2962483,216.0346701,14.41972,0.135430825,1620000000000 ,1620000000000 ,1620000000000 ,1616812445320 -1616812445357 ,112.5715009,26.87955506,60.06015778,212.2982973,216.0450767,14.420446,0.13544918,1620000000000 ,1620000000000 ,1620000000000 ,1616812445330 -1616812445363 ,112.5715001,26.87955396,60.05925369,212.3028326,216.0579402,14.422812,0.135463355,1620000000000 ,1620000000000 ,1620000000000 ,1616812445340 -1616812445373 ,112.5714993,26.87955287,60.05842209,212.3057013,216.0687928,14.424835,0.135493086,1620000000000 ,1620000000000 ,1620000000000 ,1616812445350 -1616812445387 ,112.5714985,26.87955177,60.05770493,212.3067394,216.0646632,14.425697,0.135503005,1620000000000 ,1620000000000 ,1620000000000 ,1616812445360 -1616812445395 ,112.5714977,26.87955068,60.05706406,212.3046358,216.0614718,14.427555,0.135519366,1620000000000 ,1620000000000 ,1620000000000 ,1616812445370 -1616812445403 ,112.5714969,26.87954958,60.05641174,212.3065209,216.0734342,14.430444,0.13554309,1620000000000 ,1620000000000 ,1620000000000 ,1616812445380 -1616812445412 ,112.5714961,26.87954849,60.0557518,212.3106463,216.0805687,14.432736,0.135570435,1620000000000 ,1620000000000 ,1620000000000 ,1616812445390 -1616812445423 ,112.5714954,26.87954739,60.0552063,212.3125314,216.0608231,14.432178,0.135564124,1620000000000 ,1620000000000 ,1620000000000 ,1616812445400 -1616812445435 ,112.5714946,26.87954629,60.05492783,212.3137062,216.0369608,14.432561,0.13556938,1620000000000 ,1620000000000 ,1620000000000 ,1616812445410 -1616812445444 ,112.5714938,26.8795452,60.0547905,212.3138428,216.0306079,14.433674,0.135585282,1620000000000 ,1620000000000 ,1620000000000 ,1616812445430 -1616812445454 ,112.571493,26.8795441,60.05462265,212.3180502,216.0384144,14.436192,0.135599175,1620000000000 ,1620000000000 ,1620000000000 ,1616812445440 -1616812445463 ,112.5714922,26.87954301,60.05436707,212.3227221,216.0519563,14.439398,0.135628466,1620000000000 ,1620000000000 ,1620000000000 ,1616812445450 -1616812445474 ,112.5714914,26.87954191,60.05410385,212.322886,216.0470008,14.444228,0.135671343,1620000000000 ,1620000000000 ,1620000000000 ,1616812445460 -1616812445483 ,112.5714906,26.87954081,60.05356598,212.3241428,215.5613053,14.445663,0.135024215,1620000000000 ,1620000000000 ,1620000000000 ,1616812445470 -1616812445495 ,112.5714898,26.87953971,60.05313873,212.3256454,215.5573231,14.444164,0.135019805,1620000000000 ,1620000000000 ,1620000000000 ,1616812445480 -1616812445503 ,112.571489,26.87953861,60.05283356,212.3274759,215.5705372,14.442395,0.135011848,1620000000000 ,1620000000000 ,1620000000000 ,1616812445480 -1616812445517 ,112.5714874,26.87953642,60.05250931,212.3309183,215.5741418,14.445479,0.270064829,1620000000000 ,1620000000000 ,1620000000000 ,1616812445500 -1616812445523 ,112.5714874,26.87953642,60.05250931,212.3309183,-400,14.445479,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812445510 -1616812445534 ,112.5714859,26.87953422,60.05238724,212.3336504,215.5495878,14.449382,0.270151674,1620000000000 ,1620000000000 ,1620000000000 ,1616812445520 -1616812445545 ,112.5714851,26.87953312,60.05231857,212.332421,215.5347629,14.450061,0.135088036,1620000000000 ,1620000000000 ,1620000000000 ,1616812445530 -1616812445555 ,112.5714843,26.87953202,60.05226135,212.3318199,215.5348226,14.450962,0.13510016,1620000000000 ,1620000000000 ,1620000000000 ,1616812445540 -1616812445564 ,112.5714835,26.87953092,60.05223465,212.3341695,215.5317327,14.452858,0.135118446,1620000000000 ,1620000000000 ,1620000000000 ,1616812445550 -1616812445580 ,112.5714827,26.87952982,60.05223083,212.3347159,215.5254365,14.453678,0.135130418,1620000000000 ,1620000000000 ,1620000000000 ,1616812445560 -1616812445585 ,112.5714819,26.87952872,60.05224991,212.3352896,215.5219876,14.45445,0.135146053,1620000000000 ,1620000000000 ,1620000000000 ,1616812445570 -1616812445595 ,112.5714812,26.87952762,60.0522728,212.3376939,215.5109503,14.45505,0.135152183,1620000000000 ,1620000000000 ,1620000000000 ,1616812445580 -1616812445604 ,112.5714812,26.87952762,60.0522728,212.3376939,-400,14.45505,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812445590 -1616812445614 ,112.5714796,26.87952542,60.05216217,212.3428028,215.5063834,14.46122,0.270382379,1620000000000 ,1620000000000 ,1620000000000 ,1616812445600 -1616812445626 ,112.5714788,26.87952432,60.05189133,212.3451251,215.5214528,14.463101,0.135226542,1620000000000 ,1620000000000 ,1620000000000 ,1616812445610 -1616812445635 ,112.571478,26.87952322,60.05147552,212.3485675,215.5371629,14.463465,0.135235939,1620000000000 ,1620000000000 ,1620000000000 ,1616812445620 -1616812445651 ,112.5714772,26.87952212,60.05093384,212.3498243,215.528955,14.4647455,0.135240103,1620000000000 ,1620000000000 ,1620000000000 ,1616812445630 -1616812445661 ,112.5714764,26.87952102,60.05024719,212.3521739,215.5269473,14.467571,0.135260215,1620000000000 ,1620000000000 ,1620000000000 ,1616812445640 -1616812445669 ,112.5714757,26.87951992,60.04940033,212.3530755,215.5310552,14.470951,0.135285562,1620000000000 ,1620000000000 ,1620000000000 ,1616812445650 -1616812445678 ,112.5714749,26.87951882,60.04842758,212.3520646,215.5401915,14.473357,0.13531056,1620000000000 ,1620000000000 ,1620000000000 ,1616812445660 -1616812445686 ,112.5714741,26.87951771,60.04735184,212.3525564,215.5460829,14.477001,0.135340906,1620000000000 ,1620000000000 ,1620000000000 ,1616812445670 -1616812445695 ,112.5714733,26.87951661,60.04613495,212.3534033,215.5450765,14.481353,0.135376075,1620000000000 ,1620000000000 ,1620000000000 ,1616812445680 -1616812445705 ,112.5714725,26.87951551,60.0447464,212.3552338,215.5398134,14.484503,0.135402143,1620000000000 ,1620000000000 ,1620000000000 ,1616812445690 -1616812445716 ,112.5714717,26.87951441,60.04318619,212.3544142,215.5286617,14.485489,0.135405117,1620000000000 ,1620000000000 ,1620000000000 ,1616812445700 -1616812445727 ,112.5714709,26.87951331,60.04148865,212.3570643,215.5158543,14.486749,0.135406048,1620000000000 ,1620000000000 ,1620000000000 ,1616812445710 -1616812445737 ,112.5714701,26.8795122,60.03967285,212.3583757,215.5095413,14.487304,0.135408059,1620000000000 ,1620000000000 ,1620000000000 ,1616812445720 -1616812445746 ,112.5714694,26.8795111,60.03778076,212.362064,215.5081682,14.488454,0.135414148,1620000000000 ,1620000000000 ,1620000000000 ,1616812445730 -1616812445756 ,112.5714686,26.87951,60.03583527,212.3653971,215.5080393,14.491476,0.135435754,1620000000000 ,1620000000000 ,1620000000000 ,1616812445740 -1616812445765 ,112.5714678,26.8795089,60.03380203,212.3688669,215.5087989,14.494865,0.135461641,1620000000000 ,1620000000000 ,1620000000000 ,1616812445750 -1616812445776 ,112.571467,26.87950779,60.03159714,212.3727191,215.514511,14.498605,0.135486413,1620000000000 ,1620000000000 ,1620000000000 ,1616812445760 -1616812445786 ,112.5714662,26.87950669,60.02919388,212.3761615,215.5225016,14.502516,0.13551767,1620000000000 ,1620000000000 ,1620000000000 ,1616812445770 -1616812445800 ,112.5714654,26.87950559,60.02664185,212.3774729,215.5200518,14.505924,0.135541285,1620000000000 ,1620000000000 ,1620000000000 ,1616812445780 -1616812445807 ,112.5714646,26.87950448,60.02404404,212.3774456,215.5128484,14.506527,0.135548853,1620000000000 ,1620000000000 ,1620000000000 ,1616812445790 -1616812445827 ,112.5714638,26.87950338,60.02147293,212.3808607,215.5116678,14.507068,0.135553755,1620000000000 ,1620000000000 ,1620000000000 ,1616812445800 -1616812445832 ,112.5714631,26.87950228,60.01891327,212.3840845,215.5260237,14.507403,0.135561493,1620000000000 ,1620000000000 ,1620000000000 ,1616812445810 -1616812445835 ,112.5714623,26.87950117,60.01636505,212.3888656,215.5319608,14.50704,0.135559942,1620000000000 ,1620000000000 ,1620000000000 ,1616812445820 -1616812445850 ,112.5714615,26.87950007,60.01384354,212.3948489,215.5259479,14.505913,0.135549712,1620000000000 ,1620000000000 ,1620000000000 ,1616812445830 -1616812445858 ,112.5714607,26.87949897,60.01131821,212.4006955,215.5163257,14.509293,0.135563082,1620000000000 ,1620000000000 ,1620000000000 ,1616812445840 -1616812445873 ,112.5714599,26.87949786,60.00871277,212.4074438,215.5126753,14.516003,0.135616045,1620000000000 ,1620000000000 ,1620000000000 ,1616812445850 -1616812445881 ,112.5714591,26.87949676,60.0060463,212.4103944,215.5269726,14.521951,0.135671234,1620000000000 ,1620000000000 ,1620000000000 ,1616812445860 -1616812445890 ,112.5714583,26.87949566,60.00340271,212.4108315,215.5456407,14.5217085,0.135689842,1620000000000 ,1620000000000 ,1620000000000 ,1616812445870 -1616812445899 ,112.5714575,26.87949455,60.00085831,212.4149843,215.5618097,14.520041,0.135683308,1620000000000 ,1620000000000 ,1620000000000 ,1616812445880 -1616812445910 ,112.5714568,26.87949345,59.99843597,212.4199293,215.5661043,14.517324,0.135665241,1620000000000 ,1620000000000 ,1620000000000 ,1616812445890 -1616812445918 ,112.571456,26.87949235,59.99615479,212.4253115,215.5621637,14.514579,0.135644162,1620000000000 ,1620000000000 ,1620000000000 ,1616812445900 -1616812445928 ,112.5714552,26.87949124,59.99397659,212.4318412,215.5618503,14.516054,0.135649336,1620000000000 ,1620000000000 ,1620000000000 ,1616812445910 -1616812445938 ,112.5714544,26.87949014,59.99183273,212.4388899,215.5729732,14.519722,0.135681756,1620000000000 ,1620000000000 ,1620000000000 ,1616812445920 -1616812445951 ,112.5714536,26.87948903,59.98971176,212.4454196,215.5909299,14.523308,0.135722812,1620000000000 ,1620000000000 ,1620000000000 ,1616812445930 -1616812445960 ,112.5714528,26.87948793,59.98768997,212.4494631,215.596415,14.52477,0.135748162,1620000000000 ,1620000000000 ,1620000000000 ,1616812445940 -1616812445968 ,112.571452,26.87948683,59.98581696,212.4542715,215.5913031,14.5239105,0.135748836,1620000000000 ,1620000000000 ,1620000000000 ,1616812445950 -1616812445983 ,112.5714512,26.87948572,59.98404694,212.4579052,215.5938484,14.523572,0.135747514,1620000000000 ,1620000000000 ,1620000000000 ,1616812445960 -1616812445994 ,112.5714504,26.87948462,59.98233032,212.4636699,215.6066656,14.522772,0.135748461,1620000000000 ,1620000000000 ,1620000000000 ,1616812445970 -1616812445999 ,112.5714496,26.87948352,59.98069763,212.468451,215.6148592,14.521547,0.13574408,1620000000000 ,1620000000000 ,1620000000000 ,1616812445980 -1616812446009 ,112.5714489,26.87948241,59.97922134,212.4733141,215.6110139,14.520664,0.135737922,1620000000000 ,1620000000000 ,1620000000000 ,1616812445990 -1616812446021 ,112.5714481,26.87948131,59.97789764,212.4774395,215.6077046,14.521057,0.135742121,1620000000000 ,1620000000000 ,1620000000000 ,1616812446000 -1616812446030 ,112.5714473,26.8794802,59.97662735,212.4832862,215.6144536,14.523515,0.135768349,1620000000000 ,1620000000000 ,1620000000000 ,1616812446010 -1616812446039 ,112.5714465,26.8794791,59.97534561,212.489406,215.63652,14.52561,0.135792182,1620000000000 ,1620000000000 ,1620000000000 ,1616812446020 -1616812446050 ,112.5714457,26.879478,59.97410202,212.4941325,215.6478967,14.526346,0.135809419,1620000000000 ,1620000000000 ,1620000000000 ,1616812446030 -1616812446060 ,112.5714449,26.87947689,59.97293854,212.4990229,215.6422121,14.524911,0.135801067,1620000000000 ,1620000000000 ,1620000000000 ,1616812446040 -1616812446069 ,112.5714441,26.87947579,59.97183609,212.5026293,215.6441335,14.525531,0.135805794,1620000000000 ,1620000000000 ,1620000000000 ,1616812446050 -1616812446080 ,112.5714433,26.87947469,59.97075653,212.5073558,215.6527183,14.526428,0.135817335,1620000000000 ,1620000000000 ,1620000000000 ,1616812446060 -1616812446089 ,112.5714425,26.87947358,59.9696846,212.5134756,215.6615158,14.526365,0.135821163,1620000000000 ,1620000000000 ,1620000000000 ,1616812446070 -1616812446100 ,112.5714417,26.87947248,59.96865082,212.5171366,215.6683999,14.526276,0.135823369,1620000000000 ,1620000000000 ,1620000000000 ,1616812446080 -1616812446112 ,112.5714409,26.87947138,59.96762848,212.5225461,215.6697301,14.526948,0.135831449,1620000000000 ,1620000000000 ,1620000000000 ,1616812446090 -1616812446120 ,112.5714402,26.87947027,59.96659851,212.5269721,215.6772907,14.527479,0.135833462,1620000000000 ,1620000000000 ,1620000000000 ,1616812446100 -1616812446129 ,112.5714394,26.87946917,59.96554947,212.5326001,215.6798532,14.528291,0.135842317,1620000000000 ,1620000000000 ,1620000000000 ,1616812446110 -1616812446139 ,112.5714386,26.87946807,59.96450424,212.535824,215.6815826,14.527413,0.135839233,1620000000000 ,1620000000000 ,1620000000000 ,1616812446120 -1616812446149 ,112.5714378,26.87946696,59.9634552,212.5400314,215.6842887,14.52902,0.135848859,1620000000000 ,1620000000000 ,1620000000000 ,1616812446130 -1616812446159 ,112.571437,26.87946586,59.96239471,212.5434192,215.6902475,14.53163,0.135870343,1620000000000 ,1620000000000 ,1620000000000 ,1616812446140 -1616812446174 ,112.5714362,26.87946476,59.9613266,212.5486921,215.6997656,14.533689,0.135891887,1620000000000 ,1620000000000 ,1620000000000 ,1616812446150 -1616812446181 ,112.5714354,26.87946365,59.96023178,212.5547846,215.7043462,14.535317,0.135909032,1620000000000 ,1620000000000 ,1620000000000 ,1616812446160 -1616812446193 ,112.5714346,26.87946255,59.95910263,212.5600302,215.7116845,14.535568,0.135916503,1620000000000 ,1620000000000 ,1620000000000 ,1616812446170 -1616812446202 ,112.5714338,26.87946144,59.95796585,212.5653851,215.7138677,14.534269,0.135907006,1620000000000 ,1620000000000 ,1620000000000 ,1616812446180 -1616812446212 ,112.571433,26.87946034,59.95684433,212.5700569,215.7083732,14.532412,0.135890909,1620000000000 ,1620000000000 ,1620000000000 ,1616812446190 -1616812446221 ,112.5714322,26.87945924,59.95572281,212.5741004,215.7088639,14.53307,0.135888611,1620000000000 ,1620000000000 ,1620000000000 ,1616812446200 -1616812446232 ,112.5714314,26.87945814,59.95498657,212.5777887,216.4553352,14.543117,0.136814866,1620000000000 ,1620000000000 ,1620000000000 ,1616812446210 -1616812446242 ,112.5714306,26.87945704,59.95433044,212.5823239,216.5527668,14.5439205,0.136893176,1620000000000 ,1620000000000 ,1620000000000 ,1616812446220 -1616812446256 ,112.5714298,26.87945594,59.95368195,212.5873509,216.5506295,14.544324,0.136896571,1620000000000 ,1620000000000 ,1620000000000 ,1616812446240 -1616812446264 ,112.571429,26.87945484,59.95302582,212.5929517,216.5477861,14.546413,0.136911618,1620000000000 ,1620000000000 ,1620000000000 ,1616812446250 -1616812446274 ,112.5714281,26.87945374,59.95231628,212.5996999,216.5489352,14.546986,0.136919693,1620000000000 ,1620000000000 ,1620000000000 ,1616812446260 -1616812446285 ,112.5714273,26.87945264,59.95152664,212.6058198,216.5519131,14.548213,0.136926447,1620000000000 ,1620000000000 ,1620000000000 ,1616812446270 -1616812446300 ,112.5714257,26.87945044,59.94987869,212.6158192,216.5623414,14.547172,0.273849346,1620000000000 ,1620000000000 ,1620000000000 ,1616812446280 -1616812446304 ,112.5714257,26.87945044,59.94987869,212.6158192,-400,14.547172,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812446280 -1616812446315 ,112.5714249,26.87944934,59.94911957,212.6201632,216.569511,14.54607,0.136919005,1620000000000 ,1620000000000 ,1620000000000 ,1616812446300 -1616812446324 ,112.5714233,26.87944714,59.94763184,212.6303538,216.5801452,14.5473995,0.273842017,1620000000000 ,1620000000000 ,1620000000000 ,1616812446310 -1616812446334 ,112.5714224,26.87944604,59.94684601,212.6355448,216.5818932,14.549276,0.136940944,1620000000000 ,1620000000000 ,1620000000000 ,1616812446320 -1616812446345 ,112.5714216,26.87944494,59.94598389,212.6415007,216.5813362,14.551343,0.13695736,1620000000000 ,1620000000000 ,1620000000000 ,1616812446330 -1616812446355 ,112.5714208,26.87944384,59.9450264,212.6460086,216.586218,14.551665,0.13696237,1620000000000 ,1620000000000 ,1620000000000 ,1616812446340 -1616812446364 ,112.57142,26.87944274,59.94400787,212.6492325,216.5966684,14.551752,0.136963845,1620000000000 ,1620000000000 ,1620000000000 ,1616812446350 -1616812446374 ,112.5714192,26.87944164,59.94299316,212.6537404,216.6034139,14.55247,0.13696764,1620000000000 ,1620000000000 ,1620000000000 ,1616812446360 -1616812446384 ,112.5714184,26.87944054,59.9419899,212.6585762,216.598221,14.552016,0.136967535,1620000000000 ,1620000000000 ,1620000000000 ,1616812446370 -1616812446396 ,112.5714175,26.87943944,59.94101334,212.6643408,216.5953667,14.552073,0.136968409,1620000000000 ,1620000000000 ,1620000000000 ,1616812446380 -1616812446407 ,112.5714167,26.87943834,59.94005203,212.6696684,216.5955523,14.549849,0.136951884,1620000000000 ,1620000000000 ,1620000000000 ,1616812446390 -1616812446416 ,112.5714159,26.87943724,59.93909073,212.6753784,216.6031856,14.551011,0.13695485,1620000000000 ,1620000000000 ,1620000000000 ,1616812446400 -1616812446426 ,112.5714151,26.87943614,59.93811035,212.6792306,216.6072141,14.552914,0.136971947,1620000000000 ,1620000000000 ,1620000000000 ,1616812446410 -1616812446435 ,112.5714143,26.87943504,59.93709183,212.6837386,216.6124059,14.556046,0.137000726,1620000000000 ,1620000000000 ,1620000000000 ,1616812446420 -1616812446444 ,112.5714135,26.87943394,59.93606949,212.6883558,216.6189773,14.5562315,0.137007888,1620000000000 ,1620000000000 ,1620000000000 ,1616812446430 -1616812446459 ,112.5714126,26.87943285,59.93505859,212.6913884,216.6218193,14.554593,0.137001572,1620000000000 ,1620000000000 ,1620000000000 ,1616812446440 -1616812446465 ,112.5714118,26.87943175,59.93408966,212.6966886,216.6244477,14.552736,0.136983134,1620000000000 ,1620000000000 ,1620000000000 ,1616812446450 -1616812446474 ,112.571411,26.87943064,59.93282318,212.7019615,215.9805065,14.553205,0.136139276,1620000000000 ,1620000000000 ,1620000000000 ,1616812446460 -1616812446486 ,112.5714102,26.87942954,59.93154526,212.7073983,215.9814543,14.554666,0.136148415,1620000000000 ,1620000000000 ,1620000000000 ,1616812446470 -1616812446497 ,112.5714094,26.87942844,59.93024445,212.711797,215.9809545,14.55516,0.136156551,1620000000000 ,1620000000000 ,1620000000000 ,1616812446480 -1616812446509 ,112.5714086,26.87942734,59.92895508,212.7168513,215.9845083,14.5552225,0.136159644,1620000000000 ,1620000000000 ,1620000000000 ,1616812446490 -1616812446522 ,112.5714078,26.87942624,59.92769623,212.7222608,215.992719,14.554509,0.136159098,1620000000000 ,1620000000000 ,1620000000000 ,1616812446500 -1616812446528 ,112.571407,26.87942514,59.92649078,212.7266322,215.9976022,14.553768,0.136156775,1620000000000 ,1620000000000 ,1620000000000 ,1616812446510 -1616812446536 ,112.5714062,26.87942403,59.92531586,212.7307303,216.00376,14.554676,0.136161679,1620000000000 ,1620000000000 ,1620000000000 ,1616812446520 -1616812446552 ,112.5714054,26.87942293,59.92414093,212.7355114,216.005519,14.555239,0.136168755,1620000000000 ,1620000000000 ,1620000000000 ,1616812446530 -1616812446560 ,112.5714046,26.87942183,59.92292786,212.7406477,216.0079756,14.555341,0.136172895,1620000000000 ,1620000000000 ,1620000000000 ,1616812446540 -1616812446566 ,112.5714038,26.87942073,59.92168808,212.7460572,216.0210637,14.555868,0.1361783,1620000000000 ,1620000000000 ,1620000000000 ,1616812446550 -1616812446576 ,112.571403,26.87941963,59.92044449,212.752423,216.0273472,14.556314,0.136181897,1620000000000 ,1620000000000 ,1620000000000 ,1616812446560 -1616812446590 ,112.5714022,26.87941853,59.9192276,212.7561113,216.0332677,14.55645,0.136187975,1620000000000 ,1620000000000 ,1620000000000 ,1616812446570 -1616812446598 ,112.5714014,26.87941743,59.91802216,212.7590346,216.0411674,14.555446,0.136185196,1620000000000 ,1620000000000 ,1620000000000 ,1616812446580 -1616812446607 ,112.5714006,26.87941632,59.91680145,212.764608,216.0460572,14.554924,0.136177719,1620000000000 ,1620000000000 ,1620000000000 ,1616812446590 -1616812446617 ,112.5713998,26.87941522,59.91556931,212.7692252,216.0524345,14.555397,0.136179521,1620000000000 ,1620000000000 ,1620000000000 ,1616812446600 -1616812446628 ,112.571399,26.87941412,59.91430283,212.7733233,216.0558313,14.557526,0.136195519,1620000000000 ,1620000000000 ,1620000000000 ,1616812446610 -1616812446637 ,112.5713982,26.87941302,59.9129982,212.7781045,216.0591519,14.559749,0.136216815,1620000000000 ,1620000000000 ,1620000000000 ,1616812446620 -1616812446649 ,112.5713974,26.87941192,59.91167068,212.7821206,216.0599202,14.559804,0.136220472,1620000000000 ,1620000000000 ,1620000000000 ,1616812446630 -1616812446660 ,112.5713966,26.87941082,59.91034317,212.7863553,216.0624091,14.559223,0.136217701,1620000000000 ,1620000000000 ,1620000000000 ,1616812446640 -1616812446667 ,112.5713958,26.87940972,59.90902328,212.7904534,216.0708674,14.558902,0.136213394,1620000000000 ,1620000000000 ,1620000000000 ,1616812446650 -1616812446678 ,112.571395,26.87940862,59.90771866,212.7943876,216.0812121,14.559133,0.136218521,1620000000000 ,1620000000000 ,1620000000000 ,1616812446660 -1616812446687 ,112.5713942,26.87940752,59.90643692,212.8003982,216.0833847,14.559748,0.136224187,1620000000000 ,1620000000000 ,1620000000000 ,1616812446670 -1616812446696 ,112.5713934,26.87940642,59.90517807,212.8059716,216.0775608,14.561363,0.136239371,1620000000000 ,1620000000000 ,1620000000000 ,1616812446680 -1616812446707 ,112.5713926,26.87940531,59.90392303,212.8111626,216.0806586,14.563674,0.136257357,1620000000000 ,1620000000000 ,1620000000000 ,1616812446690 -1616812446717 ,112.5713918,26.87940421,59.9026413,212.8160257,216.0913545,14.564492,0.136272075,1620000000000 ,1620000000000 ,1620000000000 ,1616812446700 -1616812446727 ,112.571391,26.87940311,59.90133667,212.8222821,216.1041112,14.566044,0.136285734,1620000000000 ,1620000000000 ,1620000000000 ,1616812446710 -1616812446744 ,112.5713902,26.87940201,59.90005112,212.8255606,216.1107864,14.568282,0.136307291,1620000000000 ,1620000000000 ,1620000000000 ,1616812446720 -1616812446763 ,112.5713894,26.87940091,59.89876938,212.8302325,216.1133283,14.570791,0.136330325,1620000000000 ,1620000000000 ,1620000000000 ,1616812446730 -1616812446765 ,112.5713886,26.87939981,59.89748001,212.8343033,216.1154212,14.5738945,0.136357069,1620000000000 ,1620000000000 ,1620000000000 ,1616812446740 -1616812446770 ,112.5713878,26.87939871,59.89616776,212.8393303,216.1227331,14.576399,0.136384651,1620000000000 ,1620000000000 ,1620000000000 ,1616812446750 -1616812446778 ,112.571387,26.8793976,59.89485931,212.8430459,216.1299165,14.57874,0.136407773,1620000000000 ,1620000000000 ,1620000000000 ,1616812446760 -1616812446788 ,112.5713862,26.8793965,59.89357758,212.8488652,216.1309627,14.581924,0.136437165,1620000000000 ,1620000000000 ,1620000000000 ,1616812446770 -1616812446798 ,112.5713854,26.8793954,59.89230347,212.8523896,216.1335988,14.58437,0.136461654,1620000000000 ,1620000000000 ,1620000000000 ,1616812446780 -1616812446808 ,112.5713846,26.8793943,59.89098358,212.8569248,216.1391138,14.58911,0.136498433,1620000000000 ,1620000000000 ,1620000000000 ,1616812446790 -1616812446819 ,112.5713837,26.8793932,59.88959503,212.8601214,216.150027,14.592394,0.136535818,1620000000000 ,1620000000000 ,1620000000000 ,1616812446800 -1616812446829 ,112.5713829,26.87939209,59.88818359,212.8654489,216.1566638,14.594396,0.136555692,1620000000000 ,1620000000000 ,1620000000000 ,1616812446810 -1616812446838 ,112.5713821,26.87939099,59.88681412,212.8685635,216.1544121,14.5966625,0.136577682,1620000000000 ,1620000000000 ,1620000000000 ,1616812446820 -1616812446851 ,112.5713813,26.87938989,59.88550949,212.8733993,216.1539937,14.599138,0.136602265,1620000000000 ,1620000000000 ,1620000000000 ,1616812446830 -1616812446858 ,112.5713805,26.87938878,59.88423157,212.8774427,216.161183,14.601076,0.136625739,1620000000000 ,1620000000000 ,1620000000000 ,1616812446840 -1616812446869 ,112.5713797,26.87938768,59.88293076,212.8820326,216.1679731,14.60293,0.136642858,1620000000000 ,1620000000000 ,1620000000000 ,1616812446850 -1616812446880 ,112.5713789,26.87938658,59.8815918,212.8859122,216.1757979,14.604966,0.136661881,1620000000000 ,1620000000000 ,1620000000000 ,1616812446860 -1616812446890 ,112.5713781,26.87938547,59.88022614,212.8894092,216.178794,14.60768,0.136682426,1620000000000 ,1620000000000 ,1620000000000 ,1616812446870 -1616812446898 ,112.5713773,26.87938437,59.87886047,212.8945182,216.1804553,14.610037,0.136708917,1620000000000 ,1620000000000 ,1620000000000 ,1616812446880 -1616812446910 ,112.5713765,26.87938327,59.87752151,212.8973049,216.1796574,14.612445,0.136730356,1620000000000 ,1620000000000 ,1620000000000 ,1616812446890 -1616812446920 ,112.5713757,26.87938216,59.87620926,212.9008293,216.1843169,14.6146965,0.136754555,1620000000000 ,1620000000000 ,1620000000000 ,1616812446900 -1616812446928 ,112.5713749,26.87938106,59.87489319,212.9043537,216.1893535,14.616574,0.136772599,1620000000000 ,1620000000000 ,1620000000000 ,1616812446910 -1616812446939 ,112.5713741,26.87937996,59.87356186,212.9091348,216.187038,14.619088,0.136791402,1620000000000 ,1620000000000 ,1620000000000 ,1616812446920 -1616812446951 ,112.5713733,26.87937885,59.87220383,212.9096539,216.1823848,14.62176,0.13681535,1620000000000 ,1620000000000 ,1620000000000 ,1616812446930 -1616812446961 ,112.5713725,26.87937775,59.87082291,212.913834,216.1892213,14.625814,0.136847864,1620000000000 ,1620000000000 ,1620000000000 ,1616812446940 -1616812446972 ,112.5713716,26.87937664,59.86941528,212.9187517,216.1917865,14.629204,0.136881664,1620000000000 ,1620000000000 ,1620000000000 ,1616812446950 -1616812446987 ,112.5713708,26.87937554,59.8680191,212.9251721,216.1917659,14.63151,0.136906469,1620000000000 ,1620000000000 ,1620000000000 ,1616812446960 -1616812446991 ,112.57137,26.87937443,59.8666687,212.9299806,216.1916511,14.63347,0.13692808,1620000000000 ,1620000000000 ,1620000000000 ,1616812446970 -1616812446999 ,112.5713692,26.87937333,59.86535263,212.9337235,216.1899334,14.635578,0.136945517,1620000000000 ,1620000000000 ,1620000000000 ,1616812446980 -1616812447009 ,112.5713684,26.87937222,59.86402893,212.939133,216.1963633,14.6385145,0.136969931,1620000000000 ,1620000000000 ,1620000000000 ,1616812446990 -1616812447019 ,112.5713676,26.87937112,59.86268234,212.9459905,216.2072332,14.64209,0.137008479,1620000000000 ,1620000000000 ,1620000000000 ,1616812447000 -1616812447031 ,112.5713668,26.87937001,59.86133575,212.9501433,216.2082179,14.643921,0.13702861,1620000000000 ,1620000000000 ,1620000000000 ,1616812447010 -1616812447040 ,112.571366,26.8793689,59.86002731,212.9534764,216.2016982,14.64663,0.137048933,1620000000000 ,1620000000000 ,1620000000000 ,1616812447020 -1616812447050 ,112.5713652,26.8793678,59.85876465,212.9575199,216.2070696,14.650441,0.137084936,1620000000000 ,1620000000000 ,1620000000000 ,1616812447030 -1616812447061 ,112.5713644,26.87936669,59.8575058,212.962984,216.2149857,14.654826,0.137126782,1620000000000 ,1620000000000 ,1620000000000 ,1616812447040 -1616812447070 ,112.5713636,26.87936559,59.85624313,212.9686394,216.2229981,14.655418,0.137145156,1620000000000 ,1620000000000 ,1620000000000 ,1616812447050 -1616812447080 ,112.5713627,26.87936448,59.85505295,212.9741309,216.2343523,14.653979,0.137143963,1620000000000 ,1620000000000 ,1620000000000 ,1616812447060 -1616812447090 ,112.5713619,26.87936337,59.85398865,212.9786388,216.2274732,14.65162,0.137127666,1620000000000 ,1620000000000 ,1620000000000 ,1616812447070 -1616812447103 ,112.5713611,26.87936227,59.85295868,212.9826823,216.2182512,14.65555,0.137138808,1620000000000 ,1620000000000 ,1620000000000 ,1616812447080 -1616812447120 ,112.5713603,26.87936116,59.85186386,212.9866165,216.2338259,14.664678,0.137220613,1620000000000 ,1620000000000 ,1620000000000 ,1616812447090 -1616812447125 ,112.5713595,26.87936005,59.85070801,212.9892393,216.2486964,14.66987,0.137278027,1620000000000 ,1620000000000 ,1620000000000 ,1616812447100 -1616812447132 ,112.5713587,26.87935895,59.84958649,212.9918074,216.2390782,14.673827,0.137322688,1620000000000 ,1620000000000 ,1620000000000 ,1616812447110 -1616812447141 ,112.5713579,26.87935784,59.84856033,212.9953864,216.2374771,14.675622,0.137344043,1620000000000 ,1620000000000 ,1620000000000 ,1616812447120 -1616812447151 ,112.5713571,26.87935673,59.84757233,213.0006047,216.2393236,14.676165,0.13735405,1620000000000 ,1620000000000 ,1620000000000 ,1616812447130 -1616812447161 ,112.5713562,26.87935562,59.8465538,213.004211,216.2426517,14.676035,0.137356391,1620000000000 ,1620000000000 ,1620000000000 ,1616812447140 -1616812447172 ,112.5713554,26.87935451,59.84543991,213.0111778,216.2513566,14.676674,0.137355216,1620000000000 ,1620000000000 ,1620000000000 ,1616812447150 -1616812447183 ,112.5713546,26.87935341,59.84425354,213.017243,216.2580988,14.680897,0.137389123,1620000000000 ,1620000000000 ,1620000000000 ,1616812447160 -1616812447194 ,112.5713538,26.8793523,59.84305573,213.0226526,216.2542318,14.684419,0.137420546,1620000000000 ,1620000000000 ,1620000000000 ,1616812447170 -1616812447205 ,112.571353,26.87935119,59.84191513,213.0264501,216.2534404,14.689679,0.13746678,1620000000000 ,1620000000000 ,1620000000000 ,1616812447180 -1616812447212 ,112.5713522,26.87935008,59.84082413,213.0309854,216.2652368,14.694195,0.137519903,1620000000000 ,1620000000000 ,1620000000000 ,1616812447190 -1616812447223 ,112.5713514,26.87934897,59.83970261,213.0345644,216.2776615,14.697901,0.137556953,1620000000000 ,1620000000000 ,1620000000000 ,1616812447200 -1616812447231 ,112.5713505,26.87934785,59.8370018,213.030275,216.6488226,14.75494,0.139956641,1620000000000 ,1620000000000 ,1620000000000 ,1616812447210 -1616812447243 ,112.5713497,26.87934672,59.83409882,213.035466,216.6865936,14.756034,0.140229019,1620000000000 ,1620000000000 ,1620000000000 ,1616812447220 -1616812447252 ,112.5713489,26.8793456,59.83120728,213.0392363,216.6781695,14.757234,0.140233713,1620000000000 ,1620000000000 ,1620000000000 ,1616812447230 -1616812447262 ,112.571348,26.87934447,59.82843018,213.0425694,216.6772906,14.7587595,0.140256663,1620000000000 ,1620000000000 ,1620000000000 ,1616812447240 -1616812447273 ,112.5713472,26.87934335,59.82578278,213.0462304,216.6902783,14.75984,0.140278108,1620000000000 ,1620000000000 ,1620000000000 ,1616812447250 -1616812447285 ,112.5713463,26.87934223,59.82323837,213.052077,216.6967019,14.762791,0.140308716,1620000000000 ,1620000000000 ,1620000000000 ,1616812447260 -1616812447295 ,112.5713455,26.8793411,59.82071686,213.0574592,216.6901998,14.762477,0.140319553,1620000000000 ,1620000000000 ,1620000000000 ,1616812447270 -1616812447303 ,112.5713447,26.87933997,59.81806946,213.0647265,216.6997207,14.766565,0.140327837,1620000000000 ,1620000000000 ,1620000000000 ,1616812447280 -1616812447313 ,112.5713438,26.87933885,59.81518936,213.0736058,216.6918381,14.773989,0.140395931,1620000000000 ,1620000000000 ,1620000000000 ,1616812447290 -1616812447323 ,112.571343,26.87933772,59.81206512,213.0780044,216.6901654,14.781808,0.140445726,1620000000000 ,1620000000000 ,1620000000000 ,1616812447310 -1616812447333 ,112.5713422,26.8793366,59.80886841,213.081884,216.701012,14.786164,0.140500136,1620000000000 ,1620000000000 ,1620000000000 ,1616812447320 -1616812447344 ,112.5713413,26.87933547,59.8057251,213.0856542,216.7138359,14.783801,0.140499187,1620000000000 ,1620000000000 ,1620000000000 ,1616812447330 -1616812447355 ,112.5713396,26.87933322,59.79979706,213.0965006,216.7270588,14.781487,0.280966562,1620000000000 ,1620000000000 ,1620000000000 ,1616812447340 -1616812447365 ,112.5713396,26.87933322,59.79979706,213.0965006,-400,14.781487,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812447350 -1616812447376 ,112.571338,26.87933097,59.79389572,213.1110898,216.7285525,14.794567,0.28109953,1620000000000 ,1620000000000 ,1620000000000 ,1616812447360 -1616812447383 ,112.5713371,26.87932984,59.79065704,213.1186577,216.7399504,14.802121,0.140647822,1620000000000 ,1620000000000 ,1620000000000 ,1616812447370 -1616812447394 ,112.5713363,26.87932871,59.78726578,213.1265807,216.758324,14.805678,0.14068973,1620000000000 ,1620000000000 ,1620000000000 ,1616812447380 -1616812447404 ,112.5713363,26.87932871,59.78726578,213.1265807,-400,14.805678,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812447380 -1616812447413 ,112.5713346,26.87932646,59.7806282,213.1376183,216.7596612,14.806305,0.281410026,1620000000000 ,1620000000000 ,1620000000000 ,1616812447400 -1616812447423 ,112.5713346,26.87932646,59.7806282,213.1376183,-400,14.806305,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812447410 -1616812447434 ,112.5713329,26.8793242,59.7742691,213.151306,216.7621768,14.809038,0.281451088,1620000000000 ,1620000000000 ,1620000000000 ,1616812447420 -1616812447445 ,112.5713321,26.87932307,59.77101898,213.1593656,216.7782197,14.812704,0.140760379,1620000000000 ,1620000000000 ,1620000000000 ,1616812447430 -1616812447454 ,112.5713312,26.87932195,59.76769257,213.1659772,216.7778157,14.817169,0.140794681,1620000000000 ,1620000000000 ,1620000000000 ,1616812447440 -1616812447464 ,112.5713304,26.87932082,59.76432419,213.1723703,216.7784414,14.822205,0.140840263,1620000000000 ,1620000000000 ,1620000000000 ,1616812447450 -1616812447473 ,112.5713295,26.8793197,59.76232529,213.1802387,216.4644163,14.826649,0.138770584,1620000000000 ,1620000000000 ,1620000000000 ,1616812447460 -1616812447485 ,112.5713287,26.87931859,59.76037216,213.1883803,216.4727503,14.827825,0.138793201,1620000000000 ,1620000000000 ,1620000000000 ,1616812447470 -1616812447493 ,112.5713279,26.87931747,59.75850296,213.1971776,216.4787014,14.827457,0.138794628,1620000000000 ,1620000000000 ,1620000000000 ,1616812447480 -1616812447505 ,112.5713279,26.87931747,59.75850296,213.1971776,-400,14.827457,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812447490 -1616812447522 ,112.5713262,26.87931524,59.75493622,213.2144169,216.4897078,14.834221,0.277662698,1620000000000 ,1620000000000 ,1620000000000 ,1616812447500 -1616812447526 ,112.5713254,26.87931412,59.75314331,213.223023,216.5050802,14.838635,0.138893507,1620000000000 ,1620000000000 ,1620000000000 ,1616812447510 -1616812447535 ,112.5713246,26.879313,59.75138474,213.2311373,216.5104797,14.840145,0.138920267,1620000000000 ,1620000000000 ,1620000000000 ,1616812447520 -1616812447550 ,112.5713238,26.87931189,59.74973679,213.2370659,216.513032,14.840059,0.138926675,1620000000000 ,1620000000000 ,1620000000000 ,1616812447530 -1616812447555 ,112.5713229,26.87931077,59.74821472,213.2445791,216.5196367,14.842087,0.138943164,1620000000000 ,1620000000000 ,1620000000000 ,1616812447540 -1616812447566 ,112.5713221,26.87930965,59.74675751,213.2510268,216.5279041,14.845079,0.138975801,1620000000000 ,1620000000000 ,1620000000000 ,1616812447550 -1616812447578 ,112.5713213,26.87930854,59.74530029,213.2581028,216.539241,14.84802,0.139005873,1620000000000 ,1620000000000 ,1620000000000 ,1616812447560 -1616812447585 ,112.5713205,26.87930742,59.74386597,213.2656707,216.5475968,14.851126,0.13903851,1620000000000 ,1620000000000 ,1620000000000 ,1616812447570 -1616812447596 ,112.5713196,26.8793063,59.74248123,213.2716539,216.5482544,14.852684,0.139057154,1620000000000 ,1620000000000 ,1620000000000 ,1616812447580 -1616812447605 ,112.5713188,26.87930519,59.74119568,213.2778557,216.5485973,14.853865,0.139074428,1620000000000 ,1620000000000 ,1620000000000 ,1616812447590 -1616812447615 ,112.571318,26.87930407,59.73999405,213.2856968,216.5536868,14.855266,0.139091063,1620000000000 ,1620000000000 ,1620000000000 ,1616812447600 -1616812447627 ,112.5713171,26.87930295,59.73884964,213.2931827,216.5646132,14.857833,0.139115634,1620000000000 ,1620000000000 ,1620000000000 ,1616812447610 -1616812447636 ,112.5713163,26.87930183,59.73774719,213.3010784,216.5722613,14.859731,0.139141578,1620000000000 ,1620000000000 ,1620000000000 ,1616812447620 -1616812447645 ,112.5713155,26.87930072,59.73669815,213.3085643,216.5731508,14.860953,0.139157021,1620000000000 ,1620000000000 ,1620000000000 ,1616812447630 -1616812447655 ,112.5713147,26.8792996,59.73570251,213.315613,216.5776728,14.862659,0.13917513,1620000000000 ,1620000000000 ,1620000000000 ,1616812447640 -1616812447666 ,112.5713138,26.87929848,59.73472595,213.3218148,216.5845384,14.865612,0.139205664,1620000000000 ,1620000000000 ,1620000000000 ,1616812447650 -1616812447680 ,112.571313,26.87929736,59.73374557,213.3303389,216.5935448,14.868079,0.139230526,1620000000000 ,1620000000000 ,1620000000000 ,1616812447660 -1616812447686 ,112.5713122,26.87929625,59.73278046,213.3390816,216.6000859,14.870262,0.139254943,1620000000000 ,1620000000000 ,1620000000000 ,1616812447670 -1616812447700 ,112.5713113,26.87929513,59.73182297,213.3464035,216.6063006,14.871262,0.139269568,1620000000000 ,1620000000000 ,1620000000000 ,1616812447680 -1616812447706 ,112.5713105,26.87929401,59.73086166,213.3538074,216.6150973,14.873553,0.139290998,1620000000000 ,1620000000000 ,1620000000000 ,1616812447690 -1616812447716 ,112.5713097,26.87929289,59.72986221,213.3622496,216.6228098,14.876421,0.139318204,1620000000000 ,1620000000000 ,1620000000000 ,1616812447700 -1616812447726 ,112.5713088,26.87929177,59.7288208,213.3699813,216.6279234,14.878772,0.139339555,1620000000000 ,1620000000000 ,1620000000000 ,1616812447710 -1616812447736 ,112.571308,26.87929065,59.72774887,213.3759646,216.6278171,14.881667,0.139366182,1620000000000 ,1620000000000 ,1620000000000 ,1616812447720 -1616812447748 ,112.5713072,26.87928954,59.72663116,213.3828494,216.6310692,14.883606,0.139385917,1620000000000 ,1620000000000 ,1620000000000 ,1616812447730 -1616812447756 ,112.5713063,26.87928842,59.72548676,213.3921385,216.6390064,14.886316,0.139411772,1620000000000 ,1620000000000 ,1620000000000 ,1616812447740 -1616812447768 ,112.5713055,26.8792873,59.72433472,213.3992419,216.6465574,14.88769,0.139430526,1620000000000 ,1620000000000 ,1620000000000 ,1616812447750 -1616812447776 ,112.5713047,26.87928618,59.72321701,213.408449,216.6500537,14.889546,0.139447947,1620000000000 ,1620000000000 ,1620000000000 ,1616812447760 -1616812447787 ,112.5713038,26.87928506,59.72210693,213.4188035,216.6508967,14.892213,0.139474097,1620000000000 ,1620000000000 ,1620000000000 ,1616812447770 -1616812447797 ,112.571303,26.87928394,59.72094345,213.4274369,216.6548199,14.895068,0.139498183,1620000000000 ,1620000000000 ,1620000000000 ,1616812447780 -1616812447807 ,112.5713022,26.87928282,59.71969986,213.4363435,216.663505,14.897447,0.139522988,1620000000000 ,1620000000000 ,1620000000000 ,1616812447790 -1616812447818 ,112.5713013,26.8792817,59.71837616,213.4453047,216.672413,14.899582,0.1395418,1620000000000 ,1620000000000 ,1620000000000 ,1616812447800 -1616812447829 ,112.5713005,26.87928058,59.71700668,213.4550855,216.6820993,14.902101,0.139565056,1620000000000 ,1620000000000 ,1620000000000 ,1616812447810 -1616812447840 ,112.5712997,26.87927947,59.71561432,213.4630358,216.6921734,14.904357,0.139589084,1620000000000 ,1620000000000 ,1620000000000 ,1616812447820 -1616812447851 ,112.5712988,26.87927835,59.71420288,213.4726254,216.7029539,14.906287,0.139609601,1620000000000 ,1620000000000 ,1620000000000 ,1616812447830 -1616812447858 ,112.571298,26.87927723,59.71276855,213.4826521,216.7087643,14.907938,0.139626352,1620000000000 ,1620000000000 ,1620000000000 ,1616812447840 -1616812447869 ,112.5712972,26.87927611,59.7112999,213.491668,216.7147938,14.910231,0.139647404,1620000000000 ,1620000000000 ,1620000000000 ,1616812447850 -1616812447878 ,112.5712963,26.87927499,59.70980072,213.5013122,216.7237122,14.913533,0.139677365,1620000000000 ,1620000000000 ,1620000000000 ,1616812447860 -1616812447888 ,112.5712955,26.87927387,59.70825958,213.5088254,216.7312956,14.915774,0.139700959,1620000000000 ,1620000000000 ,1620000000000 ,1616812447870 -1616812447898 ,112.5712947,26.87927275,59.70666885,213.5195625,216.7379561,14.9181,0.139722411,1620000000000 ,1620000000000 ,1620000000000 ,1616812447880 -1616812447908 ,112.5712938,26.87927163,59.70503235,213.5289608,216.7467823,14.919801,0.139738753,1620000000000 ,1620000000000 ,1620000000000 ,1616812447890 -1616812447922 ,112.571293,26.87927051,59.70338058,213.5397252,216.7549488,14.920971,0.13975215,1620000000000 ,1620000000000 ,1620000000000 ,1616812447900 -1616812447928 ,112.5712922,26.87926939,59.70173264,213.5504896,216.7592292,14.923508,0.139773804,1620000000000 ,1620000000000 ,1620000000000 ,1616812447910 -1616812447938 ,112.5712913,26.87926827,59.70007706,213.5611447,216.764411,14.925468,0.139795029,1620000000000 ,1620000000000 ,1620000000000 ,1616812447920 -1616812447948 ,112.5712905,26.87926715,59.6984024,213.5707343,216.7726031,14.927542,0.139813621,1620000000000 ,1620000000000 ,1620000000000 ,1616812447930 -1616812447958 ,112.5712897,26.87926603,59.69670105,213.5813347,216.7828214,14.928363,0.139827391,1620000000000 ,1620000000000 ,1620000000000 ,1616812447940 -1616812447969 ,112.5712888,26.87926491,59.69496918,213.591498,216.7932081,14.930488,0.13984442,1620000000000 ,1620000000000 ,1620000000000 ,1616812447950 -1616812447991 ,112.571288,26.87926379,59.69318771,213.6012515,216.8004568,14.933916,0.139871999,1620000000000 ,1620000000000 ,1620000000000 ,1616812447960 -1616812448000 ,112.5712871,26.87926267,59.69136429,213.6122345,216.8113715,14.936034,0.139895087,1620000000000 ,1620000000000 ,1620000000000 ,1616812447970 -1616812448009 ,112.5712863,26.87926155,59.68954086,213.621305,216.8228824,14.938184,0.139918651,1620000000000 ,1620000000000 ,1620000000000 ,1616812447980 -1616812448013 ,112.5712855,26.87926043,59.68774033,213.6303755,216.8302412,14.938616,0.139928797,1620000000000 ,1620000000000 ,1620000000000 ,1616812447990 -1616812448018 ,112.5712846,26.87925931,59.68596649,213.6405661,216.8411009,14.939114,0.139935347,1620000000000 ,1620000000000 ,1620000000000 ,1616812448000 -1616812448029 ,112.5712838,26.87925819,59.6842041,213.6490355,216.8525609,14.940324,0.13994741,1620000000000 ,1620000000000 ,1620000000000 ,1616812448010 -1616812448040 ,112.5712829,26.87925707,59.68243027,213.6586525,216.8631114,14.942339,0.139966326,1620000000000 ,1620000000000 ,1620000000000 ,1616812448020 -1616812448049 ,112.5712821,26.87925595,59.68063354,213.6694988,216.871238,14.945206,0.139988484,1620000000000 ,1620000000000 ,1620000000000 ,1616812448030 -1616812448060 ,112.5712813,26.87925483,59.67882156,213.6804271,216.8805264,14.946731,0.140008586,1620000000000 ,1620000000000 ,1620000000000 ,1616812448040 -1616812448069 ,112.5712804,26.87925371,59.67704773,213.6893337,216.8870823,14.947119,0.140018987,1620000000000 ,1620000000000 ,1620000000000 ,1616812448050 -1616812448079 ,112.5712796,26.87925259,59.67533875,213.698732,216.8977313,14.947593,0.140027229,1620000000000 ,1620000000000 ,1620000000000 ,1616812448060 -1616812448091 ,112.5712787,26.87925147,59.6736908,213.7083489,216.9114321,14.949349,0.140044301,1620000000000 ,1620000000000 ,1620000000000 ,1616812448070 -1616812448099 ,112.5712779,26.87925035,59.67207336,213.7185669,216.9207871,14.949494,0.140053542,1620000000000 ,1620000000000 ,1620000000000 ,1616812448080 -1616812448110 ,112.5712771,26.87924923,59.67048264,213.7289488,216.9302888,14.949606,0.140059546,1620000000000 ,1620000000000 ,1620000000000 ,1616812448090 -1616812448119 ,112.5712762,26.87924811,59.66890717,213.738511,216.9407159,14.951493,0.140072909,1620000000000 ,1620000000000 ,1620000000000 ,1616812448100 -1616812448131 ,112.5712754,26.87924699,59.66736984,213.748647,216.9507086,14.953377,0.140095056,1620000000000 ,1620000000000 ,1620000000000 ,1616812448110 -1616812448140 ,112.5712745,26.87924587,59.66588211,213.7584005,216.9630076,14.9544935,0.140110959,1620000000000 ,1620000000000 ,1620000000000 ,1616812448120 -1616812448150 ,112.5712737,26.87924475,59.66443253,213.7694108,216.9763789,14.955849,0.140128803,1620000000000 ,1620000000000 ,1620000000000 ,1616812448130 -1616812448161 ,112.5712728,26.87924363,59.66301346,213.7801205,216.9898857,14.954908,0.140129734,1620000000000 ,1620000000000 ,1620000000000 ,1616812448140 -1616812448171 ,112.571272,26.87924251,59.66163635,213.7911308,217.000156,14.955441,0.140135649,1620000000000 ,1620000000000 ,1620000000000 ,1616812448150 -1616812448180 ,112.5712712,26.8792414,59.66029739,213.8000647,217.0075132,14.956018,0.140142882,1620000000000 ,1620000000000 ,1620000000000 ,1616812448160 -1616812448191 ,112.5712703,26.87924028,59.65899277,213.8100641,217.0181109,14.957811,0.140160969,1620000000000 ,1620000000000 ,1620000000000 ,1616812448170 -1616812448201 ,112.5712695,26.87923916,59.65772629,213.8189433,217.0309977,14.958876,0.140178995,1620000000000 ,1620000000000 ,1620000000000 ,1616812448180 -1616812448211 ,112.5712686,26.87923804,59.65648651,213.8297897,217.0419918,14.959347,0.140188122,1620000000000 ,1620000000000 ,1620000000000 ,1616812448190 -1616812448221 ,112.5712678,26.87923692,59.6552887,213.8403355,217.0507327,14.959749,0.140195299,1620000000000 ,1620000000000 ,1620000000000 ,1616812448200 -1616812448233 ,112.5712669,26.8792358,59.65351868,213.8517829,217.4593921,14.9840555,0.141565777,1620000000000 ,1620000000000 ,1620000000000 ,1616812448210 -1616812448251 ,112.5712661,26.87923467,59.65175247,213.8617276,217.5066513,14.984772,0.141696306,1620000000000 ,1620000000000 ,1620000000000 ,1616812448220 -1616812448259 ,112.5712652,26.87923355,59.65000534,213.8714538,217.517045,14.984859,0.141702089,1620000000000 ,1620000000000 ,1620000000000 ,1616812448230 -1616812448262 ,112.5712643,26.87923242,59.64828873,213.8816171,217.526985,14.983461,0.141696858,1620000000000 ,1620000000000 ,1620000000000 ,1616812448240 -1616812448271 ,112.5712635,26.8792313,59.64661407,213.892163,217.5338759,14.98352,0.141696692,1620000000000 ,1620000000000 ,1620000000000 ,1616812448250 -1616812448283 ,112.5712626,26.87923018,59.64493942,213.902299,217.5426658,14.984238,0.141701546,1620000000000 ,1620000000000 ,1620000000000 ,1616812448260 -1616812448293 ,112.5712617,26.87922905,59.64324188,213.9137464,217.5573709,14.984606,0.141710567,1620000000000 ,1620000000000 ,1620000000000 ,1616812448270 -1616812448303 ,112.5712609,26.87922793,59.64154434,213.9233359,217.5721102,14.984017,0.141712513,1620000000000 ,1620000000000 ,1620000000000 ,1616812448280 -1616812448314 ,112.57126,26.87922681,59.63988495,213.9335266,217.5815183,14.98339,0.141707551,1620000000000 ,1620000000000 ,1620000000000 ,1616812448290 -1616812448325 ,112.5712591,26.87922568,59.63825607,213.9436079,217.5910276,14.982331,0.141702009,1620000000000 ,1620000000000 ,1620000000000 ,1616812448300 -1616812448333 ,112.5712583,26.87922456,59.63662338,213.9546455,217.6002643,14.981345,0.141694732,1620000000000 ,1620000000000 ,1620000000000 ,1616812448310 -1616812448346 ,112.5712574,26.87922344,59.6349678,213.9658197,217.6116786,14.981013,0.141691128,1620000000000 ,1620000000000 ,1620000000000 ,1616812448320 -1616812448352 ,112.5712566,26.87922232,59.63328552,213.9769666,217.6231448,14.980504,0.141685909,1620000000000 ,1620000000000 ,1620000000000 ,1616812448330 -1616812448363 ,112.5712557,26.87922119,59.6315918,213.9857092,217.6325995,14.980626,0.141685803,1620000000000 ,1620000000000 ,1620000000000 ,1616812448340 -1616812448372 ,112.5712548,26.87922007,59.6299057,213.9978396,217.6418542,14.9798155,0.141684489,1620000000000 ,1620000000000 ,1620000000000 ,1616812448350 -1616812448383 ,112.571254,26.87921895,59.62822723,214.011582,217.652688,14.97947,0.141682279,1620000000000 ,1620000000000 ,1620000000000 ,1616812448360 -1616812448394 ,112.5712531,26.87921783,59.62655258,214.0215814,217.6662599,14.979601,0.141682056,1620000000000 ,1620000000000 ,1620000000000 ,1616812448370 -1616812448405 ,112.5712522,26.87921671,59.62487793,214.0340123,217.6781649,14.979284,0.141682012,1620000000000 ,1620000000000 ,1620000000000 ,1616812448380 -1616812448416 ,112.5712514,26.87921559,59.62322617,214.0416895,217.6871063,14.977291,0.141669454,1620000000000 ,1620000000000 ,1620000000000 ,1616812448400 -1616812448426 ,112.5712505,26.87921447,59.62162018,214.0528363,217.6982068,14.976445,0.141665009,1620000000000 ,1620000000000 ,1620000000000 ,1616812448400 -1616812448435 ,112.5712496,26.87921335,59.62007141,214.0640925,217.7093105,14.97352,0.141645914,1620000000000 ,1620000000000 ,1620000000000 ,1616812448420 -1616812448443 ,112.5712488,26.87921223,59.61857224,214.0755945,217.721613,14.973298,0.141635057,1620000000000 ,1620000000000 ,1620000000000 ,1616812448430 -1616812448454 ,112.5712479,26.87921111,59.61714935,214.0868234,217.7367906,14.974838,0.14165567,1620000000000 ,1620000000000 ,1620000000000 ,1616812448440 -1616812448465 ,112.571247,26.87920999,59.61578751,214.0988991,217.7524431,14.97521,0.141667969,1620000000000 ,1620000000000 ,1620000000000 ,1616812448450 -1616812448474 ,112.5712453,26.87920775,59.61393738,214.1217393,217.587511,14.971707,0.282093415,1620000000000 ,1620000000000 ,1620000000000 ,1616812448460 -1616812448486 ,112.5712445,26.87920663,59.61343002,214.1337058,217.4140282,14.966873,0.14037494,1620000000000 ,1620000000000 ,1620000000000 ,1616812448470 -1616812448500 ,112.5712436,26.87920552,59.61295319,214.1450439,217.4275239,14.96406,0.14034983,1620000000000 ,1620000000000 ,1620000000000 ,1616812448480 -1616812448503 ,112.5712436,26.87920552,59.61295319,214.1450439,-400,14.96406,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812448480 -1616812448513 ,112.5712419,26.87920329,59.61204529,214.1710532,217.4474141,14.962286,0.28067743,1620000000000 ,1620000000000 ,1620000000000 ,1616812448500 -1616812448525 ,112.571241,26.87920218,59.61169434,214.1849322,217.4586263,14.962662,0.140346859,1620000000000 ,1620000000000 ,1620000000000 ,1616812448510 -1616812448535 ,112.5712402,26.87920106,59.61141586,214.1970353,217.4672324,14.961167,0.140344549,1620000000000 ,1620000000000 ,1620000000000 ,1616812448520 -1616812448544 ,112.5712393,26.87919995,59.61119461,214.2098214,217.4805439,14.959646,0.140337329,1620000000000 ,1620000000000 ,1620000000000 ,1616812448530 -1616812448555 ,112.5712385,26.87919884,59.61100769,214.2247659,217.4919826,14.956558,0.140318447,1620000000000 ,1620000000000 ,1620000000000 ,1616812448540 -1616812448566 ,112.5712376,26.87919772,59.61085892,214.2382077,217.5024515,14.95314,0.140296202,1620000000000 ,1620000000000 ,1620000000000 ,1616812448550 -1616812448574 ,112.5712368,26.87919661,59.61072922,214.252715,217.5128902,14.950065,0.140271023,1620000000000 ,1620000000000 ,1620000000000 ,1616812448560 -1616812448586 ,112.5712359,26.8791955,59.61061096,214.2676048,217.5259037,14.948138,0.140256148,1620000000000 ,1620000000000 ,1620000000000 ,1616812448570 -1616812448595 ,112.5712351,26.87919439,59.61048126,214.2832049,217.5433126,14.947894,0.140259809,1620000000000 ,1620000000000 ,1620000000000 ,1616812448580 -1616812448605 ,112.5712342,26.87919328,59.6103363,214.3014279,217.5593197,14.945119,0.140247332,1620000000000 ,1620000000000 ,1620000000000 ,1616812448590 -1616812448614 ,112.5712333,26.87919216,59.61014938,214.3203339,217.5670012,14.949226,0.140265785,1620000000000 ,1620000000000 ,1620000000000 ,1616812448600 -1616812448626 ,112.5712325,26.87919105,59.6098175,214.3385841,217.5722396,14.944193,0.140237542,1620000000000 ,1620000000000 ,1620000000000 ,1616812448610 -1616812448635 ,112.5712316,26.87918994,59.60918427,214.3564792,217.5720249,14.947135,0.140240838,1620000000000 ,1620000000000 ,1620000000000 ,1616812448620 -1616812448650 ,112.5712308,26.87918883,59.60818863,214.3745109,217.6004428,14.947846,0.140234542,1620000000000 ,1620000000000 ,1620000000000 ,1616812448630 -1616812448657 ,112.5712299,26.87918772,59.60690308,214.3891548,217.6308189,14.950847,0.140255108,1620000000000 ,1620000000000 ,1620000000000 ,1616812448640 -1616812448668 ,112.5712291,26.87918661,59.60545349,214.4063669,217.6380901,14.950839,0.140264591,1620000000000 ,1620000000000 ,1620000000000 ,1616812448650 -1616812448674 ,112.5712282,26.8791855,59.60401917,214.421448,217.6430758,14.947099,0.140238949,1620000000000 ,1620000000000 ,1620000000000 ,1616812448660 -1616812448685 ,112.5712274,26.87918439,59.60273743,214.4380863,217.6514619,14.941504,0.140195747,1620000000000 ,1620000000000 ,1620000000000 ,1616812448670 -1616812448696 ,112.5712265,26.87918328,59.60152435,214.4554623,217.671505,14.939494,0.140173633,1620000000000 ,1620000000000 ,1620000000000 ,1616812448680 -1616812448705 ,112.5712256,26.87918217,59.60019302,214.472811,217.6932198,14.943278,0.140198354,1620000000000 ,1620000000000 ,1620000000000 ,1616812448690 -1616812448717 ,112.5712248,26.87918106,59.598629,214.4927825,217.7125139,14.947367,0.140230962,1620000000000 ,1620000000000 ,1620000000000 ,1616812448700 -1616812448727 ,112.5712239,26.87917995,59.59689331,214.5098579,217.7338667,14.947973,0.140242133,1620000000000 ,1620000000000 ,1620000000000 ,1616812448710 -1616812448735 ,112.5712231,26.87917884,59.59513474,214.5253215,217.7486453,14.945903,0.140229279,1620000000000 ,1620000000000 ,1620000000000 ,1616812448720 -1616812448747 ,112.5712222,26.87917773,59.5934639,214.5421238,217.7657129,14.941891,0.140205041,1620000000000 ,1620000000000 ,1620000000000 ,1616812448730 -1616812448758 ,112.5712214,26.87917662,59.59188461,214.5606472,217.7887244,14.93842,0.140177085,1620000000000 ,1620000000000 ,1620000000000 ,1616812448740 -1616812448767 ,112.5712205,26.87917552,59.59033203,214.5788429,217.8150527,14.936953,0.140165889,1620000000000 ,1620000000000 ,1620000000000 ,1616812448750 -1616812448777 ,112.5712196,26.87917441,59.58878326,214.5921481,217.8344601,14.935877,0.140160828,1620000000000 ,1620000000000 ,1620000000000 ,1616812448760 -1616812448787 ,112.5712188,26.8791733,59.58721924,214.6058084,217.8445312,14.933897,0.140143573,1620000000000 ,1620000000000 ,1620000000000 ,1616812448770 -1616812448800 ,112.5712179,26.8791722,59.58562088,214.6208895,217.8615124,14.933759,0.1401406,1620000000000 ,1620000000000 ,1620000000000 ,1616812448780 -1616812448808 ,112.5712171,26.87917109,59.58401489,214.6360798,217.8863744,14.9340725,0.140148364,1620000000000 ,1620000000000 ,1620000000000 ,1616812448790 -1616812448819 ,112.5712162,26.87916999,59.58243561,214.6519805,217.9022688,14.932309,0.140143277,1620000000000 ,1620000000000 ,1620000000000 ,1616812448800 -1616812448830 ,112.5712153,26.87916888,59.5809288,214.6665698,217.9158096,14.929599,0.14012451,1620000000000 ,1620000000000 ,1620000000000 ,1616812448810 -1616812448837 ,112.5712145,26.87916778,59.57950592,214.6823612,217.9278836,14.926152,0.140099573,1620000000000 ,1620000000000 ,1620000000000 ,1616812448820 -1616812448847 ,112.5712136,26.87916667,59.57812119,214.6957484,217.9439076,14.923629,0.140074426,1620000000000 ,1620000000000 ,1620000000000 ,1616812448830 -1616812448857 ,112.5712127,26.87916557,59.57676697,214.7110207,217.9638606,14.9234085,0.140074649,1620000000000 ,1620000000000 ,1620000000000 ,1616812448840 -1616812448870 ,112.5712119,26.87916446,59.57543945,214.7253914,217.9813314,14.922299,0.140073378,1620000000000 ,1620000000000 ,1620000000000 ,1616812448850 -1616812448880 ,112.571211,26.87916336,59.57418823,214.74009,217.992743,14.920076,0.140057454,1620000000000 ,1620000000000 ,1620000000000 ,1616812448860 -1616812448889 ,112.5712102,26.87916225,59.57299042,214.7538323,218.0023751,14.918211,0.140045139,1620000000000 ,1620000000000 ,1620000000000 ,1616812448870 -1616812448907 ,112.5712093,26.87916115,59.57180786,214.7674107,218.0180808,14.917816,0.140042753,1620000000000 ,1620000000000 ,1620000000000 ,1616812448880 -1616812448911 ,112.5712084,26.87916005,59.57062531,214.7816175,218.0400097,14.917049,0.140039141,1620000000000 ,1620000000000 ,1620000000000 ,1616812448890 -1616812448921 ,112.5712076,26.87915895,59.56946564,214.7947861,218.0541248,14.915594,0.140033598,1620000000000 ,1620000000000 ,1620000000000 ,1616812448900 -1616812448927 ,112.5712067,26.87915784,59.56839371,214.8100584,218.0663344,14.912155,0.140013644,1620000000000 ,1620000000000 ,1620000000000 ,1616812448910 -1616812448940 ,112.5712058,26.87915674,59.56740189,214.8244018,218.0773129,14.909625,0.139989977,1620000000000 ,1620000000000 ,1620000000000 ,1616812448920 -1616812448948 ,112.571205,26.87915564,59.56645584,214.8403025,218.0908823,14.909511,0.139989546,1620000000000 ,1620000000000 ,1620000000000 ,1616812448930 -1616812448967 ,112.5712041,26.87915454,59.56550598,214.8547005,218.1097646,14.909026,0.139989101,1620000000000 ,1620000000000 ,1620000000000 ,1616812448940 -1616812448984 ,112.5712033,26.87915344,59.56454468,214.868115,218.1210255,14.909093,0.139993609,1620000000000 ,1620000000000 ,1620000000000 ,1616812448950 -1616812448986 ,112.5712024,26.87915234,59.56362534,214.883442,218.1307937,14.907151,0.139980822,1620000000000 ,1620000000000 ,1620000000000 ,1616812448960 -1616812448988 ,112.5712015,26.87915124,59.56280518,214.8974029,218.1483938,14.905,0.139971799,1620000000000 ,1620000000000 ,1620000000000 ,1616812448970 -1616812448998 ,112.5712007,26.87915013,59.56206512,214.9105442,218.1592238,14.903499,0.139961377,1620000000000 ,1620000000000 ,1620000000000 ,1616812448980 -1616812449008 ,112.5711998,26.87914903,59.56134415,214.9252701,218.1767736,14.90071,0.139943619,1620000000000 ,1620000000000 ,1620000000000 ,1616812448990 -1616812449018 ,112.5711989,26.87914793,59.56062698,214.9408429,218.1961055,14.89823,0.139927196,1620000000000 ,1620000000000 ,1620000000000 ,1616812449000 -1616812449032 ,112.5711981,26.87914684,59.55994034,214.9530279,218.2081467,14.894741,0.139900985,1620000000000 ,1620000000000 ,1620000000000 ,1616812449010 -1616812449039 ,112.5711972,26.87914574,59.55931854,214.9684642,218.2173833,14.891739,0.139875775,1620000000000 ,1620000000000 ,1620000000000 ,1616812449020 -1616812449050 ,112.5711963,26.87914464,59.55870819,214.9837365,218.231999,14.8907995,0.139867513,1620000000000 ,1620000000000 ,1620000000000 ,1616812449030 -1616812449063 ,112.5711955,26.87914354,59.55807877,214.9984077,218.252335,14.890314,0.139866373,1620000000000 ,1620000000000 ,1620000000000 ,1616812449040 -1616812449068 ,112.5711946,26.87914244,59.55744171,215.0115763,218.2753262,14.889186,0.139862121,1620000000000 ,1620000000000 ,1620000000000 ,1616812449050 -1616812449079 ,112.5711937,26.87914134,59.55685806,215.0220948,218.2893634,14.886882,0.139851884,1620000000000 ,1620000000000 ,1620000000000 ,1616812449060 -1616812449089 ,112.5711929,26.87914025,59.55631638,215.0339247,218.2900431,14.8834715,0.139825934,1620000000000 ,1620000000000 ,1620000000000 ,1616812449070 -1616812449099 ,112.571192,26.87913915,59.55576324,215.0466015,218.3008876,14.88179,0.139806493,1620000000000 ,1620000000000 ,1620000000000 ,1616812449080 -1616812449111 ,112.5711911,26.87913805,59.55515671,215.0589778,218.3237399,14.88009,0.139796683,1620000000000 ,1620000000000 ,1620000000000 ,1616812449090 -1616812449122 ,112.5711903,26.87913696,59.55447388,215.0705892,218.3385429,14.879017,0.13978905,1620000000000 ,1620000000000 ,1620000000000 ,1616812449100 -1616812449132 ,112.5711894,26.87913586,59.55377197,215.0820366,218.3511462,14.877204,0.139774957,1620000000000 ,1620000000000 ,1620000000000 ,1616812449110 -1616812449141 ,112.5711885,26.87913476,59.55308151,215.0950412,218.361109,14.8741665,0.139752893,1620000000000 ,1620000000000 ,1620000000000 ,1616812449120 -1616812449150 ,112.5711877,26.87913367,59.55240631,215.1063247,218.3693089,14.871869,0.1397349,1620000000000 ,1620000000000 ,1620000000000 ,1616812449130 -1616812449160 ,112.5711868,26.87913257,59.55171204,215.1164334,218.3794611,14.870058,0.139717621,1620000000000 ,1620000000000 ,1620000000000 ,1616812449140 -1616812449170 ,112.5711859,26.87913148,59.55093765,215.1281813,218.3920064,14.870274,0.139713827,1620000000000 ,1620000000000 ,1620000000000 ,1616812449150 -1616812449180 ,112.5711851,26.87913038,59.55007553,215.1388091,218.4106771,14.869869,0.139715451,1620000000000 ,1620000000000 ,1620000000000 ,1616812449160 -1616812449191 ,112.5711842,26.87912929,59.54917526,215.149109,218.4288626,14.869966,0.139719316,1620000000000 ,1620000000000 ,1620000000000 ,1616812449170 -1616812449201 ,112.5711833,26.87912819,59.54827881,215.1594909,218.4406177,14.86849,0.139713899,1620000000000 ,1620000000000 ,1620000000000 ,1616812449180 -1616812449215 ,112.5711825,26.8791271,59.54740524,215.1697908,218.4579491,14.865252,0.139692107,1620000000000 ,1620000000000 ,1620000000000 ,1616812449190 -1616812449220 ,112.5711816,26.87912601,59.54627991,215.17449,218.6615893,14.876712,0.139962833,1620000000000 ,1620000000000 ,1620000000000 ,1616812449200 -1616812449230 ,112.5711807,26.87912492,59.54472733,215.1867843,218.9911199,14.873068,0.140381007,1620000000000 ,1620000000000 ,1620000000000 ,1616812449210 -1616812449240 ,112.5711798,26.87912383,59.54312515,215.1981224,219.0009579,14.8713665,0.140359364,1620000000000 ,1620000000000 ,1620000000000 ,1616812449220 -1616812449251 ,112.5711789,26.87912274,59.54143906,215.2081765,219.0116034,14.871635,0.140356275,1620000000000 ,1620000000000 ,1620000000000 ,1616812449230 -1616812449260 ,112.571178,26.87912164,59.53965759,215.2174382,219.0262757,14.873356,0.140371295,1620000000000 ,1620000000000 ,1620000000000 ,1616812449240 -1616812449270 ,112.5711772,26.87912055,59.53780746,215.2270551,219.0444085,14.87314,0.140377804,1620000000000 ,1620000000000 ,1620000000000 ,1616812449250 -1616812449282 ,112.5711763,26.87911946,59.53590775,215.2367267,219.0531528,14.871281,0.140365989,1620000000000 ,1620000000000 ,1620000000000 ,1616812449260 -1616812449291 ,112.5711754,26.87911837,59.53395844,215.2444311,219.0516631,14.866531,0.140323314,1620000000000 ,1620000000000 ,1620000000000 ,1616812449270 -1616812449301 ,112.5711745,26.87911729,59.53195572,215.2530372,219.0585022,14.863832,0.140290373,1620000000000 ,1620000000000 ,1620000000000 ,1616812449280 -1616812449313 ,112.5711736,26.8791162,59.52989578,215.259922,219.0626512,14.861786,0.140271255,1620000000000 ,1620000000000 ,1620000000000 ,1616812449290 -1616812449321 ,112.5711727,26.87911511,59.52778244,215.2667249,219.0743403,14.8602915,0.140259273,1620000000000 ,1620000000000 ,1620000000000 ,1616812449300 -1616812449331 ,112.5711719,26.87911402,59.52565002,215.273637,219.0852158,14.858786,0.140246595,1620000000000 ,1620000000000 ,1620000000000 ,1616812449310 -1616812449350 ,112.571171,26.87911293,59.52353668,215.283008,219.0898122,14.856644,0.140229146,1620000000000 ,1620000000000 ,1620000000000 ,1616812449320 -1616812449353 ,112.5711701,26.87911184,59.52143478,215.2913682,219.0943593,14.853991,0.140210615,1620000000000 ,1620000000000 ,1620000000000 ,1616812449330 -1616812449363 ,112.5711692,26.87911075,59.51929474,215.3002201,219.1017732,14.852775,0.14019242,1620000000000 ,1620000000000 ,1620000000000 ,1616812449340 -1616812449374 ,112.5711683,26.87910967,59.51707458,215.309072,219.1206814,14.851335,0.140184517,1620000000000 ,1620000000000 ,1620000000000 ,1616812449350 -1616812449384 ,112.5711674,26.87910858,59.51473999,215.3169131,219.1282386,14.850689,0.140172197,1620000000000 ,1620000000000 ,1620000000000 ,1616812449360 -1616812449393 ,112.5711666,26.87910749,59.51235199,215.3236067,219.1390229,14.849575,0.140161357,1620000000000 ,1620000000000 ,1620000000000 ,1616812449370 -1616812449404 ,112.5711657,26.87910641,59.50997925,215.3284698,219.1470842,14.84626,0.140138297,1620000000000 ,1620000000000 ,1620000000000 ,1616812449380 -1616812449414 ,112.5711648,26.87910532,59.50764465,215.3342618,219.1572035,14.843769,0.140119154,1620000000000 ,1620000000000 ,1620000000000 ,1616812449390 -1616812449423 ,112.5711639,26.87910423,59.50534058,215.3412832,219.1665581,14.840211,0.140091869,1620000000000 ,1620000000000 ,1620000000000 ,1616812449400 -1616812449433 ,112.571163,26.87910315,59.50305557,215.3478948,219.1639599,14.83684,0.140055823,1620000000000 ,1620000000000 ,1620000000000 ,1616812449410 -1616812449443 ,112.5711621,26.87910206,59.50074768,215.3563916,219.1617457,14.835313,0.140038251,1620000000000 ,1620000000000 ,1620000000000 ,1616812449420 -1616812449453 ,112.5711612,26.87910098,59.49836731,215.3661724,219.1725594,14.836607,0.140044862,1620000000000 ,1620000000000 ,1620000000000 ,1616812449430 -1616812449465 ,112.5711604,26.87909989,59.49592209,215.3733578,219.1855554,14.837246,0.14005032,1620000000000 ,1620000000000 ,1620000000000 ,1616812449440 -1616812449473 ,112.5711595,26.8790988,59.49375534,215.3799694,219.0129521,14.834753,0.139750743,1620000000000 ,1620000000000 ,1620000000000 ,1616812449450 -1616812449483 ,112.5711586,26.87909772,59.49193954,215.3877012,218.828532,14.830709,0.139435267,1620000000000 ,1620000000000 ,1620000000000 ,1616812449460 -1616812449493 ,112.5711577,26.87909663,59.49020767,215.3965804,218.8323417,14.826357,0.139399132,1620000000000 ,1620000000000 ,1620000000000 ,1616812449480 -1616812449503 ,112.5711569,26.87909555,59.48849869,215.4028915,218.8373961,14.8231945,0.139364666,1620000000000 ,1620000000000 ,1620000000000 ,1616812449480 -1616812449513 ,112.571156,26.87909446,59.48674393,215.4108965,218.839667,14.821663,0.139343539,1620000000000 ,1620000000000 ,1620000000000 ,1616812449500 -1616812449522 ,112.5711551,26.87909338,59.4849472,215.4191474,218.8494883,14.8209915,0.139339364,1620000000000 ,1620000000000 ,1620000000000 ,1616812449510 -1616812449535 ,112.5711542,26.87909229,59.48313904,215.426524,218.8582898,14.821045,0.139337582,1620000000000 ,1620000000000 ,1620000000000 ,1616812449520 -1616812449546 ,112.5711525,26.87909012,59.47969437,215.4426979,218.8585403,14.814005,0.278601567,1620000000000 ,1620000000000 ,1620000000000 ,1616812449530 -1616812449560 ,112.5711516,26.87908904,59.47806931,215.4500471,218.866863,14.810181,0.139255931,1620000000000 ,1620000000000 ,1620000000000 ,1616812449540 -1616812449568 ,112.5711507,26.87908795,59.47645569,215.4596094,218.8729754,14.80807,0.13923203,1620000000000 ,1620000000000 ,1620000000000 ,1616812449550 -1616812449574 ,112.5711499,26.87908687,59.474823,215.4679969,218.8777413,14.806129,0.139211183,1620000000000 ,1620000000000 ,1620000000000 ,1616812449560 -1616812449586 ,112.571149,26.87908579,59.47317505,215.4761658,218.8834144,14.804252,0.139195845,1620000000000 ,1620000000000 ,1620000000000 ,1616812449570 -1616812449597 ,112.5711481,26.8790847,59.4715004,215.4848811,218.8882429,14.803631,0.139185479,1620000000000 ,1620000000000 ,1620000000000 ,1616812449580 -1616812449608 ,112.5711481,26.8790847,59.4715004,215.4848811,-400,14.803631,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812449590 -1616812449619 ,112.5711464,26.87908254,59.46828461,215.5006452,218.9059877,14.796504,0.278307736,1620000000000 ,1620000000000 ,1620000000000 ,1616812449600 -1616812449633 ,112.5711455,26.87908145,59.46680832,215.5078305,218.9150696,14.792322,0.139100976,1620000000000 ,1620000000000 ,1620000000000 ,1616812449610 -1616812449639 ,112.5711446,26.87908037,59.46538162,215.5164639,218.918937,14.7894125,0.139071893,1620000000000 ,1620000000000 ,1620000000000 ,1616812449620 -1616812449646 ,112.5711437,26.87907929,59.46393585,215.5241684,218.9284464,14.787255,0.139052967,1620000000000 ,1620000000000 ,1620000000000 ,1616812449630 -1616812449655 ,112.5711429,26.87907821,59.46248245,215.5296872,218.940252,14.7860155,0.139040758,1620000000000 ,1620000000000 ,1620000000000 ,1616812449640 -1616812449665 ,112.571142,26.87907713,59.46106339,215.5353425,218.9495272,14.784351,0.139028845,1620000000000 ,1620000000000 ,1620000000000 ,1616812449650 -1616812449674 ,112.5711411,26.87907605,59.4597168,215.5418449,218.9568399,14.781218,0.139008604,1620000000000 ,1620000000000 ,1620000000000 ,1616812449660 -1616812449684 ,112.5711403,26.87907497,59.45843124,215.5499592,218.9637393,14.777177,0.138977065,1620000000000 ,1620000000000 ,1620000000000 ,1616812449670 -1616812449696 ,112.5711394,26.87907389,59.45717621,215.5570626,218.9717377,14.773878,0.138947525,1620000000000 ,1620000000000 ,1620000000000 ,1616812449680 -1616812449705 ,112.5711385,26.87907281,59.45594406,215.56545,218.9829783,14.769649,0.138910241,1620000000000 ,1620000000000 ,1620000000000 ,1616812449690 -1616812449717 ,112.5711385,26.87907281,59.45594406,215.56545,-400,14.769649,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812449700 -1616812449727 ,112.5711368,26.87907065,59.4534874,215.5816786,219.0017457,14.763156,0.27773554,1620000000000 ,1620000000000 ,1620000000000 ,1616812449710 -1616812449736 ,112.5711359,26.87906957,59.45227814,215.5869788,219.0168519,14.758081,0.138814697,1620000000000 ,1620000000000 ,1620000000000 ,1616812449720 -1616812449747 ,112.571135,26.87906849,59.4510994,215.5945739,219.0237675,14.753394,0.138769817,1620000000000 ,1620000000000 ,1620000000000 ,1616812449730 -1616812449756 ,112.5711341,26.87906741,59.44994736,215.6019232,219.0360637,14.750334,0.138741756,1620000000000 ,1620000000000 ,1620000000000 ,1616812449740 -1616812449765 ,112.5711333,26.87906634,59.44879532,215.6098736,219.0438585,14.7468405,0.138710085,1620000000000 ,1620000000000 ,1620000000000 ,1616812449750 -1616812449775 ,112.5711324,26.87906526,59.44768524,215.6168404,219.0552287,14.742656,0.138679084,1620000000000 ,1620000000000 ,1620000000000 ,1616812449760 -1616812449785 ,112.5711315,26.87906418,59.44662476,215.6237798,219.0610685,14.738016,0.138639471,1620000000000 ,1620000000000 ,1620000000000 ,1616812449770 -1616812449800 ,112.5711306,26.87906311,59.44559479,215.6324405,219.0645516,14.733785,0.138600417,1620000000000 ,1620000000000 ,1620000000000 ,1616812449780 -1616812449807 ,112.5711298,26.87906203,59.44457245,215.6402816,219.0758124,14.730308,0.138569008,1620000000000 ,1620000000000 ,1620000000000 ,1616812449790 -1616812449817 ,112.5711289,26.87906096,59.44353485,215.647303,219.0848106,14.726505,0.138537171,1620000000000 ,1620000000000 ,1620000000000 ,1616812449800 -1616812449826 ,112.571128,26.87905988,59.44251251,215.6551167,219.0948854,14.721495,0.1384947,1620000000000 ,1620000000000 ,1620000000000 ,1616812449810 -1616812449839 ,112.5711271,26.87905881,59.44151306,215.6615371,219.1014489,14.717608,0.138457835,1620000000000 ,1620000000000 ,1620000000000 ,1616812449820 -1616812449848 ,112.5711263,26.87905773,59.44052887,215.6686132,219.1078558,14.712827,0.138417791,1620000000000 ,1620000000000 ,1620000000000 ,1616812449830 -1616812449856 ,112.5711254,26.87905666,59.43955231,215.6761537,219.1194655,14.708243,0.138379262,1620000000000 ,1620000000000 ,1620000000000 ,1616812449840 -1616812449867 ,112.5711245,26.87905559,59.43858719,215.6832844,219.1290366,14.703689,0.138339212,1620000000000 ,1620000000000 ,1620000000000 ,1616812449850 -1616812449878 ,112.5711237,26.87905451,59.4376564,215.6909343,219.1345804,14.699375,0.138301301,1620000000000 ,1620000000000 ,1620000000000 ,1616812449860 -1616812449888 ,112.5711228,26.87905344,59.43675232,215.6987207,219.1396734,14.694707,0.138262112,1620000000000 ,1620000000000 ,1620000000000 ,1616812449870 -1616812449901 ,112.5711219,26.87905237,59.43582535,215.7074906,219.1465144,14.691113,0.138229063,1620000000000 ,1620000000000 ,1620000000000 ,1616812449880 -1616812449908 ,112.571121,26.8790513,59.43485641,215.7161786,219.159564,14.688089,0.138198816,1620000000000 ,1620000000000 ,1620000000000 ,1616812449890 -1616812449918 ,112.5711202,26.87905023,59.43386078,215.7235006,219.1723674,14.683053,0.138159297,1620000000000 ,1620000000000 ,1620000000000 ,1616812449900 -1616812449926 ,112.5711193,26.87904916,59.4328804,215.7324345,219.1785022,14.678051,0.138115982,1620000000000 ,1620000000000 ,1620000000000 ,1616812449910 -1616812449937 ,112.5711184,26.87904808,59.43192291,215.7396745,219.1813964,14.672277,0.138066394,1620000000000 ,1620000000000 ,1620000000000 ,1616812449920 -1616812449947 ,112.5711175,26.87904702,59.43095016,215.7476795,219.1909757,14.667382,0.13801788,1620000000000 ,1620000000000 ,1620000000000 ,1616812449930 -1616812449956 ,112.5711167,26.87904595,59.42993927,215.7558211,219.2034901,14.662356,0.137975777,1620000000000 ,1620000000000 ,1620000000000 ,1616812449940 -1616812449967 ,112.5711158,26.87904488,59.42889023,215.76246,219.2102896,14.656855,0.137925639,1620000000000 ,1620000000000 ,1620000000000 ,1616812449950 -1616812449979 ,112.5711149,26.87904381,59.42781067,215.7710387,219.2165009,14.652013,0.137879141,1620000000000 ,1620000000000 ,1620000000000 ,1616812449960 -1616812449990 ,112.5711141,26.87904274,59.42671204,215.7785792,219.2231692,14.647576,0.1378381,1620000000000 ,1620000000000 ,1620000000000 ,1616812449970 -1616812449997 ,112.5711132,26.87904167,59.42557144,215.787841,219.2276867,14.643089,0.137795451,1620000000000 ,1620000000000 ,1620000000000 ,1616812449980 -1616812450007 ,112.5711123,26.87904061,59.42438126,215.7967202,219.237438,14.63747,0.137744623,1620000000000 ,1620000000000 ,1620000000000 ,1616812449990 -1616812450017 ,112.5711114,26.87903954,59.423172,215.8056814,219.2498731,14.630616,0.137687694,1620000000000 ,1620000000000 ,1620000000000 ,1616812450000 -1616812450028 ,112.5711106,26.87903848,59.42197037,215.8155716,219.2541681,14.623422,0.137621181,1620000000000 ,1620000000000 ,1620000000000 ,1616812450010 -1616812450038 ,112.5711097,26.87903741,59.42076492,215.8227569,219.2603294,14.616584,0.1375577,1620000000000 ,1620000000000 ,1620000000000 ,1616812450020 -1616812450049 ,112.5711088,26.87903635,59.41953278,215.8318547,219.2635385,14.610346,0.137499233,1620000000000 ,1620000000000 ,1620000000000 ,1616812450030 -1616812450059 ,112.571108,26.87903528,59.41825104,215.8422093,219.2681716,14.602584,0.137428039,1620000000000 ,1620000000000 ,1620000000000 ,1616812450040 -1616812450069 ,112.5711071,26.87903422,59.41693497,215.8502962,219.2774954,14.596187,0.137363562,1620000000000 ,1620000000000 ,1620000000000 ,1616812450050 -1616812450080 ,112.5711062,26.87903316,59.41563416,215.8572084,219.2838137,14.588182,0.137296394,1620000000000 ,1620000000000 ,1620000000000 ,1616812450060 -1616812450089 ,112.5711054,26.87903209,59.41437912,215.8646123,219.2848482,14.579083,0.137217095,1620000000000 ,1620000000000 ,1620000000000 ,1616812450070 -1616812450099 ,112.5711045,26.87903103,59.41315079,215.873956,219.2951253,14.570049,0.137134696,1620000000000 ,1620000000000 ,1620000000000 ,1616812450080 -1616812450111 ,112.5711036,26.87902997,59.4119339,215.8827533,219.3079011,14.560772,0.137052719,1620000000000 ,1620000000000 ,1620000000000 ,1616812450090 -1616812450121 ,112.5711028,26.87902891,59.41069794,215.8926434,219.3075593,14.549295,0.136948507,1620000000000 ,1620000000000 ,1620000000000 ,1616812450100 -1616812450132 ,112.5711019,26.87902785,59.4094429,215.902315,219.3107362,14.540372,0.136859321,1620000000000 ,1620000000000 ,1620000000000 ,1616812450110 -1616812450142 ,112.571101,26.8790268,59.40815735,215.913134,219.3240116,14.531541,0.136777521,1620000000000 ,1620000000000 ,1620000000000 ,1616812450120 -1616812450155 ,112.5711002,26.87902574,59.40684509,215.9220132,219.3421553,14.522024,0.136695321,1620000000000 ,1620000000000 ,1620000000000 ,1616812450130 -1616812450161 ,112.5710993,26.87902468,59.40555573,215.9313569,219.3559689,14.511399,0.136601506,1620000000000 ,1620000000000 ,1620000000000 ,1616812450140 -1616812450171 ,112.5710984,26.87902363,59.40431976,215.939799,219.3633757,14.499014,0.136492747,1620000000000 ,1620000000000 ,1620000000000 ,1616812450150 -1616812450181 ,112.5710976,26.87902257,59.40312576,215.9489788,219.3701781,14.486243,0.136378234,1620000000000 ,1620000000000 ,1620000000000 ,1616812450160 -1616812450192 ,112.5710967,26.87902152,59.40193939,215.9575302,219.3777257,14.473984,0.136264905,1620000000000 ,1620000000000 ,1620000000000 ,1616812450170 -1616812450203 ,112.5710958,26.87902047,59.40073013,215.9663275,219.3878914,14.462557,0.136157023,1620000000000 ,1620000000000 ,1620000000000 ,1616812450180 -1616812450212 ,112.571095,26.87901942,59.39952087,215.9757531,219.3982653,14.450696,0.136049636,1620000000000 ,1620000000000 ,1620000000000 ,1616812450190 -1616812450222 ,112.5710941,26.87901836,59.3983078,215.9853974,219.4071835,14.438197,0.135935535,1620000000000 ,1620000000000 ,1620000000000 ,1616812450200 -1616812450233 ,112.5710932,26.87901731,59.39687347,215.9929925,219.4334704,14.448853,0.136501449,1620000000000 ,1620000000000 ,1620000000000 ,1616812450210 -1616812450242 ,112.5710924,26.87901626,59.39546204,216.0039208,219.4451791,14.434939,0.136484408,1620000000000 ,1620000000000 ,1620000000000 ,1616812450220 -1616812450253 ,112.5710915,26.8790152,59.39410019,216.0122537,219.4449832,14.42244,0.136367403,1620000000000 ,1620000000000 ,1620000000000 ,1616812450230 -1616812450262 ,112.5710906,26.87901415,59.3927803,216.0245753,219.4617061,14.406618,0.136231066,1620000000000 ,1620000000000 ,1620000000000 ,1616812450240 -1616812450272 ,112.5710898,26.8790131,59.39143753,216.0363233,219.4656865,14.392756,0.136097109,1620000000000 ,1620000000000 ,1620000000000 ,1616812450260 -1616812450283 ,112.5710889,26.87901205,59.39005661,216.0449839,219.4648746,14.377002,0.135952596,1620000000000 ,1620000000000 ,1620000000000 ,1616812450260 -1616812450296 ,112.571088,26.879011,59.38869095,216.0523605,219.4786243,14.361996,0.13581048,1620000000000 ,1620000000000 ,1620000000000 ,1616812450270 -1616812450304 ,112.5710872,26.87900996,59.38731003,216.0617862,219.4958944,14.349463,0.135691965,1620000000000 ,1620000000000 ,1620000000000 ,1616812450280 -1616812450313 ,112.5710863,26.87900891,59.38590622,216.0712119,219.5147665,14.334708,0.135566068,1620000000000 ,1620000000000 ,1620000000000 ,1616812450300 -1616812450323 ,112.5710855,26.87900787,59.38455582,216.0821402,219.5303205,14.317634,0.135413466,1620000000000 ,1620000000000 ,1620000000000 ,1616812450310 -1616812450334 ,112.5710837,26.87900578,59.38214111,216.1004178,219.5346998,14.283299,0.270349949,1620000000000 ,1620000000000 ,1620000000000 ,1616812450320 -1616812450343 ,112.5710829,26.87900474,59.38092804,216.1106084,219.5559981,14.268731,0.134959991,1620000000000 ,1620000000000 ,1620000000000 ,1616812450330 -1616812450353 ,112.571082,26.8790037,59.37965775,216.1195696,219.5810734,14.252941,0.134819458,1620000000000 ,1620000000000 ,1620000000000 ,1616812450340 -1616812450364 ,112.571082,26.8790037,59.37965775,216.1195696,-400,14.252941,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812450350 -1616812450375 ,112.5710803,26.87900163,59.3772583,216.1378472,219.5938686,14.21764,0.26916898,1620000000000 ,1620000000000 ,1620000000000 ,1616812450360 -1616812450384 ,112.5710794,26.87900059,59.37617111,216.1482291,219.6020112,14.200275,0.13434015,1620000000000 ,1620000000000 ,1620000000000 ,1616812450370 -1616812450395 ,112.5710786,26.87899956,59.37509918,216.1589115,219.6131639,14.183428,0.134185249,1620000000000 ,1620000000000 ,1620000000000 ,1616812450380 -1616812450404 ,112.5710786,26.87899956,59.37509918,216.1589115,-400,14.183428,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812450390 -1616812450415 ,112.5710769,26.87899749,59.37293625,216.1770525,219.6369933,14.149775,0.267909114,1620000000000 ,1620000000000 ,1620000000000 ,1616812450400 -1616812450425 ,112.571076,26.87899647,59.37187195,216.1877349,219.6517202,14.132894,0.133722286,1620000000000 ,1620000000000 ,1620000000000 ,1616812450410 -1616812450434 ,112.5710752,26.87899544,59.37081528,216.1979529,219.6648207,14.116775,0.133572497,1620000000000 ,1620000000000 ,1620000000000 ,1616812450420 -1616812450444 ,112.5710743,26.87899441,59.36973953,216.2075424,219.6786497,14.0998,0.133417611,1620000000000 ,1620000000000 ,1620000000000 ,1616812450430 -1616812450455 ,112.5710735,26.87899338,59.36865234,216.2164217,219.6924488,14.082613,0.133260523,1620000000000 ,1620000000000 ,1620000000000 ,1616812450440 -1616812450464 ,112.5710726,26.87899236,59.36757278,216.2252736,219.7019116,14.067845,0.133117084,1620000000000 ,1620000000000 ,1620000000000 ,1616812450450 -1616812450474 ,112.5710718,26.87899134,59.36670303,216.2347266,219.7040218,14.049703,0.13239205,1620000000000 ,1620000000000 ,1620000000000 ,1616812450460 -1616812450487 ,112.5710709,26.87899033,59.36583328,216.2432507,219.7152845,14.029595,0.132205895,1620000000000 ,1620000000000 ,1620000000000 ,1616812450470 -1616812450494 ,112.5710701,26.87898931,59.36497116,216.2503541,219.7264877,14.011606,0.132041393,1620000000000 ,1620000000000 ,1620000000000 ,1616812450480 -1616812450504 ,112.5710692,26.8789883,59.36413193,216.2579766,219.7375781,13.994709,0.131883406,1620000000000 ,1620000000000 ,1620000000000 ,1616812450490 -1616812450516 ,112.5710684,26.87898728,59.36328125,216.2683858,219.7399278,13.978057,0.131724963,1620000000000 ,1620000000000 ,1620000000000 ,1616812450500 -1616812450525 ,112.5710676,26.87898627,59.36243057,216.2760902,219.7429689,13.961296,0.131570232,1620000000000 ,1620000000000 ,1620000000000 ,1616812450510 -1616812450536 ,112.5710667,26.87898526,59.36154938,216.285953,219.7475713,13.944435,0.131410849,1620000000000 ,1620000000000 ,1620000000000 ,1616812450520 -1616812450547 ,112.5710659,26.87898425,59.36062241,216.2950782,219.755132,13.927148,0.13124763,1620000000000 ,1620000000000 ,1620000000000 ,1616812450530 -1616812450557 ,112.571065,26.87898324,59.3596611,216.3046951,219.7690189,13.9097,0.131088025,1620000000000 ,1620000000000 ,1620000000000 ,1616812450540 -1616812450565 ,112.5710642,26.87898224,59.3586998,216.3142573,219.7856655,13.892489,0.130928567,1620000000000 ,1620000000000 ,1620000000000 ,1616812450550 -1616812450576 ,112.5710634,26.87898123,59.35774612,216.3228907,219.7931978,13.87597,0.130775612,1620000000000 ,1620000000000 ,1620000000000 ,1616812450560 -1616812450585 ,112.5710625,26.87898023,59.35676956,216.3309503,219.7967713,13.858542,0.130611871,1620000000000 ,1620000000000 ,1620000000000 ,1616812450570 -1616812450595 ,112.5710617,26.87897923,59.35575485,216.3414688,219.8049291,13.839935,0.130440067,1620000000000 ,1620000000000 ,1620000000000 ,1616812450580 -1616812450606 ,112.5710609,26.87897823,59.35469818,216.3507305,219.8170359,13.821084,0.130264335,1620000000000 ,1620000000000 ,1620000000000 ,1616812450590 -1616812450615 ,112.57106,26.87897723,59.35359955,216.3603748,219.829965,13.804033,0.130098517,1620000000000 ,1620000000000 ,1620000000000 ,1616812450600 -1616812450629 ,112.5710592,26.87897623,59.35247803,216.3694179,219.842457,13.788615,0.129951551,1620000000000 ,1620000000000 ,1620000000000 ,1616812450610 -1616812450637 ,112.5710584,26.87897523,59.35129929,216.3775049,219.8545437,13.773606,0.129809692,1620000000000 ,1620000000000 ,1620000000000 ,1616812450620 -1616812450647 ,112.5710575,26.87897424,59.35007095,216.3858377,219.8638063,13.756523,0.12965427,1620000000000 ,1620000000000 ,1620000000000 ,1616812450630 -1616812450655 ,112.5710567,26.87897324,59.34879684,216.3944711,219.8645787,13.738428,0.129480878,1620000000000 ,1620000000000 ,1620000000000 ,1616812450640 -1616812450665 ,112.5710559,26.87897225,59.34750748,216.4035416,219.8762532,13.718533,0.129299039,1620000000000 ,1620000000000 ,1620000000000 ,1616812450650 -1616812450675 ,112.571055,26.87897126,59.34621429,216.4151529,219.8911642,13.70184,0.129136297,1620000000000 ,1620000000000 ,1620000000000 ,1616812450660 -1616812450686 ,112.5710542,26.87897027,59.34490967,216.4242234,219.8903005,13.6847105,0.128977323,1620000000000 ,1620000000000 ,1620000000000 ,1616812450670 -1616812450700 ,112.5710534,26.87896928,59.3435936,216.4351517,219.8948223,13.667699,0.128814659,1620000000000 ,1620000000000 ,1620000000000 ,1616812450680 -1616812450709 ,112.5710526,26.8789683,59.34225845,216.4442222,219.8931223,13.649961,0.128648494,1620000000000 ,1620000000000 ,1620000000000 ,1616812450690 -1616812450722 ,112.5710517,26.87896731,59.34091187,216.4525823,219.9023216,13.630196,0.128468359,1620000000000 ,1620000000000 ,1620000000000 ,1616812450700 -1616812450729 ,112.5710509,26.87896633,59.33961105,216.4609698,219.9185647,13.6124325,0.128300209,1620000000000 ,1620000000000 ,1620000000000 ,1616812450710 -1616812450738 ,112.5710501,26.87896534,59.33834457,216.4702588,219.9293561,13.596222,0.128149498,1620000000000 ,1620000000000 ,1620000000000 ,1616812450720 -1616812450750 ,112.5710493,26.87896436,59.33712387,216.4811325,219.9385995,13.579127,0.127995824,1620000000000 ,1620000000000 ,1620000000000 ,1616812450730 -1616812450758 ,112.5710485,26.87896338,59.3359375,216.4911046,219.9466636,13.560284,0.127826152,1620000000000 ,1620000000000 ,1620000000000 ,1616812450740 -1616812450767 ,112.5710476,26.8789624,59.3347702,216.5006122,219.9528366,13.540217,0.12764298,1620000000000 ,1620000000000 ,1620000000000 ,1616812450750 -1616812450777 ,112.5710468,26.87896143,59.33358765,216.5124967,219.9688802,13.522478,0.127470055,1620000000000 ,1620000000000 ,1620000000000 ,1616812450760 -1616812450789 ,112.571046,26.87896045,59.33238602,216.5232884,219.9858816,13.5055,0.127313877,1620000000000 ,1620000000000 ,1620000000000 ,1616812450770 -1616812450805 ,112.5710452,26.87895948,59.33120728,216.5316759,220.0011921,13.487931,0.127154886,1620000000000 ,1620000000000 ,1620000000000 ,1616812450780 -1616812450809 ,112.5710444,26.87895851,59.33007813,216.5418119,220.0084891,13.468798,0.126983744,1620000000000 ,1620000000000 ,1620000000000 ,1616812450790 -1616812450821 ,112.5710435,26.87895753,59.32898331,216.5516747,220.0230918,13.449065,0.126808056,1620000000000 ,1620000000000 ,1620000000000 ,1616812450800 -1616812450832 ,112.5710427,26.87895656,59.32794189,216.559789,220.0363004,13.429008,0.126624909,1620000000000 ,1620000000000 ,1620000000000 ,1616812450810 -1616812450838 ,112.5710419,26.8789556,59.32693863,216.5693512,220.0472906,13.411226,0.126453912,1620000000000 ,1620000000000 ,1620000000000 ,1616812450820 -1616812450847 ,112.5710411,26.87895463,59.32593918,216.579214,220.0600134,13.394744,0.126303049,1620000000000 ,1620000000000 ,1620000000000 ,1616812450830 -1616812450858 ,112.5710403,26.87895366,59.32489395,216.5896779,220.0693583,13.377277,0.126143152,1620000000000 ,1620000000000 ,1620000000000 ,1616812450840 -1616812450868 ,112.5710395,26.8789527,59.32381821,216.5974096,220.0793483,13.357068,0.125961208,1620000000000 ,1620000000000 ,1620000000000 ,1616812450850 -1616812450878 ,112.5710387,26.87895174,59.32273865,216.6069719,220.0888019,13.336747,0.125769057,1620000000000 ,1620000000000 ,1620000000000 ,1616812450860 -1616812450889 ,112.5710379,26.87895078,59.3216629,216.6175724,220.0983745,13.318958,0.125600157,1620000000000 ,1620000000000 ,1620000000000 ,1616812450870 -1616812450901 ,112.5710371,26.87894982,59.32058716,216.6268068,220.1045643,13.301812,0.125439239,1620000000000 ,1620000000000 ,1620000000000 ,1616812450880 -1616812450909 ,112.5710362,26.87894886,59.31949615,216.6364783,220.1135621,13.283948,0.125277407,1620000000000 ,1620000000000 ,1620000000000 ,1616812450890 -1616812450918 ,112.5710354,26.8789479,59.31838226,216.6471334,220.1254949,13.265827,0.125108945,1620000000000 ,1620000000000 ,1620000000000 ,1616812450900 -1616812450928 ,112.5710346,26.87894695,59.31723022,216.6570235,220.1427026,13.245418,0.124925384,1620000000000 ,1620000000000 ,1620000000000 ,1616812450910 -1616812450940 ,112.5710338,26.878946,59.3160553,216.6681431,220.1562107,13.225041,0.124736628,1620000000000 ,1620000000000 ,1620000000000 ,1616812450920 -1616812450950 ,112.571033,26.87894504,59.31485367,216.6784703,220.1651093,13.206359,0.124555569,1620000000000 ,1620000000000 ,1620000000000 ,1616812450930 -1616812450959 ,112.5710322,26.87894409,59.31359863,216.6876228,220.1764791,13.190385,0.124398606,1620000000000 ,1620000000000 ,1620000000000 ,1616812450940 -1616812450970 ,112.5710314,26.87894314,59.31228256,216.6966386,220.1881439,13.174212,0.124248246,1620000000000 ,1620000000000 ,1620000000000 ,1616812450950 -1616812450980 ,112.5710306,26.8789422,59.31090927,216.7065014,220.2003493,13.156623,0.124087523,1620000000000 ,1620000000000 ,1620000000000 ,1616812450960 -1616812450990 ,112.5710298,26.87894125,59.30951691,216.7155173,220.218018,13.137217,0.12391011,1620000000000 ,1620000000000 ,1620000000000 ,1616812450970 -1616812450999 ,112.571029,26.87894031,59.30812073,216.7230305,220.2301881,13.117615,0.123728689,1620000000000 ,1620000000000 ,1620000000000 ,1616812450980 -1616812451008 ,112.5710282,26.87893936,59.3067131,216.7336583,220.2417367,13.097351,0.123538109,1620000000000 ,1620000000000 ,1620000000000 ,1616812450990 -1616812451018 ,112.5710274,26.87893842,59.30528641,216.7430293,220.2521298,13.079353,0.123365453,1620000000000 ,1620000000000 ,1620000000000 ,1616812451000 -1616812451029 ,112.5710266,26.87893748,59.30382156,216.7527828,220.2637579,13.0613575,0.123197316,1620000000000 ,1620000000000 ,1620000000000 ,1616812451010 -1616812451039 ,112.5710258,26.87893654,59.30231094,216.7623451,220.271269,13.042927,0.123023249,1620000000000 ,1620000000000 ,1620000000000 ,1616812451020 -1616812451050 ,112.571025,26.8789356,59.30075455,216.7731368,220.2817824,13.023593,0.122844341,1620000000000 ,1620000000000 ,1620000000000 ,1616812451030 -1616812451060 ,112.5710243,26.87893467,59.29915237,216.7829449,220.2881304,13.005363,0.12266849,1620000000000 ,1620000000000 ,1620000000000 ,1616812451040 -1616812451072 ,112.5710235,26.87893373,59.29753113,216.7931629,220.2952366,12.986807,0.122492772,1620000000000 ,1620000000000 ,1620000000000 ,1616812451050 -1616812451080 ,112.5710227,26.8789328,59.29592133,216.8032169,220.3047219,12.970418,0.122334068,1620000000000 ,1620000000000 ,1620000000000 ,1616812451060 -1616812451090 ,112.5710219,26.87893187,59.29433441,216.8116044,220.316917,12.951976,0.122173032,1620000000000 ,1620000000000 ,1620000000000 ,1616812451070 -1616812451100 ,112.5710211,26.87893094,59.2927475,216.8215218,220.3323092,12.932345,0.121993246,1620000000000 ,1620000000000 ,1620000000000 ,1616812451080 -1616812451110 ,112.5710203,26.87893001,59.29119873,216.8316851,220.3437622,12.911794,0.121803828,1620000000000 ,1620000000000 ,1620000000000 ,1616812451090 -1616812451124 ,112.5710195,26.87892909,59.28967667,216.8419031,220.3474109,12.892503,0.121619914,1620000000000 ,1620000000000 ,1620000000000 ,1616812451100 -1616812451133 ,112.5710187,26.87892816,59.2881279,216.8532139,220.353,12.875453,0.121455474,1620000000000 ,1620000000000 ,1620000000000 ,1616812451110 -1616812451147 ,112.5710179,26.87892724,59.28652191,216.8650711,220.3745697,12.858659,0.121298853,1620000000000 ,1620000000000 ,1620000000000 ,1616812451120 -1616812451153 ,112.5710172,26.87892631,59.28491211,216.8757262,220.3904924,12.840677,0.121135117,1620000000000 ,1620000000000 ,1620000000000 ,1616812451130 -1616812451166 ,112.5710164,26.87892539,59.2833786,216.884906,220.4017791,12.8217125,0.120966538,1620000000000 ,1620000000000 ,1620000000000 ,1616812451140 -1616812451170 ,112.5710156,26.87892447,59.28192902,216.8946868,220.4120118,12.802744,0.120792971,1620000000000 ,1620000000000 ,1620000000000 ,1616812451150 -1616812451180 ,112.5710148,26.87892355,59.28050613,216.9055878,220.4189307,12.783116,0.120613455,1620000000000 ,1620000000000 ,1620000000000 ,1616812451160 -1616812451191 ,112.571014,26.87892264,59.27908707,216.9141119,220.4332403,12.764094,0.120434908,1620000000000 ,1620000000000 ,1620000000000 ,1616812451170 -1616812451202 ,112.5710132,26.87892172,59.277668,216.9244391,220.4460547,12.745504,0.12026086,1620000000000 ,1620000000000 ,1620000000000 ,1616812451180 -1616812451211 ,112.5710125,26.87892081,59.27624893,216.9346844,220.4579565,12.726637,0.120089217,1620000000000 ,1620000000000 ,1620000000000 ,1616812451190 -1616812451221 ,112.5710117,26.8789199,59.27483368,216.9450936,220.4698123,12.708162,0.119918104,1620000000000 ,1620000000000 ,1620000000000 ,1616812451200 -1616812451235 ,112.5710109,26.87891898,59.27340698,216.9500113,220.3242121,12.69029,0.119696683,1620000000000 ,1620000000000 ,1620000000000 ,1616812451210 -1616812451241 ,112.5710101,26.87891807,59.27195358,216.9613221,220.3126554,12.671257,0.119518416,1620000000000 ,1620000000000 ,1620000000000 ,1616812451220 -1616812451252 ,112.5710094,26.87891716,59.27052307,216.9700101,220.3251466,12.652103,0.119343594,1620000000000 ,1620000000000 ,1620000000000 ,1616812451230 -1616812451267 ,112.5710086,26.87891625,59.26912308,216.9803647,220.3356189,12.632567,0.119163806,1620000000000 ,1620000000000 ,1620000000000 ,1616812451240 -1616812451272 ,112.5710078,26.87891535,59.26773071,216.9917574,220.3469289,12.614555,0.118993125,1620000000000 ,1620000000000 ,1620000000000 ,1616812451250 -1616812451283 ,112.5710071,26.87891444,59.26629257,217.0027131,220.3651177,12.596655,0.11882617,1620000000000 ,1620000000000 ,1620000000000 ,1616812451260 -1616812451296 ,112.5710063,26.87891354,59.2647934,217.0137233,220.3763921,12.578194,0.118653975,1620000000000 ,1620000000000 ,1620000000000 ,1616812451270 -1616812451303 ,112.5710055,26.87891264,59.26327515,217.0248975,220.3823816,12.558433,0.118469697,1620000000000 ,1620000000000 ,1620000000000 ,1616812451280 -1616812451317 ,112.5710048,26.87891173,59.26177597,217.0362903,220.3928314,12.540587,0.118300152,1620000000000 ,1620000000000 ,1620000000000 ,1616812451290 -1616812451323 ,112.571004,26.87891083,59.26026917,217.0477923,220.4082826,12.522893,0.118137517,1620000000000 ,1620000000000 ,1620000000000 ,1616812451300 -1616812451335 ,112.5710032,26.87890994,59.25873184,217.0598135,220.4296558,12.504144,0.117966022,1620000000000 ,1620000000000 ,1620000000000 ,1616812451310 -1616812451346 ,112.5710025,26.87890904,59.25715256,217.072299,220.4453455,12.484747,0.117784438,1620000000000 ,1620000000000 ,1620000000000 ,1616812451320 -1616812451354 ,112.5710017,26.87890815,59.25555038,217.0825443,220.4568106,12.468846,0.117628534,1620000000000 ,1620000000000 ,1620000000000 ,1616812451330 -1616812451363 ,112.5710009,26.87890725,59.25393295,217.0917241,220.4628791,12.452762,0.117475711,1620000000000 ,1620000000000 ,1620000000000 ,1616812451350 -1616812451373 ,112.5710002,26.87890636,59.25230026,217.1024612,220.4717943,12.433452,0.117306875,1620000000000 ,1620000000000 ,1620000000000 ,1616812451360 -1616812451384 ,112.5709994,26.87890547,59.2506485,217.1129523,220.4903855,12.4128065,0.117114543,1620000000000 ,1620000000000 ,1620000000000 ,1616812451370 -1616812451397 ,112.5709987,26.87890458,59.24897003,217.1234162,220.5055227,12.392731,0.116923416,1620000000000 ,1620000000000 ,1620000000000 ,1616812451380 -1616812451404 ,112.5709979,26.87890369,59.24724579,217.134727,220.5176967,12.374856,0.116751033,1620000000000 ,1620000000000 ,1620000000000 ,1616812451380 -1616812451415 ,112.5709964,26.87890192,59.24363708,217.1594796,220.5311938,12.340805,0.23300883,1620000000000 ,1620000000000 ,1620000000000 ,1616812451400 -1616812451423 ,112.5709964,26.87890192,59.24363708,217.1594796,-400,12.340805,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812451410 -1616812451433 ,112.5709949,26.87890016,59.23999405,217.1793964,220.5606089,12.303847,0.232350804,1620000000000 ,1620000000000 ,1620000000000 ,1616812451420 -1616812451445 ,112.5709941,26.87889928,59.23823547,217.1910624,220.580734,12.284598,0.115911339,1620000000000 ,1620000000000 ,1620000000000 ,1616812451430 -1616812451453 ,112.5709934,26.8788984,59.23649979,217.2025371,220.5899815,12.264621,0.115726267,1620000000000 ,1620000000000 ,1620000000000 ,1616812451440 -1616812451464 ,112.5709926,26.87889752,59.23476791,217.2140118,220.5987579,12.2457905,0.115547303,1620000000000 ,1620000000000 ,1620000000000 ,1616812451450 -1616812451475 ,112.5709919,26.87889664,59.23301697,217.2246123,220.7485545,12.227664,0.115421503,1620000000000 ,1620000000000 ,1620000000000 ,1616812451460 -1616812451484 ,112.5709911,26.87889577,59.23127365,217.2348575,220.7653371,12.210304,0.11525781,1620000000000 ,1620000000000 ,1620000000000 ,1616812451470 -1616812451496 ,112.5709904,26.8788949,59.22955704,217.2461683,220.7855983,12.192027,0.115093204,1620000000000 ,1620000000000 ,1620000000000 ,1616812451480 -1616812451504 ,112.5709904,26.8788949,59.22955704,217.2461683,-400,12.192027,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812451490 -1616812451515 ,112.5709888,26.87889316,59.22607803,217.2669867,220.8066234,12.158841,0.229704071,1620000000000 ,1620000000000 ,1620000000000 ,1616812451500 -1616812451524 ,112.5709881,26.87889229,59.22432327,217.2785708,220.8198269,12.141243,0.11461299,1620000000000 ,1620000000000 ,1620000000000 ,1616812451510 -1616812451534 ,112.5709874,26.87889143,59.22255325,217.28898,220.8346216,12.12392,0.114448398,1620000000000 ,1620000000000 ,1620000000000 ,1616812451520 -1616812451550 ,112.5709866,26.87889056,59.22080994,217.2996624,220.856726,12.1049795,0.114278744,1620000000000 ,1620000000000 ,1620000000000 ,1616812451530 -1616812451557 ,112.5709859,26.8788897,59.2191124,217.3106726,220.8732079,12.088124,0.114120038,1620000000000 ,1620000000000 ,1620000000000 ,1616812451540 -1616812451566 ,112.5709851,26.87888884,59.21747208,217.3220108,220.8905306,12.0694065,0.113950725,1620000000000 ,1620000000000 ,1620000000000 ,1616812451550 -1616812451575 ,112.5709844,26.87888798,59.21579361,217.3336494,220.8907834,12.054,0.113794914,1620000000000 ,1620000000000 ,1620000000000 ,1616812451560 -1616812451585 ,112.5709836,26.87888712,59.21399307,217.3457252,220.9058384,12.037725,0.11363683,1620000000000 ,1620000000000 ,1620000000000 ,1616812451570 -1616812451595 ,112.5709829,26.87888626,59.21212006,217.3565442,220.9323697,12.022429,0.11349044,1620000000000 ,1620000000000 ,1620000000000 ,1616812451580 -1616812451604 ,112.5709821,26.87888541,59.21026993,217.3653415,220.945152,12.007948,0.113353507,1620000000000 ,1620000000000 ,1620000000000 ,1616812451590 -1616812451615 ,112.5709814,26.87888455,59.20848846,217.3755868,220.9541549,11.993576,0.113222048,1620000000000 ,1620000000000 ,1620000000000 ,1616812451600 -1616812451637 ,112.5709807,26.8788837,59.20677948,217.3866243,220.9697163,11.978075,0.113082349,1620000000000 ,1620000000000 ,1620000000000 ,1616812451610 -1616812451639 ,112.5709799,26.87888285,59.20513535,217.3969243,220.9843539,11.960997,0.112930759,1620000000000 ,1620000000000 ,1620000000000 ,1616812451620 -1616812451646 ,112.5709792,26.87888199,59.20352936,217.4085629,220.9963307,11.946281,0.112786849,1620000000000 ,1620000000000 ,1620000000000 ,1616812451630 -1616812451658 ,112.5709784,26.87888114,59.20193481,217.4186716,221.0081397,11.934562,0.112672092,1620000000000 ,1620000000000 ,1620000000000 ,1616812451640 -1616812451667 ,112.5709777,26.87888029,59.20035172,217.430119,221.0233803,11.921661,0.112554737,1620000000000 ,1620000000000 ,1620000000000 ,1616812451650 -1616812451674 ,112.570977,26.87887945,59.19884109,217.4421674,221.0324769,11.907159,0.112424578,1620000000000 ,1620000000000 ,1620000000000 ,1616812451660 -1616812451685 ,112.5709762,26.8788786,59.1974678,217.4518117,221.0441784,11.893804,0.112305776,1620000000000 ,1620000000000 ,1620000000000 ,1616812451670 -1616812451696 ,112.5709755,26.87887775,59.19617844,217.4632591,221.0646784,11.882468,0.112198684,1620000000000 ,1620000000000 ,1620000000000 ,1616812451680 -1616812451706 ,112.5709747,26.87887691,59.19491959,217.4738322,221.0753973,11.872321,0.112103361,1620000000000 ,1620000000000 ,1620000000000 ,1616812451690 -1616812451718 ,112.570974,26.87887606,59.19366837,217.4841321,221.0833688,11.860793,0.111998407,1620000000000 ,1620000000000 ,1620000000000 ,1616812451700 -1616812451726 ,112.5709733,26.87887522,59.19247818,217.492984,221.0927253,11.849811,0.111898402,1620000000000 ,1620000000000 ,1620000000000 ,1616812451710 -1616812451736 ,112.5709725,26.87887438,59.19137192,217.5035299,221.1006083,11.838021,0.111792282,1620000000000 ,1620000000000 ,1620000000000 ,1616812451720 -1616812451748 ,112.5709718,26.87887354,59.19033813,217.5138298,221.1115474,11.827113,0.11169264,1620000000000 ,1620000000000 ,1620000000000 ,1616812451730 -1616812451757 ,112.5709711,26.8788727,59.18933868,217.5240204,221.1241291,11.81764,0.111601163,1620000000000 ,1620000000000 ,1620000000000 ,1616812451740 -1616812451766 ,112.5709703,26.87887186,59.18836212,217.5352493,221.1378897,11.807389,0.111510815,1620000000000 ,1620000000000 ,1620000000000 ,1616812451750 -1616812451776 ,112.5709696,26.87887102,59.18741989,217.5439919,221.1476507,11.797606,0.111419998,1620000000000 ,1620000000000 ,1620000000000 ,1616812451760 -1616812451787 ,112.5709689,26.87887018,59.18650436,217.5545104,221.1587361,11.788964,0.111340098,1620000000000 ,1620000000000 ,1620000000000 ,1616812451770 -1616812451798 ,112.5709681,26.87886934,59.1856041,217.5645644,221.1738113,11.779393,0.111253696,1620000000000 ,1620000000000 ,1620000000000 ,1616812451780 -1616812451808 ,112.5709674,26.87886851,59.18474197,217.5732798,221.192531,11.76945,0.111165628,1620000000000 ,1620000000000 ,1620000000000 ,1616812451790 -1616812451817 ,112.5709667,26.87886767,59.18393326,217.5848638,221.2018149,11.759993,0.111079981,1620000000000 ,1620000000000 ,1620000000000 ,1616812451800 -1616812451827 ,112.5709659,26.87886683,59.18315887,217.5948085,221.2088865,11.750825,0.110995167,1620000000000 ,1620000000000 ,1620000000000 ,1616812451810 -1616812451837 ,112.5709652,26.878866,59.18237686,217.6064472,221.2248594,11.743275,0.110919454,1620000000000 ,1620000000000 ,1620000000000 ,1616812451820 -1616812451846 ,112.5709645,26.87886517,59.18156815,217.6159001,221.2441405,11.735525,0.110853834,1620000000000 ,1620000000000 ,1620000000000 ,1616812451830 -1616812451858 ,112.5709638,26.87886433,59.18077469,217.6239324,221.2525842,11.726086,0.110769602,1620000000000 ,1620000000000 ,1620000000000 ,1616812451840 -1616812451873 ,112.570963,26.8788635,59.18001938,217.6331942,221.2547982,11.717448,0.110684618,1620000000000 ,1620000000000 ,1620000000000 ,1616812451850 -1616812451876 ,112.5709623,26.87886267,59.1792717,217.6442591,221.2650101,11.710391,0.110618393,1620000000000 ,1620000000000 ,1620000000000 ,1616812451860 -1616812451888 ,112.5709616,26.87886184,59.17848587,217.6541492,221.2742905,11.704148,0.110556716,1620000000000 ,1620000000000 ,1620000000000 ,1616812451870 -1616812451898 ,112.5709608,26.87886101,59.17765045,217.6636568,221.2860139,11.698342,0.110500761,1620000000000 ,1620000000000 ,1620000000000 ,1616812451880 -1616812451908 ,112.5709601,26.87886018,59.17682648,217.673465,221.2968481,11.69109,0.110436503,1620000000000 ,1620000000000 ,1620000000000 ,1616812451890 -1616812451918 ,112.5709594,26.87885935,59.17603302,217.6818251,221.3024594,11.683802,0.110371776,1620000000000 ,1620000000000 ,1620000000000 ,1616812451900 -1616812451927 ,112.5709586,26.87885852,59.17524719,217.6922616,221.3090048,11.677318,0.110307914,1620000000000 ,1620000000000 ,1620000000000 ,1616812451910 -1616812451937 ,112.5709579,26.87885769,59.17444611,217.703026,221.3214354,11.670753,0.110250295,1620000000000 ,1620000000000 ,1620000000000 ,1616812451920 -1616812451948 ,112.5709572,26.87885687,59.17363739,217.7113042,221.3270289,11.665973,0.110199975,1620000000000 ,1620000000000 ,1620000000000 ,1616812451930 -1616812451964 ,112.5709565,26.87885604,59.17283249,217.7213856,221.3317624,11.660472,0.110150839,1620000000000 ,1620000000000 ,1620000000000 ,1616812451940 -1616812451980 ,112.5709557,26.87885521,59.17199707,217.7333521,221.3382268,11.656577,0.110108445,1620000000000 ,1620000000000 ,1620000000000 ,1616812451950 -1616812451982 ,112.570955,26.87885439,59.17111969,217.7444443,221.3544482,11.652132,0.110069963,1620000000000 ,1620000000000 ,1620000000000 ,1616812451960 -1616812451991 ,112.5709543,26.87885356,59.17023849,217.7555092,221.36498,11.64655,0.110020947,1620000000000 ,1620000000000 ,1620000000000 ,1616812451970 -1616812452000 ,112.5709536,26.87885274,59.16937256,217.7649895,221.3690721,11.641595,0.109974065,1620000000000 ,1620000000000 ,1620000000000 ,1616812451980 -1616812452008 ,112.5709528,26.87885191,59.16851044,217.7759724,221.3762354,11.636548,0.109927116,1620000000000 ,1620000000000 ,1620000000000 ,1616812451990 -1616812452018 ,112.5709521,26.87885109,59.16764069,217.7859718,221.3885455,11.6321945,0.109885083,1620000000000 ,1620000000000 ,1620000000000 ,1616812452000 -1616812452028 ,112.5709514,26.87885026,59.16676331,217.79578,221.4034886,11.628239,0.109848825,1620000000000 ,1620000000000 ,1620000000000 ,1616812452010 -1616812452039 ,112.5709506,26.87884944,59.16588974,217.8057248,221.420131,11.625061,0.109819888,1620000000000 ,1620000000000 ,1620000000000 ,1616812452020 -1616812452052 ,112.5709499,26.87884862,59.16502762,217.8164345,221.4278038,11.621743,0.109792076,1620000000000 ,1620000000000 ,1620000000000 ,1616812452030 -1616812452060 ,112.5709492,26.87884779,59.16415787,217.8267617,221.4321453,11.6173525,0.109752677,1620000000000 ,1620000000000 ,1620000000000 ,1616812452040 -1616812452078 ,112.5709485,26.87884697,59.16327286,217.8385916,221.446284,11.612979,0.109711335,1620000000000 ,1620000000000 ,1620000000000 ,1616812452050 -1616812452081 ,112.5709477,26.87884615,59.16236877,217.8492194,221.4641604,11.608684,0.109673482,1620000000000 ,1620000000000 ,1620000000000 ,1616812452060 -1616812452090 ,112.570947,26.87884533,59.16147614,217.8586724,221.4816378,11.604785,0.109640835,1620000000000 ,1620000000000 ,1620000000000 ,1616812452070 -1616812452099 ,112.5709463,26.87884451,59.16061401,217.8673331,221.490615,11.600194,0.109602122,1620000000000 ,1620000000000 ,1620000000000 ,1616812452080 -1616812452108 ,112.5709456,26.87884369,59.15977478,217.8768953,221.4999993,11.59587,0.109558975,1620000000000 ,1620000000000 ,1620000000000 ,1616812452090 -1616812452120 ,112.5709448,26.87884287,59.15893173,217.8874685,221.5119729,11.592742,0.109530705,1620000000000 ,1620000000000 ,1620000000000 ,1616812452100 -1616812452129 ,112.5709441,26.87884205,59.15807343,217.8967029,221.5236738,11.588897,0.109498665,1620000000000 ,1620000000000 ,1620000000000 ,1616812452110 -1616812452140 ,112.5709434,26.87884123,59.15724564,217.9058553,221.5389205,11.584089,0.109458582,1620000000000 ,1620000000000 ,1620000000000 ,1616812452120 -1616812452150 ,112.5709427,26.87884041,59.15647125,217.9140789,221.5453315,11.5789385,0.109410868,1620000000000 ,1620000000000 ,1620000000000 ,1616812452130 -1616812452159 ,112.5709419,26.87883959,59.15571594,217.9235865,221.5568247,11.575233,0.109381496,1620000000000 ,1620000000000 ,1620000000000 ,1616812452140 -1616812452169 ,112.5709412,26.87883877,59.15495682,217.93334,221.561636,11.570025,0.109329138,1620000000000 ,1620000000000 ,1620000000000 ,1616812452150 -1616812452179 ,112.5709405,26.87883795,59.15417862,217.9426837,221.5733171,11.5677185,0.109309318,1620000000000 ,1620000000000 ,1620000000000 ,1616812452160 -1616812452189 ,112.5709398,26.87883714,59.15342331,217.9524919,221.5843018,11.56224,0.109261517,1620000000000 ,1620000000000 ,1620000000000 ,1616812452170 -1616812452202 ,112.570939,26.87883632,59.15269852,217.96077,221.582571,11.558145,0.109224628,1620000000000 ,1620000000000 ,1620000000000 ,1616812452180 -1616812452210 ,112.5709383,26.8788355,59.15204239,217.9709334,221.585398,11.551193,0.109166157,1620000000000 ,1620000000000 ,1620000000000 ,1616812452190 -1616812452228 ,112.5709376,26.87883469,59.15140915,217.9822442,221.5955262,11.547787,0.109126915,1620000000000 ,1620000000000 ,1620000000000 ,1616812452200 -1616812452238 ,112.5709369,26.87883387,59.15121078,217.9915879,221.4220163,11.552436,0.109221242,1620000000000 ,1620000000000 ,1620000000000 ,1616812452210 -1616812452243 ,112.5709361,26.87883304,59.15168381,218.0016419,221.1338624,11.548094,0.109365864,1620000000000 ,1620000000000 ,1620000000000 ,1616812452220 -1616812452252 ,112.5709354,26.87883222,59.15222168,218.0119691,221.1362898,11.542895,0.109325249,1620000000000 ,1620000000000 ,1620000000000 ,1616812452230 -1616812452266 ,112.5709347,26.8788314,59.15282059,218.0206845,221.1355443,11.53601,0.109262078,1620000000000 ,1620000000000 ,1620000000000 ,1616812452240 -1616812452271 ,112.570934,26.87883057,59.15343475,218.0309844,221.1504383,11.532342,0.109220611,1620000000000 ,1620000000000 ,1620000000000 ,1616812452250 -1616812452284 ,112.5709333,26.87882975,59.15399933,218.0422132,221.1723056,11.528175,0.109188551,1620000000000 ,1620000000000 ,1620000000000 ,1616812452260 -1616812452293 ,112.5709326,26.87882893,59.15450287,218.0522946,221.1940186,11.524485,0.109153528,1620000000000 ,1620000000000 ,1620000000000 ,1616812452270 -1616812452320 ,112.5709318,26.87882811,59.15500641,218.0624306,221.2005794,11.520297,0.109116927,1620000000000 ,1620000000000 ,1620000000000 ,1616812452280 -1616812452324 ,112.5709311,26.87882729,59.1555481,218.0708181,221.1983976,11.51509,0.109069947,1620000000000 ,1620000000000 ,1620000000000 ,1616812452290 -1616812452330 ,112.5709304,26.87882647,59.15613937,218.0793148,221.2125874,11.510133,0.109026745,1620000000000 ,1620000000000 ,1620000000000 ,1616812452300 -1616812452337 ,112.5709297,26.87882565,59.15672684,218.0898606,221.228512,11.505435,0.108984414,1620000000000 ,1620000000000 ,1620000000000 ,1616812452310 -1616812452343 ,112.570929,26.87882483,59.1573143,218.099095,221.2494147,11.500354,0.108943019,1620000000000 ,1620000000000 ,1620000000000 ,1616812452320 -1616812452352 ,112.5709282,26.87882401,59.15792847,218.110078,221.2539186,11.495543,0.108897878,1620000000000 ,1620000000000 ,1620000000000 ,1616812452330 -1616812452361 ,112.5709275,26.87882319,59.15855408,218.1190392,221.2538969,11.491919,0.108859491,1620000000000 ,1620000000000 ,1620000000000 ,1616812452340 -1616812452371 ,112.5709268,26.87882238,59.15913773,218.1299948,221.2621762,11.488921,0.108830082,1620000000000 ,1620000000000 ,1620000000000 ,1616812452350 -1616812452385 ,112.5709261,26.87882156,59.1596756,218.1420979,221.2745057,11.4848,0.108793745,1620000000000 ,1620000000000 ,1620000000000 ,1616812452360 -1616812452392 ,112.5709254,26.87882074,59.16022873,218.1502395,221.2864537,11.479091,0.108745899,1620000000000 ,1620000000000 ,1620000000000 ,1616812452370 -1616812452404 ,112.5709247,26.87881992,59.16083527,218.1595285,221.2907002,11.472819,0.108690806,1620000000000 ,1620000000000 ,1620000000000 ,1616812452380 -1616812452414 ,112.5709239,26.87881911,59.16149139,218.1707027,221.2918137,11.467228,0.108638883,1620000000000 ,1620000000000 ,1620000000000 ,1616812452390 -1616812452421 ,112.5709232,26.87881829,59.16213608,218.1821775,221.3000965,11.462265,0.108590192,1620000000000 ,1620000000000 ,1620000000000 ,1616812452400 -1616812452431 ,112.5709225,26.87881748,59.16273499,218.1920129,221.3175052,11.457721,0.108545312,1620000000000 ,1620000000000 ,1620000000000 ,1616812452410 -1616812452441 ,112.5709218,26.87881666,59.16332245,218.2007283,221.3317602,11.452002,0.108498525,1620000000000 ,1620000000000 ,1620000000000 ,1616812452420 -1616812452452 ,112.5709211,26.87881585,59.16395187,218.2102086,221.3362109,11.445651,0.108441332,1620000000000 ,1620000000000 ,1620000000000 ,1616812452430 -1616812452463 ,112.5709204,26.87881503,59.16464996,218.220891,221.3375773,11.439906,0.108389681,1620000000000 ,1620000000000 ,1620000000000 ,1616812452440 -1616812452473 ,112.5709196,26.87881422,59.16533279,218.2328301,221.3508563,11.433354,0.108330249,1620000000000 ,1620000000000 ,1620000000000 ,1616812452460 -1616812452483 ,112.5709189,26.87881341,59.16550827,218.2448786,221.568863,11.427934,0.108157051,1620000000000 ,1620000000000 ,1620000000000 ,1616812452470 -1616812452493 ,112.5709182,26.87881261,59.16520691,218.2546321,221.7796345,11.42253,0.107992078,1620000000000 ,1620000000000 ,1620000000000 ,1616812452480 -1616812452503 ,112.5709175,26.8788118,59.16496277,218.2645222,221.783489,11.416304,0.107938441,1620000000000 ,1620000000000 ,1620000000000 ,1616812452480 -1616812452515 ,112.5709168,26.878811,59.16476822,218.2755325,221.7895434,11.4096575,0.107879009,1620000000000 ,1620000000000 ,1620000000000 ,1616812452500 -1616812452524 ,112.570916,26.87881019,59.16458511,218.2857231,221.8077324,11.403386,0.107823806,1620000000000 ,1620000000000 ,1620000000000 ,1616812452510 -1616812452536 ,112.5709146,26.87880859,59.1642189,218.3043832,221.837055,11.390709,0.215475506,1620000000000 ,1620000000000 ,1620000000000 ,1616812452520 -1616812452544 ,112.5709139,26.87880779,59.16410065,218.3141367,221.8411076,11.383777,0.107649511,1620000000000 ,1620000000000 ,1620000000000 ,1616812452530 -1616812452567 ,112.5709132,26.87880698,59.16399765,218.3239449,221.8508506,11.378272,0.107594648,1620000000000 ,1620000000000 ,1620000000000 ,1616812452540 -1616812452575 ,112.5709125,26.87880618,59.16387558,218.3340809,221.8640758,11.373451,0.107550828,1620000000000 ,1620000000000 ,1620000000000 ,1616812452550 -1616812452579 ,112.5709117,26.87880538,59.16372299,218.3428235,221.8766489,11.367292,0.107497251,1620000000000 ,1620000000000 ,1620000000000 ,1616812452560 -1616812452593 ,112.570911,26.87880458,59.16360474,218.3529049,221.8862101,11.361276,0.107444785,1620000000000 ,1620000000000 ,1620000000000 ,1616812452570 -1616812452601 ,112.5709103,26.87880378,59.16353607,218.363478,221.8858129,11.354035,0.107381361,1620000000000 ,1620000000000 ,1620000000000 ,1616812452580 -1616812452613 ,112.5709096,26.87880299,59.16350555,218.3739965,221.8918755,11.346252,0.107311135,1620000000000 ,1620000000000 ,1620000000000 ,1616812452590 -1616812452618 ,112.5709089,26.87880219,59.16347122,218.3830123,221.9010845,11.339494,0.107247764,1620000000000 ,1620000000000 ,1620000000000 ,1616812452600 -1616812452624 ,112.5709082,26.87880139,59.16342545,218.3936948,221.9190196,11.332335,0.10718671,1620000000000 ,1620000000000 ,1620000000000 ,1616812452610 -1616812452637 ,112.5709074,26.87880059,59.16339874,218.4057978,221.9243295,11.326549,0.107129903,1620000000000 ,1620000000000 ,1620000000000 ,1616812452620 -1616812452649 ,112.5709067,26.8787998,59.16339493,218.4154694,221.9272625,11.319702,0.107072954,1620000000000 ,1620000000000 ,1620000000000 ,1616812452630 -1616812452655 ,112.570906,26.878799,59.163414,218.4275998,221.9344849,11.311294,0.106999493,1620000000000 ,1620000000000 ,1620000000000 ,1616812452640 -1616812452664 ,112.5709053,26.8787982,59.16342545,218.4383915,221.9452754,11.303988,0.106927548,1620000000000 ,1620000000000 ,1620000000000 ,1616812452650 -1616812452674 ,112.5709046,26.87879741,59.16342163,218.44891,221.9675414,11.296295,0.106861093,1620000000000 ,1620000000000 ,1620000000000 ,1616812452660 -1616812452684 ,112.5709039,26.87879662,59.16339111,218.4588274,221.9785477,11.289647,0.106797476,1620000000000 ,1620000000000 ,1620000000000 ,1616812452670 -1616812452694 ,112.5709031,26.87879582,59.16334915,218.4678979,221.9927179,11.282112,0.106733317,1620000000000 ,1620000000000 ,1620000000000 ,1616812452680 -1616812452705 ,112.5709024,26.87879503,59.16330719,218.4763127,221.9985041,11.273709,0.106656457,1620000000000 ,1620000000000 ,1620000000000 ,1616812452690 -1616812452715 ,112.5709017,26.87879424,59.16326523,218.4854925,222.0033079,11.266575,0.106587243,1620000000000 ,1620000000000 ,1620000000000 ,1616812452700 -1616812452725 ,112.570901,26.87879345,59.1631813,218.4957378,222.019439,11.258836,0.106518934,1620000000000 ,1620000000000 ,1620000000000 ,1616812452710 -1616812452735 ,112.5709003,26.87879266,59.16305161,218.5050815,222.0333905,11.251284,0.106445268,1620000000000 ,1620000000000 ,1620000000000 ,1616812452720 -1616812452744 ,112.5708996,26.87879187,59.16290665,218.5137422,222.0359165,11.242768,0.106370472,1620000000000 ,1620000000000 ,1620000000000 ,1616812452730 -1616812452755 ,112.5708989,26.87879108,59.1627388,218.5229766,222.0382663,11.235025,0.106293294,1620000000000 ,1620000000000 ,1620000000000 ,1616812452740 -1616812452765 ,112.5708982,26.87879029,59.16252136,218.5319651,222.0509762,11.227319,0.106220516,1620000000000 ,1620000000000 ,1620000000000 ,1616812452750 -1616812452776 ,112.5708974,26.8787895,59.16223526,218.5408444,222.0635991,11.217921,0.106135829,1620000000000 ,1620000000000 ,1620000000000 ,1616812452760 -1616812452787 ,112.5708967,26.87878871,59.16192627,218.5499968,222.0707891,11.208384,0.106046463,1620000000000 ,1620000000000 ,1620000000000 ,1616812452770 -1616812452796 ,112.570896,26.87878793,59.16165161,218.5591219,222.0733133,11.198854,0.105959125,1620000000000 ,1620000000000 ,1620000000000 ,1616812452780 -1616812452807 ,112.5708953,26.87878714,59.1613884,218.5686842,222.0766845,11.18957,0.105870948,1620000000000 ,1620000000000 ,1620000000000 ,1616812452790 -1616812452818 ,112.5708946,26.87878636,59.16108322,218.5797764,222.0890564,11.179362,0.105776452,1620000000000 ,1620000000000 ,1620000000000 ,1616812452800 -1616812452826 ,112.5708939,26.87878557,59.16071701,218.5888469,222.1053147,11.16957,0.105685075,1620000000000 ,1620000000000 ,1620000000000 ,1616812452810 -1616812452836 ,112.5708932,26.87878479,59.16033173,218.5990376,222.1141899,11.1584425,0.105581275,1620000000000 ,1620000000000 ,1620000000000 ,1616812452820 -1616812452846 ,112.5708925,26.87878401,59.15997314,218.6092555,222.1194978,11.147744,0.105482045,1620000000000 ,1620000000000 ,1620000000000 ,1616812452830 -1616812452858 ,112.5708918,26.87878322,59.15963364,218.6201838,222.1240604,11.136555,0.105379151,1620000000000 ,1620000000000 ,1620000000000 ,1616812452840 -1616812452870 ,112.5708911,26.87878244,59.15927887,218.6306477,222.1393156,11.1252,0.105273408,1620000000000 ,1620000000000 ,1620000000000 ,1616812452850 -1616812452877 ,112.5708904,26.87878166,59.1589241,218.6407564,222.1546794,11.114537,0.10517564,1620000000000 ,1620000000000 ,1620000000000 ,1616812452860 -1616812452888 ,112.5708897,26.87878088,59.15857315,218.649581,222.1661228,11.103399,0.105073459,1620000000000 ,1620000000000 ,1620000000000 ,1616812452870 -1616812452897 ,112.570889,26.87878011,59.1582222,218.6594711,222.1786713,11.092264,0.104968325,1620000000000 ,1620000000000 ,1620000000000 ,1616812452880 -1616812452907 ,112.5708883,26.87877933,59.15787125,218.6693885,222.1864669,11.079835,0.104859179,1620000000000 ,1620000000000 ,1620000000000 ,1616812452890 -1616812452916 ,112.5708875,26.87877855,59.15753555,218.6808632,222.1962965,11.066388,0.104736836,1620000000000 ,1620000000000 ,1620000000000 ,1616812452900 -1616812452928 ,112.5708868,26.87877778,59.15726852,218.6884038,222.209005,11.053173,0.104616359,1620000000000 ,1620000000000 ,1620000000000 ,1616812452910 -1616812452937 ,112.5708861,26.87877701,59.15707016,218.6974196,222.2166914,11.039162,0.104491075,1620000000000 ,1620000000000 ,1620000000000 ,1616812452920 -1616812452950 ,112.5708854,26.87877623,59.15693283,218.7070092,222.2277069,11.025421,0.104365212,1620000000000 ,1620000000000 ,1620000000000 ,1616812452930 -1616812452958 ,112.5708847,26.87877546,59.15682983,218.71679,222.240431,11.01211,0.104244579,1620000000000 ,1620000000000 ,1620000000000 ,1616812452940 -1616812452969 ,112.570884,26.87877469,59.15673828,218.7254507,222.2492708,10.998015,0.104113832,1620000000000 ,1620000000000 ,1620000000000 ,1616812452950 -1616812452977 ,112.5708833,26.87877392,59.15664673,218.7339475,222.2575368,10.984932,0.103992152,1620000000000 ,1620000000000 ,1620000000000 ,1616812452960 -1616812452987 ,112.5708826,26.87877315,59.15655136,218.7434278,222.2654098,10.971554,0.10386848,1620000000000 ,1620000000000 ,1620000000000 ,1616812452970 -1616812452999 ,112.5708819,26.87877238,59.15647507,218.7540829,222.2741825,10.95658,0.103735223,1620000000000 ,1620000000000 ,1620000000000 ,1616812452980 -1616812453008 ,112.5708812,26.87877162,59.15643692,218.762525,222.2854853,10.940978,0.103596015,1620000000000 ,1620000000000 ,1620000000000 ,1616812452990 -1616812453017 ,112.5708806,26.87877085,59.15645981,218.7717047,222.2911146,10.92391,0.103444194,1620000000000 ,1620000000000 ,1620000000000 ,1616812453000 -1616812453028 ,112.5708799,26.87877009,59.15652466,218.781349,222.297732,10.908457,0.10329552,1620000000000 ,1620000000000 ,1620000000000 ,1616812453010 -1616812453038 ,112.5708792,26.87876933,59.15657425,218.7904741,222.3079353,10.892924,0.103154207,1620000000000 ,1620000000000 ,1620000000000 ,1616812453020 -1616812453050 ,112.5708785,26.87876856,59.15658951,218.8002823,222.3197986,10.878143,0.103014859,1620000000000 ,1620000000000 ,1620000000000 ,1616812453030 -1616812453058 ,112.5708778,26.8787678,59.15660858,218.8096533,222.3308793,10.862912,0.102876788,1620000000000 ,1620000000000 ,1620000000000 ,1616812453040 -1616812453070 ,112.5708771,26.87876704,59.15667343,218.8176856,222.3388058,10.846433,0.102728438,1620000000000 ,1620000000000 ,1620000000000 ,1616812453050 -1616812453078 ,112.5708764,26.87876629,59.15676117,218.8271112,222.3519236,10.830514,0.102580551,1620000000000 ,1620000000000 ,1620000000000 ,1616812453060 -1616812453088 ,112.5708757,26.87876553,59.15681076,218.8351435,222.3680718,10.814447,0.102434158,1620000000000 ,1620000000000 ,1620000000000 ,1616812453070 -1616812453098 ,112.570875,26.87876477,59.15678406,218.8453615,222.382441,10.7979355,0.102279577,1620000000000 ,1620000000000 ,1620000000000 ,1616812453080 -1616812453109 ,112.5708743,26.87876402,59.15669632,218.8552789,222.3908094,10.781446,0.10212436,1620000000000 ,1620000000000 ,1620000000000 ,1616812453090 -1616812453123 ,112.5708736,26.87876327,59.15654755,218.8663165,222.3956014,10.765976,0.101975595,1620000000000 ,1620000000000 ,1620000000000 ,1616812453100 -1616812453131 ,112.570873,26.87876251,59.15632248,218.8763159,222.4051202,10.749728,0.101823292,1620000000000 ,1620000000000 ,1620000000000 ,1616812453110 -1616812453143 ,112.5708723,26.87876176,59.15602493,218.8852771,222.4228706,10.732396,0.101664773,1620000000000 ,1620000000000 ,1620000000000 ,1616812453120 -1616812453150 ,112.5708716,26.87876101,59.15568924,218.8944569,222.4373957,10.715581,0.101506158,1620000000000 ,1620000000000 ,1620000000000 ,1616812453130 -1616812453160 ,112.5708709,26.87876027,59.15532684,218.9032815,222.447242,10.699208,0.101351169,1620000000000 ,1620000000000 ,1620000000000 ,1616812453140 -1616812453171 ,112.5708702,26.87875952,59.15489197,218.9129257,222.4561251,10.684103,0.101201597,1620000000000 ,1620000000000 ,1620000000000 ,1616812453150 -1616812453180 ,112.5708695,26.87875877,59.15436172,218.922406,222.4710565,10.668516,0.101057249,1620000000000 ,1620000000000 ,1620000000000 ,1616812453160 -1616812453192 ,112.5708688,26.87875803,59.15374756,218.9305749,222.4823807,10.651629,0.10090026,1620000000000 ,1620000000000 ,1620000000000 ,1616812453170 -1616812453202 ,112.5708682,26.87875729,59.15310669,218.939782,222.4903446,10.63396,0.100732179,1620000000000 ,1620000000000 ,1620000000000 ,1616812453180 -1616812453212 ,112.5708675,26.87875655,59.15246582,218.9497268,222.5013422,10.616026,0.100567177,1620000000000 ,1620000000000 ,1620000000000 ,1616812453190 -1616812453223 ,112.5708668,26.8787558,59.15202713,218.9511748,222.381441,10.640625,0.10098035,1620000000000 ,1620000000000 ,1620000000000 ,1616812453200 -1616812453232 ,112.5708661,26.87875505,59.15179443,218.9599448,222.2053545,10.624384,0.101787458,1620000000000 ,1620000000000 ,1620000000000 ,1616812453210 -1616812453242 ,112.5708654,26.87875429,59.15149689,218.9687694,222.2167344,10.608476,0.101635622,1620000000000 ,1620000000000 ,1620000000000 ,1616812453220 -1616812453253 ,112.5708648,26.87875354,59.1511116,218.978878,222.2195712,10.592895,0.101480827,1620000000000 ,1620000000000 ,1620000000000 ,1616812453230 -1616812453262 ,112.5708641,26.87875279,59.15066147,218.9877573,222.2283835,10.5769825,0.101332418,1620000000000 ,1620000000000 ,1620000000000 ,1616812453240 -1616812453272 ,112.5708634,26.87875204,59.15016937,218.9989042,222.2389363,10.56017,0.101171986,1620000000000 ,1620000000000 ,1620000000000 ,1616812453250 -1616812453282 ,112.5708627,26.8787513,59.14968109,219.0077288,222.2464624,10.542672,0.101012205,1620000000000 ,1620000000000 ,1620000000000 ,1616812453260 -1616812453292 ,112.570862,26.87875055,59.14920425,219.0180287,222.2525023,10.52542,0.100847221,1620000000000 ,1620000000000 ,1620000000000 ,1616812453270 -1616812453302 ,112.5708614,26.8787498,59.14873123,219.0283833,222.2625497,10.508865,0.100692247,1620000000000 ,1620000000000 ,1620000000000 ,1616812453280 -1616812453314 ,112.5708607,26.87874906,59.14824295,219.0385739,222.2791261,10.49281,0.100538686,1620000000000 ,1620000000000 ,1620000000000 ,1616812453290 -1616812453322 ,112.57086,26.87874832,59.14772034,219.0473985,222.2925464,10.476303,0.100385047,1620000000000 ,1620000000000 ,1620000000000 ,1616812453300 -1616812453333 ,112.5708593,26.87874758,59.14717865,219.0560045,222.3078321,10.460102,0.100234039,1620000000000 ,1620000000000 ,1620000000000 ,1616812453310 -1616812453343 ,112.5708587,26.87874684,59.14663696,219.0654848,222.3209745,10.442657,0.100073168,1620000000000 ,1620000000000 ,1620000000000 ,1616812453330 -1616812453353 ,112.570858,26.8787461,59.14611053,219.0727248,222.3314465,10.42566,0.099913336,1620000000000 ,1620000000000 ,1620000000000 ,1616812453340 -1616812453371 ,112.5708573,26.87874536,59.14560699,219.082615,222.3496234,10.408767,0.099756515,1620000000000 ,1620000000000 ,1620000000000 ,1616812453350 -1616812453374 ,112.5708566,26.87874462,59.14512253,219.0923685,222.366482,10.392292,0.099605959,1620000000000 ,1620000000000 ,1620000000000 ,1616812453360 -1616812453384 ,112.570856,26.87874389,59.14464951,219.1012477,222.377431,10.375801,0.09945149,1620000000000 ,1620000000000 ,1620000000000 ,1616812453370 -1616812453395 ,112.5708553,26.87874316,59.14418411,219.1134328,222.39146,10.357878,0.099286483,1620000000000 ,1620000000000 ,1620000000000 ,1616812453380 -1616812453404 ,112.5708546,26.87874242,59.14372253,219.1212465,222.4048191,10.340497,0.099119079,1620000000000 ,1620000000000 ,1620000000000 ,1616812453380 -1616812453413 ,112.5708533,26.87874096,59.14286041,219.1397427,222.4168033,10.305601,0.19774882,1620000000000 ,1620000000000 ,1620000000000 ,1616812453400 -1616812453425 ,112.5708533,26.87874096,59.14286041,219.1397427,-400,10.305601,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812453410 -1616812453434 ,112.570852,26.87873951,59.14212036,219.1591404,222.4393721,10.272518,0.197128876,1620000000000 ,1620000000000 ,1620000000000 ,1616812453420 -1616812453446 ,112.5708513,26.87873878,59.14177704,219.1689212,222.4549063,10.256254,0.098335304,1620000000000 ,1620000000000 ,1620000000000 ,1616812453430 -1616812453454 ,112.5708506,26.87873806,59.14144516,219.1777732,222.4645194,10.241138,0.098190805,1620000000000 ,1620000000000 ,1620000000000 ,1616812453440 -1616812453467 ,112.57085,26.87873734,59.14090347,219.1868983,222.5997636,10.226984,0.097478327,1620000000000 ,1620000000000 ,1620000000000 ,1616812453450 -1616812453476 ,112.5708493,26.87873663,59.14012909,219.1953677,222.7411556,10.213576,0.096775659,1620000000000 ,1620000000000 ,1620000000000 ,1616812453460 -1616812453484 ,112.5708487,26.87873592,59.13934708,219.2055857,222.7501355,10.198969,0.096639293,1620000000000 ,1620000000000 ,1620000000000 ,1616812453470 -1616812453494 ,112.570848,26.87873521,59.13857269,219.2153665,222.7547299,10.183523,0.09649568,1620000000000 ,1620000000000 ,1620000000000 ,1616812453480 -1616812453504 ,112.5708474,26.87873451,59.13779831,219.2266773,222.7633489,10.170862,0.096367727,1620000000000 ,1620000000000 ,1620000000000 ,1616812453490 -1616812453516 ,112.5708467,26.8787338,59.13697052,219.2381793,222.7796437,10.161205,0.096269133,1620000000000 ,1620000000000 ,1620000000000 ,1616812453500 -1616812453527 ,112.5708461,26.87873309,59.13607407,219.2479875,222.7938091,10.153193,0.096188772,1620000000000 ,1620000000000 ,1620000000000 ,1616812453510 -1616812453542 ,112.5708454,26.87873239,59.13514328,219.2588885,222.8052892,10.14666,0.096122438,1620000000000 ,1620000000000 ,1620000000000 ,1616812453520 -1616812453551 ,112.5708448,26.87873168,59.13419724,219.2688332,222.8126693,10.142306,0.096074491,1620000000000 ,1620000000000 ,1620000000000 ,1616812453530 -1616812453558 ,112.5708441,26.87873098,59.13320923,219.2781223,222.8182515,10.137994,0.096032788,1620000000000 ,1620000000000 ,1620000000000 ,1616812453540 -1616812453567 ,112.5708434,26.87873027,59.132164,219.2877665,222.833034,10.133729,0.095992335,1620000000000 ,1620000000000 ,1620000000000 ,1616812453550 -1616812453574 ,112.5708428,26.87872957,59.13106155,219.2978752,222.8437265,10.128425,0.095941996,1620000000000 ,1620000000000 ,1620000000000 ,1616812453560 -1616812453586 ,112.5708421,26.87872887,59.12994385,219.3091587,222.8480014,10.124383,0.095898817,1620000000000 ,1620000000000 ,1620000000000 ,1616812453570 -1616812453595 ,112.5708415,26.87872817,59.12881851,219.3203602,222.8514071,10.121011,0.095864549,1620000000000 ,1620000000000 ,1620000000000 ,1616812453580 -1616812453606 ,112.5708408,26.87872746,59.12765503,219.3307147,222.8538878,10.1185,0.095833573,1620000000000 ,1620000000000 ,1620000000000 ,1616812453590 -1616812453617 ,112.5708402,26.87872676,59.12644577,219.3419709,222.8672288,10.115997,0.095812308,1620000000000 ,1620000000000 ,1620000000000 ,1616812453600 -1616812453628 ,112.5708395,26.87872606,59.12522888,219.3524347,222.8798114,10.113578,0.095788398,1620000000000 ,1620000000000 ,1620000000000 ,1616812453610 -1616812453638 ,112.5708389,26.87872536,59.12404251,219.3627893,222.8810013,10.111373,0.095767013,1620000000000 ,1620000000000 ,1620000000000 ,1616812453620 -1616812453648 ,112.5708382,26.87872466,59.12288666,219.3730346,222.8858205,10.107925,0.095737394,1620000000000 ,1620000000000 ,1620000000000 ,1616812453630 -1616812453658 ,112.5708376,26.87872395,59.12174606,219.3848098,222.8892803,10.104707,0.095709467,1620000000000 ,1620000000000 ,1620000000000 ,1616812453640 -1616812453671 ,112.5708369,26.87872325,59.12061691,219.3961206,222.9019701,10.1002655,0.095670529,1620000000000 ,1620000000000 ,1620000000000 ,1616812453650 -1616812453677 ,112.5708363,26.87872255,59.11952591,219.408333,222.9169068,10.095587,0.095629676,1620000000000 ,1620000000000 ,1620000000000 ,1616812453660 -1616812453688 ,112.5708356,26.87872185,59.11848831,219.4209825,222.928195,10.091173,0.095590688,1620000000000 ,1620000000000 ,1620000000000 ,1616812453670 -1616812453696 ,112.570835,26.87872115,59.11750793,219.4333042,222.9435816,10.086838,0.095553832,1620000000000 ,1620000000000 ,1620000000000 ,1616812453680 -1616812453708 ,112.5708343,26.87872045,59.11657333,219.4463362,222.9538884,10.083833,0.095523552,1620000000000 ,1620000000000 ,1620000000000 ,1616812453690 -1616812453722 ,112.5708337,26.87871976,59.11565399,219.4616085,222.9681589,10.081094,0.095500375,1620000000000 ,1620000000000 ,1620000000000 ,1616812453700 -1616812453726 ,112.570833,26.87871906,59.11475372,219.474941,222.9778078,10.07867,0.095478526,1620000000000 ,1620000000000 ,1620000000000 ,1616812453710 -1616812453736 ,112.5708324,26.87871836,59.11388016,219.4887107,222.9915925,10.075912,0.095455762,1620000000000 ,1620000000000 ,1620000000000 ,1616812453720 -1616812453747 ,112.5708317,26.87871766,59.11303711,219.5039557,223.0163415,10.072074,0.095426485,1620000000000 ,1620000000000 ,1620000000000 ,1616812453730 -1616812453757 ,112.5708311,26.87871696,59.11223602,219.5189821,223.036956,10.068229,0.095395245,1620000000000 ,1620000000000 ,1620000000000 ,1616812453740 -1616812453766 ,112.5708304,26.87871627,59.11149597,219.5350467,223.0527042,10.063102,0.095354727,1620000000000 ,1620000000000 ,1620000000000 ,1616812453750 -1616812453777 ,112.5708298,26.87871557,59.11083984,219.5514665,223.0661045,10.059028,0.095317697,1620000000000 ,1620000000000 ,1620000000000 ,1616812453760 -1616812453789 ,112.5708291,26.87871488,59.11026382,219.5691703,223.0834286,10.055072,0.095285564,1620000000000 ,1620000000000 ,1620000000000 ,1616812453770 -1616812453801 ,112.5708285,26.87871418,59.10975647,219.5880216,223.1044361,10.051333,0.095258033,1620000000000 ,1620000000000 ,1620000000000 ,1616812453780 -1616812453809 ,112.5708278,26.87871348,59.10930252,219.6052064,223.1180639,10.047784,0.095227883,1620000000000 ,1620000000000 ,1620000000000 ,1616812453790 -1616812453818 ,112.5708272,26.87871279,59.10886765,219.6257789,223.1307135,10.04498,0.095200772,1620000000000 ,1620000000000 ,1620000000000 ,1616812453800 -1616812453829 ,112.5708265,26.8787121,59.10840225,219.6454225,223.1412574,10.042818,0.095179542,1620000000000 ,1620000000000 ,1620000000000 ,1616812453810 -1616812453839 ,112.5708259,26.8787114,59.10787582,219.6665688,223.1478756,10.040648,0.095158482,1620000000000 ,1620000000000 ,1620000000000 ,1616812453820 -1616812453850 ,112.5708252,26.87871071,59.10732269,219.6873053,223.1495615,10.037556,0.095129927,1620000000000 ,1620000000000 ,1620000000000 ,1616812453830 -1616812453857 ,112.5708246,26.87871001,59.10680008,219.7079324,223.1551553,10.033295,0.09509417,1620000000000 ,1620000000000 ,1620000000000 ,1616812453840 -1616812453869 ,112.5708239,26.87870932,59.10633469,219.7318108,223.1620661,10.027974,0.095050765,1620000000000 ,1620000000000 ,1620000000000 ,1616812453850 -1616812453880 ,112.5708233,26.87870863,59.10591507,219.7550881,223.1738705,10.023602,0.095011177,1620000000000 ,1620000000000 ,1620000000000 ,1616812453860 -1616812453889 ,112.5708226,26.87870793,59.10551453,219.7793489,223.1885252,10.019764,0.094974399,1620000000000 ,1620000000000 ,1620000000000 ,1616812453870 -1616812453900 ,112.570822,26.87870724,59.10513687,219.8043747,223.2037291,10.01568,0.094939445,1620000000000 ,1620000000000 ,1620000000000 ,1616812453880 -1616812453908 ,112.5708213,26.87870655,59.10476685,219.8300016,223.219956,10.012739,0.094915473,1620000000000 ,1620000000000 ,1620000000000 ,1616812453890 -1616812453920 ,112.5708207,26.87870586,59.10440826,219.8571038,223.2454955,10.010383,0.094896361,1620000000000 ,1620000000000 ,1620000000000 ,1616812453900 -1616812453928 ,112.57082,26.87870517,59.10405731,219.8850802,223.2772773,10.007841,0.094879533,1620000000000 ,1620000000000 ,1620000000000 ,1616812453910 -1616812453943 ,112.5708194,26.87870448,59.10373306,219.9121824,223.3009317,10.004321,0.094854782,1620000000000 ,1620000000000 ,1620000000000 ,1616812453920 -1616812453950 ,112.5708187,26.87870379,59.10344696,219.9383557,223.3261689,10.000474,0.094825594,1620000000000 ,1620000000000 ,1620000000000 ,1616812453930 -1616812453958 ,112.5708181,26.8787031,59.10318375,219.9642285,223.3540158,9.994566,0.094780652,1620000000000 ,1620000000000 ,1620000000000 ,1616812453940 -1616812453969 ,112.5708174,26.87870241,59.10293579,219.9910028,223.3889307,9.989124,0.094731574,1620000000000 ,1620000000000 ,1620000000000 ,1616812453950 -1616812453983 ,112.5708168,26.87870172,59.10268784,220.0171761,223.4216993,9.985108,0.094700226,1620000000000 ,1620000000000 ,1620000000000 ,1616812453960 -1616812453989 ,112.5708161,26.87870104,59.10242462,220.0458082,223.451563,9.983312,0.094681676,1620000000000 ,1620000000000 ,1620000000000 ,1616812453970 -1616812454000 ,112.5708155,26.87870035,59.10212708,220.0718449,223.4858681,9.982084,0.094673899,1620000000000 ,1620000000000 ,1620000000000 ,1616812453980 -1616812454009 ,112.5708148,26.87869966,59.10179901,220.0978816,223.5177589,9.979414,0.094657032,1620000000000 ,1620000000000 ,1620000000000 ,1616812453990 -1616812454019 ,112.5708142,26.87869898,59.10147095,220.1240822,223.5535724,9.975389,0.094630785,1620000000000 ,1620000000000 ,1620000000000 ,1616812454000 -1616812454029 ,112.5708135,26.87869829,59.10115051,220.1510205,223.5909645,9.970783,0.094594096,1620000000000 ,1620000000000 ,1620000000000 ,1616812454010 -1616812454039 ,112.5708128,26.87869761,59.10082626,220.1779041,223.6321816,9.967117,0.09456601,1620000000000 ,1620000000000 ,1620000000000 ,1616812454020 -1616812454051 ,112.5708122,26.87869692,59.10049057,220.2061264,223.6602889,9.9625845,0.094529321,1620000000000 ,1620000000000 ,1620000000000 ,1616812454030 -1616812454060 ,112.5708115,26.87869624,59.10015488,220.2326002,223.6836953,9.958971,0.09449405,1620000000000 ,1620000000000 ,1620000000000 ,1616812454040 -1616812454071 ,112.5708109,26.87869556,59.09978867,220.2594019,223.7068747,9.956665,0.094473511,1620000000000 ,1620000000000 ,1620000000000 ,1616812454050 -1616812454079 ,112.5708102,26.87869487,59.09934616,220.286067,223.7360499,9.955127,0.094459196,1620000000000 ,1620000000000 ,1620000000000 ,1616812454060 -1616812454089 ,112.5708096,26.87869419,59.09884262,220.3131418,223.7667611,9.953307,0.094447321,1620000000000 ,1620000000000 ,1620000000000 ,1616812454070 -1616812454099 ,112.5708089,26.87869351,59.09831238,220.338878,223.7856965,9.949914,0.094418698,1620000000000 ,1620000000000 ,1620000000000 ,1616812454080 -1616812454111 ,112.5708083,26.87869283,59.09779358,220.3654338,223.8030082,9.946075,0.094388514,1620000000000 ,1620000000000 ,1620000000000 ,1616812454090 -1616812454120 ,112.5708076,26.87869215,59.09727478,220.391771,223.8210675,9.941825,0.094351813,1620000000000 ,1620000000000 ,1620000000000 ,1616812454100 -1616812454130 ,112.570807,26.87869147,59.09670639,220.4198021,223.8382026,9.938656,0.09431838,1620000000000 ,1620000000000 ,1620000000000 ,1616812454110 -1616812454147 ,112.5708063,26.87869079,59.09608078,220.4475873,223.8705237,9.935497,0.09429254,1620000000000 ,1620000000000 ,1620000000000 ,1616812454120 -1616812454159 ,112.5708057,26.87869011,59.09542084,220.4736513,223.8923777,9.932906,0.094265175,1620000000000 ,1620000000000 ,1620000000000 ,1616812454130 -1616812454168 ,112.570805,26.87868943,59.09477997,220.5018463,223.9141666,9.930192,0.094250492,1620000000000 ,1620000000000 ,1620000000000 ,1616812454140 -1616812454171 ,112.5708044,26.87868875,59.09418488,220.531544,223.9371632,9.926897,0.09422339,1620000000000 ,1620000000000 ,1620000000000 ,1616812454150 -1616812454181 ,112.5708037,26.87868807,59.09363174,220.5590833,223.9605097,9.922991,0.094195139,1620000000000 ,1620000000000 ,1620000000000 ,1616812454160 -1616812454191 ,112.570803,26.8786874,59.09306717,220.5876335,223.991779,9.918212,0.094154854,1620000000000 ,1620000000000 ,1620000000000 ,1616812454170 -1616812454202 ,112.5708024,26.87868672,59.09245682,220.6156919,224.0263994,9.915521,0.094128644,1620000000000 ,1620000000000 ,1620000000000 ,1616812454180 -1616812454211 ,112.5708017,26.87868604,59.09178162,220.6446792,224.0514099,9.913381,0.094107509,1620000000000 ,1620000000000 ,1620000000000 ,1616812454190 -1616812454222 ,112.5708011,26.87868537,59.09107971,220.6728196,224.0779199,9.910664,0.094089193,1620000000000 ,1620000000000 ,1620000000000 ,1616812454200 -1616812454233 ,112.5708004,26.87868469,59.09141159,220.6986924,224.0301632,9.918475,0.094564372,1620000000000 ,1620000000000 ,1620000000000 ,1616812454210 -1616812454242 ,112.5707998,26.87868401,59.09188843,220.7260131,224.0611546,9.914335,0.094592109,1620000000000 ,1620000000000 ,1620000000000 ,1616812454220 -1616812454264 ,112.5707991,26.87868333,59.09239197,220.7544813,224.098188,9.910324,0.094561214,1620000000000 ,1620000000000 ,1620000000000 ,1616812454230 -1616812454281 ,112.5707985,26.87868265,59.09291077,220.7825398,224.1287611,9.907244,0.094536782,1620000000000 ,1620000000000 ,1620000000000 ,1616812454240 -1616812454283 ,112.5707978,26.87868197,59.09342194,220.8095873,224.1528102,9.904206,0.094511658,1620000000000 ,1620000000000 ,1620000000000 ,1616812454250 -1616812454287 ,112.5707971,26.87868129,59.09394073,220.8400363,224.1845071,9.901152,0.094489493,1620000000000 ,1620000000000 ,1620000000000 ,1616812454260 -1616812454292 ,112.5707965,26.87868062,59.09449005,220.8689963,224.2087546,9.897579,0.094459828,1620000000000 ,1620000000000 ,1620000000000 ,1616812454270 -1616812454302 ,112.5707958,26.87867994,59.09508514,220.8987896,224.2350216,9.894272,0.094436193,1620000000000 ,1620000000000 ,1620000000000 ,1616812454280 -1616812454312 ,112.5707952,26.87867926,59.0957222,220.9300445,224.2645681,9.889976,0.094405624,1620000000000 ,1620000000000 ,1620000000000 ,1616812454290 -1616812454323 ,112.5707945,26.87867859,59.09638596,220.9613814,224.2844353,9.885951,0.09437001,1620000000000 ,1620000000000 ,1620000000000 ,1616812454300 -1616812454332 ,112.5707938,26.87867791,59.09707642,220.9925134,224.3059016,9.882874,0.0943438,1620000000000 ,1620000000000 ,1620000000000 ,1616812454310 -1616812454342 ,112.5707932,26.87867724,59.09778595,221.0230854,224.3271368,9.878771,0.094312971,1620000000000 ,1620000000000 ,1620000000000 ,1616812454320 -1616812454352 ,112.5707925,26.87867657,59.09849167,221.0559522,224.3517494,9.875811,0.094287562,1620000000000 ,1620000000000 ,1620000000000 ,1616812454330 -1616812454361 ,112.5707919,26.87867589,59.09921646,221.0893109,224.3786721,9.870962,0.094251821,1620000000000 ,1620000000000 ,1620000000000 ,1616812454340 -1616812454373 ,112.5707912,26.87867522,59.09997559,221.1222734,224.4027779,9.867136,0.094218505,1620000000000 ,1620000000000 ,1620000000000 ,1616812454350 -1616812454383 ,112.5707905,26.87867455,59.1007576,221.1564516,224.4238566,9.863658,0.094190199,1620000000000 ,1620000000000 ,1620000000000 ,1616812454360 -1616812454393 ,112.5707899,26.87867387,59.10152817,221.1908758,224.446302,9.861518,0.094168259,1620000000000 ,1620000000000 ,1620000000000 ,1616812454370 -1616812454403 ,112.5707892,26.8786732,59.10227585,221.2265294,224.4785943,9.857846,0.094146049,1620000000000 ,1620000000000 ,1620000000000 ,1616812454380 -1616812454413 ,112.5707886,26.87867253,59.10302353,221.2622239,224.513822,9.853123,0.094109623,1620000000000 ,1620000000000 ,1620000000000 ,1616812454390 -1616812454424 ,112.5707879,26.87867186,59.10380936,221.2997353,224.5459296,9.848245,0.094070174,1620000000000 ,1620000000000 ,1620000000000 ,1616812454400 -1616812454434 ,112.5707872,26.87867119,59.10460663,221.3379161,224.5721527,9.843015,0.094027686,1620000000000 ,1620000000000 ,1620000000000 ,1616812454420 -1616812454444 ,112.5707866,26.87867052,59.10536957,221.3777498,224.6065708,9.838977,0.093989277,1620000000000 ,1620000000000 ,1620000000000 ,1616812454430 -1616812454454 ,112.5707859,26.87866985,59.10607147,221.417884,224.6463362,9.836404,0.093969768,1620000000000 ,1620000000000 ,1620000000000 ,1616812454440 -1616812454463 ,112.5707846,26.87866852,59.10734177,221.5010757,224.6965687,9.831044,0.187870948,1620000000000 ,1620000000000 ,1620000000000 ,1616812454450 -1616812454474 ,112.5707839,26.87866785,59.10702896,221.5425212,224.8233304,9.827484,0.093455274,1620000000000 ,1620000000000 ,1620000000000 ,1616812454460 -1616812454485 ,112.5707833,26.87866719,59.10670471,221.5859749,224.8661844,9.824015,0.093431053,1620000000000 ,1620000000000 ,1620000000000 ,1616812454470 -1616812454494 ,112.5707826,26.87866653,59.10634232,221.6286226,224.9046051,9.81951,0.093394168,1620000000000 ,1620000000000 ,1620000000000 ,1616812454480 -1616812454505 ,112.5707826,26.87866653,59.10634232,221.6286226,-400,9.81951,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812454480 -1616812454514 ,112.5707813,26.87866521,59.10557556,221.7180298,224.961308,9.810257,0.186678773,1620000000000 ,1620000000000 ,1620000000000 ,1616812454500 -1616812454524 ,112.5707807,26.87866455,59.10519409,221.7636418,225.0157795,9.80637,0.093286349,1620000000000 ,1620000000000 ,1620000000000 ,1616812454510 -1616812454533 ,112.57078,26.87866389,59.10478973,221.8088167,225.0595961,9.803445,0.093262241,1620000000000 ,1620000000000 ,1620000000000 ,1616812454520 -1616812454544 ,112.5707793,26.87866323,59.10435104,221.8570378,225.1066054,9.800768,0.093243348,1620000000000 ,1620000000000 ,1620000000000 ,1616812454530 -1616812454557 ,112.5707787,26.87866258,59.10388184,221.905218,225.145593,9.798039,0.093224442,1620000000000 ,1620000000000 ,1620000000000 ,1616812454540 -1616812454566 ,112.570778,26.87866192,59.10338211,221.954409,225.1858213,9.794264,0.093198122,1620000000000 ,1620000000000 ,1620000000000 ,1616812454550 -1616812454575 ,112.5707773,26.87866126,59.10286331,222.0051983,225.2239877,9.789798,0.093161795,1620000000000 ,1620000000000 ,1620000000000 ,1616812454560 -1616812454585 ,112.5707767,26.87866061,59.10232544,222.0571897,225.2617817,9.784521,0.093118663,1620000000000 ,1620000000000 ,1620000000000 ,1616812454570 -1616812454594 ,112.570776,26.87865995,59.10177994,222.108621,225.3113432,9.779819,0.093080739,1620000000000 ,1620000000000 ,1620000000000 ,1616812454580 -1616812454604 ,112.5707754,26.8786593,59.10122681,222.1622516,225.3617411,9.77568,0.093048997,1620000000000 ,1620000000000 ,1620000000000 ,1616812454590 -1616812454615 ,112.5707747,26.87865865,59.10066605,222.2151173,225.417308,9.771685,0.093018324,1620000000000 ,1620000000000 ,1620000000000 ,1616812454600 -1616812454624 ,112.570774,26.87865799,59.10011673,222.2697178,225.4707432,9.768539,0.092997258,1620000000000 ,1620000000000 ,1620000000000 ,1616812454610 -1616812454635 ,112.5707734,26.87865734,59.09957886,222.3223513,225.5179025,9.764787,0.09297243,1620000000000 ,1620000000000 ,1620000000000 ,1616812454620 -1616812454647 ,112.5707727,26.87865669,59.09903336,222.3767469,225.5743369,9.76144,0.092949376,1620000000000 ,1620000000000 ,1620000000000 ,1616812454630 -1616812454656 ,112.570772,26.87865604,59.09844589,222.4292301,225.6367408,9.757127,0.092919087,1620000000000 ,1620000000000 ,1620000000000 ,1616812454640 -1616812454668 ,112.5707714,26.87865539,59.09780884,222.4844863,225.7005836,9.751944,0.092881205,1620000000000 ,1620000000000 ,1620000000000 ,1616812454650 -1616812454675 ,112.5707707,26.87865475,59.09714127,222.5409856,225.7623075,9.748134,0.09284981,1620000000000 ,1620000000000 ,1620000000000 ,1616812454660 -1616812454692 ,112.57077,26.8786541,59.09648132,222.5962692,225.8180926,9.743768,0.092818913,1620000000000 ,1620000000000 ,1620000000000 ,1616812454670 -1616812454696 ,112.5707694,26.87865345,59.09584427,222.6522494,225.8737577,9.739431,0.092788547,1620000000000 ,1620000000000 ,1620000000000 ,1616812454680 -1616812454705 ,112.5707687,26.87865281,59.09521484,222.7083662,225.938884,9.735602,0.09276409,1620000000000 ,1620000000000 ,1620000000000 ,1616812454690 -1616812454716 ,112.570768,26.87865216,59.09460068,222.7625296,226.0061752,9.730959,0.092733383,1620000000000 ,1620000000000 ,1620000000000 ,1616812454700 -1616812454726 ,112.5707674,26.87865152,59.09402084,222.8168023,226.0634131,9.726079,0.092697577,1620000000000 ,1620000000000 ,1620000000000 ,1616812454710 -1616812454736 ,112.5707667,26.87865088,59.09348679,222.8704193,226.121799,9.722002,0.092670155,1620000000000 ,1620000000000 ,1620000000000 ,1616812454720 -1616812454746 ,112.570766,26.87865024,59.09296799,222.9248832,226.1750021,9.717483,0.092637105,1620000000000 ,1620000000000 ,1620000000000 ,1616812454730 -1616812454756 ,112.5707654,26.8786496,59.09243774,222.9791559,226.2320013,9.71353,0.092607488,1620000000000 ,1620000000000 ,1620000000000 ,1616812454740 -1616812454767 ,112.5707647,26.87864896,59.09190369,223.0332647,226.2914982,9.709663,0.092580773,1620000000000 ,1620000000000 ,1620000000000 ,1616812454750 -1616812454775 ,112.570764,26.87864832,59.09138489,223.0871958,226.3457795,9.705718,0.092553366,1620000000000 ,1620000000000 ,1620000000000 ,1616812454760 -1616812454786 ,112.5707634,26.87864768,59.09088516,223.1406762,226.3992889,9.700422,0.092516328,1620000000000 ,1620000000000 ,1620000000000 ,1616812454770 -1616812454796 ,112.5707627,26.87864704,59.09038544,223.1954953,226.4505364,9.695253,0.092475584,1620000000000 ,1620000000000 ,1620000000000 ,1616812454780 -1616812454806 ,112.570762,26.87864641,59.08989334,223.2500822,226.5045867,9.690859,0.092439739,1620000000000 ,1620000000000 ,1620000000000 ,1616812454790 -1616812454818 ,112.5707614,26.87864577,59.08942795,223.3024697,226.5532273,9.686539,0.092409483,1620000000000 ,1620000000000 ,1620000000000 ,1616812454800 -1616812454827 ,112.5707607,26.87864514,59.08898163,223.3567971,226.5980872,9.683192,0.092382245,1620000000000 ,1620000000000 ,1620000000000 ,1616812454810 -1616812454838 ,112.57076,26.8786445,59.08853531,223.4095398,226.646376,9.680891,0.092367206,1620000000000 ,1620000000000 ,1620000000000 ,1616812454820 -1616812454849 ,112.5707593,26.87864387,59.0880928,223.4628289,226.7015415,9.677171,0.092344093,1620000000000 ,1620000000000 ,1620000000000 ,1616812454830 -1616812454857 ,112.5707587,26.87864324,59.08766937,223.5145061,226.7522166,9.672958,0.092316203,1620000000000 ,1620000000000 ,1620000000000 ,1616812454840 -1616812454866 ,112.570758,26.8786426,59.08727646,223.5665112,226.7982779,9.66791,0.092278369,1620000000000 ,1620000000000 ,1620000000000 ,1616812454850 -1616812454877 ,112.5707573,26.87864197,59.08690262,223.6177376,226.8423027,9.66375,0.092244487,1620000000000 ,1620000000000 ,1620000000000 ,1616812454860 -1616812454889 ,112.5707566,26.87864134,59.08653641,223.6706579,226.8964683,9.659489,0.092214127,1620000000000 ,1620000000000 ,1620000000000 ,1616812454870 -1616812454898 ,112.570756,26.87864071,59.08617401,223.7240837,226.9575101,9.656378,0.09219388,1620000000000 ,1620000000000 ,1620000000000 ,1616812454880 -1616812454907 ,112.5707553,26.87864009,59.08580017,223.7789164,227.0160378,9.653191,0.092171874,1620000000000 ,1620000000000 ,1620000000000 ,1616812454890 -1616812454918 ,112.5707546,26.87863946,59.08538437,223.8328339,227.0695033,9.650279,0.092150684,1620000000000 ,1620000000000 ,1620000000000 ,1616812454900 -1616812454928 ,112.570754,26.87863883,59.08493805,223.884798,227.1277685,9.646738,0.09212966,1620000000000 ,1620000000000 ,1620000000000 ,1616812454910 -1616812454938 ,112.5707533,26.8786382,59.08447266,223.9364616,227.184741,9.644051,0.092109592,1620000000000 ,1620000000000 ,1620000000000 ,1616812454920 -1616812454947 ,112.5707526,26.87863758,59.08401489,223.9872645,227.24822,9.640681,0.092090755,1620000000000 ,1620000000000 ,1620000000000 ,1616812454930 -1616812454957 ,112.5707519,26.87863696,59.08358383,224.0376986,227.3158705,9.635803,0.092061758,1620000000000 ,1620000000000 ,1620000000000 ,1616812454940 -1616812454975 ,112.5707512,26.87863633,59.08317947,224.0880098,227.3740604,9.631523,0.092030395,1620000000000 ,1620000000000 ,1620000000000 ,1616812454950 -1616812454985 ,112.5707506,26.87863571,59.08279419,224.13675,227.43179,9.6278515,0.092005078,1620000000000 ,1620000000000 ,1620000000000 ,1616812454960 -1616812454992 ,112.5707499,26.87863509,59.08240891,224.1857908,227.4849214,9.625274,0.09198605,1620000000000 ,1620000000000 ,1620000000000 ,1616812454970 -1616812455000 ,112.5707492,26.87863447,59.08200073,224.2353506,227.5382928,9.622386,0.091968805,1620000000000 ,1620000000000 ,1620000000000 ,1616812454980 -1616812455008 ,112.5707485,26.87863385,59.08158112,224.2824243,227.5952262,9.619481,0.091951179,1620000000000 ,1620000000000 ,1620000000000 ,1616812454990 -1616812455018 ,112.5707479,26.87863323,59.08117294,224.3309187,227.6502374,9.616409,0.091933674,1620000000000 ,1620000000000 ,1620000000000 ,1616812455000 -1616812455028 ,112.5707472,26.87863261,59.08079147,224.3787846,227.6930039,9.613616,0.091913113,1620000000000 ,1620000000000 ,1620000000000 ,1616812455010 -1616812455040 ,112.5707465,26.87863199,59.08040237,224.428003,227.7344873,9.612561,0.09190718,1620000000000 ,1620000000000 ,1620000000000 ,1616812455020 -1616812455051 ,112.5707458,26.87863137,59.07995605,224.4778087,227.7782638,9.611991,0.09190467,1620000000000 ,1620000000000 ,1620000000000 ,1616812455030 -1616812455065 ,112.5707451,26.87863076,59.0794754,224.5269451,227.8293817,9.611109,0.091906954,1620000000000 ,1620000000000 ,1620000000000 ,1616812455040 -1616812455077 ,112.5707445,26.87863014,59.07901001,224.5747837,227.8614311,9.608626,0.091888301,1620000000000 ,1620000000000 ,1620000000000 ,1616812455050 -1616812455082 ,112.5707438,26.87862952,59.07860565,224.6243436,227.8907823,9.609444,0.09190114,1620000000000 ,1620000000000 ,1620000000000 ,1616812455060 -1616812455092 ,112.5707431,26.87862891,59.07825851,224.6730838,227.9332831,9.607908,0.091901128,1620000000000 ,1620000000000 ,1620000000000 ,1616812455070 -1616812455101 ,112.5707424,26.87862829,59.07789612,224.7249386,227.9691583,9.606333,0.091891879,1620000000000 ,1620000000000 ,1620000000000 ,1616812455080 -1616812455110 ,112.5707417,26.87862768,59.07749176,224.7762606,228.0113109,9.60475,0.091882162,1620000000000 ,1620000000000 ,1620000000000 ,1616812455090 -1616812455120 ,112.570741,26.87862706,59.0770607,224.8277603,228.0474846,9.6044235,0.091879281,1620000000000 ,1620000000000 ,1620000000000 ,1616812455100 -1616812455130 ,112.5707404,26.87862645,59.07661819,224.8761453,228.0827347,9.605093,0.091888309,1620000000000 ,1620000000000 ,1620000000000 ,1616812455110 -1616812455139 ,112.5707397,26.87862584,59.07612228,224.924708,228.1298974,9.605999,0.091904284,1620000000000 ,1620000000000 ,1620000000000 ,1616812455120 -1616812455150 ,112.570739,26.87862522,59.07554245,224.9737078,228.1963097,9.605888,0.091914478,1620000000000 ,1620000000000 ,1620000000000 ,1616812455130 -1616812455160 ,112.5707383,26.87862461,59.07491684,225.0247839,228.2510985,9.603352,0.091902999,1620000000000 ,1620000000000 ,1620000000000 ,1616812455140 -1616812455170 ,112.5707376,26.878624,59.0743103,225.0729914,228.2760641,9.600581,0.091878011,1620000000000 ,1620000000000 ,1620000000000 ,1616812455150 -1616812455180 ,112.5707369,26.87862339,59.0737114,225.1240675,228.3052353,9.6007805,0.091878585,1620000000000 ,1620000000000 ,1620000000000 ,1616812455160 -1616812455190 ,112.5707362,26.87862278,59.07303619,225.1721521,228.3566615,9.603302,0.091901858,1620000000000 ,1620000000000 ,1620000000000 ,1616812455170 -1616812455200 ,112.5707356,26.87862217,59.07228088,225.2192531,228.4333871,9.605795,0.091935785,1620000000000 ,1620000000000 ,1620000000000 ,1616812455180 -1616812455217 ,112.5707349,26.87862156,59.07151413,225.2666272,228.4880671,9.607611,0.091964519,1620000000000 ,1620000000000 ,1620000000000 ,1616812455190 -1616812455225 ,112.5707342,26.87862095,59.07069397,225.305491,228.5346989,9.618961,0.092149657,1620000000000 ,1620000000000 ,1620000000000 ,1616812455200 -1616812455235 ,112.5707335,26.87862034,59.06967545,225.351991,228.6240526,9.620028,0.092431102,1620000000000 ,1620000000000 ,1620000000000 ,1616812455210 -1616812455251 ,112.5707328,26.87861973,59.06864166,225.3993515,228.6726005,9.62083,0.092446475,1620000000000 ,1620000000000 ,1620000000000 ,1616812455220 -1616812455256 ,112.5707321,26.87861912,59.06756973,225.4449908,228.7338828,9.621985,0.092464345,1620000000000 ,1620000000000 ,1620000000000 ,1616812455230 -1616812455262 ,112.5707314,26.87861851,59.06648254,225.4893051,228.7878414,9.621789,0.092473021,1620000000000 ,1620000000000 ,1620000000000 ,1616812455240 -1616812455271 ,112.5707307,26.8786179,59.06542969,225.5334964,228.8414953,9.6213255,0.092482107,1620000000000 ,1620000000000 ,1620000000000 ,1616812455250 -1616812455281 ,112.57073,26.87861729,59.06441498,225.5758026,228.8922532,9.621898,0.092493677,1620000000000 ,1620000000000 ,1620000000000 ,1616812455260 -1616812455292 ,112.5707293,26.87861668,59.06340408,225.6180268,228.9415063,9.622995,0.092510872,1620000000000 ,1620000000000 ,1620000000000 ,1616812455270 -1616812455302 ,112.5707286,26.87861608,59.06237411,225.6622045,228.9956262,9.6235895,0.092526842,1620000000000 ,1620000000000 ,1620000000000 ,1616812455280 -1616812455320 ,112.5707279,26.87861547,59.06135559,225.7019972,229.0459434,9.6225395,0.092531296,1620000000000 ,1620000000000 ,1620000000000 ,1616812455290 -1616812455322 ,112.5707272,26.87861486,59.06037903,225.7425138,229.0917245,9.62199,0.092532759,1620000000000 ,1620000000000 ,1620000000000 ,1616812455300 -1616812455336 ,112.5707265,26.87861426,59.05947113,225.7816372,229.1355228,9.621031,0.092536811,1620000000000 ,1620000000000 ,1620000000000 ,1616812455310 -1616812455346 ,112.5707258,26.87861365,59.05859756,225.8206649,229.190163,9.620559,0.092540872,1620000000000 ,1620000000000 ,1620000000000 ,1616812455320 -1616812455357 ,112.5707251,26.87861305,59.0577507,225.860157,229.2416365,9.620735,0.092550265,1620000000000 ,1620000000000 ,1620000000000 ,1616812455330 -1616812455364 ,112.5707244,26.87861245,59.05693054,225.8970674,229.2890267,9.622011,0.092570405,1620000000000 ,1620000000000 ,1620000000000 ,1616812455340 -1616812455372 ,112.5707237,26.87861184,59.05615616,225.9324204,229.3354175,9.622529,0.092589095,1620000000000 ,1620000000000 ,1620000000000 ,1616812455350 -1616812455383 ,112.570723,26.87861124,59.05541611,225.9692351,229.3757886,9.622653,0.09259932,1620000000000 ,1620000000000 ,1620000000000 ,1616812455360 -1616812455394 ,112.5707223,26.87861064,59.05470657,226.002949,229.4228812,9.621931,0.092605399,1620000000000 ,1620000000000 ,1620000000000 ,1616812455370 -1616812455403 ,112.5707216,26.87861004,59.05401993,226.0377966,229.4642508,9.620699,0.092602933,1620000000000 ,1620000000000 ,1620000000000 ,1616812455380 -1616812455414 ,112.5707209,26.87860943,59.05335617,226.069475,229.4997162,9.620744,0.092607144,1620000000000 ,1620000000000 ,1620000000000 ,1616812455390 -1616812455422 ,112.5707202,26.87860883,59.05269623,226.1009212,229.5436783,9.619846,0.092611825,1620000000000 ,1620000000000 ,1620000000000 ,1616812455400 -1616812455438 ,112.5707195,26.87860823,59.05203247,226.1302637,229.595126,9.619407,0.092613271,1620000000000 ,1620000000000 ,1620000000000 ,1616812455420 -1616812455442 ,112.5707188,26.87860763,59.0513916,226.1578986,229.6315521,9.618493,0.092618924,1620000000000 ,1620000000000 ,1620000000000 ,1616812455430 -1616812455453 ,112.5707174,26.87860643,59.05028152,226.209931,229.6856335,9.617658,0.185239094,1620000000000 ,1620000000000 ,1620000000000 ,1616812455440 -1616812455464 ,112.5707167,26.87860584,59.04986191,226.2333859,229.7296062,9.61597,0.092455488,1620000000000 ,1620000000000 ,1620000000000 ,1616812455450 -1616812455476 ,112.570716,26.87860524,59.04951859,226.2571959,229.7638388,9.617025,0.092300762,1620000000000 ,1620000000000 ,1620000000000 ,1616812455460 -1616812455486 ,112.5707152,26.87860465,59.04914474,226.2790525,229.7911478,9.616996,0.09230704,1620000000000 ,1620000000000 ,1620000000000 ,1616812455470 -1616812455502 ,112.5707145,26.87860405,59.04875565,226.3009774,229.8163164,9.616634,0.092310983,1620000000000 ,1620000000000 ,1620000000000 ,1616812455480 -1616812455508 ,112.5707138,26.87860345,59.04834747,226.3205801,229.8376558,9.616053,0.092310048,1620000000000 ,1620000000000 ,1620000000000 ,1616812455490 -1616812455516 ,112.5707131,26.87860286,59.0479126,226.3383796,229.8564952,9.614897,0.092301735,1620000000000 ,1620000000000 ,1620000000000 ,1616812455500 -1616812455524 ,112.5707124,26.87860226,59.04747391,226.3547447,229.8757434,9.613452,0.092293946,1620000000000 ,1620000000000 ,1620000000000 ,1616812455510 -1616812455535 ,112.5707117,26.87860167,59.04703903,226.3704678,229.8977992,9.612813,0.09228972,1620000000000 ,1620000000000 ,1620000000000 ,1616812455520 -1616812455545 ,112.5707117,26.87860167,59.04703903,226.3704678,-400,9.612813,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812455520 -1616812455557 ,112.5707103,26.87860048,59.04612732,226.4018457,229.9181353,9.611233,0.184564178,1620000000000 ,1620000000000 ,1620000000000 ,1616812455540 -1616812455566 ,112.5707096,26.87859989,59.04561996,226.4150553,229.937564,9.610944,0.092277,1620000000000 ,1620000000000 ,1620000000000 ,1616812455550 -1616812455574 ,112.5707089,26.87859929,59.04507828,226.4292074,229.9467206,9.610471,0.092272541,1620000000000 ,1620000000000 ,1620000000000 ,1616812455560 -1616812455584 ,112.5707082,26.8785987,59.044487,226.4407368,229.964964,9.609412,0.092262165,1620000000000 ,1620000000000 ,1620000000000 ,1616812455570 -1616812455595 ,112.5707075,26.87859811,59.0438652,226.4524164,229.9805815,9.608624,0.092257918,1620000000000 ,1620000000000 ,1620000000000 ,1616812455580 -1616812455604 ,112.5707068,26.87859751,59.04323959,226.463331,229.9892205,9.606136,0.092241194,1620000000000 ,1620000000000 ,1620000000000 ,1616812455590 -1616812455615 ,112.5707061,26.87859692,59.04260254,226.4726474,229.9984587,9.604323,0.092220088,1620000000000 ,1620000000000 ,1620000000000 ,1616812455600 -1616812455625 ,112.5707054,26.87859633,59.04191589,226.4821687,230.0048021,9.603453,0.092208509,1620000000000 ,1620000000000 ,1620000000000 ,1616812455610 -1616812455637 ,112.5707047,26.87859574,59.04115295,226.4918266,230.0179938,9.603521,0.092205181,1620000000000 ,1620000000000 ,1620000000000 ,1616812455620 -1616812455645 ,112.5707039,26.87859514,59.04032516,226.5003643,230.0246785,9.603549,0.092202643,1620000000000 ,1620000000000 ,1620000000000 ,1616812455630 -1616812455654 ,112.5707032,26.87859455,59.03944397,226.5065935,230.0280975,9.604432,0.092210107,1620000000000 ,1620000000000 ,1620000000000 ,1616812455640 -1616812455665 ,112.5707025,26.87859396,59.03853607,226.5106642,230.034928,9.604102,0.092206601,1620000000000 ,1620000000000 ,1620000000000 ,1616812455650 -1616812455675 ,112.5707018,26.87859337,59.03760147,226.5161284,230.0396665,9.602842,0.092196792,1620000000000 ,1620000000000 ,1620000000000 ,1616812455660 -1616812455687 ,112.5707011,26.87859277,59.03661346,226.5200489,230.0442081,9.600683,0.092175091,1620000000000 ,1620000000000 ,1620000000000 ,1616812455670 -1616812455696 ,112.5707004,26.87859218,59.03560257,226.5228493,230.0442716,9.598605,0.092154072,1620000000000 ,1620000000000 ,1620000000000 ,1616812455680 -1616812455707 ,112.5706997,26.87859159,59.03459549,226.526442,230.0411015,9.597211,0.09213769,1620000000000 ,1620000000000 ,1620000000000 ,1616812455690 -1616812455718 ,112.570699,26.878591,59.03359985,226.5304445,230.0427458,9.595129,0.092117987,1620000000000 ,1620000000000 ,1620000000000 ,1616812455700 -1616812455727 ,112.5706983,26.87859041,59.0326004,226.5351846,230.0458227,9.594209,0.092105072,1620000000000 ,1620000000000 ,1620000000000 ,1616812455710 -1616812455738 ,112.5706976,26.87858982,59.03160477,226.5398565,230.0460299,9.5922,0.092091343,1620000000000 ,1620000000000 ,1620000000000 ,1616812455720 -1616812455752 ,112.5706969,26.87858923,59.03065109,226.5432716,230.0418221,9.590837,0.092075103,1620000000000 ,1620000000000 ,1620000000000 ,1616812455730 -1616812455756 ,112.5706962,26.87858863,59.02974319,226.5454845,230.0350859,9.589857,0.092064596,1620000000000 ,1620000000000 ,1620000000000 ,1616812455740 -1616812455766 ,112.5706955,26.87858804,59.02885818,226.5493095,230.035283,9.58824,0.092050421,1620000000000 ,1620000000000 ,1620000000000 ,1616812455750 -1616812455776 ,112.5706948,26.87858745,59.02799606,226.5538857,230.0382995,9.586047,0.09203394,1620000000000 ,1620000000000 ,1620000000000 ,1616812455760 -1616812455788 ,112.5706941,26.87858686,59.02716827,226.5571232,230.0362063,9.5828905,0.092006259,1620000000000 ,1620000000000 ,1620000000000 ,1616812455770 -1616812455799 ,112.5706934,26.87858627,59.02640915,226.5621502,230.0392597,9.581054,0.091987982,1620000000000 ,1620000000000 ,1620000000000 ,1616812455780 -1616812455811 ,112.5706927,26.87858568,59.0256958,226.5667264,230.0383435,9.578782,0.091968167,1620000000000 ,1620000000000 ,1620000000000 ,1616812455790 -1616812455818 ,112.5706919,26.87858509,59.02501297,226.5688301,230.0461028,9.577395,0.091957195,1620000000000 ,1620000000000 ,1620000000000 ,1616812455800 -1616812455827 ,112.5706912,26.8785845,59.02437592,226.5715485,230.049771,9.575816,0.091943397,1620000000000 ,1620000000000 ,1620000000000 ,1616812455810 -1616812455838 ,112.5706905,26.87858391,59.02379608,226.5744446,230.0543503,9.574553,0.091934512,1620000000000 ,1620000000000 ,1620000000000 ,1616812455820 -1616812455847 ,112.5706898,26.87858332,59.02328491,226.5764936,230.0642785,9.572562,0.091922764,1620000000000 ,1620000000000 ,1620000000000 ,1616812455830 -1616812455856 ,112.5706891,26.87858273,59.02277756,226.5815889,230.0646302,9.569612,0.091896262,1620000000000 ,1620000000000 ,1620000000000 ,1616812455840 -1616812455870 ,112.5706884,26.87858214,59.0222702,226.5850996,230.0754519,9.566446,0.091868997,1620000000000 ,1620000000000 ,1620000000000 ,1616812455850 -1616812455880 ,112.5706877,26.87858155,59.02179337,226.5873809,230.0894424,9.562257,0.09183513,1620000000000 ,1620000000000 ,1620000000000 ,1616812455860 -1616812455890 ,112.570687,26.87858096,59.02136993,226.5893344,230.0944137,9.558712,0.0918021,1620000000000 ,1620000000000 ,1620000000000 ,1616812455870 -1616812455897 ,112.5706863,26.87858037,59.02098846,226.5928587,230.1047023,9.557143,0.091785102,1620000000000 ,1620000000000 ,1620000000000 ,1616812455880 -1616812455907 ,112.5706856,26.87857978,59.02064896,226.597394,230.1184401,9.55675,0.091784179,1620000000000 ,1620000000000 ,1620000000000 ,1616812455890 -1616812455918 ,112.5706849,26.87857919,59.02035141,226.6015331,230.1188824,9.553228,0.091759626,1620000000000 ,1620000000000 ,1620000000000 ,1616812455900 -1616812455927 ,112.5706842,26.87857861,59.02008438,226.6042515,230.1183432,9.551796,0.091744558,1620000000000 ,1620000000000 ,1620000000000 ,1616812455910 -1616812455938 ,112.5706835,26.87857802,59.01983643,226.606765,230.1210701,9.548661,0.091718246,1620000000000 ,1620000000000 ,1620000000000 ,1616812455920 -1616812455949 ,112.5706828,26.87857743,59.01957321,226.6088414,230.1234393,9.546183,0.091690352,1620000000000 ,1620000000000 ,1620000000000 ,1616812455930 -1616812455957 ,112.5706821,26.87857684,59.01931,226.6122292,230.1275988,9.54302,0.091665248,1620000000000 ,1620000000000 ,1620000000000 ,1616812455940 -1616812455969 ,112.5706814,26.87857626,59.01904678,226.6161087,230.1196095,9.540382,0.091634699,1620000000000 ,1620000000000 ,1620000000000 ,1616812455950 -1616812455978 ,112.5706807,26.87857567,59.01877975,226.6204664,230.1143304,9.538864,0.09161996,1620000000000 ,1620000000000 ,1620000000000 ,1616812455960 -1616812455989 ,112.57068,26.87857508,59.01848221,226.6239498,230.1049437,9.537196,0.091600107,1620000000000 ,1620000000000 ,1620000000000 ,1616812455970 -1616812455998 ,112.5706793,26.87857449,59.01813507,226.6269414,230.1023406,9.536072,0.091587192,1620000000000 ,1620000000000 ,1620000000000 ,1616812455980 -1616812456009 ,112.5706786,26.87857391,59.01774216,226.6309439,230.1046043,9.534141,0.091567167,1620000000000 ,1620000000000 ,1620000000000 ,1616812455990 -1616812456023 ,112.5706779,26.87857332,59.0173378,226.634318,230.102349,9.532228,0.091546461,1620000000000 ,1620000000000 ,1620000000000 ,1616812456000 -1616812456029 ,112.5706772,26.87857273,59.01690292,226.637856,230.0971797,9.53079,0.091530749,1620000000000 ,1620000000000 ,1620000000000 ,1616812456010 -1616812456041 ,112.5706765,26.87857214,59.01641464,226.6432929,230.1012948,9.531239,0.091528175,1620000000000 ,1620000000000 ,1620000000000 ,1616812456020 -1616812456054 ,112.5706758,26.87857156,59.01585388,226.6472817,230.105348,9.532055,0.091532892,1620000000000 ,1620000000000 ,1620000000000 ,1616812456030 -1616812456058 ,112.5706751,26.87857097,59.01522827,226.6512295,230.1114304,9.532054,0.091535029,1620000000000 ,1620000000000 ,1620000000000 ,1616812456040 -1616812456068 ,112.5706744,26.87857038,59.01457214,226.6531557,230.1162401,9.531087,0.091526044,1620000000000 ,1620000000000 ,1620000000000 ,1616812456050 -1616812456082 ,112.5706737,26.8785698,59.01390839,226.6564478,230.1224223,9.529632,0.091514025,1620000000000 ,1620000000000 ,1620000000000 ,1616812456060 -1616812456088 ,112.570673,26.87856921,59.01322937,226.6597809,230.1351338,9.527541,0.091498053,1620000000000 ,1620000000000 ,1620000000000 ,1616812456070 -1616812456099 ,112.5706723,26.87856862,59.0125351,226.6595077,230.1417044,9.527118,0.09148901,1620000000000 ,1620000000000 ,1620000000000 ,1616812456080 -1616812456111 ,112.5706716,26.87856804,59.01182175,226.6607508,230.1518703,9.526536,0.091485523,1620000000000 ,1620000000000 ,1620000000000 ,1616812456090 -1616812456119 ,112.5706708,26.87856745,59.01109314,226.6616797,230.1599515,9.525633,0.091477382,1620000000000 ,1620000000000 ,1620000000000 ,1616812456100 -1616812456131 ,112.5706701,26.87856687,59.01034164,226.6621442,230.1647073,9.524453,0.09146799,1620000000000 ,1620000000000 ,1620000000000 ,1616812456110 -1616812456144 ,112.5706694,26.87856628,59.00957108,226.6621988,230.1728052,9.5245495,0.091466114,1620000000000 ,1620000000000 ,1620000000000 ,1616812456120 -1616812456150 ,112.5706687,26.87856569,59.00881195,226.6601907,230.1768062,9.524827,0.091470371,1620000000000 ,1620000000000 ,1620000000000 ,1616812456130 -1616812456159 ,112.570668,26.87856511,59.00806046,226.6571718,230.1883349,9.523518,0.091460976,1620000000000 ,1620000000000 ,1620000000000 ,1616812456140 -1616812456170 ,112.5706673,26.87856452,59.00733185,226.6555052,230.2009663,9.522363,0.091454807,1620000000000 ,1620000000000 ,1620000000000 ,1616812456150 -1616812456179 ,112.5706666,26.87856394,59.00663757,226.6512295,230.2045504,9.520154,0.091440399,1620000000000 ,1620000000000 ,1620000000000 ,1616812456160 -1616812456190 ,112.5706659,26.87856335,59.00598907,226.6468582,230.2006845,9.518259,0.091421543,1620000000000 ,1620000000000 ,1620000000000 ,1616812456170 -1616812456200 ,112.5706652,26.87856277,59.00534439,226.6427601,230.1989075,9.517697,0.091412036,1620000000000 ,1620000000000 ,1620000000000 ,1616812456180 -1616812456209 ,112.5706645,26.87856218,59.00468826,226.6355611,230.2058259,9.516651,0.091403632,1620000000000 ,1620000000000 ,1620000000000 ,1616812456190 -1616812456222 ,112.5706638,26.8785616,59.00411987,226.6197424,230.161034,9.518128,0.091486797,1620000000000 ,1620000000000 ,1620000000000 ,1616812456200 -1616812456231 ,112.5706631,26.87856101,59.00374985,226.6136362,230.1148404,9.51743,0.091597551,1620000000000 ,1620000000000 ,1620000000000 ,1616812456210 -1616812456240 ,112.5706624,26.87856042,59.00343323,226.6061776,230.1098955,9.515932,0.091586947,1620000000000 ,1620000000000 ,1620000000000 ,1616812456220 -1616812456252 ,112.5706617,26.87855983,59.00312042,226.5972027,230.0953433,9.515508,0.091579005,1620000000000 ,1620000000000 ,1620000000000 ,1616812456230 -1616812456261 ,112.570661,26.87855925,59.00281525,226.5875039,230.0947796,9.5138445,0.091566565,1620000000000 ,1620000000000 ,1620000000000 ,1616812456240 -1616812456271 ,112.5706603,26.87855866,59.0025177,226.5793623,230.0823934,9.513156,0.091555124,1620000000000 ,1620000000000 ,1620000000000 ,1616812456250 -1616812456282 ,112.5706596,26.87855807,59.00225449,226.5698683,230.0744185,9.511994,0.091544583,1620000000000 ,1620000000000 ,1620000000000 ,1616812456260 -1616812456304 ,112.5706589,26.87855748,59.00202942,226.5612076,230.0629456,9.511163,0.091536891,1620000000000 ,1620000000000 ,1620000000000 ,1616812456270 -1616812456318 ,112.5706582,26.8785569,59.00182724,226.5501701,230.0523344,9.510069,0.091530264,1620000000000 ,1620000000000 ,1620000000000 ,1616812456280 -1616812456320 ,112.5706575,26.87855631,59.00164413,226.5371244,230.0460803,9.508734,0.091514817,1620000000000 ,1620000000000 ,1620000000000 ,1616812456290 -1616812456324 ,112.5706568,26.87855572,59.00146103,226.5251442,230.0382104,9.508605,0.091508733,1620000000000 ,1620000000000 ,1620000000000 ,1616812456300 -1616812456332 ,112.5706561,26.87855513,59.00125122,226.5106916,230.0280521,9.508316,0.091508548,1620000000000 ,1620000000000 ,1620000000000 ,1616812456310 -1616812456342 ,112.5706554,26.87855454,59.00099182,226.4965531,230.0158516,9.509377,0.09150873,1620000000000 ,1620000000000 ,1620000000000 ,1616812456320 -1616812456353 ,112.5706547,26.87855396,59.00066757,226.4832888,230.0035598,9.510095,0.091512058,1620000000000 ,1620000000000 ,1620000000000 ,1616812456330 -1616812456362 ,112.570654,26.87855337,59.00028229,226.4681941,229.9899518,9.5101385,0.091509552,1620000000000 ,1620000000000 ,1620000000000 ,1616812456340 -1616812456376 ,112.5706533,26.87855278,58.9998436,226.4509684,229.9753301,9.5104685,0.091507717,1620000000000 ,1620000000000 ,1620000000000 ,1616812456350 -1616812456383 ,112.5706526,26.87855219,58.99934769,226.4343847,229.9681304,9.511261,0.091509161,1620000000000 ,1620000000000 ,1620000000000 ,1616812456360 -1616812456394 ,112.5706519,26.8785516,58.99881363,226.4145498,229.96362,9.512135,0.091515477,1620000000000 ,1620000000000 ,1620000000000 ,1616812456370 -1616812456401 ,112.5706512,26.87855101,58.99824524,226.3950974,229.9482385,9.511426,0.091508496,1620000000000 ,1620000000000 ,1620000000000 ,1616812456380 -1616812456412 ,112.5706505,26.87855042,58.9976387,226.3741014,229.9326882,9.510915,0.091498351,1620000000000 ,1620000000000 ,1620000000000 ,1616812456390 -1616812456421 ,112.5706498,26.87854984,58.99701309,226.3538431,229.9206844,9.510116,0.09149089,1620000000000 ,1620000000000 ,1620000000000 ,1616812456400 -1616812456431 ,112.5706491,26.87854925,58.99636841,226.3321504,229.9070099,9.509401,0.09147658,1620000000000 ,1620000000000 ,1620000000000 ,1616812456410 -1616812456443 ,112.5706484,26.87854866,58.99570084,226.3106217,229.8946615,9.508392,0.091465053,1620000000000 ,1620000000000 ,1620000000000 ,1616812456420 -1616812456452 ,112.5706477,26.87854807,58.99500656,226.2883552,229.875022,9.508333,0.091458119,1620000000000 ,1620000000000 ,1620000000000 ,1616812456430 -1616812456463 ,112.570647,26.87854748,58.99428177,226.2669085,229.8504472,9.508884,0.0914562,1620000000000 ,1620000000000 ,1620000000000 ,1616812456450 -1616812456472 ,112.5706463,26.87854689,58.99346542,226.241746,229.8665986,9.509955,0.091368393,1620000000000 ,1620000000000 ,1620000000000 ,1616812456450 -1616812456482 ,112.5706456,26.8785463,58.99256516,226.2150263,229.8802026,9.510154,0.091277689,1620000000000 ,1620000000000 ,1620000000000 ,1616812456470 -1616812456492 ,112.5706449,26.87854571,58.99167252,226.1901371,229.8458243,9.509509,0.091269004,1620000000000 ,1620000000000 ,1620000000000 ,1616812456480 -1616812456503 ,112.5706442,26.87854512,58.99080276,226.1646878,229.8149984,9.508256,0.091251229,1620000000000 ,1620000000000 ,1620000000000 ,1616812456480 -1616812456514 ,112.5706435,26.87854453,58.98997116,226.1378042,229.7779948,9.506117,0.091227427,1620000000000 ,1620000000000 ,1620000000000 ,1616812456500 -1616812456525 ,112.5706428,26.87854395,58.98914337,226.1124915,229.7494031,9.505174,0.091211613,1620000000000 ,1620000000000 ,1620000000000 ,1616812456510 -1616812456535 ,112.5706414,26.87854277,58.98748398,226.05938,229.7120226,9.504329,0.182392495,1620000000000 ,1620000000000 ,1620000000000 ,1616812456520 -1616812456546 ,112.5706407,26.87854218,58.98669815,226.031786,229.6747095,9.503798,0.091186451,1620000000000 ,1620000000000 ,1620000000000 ,1616812456530 -1616812456554 ,112.57064,26.87854159,58.98593903,226.0031812,229.6482135,9.504616,0.091186928,1620000000000 ,1620000000000 ,1620000000000 ,1616812456540 -1616812456564 ,112.5706393,26.87854099,58.98518753,225.9761063,229.62593,9.505517,0.091190118,1620000000000 ,1620000000000 ,1620000000000 ,1616812456550 -1616812456573 ,112.5706393,26.87854099,58.98518753,225.9761063,-400,9.505517,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812456560 -1616812456583 ,112.5706379,26.87853981,58.98366547,225.9189923,229.5859972,9.50315,0.182345143,1620000000000 ,1620000000000 ,1620000000000 ,1616812456570 -1616812456598 ,112.5706373,26.87853922,58.98295975,225.88924,229.5410835,9.501717,0.091146936,1620000000000 ,1620000000000 ,1620000000000 ,1616812456580 -1616812456606 ,112.5706366,26.87853863,58.98227692,225.8611133,229.5067462,9.501627,0.09113548,1620000000000 ,1620000000000 ,1620000000000 ,1616812456590 -1616812456616 ,112.5706359,26.87853804,58.98158264,225.8312926,229.4802273,9.500786,0.091126587,1620000000000 ,1620000000000 ,1620000000000 ,1616812456600 -1616812456624 ,112.5706352,26.87853744,58.98088837,225.7983711,229.4560968,9.501295,0.091122951,1620000000000 ,1620000000000 ,1620000000000 ,1616812456610 -1616812456635 ,112.5706345,26.87853685,58.98022079,225.7685095,229.434087,9.501475,0.091124981,1620000000000 ,1620000000000 ,1620000000000 ,1616812456620 -1616812456645 ,112.5706338,26.87853626,58.97959518,225.7378147,229.3989139,9.500069,0.091109272,1620000000000 ,1620000000000 ,1620000000000 ,1616812456630 -1616812456656 ,112.5706331,26.87853567,58.97900391,225.7067646,229.362825,9.499754,0.09109953,1620000000000 ,1620000000000 ,1620000000000 ,1616812456640 -1616812456665 ,112.5706324,26.87853507,58.9784317,225.6771489,229.3300116,9.498126,0.091081896,1620000000000 ,1620000000000 ,1620000000000 ,1616812456650 -1616812456675 ,112.5706317,26.87853448,58.97785187,225.6457984,229.3008149,9.49857,0.091075343,1620000000000 ,1620000000000 ,1620000000000 ,1616812456660 -1616812456686 ,112.570631,26.87853388,58.97727966,225.6152264,229.272176,9.498867,0.091075385,1620000000000 ,1620000000000 ,1620000000000 ,1616812456670 -1616812456695 ,112.5706303,26.87853329,58.97673416,225.5861025,229.2355628,9.499043,0.091069312,1620000000000 ,1620000000000 ,1620000000000 ,1616812456680 -1616812456707 ,112.5706297,26.87853269,58.97622299,225.5537274,229.1980411,9.497965,0.091060085,1620000000000 ,1620000000000 ,1620000000000 ,1616812456690 -1616812456716 ,112.570629,26.8785321,58.97572708,225.5213113,229.1608731,9.496536,0.091042461,1620000000000 ,1620000000000 ,1620000000000 ,1616812456700 -1616812456725 ,112.5706283,26.8785315,58.97524261,225.489551,229.1237755,9.496426,0.091031588,1620000000000 ,1620000000000 ,1620000000000 ,1616812456710 -1616812456736 ,112.5706276,26.87853091,58.97476578,225.4574218,229.0888588,9.495129,0.091016451,1620000000000 ,1620000000000 ,1620000000000 ,1616812456720 -1616812456748 ,112.5706269,26.87853031,58.97429657,225.4263581,229.0500252,9.494324,0.091002049,1620000000000 ,1620000000000 ,1620000000000 ,1616812456730 -1616812456756 ,112.5706262,26.87852971,58.97383499,225.3943654,229.0105683,9.4935055,0.090986583,1620000000000 ,1620000000000 ,1620000000000 ,1616812456740 -1616812456767 ,112.5706255,26.87852912,58.9733696,225.362851,228.9779573,9.493609,0.090979206,1620000000000 ,1620000000000 ,1620000000000 ,1616812456750 -1616812456776 ,112.5706248,26.87852852,58.97288132,225.3327162,228.9430585,9.49428,0.090979776,1620000000000 ,1620000000000 ,1620000000000 ,1616812456760 -1616812456787 ,112.5706242,26.87852792,58.97235107,225.3009558,228.9164133,9.494332,0.090975964,1620000000000 ,1620000000000 ,1620000000000 ,1616812456770 -1616812456795 ,112.5706235,26.87852732,58.97181702,225.2695096,228.8921238,9.493694,0.090966769,1620000000000 ,1620000000000 ,1620000000000 ,1616812456780 -1616812456805 ,112.5706228,26.87852673,58.97130585,225.2362056,228.8544046,9.491415,0.090942336,1620000000000 ,1620000000000 ,1620000000000 ,1616812456790 -1616812456816 ,112.5706221,26.87852613,58.97080612,225.2065489,228.8194024,9.490701,0.090926369,1620000000000 ,1620000000000 ,1620000000000 ,1616812456800 -1616812456827 ,112.5706214,26.87852553,58.97026062,225.1776572,228.7881915,9.491335,0.090921535,1620000000000 ,1620000000000 ,1620000000000 ,1616812456810 -1616812456837 ,112.5706207,26.87852493,58.96964264,225.1479186,228.7587906,9.491327,0.090914622,1620000000000 ,1620000000000 ,1620000000000 ,1616812456820 -1616812456849 ,112.57062,26.87852433,58.96899033,225.1193547,228.7310109,9.491722,0.090913119,1620000000000 ,1620000000000 ,1620000000000 ,1616812456830 -1616812456857 ,112.5706194,26.87852373,58.96834183,225.0899712,228.6926299,9.490849,0.090901674,1620000000000 ,1620000000000 ,1620000000000 ,1616812456840 -1616812456869 ,112.5706187,26.87852313,58.96770859,225.0591261,228.6598247,9.490814,0.090892655,1620000000000 ,1620000000000 ,1620000000000 ,1616812456850 -1616812456877 ,112.570618,26.87852253,58.96707916,225.0300841,228.6332331,9.491081,0.09088859,1620000000000 ,1620000000000 ,1620000000000 ,1616812456860 -1616812456889 ,112.5706173,26.87852193,58.96643448,225.0008373,228.6036873,9.490268,0.090879106,1620000000000 ,1620000000000 ,1620000000000 ,1616812456870 -1616812456896 ,112.5706166,26.87852133,58.96577072,224.9732296,228.5686005,9.490168,0.090866802,1620000000000 ,1620000000000 ,1620000000000 ,1616812456880 -1616812456908 ,112.570616,26.87852072,58.96509933,224.9444336,228.5360683,9.489773,0.090860068,1620000000000 ,1620000000000 ,1620000000000 ,1616812456890 -1616812456918 ,112.5706153,26.87852012,58.96439743,224.9173587,228.4978435,9.489781,0.090850845,1620000000000 ,1620000000000 ,1620000000000 ,1616812456900 -1616812456927 ,112.5706146,26.87851952,58.96364594,224.8906117,228.4694413,9.491157,0.090851222,1620000000000 ,1620000000000 ,1620000000000 ,1616812456910 -1616812456937 ,112.5706139,26.87851892,58.96286011,224.8654219,228.4456128,9.491369,0.090849463,1620000000000 ,1620000000000 ,1620000000000 ,1616812456920 -1616812456947 ,112.5706132,26.87851831,58.96206284,224.8392077,228.4073056,9.490458,0.090837067,1620000000000 ,1620000000000 ,1620000000000 ,1616812456930 -1616812456957 ,112.5706126,26.87851771,58.96128845,224.8151108,228.3711825,9.490772,0.090831617,1620000000000 ,1620000000000 ,1620000000000 ,1616812456940 -1616812456966 ,112.5706119,26.87851711,58.96050644,224.7919154,228.3350652,9.491257,0.090824556,1620000000000 ,1620000000000 ,1620000000000 ,1616812456950 -1616812456977 ,112.5706112,26.8785165,58.95969009,224.7702501,228.2958017,9.49176,0.090823174,1620000000000 ,1620000000000 ,1620000000000 ,1616812456960 -1616812456989 ,112.5706105,26.8785159,58.95884323,224.7491448,228.2680757,9.492764,0.090827392,1620000000000 ,1620000000000 ,1620000000000 ,1616812456970 -1616812456998 ,112.5706098,26.87851529,58.95799255,224.7247474,228.2382111,9.4938965,0.09083,1620000000000 ,1620000000000 ,1620000000000 ,1616812456980 -1616812457010 ,112.5706092,26.87851469,58.95715714,224.7048852,228.2057924,9.494732,0.090831973,1620000000000 ,1620000000000 ,1620000000000 ,1616812456990 -1616812457017 ,112.5706085,26.87851408,58.95634842,224.6848454,228.1874338,9.496373,0.090842252,1620000000000 ,1620000000000 ,1620000000000 ,1616812457000 -1616812457028 ,112.5706078,26.87851348,58.95553589,224.6634806,228.1636031,9.497718,0.090849902,1620000000000 ,1620000000000 ,1620000000000 ,1616812457010 -1616812457037 ,112.5706071,26.87851287,58.95472336,224.6438506,228.1405926,9.498497,0.090856327,1620000000000 ,1620000000000 ,1620000000000 ,1616812457020 -1616812457048 ,112.5706065,26.87851226,58.9539299,224.6241933,228.1268588,9.501054,0.090874323,1620000000000 ,1620000000000 ,1620000000000 ,1616812457030 -1616812457057 ,112.5706058,26.87851166,58.95313263,224.6064621,228.1101918,9.503537,0.090893687,1620000000000 ,1620000000000 ,1620000000000 ,1616812457040 -1616812457074 ,112.5706051,26.87851105,58.95232773,224.5874469,228.094467,9.506629,0.090913821,1620000000000 ,1620000000000 ,1620000000000 ,1616812457050 -1616812457077 ,112.5706044,26.87851044,58.95151138,224.5689644,228.0776384,9.509604,0.090942436,1620000000000 ,1620000000000 ,1620000000000 ,1616812457060 -1616812457090 ,112.5706038,26.87850983,58.95069504,224.5505092,228.0544985,9.513013,0.090967577,1620000000000 ,1620000000000 ,1620000000000 ,1616812457070 -1616812457098 ,112.5706031,26.87850922,58.94990921,224.5303329,228.0429349,9.515871,0.090995757,1620000000000 ,1620000000000 ,1620000000000 ,1616812457080 -1616812457110 ,112.5706024,26.87850862,58.94914246,224.5117957,228.0245806,9.518479,0.091018678,1620000000000 ,1620000000000 ,1620000000000 ,1616812457090 -1616812457118 ,112.5706017,26.87850801,58.9484024,224.4920565,228.0089186,9.520575,0.091037991,1620000000000 ,1620000000000 ,1620000000000 ,1616812457100 -1616812457128 ,112.570601,26.8785074,58.94768524,224.4721806,227.994594,9.523512,0.09106136,1620000000000 ,1620000000000 ,1620000000000 ,1616812457110 -1616812457140 ,112.5706004,26.87850679,58.94700241,224.4519633,227.9724615,9.525737,0.091081494,1620000000000 ,1620000000000 ,1620000000000 ,1616812457120 -1616812457151 ,112.5705997,26.87850618,58.94636536,224.4341775,227.9496508,9.52809,0.091100735,1620000000000 ,1620000000000 ,1620000000000 ,1616812457130 -1616812457159 ,112.570599,26.87850557,58.94573975,224.4165829,227.927871,9.530597,0.091119272,1620000000000 ,1620000000000 ,1620000000000 ,1616812457140 -1616812457170 ,112.5705983,26.87850496,58.94512558,224.3995757,227.9179027,9.533323,0.091142718,1620000000000 ,1620000000000 ,1620000000000 ,1616812457150 -1616812457179 ,112.5705977,26.87850435,58.9445343,224.3841122,227.9028571,9.5354805,0.0911643,1620000000000 ,1620000000000 ,1620000000000 ,1616812457160 -1616812457189 ,112.570597,26.87850373,58.94397736,224.3672962,227.8782863,9.538671,0.091189146,1620000000000 ,1620000000000 ,1620000000000 ,1616812457170 -1616812457199 ,112.5705963,26.87850312,58.94346619,224.3508355,227.8501802,9.540554,0.091205264,1620000000000 ,1620000000000 ,1620000000000 ,1616812457180 -1616812457210 ,112.5705956,26.87850251,58.94300461,224.3352763,227.8275523,9.541275,0.091214292,1620000000000 ,1620000000000 ,1620000000000 ,1616812457190 -1616812457220 ,112.570595,26.8785019,58.94260788,224.3200723,227.8078233,9.541939,0.091220021,1620000000000 ,1620000000000 ,1620000000000 ,1616812457200 -1616812457229 ,112.5705943,26.87850128,58.94169235,224.3005516,228.0539756,9.5884075,0.092898188,1620000000000 ,1620000000000 ,1620000000000 ,1616812457210 -1616812457240 ,112.5705936,26.87850065,58.94074249,224.2878885,228.0724239,9.589866,0.093128924,1620000000000 ,1620000000000 ,1620000000000 ,1616812457220 -1616812457249 ,112.5705929,26.87850003,58.93982697,224.27584,228.0525147,9.591701,0.09314603,1620000000000 ,1620000000000 ,1620000000000 ,1616812457230 -1616812457259 ,112.5705922,26.87849941,58.93894958,224.2675072,228.0340815,9.5933485,0.093160596,1620000000000 ,1620000000000 ,1620000000000 ,1616812457240 -1616812457276 ,112.5705915,26.87849878,58.93808746,224.2590241,228.0219278,9.595781,0.093176095,1620000000000 ,1620000000000 ,1620000000000 ,1616812457250 -1616812457280 ,112.5705908,26.87849816,58.9372406,224.2528223,228.0011872,9.597484,0.093193803,1620000000000 ,1620000000000 ,1620000000000 ,1616812457260 -1616812457290 ,112.5705901,26.87849754,58.93642044,224.2463882,227.9866838,9.600506,0.093219264,1620000000000 ,1620000000000 ,1620000000000 ,1616812457270 -1616812457301 ,112.5705894,26.87849691,58.93560791,224.2435059,227.9702709,9.603115,0.093240061,1620000000000 ,1620000000000 ,1620000000000 ,1616812457280 -1616812457313 ,112.5705887,26.87849629,58.93478394,224.2419759,227.9523961,9.604597,0.09325374,1620000000000 ,1620000000000 ,1620000000000 ,1616812457290 -1616812457322 ,112.570588,26.87849566,58.93395615,224.2413885,227.9425184,9.606959,0.093274866,1620000000000 ,1620000000000 ,1620000000000 ,1616812457300 -1616812457330 ,112.5705873,26.87849504,58.93314743,224.2426589,227.9244762,9.609659,0.093295244,1620000000000 ,1620000000000 ,1620000000000 ,1616812457310 -1616812457341 ,112.5705867,26.87849441,58.93237305,224.2462243,227.9175668,9.610458,0.093306404,1620000000000 ,1620000000000 ,1620000000000 ,1616812457320 -1616812457356 ,112.570586,26.87849379,58.93161774,224.2512103,227.9074035,9.611749,0.093318728,1620000000000 ,1620000000000 ,1620000000000 ,1616812457330 -1616812457362 ,112.5705853,26.87849316,58.93084717,224.2559368,227.8988322,9.613179,0.093331405,1620000000000 ,1620000000000 ,1620000000000 ,1616812457340 -1616812457372 ,112.5705846,26.87849254,58.93006516,224.2634637,227.895553,9.614807,0.093343921,1620000000000 ,1620000000000 ,1620000000000 ,1616812457350 -1616812457382 ,112.5705839,26.87849191,58.9292717,224.2717419,227.8888858,9.616925,0.093359619,1620000000000 ,1620000000000 ,1620000000000 ,1616812457360 -1616812457393 ,112.5705832,26.87849128,58.92848969,224.2826429,227.8868675,9.6174965,0.09337113,1620000000000 ,1620000000000 ,1620000000000 ,1616812457370 -1616812457405 ,112.5705825,26.87849066,58.92771149,224.2933116,227.8823681,9.619381,0.093382899,1620000000000 ,1620000000000 ,1620000000000 ,1616812457380 -1616812457413 ,112.5705818,26.87849003,58.92691803,224.3059885,227.8811784,9.6195965,0.093390559,1620000000000 ,1620000000000 ,1620000000000 ,1616812457390 -1616812457422 ,112.5705811,26.8784894,58.92609787,224.319963,227.8856797,9.621125,0.093397955,1620000000000 ,1620000000000 ,1620000000000 ,1616812457400 -1616812457432 ,112.5705804,26.87848878,58.92525101,224.3341562,227.8857288,9.622943,0.093417647,1620000000000 ,1620000000000 ,1620000000000 ,1616812457410 -1616812457443 ,112.5705797,26.87848815,58.92436981,224.3519693,227.8845266,9.623935,0.093425505,1620000000000 ,1620000000000 ,1620000000000 ,1616812457420 -1616812457455 ,112.570579,26.87848752,58.92347717,224.3683481,227.8869188,9.623767,0.093425459,1620000000000 ,1620000000000 ,1620000000000 ,1616812457430 -1616812457463 ,112.5705783,26.8784869,58.92258072,224.3882922,227.8932678,9.623943,0.093429001,1620000000000 ,1620000000000 ,1620000000000 ,1616812457440 -1616812457473 ,112.5705776,26.87848627,58.92167664,224.4071026,227.9023828,9.625864,0.093440124,1620000000000 ,1620000000000 ,1620000000000 ,1616812457450 -1616812457483 ,112.570577,26.87848565,58.92124176,224.4269511,227.6952577,9.628408,0.092018996,1620000000000 ,1620000000000 ,1620000000000 ,1616812457460 -1616812457493 ,112.5705763,26.87848503,58.92078781,224.4472231,227.7162728,9.6300745,0.092039154,1620000000000 ,1620000000000 ,1620000000000 ,1616812457470 -1616812457501 ,112.5705756,26.87848441,58.92033005,224.4687792,227.7384131,9.630692,0.09205251,1620000000000 ,1620000000000 ,1620000000000 ,1616812457480 -1616812457513 ,112.5705749,26.8784838,58.91986847,224.4885867,227.7697587,9.632139,0.092064504,1620000000000 ,1620000000000 ,1620000000000 ,1616812457490 -1616812457524 ,112.5705742,26.87848318,58.919384,224.5086675,227.8025427,9.633088,0.092080641,1620000000000 ,1620000000000 ,1620000000000 ,1616812457500 -1616812457536 ,112.5705736,26.87848256,58.91884995,224.5295406,227.8285014,9.634264,0.092092176,1620000000000 ,1620000000000 ,1620000000000 ,1616812457510 -1616812457543 ,112.5705729,26.87848194,58.91830444,224.5494437,227.8673378,9.635112,0.092108816,1620000000000 ,1620000000000 ,1620000000000 ,1616812457520 -1616812457566 ,112.5705722,26.87848132,58.91775513,224.568418,227.89802,9.635778,0.092120249,1620000000000 ,1620000000000 ,1620000000000 ,1616812457530 -1616812457570 ,112.5705715,26.87848071,58.91717529,224.5865453,227.9336069,9.637313,0.092136961,1620000000000 ,1620000000000 ,1620000000000 ,1616812457540 -1616812457579 ,112.5705708,26.87848009,58.91656113,224.6020498,227.9726798,9.639349,0.092160983,1620000000000 ,1620000000000 ,1620000000000 ,1616812457560 -1616812457586 ,112.5705701,26.87847947,58.91592407,224.6185926,228.0071232,9.639769,0.092170843,1620000000000 ,1620000000000 ,1620000000000 ,1616812457570 -1616812457594 ,112.5705695,26.87847886,58.91527176,224.6320071,228.0419988,9.641125,0.092189888,1620000000000 ,1620000000000 ,1620000000000 ,1616812457580 -1616812457606 ,112.5705688,26.87847824,58.91463089,224.6449708,228.0721307,9.642745,0.092210233,1620000000000 ,1620000000000 ,1620000000000 ,1616812457580 -1616812457616 ,112.5705681,26.87847762,58.91401672,224.6563635,228.1034244,9.643309,0.092221265,1620000000000 ,1620000000000 ,1620000000000 ,1616812457600 -1616812457624 ,112.5705674,26.87847701,58.91343689,224.6692452,228.1350053,9.644108,0.09223484,1620000000000 ,1620000000000 ,1620000000000 ,1616812457610 -1616812457635 ,112.570566,26.87847578,58.9124527,224.6880966,228.1689,9.644201,0.184499997,1620000000000 ,1620000000000 ,1620000000000 ,1616812457620 -1616812457648 ,112.5705653,26.87847516,58.91205215,224.6982872,228.1987786,9.644535,0.092258464,1620000000000 ,1620000000000 ,1620000000000 ,1616812457630 -1616812457653 ,112.5705646,26.87847455,58.91170883,224.705978,228.2225413,9.645242,0.092268956,1620000000000 ,1620000000000 ,1620000000000 ,1616812457640 -1616812457665 ,112.570564,26.87847393,58.91143799,224.7141606,228.2342157,9.646072,0.092283933,1620000000000 ,1620000000000 ,1620000000000 ,1616812457650 -1616812457673 ,112.5705633,26.87847332,58.91125107,224.7222612,228.2448725,9.646458,0.092294236,1620000000000 ,1620000000000 ,1620000000000 ,1616812457660 -1616812457683 ,112.5705626,26.8784727,58.91114426,224.7295695,228.2533371,9.647509,0.09230674,1620000000000 ,1620000000000 ,1620000000000 ,1616812457670 -1616812457693 ,112.5705619,26.87847209,58.91109467,224.7369597,228.2608765,9.6472,0.092307929,1620000000000 ,1620000000000 ,1620000000000 ,1616812457680 -1616812457705 ,112.5705619,26.87847209,58.91109467,224.7369597,-400,9.6472,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812457690 -1616812457716 ,112.5705605,26.87847086,58.91119003,224.7458526,228.2798111,9.647625,0.184636157,1620000000000 ,1620000000000 ,1620000000000 ,1616812457700 -1616812457724 ,112.5705598,26.87847025,58.91132736,224.7527785,228.2942451,9.648414,0.092332298,1620000000000 ,1620000000000 ,1620000000000 ,1616812457710 -1616812457734 ,112.5705591,26.87846963,58.91151047,224.7555515,228.2959254,9.648266,0.092334572,1620000000000 ,1620000000000 ,1620000000000 ,1616812457720 -1616812457744 ,112.5705584,26.87846902,58.91172791,224.7595677,228.295,9.649493,0.092347995,1620000000000 ,1620000000000 ,1620000000000 ,1616812457730 -1616812457755 ,112.5705578,26.8784684,58.9119606,224.7640893,228.2958953,9.650496,0.0923579,1620000000000 ,1620000000000 ,1620000000000 ,1616812457740 -1616812457765 ,112.5705571,26.87846779,58.91216278,224.7673677,228.2939192,9.653063,0.092376206,1620000000000 ,1620000000000 ,1620000000000 ,1616812457750 -1616812457776 ,112.5705564,26.87846717,58.91233063,224.7707282,228.2965284,9.656335,0.092408303,1620000000000 ,1620000000000 ,1620000000000 ,1616812457760 -1616812457789 ,112.5705557,26.87846656,58.91246796,224.7730095,228.2945929,9.65926,0.092436412,1620000000000 ,1620000000000 ,1620000000000 ,1616812457770 -1616812457797 ,112.570555,26.87846594,58.91257477,224.7752088,228.2922759,9.66265,0.092465944,1620000000000 ,1620000000000 ,1620000000000 ,1616812457780 -1616812457806 ,112.5705543,26.87846533,58.91265488,224.7774628,228.2920738,9.664892,0.092490828,1620000000000 ,1620000000000 ,1620000000000 ,1616812457790 -1616812457817 ,112.5705536,26.87846471,58.91271591,224.7788561,228.2870219,9.668489,0.092519514,1620000000000 ,1620000000000 ,1620000000000 ,1616812457800 -1616812457826 ,112.5705529,26.8784641,58.91274261,224.7798943,228.2812489,9.673469,0.092560045,1620000000000 ,1620000000000 ,1620000000000 ,1616812457810 -1616812457835 ,112.5705522,26.87846348,58.91273117,224.7810554,228.281441,9.677678,0.092602366,1620000000000 ,1620000000000 ,1620000000000 ,1616812457820 -1616812457847 ,112.5705515,26.87846286,58.91269302,224.7817248,228.2787503,9.681522,0.092641548,1620000000000 ,1620000000000 ,1620000000000 ,1616812457830 -1616812457859 ,112.5705508,26.87846225,58.91263962,224.7804271,228.2676835,9.684105,0.092664903,1620000000000 ,1620000000000 ,1620000000000 ,1616812457840 -1616812457870 ,112.5705502,26.87846163,58.9125824,224.7807549,228.2630288,9.688813,0.092701676,1620000000000 ,1620000000000 ,1620000000000 ,1616812457850 -1616812457878 ,112.5705495,26.87846101,58.9124794,224.78055,228.2511203,9.69285,0.092739811,1620000000000 ,1620000000000 ,1620000000000 ,1616812457860 -1616812457890 ,112.5705488,26.87846039,58.91228867,224.7794982,228.2411337,9.698135,0.09277976,1620000000000 ,1620000000000 ,1620000000000 ,1616812457870 -1616812457896 ,112.5705481,26.87845978,58.91203308,224.7788151,228.2350638,9.703846,0.092833813,1620000000000 ,1620000000000 ,1620000000000 ,1616812457880 -1616812457907 ,112.5705474,26.87845916,58.91172028,224.7791157,228.2228144,9.708223,0.092871789,1620000000000 ,1620000000000 ,1620000000000 ,1616812457890 -1616812457916 ,112.5705467,26.87845854,58.91139221,224.7763699,228.2092867,9.711748,0.092904813,1620000000000 ,1620000000000 ,1620000000000 ,1616812457900 -1616812457927 ,112.570546,26.87845792,58.91106033,224.7755503,228.2036549,9.714718,0.092933942,1620000000000 ,1620000000000 ,1620000000000 ,1616812457910 -1616812457941 ,112.5705453,26.8784573,58.91070557,224.7723401,228.1977106,9.7182865,0.09296246,1620000000000 ,1620000000000 ,1620000000000 ,1616812457920 -1616812457948 ,112.5705446,26.87845668,58.91029739,224.7671355,228.1922939,9.722028,0.0929925,1620000000000 ,1620000000000 ,1620000000000 ,1616812457930 -1616812457962 ,112.5705439,26.87845606,58.90982056,224.7622997,228.1972278,9.726528,0.093034412,1620000000000 ,1620000000000 ,1620000000000 ,1616812457940 -1616812457967 ,112.5705432,26.87845544,58.90930939,224.7583929,228.1970526,9.730347,0.093070257,1620000000000 ,1620000000000 ,1620000000000 ,1616812457950 -1616812457977 ,112.5705425,26.87845482,58.90879059,224.7521228,228.1949964,9.735079,0.093112731,1620000000000 ,1620000000000 ,1620000000000 ,1616812457960 -1616812457988 ,112.5705418,26.8784542,58.90828323,224.7455658,228.2011897,9.738253,0.093146994,1620000000000 ,1620000000000 ,1620000000000 ,1616812457970 -1616812457997 ,112.5705411,26.87845358,58.90776443,224.7390225,228.2111553,9.743327,0.093194296,1620000000000 ,1620000000000 ,1620000000000 ,1616812457980 -1616812458008 ,112.5705404,26.87845296,58.90722656,224.7308945,228.2133875,9.747332,0.093232239,1620000000000 ,1620000000000 ,1620000000000 ,1616812457990 -1616812458019 ,112.5705398,26.87845233,58.9066925,224.7223978,228.2119505,9.751398,0.093271049,1620000000000 ,1620000000000 ,1620000000000 ,1616812458000 -1616812458029 ,112.5705391,26.87845171,58.90617752,224.7109777,228.2098292,9.755433,0.093310863,1620000000000 ,1620000000000 ,1620000000000 ,1616812458010 -1616812458040 ,112.5705384,26.87845109,58.90567398,224.6995849,228.2055147,9.759846,0.093349524,1620000000000 ,1620000000000 ,1620000000000 ,1616812458020 -1616812458048 ,112.5705377,26.87845047,58.90518188,224.6879736,228.1987041,9.763768,0.093388171,1620000000000 ,1620000000000 ,1620000000000 ,1616812458030 -1616812458060 ,112.570537,26.87844984,58.90470505,224.6780835,228.1900572,9.768189,0.09342901,1620000000000 ,1620000000000 ,1620000000000 ,1616812458040 -1616812458068 ,112.5705363,26.87844922,58.90427017,224.6674421,228.1837907,9.7732,0.093475165,1620000000000 ,1620000000000 ,1620000000000 ,1616812458050 -1616812458077 ,112.5705356,26.8784486,58.90385818,224.6562815,228.1704058,9.777874,0.093517379,1620000000000 ,1620000000000 ,1620000000000 ,1616812458060 -1616812458089 ,112.5705349,26.87844797,58.90347672,224.6453123,228.1612655,9.782263,0.093560838,1620000000000 ,1620000000000 ,1620000000000 ,1616812458070 -1616812458100 ,112.5705342,26.87844735,58.90313339,224.6343703,228.1469858,9.786151,0.093597715,1620000000000 ,1620000000000 ,1620000000000 ,1616812458080 -1616812458111 ,112.5705335,26.87844672,58.90282822,224.6232917,228.127222,9.7903805,0.093634713,1620000000000 ,1620000000000 ,1620000000000 ,1616812458090 -1616812458120 ,112.5705328,26.8784461,58.90254211,224.6150818,228.1051045,9.795288,0.093676173,1620000000000 ,1620000000000 ,1620000000000 ,1616812458100 -1616812458129 ,112.5705321,26.87844547,58.90227127,224.6080331,228.0824491,9.80058,0.093722709,1620000000000 ,1620000000000 ,1620000000000 ,1616812458110 -1616812458139 ,112.5705314,26.87844485,58.90205002,224.5994407,228.0614909,9.805258,0.093767225,1620000000000 ,1620000000000 ,1620000000000 ,1616812458120 -1616812458150 ,112.5705307,26.87844422,58.9018898,224.5933755,228.0373389,9.809587,0.093808076,1620000000000 ,1620000000000 ,1620000000000 ,1616812458130 -1616812458159 ,112.57053,26.87844359,58.9017601,224.5891544,228.0144364,9.813919,0.093846233,1620000000000 ,1620000000000 ,1620000000000 ,1616812458140 -1616812458171 ,112.5705293,26.87844296,58.90163422,224.585152,227.9974735,9.81784,0.093883525,1620000000000 ,1620000000000 ,1620000000000 ,1616812458150 -1616812458181 ,112.5705286,26.87844233,58.90148926,224.582215,227.9787346,9.820679,0.093905034,1620000000000 ,1620000000000 ,1620000000000 ,1616812458160 -1616812458190 ,112.5705279,26.8784417,58.90133286,224.581491,227.9585272,9.825965,0.09394839,1620000000000 ,1620000000000 ,1620000000000 ,1616812458170 -1616812458198 ,112.5705272,26.87844108,58.90118027,224.5799883,227.9488163,9.829778,0.093988861,1620000000000 ,1620000000000 ,1620000000000 ,1616812458180 -1616812458210 ,112.5705265,26.87844045,58.90103531,224.5785813,227.938055,9.834652,0.094029695,1620000000000 ,1620000000000 ,1620000000000 ,1616812458190 -1616812458220 ,112.5705258,26.87843981,58.90091324,224.5788545,227.9317157,9.83861,0.094072562,1620000000000 ,1620000000000 ,1620000000000 ,1616812458200 -1616812458230 ,112.5705251,26.87843918,58.9011116,224.5728576,228.2813482,9.87558,0.095566215,1620000000000 ,1620000000000 ,1620000000000 ,1616812458210 -1616812458239 ,112.5705244,26.87843854,58.90142822,224.5737865,228.3191729,9.880699,0.09578397,1620000000000 ,1620000000000 ,1620000000000 ,1616812458220 -1616812458251 ,112.5705237,26.8784379,58.90176773,224.5738548,228.3188318,9.884828,0.095824678,1620000000000 ,1620000000000 ,1620000000000 ,1616812458230 -1616812458261 ,112.5705229,26.87843727,58.90209961,224.5754258,228.3245093,9.889795,0.095871255,1620000000000 ,1620000000000 ,1620000000000 ,1616812458240 -1616812458270 ,112.5705222,26.87843663,58.90240097,224.5762044,228.3217469,9.894358,0.095916722,1620000000000 ,1620000000000 ,1620000000000 ,1616812458250 -1616812458282 ,112.5705215,26.87843599,58.902668,224.5761907,228.3200504,9.898977,0.095960236,1620000000000 ,1620000000000 ,1620000000000 ,1616812458260 -1616812458291 ,112.5705208,26.87843535,58.90289688,224.5747427,228.315411,9.904289,0.096010433,1620000000000 ,1620000000000 ,1620000000000 ,1616812458270 -1616812458300 ,112.5705201,26.87843471,58.90309143,224.5751526,228.3142217,9.909463,0.096056496,1620000000000 ,1620000000000 ,1620000000000 ,1616812458280 -1616812458310 ,112.5705194,26.87843408,58.90327835,224.5754394,228.3219314,9.913237,0.096095028,1620000000000 ,1620000000000 ,1620000000000 ,1616812458290 -1616812458323 ,112.5705186,26.87843344,58.90346909,224.5747564,228.3299965,9.917337,0.096140863,1620000000000 ,1620000000000 ,1620000000000 ,1616812458300 -1616812458332 ,112.5705179,26.8784328,58.90367889,224.572762,228.3385246,9.920119,0.096171678,1620000000000 ,1620000000000 ,1620000000000 ,1616812458310 -1616812458341 ,112.5705172,26.87843216,58.90388489,224.5737455,228.3444631,9.923547,0.096202689,1620000000000 ,1620000000000 ,1620000000000 ,1616812458320 -1616812458352 ,112.5705165,26.87843152,58.90405273,224.5704534,228.3438664,9.927812,0.096241583,1620000000000 ,1620000000000 ,1620000000000 ,1616812458330 -1616812458364 ,112.5705158,26.87843088,58.90417099,224.5670793,228.3486496,9.933043,0.096288754,1620000000000 ,1620000000000 ,1620000000000 ,1616812458340 -1616812458375 ,112.570515,26.87843024,58.90426254,224.561137,228.3558982,9.938391,0.096339607,1620000000000 ,1620000000000 ,1620000000000 ,1616812458350 -1616812458382 ,112.5705143,26.8784296,58.90435791,224.5550445,228.3551803,9.942416,0.096386912,1620000000000 ,1620000000000 ,1620000000000 ,1616812458360 -1616812458393 ,112.5705136,26.87842896,58.90446472,224.5486787,228.347241,9.946615,0.096424001,1620000000000 ,1620000000000 ,1620000000000 ,1616812458370 -1616812458407 ,112.5705129,26.87842832,58.90456772,224.5415753,228.3353131,9.949274,0.096450369,1620000000000 ,1620000000000 ,1620000000000 ,1616812458380 -1616812458415 ,112.5705122,26.87842767,58.90462875,224.5335157,228.3215168,9.952,0.096473672,1620000000000 ,1620000000000 ,1620000000000 ,1616812458390 -1616812458421 ,112.5705114,26.87842703,58.90462112,224.5280926,228.309627,9.957923,0.096515325,1620000000000 ,1620000000000 ,1620000000000 ,1616812458400 -1616812458433 ,112.5705107,26.87842639,58.90451813,224.5208252,228.3027418,9.963153,0.09656072,1620000000000 ,1620000000000 ,1620000000000 ,1616812458410 -1616812458441 ,112.57051,26.87842575,58.90434647,224.5140633,228.3006584,9.968613,0.096610546,1620000000000 ,1620000000000 ,1620000000000 ,1616812458420 -1616812458452 ,112.5705093,26.8784251,58.9041481,224.5055529,228.2980057,9.972869,0.096659357,1620000000000 ,1620000000000 ,1620000000000 ,1616812458430 -1616812458462 ,112.5705086,26.87842446,58.90394592,224.49666,228.291823,9.976826,0.096691259,1620000000000 ,1620000000000 ,1620000000000 ,1616812458440 -1616812458473 ,112.5705078,26.87842382,58.90375519,224.4864967,228.2910694,9.980558,0.096728366,1620000000000 ,1620000000000 ,1620000000000 ,1616812458450 -1616812458484 ,112.5705071,26.87842318,58.9033432,224.4749673,227.99598,9.984855,0.095480661,1620000000000 ,1620000000000 ,1620000000000 ,1616812458470 -1616812458493 ,112.5705057,26.8784219,58.90250397,224.4519633,227.9852976,9.994229,0.19109279,1620000000000 ,1620000000000 ,1620000000000 ,1616812458480 -1616812458508 ,112.5705057,26.8784219,58.90250397,224.4519633,-400,9.994229,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812458480 -1616812458524 ,112.5705043,26.87842062,58.9016304,224.4265003,227.9643487,10.004311,0.191265767,1620000000000 ,1620000000000 ,1620000000000 ,1616812458500 -1616812458532 ,112.5705036,26.87841998,58.90118027,224.4130722,227.9481478,10.009061,0.095703138,1620000000000 ,1620000000000 ,1620000000000 ,1616812458510 -1616812458538 ,112.5705029,26.87841934,58.9007225,224.398879,227.9318177,10.012875,0.095738002,1620000000000 ,1620000000000 ,1620000000000 ,1616812458520 -1616812458545 ,112.5705022,26.87841869,58.90022659,224.3835658,227.915083,10.018715,0.095782692,1620000000000 ,1620000000000 ,1620000000000 ,1616812458530 -1616812458556 ,112.5705014,26.87841805,58.89968872,224.3705611,227.9048478,10.023459,0.095826636,1620000000000 ,1620000000000 ,1620000000000 ,1616812458540 -1616812458565 ,112.5705007,26.87841741,58.89908981,224.3540867,227.8797842,10.028431,0.095869186,1620000000000 ,1620000000000 ,1620000000000 ,1616812458550 -1616812458575 ,112.5705,26.87841676,58.8984108,224.3374756,227.8545908,10.03424,0.095911834,1620000000000 ,1620000000000 ,1620000000000 ,1616812458560 -1616812458586 ,112.5704993,26.87841612,58.897686,224.3206051,227.846199,10.039122,0.095956235,1620000000000 ,1620000000000 ,1620000000000 ,1616812458570 -1616812458596 ,112.5704986,26.87841548,58.89695358,224.3024368,227.8328074,10.045583,0.096014446,1620000000000 ,1620000000000 ,1620000000000 ,1616812458580 -1616812458604 ,112.5704979,26.87841483,58.89625931,224.2828205,227.8266861,10.04973,0.09605842,1620000000000 ,1620000000000 ,1620000000000 ,1616812458590 -1616812458614 ,112.5704972,26.87841419,58.89565277,224.2646248,227.811447,10.053635,0.096096461,1620000000000 ,1620000000000 ,1620000000000 ,1616812458600 -1616812458624 ,112.5704965,26.87841354,58.89511871,224.2448583,227.7833808,10.054517,0.096110735,1620000000000 ,1620000000000 ,1620000000000 ,1616812458610 -1616812458635 ,112.5704958,26.87841289,58.8946228,224.2265534,227.7639316,10.059219,0.096141077,1620000000000 ,1620000000000 ,1620000000000 ,1616812458620 -1616812458645 ,112.570495,26.87841225,58.89410019,224.2069097,227.7516008,10.065837,0.096198786,1620000000000 ,1620000000000 ,1620000000000 ,1616812458630 -1616812458655 ,112.5704943,26.8784116,58.89353561,224.1843428,227.7370438,10.073439,0.096265331,1620000000000 ,1620000000000 ,1620000000000 ,1616812458640 -1616812458669 ,112.5704936,26.87841095,58.89294815,224.1609972,227.7272087,10.0790615,0.096319144,1620000000000 ,1620000000000 ,1620000000000 ,1616812458650 -1616812458676 ,112.5704929,26.8784103,58.89237976,224.1347556,227.7318158,10.083717,0.096369554,1620000000000 ,1620000000000 ,1620000000000 ,1616812458660 -1616812458687 ,112.5704922,26.87840965,58.89182281,224.1102352,227.7212206,10.086278,0.09639962,1620000000000 ,1620000000000 ,1620000000000 ,1616812458670 -1616812458696 ,112.5704915,26.87840901,58.89129639,224.0849362,227.7047595,10.089839,0.096424532,1620000000000 ,1620000000000 ,1620000000000 ,1616812458680 -1616812458706 ,112.5704908,26.87840836,58.89083481,224.0587766,227.6857065,10.094328,0.096464186,1620000000000 ,1620000000000 ,1620000000000 ,1616812458690 -1616812458716 ,112.57049,26.87840771,58.89039612,224.0322891,227.6641921,10.101847,0.096527545,1620000000000 ,1620000000000 ,1620000000000 ,1616812458700 -1616812458725 ,112.5704893,26.87840706,58.88993454,224.0037389,227.658095,10.110904,0.096608821,1620000000000 ,1620000000000 ,1620000000000 ,1616812458710 -1616812458737 ,112.5704886,26.8784064,58.88946533,223.9727026,227.6464219,10.115466,0.096661339,1620000000000 ,1620000000000 ,1620000000000 ,1616812458720 -1616812458747 ,112.5704879,26.87840575,58.88904953,223.940669,227.6109244,10.1194105,0.09669606,1620000000000 ,1620000000000 ,1620000000000 ,1616812458730 -1616812458757 ,112.5704872,26.8784051,58.88870621,223.9071601,227.5655755,10.123041,0.096723768,1620000000000 ,1620000000000 ,1620000000000 ,1616812458740 -1616812458769 ,112.5704865,26.87840445,58.88838196,223.8749489,227.5262646,10.128536,0.096764306,1620000000000 ,1620000000000 ,1620000000000 ,1616812458750 -1616812458778 ,112.5704858,26.87840379,58.88805008,223.8412761,227.495195,10.134375,0.096814261,1620000000000 ,1620000000000 ,1620000000000 ,1616812458760 -1616812458789 ,112.570485,26.87840314,58.88771439,223.8069475,227.4595636,10.139736,0.096858637,1620000000000 ,1620000000000 ,1620000000000 ,1616812458770 -1616812458797 ,112.5704843,26.87840248,58.8874054,223.7707202,227.4199573,10.145193,0.096903858,1620000000000 ,1620000000000 ,1620000000000 ,1616812458780 -1616812458807 ,112.5704836,26.87840183,58.88710022,223.7358862,227.3766633,10.151307,0.096953718,1620000000000 ,1620000000000 ,1620000000000 ,1616812458790 -1616812458818 ,112.5704829,26.87840117,58.88679504,223.700902,227.3320161,10.158258,0.097006144,1620000000000 ,1620000000000 ,1620000000000 ,1616812458800 -1616812458829 ,112.5704822,26.87840051,58.88646317,223.6648386,227.2848888,10.164296,0.097058627,1620000000000 ,1620000000000 ,1620000000000 ,1616812458810 -1616812458838 ,112.5704815,26.87839985,58.88610458,223.6286796,227.2401351,10.169211,0.097098631,1620000000000 ,1620000000000 ,1620000000000 ,1616812458820 -1616812458848 ,112.5704808,26.87839919,58.88576126,223.5919195,227.1957722,10.174848,0.097142654,1620000000000 ,1620000000000 ,1620000000000 ,1616812458830 -1616812458858 ,112.5704801,26.87839853,58.88547134,223.5525366,227.1525526,10.178514,0.097176234,1620000000000 ,1620000000000 ,1620000000000 ,1616812458840 -1616812458868 ,112.5704793,26.87839787,58.88521576,223.5133587,227.1105752,10.185045,0.097223331,1620000000000 ,1620000000000 ,1620000000000 ,1616812458850 -1616812458877 ,112.5704786,26.87839721,58.88494873,223.4754648,227.075301,10.190327,0.097268865,1620000000000 ,1620000000000 ,1620000000000 ,1616812458860 -1616812458888 ,112.5704779,26.87839654,58.88466644,223.4363688,227.0432253,10.195884,0.097316216,1620000000000 ,1620000000000 ,1620000000000 ,1616812458870 -1616812458899 ,112.5704772,26.87839588,58.88438797,223.3964941,226.9910965,10.200732,0.097353659,1620000000000 ,1620000000000 ,1620000000000 ,1616812458880 -1616812458908 ,112.5704765,26.87839521,58.88411331,223.3563463,226.9561876,10.207822,0.097411262,1620000000000 ,1620000000000 ,1620000000000 ,1616812458890 -1616812458920 ,112.5704758,26.87839455,58.88377762,223.3170181,226.9206043,10.214494,0.097461645,1620000000000 ,1620000000000 ,1620000000000 ,1616812458900 -1616812458929 ,112.5704751,26.87839388,58.88335037,223.2745753,226.8838937,10.221251,0.097520411,1620000000000 ,1620000000000 ,1620000000000 ,1616812458910 -1616812458938 ,112.5704744,26.87839321,58.88291931,223.2298648,226.8574055,10.226061,0.097566447,1620000000000 ,1620000000000 ,1620000000000 ,1616812458920 -1616812458948 ,112.5704737,26.87839255,58.8825531,223.1862336,226.8256606,10.231106,0.097605241,1620000000000 ,1620000000000 ,1620000000000 ,1616812458930 -1616812458958 ,112.5704729,26.87839188,58.88223648,223.1415232,226.7902522,10.23619,0.097649454,1620000000000 ,1620000000000 ,1620000000000 ,1616812458940 -1616812458969 ,112.5704722,26.87839121,58.88195419,223.0958565,226.7591594,10.239642,0.09768364,1620000000000 ,1620000000000 ,1620000000000 ,1616812458950 -1616812458980 ,112.5704715,26.87839054,58.88170242,223.0499303,226.7172604,10.244964,0.097722571,1620000000000 ,1620000000000 ,1620000000000 ,1616812458960 -1616812458993 ,112.5704708,26.87838987,58.8814621,223.0033758,226.6719012,10.251643,0.097774086,1620000000000 ,1620000000000 ,1620000000000 ,1616812458970 -1616812458999 ,112.5704701,26.8783892,58.88124466,222.9574496,226.6325995,10.257859,0.097827569,1620000000000 ,1620000000000 ,1620000000000 ,1616812458980 -1616812459010 ,112.5704694,26.87838852,58.88105392,222.910813,226.5843881,10.262605,0.097870608,1620000000000 ,1620000000000 ,1620000000000 ,1616812458990 -1616812459021 ,112.5704687,26.87838785,58.88092804,222.8638623,226.5430416,10.266945,0.097906194,1620000000000 ,1620000000000 ,1620000000000 ,1616812459000 -1616812459030 ,112.570468,26.87838718,58.88085175,222.8170755,226.4931918,10.271421,0.09793977,1620000000000 ,1620000000000 ,1620000000000 ,1616812459010 -1616812459041 ,112.5704673,26.8783865,58.88078308,222.7699199,226.4381001,10.276539,0.097976825,1620000000000 ,1620000000000 ,1620000000000 ,1616812459020 -1616812459052 ,112.5704665,26.87838582,58.88068771,222.7234336,226.3850641,10.282409,0.098023457,1620000000000 ,1620000000000 ,1620000000000 ,1616812459030 -1616812459061 ,112.5704658,26.87838515,58.88057327,222.6775211,226.3260631,10.287571,0.098059717,1620000000000 ,1620000000000 ,1620000000000 ,1616812459040 -1616812459076 ,112.5704651,26.87838447,58.88047409,222.6291224,226.2655548,10.292393,0.098096083,1620000000000 ,1620000000000 ,1620000000000 ,1616812459050 -1616812459081 ,112.5704644,26.87838379,58.88041306,222.5819941,226.207543,10.297006,0.098130172,1620000000000 ,1620000000000 ,1620000000000 ,1616812459060 -1616812459090 ,112.5704637,26.87838311,58.88039017,222.535098,226.153791,10.302561,0.098174976,1620000000000 ,1620000000000 ,1620000000000 ,1616812459070 -1616812459100 ,112.570463,26.87838243,58.88038254,222.4904559,226.0927084,10.3094225,0.098225347,1620000000000 ,1620000000000 ,1620000000000 ,1616812459080 -1616812459110 ,112.5704623,26.87838175,58.88036728,222.4453356,226.044865,10.314894,0.098270498,1620000000000 ,1620000000000 ,1620000000000 ,1616812459090 -1616812459121 ,112.5704616,26.87838106,58.88033676,222.3972784,225.9901833,10.318856,0.098301529,1620000000000 ,1620000000000 ,1620000000000 ,1616812459100 -1616812459132 ,112.5704609,26.87838038,58.88031387,222.3503004,225.9376161,10.322535,0.098331432,1620000000000 ,1620000000000 ,1620000000000 ,1616812459110 -1616812459141 ,112.5704602,26.87837969,58.88030624,222.3042649,225.8938076,10.326935,0.098360766,1620000000000 ,1620000000000 ,1620000000000 ,1616812459120 -1616812459154 ,112.5704595,26.87837901,58.88028717,222.2578196,225.8472473,10.333101,0.098407823,1620000000000 ,1620000000000 ,1620000000000 ,1616812459130 -1616812459163 ,112.5704588,26.87837832,58.88026428,222.2108826,225.805593,10.339581,0.098459305,1620000000000 ,1620000000000 ,1620000000000 ,1616812459140 -1616812459174 ,112.5704581,26.87837764,58.88024521,222.1624429,225.7517687,10.343979,0.098497504,1620000000000 ,1620000000000 ,1620000000000 ,1616812459150 -1616812459181 ,112.5704573,26.87837695,58.88022614,222.1154102,225.7041025,10.349362,0.098539898,1620000000000 ,1620000000000 ,1620000000000 ,1616812459160 -1616812459192 ,112.5704566,26.87837626,58.88019943,222.0698528,225.6603691,10.354794,0.098583665,1620000000000 ,1620000000000 ,1620000000000 ,1616812459170 -1616812459204 ,112.5704559,26.87837557,58.88015366,222.0220552,225.6159416,10.359483,0.098619203,1620000000000 ,1620000000000 ,1620000000000 ,1616812459180 -1616812459212 ,112.5704552,26.87837488,58.88012695,221.9733832,225.5661911,10.363424,0.098649955,1620000000000 ,1620000000000 ,1620000000000 ,1616812459190 -1616812459222 ,112.5704545,26.87837418,58.87997818,221.9236185,225.8033949,10.405991,0.099453565,1620000000000 ,1620000000000 ,1620000000000 ,1616812459200 -1616812459232 ,112.5704538,26.87837349,58.87961197,221.8766951,226.1748218,10.410001,0.100631052,1620000000000 ,1620000000000 ,1620000000000 ,1616812459210 -1616812459244 ,112.5704531,26.87837279,58.87922668,221.8286789,226.1198818,10.415301,0.100664753,1620000000000 ,1620000000000 ,1620000000000 ,1616812459220 -1616812459253 ,112.5704523,26.87837209,58.87883377,221.7806216,226.0760325,10.420278,0.100707029,1620000000000 ,1620000000000 ,1620000000000 ,1616812459230 -1616812459262 ,112.5704516,26.87837139,58.87841415,221.7325234,226.026653,10.427674,0.100759734,1620000000000 ,1620000000000 ,1620000000000 ,1616812459240 -1616812459272 ,112.5704509,26.87837069,58.87796783,221.6831275,225.9761753,10.433508,0.100810323,1620000000000 ,1620000000000 ,1620000000000 ,1616812459250 -1616812459282 ,112.5704502,26.87836999,58.87750626,221.6335677,225.9169113,10.43918,0.100849241,1620000000000 ,1620000000000 ,1620000000000 ,1616812459260 -1616812459293 ,112.5704494,26.87836929,58.87703705,221.5856607,225.8626294,10.443905,0.100886789,1620000000000 ,1620000000000 ,1620000000000 ,1616812459270 -1616812459304 ,112.5704487,26.87836858,58.8765564,221.5358277,225.8123976,10.448838,0.100925283,1620000000000 ,1620000000000 ,1620000000000 ,1616812459280 -1616812459313 ,112.570448,26.87836788,58.87605667,221.4873606,225.7653687,10.453829,0.100957429,1620000000000 ,1620000000000 ,1620000000000 ,1616812459300 -1616812459323 ,112.5704473,26.87836717,58.87553024,221.4378827,225.7199114,10.458443,0.100996383,1620000000000 ,1620000000000 ,1620000000000 ,1616812459310 -1616812459333 ,112.5704458,26.87836576,58.87444687,221.3430934,225.6463345,10.469348,0.202117933,1620000000000 ,1620000000000 ,1620000000000 ,1616812459320 -1616812459343 ,112.5704451,26.87836505,58.87387085,221.2946947,225.5795744,10.47516,0.101120342,1620000000000 ,1620000000000 ,1620000000000 ,1616812459330 -1616812459354 ,112.5704444,26.87836434,58.87329865,221.2452168,225.5405804,10.480067,0.101165766,1620000000000 ,1620000000000 ,1620000000000 ,1616812459340 -1616812459364 ,112.5704437,26.87836364,58.87272644,221.1956706,225.4999533,10.48452,0.101200976,1620000000000 ,1620000000000 ,1620000000000 ,1616812459350 -1616812459374 ,112.5704429,26.87836293,58.87212372,221.1469713,225.4625147,10.490105,0.101247138,1620000000000 ,1620000000000 ,1620000000000 ,1616812459360 -1616812459385 ,112.5704422,26.87836221,58.87147903,221.0985726,225.4188033,10.4934845,0.101273155,1620000000000 ,1620000000000 ,1620000000000 ,1616812459370 -1616812459397 ,112.5704415,26.8783615,58.87079239,221.0475648,225.3671473,10.498523,0.101303584,1620000000000 ,1620000000000 ,1620000000000 ,1616812459380 -1616812459410 ,112.5704408,26.87836079,58.87008667,220.9973492,225.3196095,10.502127,0.101331474,1620000000000 ,1620000000000 ,1620000000000 ,1616812459390 -1616812459417 ,112.5704401,26.87836008,58.86933899,220.9471746,225.2705777,10.505997,0.101357185,1620000000000 ,1620000000000 ,1620000000000 ,1616812459400 -1616812459426 ,112.5704393,26.87835936,58.86857986,220.8963034,225.2297839,10.50972,0.101387443,1620000000000 ,1620000000000 ,1620000000000 ,1616812459410 -1616812459434 ,112.5704386,26.87835865,58.86785507,220.8459786,225.1809932,10.513879,0.101414977,1620000000000 ,1620000000000 ,1620000000000 ,1616812459420 -1616812459444 ,112.5704379,26.87835793,58.86717224,220.7951346,225.1300536,10.519299,0.101456284,1620000000000 ,1620000000000 ,1620000000000 ,1616812459430 -1616812459458 ,112.5704372,26.87835722,58.86649323,220.745165,225.0733944,10.522335,0.101480101,1620000000000 ,1620000000000 ,1620000000000 ,1616812459440 -1616812459465 ,112.5704365,26.8783565,58.86593246,220.6945669,224.7428491,10.525661,0.100744851,1620000000000 ,1620000000000 ,1620000000000 ,1616812459450 -1616812459476 ,112.5704358,26.87835579,58.86549759,220.6458813,224.4118848,10.528219,0.100016133,1620000000000 ,1620000000000 ,1620000000000 ,1616812459460 -1616812459485 ,112.5704351,26.87835507,58.86503601,220.5968679,224.3562394,10.532085,0.100037217,1620000000000 ,1620000000000 ,1620000000000 ,1616812459470 -1616812459499 ,112.5704344,26.87835435,58.86453629,220.5472807,224.3054547,10.535919,0.100063957,1620000000000 ,1620000000000 ,1620000000000 ,1616812459480 -1616812459504 ,112.5704337,26.87835364,58.86400986,220.4976389,224.248275,10.53955,0.10008178,1620000000000 ,1620000000000 ,1620000000000 ,1616812459490 -1616812459517 ,112.570433,26.87835292,58.86348724,220.4461393,224.1912964,10.5414915,0.100097419,1620000000000 ,1620000000000 ,1620000000000 ,1616812459500 -1616812459524 ,112.5704323,26.8783522,58.86294937,220.3964155,224.1325472,10.545604,0.100119248,1620000000000 ,1620000000000 ,1620000000000 ,1616812459510 -1616812459535 ,112.5704316,26.87835148,58.86235428,220.3461453,224.0790963,10.549528,0.100141429,1620000000000 ,1620000000000 ,1620000000000 ,1616812459520 -1616812459550 ,112.5704309,26.87835076,58.86167526,220.2960117,224.0280728,10.554877,0.100177245,1620000000000 ,1620000000000 ,1620000000000 ,1616812459530 -1616812459558 ,112.5704302,26.87835004,58.86091995,220.245359,223.9733591,10.558957,0.100205309,1620000000000 ,1620000000000 ,1620000000000 ,1616812459540 -1616812459565 ,112.5704295,26.87834932,58.86011505,220.1969467,223.9191658,10.56337,0.100234659,1620000000000 ,1620000000000 ,1620000000000 ,1616812459550 -1616812459576 ,112.5704288,26.8783486,58.859272,220.1463213,223.8669079,10.566743,0.100255598,1620000000000 ,1620000000000 ,1620000000000 ,1616812459560 -1616812459586 ,112.5704281,26.87834787,58.85839081,220.0954774,223.8238689,10.569523,0.1002742,1620000000000 ,1620000000000 ,1620000000000 ,1616812459570 -1616812459595 ,112.5704274,26.87834715,58.85745239,220.0447427,223.7766147,10.573602,0.100296011,1620000000000 ,1620000000000 ,1620000000000 ,1616812459580 -1616812459606 ,112.5704267,26.87834642,58.85646057,219.9935709,223.7260138,10.576823,0.100317632,1620000000000 ,1620000000000 ,1620000000000 ,1616812459590 -1616812459615 ,112.570426,26.8783457,58.85540771,219.9437925,223.6766367,10.581609,0.100343573,1620000000000 ,1620000000000 ,1620000000000 ,1616812459600 -1616812459627 ,112.5704253,26.87834497,58.85429764,219.8914733,223.6241651,10.586196,0.100377443,1620000000000 ,1620000000000 ,1620000000000 ,1616812459610 -1616812459636 ,112.5704246,26.87834424,58.85315704,219.8405201,223.5704704,10.588213,0.100386758,1620000000000 ,1620000000000 ,1620000000000 ,1616812459620 -1616812459647 ,112.570424,26.87834352,58.85206223,219.7894849,223.522108,10.591129,0.100402911,1620000000000 ,1620000000000 ,1620000000000 ,1616812459630 -1616812459656 ,112.5704233,26.87834279,58.85103226,219.7390781,223.464282,10.593645,0.100422306,1620000000000 ,1620000000000 ,1620000000000 ,1616812459640 -1616812459666 ,112.5704226,26.87834206,58.85002899,219.6877151,223.4067354,10.597151,0.100436593,1620000000000 ,1620000000000 ,1620000000000 ,1616812459650 -1616812459676 ,112.5704219,26.87834133,58.8490448,219.6376361,223.3538087,10.600773,0.100464038,1620000000000 ,1620000000000 ,1620000000000 ,1616812459660 -1616812459686 ,112.5704212,26.8783406,58.84805298,219.5852349,223.2986069,10.604034,0.100483786,1620000000000 ,1620000000000 ,1620000000000 ,1616812459670 -1616812459696 ,112.5704205,26.87833986,58.84711456,219.5346915,223.2439915,10.608057,0.100510753,1620000000000 ,1620000000000 ,1620000000000 ,1616812459680 -1616812459711 ,112.5704198,26.87833913,58.84622955,219.4825362,223.1840798,10.6108465,0.100527833,1620000000000 ,1620000000000 ,1620000000000 ,1616812459690 -1616812459718 ,112.5704191,26.8783384,58.84539413,219.4325119,223.1256311,10.612471,0.100535234,1620000000000 ,1620000000000 ,1620000000000 ,1616812459700 -1616812459733 ,112.5704184,26.87833766,58.8446312,219.3822417,223.0697538,10.613752,0.100540213,1620000000000 ,1620000000000 ,1620000000000 ,1616812459710 -1616812459737 ,112.5704178,26.87833693,58.84395981,219.3313978,223.0086709,10.616024,0.100550066,1620000000000 ,1620000000000 ,1620000000000 ,1616812459720 -1616812459747 ,112.5704171,26.87833619,58.8433876,219.2803353,222.9587679,10.618103,0.100560956,1620000000000 ,1620000000000 ,1620000000000 ,1616812459730 -1616812459758 ,112.5704164,26.87833545,58.84288406,219.2294094,222.9072596,10.621018,0.100581989,1620000000000 ,1620000000000 ,1620000000000 ,1616812459740 -1616812459770 ,112.5704157,26.87833472,58.84244919,219.1795217,222.8588342,10.623854,0.100603369,1620000000000 ,1620000000000 ,1620000000000 ,1616812459750 -1616812459776 ,112.570415,26.87833398,58.84209061,219.1278581,222.8036535,10.627865,0.100628964,1620000000000 ,1620000000000 ,1620000000000 ,1616812459760 -1616812459789 ,112.5704143,26.87833324,58.84181213,219.076741,222.74896,10.629376,0.100640528,1620000000000 ,1620000000000 ,1620000000000 ,1616812459770 -1616812459803 ,112.5704137,26.8783325,58.84159851,219.0245583,222.7027052,10.630357,0.10064714,1620000000000 ,1620000000000 ,1620000000000 ,1616812459780 -1616812459811 ,112.570413,26.87833176,58.841465,218.9745067,222.658411,10.631476,0.100653549,1620000000000 ,1620000000000 ,1620000000000 ,1616812459790 -1616812459828 ,112.5704123,26.87833102,58.84141922,218.9219416,222.6094175,10.633374,0.100661489,1620000000000 ,1620000000000 ,1620000000000 ,1616812459800 -1616812459834 ,112.5704116,26.87833028,58.84146118,218.8710703,222.5550027,10.635949,0.100678456,1620000000000 ,1620000000000 ,1620000000000 ,1616812459810 -1616812459846 ,112.5704109,26.87832953,58.84155273,218.8186145,222.4983242,10.638805,0.100699155,1620000000000 ,1620000000000 ,1620000000000 ,1616812459820 -1616812459850 ,112.5704103,26.87832879,58.84170151,218.7673061,222.4456148,10.641075,0.100714932,1620000000000 ,1620000000000 ,1620000000000 ,1616812459830 -1616812459858 ,112.5704096,26.87832805,58.84191513,218.7155606,222.386596,10.642489,0.100721709,1620000000000 ,1620000000000 ,1620000000000 ,1616812459840 -1616812459885 ,112.5704089,26.8783273,58.84223175,218.6641156,222.3362484,10.642797,0.100722665,1620000000000 ,1620000000000 ,1620000000000 ,1616812459850 -1616812459888 ,112.5704082,26.87832656,58.84264374,218.6124247,222.290749,10.644652,0.100736521,1620000000000 ,1620000000000 ,1620000000000 ,1616812459860 -1616812459893 ,112.5704075,26.87832581,58.84312057,218.5615262,222.2322082,10.645615,0.100741322,1620000000000 ,1620000000000 ,1620000000000 ,1616812459870 -1616812459900 ,112.5704069,26.87832506,58.8436203,218.5100539,222.1710729,10.64652,0.100740754,1620000000000 ,1620000000000 ,1620000000000 ,1616812459880 -1616812459909 ,112.5704062,26.87832432,58.84410477,218.4578166,222.1136014,10.648032,0.100742459,1620000000000 ,1620000000000 ,1620000000000 ,1616812459890 -1616812459919 ,112.5704055,26.87832357,58.84456253,218.4059618,222.0597976,10.650651,0.100758609,1620000000000 ,1620000000000 ,1620000000000 ,1616812459900 -1616812459928 ,112.5704048,26.87832282,58.84497452,218.3549812,222.0031964,10.6533,0.100771575,1620000000000 ,1620000000000 ,1620000000000 ,1616812459910 -1616812459939 ,112.5704042,26.87832207,58.84533691,218.3050935,221.9391959,10.655372,0.100779429,1620000000000 ,1620000000000 ,1620000000000 ,1616812459920 -1616812459950 ,112.5704035,26.87832132,58.84565353,218.256244,221.8809608,10.656505,0.100783566,1620000000000 ,1620000000000 ,1620000000000 ,1616812459930 -1616812459959 ,112.5704028,26.87832057,58.8459053,218.2068208,221.8248821,10.658842,0.100789037,1620000000000 ,1620000000000 ,1620000000000 ,1616812459940 -1616812459972 ,112.5704021,26.87831982,58.84606552,218.1580259,221.7698818,10.661563,0.100802929,1620000000000 ,1620000000000 ,1620000000000 ,1616812459950 -1616812459989 ,112.5704015,26.87831906,58.84610748,218.1052968,221.7232076,10.66567,0.10082553,1620000000000 ,1620000000000 ,1620000000000 ,1616812459960 -1616812459998 ,112.5704008,26.87831831,58.846035,218.0546715,221.6740157,10.668442,0.100842622,1620000000000 ,1620000000000 ,1620000000000 ,1616812459970 -1616812460001 ,112.5704001,26.87831756,58.84584808,218.0036363,221.6211626,10.671524,0.100855896,1620000000000 ,1620000000000 ,1620000000000 ,1616812459980 -1616812460012 ,112.5703995,26.8783168,58.84554672,217.9529563,221.5675604,10.674339,0.100870632,1620000000000 ,1620000000000 ,1620000000000 ,1616812459990 -1616812460021 ,112.5703988,26.87831605,58.84508514,217.9010195,221.5179909,10.677317,0.100880673,1620000000000 ,1620000000000 ,1620000000000 ,1616812460000 -1616812460030 ,112.5703981,26.87831529,58.84446716,217.8492467,221.4751455,10.68069,0.100898078,1620000000000 ,1620000000000 ,1620000000000 ,1616812460010 -1616812460043 ,112.5703975,26.87831454,58.84371567,217.7973646,221.4272766,10.68346,0.100908332,1620000000000 ,1620000000000 ,1620000000000 ,1616812460020 -1616812460051 ,112.5703968,26.87831378,58.84284973,217.7455644,221.3794822,10.687529,0.100931141,1620000000000 ,1620000000000 ,1620000000000 ,1616812460030 -1616812460060 ,112.5703961,26.87831302,58.84186935,217.6934638,221.32998,10.691426,0.100952021,1620000000000 ,1620000000000 ,1620000000000 ,1616812460040 -1616812460071 ,112.5703955,26.87831226,58.84079361,217.6407347,221.2794211,10.694258,0.100965322,1620000000000 ,1620000000000 ,1620000000000 ,1616812460050 -1616812460081 ,112.5703948,26.8783115,58.83965302,217.5860932,221.2296452,10.696789,0.100980391,1620000000000 ,1620000000000 ,1620000000000 ,1616812460060 -1616812460090 ,112.5703941,26.87831074,58.83847809,217.5335554,221.1823767,10.700098,0.100997874,1620000000000 ,1620000000000 ,1620000000000 ,1616812460070 -1616812460100 ,112.5703935,26.87830998,58.83726883,217.4800613,221.1336011,10.702787,0.101012247,1620000000000 ,1620000000000 ,1620000000000 ,1616812460080 -1616812460110 ,112.5703928,26.87830922,58.8360405,217.4289169,221.0740502,10.70526,0.101024268,1620000000000 ,1620000000000 ,1620000000000 ,1616812460090 -1616812460121 ,112.5703921,26.87830846,58.83480835,217.375696,221.0236697,10.706732,0.101027714,1620000000000 ,1620000000000 ,1620000000000 ,1616812460100 -1616812460131 ,112.5703915,26.87830769,58.83356476,217.3237046,220.9707321,10.708839,0.101034308,1620000000000 ,1620000000000 ,1620000000000 ,1616812460110 -1616812460141 ,112.5703908,26.87830693,58.83229446,217.2716859,220.9128812,10.711234,0.101044181,1620000000000 ,1620000000000 ,1620000000000 ,1616812460120 -1616812460151 ,112.5703902,26.87830617,58.83102798,217.2216616,220.8588399,10.715092,0.101066134,1620000000000 ,1620000000000 ,1620000000000 ,1616812460130 -1616812460162 ,112.5703895,26.8783054,58.82979584,217.1696975,220.7945278,10.717987,0.101082965,1620000000000 ,1620000000000 ,1620000000000 ,1616812460140 -1616812460173 ,112.5703888,26.87830463,58.82862473,217.1183345,220.7306457,10.719371,0.101087853,1620000000000 ,1620000000000 ,1620000000000 ,1616812460150 -1616812460182 ,112.5703882,26.87830387,58.82754898,217.0668895,220.6716502,10.719833,0.101088178,1620000000000 ,1620000000000 ,1620000000000 ,1616812460160 -1616812460192 ,112.5703875,26.8783031,58.82655716,217.0173024,220.6107358,10.720328,0.101081565,1620000000000 ,1620000000000 ,1620000000000 ,1616812460170 -1616812460203 ,112.5703869,26.87830233,58.82565308,216.9699555,220.554343,10.721904,0.101087182,1620000000000 ,1620000000000 ,1620000000000 ,1616812460180 -1616812460212 ,112.5703862,26.87830156,58.82481766,216.9209967,220.4954136,10.724385,0.101098736,1620000000000 ,1620000000000 ,1620000000000 ,1616812460190 -1616812460223 ,112.5703855,26.87830079,58.8240509,216.8731854,220.4329517,10.727233,0.101112834,1620000000000 ,1620000000000 ,1620000000000 ,1616812460200 -1616812460232 ,112.5703849,26.87830002,58.82400513,216.8361931,221.0024567,10.768329,0.103032141,1620000000000 ,1620000000000 ,1620000000000 ,1616812460210 -1616812460243 ,112.5703842,26.87829924,58.8241539,216.7902669,220.9922877,10.770738,0.103242809,1620000000000 ,1620000000000 ,1620000000000 ,1616812460220 -1616812460253 ,112.5703835,26.87829846,58.82440567,216.7438762,220.9453285,10.772316,0.103256125,1620000000000 ,1620000000000 ,1620000000000 ,1616812460230 -1616812460262 ,112.5703828,26.87829768,58.82475281,216.6985238,220.8905129,10.774385,0.103264096,1620000000000 ,1620000000000 ,1620000000000 ,1616812460240 -1616812460286 ,112.5703822,26.8782969,58.82522964,216.653062,220.8396543,10.775994,0.103274695,1620000000000 ,1620000000000 ,1620000000000 ,1616812460250 -1616812460289 ,112.5703815,26.87829611,58.82581711,216.6099499,220.7861463,10.777343,0.103277965,1620000000000 ,1620000000000 ,1620000000000 ,1616812460260 -1616812460295 ,112.5703808,26.87829533,58.82648087,216.5668104,220.7341348,10.778739,0.103285875,1620000000000 ,1620000000000 ,1620000000000 ,1616812460270 -1616812460304 ,112.5703801,26.87829455,58.82722855,216.5221683,220.6833947,10.781345,0.103302083,1620000000000 ,1620000000000 ,1620000000000 ,1616812460280 -1616812460314 ,112.5703795,26.87829376,58.82807541,216.4794386,220.6349934,10.78345,0.103317493,1620000000000 ,1620000000000 ,1620000000000 ,1616812460290 -1616812460322 ,112.5703788,26.87829298,58.82898331,216.4384028,220.5773578,10.786224,0.103329512,1620000000000 ,1620000000000 ,1620000000000 ,1616812460310 -1616812460333 ,112.5703775,26.87829141,58.83084869,216.3552931,220.5014442,10.789783,0.206694003,1620000000000 ,1620000000000 ,1620000000000 ,1616812460320 -1616812460343 ,112.5703775,26.87829141,58.83084869,216.3552931,-400,10.789783,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812460330 -1616812460353 ,112.5703761,26.87828983,58.83268738,216.2760629,220.4033777,10.793878,0.206732785,1620000000000 ,1620000000000 ,1620000000000 ,1616812460340 -1616812460367 ,112.5703754,26.87828904,58.8335762,216.2392892,220.3289666,10.796319,0.103380342,1620000000000 ,1620000000000 ,1620000000000 ,1616812460350 -1616812460375 ,112.5703748,26.87828826,58.83447647,216.201204,220.2818005,10.797609,0.103385159,1620000000000 ,1620000000000 ,1620000000000 ,1616812460360 -1616812460386 ,112.5703741,26.87828747,58.83540344,216.1636107,220.2406694,10.800303,0.103401567,1620000000000 ,1620000000000 ,1620000000000 ,1616812460370 -1616812460395 ,112.5703734,26.87828668,58.83633804,216.1273014,220.1979793,10.802718,0.10341743,1620000000000 ,1620000000000 ,1620000000000 ,1616812460380 -1616812460404 ,112.5703734,26.87828668,58.83633804,216.1273014,-400,10.802718,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812460390 -1616812460415 ,112.5703728,26.87828589,58.83722687,216.0915385,220.1533569,10.805437,0.103432462,1620000000000 ,1620000000000 ,1620000000000 ,1616812460400 -1616812460426 ,112.5703714,26.8782843,58.8388176,216.0220345,220.0887869,10.810134,0.206903942,1620000000000 ,1620000000000 ,1620000000000 ,1616812460410 -1616812460434 ,112.5703708,26.87828351,58.8395195,215.987747,220.0284324,10.81259,0.103468161,1620000000000 ,1620000000000 ,1620000000000 ,1616812460420 -1616812460446 ,112.5703701,26.87828272,58.84017563,215.9540058,220.0002631,10.814208,0.103480037,1620000000000 ,1620000000000 ,1620000000000 ,1616812460430 -1616812460455 ,112.5703694,26.87828193,58.84080124,215.9220952,219.9643684,10.816093,0.103486885,1620000000000 ,1620000000000 ,1620000000000 ,1616812460440 -1616812460466 ,112.5703688,26.87828113,58.84140396,215.8883814,219.9291736,10.81834,0.10349752,1620000000000 ,1620000000000 ,1620000000000 ,1616812460450 -1616812460474 ,112.5703681,26.87828034,58.84143829,215.8564161,219.2947284,10.821684,0.101830916,1620000000000 ,1620000000000 ,1620000000000 ,1616812460460 -1616812460485 ,112.5703675,26.87827955,58.84140015,215.824642,219.2574589,10.824597,0.101851442,1620000000000 ,1620000000000 ,1620000000000 ,1616812460470 -1616812460495 ,112.5703669,26.87827877,58.84130096,215.7930866,219.2308923,10.8278,0.101872748,1620000000000 ,1620000000000 ,1620000000000 ,1616812460480 -1616812460504 ,112.5703662,26.87827798,58.84118652,215.7613945,219.2035146,10.82862,0.101883102,1620000000000 ,1620000000000 ,1620000000000 ,1616812460490 -1616812460516 ,112.5703656,26.87827719,58.84104919,215.7316695,219.1670966,10.830386,0.101889313,1620000000000 ,1620000000000 ,1620000000000 ,1616812460500 -1616812460528 ,112.5703649,26.8782764,58.84087372,215.7029281,219.1366774,10.83218,0.101900172,1620000000000 ,1620000000000 ,1620000000000 ,1616812460510 -1616812460536 ,112.5703643,26.8782756,58.84061432,215.6743506,219.1020667,10.835802,0.101919142,1620000000000 ,1620000000000 ,1620000000000 ,1616812460520 -1616812460545 ,112.5703636,26.87827481,58.84029007,215.6461829,219.0784862,10.837622,0.101933704,1620000000000 ,1620000000000 ,1620000000000 ,1616812460530 -1616812460557 ,112.570363,26.87827402,58.83992767,215.6188075,219.0453869,10.840133,0.101949691,1620000000000 ,1620000000000 ,1620000000000 ,1616812460540 -1616812460567 ,112.5703624,26.87827323,58.83952713,215.592962,219.0042877,10.842699,0.101963906,1620000000000 ,1620000000000 ,1620000000000 ,1616812460550 -1616812460575 ,112.5703617,26.87827244,58.83909607,215.5643845,218.9775585,10.844546,0.101974735,1620000000000 ,1620000000000 ,1620000000000 ,1616812460560 -1616812460587 ,112.5703611,26.87827164,58.83866119,215.5383478,218.9482617,10.846574,0.1019895,1620000000000 ,1620000000000 ,1620000000000 ,1616812460570 -1616812460596 ,112.5703604,26.87827085,58.83823776,215.5106719,218.9143403,10.846756,0.101990635,1620000000000 ,1620000000000 ,1620000000000 ,1616812460580 -1616812460607 ,112.5703598,26.87827006,58.83786011,215.48581,218.8820233,10.848057,0.101993326,1620000000000 ,1620000000000 ,1620000000000 ,1616812460590 -1616812460617 ,112.5703591,26.87826926,58.8375206,215.4611394,218.847352,10.848202,0.10199492,1620000000000 ,1620000000000 ,1620000000000 ,1616812460600 -1616812460629 ,112.5703585,26.87826847,58.83719635,215.4363594,218.8167423,10.8497715,0.102001581,1620000000000 ,1620000000000 ,1620000000000 ,1616812460610 -1616812460639 ,112.5703579,26.87826767,58.83688736,215.4132461,218.7866443,10.850774,0.102006644,1620000000000 ,1620000000000 ,1620000000000 ,1616812460620 -1616812460651 ,112.5703572,26.87826688,58.83659744,215.388794,218.756502,10.851934,0.102010438,1620000000000 ,1620000000000 ,1620000000000 ,1616812460630 -1616812460658 ,112.5703566,26.87826608,58.83634186,215.3673472,218.7348942,10.853283,0.10202237,1620000000000 ,1620000000000 ,1620000000000 ,1616812460640 -1616812460666 ,112.570356,26.87826528,58.83609772,215.3451901,218.7127124,10.85531,0.102034931,1620000000000 ,1620000000000 ,1620000000000 ,1616812460650 -1616812460677 ,112.5703553,26.87826449,58.83586502,215.3217489,218.6864501,10.856466,0.102045123,1620000000000 ,1620000000000 ,1620000000000 ,1616812460660 -1616812460690 ,112.5703547,26.87826369,58.83566284,215.2989634,218.6548638,10.85674,0.102042587,1620000000000 ,1620000000000 ,1620000000000 ,1616812460670 -1616812460697 ,112.570354,26.87826289,58.835495,215.2788006,218.6332915,10.85745,0.102047719,1620000000000 ,1620000000000 ,1620000000000 ,1616812460680 -1616812460708 ,112.5703534,26.8782621,58.83532715,215.2579276,218.6106481,10.859499,0.10205784,1620000000000 ,1620000000000 ,1620000000000 ,1616812460690 -1616812460720 ,112.5703528,26.8782613,58.83512878,215.2383113,218.5926276,10.860715,0.10206663,1620000000000 ,1620000000000 ,1620000000000 ,1616812460700 -1616812460729 ,112.5703521,26.8782605,58.83490753,215.2204162,218.5661419,10.862758,0.102078116,1620000000000 ,1620000000000 ,1620000000000 ,1616812460710 -1616812460738 ,112.5703515,26.8782597,58.83464432,215.2017834,218.5328843,10.865575,0.102093936,1620000000000 ,1620000000000 ,1620000000000 ,1616812460720 -1616812460748 ,112.5703509,26.8782589,58.83431625,215.1859647,218.5126639,10.868827,0.102116359,1620000000000 ,1620000000000 ,1620000000000 ,1616812460730 -1616812460757 ,112.5703502,26.8782581,58.83392334,215.1695723,218.4898039,10.870508,0.102130093,1620000000000 ,1620000000000 ,1620000000000 ,1616812460740 -1616812460767 ,112.5703496,26.8782573,58.83349609,215.1560758,218.4701145,10.871178,0.102131802,1620000000000 ,1620000000000 ,1620000000000 ,1616812460750 -1616812460777 ,112.570349,26.8782565,58.83306885,215.1435629,218.4424261,10.872346,0.102135529,1620000000000 ,1620000000000 ,1620000000000 ,1616812460760 -1616812460789 ,112.5703483,26.8782557,58.83263779,215.1312686,218.4097699,10.871944,0.102127968,1620000000000 ,1620000000000 ,1620000000000 ,1616812460770 -1616812460798 ,112.5703477,26.8782549,58.83220291,215.1209686,218.3895697,10.873697,0.102136216,1620000000000 ,1620000000000 ,1620000000000 ,1616812460780 -1616812460807 ,112.5703471,26.8782541,58.83175278,215.1110785,218.3735952,10.875154,0.102146403,1620000000000 ,1620000000000 ,1620000000000 ,1616812460790 -1616812460818 ,112.5703464,26.8782533,58.83128357,215.1037839,218.3522284,10.877213,0.102156116,1620000000000 ,1620000000000 ,1620000000000 ,1616812460800 -1616812460830 ,112.5703458,26.8782525,58.83085632,215.0964892,218.332007,10.878254,0.10216745,1620000000000 ,1620000000000 ,1620000000000 ,1616812460810 -1616812460838 ,112.5703452,26.8782517,58.83049011,215.0896864,218.3015957,10.878629,0.102167193,1620000000000 ,1620000000000 ,1620000000000 ,1616812460820 -1616812460848 ,112.5703445,26.8782509,58.83017731,215.0851784,218.2792789,10.879981,0.102175575,1620000000000 ,1620000000000 ,1620000000000 ,1616812460830 -1616812460858 ,112.5703439,26.87825009,58.8298912,215.0834299,218.2663239,10.8800535,0.102177933,1620000000000 ,1620000000000 ,1620000000000 ,1616812460840 -1616812460869 ,112.5703433,26.87824929,58.82963181,215.0799329,218.2574757,10.880181,0.102176124,1620000000000 ,1620000000000 ,1620000000000 ,1616812460850 -1616812460879 ,112.5703426,26.87824849,58.82943726,215.07884,218.2450167,10.879072,0.102169942,1620000000000 ,1620000000000 ,1620000000000 ,1616812460860 -1616812460902 ,112.570342,26.87824769,58.82930756,215.0801241,218.2275607,10.879493,0.102166113,1620000000000 ,1620000000000 ,1620000000000 ,1616812460870 -1616812460916 ,112.5703414,26.87824688,58.82924271,215.0808071,218.2220331,10.880719,0.102179641,1620000000000 ,1620000000000 ,1620000000000 ,1616812460880 -1616812460919 ,112.5703407,26.87824608,58.829216,215.0837851,218.214726,10.881825,0.102188137,1620000000000 ,1620000000000 ,1620000000000 ,1616812460890 -1616812460933 ,112.5703401,26.87824528,58.82924652,215.087692,218.2116048,10.881992,0.102195787,1620000000000 ,1620000000000 ,1620000000000 ,1616812460900 -1616812460937 ,112.5703395,26.87824447,58.82936478,215.0923365,218.2082307,10.882108,0.10220085,1620000000000 ,1620000000000 ,1620000000000 ,1616812460910 -1616812460940 ,112.5703388,26.87824367,58.82955933,215.0984836,218.2082657,10.882606,0.102206144,1620000000000 ,1620000000000 ,1620000000000 ,1616812460920 -1616812460949 ,112.5703382,26.87824287,58.82979965,215.1038385,218.2056383,10.883765,0.102217841,1620000000000 ,1620000000000 ,1620000000000 ,1616812460930 -1616812460960 ,112.5703376,26.87824206,58.83005905,215.1101769,218.2104554,10.884213,0.102225147,1620000000000 ,1620000000000 ,1620000000000 ,1616812460940 -1616812460970 ,112.5703369,26.87824126,58.8303299,215.1161055,218.2215216,10.884761,0.102230582,1620000000000 ,1620000000000 ,1620000000000 ,1616812460950 -1616812460979 ,112.5703363,26.87824046,58.83059692,215.121597,218.2309711,10.885182,0.102240664,1620000000000 ,1620000000000 ,1620000000000 ,1616812460960 -1616812460994 ,112.5703357,26.87823966,58.83084106,215.1290009,218.2327146,10.886864,0.102251336,1620000000000 ,1620000000000 ,1620000000000 ,1616812460970 -1616812461000 ,112.570335,26.87823885,58.83106232,215.1358311,218.2423757,10.888404,0.102268142,1620000000000 ,1620000000000 ,1620000000000 ,1616812460980 -1616812461010 ,112.5703344,26.87823805,58.83127594,215.1440274,218.2557737,10.889464,0.10228198,1620000000000 ,1620000000000 ,1620000000000 ,1616812460990 -1616812461021 ,112.5703338,26.87823725,58.83148575,215.152087,218.2643843,10.889914,0.10229215,1620000000000 ,1620000000000 ,1620000000000 ,1616812461000 -1616812461030 ,112.5703331,26.87823644,58.83170319,215.1603378,218.2778783,10.890439,0.102299435,1620000000000 ,1620000000000 ,1620000000000 ,1616812461010 -1616812461045 ,112.5703325,26.87823564,58.83190536,215.1664304,218.2829588,10.8911085,0.102304677,1620000000000 ,1620000000000 ,1620000000000 ,1616812461020 -1616812461053 ,112.5703319,26.87823484,58.83207703,215.1736157,218.2899676,10.892012,0.102314939,1620000000000 ,1620000000000 ,1620000000000 ,1616812461030 -1616812461060 ,112.5703312,26.87823403,58.83223343,215.1803366,218.2998594,10.892223,0.102320246,1620000000000 ,1620000000000 ,1620000000000 ,1616812461040 -1616812461070 ,112.5703306,26.87823323,58.83240509,215.186156,218.3167715,10.892256,0.102327712,1620000000000 ,1620000000000 ,1620000000000 ,1616812461050 -1616812461081 ,112.57033,26.87823243,58.83255768,215.1933686,218.3301453,10.892429,0.102329469,1620000000000 ,1620000000000 ,1620000000000 ,1616812461060 -1616812461092 ,112.5703293,26.87823163,58.83265686,215.2008545,218.3465966,10.893621,0.102340289,1620000000000 ,1620000000000 ,1620000000000 ,1616812461070 -1616812461102 ,112.5703287,26.87823082,58.83268738,215.2084497,218.3508827,10.894227,0.102346052,1620000000000 ,1620000000000 ,1620000000000 ,1616812461080 -1616812461112 ,112.5703281,26.87823002,58.8326683,215.2126298,218.3661044,10.896047,0.102364056,1620000000000 ,1620000000000 ,1620000000000 ,1616812461090 -1616812461122 ,112.5703274,26.87822922,58.83262253,215.2203889,218.3825557,10.896492,0.102373663,1620000000000 ,1620000000000 ,1620000000000 ,1616812461100 -1616812461132 ,112.5703268,26.87822842,58.83257675,215.2273557,218.394789,10.895746,0.102371343,1620000000000 ,1620000000000 ,1620000000000 ,1616812461110 -1616812461145 ,112.5703261,26.87822761,58.83256531,215.2335028,218.40429,10.893966,0.102362216,1620000000000 ,1620000000000 ,1620000000000 ,1616812461120 -1616812461153 ,112.5703255,26.87822681,58.83259964,215.2400052,218.4080314,10.89326,0.102354434,1620000000000 ,1620000000000 ,1620000000000 ,1616812461130 -1616812461163 ,112.5703249,26.87822601,58.83262253,215.2453054,218.4098821,10.8948965,0.102362342,1620000000000 ,1620000000000 ,1620000000000 ,1616812461140 -1616812461175 ,112.5703242,26.87822521,58.83257294,215.2526547,218.4196941,10.896941,0.10238207,1620000000000 ,1620000000000 ,1620000000000 ,1616812461150 -1616812461182 ,112.5703236,26.8782244,58.83244705,215.2590477,218.4370148,10.898039,0.102396463,1620000000000 ,1620000000000 ,1620000000000 ,1616812461160 -1616812461194 ,112.570323,26.8782236,58.83228302,215.2633917,218.4422008,10.897567,0.102394387,1620000000000 ,1620000000000 ,1620000000000 ,1616812461170 -1616812461202 ,112.5703223,26.8782228,58.83211517,215.2692111,218.4426746,10.897583,0.102391887,1620000000000 ,1620000000000 ,1620000000000 ,1616812461180 -1616812461214 ,112.5703217,26.878222,58.83190536,215.278063,218.4420221,10.89779,0.102390764,1620000000000 ,1620000000000 ,1620000000000 ,1616812461190 -1616812461224 ,112.5703211,26.8782212,58.83161926,215.2860133,218.4525496,10.899355,0.102402653,1620000000000 ,1620000000000 ,1620000000000 ,1616812461200 -1616812461235 ,112.5703204,26.87822039,58.83107376,215.2877072,219.1300405,10.9398365,0.103940669,1620000000000 ,1620000000000 ,1620000000000 ,1616812461210 -1616812461258 ,112.5703197,26.87821958,58.83050537,215.2940729,219.1994092,10.9411335,0.104153926,1620000000000 ,1620000000000 ,1620000000000 ,1616812461220 -1616812461261 ,112.5703191,26.87821878,58.82992935,215.3007665,219.1988328,10.941799,0.10415884,1620000000000 ,1620000000000 ,1620000000000 ,1616812461230 -1616812461265 ,112.5703178,26.87821716,58.82864761,215.3174595,219.2062981,10.945905,0.208368979,1620000000000 ,1620000000000 ,1620000000000 ,1616812461250 -1616812461275 ,112.5703171,26.87821635,58.82792282,215.326448,219.2156315,10.947728,0.104207187,1620000000000 ,1620000000000 ,1620000000000 ,1616812461260 -1616812461284 ,112.5703164,26.87821555,58.82716751,215.3343164,219.2223115,10.950144,0.104227743,1620000000000 ,1620000000000 ,1620000000000 ,1616812461270 -1616812461294 ,112.5703158,26.87821474,58.82637024,215.3432503,219.2226129,10.953749,0.104255226,1620000000000 ,1620000000000 ,1620000000000 ,1616812461280 -1616812461310 ,112.5703151,26.87821393,58.82553482,215.3512826,219.2328915,10.958325,0.104295276,1620000000000 ,1620000000000 ,1620000000000 ,1616812461290 -1616812461316 ,112.5703145,26.87821312,58.82466507,215.359233,219.2419586,10.963096,0.104340244,1620000000000 ,1620000000000 ,1620000000000 ,1616812461300 -1616812461326 ,112.5703138,26.87821232,58.82378769,215.3675931,219.2497216,10.9669,0.104378712,1620000000000 ,1620000000000 ,1620000000000 ,1616812461310 -1616812461335 ,112.5703131,26.87821151,58.82291412,215.3762811,219.2513432,10.970444,0.104411654,1620000000000 ,1620000000000 ,1620000000000 ,1616812461320 -1616812461345 ,112.5703125,26.8782107,58.82205963,215.3830293,219.2520642,10.974223,0.104446491,1620000000000 ,1620000000000 ,1620000000000 ,1616812461330 -1616812461356 ,112.5703118,26.87820989,58.82124329,215.3917993,219.2615882,10.978211,0.104483171,1620000000000 ,1620000000000 ,1620000000000 ,1616812461340 -1616812461368 ,112.5703112,26.87820908,58.8204689,215.399695,219.268031,10.983122,0.104529272,1620000000000 ,1620000000000 ,1620000000000 ,1616812461350 -1616812461376 ,112.5703105,26.87820827,58.81974792,215.4065252,219.2762601,10.988473,0.104582421,1620000000000 ,1620000000000 ,1620000000000 ,1616812461360 -1616812461386 ,112.5703098,26.87820746,58.81909943,215.4139564,219.2871242,10.993039,0.104632559,1620000000000 ,1620000000000 ,1620000000000 ,1616812461370 -1616812461397 ,112.5703092,26.87820665,58.81850052,215.4211145,219.296268,10.997549,0.104675569,1620000000000 ,1620000000000 ,1620000000000 ,1616812461380 -1616812461408 ,112.5703085,26.87820584,58.81793976,215.4273436,219.2965159,11.000224,0.104710941,1620000000000 ,1620000000000 ,1620000000000 ,1616812461390 -1616812461416 ,112.5703079,26.87820503,58.81740952,215.4329717,219.3011456,11.002547,0.104730354,1620000000000 ,1620000000000 ,1620000000000 ,1616812461400 -1616812461428 ,112.5703072,26.87820422,58.81695175,215.4401297,219.3079844,11.005755,0.104763405,1620000000000 ,1620000000000 ,1620000000000 ,1616812461410 -1616812461436 ,112.5703065,26.87820341,58.8165741,215.4459217,219.3214462,11.009214,0.104800187,1620000000000 ,1620000000000 ,1620000000000 ,1616812461420 -1616812461446 ,112.5703059,26.8782026,58.81629181,215.4524787,219.3316329,11.012241,0.104836477,1620000000000 ,1620000000000 ,1620000000000 ,1616812461430 -1616812461455 ,112.5703052,26.87820179,58.81607437,215.456167,219.345012,11.015466,0.104868308,1620000000000 ,1620000000000 ,1620000000000 ,1616812461440 -1616812461466 ,112.5703045,26.87820097,58.81594849,215.459828,219.3511447,11.016917,0.104893593,1620000000000 ,1620000000000 ,1620000000000 ,1616812461450 -1616812461478 ,112.5703039,26.87820017,58.81611633,215.4646091,218.7687111,11.01833,0.103575441,1620000000000 ,1620000000000 ,1620000000000 ,1616812461460 -1616812461487 ,112.5703032,26.87819936,58.81639099,215.4672865,218.7777438,11.019883,0.103594527,1620000000000 ,1620000000000 ,1620000000000 ,1616812461470 -1616812461497 ,112.5703026,26.87819855,58.81672668,215.4693629,218.7885579,11.020987,0.10361014,1620000000000 ,1620000000000 ,1620000000000 ,1616812461480 -1616812461507 ,112.5703019,26.87819774,58.81711197,215.4711115,218.7998969,11.021606,0.103623256,1620000000000 ,1620000000000 ,1620000000000 ,1616812461490 -1616812461516 ,112.5703013,26.87819694,58.81755447,215.4732971,218.8000123,11.022693,0.103634,1620000000000 ,1620000000000 ,1620000000000 ,1616812461500 -1616812461526 ,112.5703006,26.87819613,58.81805038,215.4760838,218.7989869,11.023688,0.103644551,1620000000000 ,1620000000000 ,1620000000000 ,1616812461510 -1616812461537 ,112.5703,26.87819532,58.81856918,215.4795809,218.7994131,11.025574,0.103663267,1620000000000 ,1620000000000 ,1620000000000 ,1616812461520 -1616812461548 ,112.5702993,26.87819451,58.81907272,215.4828047,218.8070586,11.02698,0.103679696,1620000000000 ,1620000000000 ,1620000000000 ,1616812461530 -1616812461558 ,112.5702987,26.87819371,58.81957245,215.4867389,218.8023455,11.029224,0.103697028,1620000000000 ,1620000000000 ,1620000000000 ,1616812461540 -1616812461567 ,112.570298,26.8781929,58.82008743,215.4884328,218.7956296,11.031312,0.103716911,1620000000000 ,1620000000000 ,1620000000000 ,1616812461550 -1616812461578 ,112.5702974,26.87819209,58.8205986,215.4907551,218.7938576,11.03406,0.103742807,1620000000000 ,1620000000000 ,1620000000000 ,1616812461560 -1616812461588 ,112.5702967,26.87819128,58.82105637,215.4931866,218.7944439,11.03772,0.103772765,1620000000000 ,1620000000000 ,1620000000000 ,1616812461570 -1616812461601 ,112.5702961,26.87819047,58.82146835,215.4971755,218.8007739,11.040166,0.10379879,1620000000000 ,1620000000000 ,1620000000000 ,1616812461580 -1616812461607 ,112.5702954,26.87818966,58.82185745,215.5014921,218.7952374,11.040797,0.103810291,1620000000000 ,1620000000000 ,1620000000000 ,1616812461590 -1616812461616 ,112.5702948,26.87818885,58.82220459,215.506765,218.7838539,11.043515,0.103828522,1620000000000 ,1620000000000 ,1620000000000 ,1616812461600 -1616812461627 ,112.5702941,26.87818804,58.82244873,215.5129942,218.7781604,11.045658,0.103844819,1620000000000 ,1620000000000 ,1620000000000 ,1616812461610 -1616812461638 ,112.5702935,26.87818723,58.8225708,215.5181305,218.794256,11.04946,0.10387648,1620000000000 ,1620000000000 ,1620000000000 ,1616812461620 -1616812461648 ,112.5702928,26.87818642,58.82261658,215.5234034,218.8011086,11.05043,0.103892447,1620000000000 ,1620000000000 ,1620000000000 ,1616812461630 -1616812461658 ,112.5702922,26.87818561,58.82268143,215.5285397,218.8025302,11.051895,0.103904447,1620000000000 ,1620000000000 ,1620000000000 ,1616812461640 -1616812461668 ,112.5702915,26.8781848,58.8228302,215.5325832,218.8006172,11.051883,0.103913515,1620000000000 ,1620000000000 ,1620000000000 ,1616812461650 -1616812461678 ,112.5702909,26.87818399,58.82301331,215.5393587,218.7966583,11.052928,0.103920813,1620000000000 ,1620000000000 ,1620000000000 ,1616812461660 -1616812461694 ,112.5702902,26.87818318,58.82317734,215.5455332,218.8082429,11.054259,0.103935199,1620000000000 ,1620000000000 ,1620000000000 ,1616812461670 -1616812461697 ,112.5702896,26.87818237,58.82329178,215.5506968,218.8259829,11.055944,0.103952031,1620000000000 ,1620000000000 ,1620000000000 ,1616812461680 -1616812461710 ,112.5702889,26.87818156,58.82339478,215.5552867,218.8325879,11.05725,0.103967634,1620000000000 ,1620000000000 ,1620000000000 ,1616812461690 -1616812461720 ,112.5702883,26.87818075,58.82348251,215.5616524,218.831649,11.058792,0.10398079,1620000000000 ,1620000000000 ,1620000000000 ,1616812461700 -1616812461728 ,112.5702876,26.87817994,58.82354355,215.5673898,218.8385306,11.059809,0.103994247,1620000000000 ,1620000000000 ,1620000000000 ,1616812461710 -1616812461739 ,112.570287,26.87817913,58.82356644,215.5753675,218.8426285,11.06128,0.104006691,1620000000000 ,1620000000000 ,1620000000000 ,1616812461720 -1616812461749 ,112.5702863,26.87817832,58.8235817,215.5824435,218.8411058,11.061263,0.104009608,1620000000000 ,1620000000000 ,1620000000000 ,1616812461730 -1616812461770 ,112.5702857,26.87817751,58.82359695,215.5895196,218.8364479,11.061156,0.104007433,1620000000000 ,1620000000000 ,1620000000000 ,1616812461740 -1616812461773 ,112.570285,26.8781767,58.82361984,215.5968689,218.8382847,11.062035,0.104014432,1620000000000 ,1620000000000 ,1620000000000 ,1616812461750 -1616812461779 ,112.5702844,26.87817589,58.82362366,215.6047646,218.8393253,11.063637,0.104027524,1620000000000 ,1620000000000 ,1620000000000 ,1616812461760 -1616812461790 ,112.5702837,26.87817508,58.8235817,215.6122505,218.8368334,11.066135,0.104046955,1620000000000 ,1620000000000 ,1620000000000 ,1616812461770 -1616812461798 ,112.5702831,26.87817427,58.82349777,215.6198456,218.837622,11.069764,0.104076595,1620000000000 ,1620000000000 ,1620000000000 ,1616812461780 -1616812461808 ,112.5702824,26.87817346,58.82338715,215.6267305,218.8415648,11.07223,0.104104632,1620000000000 ,1620000000000 ,1620000000000 ,1616812461790 -1616812461820 ,112.5702817,26.87817265,58.82323456,215.6347081,218.8467821,11.071728,0.10410674,1620000000000 ,1620000000000 ,1620000000000 ,1616812461800 -1616812461828 ,112.5702811,26.87817184,58.82304001,215.6453086,218.8484058,11.070797,0.104098107,1620000000000 ,1620000000000 ,1620000000000 ,1616812461810 -1616812461839 ,112.5702804,26.87817103,58.82279968,215.6544884,218.8602235,11.068733,0.104078014,1620000000000 ,1620000000000 ,1620000000000 ,1616812461820 -1616812461849 ,112.5702798,26.87817022,58.82249832,215.664078,218.864193,11.06926,0.104074253,1620000000000 ,1620000000000 ,1620000000000 ,1616812461830 -1616812461860 ,112.5702791,26.87816941,58.82211685,215.674214,218.8690961,11.071035,0.104087177,1620000000000 ,1620000000000 ,1620000000000 ,1616812461840 -1616812461870 ,112.5702785,26.8781686,58.82165909,215.6808256,218.8892638,11.073935,0.104111797,1620000000000 ,1620000000000 ,1620000000000 ,1616812461850 -1616812461879 ,112.5702778,26.87816779,58.82117081,215.6889125,218.8951561,11.074369,0.104122033,1620000000000 ,1620000000000 ,1620000000000 ,1616812461860 -1616812461889 ,112.5702772,26.87816698,58.82070923,215.6960159,218.9039194,11.073062,0.104114841,1620000000000 ,1620000000000 ,1620000000000 ,1616812461870 -1616812461900 ,112.5702765,26.87816617,58.82028198,215.7030374,218.9149375,11.072357,0.104112201,1620000000000 ,1620000000000 ,1620000000000 ,1616812461880 -1616812461911 ,112.5702759,26.87816536,58.81985092,215.7103593,218.9304227,11.070797,0.104099998,1620000000000 ,1620000000000 ,1620000000000 ,1616812461890 -1616812461921 ,112.5702752,26.87816455,58.81942749,215.7168617,218.9461815,11.07068,0.104101424,1620000000000 ,1620000000000 ,1620000000000 ,1616812461900 -1616812461929 ,112.5702746,26.87816374,58.81901169,215.724129,218.9482357,11.070547,0.104100181,1620000000000 ,1620000000000 ,1620000000000 ,1616812461910 -1616812461940 ,112.5702739,26.87816293,58.81861496,215.7303035,218.9487755,11.07064,0.104100672,1620000000000 ,1620000000000 ,1620000000000 ,1616812461920 -1616812461950 ,112.5702732,26.87816212,58.81826782,215.7363687,218.9647163,11.070158,0.10410379,1620000000000 ,1620000000000 ,1620000000000 ,1616812461930 -1616812461960 ,112.5702726,26.87816131,58.81799316,215.7447288,218.9722377,11.067112,0.104085784,1620000000000 ,1620000000000 ,1620000000000 ,1616812461940 -1616812461970 ,112.5702719,26.8781605,58.81781387,215.7537447,218.9798087,11.064675,0.104063459,1620000000000 ,1620000000000 ,1620000000000 ,1616812461950 -1616812461987 ,112.5702713,26.87815969,58.81770706,215.760329,218.9823509,11.062982,0.104050144,1620000000000 ,1620000000000 ,1620000000000 ,1616812461960 -1616812461990 ,112.5702706,26.87815888,58.8176384,215.7700552,218.9898666,11.064088,0.104055861,1620000000000 ,1620000000000 ,1620000000000 ,1616812461970 -1616812462002 ,112.57027,26.87815807,58.81760406,215.7781694,218.9949951,11.065246,0.104073181,1620000000000 ,1620000000000 ,1620000000000 ,1616812461980 -1616812462011 ,112.5702693,26.87815727,58.81764984,215.7850269,218.9925755,11.066516,0.10408671,1620000000000 ,1620000000000 ,1620000000000 ,1616812461990 -1616812462021 ,112.5702687,26.87815646,58.81776428,215.7909282,218.9978946,11.065588,0.104090211,1620000000000 ,1620000000000 ,1620000000000 ,1616812462000 -1616812462033 ,112.570268,26.87815565,58.81784058,215.8009823,219.0110231,11.065466,0.104085111,1620000000000 ,1620000000000 ,1620000000000 ,1616812462010 -1616812462045 ,112.5702674,26.87815484,58.81780624,215.8112002,219.0269885,11.064851,0.104085078,1620000000000 ,1620000000000 ,1620000000000 ,1616812462020 -1616812462053 ,112.5702667,26.87815403,58.81765366,215.8202434,219.0305261,11.063298,0.104069073,1620000000000 ,1620000000000 ,1620000000000 ,1616812462030 -1616812462067 ,112.570266,26.87815322,58.81744766,215.8287675,219.0509058,11.064483,0.104073787,1620000000000 ,1620000000000 ,1620000000000 ,1616812462040 -1616812462071 ,112.5702654,26.87815241,58.81723022,215.8358436,219.0535647,11.063776,0.104073132,1620000000000 ,1620000000000 ,1620000000000 ,1616812462050 -1616812462082 ,112.5702647,26.87815161,58.81706238,215.8437666,219.0651233,11.062199,0.104068092,1620000000000 ,1620000000000 ,1620000000000 ,1616812462060 -1616812462092 ,112.5702641,26.8781508,58.8170166,215.850788,219.0846094,11.06072,0.104065363,1620000000000 ,1620000000000 ,1620000000000 ,1616812462070 -1616812462107 ,112.5702634,26.87814999,58.81706619,215.8567986,219.0881317,11.059627,0.104055231,1620000000000 ,1620000000000 ,1620000000000 ,1616812462080 -1616812462112 ,112.5702628,26.87814918,58.81713486,215.8642298,219.0898505,11.059013,0.104054888,1620000000000 ,1620000000000 ,1620000000000 ,1616812462090 -1616812462122 ,112.5702621,26.87814838,58.8170929,215.876087,219.0956688,11.060952,0.10406162,1620000000000 ,1620000000000 ,1620000000000 ,1616812462100 -1616812462131 ,112.5702614,26.87814757,58.81694031,215.8836822,219.1131643,11.061265,0.104072076,1620000000000 ,1620000000000 ,1620000000000 ,1616812462110 -1616812462141 ,112.5702608,26.87814676,58.81681824,215.8892283,219.1118431,11.058042,0.104053886,1620000000000 ,1620000000000 ,1620000000000 ,1616812462120 -1616812462155 ,112.5702601,26.87814595,58.81679153,215.8959492,219.1080303,11.056145,0.104036637,1620000000000 ,1620000000000 ,1620000000000 ,1616812462130 -1616812462164 ,112.5702595,26.87814515,58.81677628,215.9051836,219.1169954,11.05332,0.104014817,1620000000000 ,1620000000000 ,1620000000000 ,1616812462140 -1616812462175 ,112.5702588,26.87814434,58.81667328,215.9172594,219.1293423,11.0525465,0.104002298,1620000000000 ,1620000000000 ,1620000000000 ,1616812462150 -1616812462183 ,112.5702582,26.87814353,58.8164444,215.927614,219.1386916,11.052864,0.104002003,1620000000000 ,1620000000000 ,1620000000000 ,1616812462160 -1616812462192 ,112.5702575,26.87814273,58.81615448,215.938433,219.1256623,11.053745,0.103999536,1620000000000 ,1620000000000 ,1620000000000 ,1616812462180 -1616812462204 ,112.5702569,26.87814192,58.81585693,215.9458642,219.1264408,11.054081,0.104006883,1620000000000 ,1620000000000 ,1620000000000 ,1616812462180 -1616812462215 ,112.5702562,26.87814111,58.81560135,215.9553992,219.1469525,11.05186,0.104001938,1620000000000 ,1620000000000 ,1620000000000 ,1616812462200 -1616812462222 ,112.5702555,26.87814031,58.814888,215.9766547,219.7078276,11.057253,0.104422996,1620000000000 ,1620000000000 ,1620000000000 ,1616812462200 -1616812462234 ,112.5702548,26.87813951,58.8133812,215.9883207,220.5254864,11.054814,0.104989992,1620000000000 ,1620000000000 ,1620000000000 ,1616812462220 -1616812462243 ,112.5702542,26.87813871,58.81179047,216.0002325,220.5286915,11.054174,0.104976466,1620000000000 ,1620000000000 ,1620000000000 ,1616812462230 -1616812462255 ,112.5702535,26.87813792,58.80996704,216.0147945,220.5382851,11.058812,0.104997942,1620000000000 ,1620000000000 ,1620000000000 ,1616812462230 -1616812462264 ,112.5702521,26.87813632,58.80547714,216.0410771,220.5628633,11.062098,0.21004746,1620000000000 ,1620000000000 ,1620000000000 ,1616812462250 -1616812462274 ,112.5702514,26.87813552,58.80302811,216.0540544,220.5850397,11.060883,0.105012886,1620000000000 ,1620000000000 ,1620000000000 ,1616812462260 -1616812462285 ,112.5702508,26.87813473,58.80059814,216.0682339,220.5893769,11.0590725,0.104996937,1620000000000 ,1620000000000 ,1620000000000 ,1616812462270 -1616812462295 ,112.5702508,26.87813473,58.80059814,216.0682339,-400,11.0590725,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812462280 -1616812462304 ,112.5702501,26.87813393,58.79816055,216.085364,220.5901764,11.05917,0.104993069,1620000000000 ,1620000000000 ,1620000000000 ,1616812462290 -1616812462314 ,112.5702487,26.87813233,58.79322433,216.1191871,220.6027438,11.058075,0.209976189,1620000000000 ,1620000000000 ,1620000000000 ,1616812462300 -1616812462323 ,112.5702487,26.87813233,58.79322433,216.1191871,-400,11.058075,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812462310 -1616812462335 ,112.5702473,26.87813074,58.78836441,216.1572996,220.6245074,11.055438,0.209936238,1620000000000 ,1620000000000 ,1620000000000 ,1616812462320 -1616812462344 ,112.5702467,26.87812994,58.78596115,216.1758504,220.6520789,11.055899,0.104968889,1620000000000 ,1620000000000 ,1620000000000 ,1616812462330 -1616812462355 ,112.570246,26.87812915,58.78360748,216.1966415,220.6702416,11.054981,0.104969322,1620000000000 ,1620000000000 ,1620000000000 ,1616812462340 -1616812462365 ,112.5702453,26.87812835,58.78130722,216.2170774,220.6791781,11.053883,0.104962518,1620000000000 ,1620000000000 ,1620000000000 ,1616812462350 -1616812462375 ,112.5702446,26.87812756,58.77904892,216.2388794,220.6905933,11.052676,0.104953602,1620000000000 ,1620000000000 ,1620000000000 ,1616812462360 -1616812462385 ,112.5702439,26.87812676,58.77683258,216.2615829,220.7141031,11.050011,0.104940731,1620000000000 ,1620000000000 ,1620000000000 ,1616812462370 -1616812462398 ,112.5702432,26.87812597,58.77467728,216.2842865,220.7289129,11.048317,0.104925123,1620000000000 ,1620000000000 ,1620000000000 ,1616812462380 -1616812462405 ,112.5702425,26.87812517,58.77258682,216.3089025,220.7428341,11.046829,0.104913565,1620000000000 ,1620000000000 ,1620000000000 ,1616812462390 -1616812462416 ,112.5702419,26.87812438,58.7705574,216.3334365,220.758923,11.046158,0.104910152,1620000000000 ,1620000000000 ,1620000000000 ,1616812462400 -1616812462426 ,112.5702412,26.87812358,58.76858139,216.358435,220.7763482,11.045174,0.104909458,1620000000000 ,1620000000000 ,1620000000000 ,1616812462410 -1616812462436 ,112.5702405,26.87812279,58.76667404,216.3843351,220.7931426,11.044793,0.104910353,1620000000000 ,1620000000000 ,1620000000000 ,1616812462420 -1616812462445 ,112.5702398,26.87812199,58.76483536,216.4112187,220.8060552,11.043648,0.104904981,1620000000000 ,1620000000000 ,1620000000000 ,1616812462430 -1616812462455 ,112.5702391,26.8781212,58.76307678,216.438075,220.8313857,11.042026,0.104902761,1620000000000 ,1620000000000 ,1620000000000 ,1616812462440 -1616812462464 ,112.5702384,26.8781204,58.76192856,216.4648767,220.3183727,11.039625,0.104421497,1620000000000 ,1620000000000 ,1620000000000 ,1616812462450 -1616812462476 ,112.5702378,26.8781196,58.76137924,216.4925253,219.8012558,11.037809,0.103953964,1620000000000 ,1620000000000 ,1620000000000 ,1616812462460 -1616812462490 ,112.5702371,26.87811881,58.76088715,216.5209662,219.8302327,11.036363,0.103943562,1620000000000 ,1620000000000 ,1620000000000 ,1616812462470 -1616812462496 ,112.5702364,26.87811801,58.76042175,216.5483689,219.8633617,11.034794,0.103940217,1620000000000 ,1620000000000 ,1620000000000 ,1616812462480 -1616812462512 ,112.5702358,26.87811721,58.76000595,216.5758536,219.8877341,11.032633,0.10392857,1620000000000 ,1620000000000 ,1620000000000 ,1616812462490 -1616812462517 ,112.5702351,26.87811641,58.75967789,216.6000598,219.9188425,11.030068,0.103912207,1620000000000 ,1620000000000 ,1620000000000 ,1616812462500 -1616812462525 ,112.5702344,26.87811562,58.75944519,216.6258232,219.960807,11.025991,0.103886545,1620000000000 ,1620000000000 ,1620000000000 ,1616812462510 -1616812462536 ,112.5702338,26.87811482,58.75927353,216.6518872,220.0008058,11.021771,0.103863591,1620000000000 ,1620000000000 ,1620000000000 ,1616812462520 -1616812462547 ,112.5702331,26.87811403,58.75914383,216.6775141,220.0355883,11.019116,0.103842052,1620000000000 ,1620000000000 ,1620000000000 ,1616812462530 -1616812462556 ,112.5702324,26.87811323,58.75902939,216.7014198,220.0648383,11.017829,0.103832008,1620000000000 ,1620000000000 ,1620000000000 ,1616812462540 -1616812462566 ,112.5702318,26.87811244,58.75889206,216.7245331,220.0897048,11.017849,0.103833795,1620000000000 ,1620000000000 ,1620000000000 ,1616812462550 -1616812462578 ,112.5702311,26.87811164,58.7587204,216.7466903,220.1258449,11.017527,0.103839154,1620000000000 ,1620000000000 ,1620000000000 ,1616812462560 -1616812462588 ,112.5702304,26.87811085,58.7585144,216.7680824,220.1648787,11.017756,0.103847525,1620000000000 ,1620000000000 ,1620000000000 ,1616812462570 -1616812462597 ,112.5702298,26.87811006,58.75829315,216.791387,220.1923185,11.015058,0.103832166,1620000000000 ,1620000000000 ,1620000000000 ,1616812462580 -1616812462606 ,112.5702291,26.87810926,58.75808716,216.8105389,220.2178441,11.011545,0.103807407,1620000000000 ,1620000000000 ,1620000000000 ,1616812462590 -1616812462616 ,112.5702284,26.87810847,58.75787735,216.8300459,220.2438838,11.009842,0.103793446,1620000000000 ,1620000000000 ,1620000000000 ,1616812462600 -1616812462626 ,112.5702278,26.87810768,58.75761795,216.8492797,220.2727511,11.009876,0.103793711,1620000000000 ,1620000000000 ,1620000000000 ,1616812462610 -1616812462637 ,112.5702271,26.87810689,58.75729752,216.8664098,220.3025507,11.011158,0.103805432,1620000000000 ,1620000000000 ,1620000000000 ,1616812462620 -1616812462646 ,112.5702264,26.8781061,58.75695419,216.8822832,220.322362,11.009466,0.103799027,1620000000000 ,1620000000000 ,1620000000000 ,1616812462630 -1616812462657 ,112.5702257,26.87810531,58.7566185,216.8972549,220.3397312,11.008251,0.103793234,1620000000000 ,1620000000000 ,1620000000000 ,1616812462640 -1616812462667 ,112.5702251,26.87810452,58.75628281,216.9134562,220.3590769,11.007368,0.103788432,1620000000000 ,1620000000000 ,1620000000000 ,1616812462650 -1616812462677 ,112.5702244,26.87810373,58.7559166,216.928264,220.3823634,11.005649,0.103776494,1620000000000 ,1620000000000 ,1620000000000 ,1616812462660 -1616812462687 ,112.5702237,26.87810293,58.75550842,216.942744,220.4019054,11.003716,0.103760793,1620000000000 ,1620000000000 ,1620000000000 ,1616812462670 -1616812462697 ,112.570223,26.87810215,58.75506973,216.9545193,220.4211224,11.00328,0.103755844,1620000000000 ,1620000000000 ,1620000000000 ,1616812462680 -1616812462707 ,112.5702224,26.87810136,58.7546196,216.9672234,220.4340666,11.002823,0.103755199,1620000000000 ,1620000000000 ,1620000000000 ,1616812462690 -1616812462718 ,112.5702217,26.87810057,58.75415802,216.9782337,220.4435515,11.001963,0.103747032,1620000000000 ,1620000000000 ,1620000000000 ,1616812462700 -1616812462732 ,112.570221,26.87809978,58.75370026,216.9903641,220.4564588,11.001822,0.103748118,1620000000000 ,1620000000000 ,1620000000000 ,1616812462710 -1616812462739 ,112.5702204,26.87809899,58.75323105,217.0019754,220.466755,11.000364,0.103738252,1620000000000 ,1620000000000 ,1620000000000 ,1616812462720 -1616812462749 ,112.5702197,26.8780982,58.75271988,217.0125212,220.4854584,11.000754,0.103741138,1620000000000 ,1620000000000 ,1620000000000 ,1616812462730 -1616812462760 ,112.570219,26.87809741,58.75217056,217.0244058,220.5026983,11.000105,0.103738715,1620000000000 ,1620000000000 ,1620000000000 ,1616812462740 -1616812462769 ,112.5702183,26.87809662,58.7515831,217.0341046,220.5139113,11.000743,0.103742202,1620000000000 ,1620000000000 ,1620000000000 ,1616812462750 -1616812462782 ,112.5702177,26.87809583,58.75097275,217.043503,220.5217771,11.000975,0.10374697,1620000000000 ,1620000000000 ,1620000000000 ,1616812462760 -1616812462789 ,112.570217,26.87809504,58.75032425,217.0533931,220.5399766,11.001116,0.103749293,1620000000000 ,1620000000000 ,1620000000000 ,1616812462770 -1616812462801 ,112.5702163,26.87809426,58.74964142,217.0633105,220.5554394,11.000434,0.103747651,1620000000000 ,1620000000000 ,1620000000000 ,1616812462780 -1616812462811 ,112.5702156,26.87809347,58.74893188,217.0726815,220.570345,10.99933,0.103739078,1620000000000 ,1620000000000 ,1620000000000 ,1616812462790 -1616812462825 ,112.570215,26.87809268,58.74820709,217.0830088,220.586441,10.99841,0.103732647,1620000000000 ,1620000000000 ,1620000000000 ,1616812462800 -1616812462829 ,112.5702143,26.87809189,58.74744034,217.0922432,220.5947147,10.998342,0.103728744,1620000000000 ,1620000000000 ,1620000000000 ,1616812462810 -1616812462840 ,112.5702136,26.8780911,58.74662781,217.1033354,220.6026851,10.998912,0.10373295,1620000000000 ,1620000000000 ,1620000000000 ,1616812462820 -1616812462849 ,112.5702129,26.87809032,58.74580383,217.1112584,220.607748,10.999284,0.10373524,1620000000000 ,1620000000000 ,1620000000000 ,1616812462830 -1616812462860 ,112.5702123,26.87808953,58.74499512,217.1202743,220.5987923,10.99728,0.103722528,1620000000000 ,1620000000000 ,1620000000000 ,1616812462840 -1616812462871 ,112.5702116,26.87808874,58.74421692,217.1294267,220.6004727,10.995952,0.103708727,1620000000000 ,1620000000000 ,1620000000000 ,1616812462850 -1616812462881 ,112.5702109,26.87808795,58.74342728,217.1388251,220.6099687,10.993692,0.103692582,1620000000000 ,1620000000000 ,1620000000000 ,1616812462860 -1616812462892 ,112.5702102,26.87808717,58.74261856,217.1496168,220.6055109,10.991892,0.103670867,1620000000000 ,1620000000000 ,1620000000000 ,1616812462870 -1616812462903 ,112.5702096,26.87808638,58.74180603,217.1610095,220.5994617,10.99004,0.103651653,1620000000000 ,1620000000000 ,1620000000000 ,1616812462880 -1616812462913 ,112.5702089,26.87808559,58.7410202,217.1726482,220.6048691,10.989212,0.103644771,1620000000000 ,1620000000000 ,1620000000000 ,1616812462890 -1616812462921 ,112.5702082,26.87808481,58.74027252,217.1866364,220.6128884,10.988237,0.10363874,1620000000000 ,1620000000000 ,1620000000000 ,1616812462900 -1616812462929 ,112.5702075,26.87808402,58.73955917,217.1990673,220.6210899,10.987779,0.103638375,1620000000000 ,1620000000000 ,1620000000000 ,1616812462910 -1616812462940 ,112.5702069,26.87808323,58.7388916,217.2108972,220.6240723,10.986091,0.103624941,1620000000000 ,1620000000000 ,1620000000000 ,1616812462920 -1616812462950 ,112.5702062,26.87808245,58.73826599,217.2215797,220.6248102,10.984751,0.103614181,1620000000000 ,1620000000000 ,1620000000000 ,1616812462930 -1616812462960 ,112.5702055,26.87808166,58.73763657,217.231661,220.6344729,10.982654,0.103597777,1620000000000 ,1620000000000 ,1620000000000 ,1616812462940 -1616812462972 ,112.5702048,26.87808088,58.73697662,217.2419883,220.6493761,10.9819765,0.103590477,1620000000000 ,1620000000000 ,1620000000000 ,1616812462950 -1616812462980 ,112.5702042,26.87808009,58.73632431,217.2510861,220.662285,10.979313,0.103570421,1620000000000 ,1620000000000 ,1620000000000 ,1616812462960 -1616812462991 ,112.5702035,26.8780793,58.73573303,217.2593096,220.6732446,10.976026,0.103547689,1620000000000 ,1620000000000 ,1620000000000 ,1616812462970 -1616812463003 ,112.5702028,26.87807852,58.73519135,217.2698827,220.6829055,10.972184,0.103516911,1620000000000 ,1620000000000 ,1620000000000 ,1616812462980 -1616812463011 ,112.5702021,26.87807773,58.73465347,217.2794997,220.7020081,10.970917,0.103501608,1620000000000 ,1620000000000 ,1620000000000 ,1616812462990 -1616812463021 ,112.5702015,26.87807695,58.73409271,217.2884062,220.7202159,10.969765,0.103491951,1620000000000 ,1620000000000 ,1620000000000 ,1616812463000 -1616812463031 ,112.5702008,26.87807617,58.73348999,217.2972855,220.7409958,10.968831,0.103487015,1620000000000 ,1620000000000 ,1620000000000 ,1616812463010 -1616812463042 ,112.5702001,26.87807538,58.73286057,217.304061,220.7488409,10.968398,0.103480759,1620000000000 ,1620000000000 ,1620000000000 ,1616812463020 -1616812463051 ,112.5701994,26.8780746,58.73223495,217.3105634,220.7623899,10.9681,0.103480411,1620000000000 ,1620000000000 ,1620000000000 ,1616812463030 -1616812463075 ,112.5701988,26.87807381,58.73161697,217.3159729,220.7822805,10.96487,0.10346261,1620000000000 ,1620000000000 ,1620000000000 ,1616812463040 -1616812463081 ,112.5701981,26.87807303,58.73098755,217.3235134,220.7949424,10.962324,0.103435907,1620000000000 ,1620000000000 ,1620000000000 ,1616812463050 -1616812463085 ,112.5701974,26.87807225,58.73036957,217.3278847,220.8006909,10.957357,0.103399842,1620000000000 ,1620000000000 ,1620000000000 ,1616812463060 -1616812463091 ,112.5701967,26.87807147,58.72976303,217.3321468,220.8080134,10.95481,0.103366227,1620000000000 ,1620000000000 ,1620000000000 ,1616812463070 -1616812463102 ,112.5701961,26.87807068,58.72914505,217.3372011,220.8145749,10.953857,0.103357413,1620000000000 ,1620000000000 ,1620000000000 ,1616812463080 -1616812463111 ,112.5701954,26.8780699,58.72848511,217.3413538,220.8292593,10.952718,0.1033461,1620000000000 ,1620000000000 ,1620000000000 ,1616812463090 -1616812463121 ,112.5701947,26.87806912,58.72781754,217.344605,220.8474796,10.952984,0.103350086,1620000000000 ,1620000000000 ,1620000000000 ,1616812463100 -1616812463131 ,112.570194,26.87806834,58.72716522,217.3481567,220.8563049,10.952602,0.103347016,1620000000000 ,1620000000000 ,1620000000000 ,1616812463110 -1616812463146 ,112.5701934,26.87806756,58.72652435,217.35261,220.8584755,10.951799,0.103342717,1620000000000 ,1620000000000 ,1620000000000 ,1616812463120 -1616812463154 ,112.5701927,26.87806678,58.72587204,217.3566535,220.8579602,10.949505,0.10332518,1620000000000 ,1620000000000 ,1620000000000 ,1616812463130 -1616812463166 ,112.570192,26.87806599,58.72520065,217.3596588,220.8701016,10.946896,0.103300463,1620000000000 ,1620000000000 ,1620000000000 ,1616812463140 -1616812463174 ,112.5701913,26.87806521,58.72452927,217.3643852,220.8810331,10.94464,0.103278431,1620000000000 ,1620000000000 ,1620000000000 ,1616812463150 -1616812463186 ,112.5701907,26.87806443,58.72386169,217.3673359,220.8894095,10.941338,0.10325435,1620000000000 ,1620000000000 ,1620000000000 ,1616812463160 -1616812463193 ,112.57019,26.87806365,58.72321701,217.3712154,220.8924471,10.939278,0.103231815,1620000000000 ,1620000000000 ,1620000000000 ,1616812463170 -1616812463207 ,112.5701893,26.87806287,58.72259521,217.3729913,220.8956213,10.936526,0.103207386,1620000000000 ,1620000000000 ,1620000000000 ,1616812463180 -1616812463215 ,112.5701886,26.87806209,58.72200775,217.3772806,220.9018426,10.934522,0.103187789,1620000000000 ,1620000000000 ,1620000000000 ,1616812463190 -1616812463230 ,112.5701879,26.87806131,58.72144318,217.3803132,220.9083986,10.932134,0.103167992,1620000000000 ,1620000000000 ,1620000000000 ,1616812463200 -1616812463235 ,112.5701873,26.87806053,58.72112274,217.3821984,221.6591678,10.952843,0.104579248,1620000000000 ,1620000000000 ,1620000000000 ,1616812463220 -1616812463244 ,112.5701859,26.87805897,58.72068787,217.3853676,221.7193534,10.946014,0.209314468,1620000000000 ,1620000000000 ,1620000000000 ,1616812463230 -1616812463254 ,112.5701859,26.87805897,58.72068787,217.3853676,-400,10.946014,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812463240 -1616812463267 ,112.5701845,26.87805741,58.72037888,217.3932086,221.7213347,10.941139,0.209216439,1620000000000 ,1620000000000 ,1620000000000 ,1616812463250 -1616812463274 ,112.5701845,26.87805741,58.72037888,217.3932086,-400,10.941139,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812463260 -1616812463284 ,112.5701831,26.87805585,58.72016907,217.3973887,221.7135794,10.934539,0.209099248,1620000000000 ,1620000000000 ,1620000000000 ,1616812463270 -1616812463293 ,112.5701824,26.87805507,58.72009659,217.3996837,221.6993139,10.93059,0.104495989,1620000000000 ,1620000000000 ,1620000000000 ,1616812463280 -1616812463307 ,112.5701824,26.87805507,58.72009659,217.3996837,-400,10.93059,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812463280 -1616812463313 ,112.570181,26.87805351,58.71996307,217.4028802,221.7085462,10.927045,0.208958512,1620000000000 ,1620000000000 ,1620000000000 ,1616812463300 -1616812463325 ,112.5701803,26.87805273,58.71996689,217.4038091,221.7066969,10.923408,0.104434145,1620000000000 ,1620000000000 ,1620000000000 ,1616812463310 -1616812463336 ,112.5701796,26.87805195,58.72006989,217.4060494,221.6935948,10.917469,0.104387486,1620000000000 ,1620000000000 ,1620000000000 ,1616812463320 -1616812463344 ,112.5701789,26.87805117,58.72025299,217.4082897,221.6883617,10.913862,0.104345585,1620000000000 ,1620000000000 ,1620000000000 ,1616812463330 -1616812463356 ,112.5701782,26.87805039,58.72043991,217.4088908,221.6909901,10.910458,0.104315488,1620000000000 ,1620000000000 ,1620000000000 ,1616812463340 -1616812463364 ,112.5701775,26.87804961,58.7205658,217.4111311,221.7026019,10.907172,0.104283581,1620000000000 ,1620000000000 ,1620000000000 ,1616812463350 -1616812463375 ,112.5701768,26.87804883,58.7206459,217.4104207,221.7129399,10.907375,0.104279092,1620000000000 ,1620000000000 ,1620000000000 ,1616812463360 -1616812463385 ,112.5701768,26.87804883,58.7206459,217.4104207,-400,10.907375,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812463360 -1616812463396 ,112.5701754,26.87804728,58.72096634,217.408317,221.7203893,10.90086,0.208493777,1620000000000 ,1620000000000 ,1620000000000 ,1616812463380 -1616812463404 ,112.5701747,26.8780465,58.72114944,217.4072788,221.7072216,10.898388,0.104207003,1620000000000 ,1620000000000 ,1620000000000 ,1616812463390 -1616812463415 ,112.5701747,26.8780465,58.72114944,217.4072788,-400,10.898388,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812463400 -1616812463425 ,112.5701734,26.87804494,58.72135162,217.4032627,221.7257483,10.891017,0.208315233,1620000000000 ,1620000000000 ,1620000000000 ,1616812463410 -1616812463436 ,112.5701727,26.87804417,58.72143936,217.4008858,221.7263259,10.887684,0.104112229,1620000000000 ,1620000000000 ,1620000000000 ,1616812463420 -1616812463445 ,112.570172,26.87804339,58.72153854,217.3976346,221.729339,10.887207,0.104098158,1620000000000 ,1620000000000 ,1620000000000 ,1616812463430 -1616812463455 ,112.5701713,26.87804261,58.72159195,217.3946293,221.7218918,10.888249,0.104106546,1620000000000 ,1620000000000 ,1620000000000 ,1616812463440 -1616812463464 ,112.5701706,26.87804184,58.72157669,217.3903946,221.7213464,10.888654,0.104108738,1620000000000 ,1620000000000 ,1620000000000 ,1616812463450 -1616812463475 ,112.5701699,26.87804106,58.72137451,217.3847119,221.0313863,10.888364,0.102799783,1620000000000 ,1620000000000 ,1620000000000 ,1616812463460 -1616812463486 ,112.5701692,26.87804028,58.72117615,217.3808597,221.0206648,10.886759,0.102787214,1620000000000 ,1620000000000 ,1620000000000 ,1616812463470 -1616812463497 ,112.5701686,26.87803951,58.72096252,217.3754775,221.0099389,10.884478,0.10276614,1620000000000 ,1620000000000 ,1620000000000 ,1616812463480 -1616812463507 ,112.5701679,26.87803873,58.72070694,217.3713247,221.0100575,10.882919,0.102749449,1620000000000 ,1620000000000 ,1620000000000 ,1616812463490 -1616812463518 ,112.5701672,26.87803796,58.72042847,217.367855,221.0096718,10.881299,0.102732551,1620000000000 ,1620000000000 ,1620000000000 ,1616812463500 -1616812463526 ,112.5701665,26.87803718,58.72013474,217.3627187,220.996449,10.88055,0.102721942,1620000000000 ,1620000000000 ,1620000000000 ,1616812463510 -1616812463536 ,112.5701659,26.87803641,58.71982574,217.3590577,220.9890173,10.880173,0.102717379,1620000000000 ,1620000000000 ,1620000000000 ,1616812463520 -1616812463547 ,112.5701652,26.87803563,58.71950912,217.354823,220.9837635,10.879192,0.102707013,1620000000000 ,1620000000000 ,1620000000000 ,1616812463530 -1616812463556 ,112.5701645,26.87803486,58.71920013,217.3498233,220.9734637,10.877677,0.102694167,1620000000000 ,1620000000000 ,1620000000000 ,1616812463540 -1616812463569 ,112.5701638,26.87803408,58.71888733,217.3443591,220.9661465,10.876203,0.102680024,1620000000000 ,1620000000000 ,1620000000000 ,1616812463550 -1616812463578 ,112.5701632,26.87803331,58.71854401,217.3395507,220.95881,10.876266,0.102676756,1620000000000 ,1620000000000 ,1620000000000 ,1616812463560 -1616812463588 ,112.5701625,26.87803253,58.71813202,217.3336494,220.959988,10.8775425,0.102678965,1620000000000 ,1620000000000 ,1620000000000 ,1616812463570 -1616812463597 ,112.5701618,26.87803176,58.7176857,217.3281306,220.96227,10.874807,0.102670095,1620000000000 ,1620000000000 ,1620000000000 ,1616812463580 -1616812463607 ,112.5701612,26.87803098,58.71724319,217.3196885,220.968011,10.872483,0.102642736,1620000000000 ,1620000000000 ,1620000000000 ,1616812463590 -1616812463619 ,112.5701605,26.87803021,58.71686935,217.3137326,220.95108,10.873404,0.102651429,1620000000000 ,1620000000000 ,1620000000000 ,1616812463600 -1616812463626 ,112.5701598,26.87802943,58.71644592,217.3072029,220.9264267,10.870468,0.102619299,1620000000000 ,1620000000000 ,1620000000000 ,1616812463610 -1616812463636 ,112.5701591,26.87802866,58.71588135,217.298952,220.9435708,10.871496,0.102622421,1620000000000 ,1620000000000 ,1620000000000 ,1616812463620 -1616812463648 ,112.5701585,26.87802788,58.71512985,217.2933513,220.9609356,10.8722315,0.10262524,1620000000000 ,1620000000000 ,1620000000000 ,1616812463630 -1616812463656 ,112.5701578,26.8780271,58.71424866,217.2882423,220.9376544,10.875052,0.102631658,1620000000000 ,1620000000000 ,1620000000000 ,1616812463640 -1616812463667 ,112.5701571,26.87802633,58.71336746,217.2814121,220.8998143,10.876781,0.102649082,1620000000000 ,1620000000000 ,1620000000000 ,1616812463650 -1616812463677 ,112.5701564,26.87802555,58.7125206,217.2733798,220.8777164,10.876947,0.102653765,1620000000000 ,1620000000000 ,1620000000000 ,1616812463660 -1616812463688 ,112.5701558,26.87802478,58.71167374,217.2655934,220.8728885,10.875558,0.102638074,1620000000000 ,1620000000000 ,1620000000000 ,1616812463670 -1616812463697 ,112.5701551,26.878024,58.71077728,217.2584627,220.8682704,10.876242,0.10263353,1620000000000 ,1620000000000 ,1620000000000 ,1616812463680 -1616812463708 ,112.5701544,26.87802322,58.70980835,217.2535449,220.8584617,10.877324,0.102641638,1620000000000 ,1620000000000 ,1620000000000 ,1616812463690 -1616812463717 ,112.5701538,26.87802245,58.70880508,217.2453214,220.8402257,10.879474,0.10265381,1620000000000 ,1620000000000 ,1620000000000 ,1616812463700 -1616812463728 ,112.5701531,26.87802167,58.70779037,217.237535,220.8181003,10.88012,0.1026568,1620000000000 ,1620000000000 ,1620000000000 ,1616812463710 -1616812463737 ,112.5701524,26.87802089,58.70676804,217.2313878,220.8086643,10.880361,0.102655428,1620000000000 ,1620000000000 ,1620000000000 ,1616812463720 -1616812463754 ,112.5701518,26.87802012,58.70571518,217.2246123,220.8074257,10.880933,0.102659263,1620000000000 ,1620000000000 ,1620000000000 ,1616812463730 -1616812463766 ,112.5701511,26.87801934,58.70462036,217.2172903,220.8061871,10.881905,0.102664885,1620000000000 ,1620000000000 ,1620000000000 ,1616812463740 -1616812463769 ,112.5701504,26.87801856,58.70348358,217.2098044,220.7874127,10.882279,0.102661193,1620000000000 ,1620000000000 ,1620000000000 ,1616812463750 -1616812463777 ,112.5701497,26.87801778,58.70230103,217.2030015,220.7680373,10.883539,0.102664888,1620000000000 ,1620000000000 ,1620000000000 ,1616812463760 -1616812463790 ,112.5701491,26.87801701,58.70108032,217.1952698,220.7687787,10.884799,0.102676201,1620000000000 ,1620000000000 ,1620000000000 ,1616812463770 -1616812463805 ,112.5701484,26.87801623,58.69984055,217.1866091,220.7662832,10.88584,0.102680219,1620000000000 ,1620000000000 ,1620000000000 ,1616812463780 -1616812463808 ,112.5701477,26.87801545,58.69863892,217.1764458,220.7660373,10.887013,0.10269502,1620000000000 ,1620000000000 ,1620000000000 ,1616812463790 -1616812463819 ,112.5701471,26.87801467,58.69749069,217.1664737,220.754454,10.887971,0.102701015,1620000000000 ,1620000000000 ,1620000000000 ,1616812463800 -1616812463827 ,112.5701464,26.8780139,58.69632721,217.1582228,220.7475834,10.889953,0.102717322,1620000000000 ,1620000000000 ,1620000000000 ,1616812463810 -1616812463839 ,112.5701457,26.87801312,58.69514847,217.1474858,220.7463966,10.888869,0.102708117,1620000000000 ,1620000000000 ,1620000000000 ,1616812463820 -1616812463849 ,112.570145,26.87801234,58.69396591,217.1378962,220.7457818,10.888875,0.102706041,1620000000000 ,1620000000000 ,1620000000000 ,1616812463830 -1616812463858 ,112.5701444,26.87801156,58.69284058,217.1269132,220.7380814,10.88732,0.102697419,1620000000000 ,1620000000000 ,1620000000000 ,1616812463840 -1616812463870 ,112.5701437,26.87801078,58.69179535,217.116504,220.7262446,10.886821,0.102684865,1620000000000 ,1620000000000 ,1620000000000 ,1616812463850 -1616812463878 ,112.570143,26.87801,58.69082642,217.1058216,220.7171346,10.887034,0.102692292,1620000000000 ,1620000000000 ,1620000000000 ,1616812463860 -1616812463889 ,112.5701424,26.87800923,58.68990326,217.0959042,220.7102749,10.888154,0.102695471,1620000000000 ,1620000000000 ,1620000000000 ,1616812463870 -1616812463909 ,112.5701417,26.87800845,58.68903351,217.0860687,220.6984713,10.890601,0.102716054,1620000000000 ,1620000000000 ,1620000000000 ,1616812463880 -1616812463917 ,112.570141,26.87800767,58.68822098,217.074594,220.6779901,10.890786,0.102720903,1620000000000 ,1620000000000 ,1620000000000 ,1616812463890 -1616812463921 ,112.5701404,26.87800689,58.68749619,217.0641301,220.6594157,10.891007,0.102723118,1620000000000 ,1620000000000 ,1620000000000 ,1616812463900 -1616812463932 ,112.5701397,26.87800611,58.68684387,217.0537756,220.6440298,10.89035,0.102722241,1620000000000 ,1620000000000 ,1620000000000 ,1616812463910 -1616812463939 ,112.570139,26.87800533,58.68626404,217.0430658,220.6362119,10.890021,0.102715745,1620000000000 ,1620000000000 ,1620000000000 ,1616812463920 -1616812463952 ,112.5701383,26.87800455,58.68575287,217.0318916,220.6261075,10.887695,0.102703069,1620000000000 ,1620000000000 ,1620000000000 ,1616812463930 -1616812463961 ,112.5701377,26.87800377,58.68532181,217.0212639,220.6166513,10.88795,0.102694283,1620000000000 ,1620000000000 ,1620000000000 ,1616812463940 -1616812463970 ,112.570137,26.87800299,58.68497086,217.0119202,220.5999211,10.887221,0.102696125,1620000000000 ,1620000000000 ,1620000000000 ,1616812463950 -1616812463980 ,112.5701363,26.87800221,58.68467331,217.0021393,220.5769219,10.887533,0.102689676,1620000000000 ,1620000000000 ,1620000000000 ,1616812463960 -1616812463990 ,112.5701357,26.87800143,58.68442917,216.9916755,220.563832,10.888636,0.102700265,1620000000000 ,1620000000000 ,1620000000000 ,1616812463970 -1616812464000 ,112.570135,26.87800065,58.68421555,216.9822498,220.556127,10.888673,0.102702497,1620000000000 ,1620000000000 ,1620000000000 ,1616812463980 -1616812464010 ,112.5701343,26.87799987,58.68403625,216.9721685,220.5513985,10.888653,0.102705648,1620000000000 ,1620000000000 ,1620000000000 ,1616812463990 -1616812464020 ,112.5701337,26.87799909,58.68391037,216.9632619,220.5389577,10.887893,0.102701697,1620000000000 ,1620000000000 ,1620000000000 ,1616812464000 -1616812464030 ,112.570133,26.87799831,58.68383408,216.9518691,220.5168445,10.886478,0.102683644,1620000000000 ,1620000000000 ,1620000000000 ,1616812464010 -1616812464042 ,112.5701323,26.87799753,58.68378067,216.9402851,220.5054971,10.886148,0.102681865,1620000000000 ,1620000000000 ,1620000000000 ,1616812464020 -1616812464050 ,112.5701317,26.87799675,58.68371201,216.9322255,220.4968505,10.887705,0.102689712,1620000000000 ,1620000000000 ,1620000000000 ,1616812464030 -1616812464060 ,112.570131,26.87799597,58.68361664,216.9228545,220.4933503,10.887247,0.102688304,1620000000000 ,1620000000000 ,1620000000000 ,1616812464040 -1616812464070 ,112.5701303,26.87799519,58.68351746,216.9134015,220.4818048,10.887004,0.1026829,1620000000000 ,1620000000000 ,1620000000000 ,1616812464050 -1616812464083 ,112.5701297,26.8779944,58.68343735,216.9032382,220.4653862,10.887239,0.102686207,1620000000000 ,1620000000000 ,1620000000000 ,1616812464060 -1616812464090 ,112.570129,26.87799362,58.68333435,216.8944956,220.4474251,10.888709,0.102688986,1620000000000 ,1620000000000 ,1620000000000 ,1616812464070 -1616812464102 ,112.5701283,26.87799284,58.6831665,216.8853158,220.4418139,10.890568,0.102706963,1620000000000 ,1620000000000 ,1620000000000 ,1616812464080 -1616812464111 ,112.5701277,26.87799206,58.68292236,216.8769829,220.4355783,10.890741,0.102706925,1620000000000 ,1620000000000 ,1620000000000 ,1616812464090 -1616812464121 ,112.570127,26.87799128,58.68264389,216.8671748,220.4184909,10.890258,0.102698867,1620000000000 ,1620000000000 ,1620000000000 ,1616812464100 -1616812464131 ,112.5701263,26.8779905,58.68235016,216.8591971,220.4011331,10.890209,0.102695993,1620000000000 ,1620000000000 ,1620000000000 ,1616812464110 -1616812464141 ,112.5701257,26.87798971,58.68201447,216.8524216,220.390108,10.8912115,0.102697475,1620000000000 ,1620000000000 ,1620000000000 ,1616812464120 -1616812464151 ,112.570125,26.87798893,58.68161011,216.8469301,220.3816251,10.891344,0.102700791,1620000000000 ,1620000000000 ,1620000000000 ,1616812464130 -1616812464169 ,112.5701243,26.87798815,58.68115234,216.8404551,220.3775195,10.890606,0.102689855,1620000000000 ,1620000000000 ,1620000000000 ,1616812464140 -1616812464184 ,112.5701237,26.87798737,58.68068314,216.8358925,220.3650518,10.890703,0.102689933,1620000000000 ,1620000000000 ,1620000000000 ,1616812464150 -1616812464190 ,112.570123,26.87798658,58.6801796,216.8315212,220.3469815,10.892392,0.102695156,1620000000000 ,1620000000000 ,1620000000000 ,1616812464160 -1616812464192 ,112.5701224,26.8779858,58.67963028,216.8270952,220.339846,10.892598,0.102696972,1620000000000 ,1620000000000 ,1620000000000 ,1616812464170 -1616812464204 ,112.5701217,26.87798502,58.67903137,216.8251282,220.331115,10.893985,0.102705589,1620000000000 ,1620000000000 ,1620000000000 ,1616812464180 -1616812464213 ,112.570121,26.87798424,58.67840576,216.8228332,220.3235972,10.891532,0.102693487,1620000000000 ,1620000000000 ,1620000000000 ,1616812464190 -1616812464222 ,112.5701204,26.87798345,58.677742,216.8216038,220.3190535,10.892604,0.102683482,1620000000000 ,1620000000000 ,1620000000000 ,1616812464200 -1616812464233 ,112.5701197,26.87798266,58.67703247,216.8231611,220.3060678,10.925857,0.103729345,1620000000000 ,1620000000000 ,1620000000000 ,1616812464210 -1616812464244 ,112.570119,26.87798187,58.67627716,216.822642,220.2956032,10.926868,0.1038876,1620000000000 ,1620000000000 ,1620000000000 ,1616812464220 -1616812464256 ,112.5701183,26.87798108,58.67550659,216.8222595,220.2836736,10.9273815,0.103894435,1620000000000 ,1620000000000 ,1620000000000 ,1616812464240 -1616812464266 ,112.5701177,26.87798028,58.67475128,216.8225327,220.281774,10.92569,0.103880588,1620000000000 ,1620000000000 ,1620000000000 ,1616812464250 -1616812464274 ,112.5701163,26.8779787,58.6733551,216.8282427,220.2791349,10.923393,0.207724351,1620000000000 ,1620000000000 ,1620000000000 ,1616812464260 -1616812464289 ,112.5701157,26.87797791,58.67266083,216.8297727,220.2730297,10.923071,0.10385616,1620000000000 ,1620000000000 ,1620000000000 ,1616812464270 -1616812464294 ,112.570115,26.87797711,58.67192459,216.8330239,220.2656762,10.923311,0.103853783,1620000000000 ,1620000000000 ,1620000000000 ,1616812464280 -1616812464307 ,112.570115,26.87797711,58.67192459,216.8330239,-400,10.923311,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812464280 -1616812464314 ,112.5701136,26.87797553,58.67042542,216.8395262,220.2632095,10.923668,0.207711545,1620000000000 ,1620000000000 ,1620000000000 ,1616812464300 -1616812464323 ,112.570113,26.87797474,58.66965866,216.8466023,220.2610502,10.92404,0.103861489,1620000000000 ,1620000000000 ,1620000000000 ,1616812464310 -1616812464333 ,112.5701123,26.87797394,58.66887665,216.8503452,220.258331,10.923105,0.103854982,1620000000000 ,1620000000000 ,1620000000000 ,1616812464320 -1616812464345 ,112.5701116,26.87797315,58.66810608,216.8558913,220.2519822,10.9210205,0.103834747,1620000000000 ,1620000000000 ,1620000000000 ,1616812464330 -1616812464356 ,112.570111,26.87797236,58.66732407,216.8611916,220.2514663,10.919942,0.10382135,1620000000000 ,1620000000000 ,1620000000000 ,1616812464340 -1616812464365 ,112.5701103,26.87797157,58.66650009,216.8667923,220.2590314,10.9211035,0.103825309,1620000000000 ,1620000000000 ,1620000000000 ,1616812464350 -1616812464376 ,112.5701096,26.87797077,58.66560364,216.8736225,220.2686869,10.92136,0.103829233,1620000000000 ,1620000000000 ,1620000000000 ,1616812464360 -1616812464384 ,112.5701089,26.87796998,58.66467285,216.881245,220.2727755,10.920848,0.103825364,1620000000000 ,1620000000000 ,1620000000000 ,1616812464370 -1616812464395 ,112.5701083,26.87796919,58.66376495,216.8884303,220.2768658,10.92012,0.103819474,1620000000000 ,1620000000000 ,1620000000000 ,1616812464380 -1616812464405 ,112.5701076,26.8779684,58.66286469,216.8948234,220.2886437,10.919971,0.103819834,1620000000000 ,1620000000000 ,1620000000000 ,1616812464390 -1616812464417 ,112.5701069,26.87796761,58.66193008,216.9017356,220.3047223,10.921642,0.103829029,1620000000000 ,1620000000000 ,1620000000000 ,1616812464400 -1616812464426 ,112.5701063,26.87796682,58.66093826,216.9091395,220.3235827,10.922225,0.103841228,1620000000000 ,1620000000000 ,1620000000000 ,1616812464410 -1616812464438 ,112.5701056,26.87796602,58.65992737,216.913784,220.3364261,10.919638,0.103825226,1620000000000 ,1620000000000 ,1620000000000 ,1616812464420 -1616812464447 ,112.5701049,26.87796523,58.65890884,216.918811,220.3385906,10.919254,0.103817312,1620000000000 ,1620000000000 ,1620000000000 ,1616812464430 -1616812464458 ,112.5701042,26.87796444,58.65787506,216.9234829,220.3496316,10.918117,0.103802227,1620000000000 ,1620000000000 ,1620000000000 ,1616812464440 -1616812464465 ,112.5701036,26.87796365,58.65682983,216.9294388,220.3702539,10.916445,0.103792819,1620000000000 ,1620000000000 ,1620000000000 ,1616812464450 -1616812464474 ,112.5701029,26.87796287,58.65579987,216.9330998,220.3906054,10.915839,0.102905762,1620000000000 ,1620000000000 ,1620000000000 ,1616812464460 -1616812464485 ,112.5701022,26.87796208,58.65480042,216.9398207,220.3947562,10.915746,0.10290125,1620000000000 ,1620000000000 ,1620000000000 ,1616812464470 -1616812464495 ,112.5701016,26.8779613,58.65380478,216.9450936,220.4053364,10.917089,0.102912049,1620000000000 ,1620000000000 ,1620000000000 ,1616812464480 -1616812464506 ,112.5701009,26.87796052,58.6527977,216.9492737,220.4073351,10.917368,0.102917745,1620000000000 ,1620000000000 ,1620000000000 ,1616812464490 -1616812464519 ,112.5701002,26.87795973,58.6517868,216.9524702,220.4098073,10.916434,0.102911902,1620000000000 ,1620000000000 ,1620000000000 ,1616812464500 -1616812464526 ,112.5700996,26.87795895,58.65081787,216.9596009,220.4254436,10.915524,0.102904901,1620000000000 ,1620000000000 ,1620000000000 ,1616812464510 -1616812464537 ,112.5700989,26.87795817,58.64990234,216.9649831,220.4248992,10.9137745,0.1028913,1620000000000 ,1620000000000 ,1620000000000 ,1616812464520 -1616812464547 ,112.5700982,26.87795738,58.64905167,216.9709117,220.423644,10.91255,0.102877185,1620000000000 ,1620000000000 ,1620000000000 ,1616812464530 -1616812464556 ,112.5700976,26.8779566,58.64825439,216.976048,220.4240312,10.911544,0.102868791,1620000000000 ,1620000000000 ,1620000000000 ,1616812464540 -1616812464567 ,112.5700969,26.87795582,58.64745331,216.9834793,220.4319101,10.911853,0.102870922,1620000000000 ,1620000000000 ,1620000000000 ,1616812464550 -1616812464577 ,112.5700962,26.87795503,58.64666367,216.9876867,220.4455751,10.912624,0.102878291,1620000000000 ,1620000000000 ,1620000000000 ,1616812464560 -1616812464587 ,112.5700956,26.87795425,58.64592361,216.9928776,220.4477707,10.911805,0.102873668,1620000000000 ,1620000000000 ,1620000000000 ,1616812464570 -1616812464598 ,112.5700949,26.87795347,58.6452713,216.9985057,220.4541258,10.911054,0.102870847,1620000000000 ,1620000000000 ,1620000000000 ,1616812464580 -1616812464607 ,112.5700942,26.87795269,58.64470291,217.0032868,220.4634265,10.909296,0.102863258,1620000000000 ,1620000000000 ,1620000000000 ,1616812464590 -1616812464618 ,112.5700936,26.8779519,58.644207,217.0094613,220.4656734,10.906877,0.102842538,1620000000000 ,1620000000000 ,1620000000000 ,1616812464600 -1616812464626 ,112.5700929,26.87795112,58.6437912,217.0154172,220.4762516,10.905149,0.102825072,1620000000000 ,1620000000000 ,1620000000000 ,1616812464610 -1616812464636 ,112.5700922,26.87795034,58.64344406,217.0215917,220.4846469,10.905458,0.102827711,1620000000000 ,1620000000000 ,1620000000000 ,1616812464620 -1616812464646 ,112.5700916,26.87794956,58.64315033,217.0259904,220.4883071,10.904336,0.102828572,1620000000000 ,1620000000000 ,1620000000000 ,1616812464630 -1616812464660 ,112.5700909,26.87794877,58.64287949,217.0304436,220.5006067,10.905649,0.102828365,1620000000000 ,1620000000000 ,1620000000000 ,1616812464640 -1616812464669 ,112.5700902,26.87794799,58.64260864,217.0376017,220.49706,10.903461,0.102828203,1620000000000 ,1620000000000 ,1620000000000 ,1616812464650 -1616812464680 ,112.5700896,26.87794721,58.6423111,217.043503,220.5102308,10.901638,0.102795151,1620000000000 ,1620000000000 ,1620000000000 ,1616812464660 -1616812464689 ,112.5700889,26.87794643,58.6421051,217.0495682,220.5253175,10.901527,0.102806334,1620000000000 ,1620000000000 ,1620000000000 ,1616812464670 -1616812464702 ,112.5700882,26.87794565,58.64200974,217.0558246,220.5139303,10.89982,0.102791789,1620000000000 ,1620000000000 ,1620000000000 ,1616812464680 -1616812464709 ,112.5700876,26.87794487,58.64206314,217.06148,220.5159978,10.897726,0.102783156,1620000000000 ,1620000000000 ,1620000000000 ,1616812464690 -1616812464718 ,112.5700869,26.87794409,58.64222336,217.0674633,220.5223679,10.893111,0.102746885,1620000000000 ,1620000000000 ,1620000000000 ,1616812464700 -1616812464728 ,112.5700862,26.8779433,58.64244843,217.0723264,220.5303681,10.890955,0.102721893,1620000000000 ,1620000000000 ,1620000000000 ,1616812464710 -1616812464738 ,112.5700856,26.87794252,58.64269257,217.0775719,220.5320334,10.892462,0.102733815,1620000000000 ,1620000000000 ,1620000000000 ,1616812464720 -1616812464747 ,112.5700849,26.87794174,58.64290619,217.0836645,220.5260614,10.893591,0.102744285,1620000000000 ,1620000000000 ,1620000000000 ,1616812464730 -1616812464760 ,112.5700842,26.87794096,58.64313507,217.0879265,220.5302788,10.892983,0.102743911,1620000000000 ,1620000000000 ,1620000000000 ,1616812464740 -1616812464769 ,112.5700835,26.87794018,58.6434288,217.0933087,220.5337737,10.889277,0.102719163,1620000000000 ,1620000000000 ,1620000000000 ,1616812464750 -1616812464778 ,112.5700829,26.8779394,58.64380646,217.1001935,220.5426406,10.887017,0.102699727,1620000000000 ,1620000000000 ,1620000000000 ,1616812464760 -1616812464788 ,112.5700822,26.87793862,58.64420319,217.1059036,220.5436767,10.886153,0.102690394,1620000000000 ,1620000000000 ,1620000000000 ,1616812464770 -1616812464798 ,112.5700815,26.87793784,58.64454651,217.1145096,220.5503442,10.886442,0.102688344,1620000000000 ,1620000000000 ,1620000000000 ,1616812464780 -1616812464809 ,112.5700809,26.87793706,58.64481735,217.1192361,220.5516075,10.887553,0.102698091,1620000000000 ,1620000000000 ,1620000000000 ,1616812464790 -1616812464819 ,112.5700802,26.87793628,58.64504242,217.1237987,220.5559837,10.887268,0.102698044,1620000000000 ,1620000000000 ,1620000000000 ,1616812464800 -1616812464829 ,112.5700795,26.8779355,58.64526749,217.130219,220.5666443,10.885863,0.102690096,1620000000000 ,1620000000000 ,1620000000000 ,1616812464810 -1616812464838 ,112.5700789,26.87793472,58.64550018,217.1351641,220.5761032,10.88422,0.102678685,1620000000000 ,1620000000000 ,1620000000000 ,1616812464820 -1616812464848 ,112.5700782,26.87793394,58.64572144,217.14112,220.5894982,10.882452,0.102662226,1620000000000 ,1620000000000 ,1620000000000 ,1616812464830 -1616812464859 ,112.5700775,26.87793316,58.64590454,217.1433876,220.6038361,10.883011,0.102664995,1620000000000 ,1620000000000 ,1620000000000 ,1616812464840 -1616812464869 ,112.5700769,26.87793238,58.64601135,217.1486606,220.6062118,10.88338,0.10266585,1620000000000 ,1620000000000 ,1620000000000 ,1616812464850 -1616812464879 ,112.5700762,26.8779316,58.6460495,217.1531138,220.6106077,10.883946,0.102670933,1620000000000 ,1620000000000 ,1620000000000 ,1616812464860 -1616812464889 ,112.5700755,26.87793082,58.64603424,217.156365,220.6236367,10.882932,0.102665812,1620000000000 ,1620000000000 ,1620000000000 ,1616812464870 -1616812464898 ,112.5700749,26.87793004,58.64599228,217.1624302,220.6375772,10.881249,0.102652417,1620000000000 ,1620000000000 ,1620000000000 ,1616812464880 -1616812464911 ,112.5700742,26.87792926,58.64593887,217.1668562,220.6491449,10.880784,0.102647033,1620000000000 ,1620000000000 ,1620000000000 ,1616812464890 -1616812464920 ,112.5700735,26.87792849,58.64583969,217.1719105,220.6526139,10.880594,0.10264065,1620000000000 ,1620000000000 ,1620000000000 ,1616812464900 -1616812464928 ,112.5700729,26.87792771,58.64568329,217.1737683,220.6567995,10.880385,0.102638788,1620000000000 ,1620000000000 ,1620000000000 ,1616812464910 -1616812464939 ,112.5700722,26.87792693,58.64546204,217.1769375,220.6580003,10.881018,0.102642394,1620000000000 ,1620000000000 ,1620000000000 ,1616812464920 -1616812464951 ,112.5700715,26.87792615,58.64519119,217.1789866,220.6589224,10.8814125,0.102642635,1620000000000 ,1620000000000 ,1620000000000 ,1616812464930 -1616812464960 ,112.5700709,26.87792537,58.64488602,217.1841502,220.6597218,10.881927,0.102643177,1620000000000 ,1620000000000 ,1620000000000 ,1616812464940 -1616812464969 ,112.5700702,26.87792459,58.6445694,217.1886308,220.6582376,10.880563,0.102638682,1620000000000 ,1620000000000 ,1620000000000 ,1616812464950 -1616812464979 ,112.5700695,26.87792381,58.64426804,217.193248,220.65007,10.878507,0.10261725,1620000000000 ,1620000000000 ,1620000000000 ,1616812464960 -1616812464996 ,112.5700688,26.87792304,58.64395142,217.1980565,220.646007,10.877112,0.102598518,1620000000000 ,1620000000000 ,1620000000000 ,1616812464970 -1616812465000 ,112.5700682,26.87792226,58.64361191,217.201936,220.6526915,10.877271,0.102595223,1620000000000 ,1620000000000 ,1620000000000 ,1616812464980 -1616812465009 ,112.5700675,26.87792148,58.64323807,217.2087116,220.6624524,10.877392,0.102600007,1620000000000 ,1620000000000 ,1620000000000 ,1616812464990 -1616812465023 ,112.5700668,26.8779207,58.64287567,217.2141211,220.6662083,10.877254,0.102600496,1620000000000 ,1620000000000 ,1620000000000 ,1616812465000 -1616812465032 ,112.5700662,26.87791992,58.64255524,217.2176181,220.6674721,10.875664,0.102588541,1620000000000 ,1620000000000 ,1620000000000 ,1616812465010 -1616812465040 ,112.5700655,26.87791914,58.64226913,217.2231643,220.667836,10.874133,0.102574603,1620000000000 ,1620000000000 ,1620000000000 ,1616812465020 -1616812465052 ,112.5700648,26.87791837,58.64199829,217.2300218,220.6799694,10.872761,0.102562752,1620000000000 ,1620000000000 ,1620000000000 ,1616812465030 -1616812465061 ,112.5700642,26.87791759,58.64173508,217.2352674,220.6890998,10.871516,0.102558261,1620000000000 ,1620000000000 ,1620000000000 ,1616812465040 -1616812465071 ,112.5700635,26.87791681,58.64147568,217.2415784,220.6960308,10.86788,0.102527831,1620000000000 ,1620000000000 ,1620000000000 ,1616812465050 -1616812465081 ,112.5700628,26.87791603,58.64125443,217.2463869,220.7058518,10.867514,0.102519177,1620000000000 ,1620000000000 ,1620000000000 ,1616812465060 -1616812465092 ,112.5700622,26.87791526,58.64107895,217.2522062,220.7192263,10.867312,0.102520945,1620000000000 ,1620000000000 ,1620000000000 ,1616812465070 -1616812465102 ,112.5700615,26.87791448,58.64094543,217.2572059,220.7359762,10.86779,0.102530645,1620000000000 ,1620000000000 ,1620000000000 ,1616812465080 -1616812465113 ,112.5700608,26.8779137,58.64086151,217.2620417,220.7355745,10.866758,0.102529927,1620000000000 ,1620000000000 ,1620000000000 ,1616812465090 -1616812465124 ,112.5700602,26.87791293,58.64082718,217.2681889,220.7375056,10.863932,0.102505574,1620000000000 ,1620000000000 ,1620000000000 ,1616812465100 -1616812465133 ,112.5700595,26.87791215,58.64082718,217.273653,220.7502062,10.861123,0.102486202,1620000000000 ,1620000000000 ,1620000000000 ,1616812465110 -1616812465144 ,112.5700588,26.87791137,58.64083481,217.2804559,220.7595602,10.8605585,0.102478471,1620000000000 ,1620000000000 ,1620000000000 ,1616812465120 -1616812465153 ,112.5700581,26.8779106,58.6408577,217.2840895,220.7700611,10.859499,0.102472158,1620000000000 ,1620000000000 ,1620000000000 ,1616812465130 -1616812465161 ,112.5700575,26.87790982,58.64091873,217.2896903,220.7707312,10.858355,0.102463894,1620000000000 ,1620000000000 ,1620000000000 ,1616812465140 -1616812465172 ,112.5700568,26.87790905,58.64099884,217.2938704,220.7647974,10.856351,0.102449933,1620000000000 ,1620000000000 ,1620000000000 ,1616812465150 -1616812465182 ,112.5700561,26.87790827,58.64109421,217.3013016,220.7613193,10.854797,0.102432831,1620000000000 ,1620000000000 ,1620000000000 ,1616812465170 -1616812465193 ,112.5700555,26.8779075,58.64120102,217.3053451,220.7622854,10.853514,0.102422483,1620000000000 ,1620000000000 ,1620000000000 ,1616812465170 -1616812465205 ,112.5700548,26.87790672,58.64133072,217.3111917,220.7585507,10.852831,0.102417645,1620000000000 ,1620000000000 ,1620000000000 ,1616812465180 -1616812465213 ,112.5700541,26.87790594,58.64146423,217.3163554,220.7615108,10.850662,0.102402531,1620000000000 ,1620000000000 ,1620000000000 ,1616812465190 -1616812465225 ,112.5700535,26.87790517,58.64157486,217.3236773,220.7674854,10.848816,0.102384613,1620000000000 ,1620000000000 ,1620000000000 ,1616812465210 -1616812465233 ,112.5700528,26.87790439,58.64212036,217.3327478,220.8553795,10.857748,0.10276711,1620000000000 ,1620000000000 ,1620000000000 ,1616812465220 -1616812465243 ,112.5700521,26.87790361,58.6427269,217.337447,220.8559767,10.856895,0.102811889,1620000000000 ,1620000000000 ,1620000000000 ,1616812465230 -1616812465253 ,112.5700514,26.87790284,58.64332581,217.343922,220.8587281,10.855579,0.102803048,1620000000000 ,1620000000000 ,1620000000000 ,1616812465240 -1616812465265 ,112.5700508,26.87790206,58.64387131,217.3506975,220.8597818,10.854905,0.102795749,1620000000000 ,1620000000000 ,1620000000000 ,1616812465250 -1616812465273 ,112.5700494,26.8779005,58.6447258,217.3625274,220.8757164,10.854284,0.205572299,1620000000000 ,1620000000000 ,1620000000000 ,1616812465260 -1616812465291 ,112.5700488,26.87789973,58.64505005,217.3687839,220.880329,10.853442,0.102776678,1620000000000 ,1620000000000 ,1620000000000 ,1616812465270 -1616812465298 ,112.5700488,26.87789973,58.64505005,217.3687839,-400,10.853442,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812465280 -1616812465307 ,112.5700481,26.87789895,58.64532471,217.3731552,220.8918333,10.853097,0.102776036,1620000000000 ,1620000000000 ,1620000000000 ,1616812465290 -1616812465315 ,112.5700467,26.8778974,58.64583969,217.3817066,220.9197859,10.846048,0.205455482,1620000000000 ,1620000000000 ,1620000000000 ,1616812465300 -1616812465324 ,112.5700461,26.87789662,58.64616394,217.3847665,220.9184579,10.842369,0.102689576,1620000000000 ,1620000000000 ,1620000000000 ,1616812465310 -1616812465333 ,112.5700454,26.87789585,58.6464119,217.3884002,220.9113666,10.838786,0.10264707,1620000000000 ,1620000000000 ,1620000000000 ,1616812465320 -1616812465344 ,112.5700447,26.87789507,58.64650345,217.3934272,220.9422215,10.839736,0.10264791,1620000000000 ,1620000000000 ,1620000000000 ,1616812465330 -1616812465354 ,112.5700441,26.8778943,58.64639664,217.3983996,220.9643944,10.838359,0.102634244,1620000000000 ,1620000000000 ,1620000000000 ,1616812465340 -1616812465365 ,112.5700434,26.87789352,58.64616013,217.4030168,220.9585626,10.840797,0.10263937,1620000000000 ,1620000000000 ,1620000000000 ,1616812465350 -1616812465375 ,112.5700427,26.87789275,58.6459465,217.4070603,220.9402955,10.8380575,0.102625677,1620000000000 ,1620000000000 ,1620000000000 ,1616812465360 -1616812465386 ,112.570042,26.87789197,58.6457901,217.4096557,220.9243942,10.8344345,0.102594226,1620000000000 ,1620000000000 ,1620000000000 ,1616812465370 -1616812465396 ,112.5700414,26.8778912,58.64566803,217.4146554,220.9371019,10.829514,0.102548837,1620000000000 ,1620000000000 ,1620000000000 ,1616812465380 -1616812465405 ,112.5700407,26.87789042,58.64552307,217.4210212,220.9432366,10.828757,0.102529412,1620000000000 ,1620000000000 ,1620000000000 ,1616812465390 -1616812465419 ,112.57004,26.87788965,58.64530945,217.4267039,220.9549301,10.827459,0.10251839,1620000000000 ,1620000000000 ,1620000000000 ,1616812465400 -1616812465425 ,112.5700393,26.87788887,58.64508438,217.4299824,220.9527571,10.827069,0.102514781,1620000000000 ,1620000000000 ,1620000000000 ,1616812465410 -1616812465453 ,112.5700387,26.8778881,58.6448822,217.4340259,220.945221,10.825903,0.102502019,1620000000000 ,1620000000000 ,1620000000000 ,1616812465420 -1616812465458 ,112.570038,26.87788732,58.64471817,217.4389709,220.9410619,10.823303,0.102478649,1620000000000 ,1620000000000 ,1620000000000 ,1616812465430 -1616812465460 ,112.5700373,26.87788655,58.64459229,217.4441619,220.9563011,10.821772,0.102467263,1620000000000 ,1620000000000 ,1620000000000 ,1616812465440 -1616812465467 ,112.5700367,26.87788578,58.64449692,217.4512926,220.9722431,10.820861,0.102466399,1620000000000 ,1620000000000 ,1620000000000 ,1616812465450 -1616812465476 ,112.570036,26.877885,58.6440239,217.4574671,220.8822721,10.818814,0.102091141,1620000000000 ,1620000000000 ,1620000000000 ,1616812465460 -1616812465485 ,112.5700353,26.87788423,58.64358521,217.4613466,220.882502,10.817601,0.102087917,1620000000000 ,1620000000000 ,1620000000000 ,1616812465470 -1616812465495 ,112.5700347,26.87788346,58.64318085,217.4673299,220.8786869,10.8127985,0.102045231,1620000000000 ,1620000000000 ,1620000000000 ,1616812465480 -1616812465505 ,112.570034,26.87788269,58.64281082,217.4718378,220.8943328,10.811663,0.102032972,1620000000000 ,1620000000000 ,1620000000000 ,1616812465490 -1616812465515 ,112.5700333,26.87788192,58.64252853,217.4762364,220.9020153,10.80791,0.102007217,1620000000000 ,1620000000000 ,1620000000000 ,1616812465500 -1616812465526 ,112.5700327,26.87788115,58.64233398,217.4790505,220.9002161,10.805663,0.101985761,1620000000000 ,1620000000000 ,1620000000000 ,1616812465510 -1616812465538 ,112.570032,26.87788038,58.64221954,217.4817825,220.9061153,10.803545,0.101971189,1620000000000 ,1620000000000 ,1620000000000 ,1616812465520 -1616812465547 ,112.5700313,26.87787961,58.64214325,217.4863178,220.9136208,10.799917,0.101941727,1620000000000 ,1620000000000 ,1620000000000 ,1616812465530 -1616812465558 ,112.5700306,26.87787884,58.64211655,217.4913721,220.9187773,10.798114,0.101928758,1620000000000 ,1620000000000 ,1620000000000 ,1616812465540 -1616812465570 ,112.57003,26.87787807,58.64215088,217.4956068,220.9155614,10.795647,0.101907724,1620000000000 ,1620000000000 ,1620000000000 ,1616812465550 -1616812465576 ,112.5700293,26.8778773,58.64224625,217.4991312,220.9179198,10.792731,0.10188313,1620000000000 ,1620000000000 ,1620000000000 ,1616812465560 -1616812465587 ,112.5700286,26.87787653,58.64238739,217.5027649,220.9213141,10.788867,0.101853201,1620000000000 ,1620000000000 ,1620000000000 ,1616812465570 -1616812465598 ,112.570028,26.87787576,58.64252853,217.506945,220.924397,10.785049,0.101823192,1620000000000 ,1620000000000 ,1620000000000 ,1616812465580 -1616812465606 ,112.5700273,26.87787499,58.64266968,217.5100868,220.9235368,10.782433,0.101793817,1620000000000 ,1620000000000 ,1620000000000 ,1616812465590 -1616812465616 ,112.5700266,26.87787422,58.64284897,217.5133653,220.9306094,10.780267,0.101774571,1620000000000 ,1620000000000 ,1620000000000 ,1616812465600 -1616812465627 ,112.570026,26.87787345,58.64306259,217.5166438,220.9379298,10.777393,0.101753914,1620000000000 ,1620000000000 ,1620000000000 ,1616812465610 -1616812465637 ,112.5700253,26.87787268,58.64326096,217.5196764,220.9421943,10.774704,0.101733103,1620000000000 ,1620000000000 ,1620000000000 ,1616812465620 -1616812465646 ,112.5700246,26.87787191,58.64344788,217.521261,220.9508316,10.773278,0.101718395,1620000000000 ,1620000000000 ,1620000000000 ,1616812465630 -1616812465658 ,112.570024,26.87787115,58.64364624,217.5240204,220.9520303,10.768774,0.101684107,1620000000000 ,1620000000000 ,1620000000000 ,1616812465640 -1616812465668 ,112.5700233,26.87787038,58.6438446,217.5253045,220.9517546,10.766531,0.101658525,1620000000000 ,1620000000000 ,1620000000000 ,1616812465650 -1616812465676 ,112.5700226,26.87786961,58.64399338,217.5277634,220.9601754,10.763112,0.101634258,1620000000000 ,1620000000000 ,1620000000000 ,1616812465660 -1616812465687 ,112.570022,26.87786884,58.64406586,217.5280639,220.9769359,10.759936,0.101603509,1620000000000 ,1620000000000 ,1620000000000 ,1616812465670 -1616812465697 ,112.5700213,26.87786808,58.64410019,217.5267798,220.9827765,10.756415,0.101569117,1620000000000 ,1620000000000 ,1620000000000 ,1616812465680 -1616812465709 ,112.5700206,26.87786731,58.64410019,217.5255231,220.9883656,10.752681,0.10153569,1620000000000 ,1620000000000 ,1620000000000 ,1616812465690 -1616812465720 ,112.57002,26.87786654,58.64403915,217.5241024,220.997909,10.751168,0.101521345,1620000000000 ,1620000000000 ,1620000000000 ,1616812465700 -1616812465729 ,112.5700193,26.87786578,58.64386749,217.5223539,221.0042525,10.749687,0.101501561,1620000000000 ,1620000000000 ,1620000000000 ,1616812465710 -1616812465739 ,112.5700186,26.87786501,58.64360809,217.5204414,221.0105006,10.746,0.101468743,1620000000000 ,1620000000000 ,1620000000000 ,1616812465720 -1616812465748 ,112.570018,26.87786425,58.64332581,217.5165345,221.0115287,10.743386,0.101441604,1620000000000 ,1620000000000 ,1620000000000 ,1616812465730 -1616812465758 ,112.5700173,26.87786348,58.64302063,217.5135293,221.0082558,10.740404,0.101414498,1620000000000 ,1620000000000 ,1620000000000 ,1616812465740 -1616812465769 ,112.5700167,26.87786272,58.64265823,217.5106333,221.0035342,10.737828,0.101381352,1620000000000 ,1620000000000 ,1620000000000 ,1616812465750 -1616812465778 ,112.570016,26.87786195,58.64220428,217.5072182,221.0087085,10.7348385,0.101355161,1620000000000 ,1620000000000 ,1620000000000 ,1616812465760 -1616812465793 ,112.5700153,26.87786119,58.64168549,217.502601,221.0011608,10.731391,0.101318081,1620000000000 ,1620000000000 ,1620000000000 ,1616812465770 -1616812465801 ,112.5700147,26.87786042,58.64112091,217.4970548,220.9852341,10.729116,0.101287178,1620000000000 ,1620000000000 ,1620000000000 ,1616812465780 -1616812465808 ,112.570014,26.87785966,58.64048004,217.4905252,220.9738073,10.727265,0.101263125,1620000000000 ,1620000000000 ,1620000000000 ,1616812465790 -1616812465820 ,112.5700133,26.87785889,58.63974762,217.4854435,220.972313,10.726041,0.101246484,1620000000000 ,1620000000000 ,1620000000000 ,1616812465800 -1616812465828 ,112.5700127,26.87785813,58.63896179,217.4800887,220.9642206,10.7224,0.101214635,1620000000000 ,1620000000000 ,1620000000000 ,1616812465810 -1616812465839 ,112.570012,26.87785737,58.63817978,217.4742147,220.952437,10.719269,0.101178345,1620000000000 ,1620000000000 ,1620000000000 ,1616812465820 -1616812465849 ,112.5700113,26.8778566,58.63740158,217.4693516,220.9398397,10.715312,0.101139706,1620000000000 ,1620000000000 ,1620000000000 ,1616812465830 -1616812465860 ,112.5700107,26.87785584,58.63657761,217.464188,220.9302894,10.712417,0.10110475,1620000000000 ,1620000000000 ,1620000000000 ,1616812465840 -1616812465871 ,112.57001,26.87785507,58.63570404,217.4592156,220.9380351,10.710227,0.101079742,1620000000000 ,1620000000000 ,1620000000000 ,1616812465850 -1616812465881 ,112.5700094,26.87785431,58.63480377,217.4543798,220.9259904,10.706847,0.10104616,1620000000000 ,1620000000000 ,1620000000000 ,1616812465860 -1616812465890 ,112.5700087,26.87785355,58.63393021,217.4471671,220.9145594,10.703625,0.101017304,1620000000000 ,1620000000000 ,1620000000000 ,1616812465870 -1616812465899 ,112.570008,26.87785278,58.63309479,217.4421948,220.9192194,10.700252,0.100982996,1620000000000 ,1620000000000 ,1620000000000 ,1616812465880 -1616812465910 ,112.5700074,26.87785202,58.63225555,217.4344903,220.9194043,10.697166,0.100954133,1620000000000 ,1620000000000 ,1620000000000 ,1616812465890 -1616812465920 ,112.5700067,26.87785126,58.63137817,217.4303102,220.9192467,10.694714,0.100927739,1620000000000 ,1620000000000 ,1620000000000 ,1616812465900 -1616812465931 ,112.570006,26.8778505,58.63049698,217.42348,220.9083793,10.692022,0.10089573,1620000000000 ,1620000000000 ,1620000000000 ,1616812465910 -1616812465941 ,112.5700054,26.87784973,58.6296463,217.4193546,220.8963857,10.688998,0.100868064,1620000000000 ,1620000000000 ,1620000000000 ,1616812465920 -1616812465954 ,112.5700047,26.87784897,58.62883759,217.4141637,220.8880602,10.685072,0.100833314,1620000000000 ,1620000000000 ,1620000000000 ,1616812465930 -1616812465959 ,112.5700041,26.87784821,58.62805939,217.4096284,220.8804279,10.683222,0.100807988,1620000000000 ,1620000000000 ,1620000000000 ,1616812465940 -1616812465970 ,112.5700034,26.87784745,58.62734985,217.403372,220.8791541,10.677399,0.100765122,1620000000000 ,1620000000000 ,1620000000000 ,1616812465950 -1616812465990 ,112.5700028,26.87784669,58.62673187,217.3974434,220.8689549,10.673957,0.100727652,1620000000000 ,1620000000000 ,1620000000000 ,1616812465960 -1616812465994 ,112.5700021,26.87784592,58.62619781,217.3915148,220.852806,10.670122,0.100692143,1620000000000 ,1620000000000 ,1620000000000 ,1616812465970 -1616812465999 ,112.5700014,26.87784516,58.6257019,217.3867883,220.8372171,10.667182,0.100661895,1620000000000 ,1620000000000 ,1620000000000 ,1616812465980 -1616812466010 ,112.5700008,26.8778444,58.62522888,217.3817886,220.8279722,10.664577,0.100635705,1620000000000 ,1620000000000 ,1620000000000 ,1616812465990 -1616812466024 ,112.5700001,26.87784364,58.62480164,217.3770621,220.8166209,10.6623125,0.100612803,1620000000000 ,1620000000000 ,1620000000000 ,1616812466000 -1616812466032 ,112.5699995,26.87784288,58.62446594,217.3727454,220.8026843,10.658973,0.100583963,1620000000000 ,1620000000000 ,1620000000000 ,1616812466010 -1616812466041 ,112.5699988,26.87784212,58.62423706,217.3697128,220.7914243,10.655278,0.100553178,1620000000000 ,1620000000000 ,1620000000000 ,1616812466020 -1616812466051 ,112.5699981,26.87784136,58.62408447,217.3669534,220.7849708,10.650222,0.100513788,1620000000000 ,1620000000000 ,1620000000000 ,1616812466030 -1616812466060 ,112.5699975,26.8778406,58.62398529,217.3620083,220.7831896,10.64668,0.100474523,1620000000000 ,1620000000000 ,1620000000000 ,1616812466040 -1616812466071 ,112.5699968,26.87783983,58.62393188,217.3582927,220.778417,10.641823,0.100436067,1620000000000 ,1620000000000 ,1620000000000 ,1616812466050 -1616812466086 ,112.5699962,26.87783907,58.62392044,217.3554787,220.7619011,10.639563,0.100406945,1620000000000 ,1620000000000 ,1620000000000 ,1616812466060 -1616812466094 ,112.5699955,26.87783831,58.6239624,217.3513259,220.7625131,10.636941,0.100387506,1620000000000 ,1620000000000 ,1620000000000 ,1616812466070 -1616812466102 ,112.5699949,26.87783755,58.62407303,217.3487851,220.7667527,10.63396,0.100365151,1620000000000 ,1620000000000 ,1620000000000 ,1616812466080 -1616812466114 ,112.5699942,26.87783679,58.62424469,217.344605,220.7690924,10.629636,0.100334335,1620000000000 ,1620000000000 ,1620000000000 ,1616812466090 -1616812466121 ,112.5699936,26.87783603,58.62446594,217.3391955,220.7656657,10.625355,0.100294791,1620000000000 ,1620000000000 ,1620000000000 ,1616812466100 -1616812466131 ,112.5699929,26.87783527,58.62470245,217.3350428,220.7598494,10.621312,0.100256841,1620000000000 ,1620000000000 ,1620000000000 ,1616812466110 -1616812466140 ,112.5699922,26.87783452,58.62491608,217.3294693,220.7574827,10.617881,0.100223081,1620000000000 ,1620000000000 ,1620000000000 ,1616812466120 -1616812466151 ,112.5699916,26.87783376,58.62509155,217.3235134,220.7538973,10.6167965,0.100209319,1620000000000 ,1620000000000 ,1620000000000 ,1616812466130 -1616812466162 ,112.5699909,26.877833,58.62524796,217.3174755,220.7525886,10.612635,0.10017852,1620000000000 ,1620000000000 ,1620000000000 ,1616812466140 -1616812466172 ,112.5699903,26.87783224,58.62542343,217.3107546,220.7542897,10.6085005,0.100141667,1620000000000 ,1620000000000 ,1620000000000 ,1616812466150 -1616812466182 ,112.5699896,26.87783148,58.62562943,217.3068204,220.7467852,10.604418,0.100105798,1620000000000 ,1620000000000 ,1620000000000 ,1616812466160 -1616812466192 ,112.569989,26.87783072,58.62581253,217.2998263,220.7373962,10.601368,0.100072982,1620000000000 ,1620000000000 ,1620000000000 ,1616812466170 -1616812466201 ,112.5699883,26.87782996,58.62592316,217.2935425,220.7286993,10.599423,0.100048307,1620000000000 ,1620000000000 ,1620000000000 ,1616812466180 -1616812466212 ,112.5699877,26.87782921,58.62592697,217.2858108,220.7251321,10.596648,0.100021101,1620000000000 ,1620000000000 ,1620000000000 ,1616812466190 -1616812466222 ,112.569987,26.87782845,58.62585449,217.2784888,220.7158817,10.5939045,0.099992447,1620000000000 ,1620000000000 ,1620000000000 ,1616812466200 -1616812466232 ,112.5699864,26.87782769,58.62539291,217.2818766,221.1755789,10.596891,0.100146215,1620000000000 ,1620000000000 ,1620000000000 ,1616812466210 -1616812466243 ,112.5699857,26.87782694,58.62483215,217.275784,221.216652,10.594454,0.100154486,1620000000000 ,1620000000000 ,1620000000000 ,1616812466220 -1616812466255 ,112.569985,26.87782619,58.62418365,217.2696095,221.21277,10.591833,0.100127484,1620000000000 ,1620000000000 ,1620000000000 ,1616812466230 -1616812466262 ,112.5699844,26.87782543,58.62343216,217.2643913,221.2098912,10.589211,0.100099642,1620000000000 ,1620000000000 ,1620000000000 ,1616812466240 -1616812466273 ,112.5699837,26.87782468,58.62260056,217.2576977,221.1988452,10.585872,0.100065296,1620000000000 ,1620000000000 ,1620000000000 ,1616812466260 -1616812466283 ,112.5699831,26.87782393,58.62169647,217.2510314,221.1845364,10.583663,0.100035193,1620000000000 ,1620000000000 ,1620000000000 ,1616812466270 -1616812466293 ,112.5699824,26.87782318,58.62071609,217.2440373,221.1817459,10.581491,0.100010074,1620000000000 ,1620000000000 ,1620000000000 ,1616812466280 -1616812466304 ,112.5699818,26.87782242,58.61963272,217.2379175,221.1838487,10.579626,0.099987994,1620000000000 ,1620000000000 ,1620000000000 ,1616812466280 -1616812466315 ,112.5699804,26.87782092,58.61727524,217.2213338,221.1773426,10.573277,0.199884358,1620000000000 ,1620000000000 ,1620000000000 ,1616812466300 -1616812466326 ,112.5699804,26.87782092,58.61727524,217.2213338,-400,10.573277,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812466310 -1616812466335 ,112.5699791,26.87781942,58.61471558,217.2075095,221.1594582,10.567464,0.199743845,1620000000000 ,1620000000000 ,1620000000000 ,1616812466320 -1616812466344 ,112.5699785,26.87781866,58.61327362,217.2005153,221.1575368,10.56571,0.099833253,1620000000000 ,1620000000000 ,1620000000000 ,1616812466330 -1616812466354 ,112.5699778,26.87781791,58.61175156,217.1931387,221.1507715,10.563678,0.099805997,1620000000000 ,1620000000000 ,1620000000000 ,1616812466340 -1616812466364 ,112.5699771,26.87781716,58.61019516,217.1843141,221.137557,10.561909,0.099787765,1620000000000 ,1620000000000 ,1620000000000 ,1616812466350 -1616812466374 ,112.5699765,26.87781641,58.60861969,217.1762272,221.1322108,10.559646,0.099764204,1620000000000 ,1620000000000 ,1620000000000 ,1616812466360 -1616812466391 ,112.5699758,26.87781566,58.60702896,217.169315,221.1309515,10.556625,0.099730208,1620000000000 ,1620000000000 ,1620000000000 ,1616812466370 -1616812466394 ,112.5699752,26.87781491,58.60544586,217.1618292,221.1172153,10.552005,0.099693265,1620000000000 ,1620000000000 ,1620000000000 ,1616812466380 -1616812466411 ,112.5699752,26.87781491,58.60544586,217.1618292,-400,10.552005,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812466390 -1616812466415 ,112.5699739,26.87781341,58.60233688,217.1481961,221.0969167,10.546015,0.199270389,1620000000000 ,1620000000000 ,1620000000000 ,1616812466400 -1616812466427 ,112.5699739,26.87781341,58.60233688,217.1481961,-400,10.546015,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812466410 -1616812466443 ,112.5699726,26.8778119,58.5991745,217.1316944,221.0711,10.540596,0.199157207,1620000000000 ,1620000000000 ,1620000000000 ,1616812466420 -1616812466448 ,112.5699719,26.87781115,58.59762573,217.1250008,221.0526101,10.53778,0.099536531,1620000000000 ,1620000000000 ,1620000000000 ,1616812466430 -1616812466455 ,112.5699713,26.8778104,58.59611511,217.1182525,221.0372701,10.535628,0.099509939,1620000000000 ,1620000000000 ,1620000000000 ,1616812466440 -1616812466464 ,112.5699706,26.87780965,58.5946312,217.1106301,221.0255943,10.53192,0.099477845,1620000000000 ,1620000000000 ,1620000000000 ,1616812466450 -1616812466475 ,112.56997,26.8778089,58.59347534,217.1013956,220.5897926,10.528585,0.099296447,1620000000000 ,1620000000000 ,1620000000000 ,1616812466460 -1616812466485 ,112.5699693,26.87780814,58.59234238,217.0939644,220.5785564,10.525004,0.099262115,1620000000000 ,1620000000000 ,1620000000000 ,1616812466470 -1616812466499 ,112.5699687,26.87780739,58.59124374,217.084648,220.5727131,10.521985,0.099231305,1620000000000 ,1620000000000 ,1620000000000 ,1616812466480 -1616812466507 ,112.569968,26.87780664,58.59020996,217.0769709,220.5601423,10.5182295,0.099196364,1620000000000 ,1620000000000 ,1620000000000 ,1616812466490 -1616812466516 ,112.5699674,26.87780588,58.58922958,217.0676272,220.556415,10.514608,0.099163899,1620000000000 ,1620000000000 ,1620000000000 ,1616812466500 -1616812466525 ,112.5699667,26.87780513,58.58831024,217.0588299,220.5532137,10.51085,0.099130737,1620000000000 ,1620000000000 ,1620000000000 ,1616812466510 -1616812466534 ,112.5699661,26.87780438,58.58743668,217.0488578,220.5439328,10.50703,0.099094761,1620000000000 ,1620000000000 ,1620000000000 ,1616812466520 -1616812466545 ,112.5699654,26.87780362,58.58661652,217.0383667,220.5338254,10.50345,0.099059286,1620000000000 ,1620000000000 ,1620000000000 ,1616812466530 -1616812466555 ,112.5699648,26.87780287,58.58583069,217.0263455,220.5283628,10.500666,0.099030087,1620000000000 ,1620000000000 ,1620000000000 ,1616812466540 -1616812466566 ,112.5699642,26.87780212,58.58507538,217.0172204,220.5251552,10.498078,0.099007852,1620000000000 ,1620000000000 ,1620000000000 ,1616812466550 -1616812466576 ,112.5699635,26.87780137,58.58435822,217.0066473,220.5201425,10.494566,0.098976744,1620000000000 ,1620000000000 ,1620000000000 ,1616812466560 -1616812466588 ,112.5699629,26.87780061,58.58370972,216.9961288,220.5098063,10.489998,0.098936543,1620000000000 ,1620000000000 ,1620000000000 ,1616812466570 -1616812466595 ,112.5699622,26.87779986,58.58313751,216.9842989,220.5008499,10.485874,0.098898923,1620000000000 ,1620000000000 ,1620000000000 ,1616812466580 -1616812466606 ,112.5699616,26.87779911,58.5826416,216.9729608,220.4989635,10.4822035,0.098864801,1620000000000 ,1620000000000 ,1620000000000 ,1616812466590 -1616812466618 ,112.5699609,26.87779836,58.58221817,216.9595463,220.4808074,10.47831,0.098828024,1620000000000 ,1620000000000 ,1620000000000 ,1616812466600 -1616812466627 ,112.5699603,26.87779761,58.58184433,216.9488912,220.4673171,10.47568,0.098800274,1620000000000 ,1620000000000 ,1620000000000 ,1616812466610 -1616812466636 ,112.5699597,26.87779686,58.58149338,216.9361597,220.4573016,10.474274,0.098782946,1620000000000 ,1620000000000 ,1620000000000 ,1616812466620 -1616812466646 ,112.569959,26.8777961,58.58114624,216.9252587,220.4453833,10.473508,0.098771894,1620000000000 ,1620000000000 ,1620000000000 ,1616812466630 -1616812466657 ,112.5699584,26.87779535,58.58081818,216.9129644,220.4311566,10.470972,0.098753631,1620000000000 ,1620000000000 ,1620000000000 ,1616812466640 -1616812466667 ,112.5699577,26.8777946,58.58049393,216.9004788,220.4122664,10.46991,0.098735847,1620000000000 ,1620000000000 ,1620000000000 ,1616812466650 -1616812466678 ,112.5699571,26.87779385,58.58018494,216.8898237,220.3984558,10.467116,0.098711549,1620000000000 ,1620000000000 ,1620000000000 ,1616812466660 -1616812466689 ,112.5699565,26.8777931,58.57990646,216.8774747,220.3856399,10.464903,0.098686711,1620000000000 ,1620000000000 ,1620000000000 ,1616812466670 -1616812466696 ,112.5699558,26.87779235,58.57967377,216.866082,220.3654378,10.463361,0.098671608,1620000000000 ,1620000000000 ,1620000000000 ,1616812466680 -1616812466706 ,112.5699552,26.87779159,58.57943344,216.8560279,220.3536349,10.462619,0.098658315,1620000000000 ,1620000000000 ,1620000000000 ,1616812466690 -1616812466717 ,112.5699545,26.87779084,58.57914352,216.844362,220.3427543,10.462393,0.098651891,1620000000000 ,1620000000000 ,1620000000000 ,1616812466700 -1616812466727 ,112.5699539,26.87779009,58.57880402,216.8318764,220.3324119,10.461283,0.098641043,1620000000000 ,1620000000000 ,1620000000000 ,1616812466710 -1616812466736 ,112.5699533,26.87778934,58.57845306,216.8176149,220.3202891,10.46002,0.098626622,1620000000000 ,1620000000000 ,1620000000000 ,1616812466720 -1616812466749 ,112.5699526,26.87778859,58.57809067,216.8064681,220.3055134,10.4594755,0.098617126,1620000000000 ,1620000000000 ,1620000000000 ,1616812466730 -1616812466756 ,112.569952,26.87778783,58.57770157,216.7938732,220.29758,10.457506,0.098599575,1620000000000 ,1620000000000 ,1620000000000 ,1616812466740 -1616812466768 ,112.5699514,26.87778708,58.57727814,216.7810598,220.293891,10.456736,0.09858638,1620000000000 ,1620000000000 ,1620000000000 ,1616812466750 -1616812466777 ,112.5699507,26.87778633,58.57681274,216.766771,220.2822158,10.45712,0.098585312,1620000000000 ,1620000000000 ,1620000000000 ,1616812466760 -1616812466788 ,112.5699501,26.87778558,58.57629776,216.7538483,220.2714642,10.45701,0.098581416,1620000000000 ,1620000000000 ,1620000000000 ,1616812466770 -1616812466799 ,112.5699494,26.87778483,58.57574844,216.7396688,220.2567918,10.456673,0.098576094,1620000000000 ,1620000000000 ,1620000000000 ,1616812466780 -1616812466816 ,112.5699488,26.87778407,58.57518768,216.7271286,220.2473778,10.454216,0.098554894,1620000000000 ,1620000000000 ,1620000000000 ,1616812466790 -1616812466818 ,112.5699482,26.87778332,58.574646,216.7105722,220.2343181,10.451475,0.098526091,1620000000000 ,1620000000000 ,1620000000000 ,1616812466800 -1616812466829 ,112.5699475,26.87778257,58.5741272,216.6952726,220.2176474,10.448809,0.098500336,1620000000000 ,1620000000000 ,1620000000000 ,1616812466810 -1616812466840 ,112.5699469,26.87778182,58.57361221,216.6801642,220.2083288,10.448187,0.0984887,1620000000000 ,1620000000000 ,1620000000000 ,1616812466820 -1616812466850 ,112.5699463,26.87778106,58.57308578,216.6665858,220.1942121,10.448233,0.098484151,1620000000000 ,1620000000000 ,1620000000000 ,1616812466830 -1616812466858 ,112.5699456,26.87778031,58.57255554,216.6519692,220.173038,10.448423,0.098480495,1620000000000 ,1620000000000 ,1620000000000 ,1616812466840 -1616812466874 ,112.569945,26.87777956,58.57201004,216.6369428,220.1552616,10.450868,0.098495885,1620000000000 ,1620000000000 ,1620000000000 ,1616812466850 -1616812466880 ,112.5699444,26.87777881,58.57141876,216.6218344,220.1378222,10.452022,0.098503389,1620000000000 ,1620000000000 ,1620000000000 ,1616812466860 -1616812466889 ,112.5699437,26.87777805,58.57076263,216.6062342,220.1194775,10.453318,0.098508571,1620000000000 ,1620000000000 ,1620000000000 ,1616812466870 -1616812466899 ,112.5699431,26.8777773,58.57007599,216.5917542,220.1020082,10.453106,0.098506039,1620000000000 ,1620000000000 ,1620000000000 ,1616812466880 -1616812466912 ,112.5699425,26.87777655,58.56938934,216.577001,220.0772003,10.452465,0.098493921,1620000000000 ,1620000000000 ,1620000000000 ,1616812466890 -1616812466920 ,112.5699418,26.87777579,58.5687027,216.5603354,220.0631638,10.452899,0.09849306,1620000000000 ,1620000000000 ,1620000000000 ,1616812466900 -1616812466931 ,112.5699412,26.87777504,58.56798935,216.5442435,220.0504897,10.4540615,0.098497379,1620000000000 ,1620000000000 ,1620000000000 ,1616812466910 -1616812466941 ,112.5699406,26.87777428,58.56722641,216.5278237,220.0326518,10.45614,0.098508169,1620000000000 ,1620000000000 ,1620000000000 ,1616812466920 -1616812466950 ,112.5699399,26.87777353,58.56642151,216.5114039,220.0149618,10.457793,0.098519709,1620000000000 ,1620000000000 ,1620000000000 ,1616812466930 -1616812466960 ,112.5699393,26.87777277,58.56555557,216.495995,219.9949276,10.459353,0.098528952,1620000000000 ,1620000000000 ,1620000000000 ,1616812466940 -1616812466983 ,112.5699387,26.87777202,58.5646286,216.4799304,219.9776854,10.460578,0.098531696,1620000000000 ,1620000000000 ,1620000000000 ,1616812466950 -1616812466986 ,112.569938,26.87777126,58.56365967,216.4644668,219.9698354,10.461882,0.0985421,1620000000000 ,1620000000000 ,1620000000000 ,1616812466960 -1616812466990 ,112.5699374,26.87777051,58.5626564,216.4490853,219.9526058,10.463216,0.09854705,1620000000000 ,1620000000000 ,1620000000000 ,1616812466970 -1616812467000 ,112.5699368,26.87776975,58.56164551,216.4327474,219.9405109,10.464853,0.098557878,1620000000000 ,1620000000000 ,1620000000000 ,1616812466980 -1616812467009 ,112.5699361,26.877769,58.5606308,216.4175298,219.9248652,10.46654,0.098573843,1620000000000 ,1620000000000 ,1620000000000 ,1616812466990 -1616812467023 ,112.5699355,26.87776824,58.55961609,216.4005363,219.9099794,10.469181,0.098586306,1620000000000 ,1620000000000 ,1620000000000 ,1616812467000 -1616812467030 ,112.5699349,26.87776748,58.55861282,216.3828051,219.9002845,10.47072,0.09860587,1620000000000 ,1620000000000 ,1620000000000 ,1616812467010 -1616812467041 ,112.5699342,26.87776673,58.557621,216.3649646,219.8831145,10.471282,0.098606369,1620000000000 ,1620000000000 ,1620000000000 ,1616812467020 -1616812467050 ,112.5699336,26.87776597,58.55667114,216.3476433,219.8688637,10.471761,0.098612808,1620000000000 ,1620000000000 ,1620000000000 ,1616812467030 -1616812467060 ,112.569933,26.87776521,58.5557785,216.3313328,219.8474601,10.471481,0.098605392,1620000000000 ,1620000000000 ,1620000000000 ,1616812467040 -1616812467070 ,112.5699323,26.87776446,58.5549469,216.3150496,219.8265211,10.472419,0.098609345,1620000000000 ,1620000000000 ,1620000000000 ,1616812467050 -1616812467080 ,112.5699317,26.8777637,58.55415726,216.2986572,219.806218,10.472939,0.098614976,1620000000000 ,1620000000000 ,1620000000000 ,1616812467060 -1616812467091 ,112.5699311,26.87776294,58.55342484,216.2825652,219.7927941,10.473106,0.098615214,1620000000000 ,1620000000000 ,1620000000000 ,1616812467070 -1616812467101 ,112.5699304,26.87776218,58.55277252,216.2661728,219.7681451,10.472481,0.098608562,1620000000000 ,1620000000000 ,1620000000000 ,1616812467080 -1616812467114 ,112.5699298,26.87776142,58.55221558,216.2506546,219.7477734,10.472596,0.098607641,1620000000000 ,1620000000000 ,1620000000000 ,1616812467090 -1616812467125 ,112.5699292,26.87776067,58.55173874,216.2344534,219.7321287,10.473971,0.098617528,1620000000000 ,1620000000000 ,1620000000000 ,1616812467100 -1616812467133 ,112.5699285,26.87775991,58.55134201,216.2183068,219.7129607,10.475225,0.098631505,1620000000000 ,1620000000000 ,1620000000000 ,1616812467110 -1616812467143 ,112.5699279,26.87775915,58.55103683,216.2015319,219.6914885,10.475829,0.098636805,1620000000000 ,1620000000000 ,1620000000000 ,1616812467120 -1616812467151 ,112.5699273,26.87775839,58.55083084,216.1843744,219.6718875,10.474304,0.098628572,1620000000000 ,1620000000000 ,1620000000000 ,1616812467130 -1616812467160 ,112.5699267,26.87775763,58.55070114,216.168747,219.6554409,10.473767,0.098622491,1620000000000 ,1620000000000 ,1620000000000 ,1616812467140 -1616812467171 ,112.569926,26.87775687,58.55062866,216.153584,219.6417682,10.4744625,0.098626252,1620000000000 ,1620000000000 ,1620000000000 ,1616812467150 -1616812467181 ,112.5699254,26.87775611,58.55059433,216.136809,219.6253477,10.475781,0.098635078,1620000000000 ,1620000000000 ,1620000000000 ,1616812467160 -1616812467197 ,112.5699248,26.87775535,58.5505867,216.1212635,219.6042109,10.476917,0.098643674,1620000000000 ,1620000000000 ,1620000000000 ,1616812467170 -1616812467204 ,112.5699241,26.87775459,58.55060196,216.1053355,219.5907629,10.477372,0.098652169,1620000000000 ,1620000000000 ,1620000000000 ,1616812467180 -1616812467214 ,112.5699235,26.87775383,58.55064774,216.0856919,219.5763691,10.477686,0.098654727,1620000000000 ,1620000000000 ,1620000000000 ,1616812467190 -1616812467222 ,112.5699229,26.87775307,58.5508461,216.0617589,219.7848878,10.490054,0.098892521,1620000000000 ,1620000000000 ,1620000000000 ,1616812467200 -1616812467231 ,112.5699222,26.87775231,58.55122375,216.0461587,220.1370261,10.491022,0.09927204,1620000000000 ,1620000000000 ,1620000000000 ,1616812467210 -1616812467241 ,112.5699216,26.87775155,58.55160141,216.0287008,220.1207231,10.491304,0.099274778,1620000000000 ,1620000000000 ,1620000000000 ,1616812467220 -1616812467252 ,112.569921,26.87775079,58.55199051,216.0094943,220.1084107,10.490778,0.099270913,1620000000000 ,1620000000000 ,1620000000000 ,1616812467230 -1616812467262 ,112.5699203,26.87775003,58.55239105,215.9897141,220.0942226,10.490321,0.099265433,1620000000000 ,1620000000000 ,1620000000000 ,1616812467240 -1616812467273 ,112.5699197,26.87774927,58.5527916,215.9711633,220.0782576,10.491124,0.099266272,1620000000000 ,1620000000000 ,1620000000000 ,1616812467250 -1616812467300 ,112.569919,26.87774851,58.55316544,215.9513557,220.0601464,10.4924135,0.099271855,1620000000000 ,1620000000000 ,1620000000000 ,1616812467270 -1616812467303 ,112.5699184,26.87774775,58.5534935,215.9317121,220.048557,10.4936905,0.099283363,1620000000000 ,1620000000000 ,1620000000000 ,1616812467280 -1616812467311 ,112.5699178,26.87774699,58.5537529,215.910921,220.0267158,10.494919,0.099290671,1620000000000 ,1620000000000 ,1620000000000 ,1616812467280 -1616812467314 ,112.5699171,26.87774623,58.55394745,215.8911954,220.0053343,10.495076,0.099284685,1620000000000 ,1620000000000 ,1620000000000 ,1616812467300 -1616812467322 ,112.5699159,26.87774471,58.55418396,215.8523999,219.9736465,10.496387,0.1985648,1620000000000 ,1620000000000 ,1620000000000 ,1616812467310 -1616812467334 ,112.5699152,26.87774395,58.55422211,215.8306526,219.9471254,10.497422,0.099290034,1620000000000 ,1620000000000 ,1620000000000 ,1616812467320 -1616812467343 ,112.5699146,26.87774319,58.55421066,215.8117193,219.9253439,10.497963,0.099286498,1620000000000 ,1620000000000 ,1620000000000 ,1616812467330 -1616812467354 ,112.5699139,26.87774243,58.55417633,215.7912014,219.9002648,10.498612,0.099290275,1620000000000 ,1620000000000 ,1620000000000 ,1616812467340 -1616812467365 ,112.5699133,26.87774167,58.55411148,215.7717491,219.8766131,10.499641,0.099289276,1620000000000 ,1620000000000 ,1620000000000 ,1616812467350 -1616812467374 ,112.5699127,26.8777409,58.55397797,215.7521874,219.855858,10.50149,0.099301266,1620000000000 ,1620000000000 ,1620000000000 ,1616812467360 -1616812467387 ,112.569912,26.87774014,58.55377579,215.7313417,219.8381482,10.502778,0.099308053,1620000000000 ,1620000000000 ,1620000000000 ,1616812467370 -1616812467398 ,112.5699114,26.87773938,58.55355072,215.7102227,219.817407,10.504241,0.099314388,1620000000000 ,1620000000000 ,1620000000000 ,1616812467380 -1616812467404 ,112.5699114,26.87773938,58.55355072,215.7102227,-400,10.504241,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812467380 -1616812467414 ,112.5699101,26.87773785,58.55309296,215.66681,219.7808455,10.507028,0.198658747,1620000000000 ,1620000000000 ,1620000000000 ,1616812467400 -1616812467425 ,112.5699095,26.87773709,58.55278397,215.6467839,219.7570687,10.510063,0.099351164,1620000000000 ,1620000000000 ,1620000000000 ,1616812467410 -1616812467440 ,112.5699089,26.87773632,58.5524025,215.6238891,219.7390249,10.511815,0.099361732,1620000000000 ,1620000000000 ,1620000000000 ,1616812467420 -1616812467445 ,112.5699082,26.87773556,58.55200195,215.6034805,219.716234,10.513516,0.099373693,1620000000000 ,1620000000000 ,1620000000000 ,1616812467430 -1616812467455 ,112.5699076,26.87773479,58.55162048,215.5814053,219.6909597,10.515177,0.099385228,1620000000000 ,1620000000000 ,1620000000000 ,1616812467440 -1616812467464 ,112.569907,26.87773403,58.55112839,215.55974,219.4449636,10.518129,0.09917459,1620000000000 ,1620000000000 ,1620000000000 ,1616812467450 -1616812467474 ,112.5699063,26.87773326,58.55049515,215.5382112,219.2014688,10.521063,0.098965815,1620000000000 ,1620000000000 ,1620000000000 ,1616812467460 -1616812467484 ,112.5699057,26.87773249,58.54985046,215.5156716,219.1838769,10.52452,0.098995597,1620000000000 ,1620000000000 ,1620000000000 ,1616812467470 -1616812467495 ,112.5699051,26.87773173,58.54922104,215.4946619,219.1572979,10.5276,0.099019565,1620000000000 ,1620000000000 ,1620000000000 ,1616812467480 -1616812467505 ,112.5699045,26.87773096,58.54861069,215.4746358,219.1258545,10.532691,0.09905703,1620000000000 ,1620000000000 ,1620000000000 ,1616812467490 -1616812467515 ,112.5699038,26.87773019,58.54798508,215.4548283,219.104274,10.5371475,0.099097698,1620000000000 ,1620000000000 ,1620000000000 ,1616812467500 -1616812467524 ,112.5699032,26.87772942,58.54733658,215.4342831,219.089043,10.542357,0.099141263,1620000000000 ,1620000000000 ,1620000000000 ,1616812467510 -1616812467537 ,112.5699026,26.87772865,58.54669189,215.4116068,219.0621502,10.545631,0.099171346,1620000000000 ,1620000000000 ,1620000000000 ,1616812467520 -1616812467549 ,112.569902,26.87772788,58.5460701,215.3913075,219.0340537,10.55009,0.099204576,1620000000000 ,1620000000000 ,1620000000000 ,1616812467530 -1616812467556 ,112.5699013,26.87772711,58.54550171,215.3708989,219.0119101,10.553852,0.099243732,1620000000000 ,1620000000000 ,1620000000000 ,1616812467540 -1616812467565 ,112.5699007,26.87772634,58.54496765,215.3508182,218.9806772,10.558126,0.099274563,1620000000000 ,1620000000000 ,1620000000000 ,1616812467550 -1616812467575 ,112.5699001,26.87772556,58.54448318,215.3295353,218.9640509,10.561531,0.099310274,1620000000000 ,1620000000000 ,1620000000000 ,1616812467560 -1616812467586 ,112.5698995,26.87772479,58.54404068,215.3087988,218.9411717,10.565111,0.099338947,1620000000000 ,1620000000000 ,1620000000000 ,1616812467570 -1616812467595 ,112.5698988,26.87772402,58.54362488,215.2880077,218.9110449,10.568897,0.099370962,1620000000000 ,1620000000000 ,1620000000000 ,1616812467580 -1616812467607 ,112.5698982,26.87772324,58.54323578,215.2677631,218.8841025,10.573858,0.099411635,1620000000000 ,1620000000000 ,1620000000000 ,1616812467590 -1616812467619 ,112.5698976,26.87772247,58.54285812,215.2463982,218.862921,10.577819,0.099444783,1620000000000 ,1620000000000 ,1620000000000 ,1616812467600 -1616812467628 ,112.569897,26.87772169,58.54249191,215.2268912,218.8434558,10.581834,0.099484923,1620000000000 ,1620000000000 ,1620000000000 ,1616812467610 -1616812467637 ,112.5698963,26.87772092,58.54212952,215.2061001,218.8179157,10.584014,0.099502949,1620000000000 ,1620000000000 ,1620000000000 ,1616812467620 -1616812467646 ,112.5698957,26.87772014,58.5418129,215.1854456,218.7909327,10.586799,0.099526876,1620000000000 ,1620000000000 ,1620000000000 ,1616812467630 -1616812467656 ,112.5698951,26.87771937,58.54151535,215.1650097,218.7589813,10.589956,0.099546624,1620000000000 ,1620000000000 ,1620000000000 ,1616812467640 -1616812467667 ,112.5698945,26.87771859,58.54120255,215.1453114,218.7382555,10.595446,0.09959011,1620000000000 ,1620000000000 ,1620000000000 ,1616812467650 -1616812467676 ,112.5698938,26.87771781,58.54083633,215.1254766,218.7206103,10.600423,0.099634735,1620000000000 ,1620000000000 ,1620000000000 ,1616812467660 -1616812467689 ,112.5698932,26.87771704,58.54046249,215.104221,218.7047986,10.603596,0.099665948,1620000000000 ,1620000000000 ,1620000000000 ,1616812467670 -1616812467702 ,112.5698926,26.87771626,58.54012299,215.0820639,218.672651,10.606736,0.099690768,1620000000000 ,1620000000000 ,1620000000000 ,1616812467680 -1616812467717 ,112.569892,26.87771548,58.53981018,215.0622017,218.6480592,10.610183,0.099717423,1620000000000 ,1620000000000 ,1620000000000 ,1616812467690 -1616812467725 ,112.5698913,26.8777147,58.5394783,215.0416018,218.6286621,10.614609,0.099752524,1620000000000 ,1620000000000 ,1620000000000 ,1616812467700 -1616812467727 ,112.5698907,26.87771392,58.53909302,215.021685,218.6084031,10.619403,0.099791179,1620000000000 ,1620000000000 ,1620000000000 ,1616812467710 -1616812467736 ,112.5698901,26.87771314,58.53866959,215.0008119,218.5890707,10.623309,0.099826465,1620000000000 ,1620000000000 ,1620000000000 ,1616812467720 -1616812467747 ,112.5698895,26.87771236,58.53822327,214.9802121,218.5589762,10.626989,0.099852864,1620000000000 ,1620000000000 ,1620000000000 ,1616812467730 -1616812467757 ,112.5698889,26.87771158,58.53774261,214.9599947,218.5304855,10.632292,0.099892809,1620000000000 ,1620000000000 ,1620000000000 ,1616812467740 -1616812467768 ,112.5698882,26.87771079,58.53720856,214.9404331,218.501834,10.636959,0.099929578,1620000000000 ,1620000000000 ,1620000000000 ,1616812467750 -1616812467777 ,112.5698876,26.87771001,58.53661346,214.9204889,218.4859146,10.64235,0.099974428,1620000000000 ,1620000000000 ,1620000000000 ,1616812467760 -1616812467792 ,112.569887,26.87770923,58.53598022,214.9015556,218.4597999,10.6467905,0.100009587,1620000000000 ,1620000000000 ,1620000000000 ,1616812467770 -1616812467799 ,112.5698864,26.87770845,58.53532791,214.8815022,218.4356742,10.651561,0.100045903,1620000000000 ,1620000000000 ,1620000000000 ,1616812467780 -1616812467808 ,112.5698857,26.87770766,58.53466797,214.8617766,218.4103739,10.65582,0.100082203,1620000000000 ,1620000000000 ,1620000000000 ,1616812467790 -1616812467823 ,112.5698851,26.87770688,58.53396606,214.8441001,218.390326,10.660997,0.100123496,1620000000000 ,1620000000000 ,1620000000000 ,1616812467800 -1616812467827 ,112.5698845,26.87770609,58.53324509,214.8251941,218.3710606,10.665531,0.100162198,1620000000000 ,1620000000000 ,1620000000000 ,1616812467810 -1616812467839 ,112.5698839,26.87770531,58.53252029,214.8079547,218.3428963,10.670146,0.100197824,1620000000000 ,1620000000000 ,1620000000000 ,1616812467820 -1616812467849 ,112.5698833,26.87770452,58.53179932,214.7886663,218.3195821,10.673962,0.100231435,1620000000000 ,1620000000000 ,1620000000000 ,1616812467830 -1616812467858 ,112.5698826,26.87770373,58.53106689,214.7707439,218.2992533,10.678396,0.100266829,1620000000000 ,1620000000000 ,1620000000000 ,1616812467840 -1616812467869 ,112.569882,26.87770294,58.5303421,214.7525209,218.2810208,10.682052,0.100301178,1620000000000 ,1620000000000 ,1620000000000 ,1616812467850 -1616812467880 ,112.5698814,26.87770216,58.52965164,214.7333691,218.2631524,10.68648,0.100336494,1620000000000 ,1620000000000 ,1620000000000 ,1616812467860 -1616812467890 ,112.5698808,26.87770137,58.52902222,214.7154466,218.2376069,10.689888,0.100366635,1620000000000 ,1620000000000 ,1620000000000 ,1616812467870 -1616812467899 ,112.5698802,26.87770058,58.52845764,214.6977701,218.2170616,10.69363,0.100399063,1620000000000 ,1620000000000 ,1620000000000 ,1616812467880 -1616812467908 ,112.5698795,26.87769979,58.52794266,214.6800389,218.199556,10.697326,0.10043363,1620000000000 ,1620000000000 ,1620000000000 ,1616812467890 -1616812467920 ,112.5698789,26.877699,58.52746582,214.6632913,218.1754761,10.701328,0.10046726,1620000000000 ,1620000000000 ,1620000000000 ,1616812467900 -1616812467928 ,112.5698783,26.87769821,58.52704239,214.6470628,218.1525769,10.705842,0.100502897,1620000000000 ,1620000000000 ,1620000000000 ,1616812467910 -1616812467938 ,112.5698777,26.87769742,58.52669525,214.6305611,218.126398,10.710533,0.100546683,1620000000000 ,1620000000000 ,1620000000000 ,1616812467920 -1616812467948 ,112.5698771,26.87769663,58.52640152,214.6155893,218.0958144,10.715292,0.100585749,1620000000000 ,1620000000000 ,1620000000000 ,1616812467930 -1616812467959 ,112.5698764,26.87769584,58.52614594,214.6005082,218.0776245,10.718493,0.100617744,1620000000000 ,1620000000000 ,1620000000000 ,1616812467940 -1616812467971 ,112.5698758,26.87769504,58.52590942,214.5858097,218.0577327,10.721349,0.100644182,1620000000000 ,1620000000000 ,1620000000000 ,1616812467950 -1616812467979 ,112.5698752,26.87769425,58.52571487,214.5713296,218.0333513,10.724751,0.100672017,1620000000000 ,1620000000000 ,1620000000000 ,1616812467960 -1616812467990 ,112.5698746,26.87769346,58.5255661,214.5585162,218.0118379,10.730032,0.100712887,1620000000000 ,1620000000000 ,1620000000000 ,1616812467970 -1616812468000 ,112.569874,26.87769266,58.52547073,214.5463858,217.9895722,10.735219,0.100759225,1620000000000 ,1620000000000 ,1620000000000 ,1616812467980 -1616812468009 ,112.5698733,26.87769187,58.52540207,214.5333265,217.964274,10.739324,0.100798775,1620000000000 ,1620000000000 ,1620000000000 ,1616812467990 -1616812468021 ,112.5698727,26.87769107,58.52536392,214.5218244,217.9496676,10.744258,0.100841785,1620000000000 ,1620000000000 ,1620000000000 ,1616812468000 -1616812468030 ,112.5698721,26.87769028,58.52535248,214.5110327,217.9326386,10.749173,0.100884992,1620000000000 ,1620000000000 ,1620000000000 ,1616812468010 -1616812468040 ,112.5698715,26.87768948,58.52537537,214.5007875,217.9212792,10.753601,0.100926857,1620000000000 ,1620000000000 ,1620000000000 ,1616812468020 -1616812468050 ,112.5698708,26.87768868,58.52544022,214.488821,217.9007215,10.757269,0.100961043,1620000000000 ,1620000000000 ,1620000000000 ,1616812468030 -1616812468061 ,112.5698702,26.87768789,58.52548218,214.4805974,217.8884776,10.761235,0.10099786,1620000000000 ,1620000000000 ,1620000000000 ,1616812468040 -1616812468075 ,112.5698696,26.87768709,58.52548599,214.4719094,217.880607,10.76607,0.101036562,1620000000000 ,1620000000000 ,1620000000000 ,1616812468050 -1616812468080 ,112.569869,26.87768629,58.5254364,214.4630848,217.866529,10.771161,0.101078975,1620000000000 ,1620000000000 ,1620000000000 ,1616812468060 -1616812468090 ,112.5698684,26.87768549,58.52539063,214.4541236,217.8602982,10.7762165,0.101126684,1620000000000 ,1620000000000 ,1620000000000 ,1616812468070 -1616812468100 ,112.5698677,26.87768469,58.52534866,214.4461733,217.8473632,10.781409,0.101173833,1620000000000 ,1620000000000 ,1620000000000 ,1616812468080 -1616812468111 ,112.5698671,26.8776839,58.52531052,214.4408457,217.8437611,10.786119,0.101220826,1620000000000 ,1620000000000 ,1620000000000 ,1616812468090 -1616812468123 ,112.5698665,26.8776831,58.52527618,214.433797,217.8340814,10.789561,0.101252859,1620000000000 ,1620000000000 ,1620000000000 ,1616812468100 -1616812468131 ,112.5698659,26.8776823,58.52524567,214.4265296,217.8290269,10.79436,0.101295149,1620000000000 ,1620000000000 ,1620000000000 ,1616812468110 -1616812468141 ,112.5698653,26.87768149,58.52521133,214.420765,217.8150623,10.798657,0.101335755,1620000000000 ,1620000000000 ,1620000000000 ,1616812468120 -1616812468156 ,112.5698646,26.87768069,58.52515793,214.4146998,217.8037456,10.804493,0.101382511,1620000000000 ,1620000000000 ,1620000000000 ,1616812468130 -1616812468164 ,112.569864,26.87767989,58.52508545,214.4104104,217.799475,10.808517,0.101425897,1620000000000 ,1620000000000 ,1620000000000 ,1616812468140 -1616812468173 ,112.5698634,26.87767909,58.52498627,214.4072139,217.797655,10.813052,0.101464982,1620000000000 ,1620000000000 ,1620000000000 ,1616812468150 -1616812468181 ,112.5698628,26.87767829,58.5248642,214.4024054,217.7895774,10.817706,0.10150753,1620000000000 ,1620000000000 ,1620000000000 ,1616812468160 -1616812468191 ,112.5698622,26.87767749,58.52468491,214.3992635,217.7794554,10.823411,0.101553914,1620000000000 ,1620000000000 ,1620000000000 ,1616812468170 -1616812468201 ,112.5698615,26.87767668,58.52446365,214.3984166,217.7745825,10.828469,0.101603349,1620000000000 ,1620000000000 ,1620000000000 ,1616812468180 -1616812468212 ,112.5698609,26.87767588,58.5242157,214.3948376,217.7730456,10.831843,0.101637209,1620000000000 ,1620000000000 ,1620000000000 ,1616812468190 -1616812468223 ,112.5698603,26.87767508,58.523983,214.3936628,217.7685959,10.834938,0.101665118,1620000000000 ,1620000000000 ,1620000000000 ,1616812468200 -1616812468231 ,112.5698597,26.87767427,58.52374268,214.3957665,218.1129519,10.861159,0.10256443,1620000000000 ,1620000000000 ,1620000000000 ,1616812468210 -1616812468243 ,112.569859,26.87767346,58.52350998,214.3944004,218.1754902,10.865841,0.102720847,1620000000000 ,1620000000000 ,1620000000000 ,1616812468220 -1616812468253 ,112.5698584,26.87767265,58.52326965,214.3939087,218.1746043,10.870648,0.1027616,1620000000000 ,1620000000000 ,1620000000000 ,1616812468230 -1616812468267 ,112.5698577,26.87767184,58.52301788,214.3925426,218.1678318,10.876468,0.10281605,1620000000000 ,1620000000000 ,1620000000000 ,1616812468240 -1616812468275 ,112.5698571,26.87767104,58.52273178,214.3925699,218.1684706,10.88153,0.102861912,1620000000000 ,1620000000000 ,1620000000000 ,1616812468250 -1616812468289 ,112.5698565,26.87767023,58.52238846,214.3925973,218.1656537,10.886749,0.102908766,1620000000000 ,1620000000000 ,1620000000000 ,1616812468260 -1616812468293 ,112.5698558,26.87766942,58.52199554,214.3929798,218.1694269,10.890531,0.102947262,1620000000000 ,1620000000000 ,1620000000000 ,1616812468280 -1616812468305 ,112.5698552,26.87766861,58.52156448,214.3931437,218.1723717,10.895403,0.10298946,1620000000000 ,1620000000000 ,1620000000000 ,1616812468280 -1616812468315 ,112.5698546,26.8776678,58.52109909,214.3945644,218.1648085,10.900082,0.103031484,1620000000000 ,1620000000000 ,1620000000000 ,1616812468300 -1616812468326 ,112.5698533,26.87766618,58.52006912,214.4007935,218.1631967,10.910035,0.206190178,1620000000000 ,1620000000000 ,1620000000000 ,1616812468310 -1616812468338 ,112.5698527,26.87766537,58.51952362,214.4042086,218.1631922,10.915599,0.103169859,1620000000000 ,1620000000000 ,1620000000000 ,1616812468320 -1616812468344 ,112.569852,26.87766455,58.51898193,214.4078422,218.1666055,10.92031,0.103218552,1620000000000 ,1620000000000 ,1620000000000 ,1616812468330 -1616812468353 ,112.569852,26.87766455,58.51898193,214.4078422,-400,10.92031,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812468330 -1616812468364 ,112.5698507,26.87766293,58.51784515,214.4157106,218.161699,10.93009,0.206568951,1620000000000 ,1620000000000 ,1620000000000 ,1616812468350 -1616812468374 ,112.5698501,26.87766212,58.51721954,214.4198361,218.1677629,10.934011,0.103343063,1620000000000 ,1620000000000 ,1620000000000 ,1616812468360 -1616812468384 ,112.5698495,26.8776613,58.51657104,214.4246172,218.1651617,10.937596,0.103375962,1620000000000 ,1620000000000 ,1620000000000 ,1616812468370 -1616812468393 ,112.5698488,26.87766049,58.51593781,214.4305731,218.1604875,10.94096,0.10340641,1620000000000 ,1620000000000 ,1620000000000 ,1616812468380 -1616812468404 ,112.5698488,26.87766049,58.51593781,214.4305731,-400,10.94096,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812468390 -1616812468414 ,112.5698475,26.87765886,58.51465225,214.4436324,218.1609137,10.950128,0.206935256,1620000000000 ,1620000000000 ,1620000000000 ,1616812468400 -1616812468425 ,112.5698469,26.87765805,58.51399994,214.4507632,218.1786464,10.955107,0.103536346,1620000000000 ,1620000000000 ,1620000000000 ,1616812468410 -1616812468435 ,112.5698463,26.87765724,58.51337433,214.456118,218.187539,10.959253,0.103579483,1620000000000 ,1620000000000 ,1620000000000 ,1616812468420 -1616812468444 ,112.5698456,26.87765642,58.51279449,214.4628936,218.1973779,10.962975,0.103618806,1620000000000 ,1620000000000 ,1620000000000 ,1616812468430 -1616812468454 ,112.569845,26.87765561,58.51225281,214.4678386,218.2094944,10.966219,0.103650865,1620000000000 ,1620000000000 ,1620000000000 ,1616812468440 -1616812468464 ,112.5698443,26.87765479,58.51177216,214.4751606,218.2053047,10.971919,0.103706713,1620000000000 ,1620000000000 ,1620000000000 ,1616812468450 -1616812468474 ,112.5698437,26.87765398,58.51133347,214.4812258,217.9107922,10.973535,0.102986506,1620000000000 ,1620000000000 ,1620000000000 ,1616812468460 -1616812468484 ,112.5698431,26.87765317,58.51089096,214.4873456,217.9334559,10.977324,0.103018446,1620000000000 ,1620000000000 ,1620000000000 ,1616812468470 -1616812468495 ,112.5698424,26.87765236,58.51041794,214.4948589,217.9351714,10.978489,0.103037521,1620000000000 ,1620000000000 ,1620000000000 ,1616812468480 -1616812468507 ,112.5698418,26.87765154,58.50992966,214.5035195,217.9466513,10.983465,0.103073515,1620000000000 ,1620000000000 ,1620000000000 ,1616812468490 -1616812468516 ,112.5698412,26.87765073,58.50945663,214.5117158,217.9387853,10.987468,0.103115854,1620000000000 ,1620000000000 ,1620000000000 ,1616812468500 -1616812468528 ,112.5698405,26.87764992,58.50898361,214.5196388,217.9367254,10.989443,0.103134611,1620000000000 ,1620000000000 ,1620000000000 ,1616812468510 -1616812468535 ,112.5698399,26.8776491,58.50857925,214.5246658,217.9589976,10.990907,0.103158572,1620000000000 ,1620000000000 ,1620000000000 ,1616812468520 -1616812468549 ,112.5698393,26.87764829,58.50824356,214.5325069,217.9634515,10.993749,0.103182248,1620000000000 ,1620000000000 ,1620000000000 ,1616812468530 -1616812468555 ,112.5698386,26.87764748,58.50798035,214.5390912,217.97273,10.996961,0.10321897,1620000000000 ,1620000000000 ,1620000000000 ,1616812468540 -1616812468565 ,112.569838,26.87764666,58.50778961,214.545976,217.9820325,11.000015,0.103249999,1620000000000 ,1620000000000 ,1620000000000 ,1616812468550 -1616812468575 ,112.5698374,26.87764585,58.50765228,214.5528335,217.9816626,11.002409,0.103278789,1620000000000 ,1620000000000 ,1620000000000 ,1616812468560 -1616812468587 ,112.5698367,26.87764503,58.50753784,214.5616308,217.9879729,11.004119,0.103296992,1620000000000 ,1620000000000 ,1620000000000 ,1616812468570 -1616812468596 ,112.5698361,26.87764422,58.50743103,214.5703188,217.9968531,11.007702,0.103329225,1620000000000 ,1620000000000 ,1620000000000 ,1616812468580 -1616812468608 ,112.5698355,26.8776434,58.50732422,214.5787609,218.0025826,11.010411,0.103357809,1620000000000 ,1620000000000 ,1620000000000 ,1616812468590 -1616812468616 ,112.5698348,26.87764259,58.50725555,214.5862468,218.0069438,11.012869,0.103381864,1620000000000 ,1620000000000 ,1620000000000 ,1616812468600 -1616812468626 ,112.5698342,26.87764178,58.50720215,214.5939786,218.00931,11.015766,0.103412711,1620000000000 ,1620000000000 ,1620000000000 ,1616812468610 -1616812468637 ,112.5698335,26.87764096,58.507164,214.6006175,218.0172677,11.016804,0.103430282,1620000000000 ,1620000000000 ,1620000000000 ,1616812468620 -1616812468646 ,112.5698329,26.87764015,58.50715256,214.6065461,218.0292675,11.018543,0.103448521,1620000000000 ,1620000000000 ,1620000000000 ,1616812468630 -1616812468656 ,112.5698323,26.87763933,58.50716782,214.6150975,218.0271701,11.020325,0.103465977,1620000000000 ,1620000000000 ,1620000000000 ,1616812468640 -1616812468667 ,112.5698316,26.87763852,58.50720215,214.6209988,218.0337706,11.023137,0.1034935,1620000000000 ,1620000000000 ,1620000000000 ,1616812468650 -1616812468676 ,112.569831,26.8776377,58.50723267,214.6259985,218.0412704,11.026033,0.103523987,1620000000000 ,1620000000000 ,1620000000000 ,1616812468660 -1616812468687 ,112.5698304,26.87763688,58.5072403,214.6318451,218.0507963,11.028686,0.10355122,1620000000000 ,1620000000000 ,1620000000000 ,1616812468670 -1616812468698 ,112.5698297,26.87763607,58.5072403,214.637118,218.0594961,11.03,0.103567068,1620000000000 ,1620000000000 ,1620000000000 ,1616812468680 -1616812468707 ,112.5698291,26.87763525,58.5071907,214.6435384,218.0652562,11.033188,0.103595765,1620000000000 ,1620000000000 ,1620000000000 ,1616812468690 -1616812468716 ,112.5698284,26.87763444,58.50707245,214.6504779,218.0727455,11.035323,0.103619033,1620000000000 ,1620000000000 ,1620000000000 ,1616812468700 -1616812468726 ,112.5698278,26.87763362,58.50688171,214.6577998,218.0775204,11.036993,0.103633328,1620000000000 ,1620000000000 ,1620000000000 ,1616812468710 -1616812468736 ,112.5698272,26.87763281,58.50664902,214.6619253,218.0843128,11.038328,0.103648791,1620000000000 ,1620000000000 ,1620000000000 ,1616812468720 -1616812468747 ,112.5698265,26.87763199,58.50641251,214.6680178,218.0895954,11.039994,0.103665507,1620000000000 ,1620000000000 ,1620000000000 ,1616812468730 -1616812468767 ,112.5698259,26.87763117,58.50618362,214.6733727,218.0952791,11.042101,0.103683258,1620000000000 ,1620000000000 ,1620000000000 ,1616812468740 -1616812468770 ,112.5698252,26.87763036,58.50598907,214.6784543,218.1004387,11.043337,0.103701495,1620000000000 ,1620000000000 ,1620000000000 ,1616812468750 -1616812468779 ,112.5698246,26.87762954,58.50582123,214.6839731,218.10189,11.04533,0.103720772,1620000000000 ,1620000000000 ,1620000000000 ,1616812468760 -1616812468788 ,112.569824,26.87762873,58.50563812,214.6881805,218.1067908,11.048049,0.103747835,1620000000000 ,1620000000000 ,1620000000000 ,1616812468770 -1616812468797 ,112.5698233,26.87762791,58.50543213,214.6924699,218.1145829,11.050047,0.103766608,1620000000000 ,1620000000000 ,1620000000000 ,1616812468780 -1616812468807 ,112.5698227,26.87762709,58.50520706,214.6976335,218.1158596,11.051624,0.103787073,1620000000000 ,1620000000000 ,1620000000000 ,1616812468790 -1616812468817 ,112.569822,26.87762628,58.50495529,214.7030977,218.1177656,11.053485,0.103802475,1620000000000 ,1620000000000 ,1620000000000 ,1616812468800 -1616812468829 ,112.5698214,26.87762546,58.50465775,214.7084525,218.1204442,11.055453,0.103820338,1620000000000 ,1620000000000 ,1620000000000 ,1616812468810 -1616812468841 ,112.5698208,26.87762464,58.50431061,214.7156379,218.1214048,11.057413,0.103837222,1620000000000 ,1620000000000 ,1620000000000 ,1616812468820 -1616812468860 ,112.5698201,26.87762383,58.50389481,214.7197906,218.1236081,11.059895,0.103857521,1620000000000 ,1620000000000 ,1620000000000 ,1616812468830 -1616812468862 ,112.5698195,26.87762301,58.50338745,214.7256373,218.1250581,11.062823,0.103880958,1620000000000 ,1620000000000 ,1620000000000 ,1616812468840 -1616812468871 ,112.5698188,26.87762219,58.50279236,214.7303638,218.1271755,11.065236,0.103900828,1620000000000 ,1620000000000 ,1620000000000 ,1616812468850 -1616812468878 ,112.5698182,26.87762137,58.50214767,214.7337789,218.131777,11.068253,0.103927093,1620000000000 ,1620000000000 ,1620000000000 ,1616812468860 -1616812468888 ,112.5698176,26.87762056,58.50146103,214.7361285,218.1305905,11.070888,0.103950034,1620000000000 ,1620000000000 ,1620000000000 ,1616812468870 -1616812468898 ,112.5698169,26.87761974,58.50071335,214.7384507,218.1356553,11.073462,0.103973733,1620000000000 ,1620000000000 ,1620000000000 ,1616812468880 -1616812468908 ,112.5698163,26.87761892,58.49990463,214.7393796,218.1450331,11.074991,0.103986793,1620000000000 ,1620000000000 ,1620000000000 ,1616812468890 -1616812468918 ,112.5698156,26.8776181,58.49904633,214.7409369,218.151605,11.077758,0.104010578,1620000000000 ,1620000000000 ,1620000000000 ,1616812468900 -1616812468930 ,112.569815,26.87761728,58.49814606,214.7434777,218.1532536,11.080263,0.1040334,1620000000000 ,1620000000000 ,1620000000000 ,1616812468910 -1616812468942 ,112.5698143,26.87761647,58.49718094,214.7459912,218.1534954,11.082948,0.104054759,1620000000000 ,1620000000000 ,1620000000000 ,1616812468920 -1616812468951 ,112.5698137,26.87761565,58.49617004,214.7484501,218.1550114,11.084254,0.104068589,1620000000000 ,1620000000000 ,1620000000000 ,1616812468930 -1616812468960 ,112.5698131,26.87761483,58.49514008,214.749461,218.1545158,11.086368,0.104083125,1620000000000 ,1620000000000 ,1620000000000 ,1616812468940 -1616812468969 ,112.5698124,26.87761401,58.49411392,214.7498708,218.1606384,11.089337,0.10411061,1620000000000 ,1620000000000 ,1620000000000 ,1616812468950 -1616812468979 ,112.5698118,26.87761319,58.49309158,214.7501713,218.1586875,11.092721,0.104139688,1620000000000 ,1620000000000 ,1620000000000 ,1616812468960 -1616812468990 ,112.5698111,26.87761237,58.49209595,214.7507724,218.1620627,11.095596,0.10416776,1620000000000 ,1620000000000 ,1620000000000 ,1616812468970 -1616812468999 ,112.5698105,26.87761155,58.49111176,214.7500074,218.1555396,11.098831,0.104196662,1620000000000 ,1620000000000 ,1620000000000 ,1616812468980 -1616812469009 ,112.5698098,26.87761073,58.49013901,214.7493517,218.1514842,11.100707,0.104217985,1620000000000 ,1620000000000 ,1620000000000 ,1616812468990 -1616812469019 ,112.5698092,26.87760991,58.48916626,214.7516193,218.1453054,11.103704,0.104240074,1620000000000 ,1620000000000 ,1620000000000 ,1616812469000 -1616812469030 ,112.5698085,26.87760909,58.48820496,214.752357,218.1461498,11.106231,0.104265227,1620000000000 ,1620000000000 ,1620000000000 ,1616812469010 -1616812469041 ,112.5698079,26.87760827,58.48729324,214.7524389,218.1510251,11.1083975,0.104287699,1620000000000 ,1620000000000 ,1620000000000 ,1616812469020 -1616812469050 ,112.5698073,26.87760745,58.48641205,214.7524116,218.1397987,11.111673,0.104316548,1620000000000 ,1620000000000 ,1620000000000 ,1616812469030 -1616812469059 ,112.5698066,26.87760663,58.48553848,214.7510456,218.1470014,11.115469,0.104349396,1620000000000 ,1620000000000 ,1620000000000 ,1616812469040 -1616812469070 ,112.569806,26.87760581,58.48466492,214.7491331,218.1506129,11.118702,0.104381783,1620000000000 ,1620000000000 ,1620000000000 ,1616812469050 -1616812469079 ,112.5698053,26.87760499,58.48382187,214.7473573,218.148338,11.120971,0.104407164,1620000000000 ,1620000000000 ,1620000000000 ,1616812469060 -1616812469090 ,112.5698047,26.87760417,58.48304749,214.7448438,218.1555164,11.124973,0.104443716,1620000000000 ,1620000000000 ,1620000000000 ,1616812469070 -1616812469100 ,112.569804,26.87760335,58.48233795,214.7436143,218.1521671,11.127082,0.104469735,1620000000000 ,1620000000000 ,1620000000000 ,1616812469080 -1616812469112 ,112.5698034,26.87760253,58.48167801,214.7411282,218.1487603,11.129315,0.104492157,1620000000000 ,1620000000000 ,1620000000000 ,1616812469090 -1616812469120 ,112.5698027,26.8776017,58.48106766,214.7390518,218.1452898,11.13089,0.104510726,1620000000000 ,1620000000000 ,1620000000000 ,1616812469100 -1616812469130 ,112.5698021,26.87760088,58.48048019,214.735664,218.1475031,11.1351595,0.104542856,1620000000000 ,1620000000000 ,1620000000000 ,1616812469110 -1616812469141 ,112.5698015,26.87760006,58.47993088,214.7335057,218.1420271,11.137851,0.104577031,1620000000000 ,1620000000000 ,1620000000000 ,1616812469120 -1616812469150 ,112.5698008,26.87759924,58.47942734,214.7308282,218.1332049,11.140052,0.104595659,1620000000000 ,1620000000000 ,1620000000000 ,1616812469130 -1616812469160 ,112.5698002,26.87759841,58.47898483,214.7278229,218.1318531,11.141821,0.104619111,1620000000000 ,1620000000000 ,1620000000000 ,1616812469140 -1616812469173 ,112.5697995,26.87759759,58.47858047,214.7259378,218.1257903,11.143347,0.104633262,1620000000000 ,1620000000000 ,1620000000000 ,1616812469150 -1616812469183 ,112.5697989,26.87759677,58.47822189,214.7242986,218.1202985,11.14572,0.104657988,1620000000000 ,1620000000000 ,1620000000000 ,1616812469160 -1616812469194 ,112.5697982,26.87759594,58.47793198,214.7229598,218.1131709,11.147659,0.104673349,1620000000000 ,1620000000000 ,1620000000000 ,1616812469170 -1616812469202 ,112.5697976,26.87759512,58.47770309,214.7203097,218.1012637,11.149954,0.104697397,1620000000000 ,1620000000000 ,1620000000000 ,1616812469180 -1616812469212 ,112.5697969,26.8775943,58.47749329,214.7176323,218.0926886,11.152863,0.104724768,1620000000000 ,1620000000000 ,1620000000000 ,1616812469190 -1616812469226 ,112.5697963,26.87759347,58.47726059,214.7164029,218.0801383,11.155938,0.104750613,1620000000000 ,1620000000000 ,1620000000000 ,1616812469200 -1616812469232 ,112.5697956,26.87759264,58.47748566,214.7178509,218.1959108,11.184237,0.105856424,1620000000000 ,1620000000000 ,1620000000000 ,1616812469210 -1616812469242 ,112.569795,26.87759181,58.47776794,214.7150915,218.2063351,11.187122,0.106013631,1620000000000 ,1620000000000 ,1620000000000 ,1616812469220 -1616812469252 ,112.5697943,26.87759097,58.47803116,214.7144358,218.1944955,11.1895275,0.106031866,1620000000000 ,1620000000000 ,1620000000000 ,1616812469230 -1616812469262 ,112.5697937,26.87759014,58.47829437,214.7136435,218.1792552,11.191932,0.106053636,1620000000000 ,1620000000000 ,1620000000000 ,1616812469240 -1616812469273 ,112.569793,26.87758931,58.4785347,214.7122228,218.1734822,11.194446,0.106073919,1620000000000 ,1620000000000 ,1620000000000 ,1616812469250 -1616812469284 ,112.5697924,26.87758847,58.47873306,214.7122774,218.1751043,11.199198,0.106111085,1620000000000 ,1620000000000 ,1620000000000 ,1616812469260 -1616812469296 ,112.5697917,26.87758764,58.47886276,214.7135615,218.1713084,11.202187,0.106141594,1620000000000 ,1620000000000 ,1620000000000 ,1616812469270 -1616812469304 ,112.569791,26.8775868,58.47893906,214.7123867,218.1660939,11.206268,0.106174862,1620000000000 ,1620000000000 ,1620000000000 ,1616812469280 -1616812469315 ,112.5697904,26.87758597,58.47898865,214.7126053,218.1620313,11.209362,0.106202103,1620000000000 ,1620000000000 ,1620000000000 ,1616812469300 -1616812469324 ,112.5697897,26.87758513,58.47896957,214.7103103,218.161525,11.21134,0.106217941,1620000000000 ,1620000000000 ,1620000000000 ,1616812469310 -1616812469332 ,112.5697891,26.8775843,58.47888184,214.7088897,218.1672265,11.215296,0.106253277,1620000000000 ,1620000000000 ,1620000000000 ,1616812469320 -1616812469346 ,112.5697878,26.87758263,58.47853088,214.7044091,218.1720842,11.221675,0.212589316,1620000000000 ,1620000000000 ,1620000000000 ,1616812469330 -1616812469353 ,112.5697878,26.87758263,58.47853088,214.7044091,-400,11.221675,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812469340 -1616812469365 ,112.5697864,26.87758095,58.47802353,214.6993547,218.1639636,11.2281275,0.21270477,1620000000000 ,1620000000000 ,1620000000000 ,1616812469350 -1616812469374 ,112.5697864,26.87758095,58.47802353,214.6993547,-400,11.2281275,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812469360 -1616812469385 ,112.5697851,26.87757928,58.47736359,214.6960762,218.1659817,11.2345705,0.212805865,1620000000000 ,1620000000000 ,1620000000000 ,1616812469370 -1616812469399 ,112.5697845,26.87757844,58.47702026,214.6938359,218.1659775,11.237593,0.106447381,1620000000000 ,1620000000000 ,1620000000000 ,1616812469380 -1616812469404 ,112.5697845,26.87757844,58.47702026,214.6938359,-400,11.237593,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812469390 -1616812469414 ,112.5697832,26.87757677,58.47635269,214.6907214,218.1536888,11.243967,0.212990944,1620000000000 ,1620000000000 ,1620000000000 ,1616812469400 -1616812469428 ,112.5697825,26.87757593,58.47603226,214.6885903,218.1425885,11.246817,0.106531294,1620000000000 ,1620000000000 ,1620000000000 ,1616812469410 -1616812469441 ,112.5697818,26.87757509,58.47571182,214.6873336,218.1410778,11.249544,0.106552899,1620000000000 ,1620000000000 ,1620000000000 ,1616812469420 -1616812469445 ,112.5697812,26.87757425,58.47542191,214.6852572,218.1404751,11.252319,0.106581018,1620000000000 ,1620000000000 ,1620000000000 ,1616812469430 -1616812469457 ,112.5697805,26.87757342,58.47518539,214.6830169,218.1326973,11.25412,0.106600955,1620000000000 ,1620000000000 ,1620000000000 ,1616812469440 -1616812469465 ,112.5697799,26.87757258,58.47499466,214.6809678,218.1259221,11.256842,0.106623412,1620000000000 ,1620000000000 ,1620000000000 ,1616812469450 -1616812469475 ,112.5697792,26.87757174,58.47441864,214.6808312,218.0166011,11.259615,0.105692104,1620000000000 ,1620000000000 ,1620000000000 ,1616812469460 -1616812469485 ,112.5697786,26.87757091,58.47388077,214.6802302,218.0197259,11.262938,0.105722673,1620000000000 ,1620000000000 ,1620000000000 ,1616812469470 -1616812469494 ,112.5697779,26.87757008,58.47341537,214.6780718,218.0162466,11.264851,0.105745579,1620000000000 ,1620000000000 ,1620000000000 ,1616812469480 -1616812469504 ,112.5697773,26.87756924,58.47303391,214.6765965,218.0061436,11.266918,0.105768688,1620000000000 ,1620000000000 ,1620000000000 ,1616812469490 -1616812469514 ,112.5697766,26.87756841,58.47270203,214.6740284,217.9991018,11.2689495,0.105786649,1620000000000 ,1620000000000 ,1620000000000 ,1616812469500 -1616812469524 ,112.569776,26.87756758,58.47237396,214.6710231,217.9971623,11.271434,0.105810923,1620000000000 ,1620000000000 ,1620000000000 ,1616812469510 -1616812469540 ,112.5697753,26.87756674,58.47204971,214.6694112,217.9979717,11.27456,0.105836892,1620000000000 ,1620000000000 ,1620000000000 ,1616812469520 -1616812469548 ,112.5697747,26.87756591,58.47175217,214.6663786,218.0011188,11.276954,0.105867243,1620000000000 ,1620000000000 ,1620000000000 ,1616812469530 -1616812469558 ,112.569774,26.87756507,58.47150421,214.6653131,217.9904295,11.279815,0.105889873,1620000000000 ,1620000000000 ,1620000000000 ,1616812469540 -1616812469568 ,112.5697733,26.87756424,58.47130585,214.6627722,217.9895685,11.280881,0.105909844,1620000000000 ,1620000000000 ,1620000000000 ,1616812469550 -1616812469579 ,112.5697727,26.8775634,58.471138,214.6598216,217.9932658,11.282013,0.105919799,1620000000000 ,1620000000000 ,1620000000000 ,1616812469560 -1616812469586 ,112.569772,26.87756257,58.47097778,214.6584829,217.9924448,11.284601,0.105943362,1620000000000 ,1620000000000 ,1620000000000 ,1616812469570 -1616812469595 ,112.5697714,26.87756173,58.47083664,214.6551497,217.9986316,11.286501,0.105963465,1620000000000 ,1620000000000 ,1620000000000 ,1616812469580 -1616812469606 ,112.5697707,26.8775609,58.47070694,214.6528001,217.990591,11.290591,0.105999106,1620000000000 ,1620000000000 ,1620000000000 ,1616812469590 -1616812469616 ,112.5697701,26.87756006,58.47056961,214.6492211,217.9803597,11.292474,0.106018834,1620000000000 ,1620000000000 ,1620000000000 ,1616812469600 -1616812469628 ,112.5697694,26.87755923,58.47040558,214.6460519,217.9801684,11.294708,0.106038193,1620000000000 ,1620000000000 ,1620000000000 ,1616812469610 -1616812469637 ,112.5697688,26.87755839,58.47018814,214.6438936,217.975029,11.297409,0.106059886,1620000000000 ,1620000000000 ,1620000000000 ,1616812469620 -1616812469648 ,112.5697681,26.87755756,58.46993256,214.6416806,217.9736356,11.299653,0.106081332,1620000000000 ,1620000000000 ,1620000000000 ,1616812469630 -1616812469658 ,112.5697675,26.87755672,58.46966553,214.6375552,217.9664073,11.302389,0.106101704,1620000000000 ,1620000000000 ,1620000000000 ,1616812469640 -1616812469666 ,112.5697668,26.87755588,58.46936417,214.6354241,217.9516059,11.303378,0.106115132,1620000000000 ,1620000000000 ,1620000000000 ,1616812469650 -1616812469676 ,112.5697662,26.87755505,58.4690361,214.6316266,217.9507571,11.305698,0.106130232,1620000000000 ,1620000000000 ,1620000000000 ,1616812469660 -1616812469686 ,112.5697655,26.87755421,58.46868515,214.62843,217.9507535,11.308534,0.106153313,1620000000000 ,1620000000000 ,1620000000000 ,1616812469670 -1616812469696 ,112.5697649,26.87755337,58.46831894,214.6243319,217.9483659,11.311157,0.106178367,1620000000000 ,1620000000000 ,1620000000000 ,1616812469680 -1616812469707 ,112.5697642,26.87755253,58.46793747,214.6202884,217.9438594,11.3137665,0.106200358,1620000000000 ,1620000000000 ,1620000000000 ,1616812469690 -1616812469722 ,112.5697636,26.8775517,58.46751785,214.6170646,217.9345889,11.317234,0.106228336,1620000000000 ,1620000000000 ,1620000000000 ,1616812469700 -1616812469727 ,112.5697629,26.87755086,58.46705627,214.6130211,217.9362302,11.318107,0.106239129,1620000000000 ,1620000000000 ,1620000000000 ,1616812469710 -1616812469739 ,112.5697623,26.87755002,58.46653366,214.6079395,217.9376277,11.321112,0.106261422,1620000000000 ,1620000000000 ,1620000000000 ,1616812469720 -1616812469750 ,112.5697616,26.87754918,58.46596146,214.6033496,217.9324285,11.322131,0.106271251,1620000000000 ,1620000000000 ,1620000000000 ,1616812469730 -1616812469756 ,112.5697609,26.87754834,58.46538544,214.5986231,217.9340535,11.324652,0.106289781,1620000000000 ,1620000000000 ,1620000000000 ,1616812469740 -1616812469767 ,112.5697603,26.8775475,58.46481705,214.5927764,217.9255305,11.3261175,0.106305404,1620000000000 ,1620000000000 ,1620000000000 ,1616812469750 -1616812469777 ,112.5697596,26.87754667,58.4642334,214.5879133,217.9225764,11.328643,0.106324011,1620000000000 ,1620000000000 ,1620000000000 ,1616812469760 -1616812469788 ,112.569759,26.87754583,58.46362686,214.5800177,217.9213082,11.33143,0.106347512,1620000000000 ,1620000000000 ,1620000000000 ,1616812469770 -1616812469798 ,112.5697583,26.87754499,58.46300507,214.5760835,217.9198333,11.3345375,0.106375267,1620000000000 ,1620000000000 ,1620000000000 ,1616812469780 -1616812469809 ,112.5697577,26.87754415,58.46240234,214.5708106,217.9140228,11.336263,0.106393844,1620000000000 ,1620000000000 ,1620000000000 ,1616812469790 -1616812469820 ,112.569757,26.87754331,58.46183777,214.5637891,217.9087168,11.336156,0.106398083,1620000000000 ,1620000000000 ,1620000000000 ,1616812469800 -1616812469828 ,112.5697564,26.87754247,58.46130753,214.5578059,217.8929806,11.334843,0.106384009,1620000000000 ,1620000000000 ,1620000000000 ,1616812469810 -1616812469837 ,112.5697557,26.87754163,58.46080399,214.5523144,217.8791804,11.335561,0.106383601,1620000000000 ,1620000000000 ,1620000000000 ,1616812469820 -1616812469848 ,112.5697551,26.87754079,58.46035004,214.5495823,217.8763827,11.335346,0.106386842,1620000000000 ,1620000000000 ,1620000000000 ,1616812469830 -1616812469857 ,112.5697544,26.87753995,58.45994186,214.5461126,217.8655972,11.3357,0.106387097,1620000000000 ,1620000000000 ,1620000000000 ,1616812469840 -1616812469868 ,112.5697538,26.87753911,58.45957947,214.5406211,217.8561229,11.334447,0.106379869,1620000000000 ,1620000000000 ,1620000000000 ,1616812469850 -1616812469879 ,112.5697531,26.87753827,58.45926285,214.536441,217.8440141,11.334705,0.106375802,1620000000000 ,1620000000000 ,1620000000000 ,1616812469860 -1616812469889 ,112.5697531,26.87753827,58.45926285,214.5314687,-400,11.33531,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812469870 -1616812469899 ,112.5697518,26.87753659,58.45875168,214.5252122,217.8348934,11.334998,0.21276116,1620000000000 ,1620000000000 ,1620000000000 ,1616812469880 -1616812469911 ,112.5697511,26.87753575,58.45856094,214.5209229,217.8309735,11.333119,0.106373969,1620000000000 ,1620000000000 ,1620000000000 ,1616812469890 -1616812469919 ,112.5697505,26.87753491,58.45845413,214.5178629,217.8267787,11.331083,0.106356365,1620000000000 ,1620000000000 ,1620000000000 ,1616812469900 -1616812469928 ,112.5697498,26.87753407,58.45843506,214.5135189,217.8215296,11.328741,0.106336921,1620000000000 ,1620000000000 ,1620000000000 ,1616812469910 -1616812469947 ,112.5697492,26.87753323,58.45842361,214.5108688,217.8202016,11.327465,0.106322114,1620000000000 ,1620000000000 ,1620000000000 ,1616812469920 -1616812469950 ,112.5697485,26.87753239,58.45838928,214.5072078,217.8244186,11.329285,0.106334063,1620000000000 ,1620000000000 ,1620000000000 ,1616812469930 -1616812469959 ,112.5697479,26.87753155,58.45833588,214.5007875,217.8321486,11.328573,0.106335414,1620000000000 ,1620000000000 ,1620000000000 ,1616812469940 -1616812469970 ,112.5697472,26.87753071,58.4583168,214.495296,217.8345014,11.329685,0.106342502,1620000000000 ,1620000000000 ,1620000000000 ,1616812469950 -1616812469981 ,112.5697466,26.87752987,58.45837402,214.488739,217.823383,11.328057,0.106337401,1620000000000 ,1620000000000 ,1620000000000 ,1616812469960 -1616812469990 ,112.5697459,26.87752903,58.45850754,214.4810892,217.814463,11.327341,0.106330367,1620000000000 ,1620000000000 ,1620000000000 ,1616812469970 -1616812470002 ,112.5697453,26.87752819,58.45869827,214.4740404,217.8096576,11.326278,0.106326069,1620000000000 ,1620000000000 ,1620000000000 ,1616812469980 -1616812470010 ,112.5697446,26.87752735,58.45886612,214.4680845,217.8027882,11.325417,0.106314545,1620000000000 ,1620000000000 ,1620000000000 ,1616812469990 -1616812470020 ,112.569744,26.87752651,58.45898438,214.4628662,217.7869423,11.325291,0.106309041,1620000000000 ,1620000000000 ,1620000000000 ,1616812470000 -1616812470031 ,112.5697433,26.87752567,58.45903397,214.4565278,217.7638569,11.3248205,0.106298752,1620000000000 ,1620000000000 ,1620000000000 ,1616812470010 -1616812470042 ,112.5697427,26.87752483,58.45902252,214.4511456,217.7484992,11.326328,0.106304437,1620000000000 ,1620000000000 ,1620000000000 ,1616812470020 -1616812470051 ,112.569742,26.87752399,58.45895004,214.4458181,217.7440472,11.326974,0.106312215,1620000000000 ,1620000000000 ,1620000000000 ,1616812470030 -1616812470061 ,112.5697414,26.87752315,58.45883942,214.4416653,217.7466408,11.32699,0.106310608,1620000000000 ,1620000000000 ,1620000000000 ,1616812470040 -1616812470074 ,112.5697407,26.87752231,58.45874786,214.4383049,217.7409359,11.326023,0.10630968,1620000000000 ,1620000000000 ,1620000000000 ,1616812470050 -1616812470084 ,112.5697401,26.87752147,58.45867157,214.4344527,217.7236941,11.3237505,0.10628616,1620000000000 ,1620000000000 ,1620000000000 ,1616812470060 -1616812470092 ,112.5697394,26.87752063,58.45856857,214.4286607,217.7109189,11.323733,0.106277621,1620000000000 ,1620000000000 ,1620000000000 ,1616812470070 -1616812470101 ,112.5697388,26.87751978,58.45839691,214.4233058,217.7056771,11.323651,0.106273905,1620000000000 ,1620000000000 ,1620000000000 ,1616812470080 -1616812470111 ,112.5697381,26.87751894,58.45815659,214.4186613,217.6994774,11.3230295,0.106267227,1620000000000 ,1620000000000 ,1620000000000 ,1616812470090 -1616812470121 ,112.5697375,26.8775181,58.45787811,214.4117218,217.7015449,11.321902,0.106257437,1620000000000 ,1620000000000 ,1620000000000 ,1616812470100 -1616812470132 ,112.5697368,26.87751726,58.45754623,214.4053287,217.6998075,11.320286,0.106240959,1620000000000 ,1620000000000 ,1620000000000 ,1616812470110 -1616812470143 ,112.5697362,26.87751642,58.45711517,214.4002744,217.6913663,11.318948,0.106220294,1620000000000 ,1620000000000 ,1620000000000 ,1616812470120 -1616812470153 ,112.5697355,26.87751558,58.45656586,214.3926246,217.6934724,11.319183,0.10621258,1620000000000 ,1620000000000 ,1620000000000 ,1616812470130 -1616812470163 ,112.5697349,26.87751474,58.45591736,214.3850294,217.7029647,11.319321,0.106213587,1620000000000 ,1620000000000 ,1620000000000 ,1616812470140 -1616812470172 ,112.5697342,26.8775139,58.4552002,214.377243,217.7073235,11.319007,0.106206899,1620000000000 ,1620000000000 ,1620000000000 ,1616812470150 -1616812470183 ,112.5697336,26.87751306,58.45449448,214.3686916,217.708835,11.317754,0.106203185,1620000000000 ,1620000000000 ,1620000000000 ,1616812470160 -1616812470192 ,112.5697329,26.87751222,58.45384979,214.3618341,217.6946989,11.315726,0.106180893,1620000000000 ,1620000000000 ,1620000000000 ,1616812470170 -1616812470203 ,112.5697323,26.87751138,58.45323944,214.3563699,217.6827376,11.313303,0.106156555,1620000000000 ,1620000000000 ,1620000000000 ,1616812470180 -1616812470214 ,112.5697316,26.87751054,58.4525795,214.3524084,217.6671343,11.313258,0.106143191,1620000000000 ,1620000000000 ,1620000000000 ,1616812470190 -1616812470227 ,112.569731,26.8775097,58.45182037,214.3480098,217.6602664,11.314403,0.106148483,1620000000000 ,1620000000000 ,1620000000000 ,1616812470200 -1616812470234 ,112.5697303,26.87750886,58.45096207,214.3326828,218.1738903,11.331234,0.106787347,1620000000000 ,1620000000000 ,1620000000000 ,1616812470220 -1616812470244 ,112.5697297,26.87750802,58.45014572,214.3241588,218.2331914,11.328749,0.10686525,1620000000000 ,1620000000000 ,1620000000000 ,1616812470230 -1616812470253 ,112.569729,26.87750718,58.44934464,214.3173559,218.2317489,11.328263,0.10685277,1620000000000 ,1620000000000 ,1620000000000 ,1616812470240 -1616812470262 ,112.5697283,26.87750634,58.44853592,214.3118371,218.2313973,11.327342,0.106844454,1620000000000 ,1620000000000 ,1620000000000 ,1616812470250 -1616812470274 ,112.569727,26.87750466,58.44692612,214.2987505,218.2175094,11.32235,0.213616284,1620000000000 ,1620000000000 ,1620000000000 ,1616812470260 -1616812470283 ,112.5697264,26.87750383,58.4461937,214.2939693,218.206407,11.321204,0.106779219,1620000000000 ,1620000000000 ,1620000000000 ,1616812470270 -1616812470294 ,112.5697257,26.87750299,58.44548035,214.2875216,218.2051098,11.32125,0.106779016,1620000000000 ,1620000000000 ,1620000000000 ,1616812470280 -1616812470304 ,112.5697257,26.87750299,58.44548035,214.2875216,-400,11.32125,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812470290 -1616812470313 ,112.5697244,26.87750131,58.4442482,214.276648,218.1861806,11.316704,0.213509959,1620000000000 ,1620000000000 ,1620000000000 ,1616812470300 -1616812470326 ,112.5697237,26.87750047,58.4437561,214.2692167,218.1559487,11.314505,0.1067179,1620000000000 ,1620000000000 ,1620000000000 ,1616812470310 -1616812470346 ,112.5697231,26.87749963,58.4432869,214.2630149,218.149043,11.313602,0.10670439,1620000000000 ,1620000000000 ,1620000000000 ,1616812470320 -1616812470349 ,112.5697224,26.87749879,58.44283676,214.2562667,218.1462082,11.312848,0.106696753,1620000000000 ,1620000000000 ,1620000000000 ,1616812470330 -1616812470355 ,112.5697217,26.87749795,58.44245911,214.249737,218.1371102,11.311778,0.106690712,1620000000000 ,1620000000000 ,1620000000000 ,1616812470340 -1616812470365 ,112.5697211,26.87749711,58.44218826,214.2448193,218.1205576,11.311194,0.106685144,1620000000000 ,1620000000000 ,1620000000000 ,1616812470350 -1616812470375 ,112.5697204,26.87749627,58.4419899,214.2384809,218.1073176,11.310149,0.106675374,1620000000000 ,1620000000000 ,1620000000000 ,1616812470360 -1616812470389 ,112.5697198,26.87749543,58.44185638,214.2324157,218.1004497,11.307446,0.106656324,1620000000000 ,1620000000000 ,1620000000000 ,1616812470370 -1616812470395 ,112.5697191,26.87749459,58.44184875,214.2252849,218.0944426,11.303761,0.10662986,1620000000000 ,1620000000000 ,1620000000000 ,1616812470380 -1616812470406 ,112.5697184,26.87749376,58.4419899,214.2197935,218.0845307,11.301091,0.106606833,1620000000000 ,1620000000000 ,1620000000000 ,1616812470390 -1616812470416 ,112.5697178,26.87749292,58.44224167,214.2141108,218.072056,11.299057,0.106585839,1620000000000 ,1620000000000 ,1620000000000 ,1616812470400 -1616812470430 ,112.5697171,26.87749208,58.44251251,214.2087832,218.0600969,11.2979765,0.106576223,1620000000000 ,1620000000000 ,1620000000000 ,1616812470410 -1616812470435 ,112.5697165,26.87749124,58.44275665,214.2026087,218.0557832,11.298249,0.106575784,1620000000000 ,1620000000000 ,1620000000000 ,1616812470420 -1616812470447 ,112.5697158,26.8774904,58.44298172,214.1957512,218.0564841,11.299013,0.106581212,1620000000000 ,1620000000000 ,1620000000000 ,1616812470430 -1616812470456 ,112.5697152,26.87748956,58.44322586,214.1905603,218.0509518,11.299365,0.106587962,1620000000000 ,1620000000000 ,1620000000000 ,1616812470440 -1616812470465 ,112.5697145,26.87748872,58.44352341,214.183812,218.0339708,11.296854,0.106573994,1620000000000 ,1620000000000 ,1620000000000 ,1616812470450 -1616812470476 ,112.5697139,26.87748788,58.44393539,214.1756705,217.5723184,11.293183,0.105990639,1620000000000 ,1620000000000 ,1620000000000 ,1616812470460 -1616812470486 ,112.5697132,26.87748704,58.4443512,214.1699877,217.5710631,11.292572,0.105981865,1620000000000 ,1620000000000 ,1620000000000 ,1616812470470 -1616812470496 ,112.5697126,26.8774862,58.44469833,214.1650427,217.5728887,11.293021,0.105983213,1620000000000 ,1620000000000 ,1620000000000 ,1616812470480 -1616812470506 ,112.5697119,26.87748536,58.44495392,214.1582945,217.5705921,11.293944,0.105987099,1620000000000 ,1620000000000 ,1620000000000 ,1616812470490 -1616812470518 ,112.5697113,26.87748452,58.44514847,214.1529669,217.547184,11.292533,0.105975427,1620000000000 ,1620000000000 ,1620000000000 ,1616812470500 -1616812470525 ,112.5697106,26.87748368,58.44527817,214.1449073,217.5294614,11.2914095,0.105959893,1620000000000 ,1620000000000 ,1620000000000 ,1616812470510 -1616812470536 ,112.56971,26.87748284,58.4453125,214.1386781,217.5276274,11.290898,0.105948538,1620000000000 ,1620000000000 ,1620000000000 ,1616812470520 -1616812470547 ,112.5697093,26.877482,58.44519806,214.132531,217.5290904,11.290956,0.105942902,1620000000000 ,1620000000000 ,1620000000000 ,1616812470530 -1616812470556 ,112.5697087,26.87748116,58.44497681,214.1265477,217.5235276,11.290588,0.105936751,1620000000000 ,1620000000000 ,1620000000000 ,1616812470540 -1616812470567 ,112.569708,26.87748032,58.44470978,214.1175319,217.4985559,11.290509,0.105929571,1620000000000 ,1620000000000 ,1620000000000 ,1616812470550 -1616812470580 ,112.5697074,26.87747948,58.44440842,214.1094723,217.4743794,11.288608,0.105911196,1620000000000 ,1620000000000 ,1620000000000 ,1616812470560 -1616812470590 ,112.5697068,26.87747864,58.44403076,214.1039261,217.4680917,11.287664,0.105893269,1620000000000 ,1620000000000 ,1620000000000 ,1616812470570 -1616812470598 ,112.5697061,26.8774778,58.44356537,214.0986806,217.4685744,11.28711,0.105886751,1620000000000 ,1620000000000 ,1620000000000 ,1616812470580 -1616812470607 ,112.5697055,26.87747696,58.44303513,214.0938448,217.4659211,11.284782,0.105865196,1620000000000 ,1620000000000 ,1620000000000 ,1616812470590 -1616812470617 ,112.5697048,26.87747612,58.44247818,214.0896647,217.4492299,11.283259,0.105844163,1620000000000 ,1620000000000 ,1620000000000 ,1616812470600 -1616812470630 ,112.5697042,26.87747528,58.4418869,214.0835995,217.4334076,11.279231,0.105808789,1620000000000 ,1620000000000 ,1620000000000 ,1616812470610 -1616812470639 ,112.5697035,26.87747444,58.44123459,214.0749661,217.4261542,11.27666,0.105776394,1620000000000 ,1620000000000 ,1620000000000 ,1616812470620 -1616812470654 ,112.5697029,26.8774736,58.44052505,214.0708953,217.4243804,11.274953,0.105756414,1620000000000 ,1620000000000 ,1620000000000 ,1616812470630 -1616812470657 ,112.5697023,26.87747276,58.43980408,214.0651033,217.4243961,11.272911,0.105735172,1620000000000 ,1620000000000 ,1620000000000 ,1616812470640 -1616812470670 ,112.5697016,26.87747192,58.43910217,214.060131,217.4097717,11.271428,0.105718567,1620000000000 ,1620000000000 ,1620000000000 ,1616812470650 -1616812470677 ,112.569701,26.87747108,58.43838501,214.0546122,217.3913842,11.270305,0.105704788,1620000000000 ,1620000000000 ,1620000000000 ,1616812470660 -1616812470688 ,112.5697003,26.87747024,58.43761444,214.0501043,217.3902783,11.2681675,0.105683026,1620000000000 ,1620000000000 ,1620000000000 ,1616812470670 -1616812470701 ,112.5696997,26.8774694,58.43679428,214.0434926,217.3992955,11.265276,0.105657093,1620000000000 ,1620000000000 ,1620000000000 ,1616812470680 -1616812470709 ,112.569699,26.87746856,58.43596268,214.0372362,217.3984769,11.261596,0.105619403,1620000000000 ,1620000000000 ,1620000000000 ,1616812470690 -1616812470719 ,112.5696984,26.87746772,58.43518448,214.0307065,217.3886832,11.259013,0.105596647,1620000000000 ,1620000000000 ,1620000000000 ,1616812470700 -1616812470729 ,112.5696978,26.87746688,58.43444443,214.023166,217.3741191,11.256792,0.105571894,1620000000000 ,1620000000000 ,1620000000000 ,1616812470710 -1616812470742 ,112.5696971,26.87746604,58.43366623,214.016609,217.3691554,11.254993,0.10554777,1620000000000 ,1620000000000 ,1620000000000 ,1616812470720 -1616812470753 ,112.5696965,26.8774652,58.43278885,214.0096422,217.3668758,11.254251,0.105533519,1620000000000 ,1620000000000 ,1620000000000 ,1616812470730 -1616812470758 ,112.5696958,26.87746436,58.4318161,214.0040141,217.3592944,11.253554,0.105520088,1620000000000 ,1620000000000 ,1620000000000 ,1616812470740 -1616812470769 ,112.5696952,26.87746353,58.43082047,213.9968834,217.3479955,11.252146,0.105504294,1620000000000 ,1620000000000 ,1620000000000 ,1616812470750 -1616812470783 ,112.5696946,26.87746269,58.42985153,213.9902718,217.330844,11.247941,0.105467769,1620000000000 ,1620000000000 ,1620000000000 ,1616812470760 -1616812470788 ,112.5696939,26.87746185,58.4289093,213.9843159,217.3167089,11.244158,0.105427565,1620000000000 ,1620000000000 ,1620000000000 ,1616812470770 -1616812470798 ,112.5696933,26.87746101,58.42800522,213.9773491,217.3065018,11.240979,0.10539349,1620000000000 ,1620000000000 ,1620000000000 ,1616812470780 -1616812470808 ,112.5696926,26.87746017,58.42712402,213.9715298,217.3038229,11.23991,0.105379445,1620000000000 ,1620000000000 ,1620000000000 ,1616812470790 -1616812470820 ,112.569692,26.87745933,58.42625427,213.965246,217.295655,11.239569,0.105369454,1620000000000 ,1620000000000 ,1620000000000 ,1616812470800 -1616812470830 ,112.5696914,26.8774585,58.42541885,213.9572137,217.2834531,11.238643,0.105361595,1620000000000 ,1620000000000 ,1620000000000 ,1616812470810 -1616812470843 ,112.5696907,26.87745766,58.42464828,213.9501922,217.2737022,11.236141,0.105340495,1620000000000 ,1620000000000 ,1620000000000 ,1616812470820 -1616812470849 ,112.5696901,26.87745682,58.42394638,213.9431162,217.2695415,11.233191,0.105314009,1620000000000 ,1620000000000 ,1620000000000 ,1616812470830 -1616812470858 ,112.5696895,26.87745598,58.42329025,213.9371329,217.2675885,11.229557,0.105280946,1620000000000 ,1620000000000 ,1620000000000 ,1616812470840 -1616812470868 ,112.5696888,26.87745514,58.42270279,213.9313956,217.2549741,11.225469,0.105244645,1620000000000 ,1620000000000 ,1620000000000 ,1616812470850 -1616812470878 ,112.5696882,26.87745431,58.42221069,213.9256036,217.2425231,11.2218685,0.10520804,1620000000000 ,1620000000000 ,1620000000000 ,1616812470860 -1616812470888 ,112.5696875,26.87745347,58.42180634,213.9191559,217.2382919,11.219754,0.105182953,1620000000000 ,1620000000000 ,1620000000000 ,1616812470870 -1616812470899 ,112.5696869,26.87745263,58.4214592,213.9136644,217.2360682,11.217065,0.105164515,1620000000000 ,1620000000000 ,1620000000000 ,1616812470880 -1616812470911 ,112.5696863,26.87745179,58.42117691,213.9081456,217.239767,11.215362,0.105148024,1620000000000 ,1620000000000 ,1620000000000 ,1616812470890 -1616812470921 ,112.5696856,26.87745096,58.42098999,213.9007417,217.2403575,11.213713,0.105134336,1620000000000 ,1620000000000 ,1620000000000 ,1616812470900 -1616812470929 ,112.569685,26.87745012,58.42088699,213.8932285,217.2353154,11.2104845,0.105104866,1620000000000 ,1620000000000 ,1620000000000 ,1616812470910 -1616812470939 ,112.5696844,26.87744928,58.42087173,213.8849503,217.2301765,11.206453,0.105076452,1620000000000 ,1620000000000 ,1620000000000 ,1616812470920 -1616812470949 ,112.5696837,26.87744845,58.42094803,213.8778469,217.2240697,11.2019,0.105036427,1620000000000 ,1620000000000 ,1620000000000 ,1616812470930 -1616812470959 ,112.5696831,26.87744761,58.42111588,213.8694321,217.2251552,11.198605,0.105006253,1620000000000 ,1620000000000 ,1620000000000 ,1616812470940 -1616812470977 ,112.5696825,26.87744678,58.42134476,213.8626019,217.2231661,11.195974,0.104980436,1620000000000 ,1620000000000 ,1620000000000 ,1616812470950 -1616812470982 ,112.5696818,26.87744594,58.4215889,213.8576295,217.2177167,11.192774,0.104953659,1620000000000 ,1620000000000 ,1620000000000 ,1616812470960 -1616812470993 ,112.5696812,26.8774451,58.42187881,213.8498158,217.2134284,11.190018,0.104928453,1620000000000 ,1620000000000 ,1620000000000 ,1616812470970 -1616812471002 ,112.5696806,26.87744427,58.42223358,213.8408546,217.1993263,11.187146,0.104901092,1620000000000 ,1620000000000 ,1620000000000 ,1616812470980 -1616812471010 ,112.5696799,26.87744343,58.42265701,213.8309918,217.1907376,11.182757,0.104867919,1620000000000 ,1620000000000 ,1620000000000 ,1616812470990 -1616812471020 ,112.5696793,26.8774426,58.42313004,213.8214842,217.1875436,11.179472,0.104832953,1620000000000 ,1620000000000 ,1620000000000 ,1616812471000 -1616812471030 ,112.5696787,26.87744176,58.42367172,213.8126869,217.1813182,11.175381,0.104801441,1620000000000 ,1620000000000 ,1620000000000 ,1616812471010 -1616812471040 ,112.569678,26.87744093,58.42430496,213.8041901,217.1646309,11.1704445,0.104759704,1620000000000 ,1620000000000 ,1620000000000 ,1616812471020 -1616812471051 ,112.5696774,26.87744009,58.4250145,213.7967862,217.1430691,11.165291,0.104713068,1620000000000 ,1620000000000 ,1620000000000 ,1616812471030 -1616812471061 ,112.5696768,26.87743926,58.42574692,213.7904751,217.1312662,11.161729,0.104676703,1620000000000 ,1620000000000 ,1620000000000 ,1616812471040 -1616812471072 ,112.5696761,26.87743842,58.42645645,213.7828526,217.1230991,11.158252,0.104640943,1620000000000 ,1620000000000 ,1620000000000 ,1616812471050 -1616812471081 ,112.5696755,26.87743759,58.42714691,213.7752574,217.1142775,11.156601,0.10462297,1620000000000 ,1620000000000 ,1620000000000 ,1616812471060 -1616812471091 ,112.5696749,26.87743676,58.427845,213.7676076,217.1086777,11.153734,0.104598507,1620000000000 ,1620000000000 ,1620000000000 ,1616812471070 -1616812471100 ,112.5696742,26.87743592,58.42855835,213.7597393,217.1052328,11.1496525,0.104568587,1620000000000 ,1620000000000 ,1620000000000 ,1616812471080 -1616812471111 ,112.5696736,26.87743509,58.42926407,213.7503409,217.1003594,11.145965,0.104533175,1620000000000 ,1620000000000 ,1620000000000 ,1616812471090 -1616812471120 ,112.569673,26.87743425,58.4299202,213.7425545,217.1021178,11.1428175,0.104499722,1620000000000 ,1620000000000 ,1620000000000 ,1616812471100 -1616812471130 ,112.5696723,26.87743342,58.43051529,213.7332108,217.0980132,11.139604,0.104471784,1620000000000 ,1620000000000 ,1620000000000 ,1616812471110 -1616812471144 ,112.5696717,26.87743259,58.43100739,213.7234846,217.0853335,11.136471,0.104437003,1620000000000 ,1620000000000 ,1620000000000 ,1616812471120 -1616812471154 ,112.5696711,26.87743176,58.43138504,213.7125563,217.0854871,11.135384,0.104417374,1620000000000 ,1620000000000 ,1620000000000 ,1616812471130 -1616812471163 ,112.5696705,26.87743092,58.43164063,213.7026115,217.0821451,11.131652,0.104385969,1620000000000 ,1620000000000 ,1620000000000 ,1616812471140 -1616812471172 ,112.5696698,26.87743009,58.43178558,213.6918199,217.0833748,11.129126,0.104354191,1620000000000 ,1620000000000 ,1620000000000 ,1616812471150 -1616812471182 ,112.5696692,26.87742926,58.43185806,213.6816839,217.0865769,11.126897,0.104334122,1620000000000 ,1620000000000 ,1620000000000 ,1616812471160 -1616812471191 ,112.5696686,26.87742843,58.43183899,213.6716845,217.085144,11.12442,0.104304422,1620000000000 ,1620000000000 ,1620000000000 ,1616812471170 -1616812471201 ,112.5696679,26.87742759,58.43171692,213.6598546,217.0846803,11.122365,0.10428078,1620000000000 ,1620000000000 ,1620000000000 ,1616812471180 -1616812471211 ,112.5696673,26.87742676,58.43148422,213.6485984,217.0798815,11.119397,0.104252011,1620000000000 ,1620000000000 ,1620000000000 ,1616812471190 -1616812471222 ,112.5696667,26.87742593,58.43117142,213.6367958,217.0597549,11.117493,0.104220761,1620000000000 ,1620000000000 ,1620000000000 ,1616812471200 -1616812471233 ,112.569666,26.87742511,58.43006516,213.6225617,217.7098624,11.114167,0.104185647,1620000000000 ,1620000000000 ,1620000000000 ,1616812471210 -1616812471243 ,112.5696654,26.87742428,58.42882156,213.6100488,217.7993159,11.110919,0.104170009,1620000000000 ,1620000000000 ,1620000000000 ,1616812471220 -1616812471253 ,112.5696648,26.87742346,58.42748642,213.5991205,217.7772762,11.108039,0.104130513,1620000000000 ,1620000000000 ,1620000000000 ,1616812471230 -1616812471264 ,112.5696641,26.87742264,58.4260788,213.5896129,217.7638795,11.104859,0.104096953,1620000000000 ,1620000000000 ,1620000000000 ,1616812471240 -1616812471274 ,112.5696635,26.87742181,58.42464066,213.577182,217.7407277,11.102892,0.104064841,1620000000000 ,1620000000000 ,1620000000000 ,1616812471250 -1616812471287 ,112.5696629,26.87742099,58.42314529,213.568412,217.7154008,11.100718,0.104043273,1620000000000 ,1620000000000 ,1620000000000 ,1616812471270 -1616812471294 ,112.5696622,26.87742017,58.42162323,213.5561177,217.7099409,11.097898,0.104011936,1620000000000 ,1620000000000 ,1620000000000 ,1616812471280 -1616812471304 ,112.5696616,26.87741935,58.42014313,213.5433042,217.7091234,11.093195,0.103973223,1620000000000 ,1620000000000 ,1620000000000 ,1616812471280 -1616812471315 ,112.569661,26.87741852,58.41872025,213.5319115,217.6907612,11.088471,0.103924999,1620000000000 ,1620000000000 ,1620000000000 ,1616812471300 -1616812471328 ,112.5696603,26.8774177,58.41733551,213.5202728,217.6760752,11.083623,0.103880856,1620000000000 ,1620000000000 ,1620000000000 ,1616812471310 -1616812471334 ,112.5696597,26.87741688,58.41592407,213.5108198,217.6611448,11.0804205,0.103840693,1620000000000 ,1620000000000 ,1620000000000 ,1616812471320 -1616812471345 ,112.569659,26.87741606,58.41447067,213.5014488,217.6464407,11.076949,0.103800251,1620000000000 ,1620000000000 ,1620000000000 ,1616812471320 -1616812471353 ,112.5696584,26.87741524,58.4129982,213.4905478,217.6304567,11.073956,0.103769008,1620000000000 ,1620000000000 ,1620000000000 ,1616812471340 -1616812471363 ,112.5696571,26.87741359,58.41000748,213.4662597,217.6092339,11.069886,0.207464479,1620000000000 ,1620000000000 ,1620000000000 ,1616812471350 -1616812471373 ,112.5696565,26.87741277,58.40848923,213.4527906,217.6029015,11.068558,0.103703458,1620000000000 ,1620000000000 ,1620000000000 ,1616812471360 -1616812471383 ,112.5696559,26.87741195,58.40697861,213.4410153,217.5988139,11.065076,0.103673842,1620000000000 ,1620000000000 ,1620000000000 ,1616812471370 -1616812471396 ,112.5696553,26.87741113,58.40550995,213.4279013,217.5940734,11.059618,0.103630619,1620000000000 ,1620000000000 ,1620000000000 ,1616812471380 -1616812471405 ,112.5696546,26.87741031,58.4041214,213.4166725,217.5804531,11.055506,0.103585792,1620000000000 ,1620000000000 ,1620000000000 ,1616812471390 -1616812471415 ,112.5696546,26.87741031,58.4041214,213.4166725,-400,11.055506,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812471400 -1616812471425 ,112.5696534,26.87740867,58.4016037,213.3952804,217.5595402,11.045894,0.207041989,1620000000000 ,1620000000000 ,1620000000000 ,1616812471410 -1616812471436 ,112.5696527,26.87740785,58.40045166,213.3850351,217.5564003,11.042206,0.103465735,1620000000000 ,1620000000000 ,1620000000000 ,1616812471420 -1616812471444 ,112.5696521,26.87740703,58.39934921,213.3730413,217.5261846,11.037651,0.103416487,1620000000000 ,1620000000000 ,1620000000000 ,1616812471430 -1616812471454 ,112.5696515,26.8774062,58.39832687,213.3640527,217.5027922,11.036351,0.103397416,1620000000000 ,1620000000000 ,1620000000000 ,1616812471440 -1616812471463 ,112.5696508,26.87740538,58.39732361,213.3527419,217.4781997,11.033935,0.103373371,1620000000000 ,1620000000000 ,1620000000000 ,1616812471450 -1616812471478 ,112.5696502,26.87740456,58.39697266,213.342442,216.8929784,11.03074,0.10336551,1620000000000 ,1620000000000 ,1620000000000 ,1616812471460 -1616812471486 ,112.5696496,26.87740373,58.39666367,213.3314591,216.8837617,11.025642,0.103321779,1620000000000 ,1620000000000 ,1620000000000 ,1616812471470 -1616812471495 ,112.569649,26.87740291,58.3964386,213.3195199,216.8516686,11.021181,0.103274898,1620000000000 ,1620000000000 ,1620000000000 ,1616812471480 -1616812471508 ,112.5696484,26.87740208,58.39630508,213.3082637,216.8274558,11.016833,0.103233728,1620000000000 ,1620000000000 ,1620000000000 ,1616812471490 -1616812471517 ,112.5696477,26.87740125,58.39621735,213.298401,216.8072504,11.012506,0.103190354,1620000000000 ,1620000000000 ,1620000000000 ,1616812471500 -1616812471525 ,112.5696471,26.87740043,58.39614487,213.2886201,216.7910987,11.009114,0.103154399,1620000000000 ,1620000000000 ,1620000000000 ,1616812471510 -1616812471535 ,112.5696465,26.8773996,58.39606857,213.2790852,216.7838148,11.007703,0.103134509,1620000000000 ,1620000000000 ,1620000000000 ,1616812471520 -1616812471546 ,112.5696459,26.87739877,58.39599228,213.2717632,216.7646955,11.007245,0.103123391,1620000000000 ,1620000000000 ,1620000000000 ,1616812471530 -1616812471555 ,112.5696453,26.87739795,58.39593506,213.262884,216.7421243,11.005617,0.103109541,1620000000000 ,1620000000000 ,1620000000000 ,1616812471540 -1616812471565 ,112.5696447,26.87739712,58.39591599,213.2546877,216.7318797,11.002737,0.103084907,1620000000000 ,1620000000000 ,1620000000000 ,1616812471550 -1616812471575 ,112.569644,26.8773963,58.39593124,213.2465462,216.736667,10.999728,0.103059565,1620000000000 ,1620000000000 ,1620000000000 ,1616812471560 -1616812471586 ,112.5696434,26.87739547,58.39596939,213.2387597,216.7374271,10.996351,0.103029452,1620000000000 ,1620000000000 ,1620000000000 ,1616812471570 -1616812471597 ,112.5696428,26.87739464,58.39603424,213.229498,216.7288619,10.995269,0.10301095,1620000000000 ,1620000000000 ,1620000000000 ,1616812471580 -1616812471606 ,112.5696422,26.87739382,58.39611053,213.2198265,216.7154289,10.99338,0.102997199,1620000000000 ,1620000000000 ,1620000000000 ,1616812471590 -1616812471622 ,112.5696416,26.87739299,58.39616776,213.212204,216.7051263,10.992883,0.102985154,1620000000000 ,1620000000000 ,1620000000000 ,1616812471600 -1616812471625 ,112.569641,26.87739217,58.39615631,213.2029149,216.7091529,10.992801,0.102982786,1620000000000 ,1620000000000 ,1620000000000 ,1616812471610 -1616812471637 ,112.5696403,26.87739134,58.39607239,213.1946914,216.7100928,10.993516,0.102982206,1620000000000 ,1620000000000 ,1620000000000 ,1616812471620 -1616812471645 ,112.5696397,26.87739052,58.39595795,213.1856482,216.6982719,10.992606,0.102976531,1620000000000 ,1620000000000 ,1620000000000 ,1616812471630 -1616812471655 ,112.5696391,26.87738969,58.39585495,213.1751297,216.6779674,10.990979,0.102960916,1620000000000 ,1620000000000 ,1620000000000 ,1616812471640 -1616812471667 ,112.5696385,26.87738887,58.39576721,213.1663051,216.6596191,10.988812,0.102938652,1620000000000 ,1620000000000 ,1620000000000 ,1616812471650 -1616812471678 ,112.5696379,26.87738804,58.39565659,213.1600213,216.6530711,10.988368,0.102928472,1620000000000 ,1620000000000 ,1620000000000 ,1616812471660 -1616812471687 ,112.5696373,26.87738721,58.39551163,213.1536283,216.6509045,10.987073,0.102915669,1620000000000 ,1620000000000 ,1620000000000 ,1616812471670 -1616812471696 ,112.5696367,26.87738639,58.3953743,213.1477816,216.6321961,10.986067,0.102905171,1620000000000 ,1620000000000 ,1620000000000 ,1616812471680 -1616812471708 ,112.569636,26.87738556,58.395298,213.1392849,216.6001896,10.983955,0.10288271,1620000000000 ,1620000000000 ,1620000000000 ,1616812471690 -1616812471716 ,112.5696354,26.87738474,58.39526749,213.1331104,216.5818697,10.98288,0.102868775,1620000000000 ,1620000000000 ,1620000000000 ,1616812471700 -1616812471726 ,112.5696348,26.87738391,58.39522171,213.1287117,216.5732314,10.9812765,0.10285287,1620000000000 ,1620000000000 ,1620000000000 ,1616812471710 -1616812471738 ,112.5696342,26.87738308,58.39513397,213.1251874,216.5693953,10.981232,0.1028448,1620000000000 ,1620000000000 ,1620000000000 ,1616812471720 -1616812471751 ,112.5696336,26.87738226,58.39504242,213.1198052,216.5617002,10.981674,0.102850224,1620000000000 ,1620000000000 ,1620000000000 ,1616812471730 -1616812471758 ,112.569633,26.87738143,58.39494705,213.1138492,216.5372708,10.982193,0.102846928,1620000000000 ,1620000000000 ,1620000000000 ,1616812471740 -1616812471768 ,112.5696324,26.8773806,58.39482117,213.1104888,216.5204839,10.983294,0.102854972,1620000000000 ,1620000000000 ,1620000000000 ,1616812471750 -1616812471778 ,112.5696318,26.87737978,58.3946228,213.1082485,216.5290003,10.984736,0.102862547,1620000000000 ,1620000000000 ,1620000000000 ,1616812471760 -1616812471796 ,112.5696311,26.87737895,58.39435577,213.1060082,216.540675,10.985705,0.102874035,1620000000000 ,1620000000000 ,1620000000000 ,1616812471770 -1616812471798 ,112.5696305,26.87737813,58.39407349,213.1011724,216.5327077,10.985489,0.102873954,1620000000000 ,1620000000000 ,1620000000000 ,1616812471780 -1616812471808 ,112.5696299,26.8773773,58.3938179,213.0970197,216.5248369,10.985292,0.102872503,1620000000000 ,1620000000000 ,1620000000000 ,1616812471790 -1616812471819 ,112.5696293,26.87737647,58.39355087,213.0949433,216.518815,10.985923,0.10287166,1620000000000 ,1620000000000 ,1620000000000 ,1616812471800 -1616812471828 ,112.5696287,26.87737565,58.39326477,213.0907905,216.5264073,10.986254,0.102876682,1620000000000 ,1620000000000 ,1620000000000 ,1616812471810 -1616812471838 ,112.5696281,26.87737482,58.39296341,213.0902168,216.5268439,10.988317,0.102891883,1620000000000 ,1620000000000 ,1620000000000 ,1616812471820 -1616812471849 ,112.5696275,26.87737399,58.39264297,213.0872388,216.5215841,10.989248,0.102903876,1620000000000 ,1620000000000 ,1620000000000 ,1616812471830 -1616812471857 ,112.5696269,26.87737316,58.39227295,213.0835505,216.5161971,10.989836,0.102902599,1620000000000 ,1620000000000 ,1620000000000 ,1616812471840 -1616812471868 ,112.5696262,26.87737234,58.39182663,213.0788787,216.5171729,10.989522,0.102902511,1620000000000 ,1620000000000 ,1620000000000 ,1616812471850 -1616812471878 ,112.5696256,26.87737151,58.39131165,213.075245,216.5198272,10.989668,0.102899677,1620000000000 ,1620000000000 ,1620000000000 ,1616812471860 -1616812471888 ,112.569625,26.87737068,58.39076996,213.0718299,216.5160325,10.989682,0.102896001,1620000000000 ,1620000000000 ,1620000000000 ,1616812471870 -1616812471898 ,112.5696244,26.87736986,58.39025116,213.068087,216.5144356,10.988918,0.102891633,1620000000000 ,1620000000000 ,1620000000000 ,1616812471880 -1616812471908 ,112.5696238,26.87736903,58.38978958,213.0621584,216.501506,10.987908,0.102880452,1620000000000 ,1620000000000 ,1620000000000 ,1616812471890 -1616812471919 ,112.5696232,26.8773682,58.38934708,213.0580329,216.4922315,10.989872,0.102891476,1620000000000 ,1620000000000 ,1620000000000 ,1616812471900 -1616812471928 ,112.5696226,26.87736737,58.38886642,213.0559839,216.4896389,10.990875,0.102902461,1620000000000 ,1620000000000 ,1620000000000 ,1616812471910 -1616812471941 ,112.569622,26.87736655,58.38835526,213.0539621,216.4981709,10.992222,0.10291405,1620000000000 ,1620000000000 ,1620000000000 ,1616812471920 -1616812471950 ,112.5696213,26.87736572,58.38789368,213.0506017,216.4811883,10.990042,0.102901423,1620000000000 ,1620000000000 ,1620000000000 ,1616812471930 -1616812471959 ,112.5696207,26.87736489,58.38750839,213.0465309,216.4615757,10.988925,0.102884943,1620000000000 ,1620000000000 ,1620000000000 ,1616812471940 -1616812471968 ,112.5696201,26.87736407,58.38715363,213.0453288,216.4569462,10.988649,0.102879569,1620000000000 ,1620000000000 ,1620000000000 ,1616812471950 -1616812471979 ,112.5696195,26.87736324,58.38675308,213.0436622,216.4586418,10.990549,0.10289281,1620000000000 ,1620000000000 ,1620000000000 ,1616812471960 -1616812471988 ,112.5696189,26.87736241,58.38630676,213.04134,216.4679714,10.991708,0.102906838,1620000000000 ,1620000000000 ,1620000000000 ,1616812471970 -1616812471999 ,112.5696183,26.87736158,58.38584137,213.0365315,216.4682993,10.993947,0.102921802,1620000000000 ,1620000000000 ,1620000000000 ,1616812471980 -1616812472009 ,112.5696177,26.87736075,58.38538361,213.0336628,216.4611716,10.993589,0.102926768,1620000000000 ,1620000000000 ,1620000000000 ,1616812471990 -1616812472021 ,112.5696171,26.87735993,58.38493729,213.0294827,216.4545718,10.995036,0.102932578,1620000000000 ,1620000000000 ,1620000000000 ,1616812472000 -1616812472036 ,112.5696165,26.8773591,58.38451385,213.0255486,216.45182,10.994723,0.102935087,1620000000000 ,1620000000000 ,1620000000000 ,1616812472010 -1616812472043 ,112.5696158,26.87735827,58.38411713,213.0229804,216.4554386,10.993979,0.10292848,1620000000000 ,1620000000000 ,1620000000000 ,1616812472020 -1616812472050 ,112.5696152,26.87735744,58.38376236,213.0190189,216.4571147,10.994417,0.102935057,1620000000000 ,1620000000000 ,1620000000000 ,1616812472030 -1616812472060 ,112.5696146,26.87735662,58.38343048,213.0161502,216.450276,10.99433,0.102932616,1620000000000 ,1620000000000 ,1620000000000 ,1616812472040 -1616812472071 ,112.569614,26.87735579,58.38311005,213.0120248,216.4426011,10.996987,0.102950169,1620000000000 ,1620000000000 ,1620000000000 ,1616812472050 -1616812472080 ,112.5696134,26.87735496,58.38277435,213.0106861,216.4384949,10.998936,0.102970234,1620000000000 ,1620000000000 ,1620000000000 ,1616812472060 -1616812472094 ,112.5696128,26.87735413,58.3824234,213.008719,216.433964,11.000208,0.102981408,1620000000000 ,1620000000000 ,1620000000000 ,1616812472070 -1616812472104 ,112.5696122,26.8773533,58.38210678,213.0052492,216.4308316,11.0003605,0.102987718,1620000000000 ,1620000000000 ,1620000000000 ,1616812472080 -1616812472117 ,112.5696116,26.87735247,58.38186264,213.0035007,216.4201086,11.000682,0.102992585,1620000000000 ,1620000000000 ,1620000000000 ,1616812472090 -1616812472122 ,112.569611,26.87735164,58.38169098,213.0015883,216.4088072,11.00122,0.102997024,1620000000000 ,1620000000000 ,1620000000000 ,1616812472100 -1616812472130 ,112.5696103,26.87735081,58.38153458,212.9993206,216.4027979,11.001924,0.10300438,1620000000000 ,1620000000000 ,1620000000000 ,1616812472110 -1616812472141 ,112.5696097,26.87734999,58.38135529,212.9967525,216.405506,11.002415,0.103008244,1620000000000 ,1620000000000 ,1620000000000 ,1616812472120 -1616812472152 ,112.5696091,26.87734916,58.38116455,212.9959329,216.4039237,11.003273,0.103016014,1620000000000 ,1620000000000 ,1620000000000 ,1616812472130 -1616812472162 ,112.5696085,26.87734833,58.38098907,212.9933101,216.3933538,11.004845,0.103027502,1620000000000 ,1620000000000 ,1620000000000 ,1616812472140 -1616812472170 ,112.5696079,26.8773475,58.3808403,212.9901955,216.3857486,11.005206,0.103037562,1620000000000 ,1620000000000 ,1620000000000 ,1616812472150 -1616812472181 ,112.5696073,26.87734667,58.38067627,212.989212,216.381433,11.006262,0.103043474,1620000000000 ,1620000000000 ,1620000000000 ,1616812472160 -1616812472193 ,112.5696067,26.87734584,58.38049316,212.9870536,216.3894747,11.005721,0.10304465,1620000000000 ,1620000000000 ,1620000000000 ,1616812472170 -1616812472202 ,112.5696061,26.87734501,58.38030624,212.9844035,216.3920414,11.005769,0.103044116,1620000000000 ,1620000000000 ,1620000000000 ,1616812472180 -1616812472213 ,112.5696054,26.87734418,58.38012695,212.9816441,216.3845303,11.007131,0.103053189,1620000000000 ,1620000000000 ,1620000000000 ,1616812472190 -1616812472223 ,112.5696048,26.87734335,58.37991714,212.9792672,216.3773869,11.008968,0.103068284,1620000000000 ,1620000000000 ,1620000000000 ,1616812472200 -1616812472231 ,112.5696042,26.87734252,58.37919235,212.9848953,216.5959261,11.005144,0.103004076,1620000000000 ,1620000000000 ,1620000000000 ,1616812472210 -1616812472245 ,112.5696036,26.8773417,58.37836838,212.9825457,216.6345842,11.005005,0.10298866,1620000000000 ,1620000000000 ,1620000000000 ,1616812472220 -1616812472252 ,112.569603,26.87734087,58.37758255,212.9795404,216.6312512,11.00506,0.102986274,1620000000000 ,1620000000000 ,1620000000000 ,1616812472230 -1616812472262 ,112.5696024,26.87734004,58.37682724,212.9776826,216.6282667,11.005074,0.102988502,1620000000000 ,1620000000000 ,1620000000000 ,1616812472240 -1616812472271 ,112.5696018,26.87733922,58.37604523,212.9746773,216.6206925,11.004932,0.102986196,1620000000000 ,1620000000000 ,1620000000000 ,1616812472250 -1616812472282 ,112.5696012,26.87733839,58.37519836,212.9713169,216.6257466,11.007849,0.10300587,1620000000000 ,1620000000000 ,1620000000000 ,1616812472260 -1616812472293 ,112.5696005,26.87733756,58.37427521,212.9689399,216.6256663,11.008619,0.103014482,1620000000000 ,1620000000000 ,1620000000000 ,1616812472270 -1616812472302 ,112.5695999,26.87733674,58.3733139,212.9655795,216.616911,11.009925,0.10302204,1620000000000 ,1620000000000 ,1620000000000 ,1616812472280 -1616812472313 ,112.5695993,26.87733591,58.37233734,212.9622737,216.6059464,11.010927,0.103030029,1620000000000 ,1620000000000 ,1620000000000 ,1616812472290 -1616812472324 ,112.5695987,26.87733508,58.37133026,212.9611535,216.5997061,11.01161,0.103032908,1620000000000 ,1620000000000 ,1620000000000 ,1616812472300 -1616812472332 ,112.5695981,26.87733425,58.37026596,212.9586947,216.5961878,11.012667,0.103040039,1620000000000 ,1620000000000 ,1620000000000 ,1616812472310 -1616812472342 ,112.5695975,26.87733343,58.369133,212.9560992,216.5933676,11.013352,0.103042977,1620000000000 ,1620000000000 ,1620000000000 ,1616812472320 -1616812472353 ,112.5695969,26.8773326,58.36795807,212.9534491,216.5888376,11.015088,0.103052821,1620000000000 ,1620000000000 ,1620000000000 ,1616812472330 -1616812472363 ,112.5695962,26.87733177,58.3667717,212.9515366,216.5792063,11.016048,0.103064098,1620000000000 ,1620000000000 ,1620000000000 ,1616812472350 -1616812472375 ,112.5695956,26.87733094,58.36557007,212.9484494,216.5780423,11.017575,0.103072779,1620000000000 ,1620000000000 ,1620000000000 ,1616812472360 -1616812472384 ,112.569595,26.87733012,58.36434937,212.9442693,216.5699531,11.01849,0.103080461,1620000000000 ,1620000000000 ,1620000000000 ,1616812472370 -1616812472394 ,112.5695944,26.87732929,58.36309052,212.9417831,216.5690148,11.019286,0.103083085,1620000000000 ,1620000000000 ,1620000000000 ,1616812472380 -1616812472404 ,112.5695938,26.87732846,58.36182022,212.939816,216.5704891,11.020738,0.103095779,1620000000000 ,1620000000000 ,1620000000000 ,1616812472380 -1616812472413 ,112.5695926,26.8773268,58.35916901,212.9335322,216.5658781,11.023361,0.206223288,1620000000000 ,1620000000000 ,1620000000000 ,1616812472400 -1616812472430 ,112.5695919,26.87732598,58.35780334,212.9322755,216.5615773,11.02378,0.103116562,1620000000000 ,1620000000000 ,1620000000000 ,1616812472410 -1616812472439 ,112.5695913,26.87732515,58.35644913,212.9280408,216.5609924,11.024664,0.103127484,1620000000000 ,1620000000000 ,1620000000000 ,1616812472420 -1616812472447 ,112.5695907,26.87732432,58.35511017,212.9252541,216.5599597,11.025572,0.103133998,1620000000000 ,1620000000000 ,1620000000000 ,1616812472430 -1616812472456 ,112.5695901,26.87732349,58.35382462,212.9223854,216.5621394,11.025685,0.103138913,1620000000000 ,1620000000000 ,1620000000000 ,1616812472440 -1616812472465 ,112.5695895,26.87732266,58.3526001,212.9172218,216.5507461,11.025832,0.10314055,1620000000000 ,1620000000000 ,1620000000000 ,1616812472450 -1616812472476 ,112.5695889,26.87732183,58.35180664,212.9139706,216.3596705,11.026451,0.103199347,1620000000000 ,1620000000000 ,1620000000000 ,1616812472460 -1616812472485 ,112.5695883,26.877321,58.35103226,212.9107741,216.3519046,11.028231,0.103211305,1620000000000 ,1620000000000 ,1620000000000 ,1616812472470 -1616812472495 ,112.5695876,26.87732017,58.35025787,212.9078507,216.3482064,11.028567,0.103218623,1620000000000 ,1620000000000 ,1620000000000 ,1616812472480 -1616812472504 ,112.569587,26.87731934,58.34951401,212.9047089,216.3403994,11.029377,0.103224161,1620000000000 ,1620000000000 ,1620000000000 ,1616812472490 -1616812472515 ,112.5695864,26.87731851,58.34883118,212.9014577,216.3309571,11.02996,0.103231122,1620000000000 ,1620000000000 ,1620000000000 ,1616812472500 -1616812472524 ,112.5695858,26.87731767,58.34820557,212.899354,216.3241982,11.029964,0.103230788,1620000000000 ,1620000000000 ,1620000000000 ,1616812472510 -1616812472534 ,112.5695852,26.87731684,58.3476181,212.8983704,216.3203219,11.030681,0.103236685,1620000000000 ,1620000000000 ,1620000000000 ,1616812472520 -1616812472545 ,112.5695846,26.87731601,58.34704208,212.8953925,216.3189556,11.029973,0.10323464,1620000000000 ,1620000000000 ,1620000000000 ,1616812472530 -1616812472557 ,112.569584,26.87731518,58.34650421,212.8916495,216.315309,11.031327,0.103241098,1620000000000 ,1620000000000 ,1620000000000 ,1616812472540 -1616812472566 ,112.5695834,26.87731435,58.34602737,212.889136,216.3076788,11.032355,0.103255175,1620000000000 ,1620000000000 ,1620000000000 ,1616812472550 -1616812472575 ,112.5695828,26.87731351,58.34561539,212.8840544,216.2978443,11.032793,0.103258825,1620000000000 ,1620000000000 ,1620000000000 ,1616812472560 -1616812472585 ,112.5695821,26.87731268,58.34524918,212.8820873,216.298741,11.033388,0.103270277,1620000000000 ,1620000000000 ,1620000000000 ,1616812472570 -1616812472595 ,112.5695815,26.87731185,58.34488678,212.8774427,216.2979913,11.03342,0.103269706,1620000000000 ,1620000000000 ,1620000000000 ,1616812472580 -1616812472605 ,112.5695809,26.87731102,58.34453201,212.8752844,216.3004134,11.03416,0.103276313,1620000000000 ,1620000000000 ,1620000000000 ,1616812472590 -1616812472616 ,112.5695803,26.87731018,58.34419632,212.8708038,216.2946333,11.035203,0.103282785,1620000000000 ,1620000000000 ,1620000000000 ,1616812472600 -1616812472626 ,112.5695797,26.87730935,58.34387589,212.8675253,216.2891087,11.036752,0.10329888,1620000000000 ,1620000000000 ,1620000000000 ,1616812472610 -1616812472636 ,112.5695791,26.87730852,58.34355164,212.863837,216.2835242,11.038929,0.103313288,1620000000000 ,1620000000000 ,1620000000000 ,1616812472620 -1616812472647 ,112.5695785,26.87730769,58.34320831,212.8607498,216.2792317,11.040492,0.103329102,1620000000000 ,1620000000000 ,1620000000000 ,1616812472630 -1616812472657 ,112.5695779,26.87730685,58.34287643,212.8577171,216.2755537,11.042653,0.103345921,1620000000000 ,1620000000000 ,1620000000000 ,1616812472640 -1616812472666 ,112.5695772,26.87730602,58.34255981,212.853783,216.2729351,11.044178,0.103365744,1620000000000 ,1620000000000 ,1620000000000 ,1616812472650 -1616812472675 ,112.5695766,26.87730519,58.34225845,212.8502586,216.2653655,11.0469475,0.103388042,1620000000000 ,1620000000000 ,1620000000000 ,1616812472660 -1616812472686 ,112.569576,26.87730435,58.34194183,212.8472806,216.2605588,11.04979,0.103410727,1620000000000 ,1620000000000 ,1620000000000 ,1616812472670 -1616812472696 ,112.5695754,26.87730352,58.3415947,212.8429093,216.2475624,11.05392,0.103444078,1620000000000 ,1620000000000 ,1620000000000 ,1616812472680 -1616812472706 ,112.5695748,26.87730268,58.34120178,212.8378003,216.2379613,11.057633,0.103475572,1620000000000 ,1620000000000 ,1620000000000 ,1616812472690 -1616812472717 ,112.5695742,26.87730185,58.34077072,212.8342486,216.232366,11.061865,0.103512727,1620000000000 ,1620000000000 ,1620000000000 ,1616812472700 -1616812472726 ,112.5695736,26.87730101,58.34032059,212.8300685,216.2294207,11.065148,0.10354431,1620000000000 ,1620000000000 ,1620000000000 ,1616812472710 -1616812472737 ,112.569573,26.87730018,58.33986282,212.8264622,216.2217234,11.067505,0.10356634,1620000000000 ,1620000000000 ,1620000000000 ,1616812472720 -1616812472747 ,112.5695724,26.87729934,58.33940125,212.8249049,216.2140094,11.071242,0.103598033,1620000000000 ,1620000000000 ,1620000000000 ,1616812472730 -1616812472757 ,112.5695717,26.87729851,58.33890533,212.8211893,216.2038826,11.074537,0.103623999,1620000000000 ,1620000000000 ,1620000000000 ,1616812472740 -1616812472766 ,112.5695711,26.87729767,58.33836746,212.8162442,216.193994,11.077962,0.103651565,1620000000000 ,1620000000000 ,1620000000000 ,1616812472750 -1616812472777 ,112.5695705,26.87729683,58.33782959,212.8115997,216.1950564,11.081491,0.103685692,1620000000000 ,1620000000000 ,1620000000000 ,1616812472760 -1616812472786 ,112.5695699,26.877296,58.33732224,212.8075562,216.1909056,11.083561,0.103708016,1620000000000 ,1620000000000 ,1620000000000 ,1616812472770 -1616812472797 ,112.5695693,26.87729516,58.33683014,212.8027205,216.1794159,11.086855,0.103736022,1620000000000 ,1620000000000 ,1620000000000 ,1616812472780 -1616812472807 ,112.5695687,26.87729432,58.33631134,212.7991414,216.1734906,11.08975,0.103760266,1620000000000 ,1620000000000 ,1620000000000 ,1616812472790 -1616812472817 ,112.5695681,26.87729348,58.33575058,212.7961635,216.1735383,11.093997,0.103795871,1620000000000 ,1620000000000 ,1620000000000 ,1616812472800 -1616812472828 ,112.5695675,26.87729264,58.33515549,212.7916556,216.167876,11.0964985,0.103820716,1620000000000 ,1620000000000 ,1620000000000 ,1616812472810 -1616812472837 ,112.5695668,26.87729181,58.33457947,212.7869017,216.174911,11.099897,0.103852106,1620000000000 ,1620000000000 ,1620000000000 ,1616812472820 -1616812472847 ,112.5695662,26.87729097,58.33403778,212.7822299,216.1687978,11.102445,0.103877599,1620000000000 ,1620000000000 ,1620000000000 ,1616812472830 -1616812472861 ,112.5695656,26.87729013,58.33351898,212.7752904,216.1645867,11.1051855,0.103902445,1620000000000 ,1620000000000 ,1620000000000 ,1616812472840 -1616812472870 ,112.569565,26.87728929,58.33304214,212.7704547,216.1589025,11.107572,0.103927352,1620000000000 ,1620000000000 ,1620000000000 ,1616812472850 -1616812472883 ,112.5695644,26.87728845,58.33258438,212.7654003,216.1579626,11.110767,0.103956155,1620000000000 ,1620000000000 ,1620000000000 ,1616812472860 -1616812472892 ,112.5695638,26.87728761,58.33211899,212.7610563,216.1546728,11.115061,0.10398951,1620000000000 ,1620000000000 ,1620000000000 ,1616812472870 -1616812472899 ,112.5695632,26.87728677,58.33163071,212.7561386,216.1539862,11.119602,0.104034853,1620000000000 ,1620000000000 ,1620000000000 ,1616812472880 -1616812472911 ,112.5695625,26.87728593,58.33111191,212.7481336,216.1409292,11.121868,0.104056114,1620000000000 ,1620000000000 ,1620000000000 ,1616812472890 -1616812472920 ,112.5695619,26.87728509,58.33058548,212.7416859,216.1287485,11.125488,0.104083138,1620000000000 ,1620000000000 ,1620000000000 ,1616812472900 -1616812472930 ,112.5695613,26.87728425,58.33003998,212.7359485,216.1189554,11.127396,0.104102533,1620000000000 ,1620000000000 ,1620000000000 ,1616812472910 -1616812472938 ,112.5695607,26.87728341,58.32947159,212.7300473,216.116565,11.131986,0.104137443,1620000000000 ,1620000000000 ,1620000000000 ,1616812472920 -1616812472948 ,112.5695601,26.87728257,58.32889938,212.724064,216.1058996,11.1356535,0.104171936,1620000000000 ,1620000000000 ,1620000000000 ,1616812472930 -1616812472959 ,112.5695595,26.87728172,58.32832718,212.719119,216.0851972,11.139762,0.104205146,1620000000000 ,1620000000000 ,1620000000000 ,1616812472940 -1616812472969 ,112.5695589,26.87728088,58.32773972,212.7129171,216.0808518,11.142232,0.10423149,1620000000000 ,1620000000000 ,1620000000000 ,1616812472950 -1616812472984 ,112.5695583,26.87728004,58.32713318,212.7068246,216.077257,11.145859,0.104261412,1620000000000 ,1620000000000 ,1620000000000 ,1616812472960 -1616812472988 ,112.5695576,26.8772792,58.32654572,212.6997485,216.0703084,11.148795,0.104289658,1620000000000 ,1620000000000 ,1620000000000 ,1616812472970 -1616812472999 ,112.569557,26.87727835,58.32600021,212.6934648,216.0594348,11.152854,0.104323429,1620000000000 ,1620000000000 ,1620000000000 ,1616812472980 -1616812473008 ,112.5695564,26.87727751,58.32546997,212.6861428,216.0442292,11.156766,0.104359845,1620000000000 ,1620000000000 ,1620000000000 ,1616812472990 -1616812473019 ,112.5695558,26.87727666,58.32492447,212.677646,216.0388198,11.159434,0.104383927,1620000000000 ,1620000000000 ,1620000000000 ,1616812473000 -1616812473028 ,112.5695552,26.87727582,58.32438278,212.6710617,216.0360948,11.163305,0.104419405,1620000000000 ,1620000000000 ,1620000000000 ,1616812473010 -1616812473038 ,112.5695546,26.87727498,58.32383728,212.664013,216.0321343,11.167044,0.104452022,1620000000000 ,1620000000000 ,1620000000000 ,1616812473020 -1616812473049 ,112.569554,26.87727413,58.32331085,212.6556802,216.0286912,11.170311,0.104485721,1620000000000 ,1620000000000 ,1620000000000 ,1616812473030 -1616812473060 ,112.5695533,26.87727329,58.3228302,212.6483855,216.0195037,11.172226,0.104507118,1620000000000 ,1620000000000 ,1620000000000 ,1616812473040 -1616812473071 ,112.5695527,26.87727244,58.32237625,212.6389872,216.0055626,11.17551,0.104533233,1620000000000 ,1620000000000 ,1620000000000 ,1616812473050 -1616812473080 ,112.5695521,26.87727159,58.32193375,212.6321297,215.9987336,11.179893,0.104568754,1620000000000 ,1620000000000 ,1620000000000 ,1616812473060 -1616812473090 ,112.5695515,26.87727075,58.32148361,212.6237695,215.9978604,11.18437,0.104611451,1620000000000 ,1620000000000 ,1620000000000 ,1616812473070 -1616812473099 ,112.5695509,26.8772699,58.32103729,212.616147,215.9909568,11.187823,0.104647575,1620000000000 ,1620000000000 ,1620000000000 ,1616812473080 -1616812473114 ,112.5695503,26.87726905,58.32059479,212.6081694,215.9786702,11.190484,0.104672282,1620000000000 ,1620000000000 ,1620000000000 ,1616812473090 -1616812473121 ,112.5695496,26.87726821,58.32014084,212.6000824,215.9572513,11.193756,0.104695282,1620000000000 ,1620000000000 ,1620000000000 ,1616812473100 -1616812473132 ,112.569549,26.87726736,58.31966782,212.5895093,215.9442613,11.197073,0.104722595,1620000000000 ,1620000000000 ,1620000000000 ,1616812473110 -1616812473141 ,112.5695484,26.87726651,58.31917953,212.579947,215.9434042,11.2005,0.104755348,1620000000000 ,1620000000000 ,1620000000000 ,1616812473120 -1616812473155 ,112.5695478,26.87726566,58.31867599,212.5704667,215.9363562,11.203859,0.104785873,1620000000000 ,1620000000000 ,1620000000000 ,1616812473130 -1616812473175 ,112.5695472,26.87726481,58.31819916,212.5618334,215.9221736,11.207029,0.104813919,1620000000000 ,1620000000000 ,1620000000000 ,1616812473140 -1616812473178 ,112.5695466,26.87726396,58.31777191,212.5529814,215.9040359,11.209643,0.1048375,1620000000000 ,1620000000000 ,1620000000000 ,1616812473150 -1616812473180 ,112.569546,26.87726311,58.31735992,212.5432552,215.889902,11.213245,0.104866893,1620000000000 ,1620000000000 ,1620000000000 ,1616812473160 -1616812473191 ,112.5695453,26.87726226,58.31689072,212.5335564,215.8793107,11.218168,0.104903436,1620000000000 ,1620000000000 ,1620000000000 ,1616812473170 -1616812473200 ,112.5695447,26.87726141,58.31635666,212.5245132,215.8753953,11.223067,0.104950404,1620000000000 ,1620000000000 ,1620000000000 ,1616812473180 -1616812473213 ,112.5695441,26.87726056,58.31580734,212.5146777,215.8628863,11.227063,0.104983781,1620000000000 ,1620000000000 ,1620000000000 ,1616812473190 -1616812473222 ,112.5695435,26.87725971,58.31531143,212.5041592,215.8479831,11.229033,0.105005839,1620000000000 ,1620000000000 ,1620000000000 ,1616812473200 -1616812473233 ,112.5695429,26.87725886,58.31552887,212.4921108,215.8988486,11.251613,0.105800242,1620000000000 ,1620000000000 ,1620000000000 ,1616812473210 -1616812473241 ,112.5695423,26.877258,58.31583786,212.4824666,215.8930696,11.254183,0.105919987,1620000000000 ,1620000000000 ,1620000000000 ,1616812473220 -1616812473251 ,112.5695416,26.87725714,58.316082,212.4727404,215.8868428,11.258264,0.105947579,1620000000000 ,1620000000000 ,1620000000000 ,1616812473230 -1616812473260 ,112.569541,26.87725628,58.31627274,212.4630415,215.8790082,11.261921,0.10598028,1620000000000 ,1620000000000 ,1620000000000 ,1616812473240 -1616812473273 ,112.5695404,26.87725542,58.31642532,212.4526869,215.8698414,11.266908,0.106018154,1620000000000 ,1620000000000 ,1620000000000 ,1616812473250 -1616812473283 ,112.5695398,26.87725456,58.31656647,212.4427422,215.8605657,11.2704935,0.106053001,1620000000000 ,1620000000000 ,1620000000000 ,1616812473260 -1616812473292 ,112.5695392,26.8772537,58.3167038,212.431568,215.8560596,11.274597,0.106088457,1620000000000 ,1620000000000 ,1620000000000 ,1616812473270 -1616812473302 ,112.5695385,26.87725284,58.31685638,212.4210222,215.8555875,11.2779665,0.106123519,1620000000000 ,1620000000000 ,1620000000000 ,1616812473280 -1616812473313 ,112.5695379,26.87725198,58.31700516,212.4114326,215.8411555,11.281714,0.106148997,1620000000000 ,1620000000000 ,1620000000000 ,1616812473290 -1616812473323 ,112.5695373,26.87725112,58.31715775,212.4006136,215.8280056,11.285569,0.106186001,1620000000000 ,1620000000000 ,1620000000000 ,1616812473300 -1616812473332 ,112.5695367,26.87725026,58.3173027,212.3901497,215.8189975,11.288646,0.106212317,1620000000000 ,1620000000000 ,1620000000000 ,1616812473310 -1616812473342 ,112.569536,26.8772494,58.31744766,212.3802323,215.813347,11.292764,0.106247165,1620000000000 ,1620000000000 ,1620000000000 ,1616812473320 -1616812473351 ,112.5695354,26.87724854,58.31761551,212.3702602,215.7946819,11.296193,0.106276806,1620000000000 ,1620000000000 ,1620000000000 ,1616812473330 -1616812473362 ,112.5695348,26.87724767,58.31782532,212.3594412,215.7737991,11.298958,0.106300908,1620000000000 ,1620000000000 ,1620000000000 ,1616812473340 -1616812473376 ,112.5695342,26.87724681,58.31807327,212.3496877,215.7570968,11.30268,0.106330248,1620000000000 ,1620000000000 ,1620000000000 ,1616812473360 -1616812473383 ,112.5695336,26.87724595,58.31834412,212.3393331,215.7458792,11.306446,0.106362669,1620000000000 ,1620000000000 ,1620000000000 ,1616812473370 -1616812473398 ,112.5695323,26.87724422,58.31899643,212.3171487,215.7208239,11.312428,0.212803214,1620000000000 ,1620000000000 ,1620000000000 ,1616812473380 -1616812473407 ,112.5695323,26.87724422,58.31899643,212.3171487,-400,11.312428,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812473380 -1616812473418 ,112.5695311,26.87724249,58.31994247,212.2984066,215.6828657,11.319685,0.212922795,1620000000000 ,1620000000000 ,1620000000000 ,1616812473400 -1616812473432 ,112.5695305,26.87724162,58.32048035,212.2879974,215.6623315,11.322518,0.106507175,1620000000000 ,1620000000000 ,1620000000000 ,1616812473410 -1616812473435 ,112.5695305,26.87724162,58.32048035,212.2879974,-400,11.322518,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812473420 -1616812473444 ,112.5695292,26.87723989,58.3216629,212.2710585,215.643378,11.328516,0.213083236,1620000000000 ,1620000000000 ,1620000000000 ,1616812473430 -1616812473459 ,112.5695286,26.87723903,58.322258,212.2615509,215.6247572,11.333213,0.106597332,1620000000000 ,1620000000000 ,1620000000000 ,1616812473440 -1616812473466 ,112.569528,26.87723816,58.32283401,212.2508412,215.6218075,11.337368,0.106638042,1620000000000 ,1620000000000 ,1620000000000 ,1616812473450 -1616812473478 ,112.5695274,26.8772373,58.32285309,212.2417707,215.558525,11.340528,0.105996953,1620000000000 ,1620000000000 ,1620000000000 ,1616812473460 -1616812473485 ,112.5695267,26.87723643,58.32294846,212.2287387,215.5500272,11.343134,0.106023791,1620000000000 ,1620000000000 ,1620000000000 ,1616812473470 -1616812473495 ,112.5695261,26.87723557,58.32314682,212.2161711,215.5394164,11.345139,0.106045897,1620000000000 ,1620000000000 ,1620000000000 ,1616812473480 -1616812473507 ,112.5695261,26.87723557,58.32314682,212.2161711,-400,11.345139,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812473490 -1616812473516 ,112.5695249,26.87723384,58.32369614,212.1951615,215.5202104,11.353533,0.212196177,1620000000000 ,1620000000000 ,1620000000000 ,1616812473500 -1616812473524 ,112.5695243,26.87723298,58.32393265,212.1840693,215.5099274,11.358322,0.106162989,1620000000000 ,1620000000000 ,1620000000000 ,1616812473510 -1616812473534 ,112.5695237,26.87723212,58.32413864,212.1740425,215.4998895,11.362522,0.10619811,1620000000000 ,1620000000000 ,1620000000000 ,1616812473520 -1616812473545 ,112.569523,26.87723125,58.32436371,212.1633601,215.492108,11.365117,0.106232637,1620000000000 ,1620000000000 ,1620000000000 ,1616812473530 -1616812473555 ,112.5695224,26.87723039,58.32463455,212.1521313,215.4761584,11.367663,0.106249196,1620000000000 ,1620000000000 ,1620000000000 ,1616812473540 -1616812473568 ,112.5695218,26.87722952,58.3249321,212.1415308,215.4677538,11.372127,0.106291992,1620000000000 ,1620000000000 ,1620000000000 ,1616812473550 -1616812473576 ,112.5695212,26.87722865,58.32521057,212.1300561,215.4530098,11.375627,0.106320687,1620000000000 ,1620000000000 ,1620000000000 ,1616812473560 -1616812473584 ,112.5695206,26.87722779,58.3254509,212.1199748,215.4447338,11.380616,0.106367554,1620000000000 ,1620000000000 ,1620000000000 ,1616812473570 -1616812473594 ,112.56952,26.87722692,58.32566071,212.1111775,215.4277745,11.384258,0.106393067,1620000000000 ,1620000000000 ,1620000000000 ,1616812473580 -1616812473605 ,112.5695193,26.87722605,58.32588196,212.0994569,215.4249763,11.389005,0.106443869,1620000000000 ,1620000000000 ,1620000000000 ,1616812473590 -1616812473616 ,112.5695187,26.87722518,58.3260994,212.0881461,215.411897,11.392565,0.106473604,1620000000000 ,1620000000000 ,1620000000000 ,1616812473600 -1616812473627 ,112.5695181,26.87722432,58.32626724,212.0795947,215.3964993,11.396772,0.106510928,1620000000000 ,1620000000000 ,1620000000000 ,1616812473610 -1616812473636 ,112.5695175,26.87722345,58.32638931,212.0687483,215.386803,11.399098,0.106530054,1620000000000 ,1620000000000 ,1620000000000 ,1616812473620 -1616812473648 ,112.5695169,26.87722258,58.32649994,212.0570551,215.3781692,11.403479,0.106564869,1620000000000 ,1620000000000 ,1620000000000 ,1616812473630 -1616812473658 ,112.5695163,26.87722171,58.32658768,212.0474381,215.3711681,11.408194,0.106608383,1620000000000 ,1620000000000 ,1620000000000 ,1616812473640 -1616812473666 ,112.5695156,26.87722084,58.32662582,212.03763,215.3600648,11.411994,0.106642089,1620000000000 ,1620000000000 ,1620000000000 ,1616812473650 -1616812473678 ,112.569515,26.87721997,58.32663345,212.0259914,215.3510962,11.415815,0.106679843,1620000000000 ,1620000000000 ,1620000000000 ,1616812473660 -1616812473686 ,112.5695144,26.8772191,58.3266449,212.0151177,215.3394308,11.41883,0.106703178,1620000000000 ,1620000000000 ,1620000000000 ,1616812473670 -1616812473695 ,112.5695138,26.87721823,58.32662964,212.0055827,215.3233957,11.424817,0.10675062,1620000000000 ,1620000000000 ,1620000000000 ,1616812473680 -1616812473705 ,112.5695132,26.87721736,58.32652664,211.9952555,215.3151126,11.429976,0.106795177,1620000000000 ,1620000000000 ,1620000000000 ,1616812473690 -1616812473717 ,112.5695125,26.87721649,58.32637024,211.9845731,215.3068488,11.434241,0.106834486,1620000000000 ,1620000000000 ,1620000000000 ,1616812473700 -1616812473730 ,112.5695119,26.87721561,58.3261795,211.9728252,215.2865131,11.437042,0.106859961,1620000000000 ,1620000000000 ,1620000000000 ,1616812473710 -1616812473737 ,112.5695113,26.87721474,58.32597351,211.9617329,215.2716734,11.44079,0.106888095,1620000000000 ,1620000000000 ,1620000000000 ,1616812473720 -1616812473746 ,112.5695107,26.87721387,58.32570648,211.951515,215.2590423,11.445293,0.106923127,1620000000000 ,1620000000000 ,1620000000000 ,1616812473730 -1616812473756 ,112.5695101,26.87721299,58.32537079,211.9416522,215.2525446,11.44943,0.106959075,1620000000000 ,1620000000000 ,1620000000000 ,1616812473740 -1616812473770 ,112.5695095,26.87721212,58.32497025,211.9301501,215.2404044,11.454648,0.106997733,1620000000000 ,1620000000000 ,1620000000000 ,1616812473750 -1616812473776 ,112.5695088,26.87721125,58.32452393,211.9192492,215.2249066,11.459096,0.107039731,1620000000000 ,1620000000000 ,1620000000000 ,1616812473760 -1616812473786 ,112.5695082,26.87721037,58.3240509,211.9083209,215.2102201,11.463638,0.107073249,1620000000000 ,1620000000000 ,1620000000000 ,1616812473770 -1616812473796 ,112.5695076,26.8772095,58.32354736,211.8960265,215.2059109,11.468778,0.107121604,1620000000000 ,1620000000000 ,1620000000000 ,1616812473780 -1616812473807 ,112.569507,26.87720862,58.32299805,211.8858905,215.1989064,11.472275,0.107151586,1620000000000 ,1620000000000 ,1620000000000 ,1616812473790 -1616812473819 ,112.5695064,26.87720774,58.32242584,211.8759458,215.1875227,11.475687,0.10718031,1620000000000 ,1620000000000 ,1620000000000 ,1616812473800 -1616812473827 ,112.5695058,26.87720687,58.32183456,211.8651541,215.1704505,11.479605,0.107210748,1620000000000 ,1620000000000 ,1620000000000 ,1616812473810 -1616812473836 ,112.5695051,26.87720599,58.32123566,211.8529963,215.1564114,11.48344,0.107242543,1620000000000 ,1620000000000 ,1620000000000 ,1616812473820 -1616812473847 ,112.5695045,26.87720511,58.32058334,211.842915,215.1521226,11.488674,0.107284065,1620000000000 ,1620000000000 ,1620000000000 ,1616812473830 -1616812473857 ,112.5695039,26.87720424,58.31991959,211.8320413,215.1528394,11.493501,0.107330835,1620000000000 ,1620000000000 ,1620000000000 ,1616812473840 -1616812473867 ,112.5695033,26.87720336,58.31929016,211.8210584,215.1365808,11.498146,0.10737009,1620000000000 ,1620000000000 ,1620000000000 ,1616812473850 -1616812473880 ,112.5695027,26.87720248,58.3187294,211.8101301,215.1173476,11.501706,0.107406729,1620000000000 ,1620000000000 ,1620000000000 ,1616812473860 -1616812473889 ,112.5695021,26.8772016,58.31821442,211.7983821,215.0991262,11.50579,0.107435995,1620000000000 ,1620000000000 ,1620000000000 ,1616812473870 -1616812473897 ,112.5695014,26.87720072,58.31773376,211.7865522,215.088515,11.50979,0.107475584,1620000000000 ,1620000000000 ,1620000000000 ,1616812473880 -1616812473909 ,112.5695008,26.87719984,58.31728745,211.7760064,215.0807056,11.513731,0.107509927,1620000000000 ,1620000000000 ,1620000000000 ,1616812473890 -1616812473917 ,112.5695002,26.87719896,58.31691742,211.7635208,215.0658386,11.517758,0.107552031,1620000000000 ,1620000000000 ,1620000000000 ,1616812473900 -1616812473929 ,112.5694996,26.87719808,58.3166275,211.7546416,215.0422251,11.520731,0.107575728,1620000000000 ,1620000000000 ,1620000000000 ,1616812473910 -1616812473938 ,112.569499,26.8771972,58.31637573,211.7423473,215.030304,11.526023,0.107620465,1620000000000 ,1620000000000 ,1620000000000 ,1616812473920 -1616812473950 ,112.5694983,26.87719632,58.31611252,211.732785,215.0222887,11.53062,0.107664094,1620000000000 ,1620000000000 ,1620000000000 ,1616812473930 -1616812473958 ,112.5694977,26.87719544,58.31586838,211.7231134,215.0131615,11.534536,0.107701883,1620000000000 ,1620000000000 ,1620000000000 ,1616812473940 -1616812473980 ,112.5694971,26.87719455,58.31571198,211.711666,214.997757,11.537663,0.107732401,1620000000000 ,1620000000000 ,1620000000000 ,1616812473950 -1616812473982 ,112.5694965,26.87719367,58.31565857,211.6990985,214.9827701,11.539818,0.10775564,1620000000000 ,1620000000000 ,1620000000000 ,1616812473960 -1616812473989 ,112.5694959,26.87719279,58.31567764,211.6892084,214.967137,11.542643,0.107779086,1620000000000 ,1620000000000 ,1620000000000 ,1616812473970 -1616812474000 ,112.5694953,26.8771919,58.31573868,211.6766955,214.9606353,11.546178,0.107812636,1620000000000 ,1620000000000 ,1620000000000 ,1616812473980 -1616812474011 ,112.5694946,26.87719102,58.31583023,211.6685266,214.9448303,11.549817,0.107844006,1620000000000 ,1620000000000 ,1620000000000 ,1616812473990 -1616812474019 ,112.569494,26.87719013,58.31595612,211.6571611,214.9223164,11.554615,0.107885056,1620000000000 ,1620000000000 ,1620000000000 ,1616812474000 -1616812474029 ,112.5694934,26.87718925,58.31612396,211.6456045,214.903993,11.558793,0.107921914,1620000000000 ,1620000000000 ,1620000000000 ,1616812474010 -1616812474040 ,112.5694928,26.87718836,58.31630707,211.6355231,214.8899716,11.563763,0.107965645,1620000000000 ,1620000000000 ,1620000000000 ,1616812474020 -1616812474049 ,112.5694922,26.87718748,58.3164978,211.6261794,214.8766839,11.567868,0.108003113,1620000000000 ,1620000000000 ,1620000000000 ,1616812474030 -1616812474074 ,112.5694915,26.87718659,58.31671143,211.616945,214.8645819,11.572264,0.108047621,1620000000000 ,1620000000000 ,1620000000000 ,1616812474040 -1616812474077 ,112.5694909,26.8771857,58.31694794,211.6073827,214.8451789,11.575147,0.108073296,1620000000000 ,1620000000000 ,1620000000000 ,1616812474050 -1616812474083 ,112.5694903,26.87718482,58.31719589,211.5977931,214.8263921,11.577501,0.108094197,1620000000000 ,1620000000000 ,1620000000000 ,1616812474060 -1616812474091 ,112.5694897,26.87718393,58.31745148,211.5893237,214.8149287,11.580726,0.108121371,1620000000000 ,1620000000000 ,1620000000000 ,1616812474070 -1616812474100 ,112.5694891,26.87718304,58.31768417,211.5808816,214.8104507,11.58518,0.108159944,1620000000000 ,1620000000000 ,1620000000000 ,1616812474080 -1616812474110 ,112.5694885,26.87718215,58.31787872,211.5723302,214.8057652,11.590315,0.108204356,1620000000000 ,1620000000000 ,1620000000000 ,1616812474090 -1616812474120 ,112.5694878,26.87718126,58.31801987,211.5619756,214.7980173,11.596125,0.108255059,1620000000000 ,1620000000000 ,1620000000000 ,1616812474100 -1616812474130 ,112.5694872,26.87718037,58.31809998,211.55102,214.7831215,11.599835,0.108290481,1620000000000 ,1620000000000 ,1620000000000 ,1616812474110 -1616812474142 ,112.5694866,26.87717948,58.3181076,211.540119,214.7753676,11.60482,0.108330721,1620000000000 ,1620000000000 ,1620000000000 ,1616812474120 -1616812474154 ,112.569486,26.87717859,58.31803894,211.5289448,214.771394,11.609248,0.10837097,1620000000000 ,1620000000000 ,1620000000000 ,1616812474130 -1616812474161 ,112.5694854,26.8771777,58.3178978,211.5168691,214.7613386,11.613198,0.108405757,1620000000000 ,1620000000000 ,1620000000000 ,1616812474140 -1616812474172 ,112.5694848,26.87717681,58.31772232,211.5064598,214.7421592,11.616027,0.108430519,1620000000000 ,1620000000000 ,1620000000000 ,1616812474150 -1616812474180 ,112.5694841,26.87717592,58.31753159,211.4956955,214.7245589,11.619195,0.108454032,1620000000000 ,1620000000000 ,1620000000000 ,1616812474160 -1616812474192 ,112.5694835,26.87717503,58.31732178,211.4849857,214.7107347,11.624983,0.108497906,1620000000000 ,1620000000000 ,1620000000000 ,1616812474170 -1616812474200 ,112.5694829,26.87717414,58.31706619,211.4759699,214.7028961,11.630483,0.108546951,1620000000000 ,1620000000000 ,1620000000000 ,1616812474180 -1616812474211 ,112.5694823,26.87717324,58.31678009,211.4640854,214.6888494,11.635647,0.108595748,1620000000000 ,1620000000000 ,1620000000000 ,1616812474190 -1616812474221 ,112.5694817,26.87717235,58.31649399,211.4540586,214.6663406,11.639209,0.108627823,1620000000000 ,1620000000000 ,1620000000000 ,1616812474200 -1616812474231 ,112.569481,26.87717146,58.31655502,211.4498239,215.154727,11.654216,0.109185018,1620000000000 ,1620000000000 ,1620000000000 ,1616812474210 -1616812474242 ,112.5694804,26.87717056,58.31671524,211.4384312,215.2103741,11.657707,0.109290333,1620000000000 ,1620000000000 ,1620000000000 ,1616812474220 -1616812474251 ,112.5694798,26.87716967,58.31687164,211.4304262,215.1940703,11.660266,0.109311925,1620000000000 ,1620000000000 ,1620000000000 ,1616812474230 -1616812474265 ,112.5694791,26.87716878,58.31701279,211.4197984,215.1835538,11.664759,0.109347039,1620000000000 ,1620000000000 ,1620000000000 ,1616812474240 -1616812474271 ,112.5694785,26.87716788,58.31714249,211.4107826,215.166619,11.669821,0.109388379,1620000000000 ,1620000000000 ,1620000000000 ,1616812474250 -1616812474280 ,112.5694779,26.87716699,58.31719589,211.4013296,215.1512822,11.676591,0.109438808,1620000000000 ,1620000000000 ,1620000000000 ,1616812474260 -1616812474292 ,112.5694773,26.87716609,58.31712341,211.3909477,215.1408527,11.683888,0.109499675,1620000000000 ,1620000000000 ,1620000000000 ,1616812474270 -1616812474302 ,112.5694766,26.8771652,58.31689835,211.3813308,215.1401276,11.689661,0.109551317,1620000000000 ,1620000000000 ,1620000000000 ,1616812474280 -1616812474313 ,112.569476,26.8771643,58.31658173,211.3702659,215.1353425,11.694094,0.109591793,1620000000000 ,1620000000000 ,1620000000000 ,1616812474290 -1616812474323 ,112.5694754,26.8771634,58.31624985,211.3593376,215.118459,11.69698,0.109616734,1620000000000 ,1620000000000 ,1620000000000 ,1616812474300 -1616812474334 ,112.5694747,26.87716251,58.31593323,211.3502671,215.110196,11.7003145,0.109642627,1620000000000 ,1620000000000 ,1620000000000 ,1616812474310 -1616812474342 ,112.5694741,26.87716161,58.31559372,211.3404589,215.1038322,11.704103,0.109672838,1620000000000 ,1620000000000 ,1620000000000 ,1616812474320 -1616812474352 ,112.5694735,26.87716071,58.31521606,211.3316616,215.1025529,11.709436,0.109717696,1620000000000 ,1620000000000 ,1620000000000 ,1616812474330 -1616812474363 ,112.5694728,26.87715981,58.31483459,211.3210339,215.092465,11.715133,0.109766188,1620000000000 ,1620000000000 ,1620000000000 ,1616812474340 -1616812474372 ,112.5694722,26.87715892,58.3144989,211.309122,215.0734349,11.719696,0.109809154,1620000000000 ,1620000000000 ,1620000000000 ,1616812474360 -1616812474383 ,112.5694716,26.87715802,58.31421661,211.2976473,215.0589483,11.72421,0.109849536,1620000000000 ,1620000000000 ,1620000000000 ,1616812474370 -1616812474394 ,112.5694709,26.87715712,58.31398773,211.2868283,215.0511535,11.728544,0.109891294,1620000000000 ,1620000000000 ,1620000000000 ,1616812474380 -1616812474404 ,112.5694703,26.87715622,58.31381607,211.2764464,215.0385325,11.73238,0.109925092,1620000000000 ,1620000000000 ,1620000000000 ,1616812474380 -1616812474415 ,112.5694691,26.87715442,58.31371689,211.2566388,215.0063232,11.739011,0.219940511,1620000000000 ,1620000000000 ,1620000000000 ,1616812474400 -1616812474426 ,112.5694691,26.87715442,58.31371689,211.2566388,-400,11.739011,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812474410 -1616812474437 ,112.5694684,26.87715351,58.31372833,211.2473225,214.977471,11.743161,0.110018514,1620000000000 ,1620000000000 ,1620000000000 ,1616812474420 -1616812474443 ,112.5694672,26.87715171,58.31387329,211.2292088,214.9668851,11.750647,0.220144605,1620000000000 ,1620000000000 ,1620000000000 ,1616812474430 -1616812474458 ,112.5694665,26.87715081,58.31407166,211.2186357,214.9502126,11.754783,0.11012651,1620000000000 ,1620000000000 ,1620000000000 ,1616812474440 -1616812474467 ,112.5694659,26.8771499,58.31434631,211.2102209,214.9386798,11.759074,0.110169476,1620000000000 ,1620000000000 ,1620000000000 ,1616812474450 -1616812474477 ,112.5694653,26.877149,58.31445694,211.2025711,214.4827542,11.761511,0.109736206,1620000000000 ,1620000000000 ,1620000000000 ,1616812474460 -1616812474484 ,112.5694647,26.87714809,58.31467056,211.1957955,214.4701337,11.764517,0.109766263,1620000000000 ,1620000000000 ,1620000000000 ,1616812474470 -1616812474495 ,112.569464,26.87714719,58.31492996,211.1883096,214.4596145,11.769101,0.109802978,1620000000000 ,1620000000000 ,1620000000000 ,1616812474480 -1616812474505 ,112.569464,26.87714719,58.31492996,211.1883096,-400,11.769101,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812474490 -1616812474516 ,112.5694628,26.87714538,58.31539154,211.1722177,214.4443307,11.780433,0.219764212,1620000000000 ,1620000000000 ,1620000000000 ,1616812474500 -1616812474524 ,112.5694622,26.87714447,58.31559753,211.1652236,214.4296158,11.78462,0.109947754,1620000000000 ,1620000000000 ,1620000000000 ,1616812474510 -1616812474534 ,112.5694616,26.87714356,58.3157959,211.1570547,214.4186038,11.787518,0.109975741,1620000000000 ,1620000000000 ,1620000000000 ,1616812474520 -1616812474545 ,112.5694609,26.87714266,58.31602097,211.1488585,214.4088816,11.79103,0.110006354,1620000000000 ,1620000000000 ,1620000000000 ,1616812474530 -1616812474558 ,112.5694603,26.87714175,58.31629562,211.1406896,214.3978059,11.79392,0.110035716,1620000000000 ,1620000000000 ,1620000000000 ,1616812474540 -1616812474565 ,112.5694597,26.87714084,58.31665421,211.1326299,214.3871349,11.796357,0.110062551,1620000000000 ,1620000000000 ,1620000000000 ,1616812474550 -1616812474577 ,112.5694591,26.87713993,58.31705093,211.1239966,214.3723156,11.800649,0.110097795,1620000000000 ,1620000000000 ,1620000000000 ,1616812474560 -1616812474586 ,112.5694584,26.87713902,58.31745148,211.1152539,214.3671667,11.805776,0.110143013,1620000000000 ,1620000000000 ,1620000000000 ,1616812474570 -1616812474595 ,112.5694578,26.87713811,58.31783295,211.1073036,214.3536086,11.810943,0.110188504,1620000000000 ,1620000000000 ,1620000000000 ,1616812474580 -1616812474604 ,112.5694572,26.8771372,58.31820297,211.0978779,214.3401895,11.814762,0.110229372,1620000000000 ,1620000000000 ,1620000000000 ,1616812474590 -1616812474614 ,112.5694566,26.87713629,58.31853867,211.0916488,214.3278296,11.81848,0.110261543,1620000000000 ,1620000000000 ,1620000000000 ,1616812474600 -1616812474625 ,112.569456,26.87713538,58.31880569,211.0846547,214.3181093,11.822043,0.110289794,1620000000000 ,1620000000000 ,1620000000000 ,1616812474610 -1616812474635 ,112.5694553,26.87713447,58.3189888,211.0777699,214.3150312,11.826281,0.110323166,1620000000000 ,1620000000000 ,1620000000000 ,1616812474620 -1616812474645 ,112.5694547,26.87713356,58.31908798,211.0696009,214.3059341,11.830053,0.110357112,1620000000000 ,1620000000000 ,1620000000000 ,1616812474630 -1616812474656 ,112.5694541,26.87713265,58.31911469,211.0612135,214.2988743,11.835665,0.110401306,1620000000000 ,1620000000000 ,1620000000000 ,1616812474640 -1616812474666 ,112.5694535,26.87713173,58.31908035,211.0530446,214.2885767,11.840603,0.110441574,1620000000000 ,1620000000000 ,1620000000000 ,1616812474650 -1616812474676 ,112.5694528,26.87713082,58.31899261,211.0448483,214.2786664,11.845785,0.110488429,1620000000000 ,1620000000000 ,1620000000000 ,1616812474660 -1616812474685 ,112.5694522,26.87712991,58.31886292,211.0374444,214.2688671,11.850925,0.110531556,1620000000000 ,1620000000000 ,1620000000000 ,1616812474670 -1616812474695 ,112.5694516,26.87712899,58.31866455,211.0316524,214.2603542,11.856847,0.110579823,1620000000000 ,1620000000000 ,1620000000000 ,1616812474680 -1616812474707 ,112.569451,26.87712808,58.31839752,211.0247129,214.2483796,11.862147,0.110625505,1620000000000 ,1620000000000 ,1620000000000 ,1616812474690 -1616812474716 ,112.5694504,26.87712716,58.31806564,211.0176095,214.2350497,11.86569,0.110656561,1620000000000 ,1620000000000 ,1620000000000 ,1616812474700 -1616812474725 ,112.5694497,26.87712625,58.31768417,211.0114624,214.2262847,11.869341,0.110688129,1620000000000 ,1620000000000 ,1620000000000 ,1616812474710 -1616812474735 ,112.5694491,26.87712533,58.31723785,211.005725,214.2136713,11.874327,0.110722526,1620000000000 ,1620000000000 ,1620000000000 ,1616812474720 -1616812474746 ,112.5694485,26.87712442,58.3167305,210.9995778,214.2013102,11.87929,0.110761976,1620000000000 ,1620000000000 ,1620000000000 ,1616812474730 -1616812474756 ,112.5694479,26.8771235,58.31616211,210.9937858,214.1930534,11.884463,0.110806489,1620000000000 ,1620000000000 ,1620000000000 ,1616812474740 -1616812474767 ,112.5694472,26.87712258,58.31557465,210.9870923,214.1840351,11.889189,0.110848832,1620000000000 ,1620000000000 ,1620000000000 ,1616812474750 -1616812474804 ,112.5694466,26.87712167,58.31497192,210.9806719,214.17478,11.894269,0.110889262,1620000000000 ,1620000000000 ,1620000000000 ,1616812474760 -1616812474807 ,112.569446,26.87712075,58.31438065,210.9765464,214.1633835,11.898553,0.110928235,1620000000000 ,1620000000000 ,1620000000000 ,1616812474770 -1616812474821 ,112.5694454,26.87711983,58.31380844,210.9703993,214.1579361,11.902808,0.11096889,1620000000000 ,1620000000000 ,1620000000000 ,1616812474780 -1616812474824 ,112.5694447,26.87711891,58.31327438,210.9638696,214.150481,11.90528,0.110993405,1620000000000 ,1620000000000 ,1620000000000 ,1616812474790 -1616812474828 ,112.5694441,26.87711799,58.31279373,210.9574219,214.143885,11.90804,0.111017794,1620000000000 ,1620000000000 ,1620000000000 ,1616812474800 -1616812474837 ,112.5694435,26.87711707,58.31238937,210.9523129,214.1395705,11.911119,0.111047901,1620000000000 ,1620000000000 ,1620000000000 ,1616812474810 -1616812474839 ,112.5694429,26.87711615,58.31202698,210.9456194,214.1324036,11.916701,0.11109101,1620000000000 ,1620000000000 ,1620000000000 ,1616812474820 -1616812474847 ,112.5694423,26.87711523,58.31170273,210.9404011,214.1256383,11.921425,0.111137454,1620000000000 ,1620000000000 ,1620000000000 ,1616812474830 -1616812474857 ,112.5694416,26.87711431,58.31141281,210.9350462,214.1155498,11.9258795,0.111180261,1620000000000 ,1620000000000 ,1620000000000 ,1616812474840 -1616812474867 ,112.569441,26.87711339,58.31118774,210.9313579,214.1046434,11.929749,0.111215212,1620000000000 ,1620000000000 ,1620000000000 ,1616812474850 -1616812474877 ,112.5694404,26.87711247,58.31102753,210.9251288,214.1010824,11.934174,0.111257231,1620000000000 ,1620000000000 ,1620000000000 ,1616812474860 -1616812474888 ,112.5694398,26.87711155,58.3109436,210.9190363,214.0964613,11.938327,0.111297116,1620000000000 ,1620000000000 ,1620000000000 ,1616812474870 -1616812474898 ,112.5694391,26.87711063,58.3109169,210.9120695,214.0944895,11.942164,0.111338902,1620000000000 ,1620000000000 ,1620000000000 ,1616812474880 -1616812474915 ,112.5694385,26.8771097,58.31096268,210.9060316,214.0870011,11.945615,0.111370917,1620000000000 ,1620000000000 ,1620000000000 ,1616812474890 -1616812474918 ,112.5694379,26.87710878,58.31108475,210.8995292,214.0782786,11.949842,0.111410255,1620000000000 ,1620000000000 ,1620000000000 ,1616812474900 -1616812474927 ,112.5694373,26.87710786,58.3112793,210.8925078,214.0670062,11.954494,0.111452221,1620000000000 ,1620000000000 ,1620000000000 ,1616812474910 -1616812474938 ,112.5694366,26.87710693,58.31151962,210.8871529,214.0625643,11.959548,0.111500788,1620000000000 ,1620000000000 ,1620000000000 ,1616812474920 -1616812474947 ,112.569436,26.87710601,58.31180954,210.8825084,214.0602035,11.963436,0.111544091,1620000000000 ,1620000000000 ,1620000000000 ,1616812474930 -1616812474957 ,112.5694354,26.87710509,58.31215286,210.8792026,214.0545244,11.966825,0.111577877,1620000000000 ,1620000000000 ,1620000000000 ,1616812474940 -1616812474980 ,112.5694348,26.87710416,58.31254578,210.8730827,214.041936,11.969733,0.111607201,1620000000000 ,1620000000000 ,1620000000000 ,1616812474950 -1616812474983 ,112.5694341,26.87710324,58.31298447,210.8658974,214.0310874,11.97216,0.111630968,1620000000000 ,1620000000000 ,1620000000000 ,1616812474960 -1616812474989 ,112.5694335,26.87710231,58.31343842,210.8590672,214.0230353,11.976549,0.111666358,1620000000000 ,1620000000000 ,1620000000000 ,1616812474970 -1616812474998 ,112.5694329,26.87710139,58.31388474,210.8531113,214.0209038,11.9812,0.111710424,1620000000000 ,1620000000000 ,1620000000000 ,1616812474980 -1616812475012 ,112.5694323,26.87710046,58.31433105,210.8474832,214.0074968,11.984998,0.111748818,1620000000000 ,1620000000000 ,1620000000000 ,1616812474990 -1616812475020 ,112.5694316,26.87709953,58.31480789,210.8420737,213.9939755,11.9880705,0.111778543,1620000000000 ,1620000000000 ,1620000000000 ,1616812475000 -1616812475030 ,112.569431,26.8770986,58.3152771,210.8369374,213.9844927,11.992433,0.111812866,1620000000000 ,1620000000000 ,1620000000000 ,1616812475010 -1616812475040 ,112.5694304,26.87709768,58.31571198,210.8314186,213.9786765,11.9974165,0.111859218,1620000000000 ,1620000000000 ,1620000000000 ,1616812475020 -1616812475051 ,112.5694298,26.87709675,58.31611252,210.8251348,213.9715149,12.000143,0.111888114,1620000000000 ,1620000000000 ,1620000000000 ,1616812475030 -1616812475061 ,112.5694291,26.87709582,58.31650925,210.8184686,213.965919,12.004162,0.111922153,1620000000000 ,1620000000000 ,1620000000000 ,1616812475040 -1616812475071 ,112.5694285,26.87709489,58.31687927,210.8150535,213.9549908,12.00867,0.111958247,1620000000000 ,1620000000000 ,1620000000000 ,1616812475050 -1616812475081 ,112.5694279,26.87709396,58.31718445,210.8105182,213.9495558,12.014378,0.112009651,1620000000000 ,1620000000000 ,1620000000000 ,1616812475060 -1616812475091 ,112.5694273,26.87709303,58.31738281,210.8050541,213.9442506,12.020364,0.11205946,1620000000000 ,1620000000000 ,1620000000000 ,1616812475070 -1616812475100 ,112.5694266,26.8770921,58.31747437,210.798743,213.9386585,12.025053,0.112104609,1620000000000 ,1620000000000 ,1620000000000 ,1616812475080 -1616812475110 ,112.569426,26.87709117,58.31746292,210.792869,213.9286593,12.029837,0.112137742,1620000000000 ,1620000000000 ,1620000000000 ,1616812475090 -1616812475120 ,112.5694254,26.87709024,58.31736755,210.7873502,213.9239751,12.034877,0.112183232,1620000000000 ,1620000000000 ,1620000000000 ,1616812475100 -1616812475131 ,112.5694248,26.87708931,58.31717682,210.7817768,213.9161037,12.039511,0.112219696,1620000000000 ,1620000000000 ,1620000000000 ,1616812475110 -1616812475140 ,112.5694241,26.87708838,58.31692123,210.7745914,213.9110899,12.044999,0.112267598,1620000000000 ,1620000000000 ,1620000000000 ,1616812475120 -1616812475152 ,112.5694235,26.87708745,58.31661224,210.7679798,213.902311,12.049975,0.112311738,1620000000000 ,1620000000000 ,1620000000000 ,1616812475130 -1616812475165 ,112.5694229,26.87708651,58.31626511,210.7617233,213.8907637,12.055228,0.112354097,1620000000000 ,1620000000000 ,1620000000000 ,1616812475140 -1616812475176 ,112.5694223,26.87708558,58.31585693,210.7554396,213.8779199,12.059334,0.112388924,1620000000000 ,1620000000000 ,1620000000000 ,1616812475150 -1616812475180 ,112.5694216,26.87708465,58.31540298,210.7488279,213.8752486,12.064645,0.112434848,1620000000000 ,1620000000000 ,1620000000000 ,1616812475160 -1616812475192 ,112.569421,26.87708371,58.3149147,210.7433365,213.8712743,12.070303,0.112482375,1620000000000 ,1620000000000 ,1620000000000 ,1616812475170 -1616812475202 ,112.5694204,26.87708278,58.31442261,210.7398394,213.857304,12.074084,0.112518564,1620000000000 ,1620000000000 ,1620000000000 ,1616812475180 -1616812475212 ,112.5694197,26.87708184,58.31395721,210.7339654,213.8475465,12.077634,0.112551169,1620000000000 ,1620000000000 ,1620000000000 ,1616812475190 -1616812475221 ,112.5694191,26.87708091,58.31352234,210.7289384,213.8447617,12.082161,0.112589565,1620000000000 ,1620000000000 ,1620000000000 ,1616812475200 -1616812475236 ,112.5694185,26.87707998,58.31209564,210.7186931,214.4069178,12.092443,0.11278363,1620000000000 ,1620000000000 ,1620000000000 ,1616812475210 -1616812475244 ,112.5694178,26.87707905,58.31052017,210.7126006,214.478459,12.09669,0.112857693,1620000000000 ,1620000000000 ,1620000000000 ,1616812475220 -1616812475252 ,112.5694172,26.87707812,58.30894089,210.7048415,214.4722586,12.100935,0.11289394,1620000000000 ,1620000000000 ,1620000000000 ,1616812475230 -1616812475262 ,112.5694166,26.87707719,58.30741882,210.6961262,214.462333,12.103909,0.112926031,1620000000000 ,1620000000000 ,1620000000000 ,1616812475240 -1616812475272 ,112.5694159,26.87707626,58.30594635,210.6906347,214.4536824,12.108708,0.112963799,1620000000000 ,1620000000000 ,1620000000000 ,1616812475250 -1616812475282 ,112.5694153,26.87707532,58.30448914,210.685034,214.4450755,12.113427,0.113008611,1620000000000 ,1620000000000 ,1620000000000 ,1616812475260 -1616812475292 ,112.5694146,26.87707439,58.30303192,210.6789141,214.4383057,12.118017,0.113049691,1620000000000 ,1620000000000 ,1620000000000 ,1616812475270 -1616812475302 ,112.569414,26.87707346,58.30162048,210.6740784,214.4301493,12.122612,0.113093463,1620000000000 ,1620000000000 ,1620000000000 ,1616812475280 -1616812475312 ,112.5694134,26.87707253,58.30023575,210.6680131,214.4221954,12.127826,0.113141564,1620000000000 ,1620000000000 ,1620000000000 ,1616812475290 -1616812475323 ,112.5694127,26.87707159,58.29888153,210.6636691,214.411625,12.131367,0.113176142,1620000000000 ,1620000000000 ,1620000000000 ,1616812475300 -1616812475333 ,112.5694121,26.87707066,58.2975502,210.658205,214.4098852,12.135414,0.113216046,1620000000000 ,1620000000000 ,1620000000000 ,1616812475310 -1616812475343 ,112.5694114,26.87706972,58.29628372,210.6516207,214.4035244,12.13703,0.113236915,1620000000000 ,1620000000000 ,1620000000000 ,1616812475330 -1616812475352 ,112.5694108,26.87706879,58.29508972,210.6459653,214.3967362,12.140763,0.113268707,1620000000000 ,1620000000000 ,1620000000000 ,1616812475330 -1616812475362 ,112.5694102,26.87706785,58.29396057,210.6402826,214.3886701,12.1442795,0.113305745,1620000000000 ,1620000000000 ,1620000000000 ,1616812475350 -1616812475373 ,112.5694095,26.87706692,58.29286575,210.6360752,214.3831852,12.150064,0.113353791,1620000000000 ,1620000000000 ,1620000000000 ,1616812475350 -1616812475386 ,112.5694089,26.87706598,58.29177094,210.6300373,214.3764312,12.155436,0.113404994,1620000000000 ,1620000000000 ,1620000000000 ,1616812475370 -1616812475397 ,112.5694082,26.87706505,58.29064941,210.6245185,214.3697993,12.159892,0.113449419,1620000000000 ,1620000000000 ,1620000000000 ,1616812475380 -1616812475405 ,112.5694076,26.87706411,58.28953934,210.6186445,214.359496,12.1631,0.11348141,1620000000000 ,1620000000000 ,1620000000000 ,1616812475380 -1616812475416 ,112.5694063,26.87706223,58.28736877,210.6069239,214.3553593,12.170702,0.227064771,1620000000000 ,1620000000000 ,1620000000000 ,1616812475400 -1616812475427 ,112.5694057,26.8770613,58.28627396,210.6011593,214.3494437,12.174223,0.113587555,1620000000000 ,1620000000000 ,1620000000000 ,1616812475410 -1616812475435 ,112.569405,26.87706036,58.28516006,210.5957224,214.3350264,12.177942,0.113617463,1620000000000 ,1620000000000 ,1620000000000 ,1616812475420 -1616812475445 ,112.5694044,26.87705942,58.2840271,210.5896845,214.3251075,12.184007,0.113664401,1620000000000 ,1620000000000 ,1620000000000 ,1616812475430 -1616812475454 ,112.5694038,26.87705848,58.28282928,210.5851766,214.3118162,12.18993,0.113715175,1620000000000 ,1620000000000 ,1620000000000 ,1616812475440 -1616812475465 ,112.5694031,26.87705754,58.28154373,210.5794392,214.308533,12.19615,0.113771438,1620000000000 ,1620000000000 ,1620000000000 ,1616812475450 -1616812475476 ,112.5694025,26.8770566,58.28107452,210.573456,213.7990258,12.199795,0.113697217,1620000000000 ,1620000000000 ,1620000000000 ,1616812475460 -1616812475485 ,112.5694019,26.87705565,58.28059769,210.5687568,213.791123,12.20305,0.113726021,1620000000000 ,1620000000000 ,1620000000000 ,1616812475470 -1616812475496 ,112.5694012,26.8770547,58.28009415,210.5638664,213.7792749,12.20711,0.113758394,1620000000000 ,1620000000000 ,1620000000000 ,1616812475480 -1616812475508 ,112.5694006,26.87705376,58.27951431,210.5599049,213.7661437,12.212131,0.113796279,1620000000000 ,1620000000000 ,1620000000000 ,1616812475490 -1616812475516 ,112.5694,26.87705281,58.27883911,210.5546047,213.7588681,12.217318,0.113839123,1620000000000 ,1620000000000 ,1620000000000 ,1616812475500 -1616812475526 ,112.5693993,26.87705187,58.2780571,210.548922,213.7538989,12.222669,0.113884146,1620000000000 ,1620000000000 ,1620000000000 ,1616812475510 -1616812475539 ,112.5693987,26.87705092,58.27720261,210.5436764,213.7504077,12.22928,0.113937347,1620000000000 ,1620000000000 ,1620000000000 ,1616812475520 -1616812475546 ,112.5693981,26.87704997,58.27632141,210.537256,213.7468711,12.233516,0.113980287,1620000000000 ,1620000000000 ,1620000000000 ,1616812475530 -1616812475556 ,112.5693974,26.87704902,58.27539444,210.5320651,213.7317444,12.239083,0.114022581,1620000000000 ,1620000000000 ,1620000000000 ,1616812475540 -1616812475566 ,112.5693968,26.87704807,58.27442551,210.5253168,213.7216051,12.243051,0.114061088,1620000000000 ,1620000000000 ,1620000000000 ,1616812475550 -1616812475576 ,112.5693962,26.87704712,58.27339935,210.5181588,213.7194605,12.24864,0.114103777,1620000000000 ,1620000000000 ,1620000000000 ,1616812475560 -1616812475586 ,112.5693955,26.87704618,58.27233124,210.5124488,213.7182844,12.252885,0.114145,1620000000000 ,1620000000000 ,1620000000000 ,1616812475570 -1616812475596 ,112.5693949,26.87704523,58.27121735,210.5058918,213.7198953,12.257854,0.114183006,1620000000000 ,1620000000000 ,1620000000000 ,1616812475580 -1616812475612 ,112.5693943,26.87704428,58.27009964,210.4990616,213.7199321,12.261937,0.114224341,1620000000000 ,1620000000000 ,1620000000000 ,1616812475590 -1616812475618 ,112.5693936,26.87704332,58.26900864,210.4921494,213.7089509,12.267421,0.114270699,1620000000000 ,1620000000000 ,1620000000000 ,1616812475600 -1616812475626 ,112.569393,26.87704237,58.26795578,210.485893,213.6947435,12.272006,0.114309912,1620000000000 ,1620000000000 ,1620000000000 ,1616812475610 -1616812475638 ,112.5693924,26.87704142,58.266922,210.4788442,213.6881457,12.277378,0.114358488,1620000000000 ,1620000000000 ,1620000000000 ,1616812475620 -1616812475645 ,112.5693917,26.87704047,58.26589966,210.4733528,213.6846112,12.282533,0.114405428,1620000000000 ,1620000000000 ,1620000000000 ,1616812475630 -1616812475656 ,112.5693911,26.87703952,58.26489639,210.467834,213.6798214,12.288353,0.11445819,1620000000000 ,1620000000000 ,1620000000000 ,1616812475640 -1616812475669 ,112.5693905,26.87703856,58.26394653,210.461277,213.6708849,12.291668,0.114492035,1620000000000 ,1620000000000 ,1620000000000 ,1616812475650 -1616812475677 ,112.5693898,26.87703761,58.26306152,210.4566871,213.6540846,12.2951145,0.114522306,1620000000000 ,1620000000000 ,1620000000000 ,1616812475660 -1616812475687 ,112.5693892,26.87703666,58.26224518,210.4522338,213.6436883,12.299697,0.114561529,1620000000000 ,1620000000000 ,1620000000000 ,1616812475670 -1616812475697 ,112.5693885,26.8770357,58.26148605,210.4478625,213.6349321,12.305129,0.114611322,1620000000000 ,1620000000000 ,1620000000000 ,1616812475680 -1616812475708 ,112.5693879,26.87703475,58.26080704,210.4451031,213.6237512,12.310232,0.114658223,1620000000000 ,1620000000000 ,1620000000000 ,1616812475690 -1616812475718 ,112.5693873,26.87703379,58.26020813,210.441688,213.6125458,12.314365,0.114701233,1620000000000 ,1620000000000 ,1620000000000 ,1616812475700 -1616812475728 ,112.5693866,26.87703284,58.25967789,210.4395297,213.5992459,12.318604,0.114738866,1620000000000 ,1620000000000 ,1620000000000 ,1616812475710 -1616812475738 ,112.569386,26.87703188,58.25921249,210.4386827,213.5941982,12.322542,0.114780054,1620000000000 ,1620000000000 ,1620000000000 ,1616812475720 -1616812475748 ,112.5693854,26.87703093,58.25878906,210.4361146,213.5848544,12.3268175,0.114816578,1620000000000 ,1620000000000 ,1620000000000 ,1616812475730 -1616812475758 ,112.5693847,26.87702997,58.25841522,210.4357047,213.5736831,12.330629,0.114852879,1620000000000 ,1620000000000 ,1620000000000 ,1616812475740 -1616812475773 ,112.5693841,26.87702901,58.25809097,210.4349398,213.5679244,12.335964,0.11489872,1620000000000 ,1620000000000 ,1620000000000 ,1616812475750 -1616812475778 ,112.5693835,26.87702805,58.25784683,210.4342841,213.5648175,12.340744,0.114949315,1620000000000 ,1620000000000 ,1620000000000 ,1616812475760 -1616812475797 ,112.5693828,26.87702709,58.25765991,210.4370435,213.5572397,12.346496,0.115002963,1620000000000 ,1620000000000 ,1620000000000 ,1616812475770 -1616812475799 ,112.5693822,26.87702614,58.25752258,210.4378904,213.5531164,12.349683,0.115038589,1620000000000 ,1620000000000 ,1620000000000 ,1616812475780 -1616812475808 ,112.5693816,26.87702518,58.25741959,210.4381636,213.5503528,12.352292,0.115068506,1620000000000 ,1620000000000 ,1620000000000 ,1616812475790 -1616812475817 ,112.5693809,26.87702422,58.25737381,210.4384641,213.5446981,12.354203,0.115086797,1620000000000 ,1620000000000 ,1620000000000 ,1616812475800 -1616812475828 ,112.5693803,26.87702326,58.25735855,210.4402673,213.5422749,12.3584795,0.115124682,1620000000000 ,1620000000000 ,1620000000000 ,1616812475810 -1616812475838 ,112.5693797,26.8770223,58.25734711,210.4430267,213.5451708,12.364188,0.115173812,1620000000000 ,1620000000000 ,1620000000000 ,1616812475820 -1616812475849 ,112.569379,26.87702134,58.25732422,210.4435458,213.5490706,12.369369,0.115229106,1620000000000 ,1620000000000 ,1620000000000 ,1616812475830 -1616812475862 ,112.5693784,26.87702038,58.2572937,210.4463325,213.5483189,12.373351,0.11526976,1620000000000 ,1620000000000 ,1620000000000 ,1616812475840 -1616812475872 ,112.5693777,26.87701942,58.25727463,210.4472341,213.546141,12.376512,0.115302722,1620000000000 ,1620000000000 ,1620000000000 ,1616812475850 -1616812475880 ,112.5693771,26.87701846,58.25723267,210.4506219,213.5441835,12.378877,0.115325107,1620000000000 ,1620000000000 ,1620000000000 ,1616812475860 -1616812475893 ,112.5693765,26.87701749,58.25716019,210.4539277,213.5527621,12.383057,0.115363734,1620000000000 ,1620000000000 ,1620000000000 ,1616812475870 -1616812475898 ,112.5693758,26.87701653,58.25704575,210.4563592,213.5546188,12.387266,0.115398116,1620000000000 ,1620000000000 ,1620000000000 ,1616812475880 -1616812475909 ,112.5693752,26.87701557,58.25690079,210.4563046,213.5584025,12.390795,0.115436966,1620000000000 ,1620000000000 ,1620000000000 ,1616812475890 -1616812475921 ,112.5693746,26.87701461,58.25671768,210.4593372,213.5633365,12.395749,0.115480198,1620000000000 ,1620000000000 ,1620000000000 ,1616812475900 -1616812475931 ,112.5693739,26.87701365,58.25646973,210.4602388,213.5649323,12.401458,0.11553137,1620000000000 ,1620000000000 ,1620000000000 ,1616812475910 -1616812475941 ,112.5693733,26.87701268,58.25611877,210.4602661,213.5642434,12.407328,0.11558146,1620000000000 ,1620000000000 ,1620000000000 ,1616812475920 -1616812475950 ,112.5693726,26.87701172,58.25569153,210.4612497,213.5693619,12.411978,0.115624595,1620000000000 ,1620000000000 ,1620000000000 ,1616812475930 -1616812475960 ,112.569372,26.87701076,58.25521088,210.4633807,213.5748084,12.415818,0.115662736,1620000000000 ,1620000000000 ,1620000000000 ,1616812475940 -1616812475970 ,112.5693714,26.87700979,58.25469589,210.4638451,213.5812027,12.418456,0.115690343,1620000000000 ,1620000000000 ,1620000000000 ,1616812475950 -1616812475980 ,112.5693707,26.87700883,58.25413895,210.4662494,213.5879558,12.423449,0.115731157,1620000000000 ,1620000000000 ,1620000000000 ,1616812475960 -1616812475989 ,112.5693701,26.87700786,58.25354004,210.4664406,213.5965844,12.42714,0.115766947,1620000000000 ,1620000000000 ,1620000000000 ,1616812475970 -1616812476000 ,112.5693694,26.8770069,58.25287628,210.4671509,213.5981304,12.432338,0.115811894,1620000000000 ,1620000000000 ,1620000000000 ,1616812475980 -1616812476013 ,112.5693688,26.87700593,58.25215149,210.4689814,213.5929589,12.437214,0.115851111,1620000000000 ,1620000000000 ,1620000000000 ,1616812475990 -1616812476022 ,112.5693682,26.87700497,58.25133896,210.4701289,213.5962016,12.443357,0.115902385,1620000000000 ,1620000000000 ,1620000000000 ,1616812476000 -1616812476032 ,112.5693675,26.877004,58.25044632,210.472861,213.6015714,12.449165,0.115956105,1620000000000 ,1620000000000 ,1620000000000 ,1616812476010 -1616812476043 ,112.5693669,26.87700304,58.24949265,210.4727517,213.6092083,12.453348,0.115996773,1620000000000 ,1620000000000 ,1620000000000 ,1616812476020 -1616812476049 ,112.5693662,26.87700207,58.24852371,210.4731615,213.6053132,12.456197,0.116022839,1620000000000 ,1620000000000 ,1620000000000 ,1616812476030 -1616812476060 ,112.5693656,26.8770011,58.24752045,210.4738172,213.6049965,12.459986,0.116052951,1620000000000 ,1620000000000 ,1620000000000 ,1616812476040 -1616812476071 ,112.5693649,26.87700014,58.24646759,210.4762761,213.6047207,12.464782,0.116091169,1620000000000 ,1620000000000 ,1620000000000 ,1616812476050 -1616812476083 ,112.5693643,26.87699917,58.24536133,210.4767132,213.605794,12.469868,0.116136575,1620000000000 ,1620000000000 ,1620000000000 ,1616812476060 -1616812476093 ,112.5693637,26.8769982,58.24424362,210.4781066,213.6047921,12.473566,0.116171544,1620000000000 ,1620000000000 ,1620000000000 ,1616812476070 -1616812476104 ,112.569363,26.87699723,58.24317169,210.4763854,213.6037746,12.4767885,0.1162056,1620000000000 ,1620000000000 ,1620000000000 ,1616812476080 -1616812476115 ,112.5693624,26.87699627,58.2421608,210.4789262,213.6013867,12.480672,0.116238909,1620000000000 ,1620000000000 ,1620000000000 ,1616812476090 -1616812476130 ,112.5693617,26.8769953,58.24118423,210.4796912,213.5998843,12.484828,0.116277551,1620000000000 ,1620000000000 ,1620000000000 ,1616812476100 -1616812476141 ,112.5693611,26.87699433,58.24020767,210.4817402,213.5992711,12.488875,0.116312977,1620000000000 ,1620000000000 ,1620000000000 ,1616812476110 -1616812476145 ,112.5693604,26.87699336,58.23927689,210.4822593,213.6049621,12.491157,0.116341914,1620000000000 ,1620000000000 ,1620000000000 ,1616812476130 -1616812476153 ,112.5693598,26.87699239,58.23843384,210.4827784,213.6069644,12.494166,0.116372285,1620000000000 ,1620000000000 ,1620000000000 ,1616812476140 -1616812476162 ,112.5693591,26.87699142,58.23769379,210.4831882,213.603299,12.496804,0.116397367,1620000000000 ,1620000000000 ,1620000000000 ,1616812476140 -1616812476173 ,112.5693585,26.87699045,58.23701859,210.486576,213.603794,12.499959,0.116432924,1620000000000 ,1620000000000 ,1620000000000 ,1616812476160 -1616812476183 ,112.5693579,26.87698948,58.23640442,210.4884065,213.6050221,12.501885,0.116452687,1620000000000 ,1620000000000 ,1620000000000 ,1616812476170 -1616812476193 ,112.5693572,26.87698851,58.23585129,210.4885704,213.6027221,12.50505,0.11648245,1620000000000 ,1620000000000 ,1620000000000 ,1616812476180 -1616812476205 ,112.5693566,26.87698754,58.23537445,210.4903736,213.5986756,12.507861,0.116508653,1620000000000 ,1620000000000 ,1620000000000 ,1616812476180 -1616812476215 ,112.5693559,26.87698657,58.23495483,210.4920948,213.6002922,12.5117445,0.116548922,1620000000000 ,1620000000000 ,1620000000000 ,1616812476200 -1616812476228 ,112.5693553,26.8769856,58.23455811,210.4944171,213.6038835,12.515285,0.116584434,1620000000000 ,1620000000000 ,1620000000000 ,1616812476210 -1616812476233 ,112.569354,26.87698367,58.23410034,210.4966574,214.445345,12.521813,0.23378586,1620000000000 ,1620000000000 ,1620000000000 ,1616812476220 -1616812476245 ,112.569354,26.87698367,58.23410034,210.4966574,-400,12.521813,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812476230 -1616812476257 ,112.5693526,26.87698174,58.23391724,210.499608,214.4863768,12.528598,0.233930337,1620000000000 ,1620000000000 ,1620000000000 ,1616812476240 -1616812476265 ,112.569352,26.87698078,58.23384857,210.5020669,214.4865944,12.533285,0.117025441,1620000000000 ,1620000000000 ,1620000000000 ,1616812476250 -1616812476277 ,112.5693513,26.87697981,58.23377991,210.5029138,214.4857374,12.537786,0.11707027,1620000000000 ,1620000000000 ,1620000000000 ,1616812476260 -1616812476286 ,112.5693506,26.87697885,58.23371124,210.5064655,214.481181,12.541603,0.1171036,1620000000000 ,1620000000000 ,1620000000000 ,1616812476270 -1616812476294 ,112.56935,26.87697788,58.23363113,210.5076949,214.4753628,12.545149,0.117141047,1620000000000 ,1620000000000 ,1620000000000 ,1616812476280 -1616812476305 ,112.5693493,26.87697692,58.23354721,210.5090337,214.4745221,12.5491905,0.117176211,1620000000000 ,1620000000000 ,1620000000000 ,1616812476290 -1616812476315 ,112.5693487,26.87697595,58.23345566,210.511192,214.4752137,12.551594,0.117202098,1620000000000 ,1620000000000 ,1620000000000 ,1616812476300 -1616812476324 ,112.569348,26.87697498,58.23337173,210.5130498,214.4807155,12.554988,0.117231192,1620000000000 ,1620000000000 ,1620000000000 ,1616812476310 -1616812476335 ,112.5693473,26.87697402,58.23327255,210.5146891,214.487602,12.558275,0.117264562,1620000000000 ,1620000000000 ,1620000000000 ,1616812476320 -1616812476345 ,112.5693467,26.87697305,58.23313904,210.5165742,214.4874468,12.562403,0.117299715,1620000000000 ,1620000000000 ,1620000000000 ,1616812476330 -1616812476354 ,112.569346,26.87697208,58.23297119,210.5166835,214.4886526,12.565601,0.117329796,1620000000000 ,1620000000000 ,1620000000000 ,1616812476340 -1616812476364 ,112.5693453,26.87697112,58.23277664,210.5154814,214.4895946,12.568075,0.117354867,1620000000000 ,1620000000000 ,1620000000000 ,1616812476350 -1616812476375 ,112.5693447,26.87697015,58.23256302,210.5164103,214.4923016,12.570596,0.117380401,1620000000000 ,1620000000000 ,1620000000000 ,1616812476360 -1616812476385 ,112.569344,26.87696918,58.23230743,210.5176397,214.4907519,12.573968,0.117406025,1620000000000 ,1620000000000 ,1620000000000 ,1616812476370 -1616812476399 ,112.5693433,26.87696821,58.2320137,210.5190057,214.493055,12.576919,0.117433139,1620000000000 ,1620000000000 ,1620000000000 ,1616812476380 -1616812476406 ,112.5693427,26.87696724,58.23167801,210.5190604,214.4917195,12.579037,0.117451008,1620000000000 ,1620000000000 ,1620000000000 ,1616812476390 -1616812476414 ,112.569342,26.87696628,58.2313385,210.5199893,214.4893234,12.581074,0.11747058,1620000000000 ,1620000000000 ,1620000000000 ,1616812476400 -1616812476426 ,112.5693413,26.87696531,58.23099899,210.5198527,214.4851686,12.583322,0.117490229,1620000000000 ,1620000000000 ,1620000000000 ,1616812476410 -1616812476435 ,112.5693407,26.87696434,58.23067856,210.5197161,214.4885363,12.586189,0.117515877,1620000000000 ,1620000000000 ,1620000000000 ,1616812476420 -1616812476446 ,112.56934,26.87696337,58.23036957,210.5196068,214.4896554,12.589522,0.117547389,1620000000000 ,1620000000000 ,1620000000000 ,1616812476430 -1616812476456 ,112.5693393,26.8769624,58.23006058,210.5190877,214.4841888,12.592419,0.117570993,1620000000000 ,1620000000000 ,1620000000000 ,1616812476440 -1616812476466 ,112.5693387,26.87696143,58.22974777,210.5190331,214.4832179,12.595485,0.117602367,1620000000000 ,1620000000000 ,1620000000000 ,1616812476450 -1616812476481 ,112.569338,26.87696046,58.22937393,210.516984,213.80703,12.598065,0.117400674,1620000000000 ,1620000000000 ,1620000000000 ,1616812476460 -1616812476485 ,112.5693374,26.87695948,58.22900009,210.5165742,213.811873,12.600775,0.117427302,1620000000000 ,1620000000000 ,1620000000000 ,1616812476470 -1616812476496 ,112.5693367,26.8769585,58.22862625,210.5144978,213.8048977,12.6031,0.117446698,1620000000000 ,1620000000000 ,1620000000000 ,1616812476480 -1616812476508 ,112.5693361,26.87695753,58.22825623,210.5115745,213.8077453,12.605688,0.117472711,1620000000000 ,1620000000000 ,1620000000000 ,1616812476490 -1616812476514 ,112.5693354,26.87695655,58.22789764,210.5081048,213.8069052,12.609459,0.117503309,1620000000000 ,1620000000000 ,1620000000000 ,1616812476500 -1616812476526 ,112.5693348,26.87695558,58.22752762,210.5046897,213.807665,12.612831,0.117537456,1620000000000 ,1620000000000 ,1620000000000 ,1616812476510 -1616812476538 ,112.5693341,26.8769546,58.22714996,210.5015751,213.8105638,12.616129,0.117568401,1620000000000 ,1620000000000 ,1620000000000 ,1616812476520 -1616812476547 ,112.5693335,26.87695362,58.22681427,210.4991162,213.8072051,12.618385,0.117589775,1620000000000 ,1620000000000 ,1620000000000 ,1616812476530 -1616812476557 ,112.5693328,26.87695264,58.22650909,210.4956738,213.7983661,12.620951,0.117615602,1620000000000 ,1620000000000 ,1620000000000 ,1616812476540 -1616812476568 ,112.5693321,26.87695167,58.22621155,210.4929417,213.7990768,12.624413,0.117645258,1620000000000 ,1620000000000 ,1620000000000 ,1616812476550 -1616812476576 ,112.5693315,26.87695069,58.225914,210.4880786,213.7994879,12.6275625,0.117677347,1620000000000 ,1620000000000 ,1620000000000 ,1616812476560 -1616812476586 ,112.5693308,26.87694971,58.22563171,210.4834888,213.7949693,12.6296215,0.117698849,1620000000000 ,1620000000000 ,1620000000000 ,1616812476570 -1616812476596 ,112.5693302,26.87694873,58.22538757,210.4771777,213.7933213,12.632337,0.117722952,1620000000000 ,1620000000000 ,1620000000000 ,1616812476580 -1616812476606 ,112.5693295,26.87694775,58.22515488,210.4745822,213.7837029,12.634755,0.117745459,1620000000000 ,1620000000000 ,1620000000000 ,1616812476590 -1616812476619 ,112.5693289,26.87694677,58.22491074,210.471331,213.7800128,12.637359,0.117771041,1620000000000 ,1620000000000 ,1620000000000 ,1616812476600 -1616812476630 ,112.5693282,26.8769458,58.22467422,210.4665772,213.7748753,12.640882,0.117800458,1620000000000 ,1620000000000 ,1620000000000 ,1616812476610 -1616812476644 ,112.5693276,26.87694482,58.22447205,210.4640091,213.7685042,12.641615,0.117814285,1620000000000 ,1620000000000 ,1620000000000 ,1616812476620 -1616812476648 ,112.5693269,26.87694384,58.22431946,210.458381,213.7621447,12.643626,0.117830002,1620000000000 ,1620000000000 ,1620000000000 ,1616812476630 -1616812476661 ,112.5693262,26.87694286,58.2241745,210.4548839,213.7569456,12.645774,0.117852229,1620000000000 ,1620000000000 ,1620000000000 ,1616812476640 -1616812476668 ,112.5693256,26.87694188,58.22401047,210.4497203,213.7545496,12.649088,0.117879688,1620000000000 ,1620000000000 ,1620000000000 ,1616812476650 -1616812476678 ,112.5693249,26.8769409,58.22382736,210.445267,213.7451479,12.650521,0.117897431,1620000000000 ,1620000000000 ,1620000000000 ,1616812476660 -1616812476687 ,112.5693243,26.87693992,58.22364807,210.4406771,213.744847,12.651844,0.117908296,1620000000000 ,1620000000000 ,1620000000000 ,1616812476670 -1616812476697 ,112.5693236,26.87693894,58.22349548,210.4370435,213.7402629,12.652721,0.117919582,1620000000000 ,1620000000000 ,1620000000000 ,1616812476680 -1616812476709 ,112.569323,26.87693795,58.22333145,210.4337923,213.7313769,12.653334,0.117922909,1620000000000 ,1620000000000 ,1620000000000 ,1616812476690 -1616812476717 ,112.5693223,26.87693697,58.2231636,210.4304318,213.7324314,12.654606,0.11793596,1620000000000 ,1620000000000 ,1620000000000 ,1616812476700 -1616812476728 ,112.5693217,26.87693599,58.2229805,210.4251316,213.7242635,12.6548815,0.117939529,1620000000000 ,1620000000000 ,1620000000000 ,1616812476710 -1616812476737 ,112.569321,26.87693501,58.22278595,210.4207603,213.7162956,12.656132,0.117948445,1620000000000 ,1620000000000 ,1620000000000 ,1616812476720 -1616812476748 ,112.5693204,26.87693403,58.22257233,210.4178643,213.70671,12.657372,0.117957892,1620000000000 ,1620000000000 ,1620000000000 ,1616812476730 -1616812476758 ,112.5693197,26.87693305,58.22232437,210.4128919,213.7019854,12.658491,0.117967821,1620000000000 ,1620000000000 ,1620000000000 ,1616812476740 -1616812476769 ,112.569319,26.87693207,58.22203064,210.4075097,213.6946167,12.659231,0.11797223,1620000000000 ,1620000000000 ,1620000000000 ,1616812476750 -1616812476779 ,112.5693184,26.87693109,58.22167969,210.4027013,213.6921412,12.660282,0.117979555,1620000000000 ,1620000000000 ,1620000000000 ,1616812476760 -1616812476789 ,112.5693177,26.8769301,58.22126389,210.398248,213.6859161,12.661141,0.117985249,1620000000000 ,1620000000000 ,1620000000000 ,1616812476770 -1616812476798 ,112.5693171,26.87692912,58.22077942,210.3928112,213.6788632,12.662284,0.117993506,1620000000000 ,1620000000000 ,1620000000000 ,1616812476780 -1616812476813 ,112.5693164,26.87692814,58.22025299,210.3871831,213.6716487,12.663246,0.117999329,1620000000000 ,1620000000000 ,1620000000000 ,1616812476790 -1616812476821 ,112.5693158,26.87692716,58.21970749,210.381473,213.6668563,12.664315,0.118008199,1620000000000 ,1620000000000 ,1620000000000 ,1616812476800 -1616812476830 ,112.5693151,26.87692618,58.21915436,210.3751073,213.6604597,12.664397,0.118009984,1620000000000 ,1620000000000 ,1620000000000 ,1616812476810 -1616812476841 ,112.5693145,26.87692519,58.21860886,210.3694792,213.6519741,12.663455,0.11800395,1620000000000 ,1620000000000 ,1620000000000 ,1616812476820 -1616812476850 ,112.5693138,26.87692421,58.21805191,210.3650806,213.6456991,12.662688,0.117993086,1620000000000 ,1620000000000 ,1620000000000 ,1616812476830 -1616812476859 ,112.5693132,26.87692323,58.217453,210.3590154,213.6436319,12.663304,0.117995523,1620000000000 ,1620000000000 ,1620000000000 ,1616812476840 -1616812476869 ,112.5693125,26.87692225,58.21682739,210.3515022,213.6417993,12.663236,0.117994386,1620000000000 ,1620000000000 ,1620000000000 ,1616812476850 -1616812476881 ,112.5693119,26.87692126,58.21617508,210.3449452,213.6369473,12.6623745,0.117988575,1620000000000 ,1620000000000 ,1620000000000 ,1616812476860 -1616812476893 ,112.5693112,26.87692028,58.21552277,210.3371588,213.6335817,12.661649,0.117981634,1620000000000 ,1620000000000 ,1620000000000 ,1616812476870 -1616812476901 ,112.5693105,26.8769193,58.2148819,210.3301647,213.6289792,12.660984,0.117973527,1620000000000 ,1620000000000 ,1620000000000 ,1616812476880 -1616812476911 ,112.5693099,26.87691832,58.21424484,210.3234984,213.6206983,12.660727,0.117967719,1620000000000 ,1620000000000 ,1620000000000 ,1616812476890 -1616812476921 ,112.5693092,26.87691733,58.2136116,210.3176791,213.6120188,12.660461,0.117966887,1620000000000 ,1620000000000 ,1620000000000 ,1616812476900 -1616812476931 ,112.5693086,26.87691635,58.21295547,210.3102478,213.5967975,12.660014,0.11796015,1620000000000 ,1620000000000 ,1620000000000 ,1616812476910 -1616812476941 ,112.5693079,26.87691537,58.21225357,210.3034996,213.5888931,12.660809,0.117959168,1620000000000 ,1620000000000 ,1620000000000 ,1616812476920 -1616812476951 ,112.5693073,26.87691439,58.21149445,210.2961776,213.5849494,12.66096,0.117959473,1620000000000 ,1620000000000 ,1620000000000 ,1616812476930 -1616812476961 ,112.5693066,26.8769134,58.21068192,210.2894021,213.5707243,12.659678,0.117945417,1620000000000 ,1620000000000 ,1620000000000 ,1616812476940 -1616812476971 ,112.569306,26.87691242,58.2098465,210.2800311,213.559325,12.66014,0.117942734,1620000000000 ,1620000000000 ,1620000000000 ,1616812476950 -1616812476997 ,112.5693053,26.87691144,58.20899963,210.2725998,213.5495899,12.6600065,0.11793758,1620000000000 ,1620000000000 ,1620000000000 ,1616812476960 -1616812477000 ,112.5693047,26.87691046,58.20815277,210.2655784,213.5365078,12.660573,0.117940979,1620000000000 ,1620000000000 ,1620000000000 ,1616812476970 -1616812477006 ,112.569304,26.87690947,58.20729065,210.2592946,213.5194894,12.660144,0.117936359,1620000000000 ,1620000000000 ,1620000000000 ,1616812476980 -1616812477011 ,112.5693034,26.87690849,58.20639801,210.2521639,213.5142331,12.660008,0.117929046,1620000000000 ,1620000000000 ,1620000000000 ,1616812476990 -1616812477021 ,112.5693027,26.87690751,58.20547104,210.2453337,213.5044981,12.659844,0.117923512,1620000000000 ,1620000000000 ,1620000000000 ,1616812477000 -1616812477040 ,112.5693021,26.87690652,58.20452499,210.238121,213.4954153,12.660453,0.117926972,1620000000000 ,1620000000000 ,1620000000000 ,1616812477010 -1616812477044 ,112.5693014,26.87690554,58.20357513,210.2302253,213.4878361,12.66079,0.11792848,1620000000000 ,1620000000000 ,1620000000000 ,1616812477020 -1616812477052 ,112.5693008,26.87690456,58.20262527,210.2236137,213.4796547,12.660574,0.117923908,1620000000000 ,1620000000000 ,1620000000000 ,1616812477030 -1616812477062 ,112.5693001,26.87690357,58.20170212,210.2156087,213.4736597,12.660609,0.11792329,1620000000000 ,1620000000000 ,1620000000000 ,1616812477040 -1616812477074 ,112.5692995,26.87690259,58.20080948,210.2099533,213.4670557,12.660219,0.117920212,1620000000000 ,1620000000000 ,1620000000000 ,1616812477050 -1616812477082 ,112.5692988,26.8769016,58.19993973,210.2030412,213.4591167,12.66068,0.117924722,1620000000000 ,1620000000000 ,1620000000000 ,1616812477060 -1616812477092 ,112.5692982,26.87690062,58.19909286,210.1963476,213.448348,12.659703,0.117915401,1620000000000 ,1620000000000 ,1620000000000 ,1616812477070 -1616812477101 ,112.5692975,26.87689964,58.19828415,210.1895994,213.4391368,12.65956,0.117912043,1620000000000 ,1620000000000 ,1620000000000 ,1616812477080 -1616812477114 ,112.5692969,26.87689865,58.19752502,210.1833702,213.4250689,12.659226,0.117907063,1620000000000 ,1620000000000 ,1620000000000 ,1616812477090 -1616812477123 ,112.5692962,26.87689767,58.19678879,210.1771411,213.4146909,12.659642,0.1179111,1620000000000 ,1620000000000 ,1620000000000 ,1616812477100 -1616812477132 ,112.5692956,26.87689668,58.196064,210.1719502,213.4084233,12.659388,0.117908102,1620000000000 ,1620000000000 ,1620000000000 ,1616812477110 -1616812477143 ,112.5692949,26.8768957,58.19535065,210.1660489,213.4004692,12.659431,0.117906085,1620000000000 ,1620000000000 ,1620000000000 ,1616812477120 -1616812477153 ,112.5692943,26.87689471,58.19467163,210.1604481,213.3858267,12.659649,0.117907549,1620000000000 ,1620000000000 ,1620000000000 ,1616812477130 -1616812477163 ,112.5692936,26.87689373,58.1940155,210.1553665,213.3751814,12.659377,0.117903087,1620000000000 ,1620000000000 ,1620000000000 ,1616812477140 -1616812477173 ,112.569293,26.87689275,58.19335175,210.1503394,213.369684,12.65934,0.117900281,1620000000000 ,1620000000000 ,1620000000000 ,1616812477150 -1616812477184 ,112.5692923,26.87689176,58.19268036,210.1449299,213.3653346,12.659988,0.117903386,1620000000000 ,1620000000000 ,1620000000000 ,1616812477160 -1616812477192 ,112.5692917,26.87689078,58.19203568,210.1385096,213.3567248,12.659697,0.117901686,1620000000000 ,1620000000000 ,1620000000000 ,1616812477170 -1616812477204 ,112.569291,26.87688979,58.19139862,210.1336191,213.3426815,12.660487,0.117904497,1620000000000 ,1620000000000 ,1620000000000 ,1616812477180 -1616812477213 ,112.5692904,26.87688881,58.19072723,210.1291385,213.3326951,12.660499,0.117903759,1620000000000 ,1620000000000 ,1620000000000 ,1616812477200 -1616812477222 ,112.5692897,26.87688782,58.19002151,210.125259,213.3306686,12.661855,0.117908144,1620000000000 ,1620000000000 ,1620000000000 ,1616812477200 -1616812477234 ,112.5692891,26.87688684,58.18970108,210.1299308,213.6121339,12.665123,0.118134606,1620000000000 ,1620000000000 ,1620000000000 ,1616812477210 -1616812477243 ,112.5692878,26.87688487,58.18929672,210.1179643,213.6010771,12.664596,0.236301552,1620000000000 ,1620000000000 ,1620000000000 ,1616812477230 -1616812477253 ,112.5692871,26.87688388,58.18909454,210.1117625,213.5924399,12.665116,0.118146193,1620000000000 ,1620000000000 ,1620000000000 ,1616812477240 -1616812477265 ,112.5692865,26.8768829,58.18889618,210.1072546,213.5934469,12.665495,0.118154062,1620000000000 ,1620000000000 ,1620000000000 ,1616812477250 -1616812477273 ,112.5692858,26.87688192,58.18871307,210.1021456,213.5880087,12.665436,0.118153558,1620000000000 ,1620000000000 ,1620000000000 ,1616812477260 -1616812477284 ,112.5692852,26.87688093,58.18854141,210.095534,213.5795744,12.665039,0.118148456,1620000000000 ,1620000000000 ,1620000000000 ,1616812477270 -1616812477293 ,112.5692845,26.87687995,58.18836975,210.0917364,213.5762388,12.66573,0.118150241,1620000000000 ,1620000000000 ,1620000000000 ,1616812477280 -1616812477308 ,112.5692845,26.87687995,58.18836975,210.0917364,-400,12.66573,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812477280 -1616812477316 ,112.5692832,26.87687798,58.18801117,210.0815185,213.5703238,12.665825,0.236308436,1620000000000 ,1620000000000 ,1620000000000 ,1616812477300 -1616812477332 ,112.5692825,26.87687699,58.18783188,210.0777482,213.5658679,12.665726,0.118151263,1620000000000 ,1620000000000 ,1620000000000 ,1616812477310 -1616812477336 ,112.5692819,26.87687601,58.18767166,210.0741965,213.5569531,12.665028,0.118142971,1620000000000 ,1620000000000 ,1620000000000 ,1616812477320 -1616812477346 ,112.5692812,26.87687503,58.18756104,210.0704809,213.5476554,12.665278,0.118144205,1620000000000 ,1620000000000 ,1620000000000 ,1616812477330 -1616812477355 ,112.5692806,26.87687404,58.18747711,210.0662735,213.5424847,12.665166,0.118144404,1620000000000 ,1620000000000 ,1620000000000 ,1616812477340 -1616812477365 ,112.5692799,26.87687306,58.18741608,210.062913,213.5349247,12.665884,0.11814807,1620000000000 ,1620000000000 ,1620000000000 ,1616812477350 -1616812477375 ,112.5692793,26.87687207,58.18738174,210.0596619,213.5281328,12.663871,0.118135081,1620000000000 ,1620000000000 ,1620000000000 ,1616812477360 -1616812477385 ,112.5692786,26.87687109,58.18739319,210.0567932,213.5221881,12.6636095,0.118131539,1620000000000 ,1620000000000 ,1620000000000 ,1616812477370 -1616812477395 ,112.569278,26.8768701,58.18743134,210.0531049,213.5148645,12.662635,0.118123155,1620000000000 ,1620000000000 ,1620000000000 ,1616812477380 -1616812477406 ,112.5692773,26.87686912,58.18743134,210.0506187,213.5074284,12.662971,0.118120384,1620000000000 ,1620000000000 ,1620000000000 ,1616812477390 -1616812477417 ,112.5692767,26.87686813,58.187397,210.0472582,213.5086206,12.662877,0.118119416,1620000000000 ,1620000000000 ,1620000000000 ,1616812477400 -1616812477426 ,112.569276,26.87686715,58.1873703,210.0437885,213.5111841,12.662357,0.118118637,1620000000000 ,1620000000000 ,1620000000000 ,1616812477410 -1616812477436 ,112.5692754,26.87686616,58.18738174,210.0430235,213.5086966,12.661627,0.11811226,1620000000000 ,1620000000000 ,1620000000000 ,1616812477420 -1616812477446 ,112.5692747,26.87686518,58.18742371,210.0396357,213.5032896,12.660779,0.118108092,1620000000000 ,1620000000000 ,1620000000000 ,1616812477430 -1616812477455 ,112.5692741,26.87686419,58.18748093,210.0387068,213.4943009,12.660001,0.118097722,1620000000000 ,1620000000000 ,1620000000000 ,1616812477440 -1616812477466 ,112.5692734,26.87686321,58.18753433,210.0375867,213.486279,12.659896,0.118094903,1620000000000 ,1620000000000 ,1620000000000 ,1616812477450 -1616812477476 ,112.5692728,26.87686222,58.18722534,210.0375047,213.1957746,12.660546,0.117889802,1620000000000 ,1620000000000 ,1620000000000 ,1616812477460 -1616812477485 ,112.5692721,26.87686123,58.18686676,210.0364939,213.1972245,12.660074,0.117890883,1620000000000 ,1620000000000 ,1620000000000 ,1616812477470 -1616812477499 ,112.5692715,26.87686025,58.18647766,210.0353737,213.1895625,12.659418,0.117881666,1620000000000 ,1620000000000 ,1620000000000 ,1616812477480 -1616812477506 ,112.5692708,26.87685926,58.18610764,210.0342262,213.194696,12.658751,0.117878266,1620000000000 ,1620000000000 ,1620000000000 ,1616812477490 -1616812477517 ,112.5692702,26.87685827,58.18572998,210.0354283,213.1901944,12.658766,0.117871875,1620000000000 ,1620000000000 ,1620000000000 ,1616812477500 -1616812477528 ,112.5692695,26.87685729,58.18528748,210.0362753,213.1822949,12.658,0.117865029,1620000000000 ,1620000000000 ,1620000000000 ,1616812477510 -1616812477536 ,112.5692689,26.8768563,58.18481445,210.037614,213.181125,12.657908,0.117861044,1620000000000 ,1620000000000 ,1620000000000 ,1616812477520 -1616812477547 ,112.5692683,26.87685532,58.18435287,210.0385976,213.1748279,12.657319,0.117855929,1620000000000 ,1620000000000 ,1620000000000 ,1616812477530 -1616812477556 ,112.5692676,26.87685433,58.1838913,210.0413843,213.1741932,12.65717,0.117855906,1620000000000 ,1620000000000 ,1620000000000 ,1616812477540 -1616812477566 ,112.569267,26.87685334,58.18340302,210.0439251,213.1773215,12.658341,0.117857297,1620000000000 ,1620000000000 ,1620000000000 ,1616812477550 -1616812477577 ,112.5692663,26.87685236,58.1828537,210.0467118,213.1766476,12.656295,0.117849007,1620000000000 ,1620000000000 ,1620000000000 ,1616812477560 -1616812477588 ,112.5692657,26.87685137,58.18226242,210.0482418,213.1683802,12.655029,0.117827203,1620000000000 ,1620000000000 ,1620000000000 ,1616812477570 -1616812477598 ,112.569265,26.87685038,58.18165207,210.0503182,213.1717429,12.654252,0.117821218,1620000000000 ,1620000000000 ,1620000000000 ,1616812477580 -1616812477608 ,112.5692644,26.8768494,58.18103409,210.0526131,213.1755957,12.654503,0.117818687,1620000000000 ,1620000000000 ,1620000000000 ,1616812477590 -1616812477617 ,112.5692637,26.87684841,58.18039322,210.059252,213.1795871,12.654641,0.117821398,1620000000000 ,1620000000000 ,1620000000000 ,1616812477600 -1616812477627 ,112.5692631,26.87684743,58.17976379,210.0635414,213.1838266,12.653893,0.117820141,1620000000000 ,1620000000000 ,1620000000000 ,1616812477610 -1616812477636 ,112.5692624,26.87684644,58.17919922,210.0681859,213.178407,12.652348,0.117803354,1620000000000 ,1620000000000 ,1620000000000 ,1616812477620 -1616812477646 ,112.5692618,26.87684545,58.17867661,210.0731583,213.169597,12.652053,0.117799941,1620000000000 ,1620000000000 ,1620000000000 ,1616812477630 -1616812477658 ,112.5692612,26.87684447,58.17810059,210.0785132,213.1758803,12.652747,0.11779946,1620000000000 ,1620000000000 ,1620000000000 ,1616812477640 -1616812477666 ,112.5692605,26.87684348,58.17745972,210.0855619,213.1945386,12.653211,0.117807347,1620000000000 ,1620000000000 ,1620000000000 ,1616812477650 -1616812477678 ,112.5692599,26.8768425,58.17680359,210.0901518,213.2008373,12.651303,0.117797018,1620000000000 ,1620000000000 ,1620000000000 ,1616812477660 -1616812477688 ,112.5692592,26.87684151,58.17618942,210.0953154,213.195381,12.650495,0.117787966,1620000000000 ,1620000000000 ,1620000000000 ,1616812477670 -1616812477698 ,112.5692586,26.87684052,58.1755867,210.1016539,213.1940738,12.650016,0.117778254,1620000000000 ,1620000000000 ,1620000000000 ,1616812477680 -1616812477709 ,112.5692579,26.87683954,58.17494583,210.1096588,213.2053543,12.651102,0.117785099,1620000000000 ,1620000000000 ,1620000000000 ,1616812477690 -1616812477718 ,112.5692573,26.87683855,58.17425156,210.1171174,213.2193308,12.651313,0.117790563,1620000000000 ,1620000000000 ,1620000000000 ,1616812477700 -1616812477732 ,112.5692566,26.87683757,58.17356873,210.1221991,213.2279627,12.64908,0.117779144,1620000000000 ,1620000000000 ,1620000000000 ,1616812477710 -1616812477744 ,112.569256,26.87683658,58.172966,210.1293571,213.226432,12.64713,0.117759001,1620000000000 ,1620000000000 ,1620000000000 ,1616812477720 -1616812477751 ,112.5692554,26.8768356,58.17244339,210.136078,213.2282884,12.646153,0.117749414,1620000000000 ,1620000000000 ,1620000000000 ,1616812477730 -1616812477764 ,112.5692547,26.87683461,58.17192078,210.1416788,213.2368941,12.646018,0.117747613,1620000000000 ,1620000000000 ,1620000000000 ,1616812477740 -1616812477773 ,112.5692541,26.87683363,58.17134094,210.1468697,213.2408807,12.645992,0.117745132,1620000000000 ,1620000000000 ,1620000000000 ,1616812477750 -1616812477784 ,112.5692534,26.87683264,58.17074966,210.153372,213.2460234,12.645671,0.117743984,1620000000000 ,1620000000000 ,1620000000000 ,1616812477760 -1616812477790 ,112.5692528,26.87683166,58.17020416,210.1574428,213.2513821,12.646465,0.117747268,1620000000000 ,1620000000000 ,1620000000000 ,1616812477770 -1616812477800 ,112.5692521,26.87683067,58.16970444,210.1623879,213.2545302,12.646912,0.117755945,1620000000000 ,1620000000000 ,1620000000000 ,1616812477780 -1616812477809 ,112.5692515,26.87682969,58.16924286,210.1676881,213.2650356,12.64541,0.117748225,1620000000000 ,1620000000000 ,1620000000000 ,1616812477790 -1616812477819 ,112.5692508,26.87682871,58.16885757,210.1727698,213.2734381,12.641531,0.117724715,1620000000000 ,1620000000000 ,1620000000000 ,1616812477800 -1616812477830 ,112.5692502,26.87682772,58.16856384,210.1784525,213.2741047,12.638867,0.117698567,1620000000000 ,1620000000000 ,1620000000000 ,1616812477810 -1616812477842 ,112.5692495,26.87682674,58.16830063,210.1832883,213.2823904,12.639384,0.117694724,1620000000000 ,1620000000000 ,1620000000000 ,1616812477820 -1616812477853 ,112.5692489,26.87682575,58.16798401,210.1875503,213.2926584,12.6410475,0.117710446,1620000000000 ,1620000000000 ,1620000000000 ,1616812477830 -1616812477861 ,112.5692482,26.87682477,58.16762924,210.1908288,213.306047,12.641285,0.117717313,1620000000000 ,1620000000000 ,1620000000000 ,1616812477840 -1616812477871 ,112.5692476,26.87682379,58.16730881,210.1915938,213.3158739,12.639906,0.117711504,1620000000000 ,1620000000000 ,1620000000000 ,1616812477850 -1616812477884 ,112.569247,26.8768228,58.16706085,210.1930418,213.319352,12.638754,0.117701019,1620000000000 ,1620000000000 ,1620000000000 ,1616812477860 -1616812477891 ,112.5692463,26.87682182,58.16685486,210.1922222,213.3214443,12.638357,0.117695857,1620000000000 ,1620000000000 ,1620000000000 ,1616812477870 -1616812477901 ,112.5692457,26.87682084,58.16664886,210.194763,213.3247668,12.639036,0.117701781,1620000000000 ,1620000000000 ,1620000000000 ,1616812477880 -1616812477914 ,112.569245,26.87681985,58.1664238,210.1951728,213.3298959,12.638429,0.117698454,1620000000000 ,1620000000000 ,1620000000000 ,1616812477890 -1616812477921 ,112.5692444,26.87681887,58.1662178,210.1932604,213.3306573,12.637392,0.117693981,1620000000000 ,1620000000000 ,1620000000000 ,1616812477900 -1616812477931 ,112.5692437,26.87681789,58.16605759,210.1947357,213.3261714,12.636354,0.117682563,1620000000000 ,1620000000000 ,1620000000000 ,1616812477910 -1616812477941 ,112.5692431,26.8768169,58.16592026,210.196129,213.3223305,12.635551,0.11767549,1620000000000 ,1620000000000 ,1620000000000 ,1616812477920 -1616812477952 ,112.5692424,26.87681592,58.16581345,210.1963203,213.326161,12.635329,0.117674479,1620000000000 ,1620000000000 ,1620000000000 ,1616812477930 -1616812477961 ,112.5692418,26.87681494,58.1657753,210.196293,213.3294383,12.634721,0.117675409,1620000000000 ,1620000000000 ,1620000000000 ,1616812477940 -1616812477971 ,112.5692411,26.87681395,58.16581345,210.1956646,213.3318191,12.634784,0.117673752,1620000000000 ,1620000000000 ,1620000000000 ,1616812477950 -1616812477986 ,112.5692405,26.87681297,58.16590118,210.1955553,213.3353444,12.634012,0.117673452,1620000000000 ,1620000000000 ,1620000000000 ,1616812477960 -1616812477994 ,112.5692398,26.87681199,58.16601181,210.1953094,213.3376697,12.63328,0.117669233,1620000000000 ,1620000000000 ,1620000000000 ,1616812477970 -1616812478003 ,112.5692392,26.876811,58.16614914,210.1956646,213.3366134,12.633525,0.117670742,1620000000000 ,1620000000000 ,1620000000000 ,1616812477980 -1616812478013 ,112.5692386,26.87681002,58.16628647,210.1964022,213.3311142,12.633928,0.117673741,1620000000000 ,1620000000000 ,1620000000000 ,1616812477990 -1616812478022 ,112.5692379,26.87680904,58.16637421,210.1956919,213.3284345,12.634576,0.11767813,1620000000000 ,1620000000000 ,1620000000000 ,1616812478000 -1616812478035 ,112.5692373,26.87680805,58.16640091,210.1931784,213.3320108,12.63471,0.117679034,1620000000000 ,1620000000000 ,1620000000000 ,1616812478010 -1616812478043 ,112.5692366,26.87680707,58.16637802,210.1916211,213.3342492,12.634706,0.117678093,1620000000000 ,1620000000000 ,1620000000000 ,1616812478020 -1616812478052 ,112.569236,26.87680609,58.16633224,210.1917577,213.3352282,12.636249,0.117690368,1620000000000 ,1620000000000 ,1620000000000 ,1616812478030 -1616812478062 ,112.5692353,26.8768051,58.16627121,210.1900638,213.3331883,12.637405,0.117698782,1620000000000 ,1620000000000 ,1620000000000 ,1616812478040 -1616812478073 ,112.5692347,26.87680412,58.1662178,210.1901185,213.3292977,12.637256,0.117701505,1620000000000 ,1620000000000 ,1620000000000 ,1616812478050 -1616812478082 ,112.569234,26.87680314,58.16618729,210.1888344,213.3204709,12.637296,0.117700296,1620000000000 ,1620000000000 ,1620000000000 ,1616812478060 -1616812478096 ,112.5692334,26.87680215,58.16616821,210.1876596,213.3159016,12.637285,0.117701275,1620000000000 ,1620000000000 ,1620000000000 ,1616812478070 -1616812478103 ,112.5692327,26.87680117,58.16610718,210.1863482,213.311592,12.638513,0.11770607,1620000000000 ,1620000000000 ,1620000000000 ,1616812478080 -1616812478113 ,112.5692321,26.87680019,58.16598129,210.1818403,213.3109777,12.63854,0.117708345,1620000000000 ,1620000000000 ,1620000000000 ,1616812478090 -1616812478124 ,112.5692314,26.8767992,58.16577148,210.1785618,213.3096423,12.638988,0.117708732,1620000000000 ,1620000000000 ,1620000000000 ,1616812478100 -1616812478133 ,112.5692308,26.87679822,58.16551208,210.1723873,213.3094107,12.64017,0.117715198,1620000000000 ,1620000000000 ,1620000000000 ,1616812478110 -1616812478142 ,112.5692301,26.87679723,58.16520691,210.1692454,213.3083728,12.641743,0.11772689,1620000000000 ,1620000000000 ,1620000000000 ,1616812478130 -1616812478153 ,112.5692295,26.87679625,58.16485977,210.1641091,213.3074197,12.6425295,0.117734552,1620000000000 ,1620000000000 ,1620000000000 ,1616812478140 -1616812478165 ,112.5692289,26.87679527,58.16448593,210.159164,213.3091495,12.643224,0.117740303,1620000000000 ,1620000000000 ,1620000000000 ,1616812478150 -1616812478174 ,112.5692282,26.87679428,58.16412735,210.1532354,213.3090749,12.644882,0.117756011,1620000000000 ,1620000000000 ,1620000000000 ,1616812478160 -1616812478184 ,112.5692269,26.87679231,58.16346359,210.140422,213.2984971,12.648537,0.235549746,1620000000000 ,1620000000000 ,1620000000000 ,1616812478170 -1616812478198 ,112.5692263,26.87679133,58.16309357,210.1335918,213.2936643,12.651056,0.117807453,1620000000000 ,1620000000000 ,1620000000000 ,1616812478180 -1616812478207 ,112.5692263,26.87679133,58.16309357,210.1335918,-400,12.651056,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812478180 -1616812478217 ,112.569225,26.87678936,58.1622963,210.11444,213.289762,12.656161,0.235680059,1620000000000 ,1620000000000 ,1620000000000 ,1616812478200 -1616812478224 ,112.5692243,26.87678838,58.16186523,210.1133471,213.9139429,12.641247,0.117436162,1620000000000 ,1620000000000 ,1620000000000 ,1616812478210 -1616812478233 ,112.5692237,26.87678741,58.16143417,210.102774,213.9858703,12.645266,0.117407451,1620000000000 ,1620000000000 ,1620000000000 ,1616812478220 -1616812478243 ,112.569223,26.87678644,58.16096878,210.0914905,213.9841083,12.648729,0.117441556,1620000000000 ,1620000000000 ,1620000000000 ,1616812478230 -1616812478254 ,112.5692223,26.87678546,58.1604805,210.078841,213.980121,12.651954,0.117471132,1620000000000 ,1620000000000 ,1620000000000 ,1616812478240 -1616812478264 ,112.5692217,26.87678449,58.15999985,210.0658363,213.9701979,12.654486,0.117495693,1620000000000 ,1620000000000 ,1620000000000 ,1616812478250 -1616812478277 ,112.569221,26.87678351,58.15952682,210.0522852,213.9573949,12.656271,0.117509091,1620000000000 ,1620000000000 ,1620000000000 ,1616812478260 -1616812478285 ,112.5692204,26.87678254,58.15903854,210.0408105,213.9517426,12.6599865,0.117538644,1620000000000 ,1620000000000 ,1620000000000 ,1616812478270 -1616812478295 ,112.5692197,26.87678156,58.15851593,210.0287621,213.9422612,12.662978,0.117567681,1620000000000 ,1620000000000 ,1620000000000 ,1616812478280 -1616812478306 ,112.5692191,26.87678059,58.1579895,210.0152929,213.9235704,12.665113,0.117582972,1620000000000 ,1620000000000 ,1620000000000 ,1616812478290 -1616812478315 ,112.5692184,26.87677961,58.15750504,210.002097,213.9081519,12.666504,0.117597259,1620000000000 ,1620000000000 ,1620000000000 ,1616812478300 -1616812478324 ,112.5692178,26.87677864,58.1570549,209.9867974,213.8904775,12.668596,0.117613205,1620000000000 ,1620000000000 ,1620000000000 ,1616812478310 -1616812478334 ,112.5692171,26.87677766,58.15660858,209.9734375,213.8785266,12.672728,0.117642984,1620000000000 ,1620000000000 ,1620000000000 ,1616812478320 -1616812478344 ,112.5692164,26.87677668,58.15613174,209.9598865,213.875476,12.675071,0.117671583,1620000000000 ,1620000000000 ,1620000000000 ,1616812478330 -1616812478355 ,112.5692158,26.87677571,58.15565491,209.9465812,213.8624184,12.676239,0.117681004,1620000000000 ,1620000000000 ,1620000000000 ,1616812478340 -1616812478366 ,112.5692151,26.87677473,58.15520096,209.9307898,213.829079,12.676433,0.117679711,1620000000000 ,1620000000000 ,1620000000000 ,1616812478350 -1616812478375 ,112.5692145,26.87677375,58.15473938,209.916747,213.8101166,12.67833,0.117688887,1620000000000 ,1620000000000 ,1620000000000 ,1616812478360 -1616812478391 ,112.5692138,26.87677277,58.15421295,209.9031412,213.7964471,12.68246,0.117714971,1620000000000 ,1620000000000 ,1620000000000 ,1616812478370 -1616812478395 ,112.5692132,26.87677179,58.15358353,209.8886886,213.7891722,12.685587,0.117739463,1620000000000 ,1620000000000 ,1620000000000 ,1616812478380 -1616812478405 ,112.5692125,26.87677081,58.15291977,209.8725966,213.7757302,12.6878605,0.117760106,1620000000000 ,1620000000000 ,1620000000000 ,1616812478390 -1616812478415 ,112.5692119,26.87676983,58.15226364,209.8576522,213.7457464,12.689893,0.117772956,1620000000000 ,1620000000000 ,1620000000000 ,1616812478400 -1616812478427 ,112.5692112,26.87676886,58.1516304,209.8401669,213.7223667,12.692835,0.11779052,1620000000000 ,1620000000000 ,1620000000000 ,1616812478410 -1616812478437 ,112.5692105,26.87676787,58.15095139,209.8244028,213.7036772,12.697128,0.117822244,1620000000000 ,1620000000000 ,1620000000000 ,1616812478420 -1616812478452 ,112.5692099,26.87676689,58.15018082,209.8092125,213.6882714,12.70086,0.117854581,1620000000000 ,1620000000000 ,1620000000000 ,1616812478430 -1616812478459 ,112.5692092,26.87676591,58.14934158,209.7925195,213.6739363,12.703547,0.117873437,1620000000000 ,1620000000000 ,1620000000000 ,1616812478440 -1616812478469 ,112.5692086,26.87676493,58.14850616,209.7761544,213.6554214,12.7050495,0.117883852,1620000000000 ,1620000000000 ,1620000000000 ,1616812478450 -1616812478479 ,112.5692079,26.87676394,58.14775467,209.7612919,213.0817287,12.707255,0.118279067,1620000000000 ,1620000000000 ,1620000000000 ,1616812478460 -1616812478486 ,112.5692073,26.87676295,58.14698029,209.7461835,213.0611571,12.710677,0.118300805,1620000000000 ,1620000000000 ,1620000000000 ,1616812478470 -1616812478497 ,112.5692067,26.87676196,58.14618301,209.7322226,213.0494885,12.714067,0.118327972,1620000000000 ,1620000000000 ,1620000000000 ,1616812478480 -1616812478512 ,112.569206,26.87676097,58.14540482,209.7164858,213.0344082,12.715507,0.118342313,1620000000000 ,1620000000000 ,1620000000000 ,1616812478490 -1616812478519 ,112.5692054,26.87675997,58.14468384,209.6992738,213.01425,12.7188225,0.118370605,1620000000000 ,1620000000000 ,1620000000000 ,1616812478500 -1616812478532 ,112.5692047,26.87675898,58.14400101,209.6831545,212.9950582,12.72081,0.118385339,1620000000000 ,1620000000000 ,1620000000000 ,1616812478510 -1616812478542 ,112.5692041,26.87675799,58.14334869,209.6669533,212.9730568,12.722053,0.118394821,1620000000000 ,1620000000000 ,1620000000000 ,1616812478520 -1616812478548 ,112.5692034,26.87675699,58.1427536,209.6520088,212.9508901,12.7228155,0.118401661,1620000000000 ,1620000000000 ,1620000000000 ,1616812478530 -1616812478560 ,112.5692028,26.876756,58.14222336,209.6366273,212.9291202,12.724539,0.118413705,1620000000000 ,1620000000000 ,1620000000000 ,1616812478540 -1616812478567 ,112.5692021,26.87675501,58.14173889,209.6221746,212.9098125,12.728934,0.118441019,1620000000000 ,1620000000000 ,1620000000000 ,1616812478550 -1616812478579 ,112.5692015,26.87675401,58.14128494,209.6067657,212.8927387,12.732415,0.118477873,1620000000000 ,1620000000000 ,1620000000000 ,1616812478560 -1616812478589 ,112.5692009,26.87675302,58.14087677,209.5873953,212.8689344,12.733611,0.11848998,1620000000000 ,1620000000000 ,1620000000000 ,1616812478570 -1616812478597 ,112.5692002,26.87675202,58.14048767,209.5726967,212.831378,12.735616,0.118500644,1620000000000 ,1620000000000 ,1620000000000 ,1616812478580 -1616812478607 ,112.5691996,26.87675102,58.14009476,209.5562769,212.8089794,12.737452,0.118512048,1620000000000 ,1620000000000 ,1620000000000 ,1616812478590 -1616812478618 ,112.5691989,26.87675003,58.13972092,209.540103,212.7986148,12.739755,0.118531496,1620000000000 ,1620000000000 ,1620000000000 ,1616812478600 -1616812478628 ,112.5691983,26.87674903,58.13940811,209.5223719,212.7721211,12.741352,0.118543475,1620000000000 ,1620000000000 ,1620000000000 ,1616812478610 -1616812478638 ,112.5691976,26.87674803,58.13912582,209.5065531,212.7477435,12.744287,0.118561826,1620000000000 ,1620000000000 ,1620000000000 ,1616812478620 -1616812478648 ,112.569197,26.87674704,58.13883209,209.4922371,212.7309404,12.750128,0.118606939,1620000000000 ,1620000000000 ,1620000000000 ,1616812478630 -1616812478658 ,112.5691964,26.87674604,58.13851166,209.4762817,212.7133009,12.753605,0.118643057,1620000000000 ,1620000000000 ,1620000000000 ,1616812478640 -1616812478667 ,112.5691957,26.87674504,58.13819504,209.4609548,212.6982079,12.755581,0.118659845,1620000000000 ,1620000000000 ,1620000000000 ,1616812478650 -1616812478678 ,112.5691951,26.87674404,58.13793945,209.44377,212.687181,12.756917,0.118676713,1620000000000 ,1620000000000 ,1620000000000 ,1616812478660 -1616812478689 ,112.5691944,26.87674304,58.13774872,209.426394,212.6714473,12.757965,0.118687367,1620000000000 ,1620000000000 ,1620000000000 ,1616812478670 -1616812478699 ,112.5691938,26.87674204,58.13757324,209.4116681,212.6626738,12.759865,0.118698329,1620000000000 ,1620000000000 ,1620000000000 ,1616812478680 -1616812478713 ,112.5691932,26.87674104,58.13737488,209.395986,212.6563823,12.762195,0.118719355,1620000000000 ,1620000000000 ,1620000000000 ,1616812478690 -1616812478720 ,112.5691925,26.87674004,58.13719559,209.3786374,212.6394293,12.763301,0.118729389,1620000000000 ,1620000000000 ,1620000000000 ,1616812478700 -1616812478734 ,112.5691919,26.87673904,58.13709259,209.3626274,212.6163397,12.7650585,0.1187471,1620000000000 ,1620000000000 ,1620000000000 ,1616812478710 -1616812478750 ,112.5691912,26.87673804,58.137043,209.3444591,212.6040962,12.767107,0.118760957,1620000000000 ,1620000000000 ,1620000000000 ,1616812478720 -1616812478752 ,112.5691906,26.87673704,58.13700104,209.3272743,212.5937288,12.770315,0.118791183,1620000000000 ,1620000000000 ,1620000000000 ,1616812478730 -1616812478769 ,112.56919,26.87673604,58.13694763,209.3087782,212.5786668,12.771534,0.118803977,1620000000000 ,1620000000000 ,1620000000000 ,1616812478740 -1616812478778 ,112.5691893,26.87673504,58.1369133,209.290364,212.5544423,12.771627,0.11880724,1620000000000 ,1620000000000 ,1620000000000 ,1616812478750 -1616812478784 ,112.5691887,26.87673404,58.13685608,209.2722776,212.5317888,12.776002,0.118824522,1620000000000 ,1620000000000 ,1620000000000 ,1616812478760 -1616812478797 ,112.569188,26.87673303,58.13669968,209.2577157,212.5033941,12.774657,0.11882445,1620000000000 ,1620000000000 ,1620000000000 ,1616812478770 -1616812478803 ,112.5691874,26.87673203,58.13641739,209.2456672,212.5109184,12.782484,0.11886947,1620000000000 ,1620000000000 ,1620000000000 ,1616812478780 -1616812478810 ,112.5691868,26.87673103,58.13607407,209.2325806,212.4702341,12.786041,0.118903182,1620000000000 ,1620000000000 ,1620000000000 ,1616812478790 -1616812478821 ,112.5691861,26.87673002,58.13578033,209.216516,212.4143336,12.786404,0.118901326,1620000000000 ,1620000000000 ,1620000000000 ,1616812478800 -1616812478832 ,112.5691855,26.87672902,58.13561249,209.2009978,212.3995389,12.783568,0.118890972,1620000000000 ,1620000000000 ,1620000000000 ,1616812478810 -1616812478840 ,112.5691849,26.87672802,58.13544464,209.1844961,212.3876235,12.783606,0.118877164,1620000000000 ,1620000000000 ,1620000000000 ,1616812478820 -1616812478851 ,112.5691842,26.87672701,58.1351738,209.1700161,212.3815843,12.788396,0.118900902,1620000000000 ,1620000000000 ,1620000000000 ,1616812478830 -1616812478859 ,112.5691836,26.87672601,58.13476563,209.1556453,212.372326,12.795605,0.118957563,1620000000000 ,1620000000000 ,1620000000000 ,1616812478840 -1616812478872 ,112.5691829,26.876725,58.13426971,209.1395261,212.3464765,12.80158,0.119007404,1620000000000 ,1620000000000 ,1620000000000 ,1616812478850 -1616812478881 ,112.5691823,26.876724,58.13375854,209.1244997,212.3197911,12.804567,0.119039949,1620000000000 ,1620000000000 ,1620000000000 ,1616812478860 -1616812478892 ,112.5691817,26.87672299,58.13326645,209.1092,212.3067538,12.803739,0.119034865,1620000000000 ,1620000000000 ,1620000000000 ,1616812478870 -1616812478901 ,112.569181,26.87672198,58.1327858,209.095567,212.2994954,12.801982,0.119020331,1620000000000 ,1620000000000 ,1620000000000 ,1616812478880 -1616812478912 ,112.5691804,26.87672098,58.13227844,209.0819613,212.2855055,12.803349,0.119019876,1620000000000 ,1620000000000 ,1620000000000 ,1616812478890 -1616812478921 ,112.5691798,26.87671997,58.13173676,209.0672627,212.2739469,12.807109,0.119045747,1620000000000 ,1620000000000 ,1620000000000 ,1616812478900 -1616812478934 ,112.5691791,26.87671896,58.13117599,209.0510888,212.2562954,12.810826,0.119077014,1620000000000 ,1620000000000 ,1620000000000 ,1616812478910 -1616812478940 ,112.5691785,26.87671796,58.13058472,209.0370733,212.2371765,12.813822,0.119100162,1620000000000 ,1620000000000 ,1620000000000 ,1616812478920 -1616812478952 ,112.5691779,26.87671695,58.12998962,209.022402,212.2347339,12.816128,0.119122462,1620000000000 ,1620000000000 ,1620000000000 ,1616812478930 -1616812478964 ,112.5691772,26.87671594,58.12943649,209.0063647,212.2180999,12.81734,0.119135046,1620000000000 ,1620000000000 ,1620000000000 ,1616812478940 -1616812478971 ,112.5691766,26.87671493,58.12897873,208.9925404,212.2000934,12.821539,0.119163016,1620000000000 ,1620000000000 ,1620000000000 ,1616812478950 -1616812478981 ,112.569176,26.87671392,58.12861633,208.9781424,212.1830712,12.822543,0.119193244,1620000000000 ,1620000000000 ,1620000000000 ,1616812478960 -1616812478996 ,112.5691753,26.87671292,58.12828827,208.9647825,212.1718336,12.817809,0.11915238,1620000000000 ,1620000000000 ,1620000000000 ,1616812478970 -1616812479004 ,112.5691747,26.87671191,58.12801361,208.9511768,212.1668947,12.815063,0.119127491,1620000000000 ,1620000000000 ,1620000000000 ,1616812478980 -1616812479011 ,112.5691741,26.8767109,58.12780762,208.9381721,212.1446513,12.812697,0.119105678,1620000000000 ,1620000000000 ,1620000000000 ,1616812478990 -1616812479021 ,112.5691734,26.87670989,58.12766647,208.9248942,212.1243212,12.813167,0.119097762,1620000000000 ,1620000000000 ,1620000000000 ,1616812479000 -1616812479032 ,112.5691728,26.87670888,58.12758255,208.9130917,212.1125696,12.817534,0.11912845,1620000000000 ,1620000000000 ,1620000000000 ,1616812479010 -1616812479044 ,112.5691722,26.87670787,58.12755203,208.8997045,212.094743,12.821922,0.119171627,1620000000000 ,1620000000000 ,1620000000000 ,1616812479020 -1616812479052 ,112.5691715,26.87670686,58.12759781,208.8868091,212.0769586,12.825443,0.119206132,1620000000000 ,1620000000000 ,1620000000000 ,1616812479030 -1616812479071 ,112.5691709,26.87670585,58.12771225,208.8759081,212.0686681,12.829191,0.119245235,1620000000000 ,1620000000000 ,1620000000000 ,1616812479040 -1616812479081 ,112.5691703,26.87670484,58.12782669,208.8635864,212.0540064,12.825781,0.119229066,1620000000000 ,1620000000000 ,1620000000000 ,1616812479050 -1616812479085 ,112.5691696,26.87670383,58.12784958,208.8516746,212.011277,12.825787,0.119206582,1620000000000 ,1620000000000 ,1620000000000 ,1616812479060 -1616812479097 ,112.569169,26.87670282,58.12776566,208.8397901,211.9879338,12.824693,0.11918709,1620000000000 ,1620000000000 ,1620000000000 ,1616812479070 -1616812479103 ,112.5691684,26.87670181,58.12756348,208.8300366,211.9952695,12.827991,0.119211051,1620000000000 ,1620000000000 ,1620000000000 ,1616812479080 -1616812479114 ,112.5691677,26.8767008,58.12722778,208.8224687,211.9783735,12.834436,0.119252392,1620000000000 ,1620000000000 ,1620000000000 ,1616812479090 -1616812479125 ,112.5691671,26.87669978,58.12684631,208.8130704,211.9464411,12.837096,0.119275364,1620000000000 ,1620000000000 ,1620000000000 ,1616812479100 -1616812479134 ,112.5691665,26.87669877,58.12655258,208.8018415,211.9248472,12.837888,0.119287624,1620000000000 ,1620000000000 ,1620000000000 ,1616812479120 -1616812479144 ,112.5691658,26.87669776,58.12627792,208.7903668,211.9162718,12.838803,0.119294305,1620000000000 ,1620000000000 ,1620000000000 ,1616812479130 -1616812479154 ,112.5691652,26.87669675,58.12588882,208.7811051,211.9174741,12.842488,0.119313028,1620000000000 ,1620000000000 ,1620000000000 ,1616812479140 -1616812479165 ,112.5691646,26.87669573,58.12529755,208.7711057,211.9207635,12.846533,0.119343925,1620000000000 ,1620000000000 ,1620000000000 ,1616812479150 -1616812479177 ,112.5691633,26.87669371,58.12387085,208.7503692,211.9003461,12.850731,0.23869543,1620000000000 ,1620000000000 ,1620000000000 ,1616812479160 -1616812479183 ,112.5691627,26.87669269,58.12304306,208.7408889,211.8734615,12.842904,0.119309219,1620000000000 ,1620000000000 ,1620000000000 ,1616812479170 -1616812479196 ,112.569162,26.87669168,58.12211227,208.7289224,211.8648256,12.85141,0.119350027,1620000000000 ,1620000000000 ,1620000000000 ,1616812479180 -1616812479204 ,112.569162,26.87669168,58.12211227,208.7289224,-400,12.85141,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812479180 -1616812479215 ,112.5691608,26.87668965,58.12027359,208.7060276,212.019502,12.868152,0.239018906,1620000000000 ,1620000000000 ,1620000000000 ,1616812479200 -1616812479231 ,112.5691601,26.87668864,58.11894226,208.6939792,212.5777567,12.85971,0.119845368,1620000000000 ,1620000000000 ,1620000000000 ,1616812479210 -1616812479236 ,112.5691595,26.87668763,58.11781693,208.6843623,212.5583615,12.851149,0.119757822,1620000000000 ,1620000000000 ,1620000000000 ,1616812479220 -1616812479246 ,112.5691595,26.87668763,58.11781693,208.6843623,-400,12.851149,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812479230 -1616812479254 ,112.5691582,26.87668561,58.11561203,208.6655383,212.530551,12.866152,0.23959882,1620000000000 ,1620000000000 ,1620000000000 ,1616812479240 -1616812479265 ,112.5691576,26.8766846,58.11429214,208.655375,212.527068,12.874053,0.11992411,1620000000000 ,1620000000000 ,1620000000000 ,1616812479250 -1616812479274 ,112.5691569,26.87668359,58.11299133,208.6423703,212.5183963,12.872204,0.119930074,1620000000000 ,1620000000000 ,1620000000000 ,1616812479260 -1616812479286 ,112.5691563,26.87668258,58.11191177,208.6289285,212.5005126,12.865765,0.119880817,1620000000000 ,1620000000000 ,1620000000000 ,1616812479270 -1616812479299 ,112.5691556,26.87668157,58.11104202,208.6199946,212.4871317,12.86383,0.119856528,1620000000000 ,1620000000000 ,1620000000000 ,1616812479280 -1616812479309 ,112.569155,26.87668056,58.11026382,208.6098586,212.4759515,12.866862,0.119872427,1620000000000 ,1620000000000 ,1620000000000 ,1616812479290 -1616812479316 ,112.5691543,26.87667955,58.10945511,208.600952,212.4627702,12.872491,0.119915821,1620000000000 ,1620000000000 ,1620000000000 ,1616812479300 -1616812479327 ,112.5691537,26.87667853,58.10855484,208.5893407,212.4539483,12.877653,0.119961961,1620000000000 ,1620000000000 ,1620000000000 ,1616812479310 -1616812479344 ,112.5691531,26.87667752,58.10759735,208.5801882,212.4454373,12.880794,0.119991341,1620000000000 ,1620000000000 ,1620000000000 ,1616812479320 -1616812479353 ,112.5691524,26.87667651,58.10663223,208.5688774,212.426682,12.88156,0.119999828,1620000000000 ,1620000000000 ,1620000000000 ,1616812479330 -1616812479356 ,112.5691518,26.8766755,58.10575104,208.5572388,212.4163944,12.882274,0.12000661,1620000000000 ,1620000000000 ,1620000000000 ,1616812479340 -1616812479365 ,112.5691511,26.87667448,58.10494995,208.5460919,212.4059518,12.883292,0.120014652,1620000000000 ,1620000000000 ,1620000000000 ,1616812479350 -1616812479377 ,112.5691505,26.87667347,58.10417557,208.5360379,212.3937616,12.884489,0.120024355,1620000000000 ,1620000000000 ,1620000000000 ,1616812479360 -1616812479389 ,112.5691498,26.87667246,58.10338211,208.5252462,212.3805209,12.88617,0.120033542,1620000000000 ,1620000000000 ,1620000000000 ,1616812479370 -1616812479399 ,112.5691492,26.87667144,58.10256958,208.5144818,212.3631965,12.889078,0.120056699,1620000000000 ,1620000000000 ,1620000000000 ,1616812479380 -1616812479410 ,112.5691486,26.87667043,58.10174942,208.5027612,212.3505206,12.89145,0.120072215,1620000000000 ,1620000000000 ,1620000000000 ,1616812479390 -1616812479417 ,112.5691479,26.87666941,58.10090256,208.4921881,212.3448565,12.8934965,0.120092218,1620000000000 ,1620000000000 ,1620000000000 ,1616812479400 -1616812479431 ,112.5691473,26.8766684,58.10002899,208.4819974,212.3381609,12.895293,0.12010648,1620000000000 ,1620000000000 ,1620000000000 ,1616812479410 -1616812479441 ,112.5691466,26.87666738,58.09917068,208.4717248,212.3257709,12.897285,0.120119037,1620000000000 ,1620000000000 ,1620000000000 ,1616812479420 -1616812479449 ,112.569146,26.87666637,58.09833145,208.4611517,212.3013708,12.900054,0.120139089,1620000000000 ,1620000000000 ,1620000000000 ,1616812479430 -1616812479458 ,112.5691453,26.87666535,58.09745789,208.4494038,212.2831085,12.902904,0.120159434,1620000000000 ,1620000000000 ,1620000000000 ,1616812479440 -1616812479468 ,112.5691447,26.87666433,58.09682465,208.4383389,211.9962562,12.905076,0.120013698,1620000000000 ,1620000000000 ,1620000000000 ,1616812479450 -1616812479477 ,112.5691441,26.87666331,58.09647369,208.4254708,211.7088363,12.905516,0.119857376,1620000000000 ,1620000000000 ,1620000000000 ,1616812479460 -1616812479486 ,112.5691434,26.87666229,58.09619522,208.4147884,211.693135,12.906563,0.119862242,1620000000000 ,1620000000000 ,1620000000000 ,1616812479470 -1616812479498 ,112.5691428,26.87666127,58.09595108,208.4047617,211.66747,12.908779,0.119877603,1620000000000 ,1620000000000 ,1620000000000 ,1616812479480 -1616812479509 ,112.5691422,26.87666025,58.09568024,208.3940246,211.651893,12.912674,0.119902487,1620000000000 ,1620000000000 ,1620000000000 ,1616812479490 -1616812479520 ,112.5691416,26.87665923,58.0953598,208.3833149,211.6480027,12.915165,0.119926878,1620000000000 ,1620000000000 ,1620000000000 ,1616812479500 -1616812479527 ,112.5691409,26.87665821,58.09501266,208.3746542,211.6350604,12.918355,0.119950396,1620000000000 ,1620000000000 ,1620000000000 ,1616812479510 -1616812479538 ,112.5691403,26.87665719,58.0947113,208.364245,211.6183392,12.919402,0.119965375,1620000000000 ,1620000000000 ,1620000000000 ,1616812479520 -1616812479549 ,112.5691397,26.87665617,58.09447479,208.3529615,211.6014857,12.920786,0.119975304,1620000000000 ,1620000000000 ,1620000000000 ,1616812479530 -1616812479558 ,112.569139,26.87665515,58.09430695,208.3440549,211.5957183,12.921735,0.119985715,1620000000000 ,1620000000000 ,1620000000000 ,1616812479540 -1616812479573 ,112.5691384,26.87665412,58.09413147,208.3343287,211.5820603,12.923497,0.11999723,1620000000000 ,1620000000000 ,1620000000000 ,1616812479550 -1616812479579 ,112.5691378,26.8766531,58.09394455,208.3241654,211.5761504,12.925713,0.120018203,1620000000000 ,1620000000000 ,1620000000000 ,1616812479560 -1616812479597 ,112.5691372,26.87665208,58.09378052,208.3124721,211.5601549,12.927754,0.120030119,1620000000000 ,1620000000000 ,1620000000000 ,1616812479570 -1616812479602 ,112.5691365,26.87665106,58.09367371,208.3002051,211.5515346,12.9291935,0.120046766,1620000000000 ,1620000000000 ,1620000000000 ,1616812479580 -1616812479609 ,112.5691359,26.87665003,58.0936203,208.2896866,211.5404127,12.931185,0.120066654,1620000000000 ,1620000000000 ,1620000000000 ,1616812479590 -1616812479618 ,112.5691353,26.87664901,58.09360504,208.2788949,211.5273729,12.933229,0.120084871,1620000000000 ,1620000000000 ,1620000000000 ,1616812479600 -1616812479629 ,112.5691346,26.87664798,58.09363937,208.2680213,211.5122389,12.933746,0.120088775,1620000000000 ,1620000000000 ,1620000000000 ,1616812479610 -1616812479639 ,112.569134,26.87664696,58.0937233,208.2580765,211.4968349,12.935113,0.120099507,1620000000000 ,1620000000000 ,1620000000000 ,1616812479620 -1616812479648 ,112.5691334,26.87664594,58.09382629,208.2482684,211.4809022,12.938325,0.120126595,1620000000000 ,1620000000000 ,1620000000000 ,1616812479630 -1616812479660 ,112.5691328,26.87664491,58.09391022,208.2385149,211.469304,12.940419,0.12014373,1620000000000 ,1620000000000 ,1620000000000 ,1616812479640 -1616812479673 ,112.5691321,26.87664389,58.0939827,208.2279417,211.4587568,12.942766,0.120162829,1620000000000 ,1620000000000 ,1620000000000 ,1616812479650 -1616812479679 ,112.5691315,26.87664286,58.09406281,208.2174232,211.4394396,12.943918,0.120174524,1620000000000 ,1620000000000 ,1620000000000 ,1616812479660 -1616812479690 ,112.5691309,26.87664184,58.0941391,208.2070687,211.421458,12.946916,0.1201927,1620000000000 ,1620000000000 ,1620000000000 ,1616812479670 -1616812479698 ,112.5691303,26.87664081,58.0941658,208.1978342,211.4091985,12.949369,0.120214436,1620000000000 ,1620000000000 ,1620000000000 ,1616812479680 -1616812479709 ,112.5691296,26.87663978,58.09413528,208.1875343,211.40183,12.951308,0.120229847,1620000000000 ,1620000000000 ,1620000000000 ,1616812479690 -1616812479721 ,112.569129,26.87663876,58.09405518,208.1773983,211.3900169,12.953715,0.120248093,1620000000000 ,1620000000000 ,1620000000000 ,1616812479700 -1616812479729 ,112.5691284,26.87663773,58.09394455,208.165787,211.3826429,12.956863,0.120272014,1620000000000 ,1620000000000 ,1620000000000 ,1616812479710 -1616812479747 ,112.5691277,26.8766367,58.09379196,208.1550499,211.3750169,12.959169,0.120294628,1620000000000 ,1620000000000 ,1620000000000 ,1616812479720 -1616812479750 ,112.5691271,26.87663568,58.09358597,208.1460068,211.3643901,12.962062,0.120312821,1620000000000 ,1620000000000 ,1620000000000 ,1616812479730 -1616812479760 ,112.5691265,26.87663465,58.0933342,208.1341769,211.3589221,12.96412,0.120332095,1620000000000 ,1620000000000 ,1620000000000 ,1616812479740 -1616812479771 ,112.5691259,26.87663362,58.09304428,208.1221831,211.352191,12.96705,0.12035338,1620000000000 ,1620000000000 ,1620000000000 ,1616812479750 -1616812479781 ,112.5691252,26.87663259,58.09273529,208.110763,211.3434423,12.969702,0.120375865,1620000000000 ,1620000000000 ,1620000000000 ,1616812479760 -1616812479792 ,112.5691246,26.87663156,58.0924263,208.0978403,211.3304897,12.971418,0.120393088,1620000000000 ,1620000000000 ,1620000000000 ,1616812479770 -1616812479800 ,112.569124,26.87663054,58.09212494,208.0857372,211.3182337,12.973791,0.12040995,1620000000000 ,1620000000000 ,1620000000000 ,1616812479780 -1616812479814 ,112.5691234,26.87662951,58.09183884,208.0736614,211.3085286,12.975965,0.12042788,1620000000000 ,1620000000000 ,1620000000000 ,1616812479790 -1616812479821 ,112.5691227,26.87662848,58.09154892,208.0611485,211.3019267,12.978942,0.120452289,1620000000000 ,1620000000000 ,1620000000000 ,1616812479800 -1616812479830 ,112.5691221,26.87662745,58.091259,208.0499743,211.2820613,12.980801,0.120467391,1620000000000 ,1620000000000 ,1620000000000 ,1616812479810 -1616812479853 ,112.5691215,26.87662642,58.09096909,208.0357675,211.2679936,12.983018,0.120484081,1620000000000 ,1620000000000 ,1620000000000 ,1616812479820 -1616812479859 ,112.5691209,26.87662539,58.09067535,208.0227355,211.254261,12.985265,0.120499081,1620000000000 ,1620000000000 ,1620000000000 ,1616812479830 -1616812479862 ,112.5691202,26.87662436,58.09038544,208.0097035,211.2420691,12.987064,0.120516284,1620000000000 ,1620000000000 ,1620000000000 ,1616812479840 -1616812479871 ,112.5691196,26.87662333,58.09011841,207.9966715,211.2349164,12.9903555,0.120540091,1620000000000 ,1620000000000 ,1620000000000 ,1616812479850 -1616812479881 ,112.569119,26.8766223,58.08984756,207.9824647,211.2151151,12.992193,0.120557756,1620000000000 ,1620000000000 ,1620000000000 ,1616812479860 -1616812479890 ,112.5691184,26.87662126,58.08958435,207.968859,211.2018279,12.993066,0.120564856,1620000000000 ,1620000000000 ,1620000000000 ,1616812479870 -1616812479901 ,112.5691177,26.87662023,58.08935547,207.9550347,211.1855831,12.99506,0.120578882,1620000000000 ,1620000000000 ,1620000000000 ,1616812479880 -1616812479911 ,112.5691171,26.8766192,58.08916473,207.9426584,211.1781988,12.997484,0.120597942,1620000000000 ,1620000000000 ,1620000000000 ,1616812479890 -1616812479925 ,112.5691165,26.87661817,58.08899689,207.9283423,211.1637001,13.000169,0.120617232,1620000000000 ,1620000000000 ,1620000000000 ,1616812479900 -1616812479933 ,112.5691159,26.87661714,58.08885193,207.9142994,211.1491066,13.001881,0.120635892,1620000000000 ,1620000000000 ,1620000000000 ,1616812479910 -1616812479942 ,112.5691152,26.8766161,58.08874512,207.8990271,211.1324488,13.003497,0.120651248,1620000000000 ,1620000000000 ,1620000000000 ,1616812479920 -1616812479951 ,112.5691146,26.87661507,58.08866882,207.8836455,211.1250791,13.005897,0.120666292,1620000000000 ,1620000000000 ,1620000000000 ,1616812479930 -1616812479962 ,112.569114,26.87661404,58.08863068,207.8700398,211.1162306,13.008654,0.120692928,1620000000000 ,1620000000000 ,1620000000000 ,1616812479940 -1616812479971 ,112.5691134,26.876613,58.08863831,207.8554232,211.0978311,13.009626,0.120704089,1620000000000 ,1620000000000 ,1620000000000 ,1616812479950 -1616812479980 ,112.5691128,26.87661197,58.0887146,207.8402602,211.0807729,13.012028,0.120720927,1620000000000 ,1620000000000 ,1620000000000 ,1616812479960 -1616812479991 ,112.5691121,26.87661094,58.08883286,207.8235945,211.0626284,13.0143,0.120743206,1620000000000 ,1620000000000 ,1620000000000 ,1616812479970 -1616812480002 ,112.5691115,26.8766099,58.08895493,207.8095517,211.0490795,13.017444,0.120765215,1620000000000 ,1620000000000 ,1620000000000 ,1616812479980 -1616812480014 ,112.5691109,26.87660887,58.08906174,207.7934324,211.0374634,13.019493,0.120785984,1620000000000 ,1620000000000 ,1620000000000 ,1616812479990 -1616812480022 ,112.5691103,26.87660783,58.08918381,207.7766301,211.0260758,13.021587,0.120803498,1620000000000 ,1620000000000 ,1620000000000 ,1616812480000 -1616812480033 ,112.5691096,26.8766068,58.08934784,207.7604563,211.0106404,13.02392,0.120822084,1620000000000 ,1620000000000 ,1620000000000 ,1616812480010 -1616812480042 ,112.569109,26.87660576,58.08953476,207.7445009,210.9976341,13.026596,0.120843002,1620000000000 ,1620000000000 ,1620000000000 ,1616812480020 -1616812480052 ,112.5691084,26.87660472,58.08974457,207.7304034,210.978562,13.0288105,0.120867088,1620000000000 ,1620000000000 ,1620000000000 ,1616812480030 -1616812480064 ,112.5691078,26.87660369,58.08995819,207.7143388,210.9582806,13.031621,0.12088726,1620000000000 ,1620000000000 ,1620000000000 ,1616812480040 -1616812480073 ,112.5691071,26.87660265,58.09019852,207.6975366,210.9410291,13.03376,0.120906015,1620000000000 ,1620000000000 ,1620000000000 ,1616812480050 -1616812480082 ,112.5691059,26.87660057,58.09069443,207.6662543,210.9118896,13.037967,0.241866813,1620000000000 ,1620000000000 ,1620000000000 ,1616812480070 -1616812480093 ,112.5691059,26.87660057,58.09069443,207.6662543,-400,13.037967,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812480080 -1616812480112 ,112.5691053,26.87659954,58.09093857,207.6506541,210.8815988,13.041217,0.120967067,1620000000000 ,1620000000000 ,1620000000000 ,1616812480080 -1616812480117 ,112.569104,26.87659746,58.09149933,207.6186615,210.8521923,13.045341,0.241982011,1620000000000 ,1620000000000 ,1620000000000 ,1616812480100 -1616812480126 ,112.5691034,26.87659642,58.09178162,207.60175,210.8287807,13.048708,0.121027378,1620000000000 ,1620000000000 ,1620000000000 ,1616812480110 -1616812480134 ,112.5691028,26.87659538,58.09206009,207.5871061,210.8072548,13.051487,0.121054161,1620000000000 ,1620000000000 ,1620000000000 ,1616812480120 -1616812480143 ,112.5691022,26.87659434,58.09233093,207.5711234,210.7852301,13.054207,0.121075312,1620000000000 ,1620000000000 ,1620000000000 ,1616812480130 -1616812480154 ,112.5691016,26.8765933,58.09259415,207.5554686,210.7602702,13.057461,0.121101889,1620000000000 ,1620000000000 ,1620000000000 ,1616812480140 -1616812480163 ,112.5691009,26.87659226,58.09280777,207.5412891,210.7386419,13.060663,0.121125724,1620000000000 ,1620000000000 ,1620000000000 ,1616812480150 -1616812480173 ,112.5691003,26.87659122,58.0929451,207.5248147,210.7220638,13.063481,0.121148478,1620000000000 ,1620000000000 ,1620000000000 ,1616812480160 -1616812480184 ,112.5690997,26.87659017,58.09300613,207.5091873,210.707627,13.0664215,0.121171903,1620000000000 ,1620000000000 ,1620000000000 ,1616812480170 -1616812480195 ,112.5690991,26.87658913,58.09301376,207.4923577,210.6911628,13.070073,0.121196794,1620000000000 ,1620000000000 ,1620000000000 ,1616812480180 -1616812480205 ,112.5690991,26.87658913,58.09301376,207.4923577,-400,13.070073,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812480190 -1616812480215 ,112.5690979,26.87658705,58.09290314,207.4547097,210.7083685,13.0710125,0.242442467,1620000000000 ,1620000000000 ,1620000000000 ,1616812480200 -1616812480224 ,112.5690972,26.87658601,58.09295654,207.437361,210.8729562,13.073757,0.121124659,1620000000000 ,1620000000000 ,1620000000000 ,1616812480210 -1616812480234 ,112.5690966,26.87658497,58.09297943,207.419138,210.8587385,13.076691,0.121146671,1620000000000 ,1620000000000 ,1620000000000 ,1616812480220 -1616812480244 ,112.569096,26.87658393,58.0929718,207.4012429,210.8384818,13.079866,0.121172179,1620000000000 ,1620000000000 ,1620000000000 ,1616812480230 -1616812480254 ,112.5690954,26.87658289,58.09291458,207.38149,210.8169253,13.083889,0.121201852,1620000000000 ,1620000000000 ,1620000000000 ,1616812480240 -1616812480264 ,112.5690947,26.87658185,58.09280396,207.3626114,210.8026369,13.087617,0.12123186,1620000000000 ,1620000000000 ,1620000000000 ,1616812480250 -1616812480275 ,112.5690941,26.8765808,58.09264755,207.3428312,210.780222,13.09208,0.12126651,1620000000000 ,1620000000000 ,1620000000000 ,1616812480260 -1616812480285 ,112.5690935,26.87657976,58.09249115,207.3238432,210.7574098,13.094535,0.121291752,1620000000000 ,1620000000000 ,1620000000000 ,1616812480270 -1616812480296 ,112.5690929,26.87657872,58.09234238,207.3032707,210.7312198,13.097323,0.121310682,1620000000000 ,1620000000000 ,1620000000000 ,1616812480280 -1616812480305 ,112.5690923,26.87657768,58.09219742,207.2838183,210.7132019,13.101087,0.121341837,1620000000000 ,1620000000000 ,1620000000000 ,1616812480290 -1616812480315 ,112.5690916,26.87657663,58.09203339,207.264284,210.691627,13.104163,0.121367201,1620000000000 ,1620000000000 ,1620000000000 ,1616812480300 -1616812480325 ,112.569091,26.87657559,58.09186172,207.2452141,210.6685234,13.108793,0.121403433,1620000000000 ,1620000000000 ,1620000000000 ,1616812480310 -1616812480338 ,112.5690904,26.87657454,58.0916748,207.2240678,210.6482555,13.112069,0.121435494,1620000000000 ,1620000000000 ,1620000000000 ,1616812480320 -1616812480359 ,112.5690898,26.8765735,58.09145355,207.2008179,210.6291738,13.114984,0.121455466,1620000000000 ,1620000000000 ,1620000000000 ,1616812480330 -1616812480361 ,112.5690892,26.87657245,58.09120178,207.1790159,210.6043519,13.116926,0.121473368,1620000000000 ,1620000000000 ,1620000000000 ,1616812480340 -1616812480365 ,112.5690886,26.87657141,58.09092712,207.1577057,210.5826376,13.119566,0.121491121,1620000000000 ,1620000000000 ,1620000000000 ,1616812480350 -1616812480375 ,112.5690879,26.87657036,58.09065247,207.1345377,210.5668272,13.12373,0.121525138,1620000000000 ,1620000000000 ,1620000000000 ,1616812480360 -1616812480388 ,112.5690873,26.87656931,58.09036636,207.1128724,210.5504728,13.128505,0.121565783,1620000000000 ,1620000000000 ,1620000000000 ,1616812480370 -1616812480396 ,112.5690867,26.87656827,58.09005737,207.0897044,210.5315129,13.131883,0.121598125,1620000000000 ,1620000000000 ,1620000000000 ,1616812480380 -1616812480409 ,112.5690861,26.87656722,58.08969498,207.0661812,210.5080802,13.135645,0.121626791,1620000000000 ,1620000000000 ,1620000000000 ,1616812480390 -1616812480417 ,112.5690855,26.87656617,58.08931732,207.0428219,210.4848558,13.137935,0.121646685,1620000000000 ,1620000000000 ,1620000000000 ,1616812480400 -1616812480436 ,112.5690848,26.87656512,58.08893204,207.0194354,210.4555326,13.140576,0.121665172,1620000000000 ,1620000000000 ,1620000000000 ,1616812480410 -1616812480440 ,112.5690842,26.87656407,58.08855438,206.9961854,210.4267755,13.143927,0.121690404,1620000000000 ,1620000000000 ,1620000000000 ,1616812480420 -1616812480450 ,112.5690836,26.87656302,58.08814621,206.9720612,210.4029165,13.148249,0.121724054,1620000000000 ,1620000000000 ,1620000000000 ,1616812480430 -1616812480457 ,112.569083,26.87656197,58.08768463,206.9475545,210.3815054,13.151755,0.121750207,1620000000000 ,1620000000000 ,1620000000000 ,1616812480440 -1616812480468 ,112.5690824,26.87656092,58.08709717,206.9221188,210.2570574,13.155535,0.121831692,1620000000000 ,1620000000000 ,1620000000000 ,1616812480450 -1616812480477 ,112.5690818,26.87655986,58.08638763,206.8976668,210.1304119,13.158945,0.12191608,1620000000000 ,1620000000000 ,1620000000000 ,1616812480460 -1616812480487 ,112.5690812,26.87655881,58.08561325,206.8722858,210.1061592,13.162741,0.121941251,1620000000000 ,1620000000000 ,1620000000000 ,1616812480470 -1616812480498 ,112.5690806,26.87655775,58.08476639,206.8473692,210.0819742,13.165435,0.121961611,1620000000000 ,1620000000000 ,1620000000000 ,1616812480480 -1616812480511 ,112.5690799,26.8765567,58.08385849,206.8246657,210.0570688,13.169838,0.121991345,1620000000000 ,1620000000000 ,1620000000000 ,1616812480490 -1616812480519 ,112.5690793,26.87655564,58.08287811,206.7996126,210.0256506,13.173155,0.122010541,1620000000000 ,1620000000000 ,1620000000000 ,1616812480500 -1616812480529 ,112.5690787,26.87655459,58.08177948,206.7735759,209.9914749,13.17885,0.122050259,1620000000000 ,1620000000000 ,1620000000000 ,1616812480510 -1616812480537 ,112.5690781,26.87655353,58.08056641,206.7463644,209.965484,13.182515,0.122074817,1620000000000 ,1620000000000 ,1620000000000 ,1616812480520 -1616812480549 ,112.5690775,26.87655247,58.07927704,206.7203824,209.9482611,13.187666,0.12210937,1620000000000 ,1620000000000 ,1620000000000 ,1616812480530 -1616812480560 ,112.5690769,26.87655141,58.07795715,206.6961762,209.9269038,13.19192,0.122146027,1620000000000 ,1620000000000 ,1620000000000 ,1616812480540 -1616812480567 ,112.5690763,26.87655035,58.07665634,206.6708225,209.8917329,13.194276,0.122165428,1620000000000 ,1620000000000 ,1620000000000 ,1616812480550 -1616812480578 ,112.5690757,26.87654929,58.07541656,206.6467803,209.8523103,13.196197,0.122177321,1620000000000 ,1620000000000 ,1620000000000 ,1616812480560 -1616812480588 ,112.5690751,26.87654823,58.07419586,206.6213173,209.8219783,13.198556,0.122187114,1620000000000 ,1620000000000 ,1620000000000 ,1616812480570 -1616812480601 ,112.5690745,26.87654717,58.07291031,206.5978761,209.7970464,13.20414,0.122222792,1620000000000 ,1620000000000 ,1620000000000 ,1616812480580 -1616812480608 ,112.5690739,26.87654611,58.07157516,206.5720853,209.7779246,13.20946,0.122264892,1620000000000 ,1620000000000 ,1620000000000 ,1616812480590 -1616812480618 ,112.5690732,26.87654505,58.07030106,206.5468682,209.7553754,13.213671,0.122303861,1620000000000 ,1620000000000 ,1620000000000 ,1616812480600 -1616812480633 ,112.5690726,26.87654399,58.06912613,206.5211321,209.714115,13.216178,0.122325179,1620000000000 ,1620000000000 ,1620000000000 ,1616812480610 -1616812480643 ,112.569072,26.87654292,58.06803894,206.4949042,209.6863125,13.21797,0.122339096,1620000000000 ,1620000000000 ,1620000000000 ,1616812480620 -1616812480648 ,112.5690714,26.87654186,58.06700134,206.4707799,209.6630877,13.2200985,0.122349847,1620000000000 ,1620000000000 ,1620000000000 ,1616812480630 -1616812480658 ,112.5690708,26.8765408,58.06603241,206.4483769,209.6384688,13.223313,0.122374928,1620000000000 ,1620000000000 ,1620000000000 ,1616812480640 -1616812480668 ,112.5690702,26.87653973,58.0651474,206.4250177,209.6066963,13.225538,0.122392628,1620000000000 ,1620000000000 ,1620000000000 ,1616812480650 -1616812480687 ,112.5690696,26.87653867,58.06435394,206.4007022,209.579916,13.228806,0.122418479,1620000000000 ,1620000000000 ,1620000000000 ,1616812480660 -1616812480694 ,112.569069,26.8765376,58.06366348,206.3765506,209.5517626,13.231751,0.122442445,1620000000000 ,1620000000000 ,1620000000000 ,1616812480670 -1616812480699 ,112.5690684,26.87653654,58.0630722,206.3520439,209.5255041,13.233937,0.122460982,1620000000000 ,1620000000000 ,1620000000000 ,1616812480680 -1616812480710 ,112.5690678,26.87653547,58.06258774,206.3267176,209.5020824,13.235684,0.122475816,1620000000000 ,1620000000000 ,1620000000000 ,1616812480690 -1616812480723 ,112.5690672,26.8765344,58.0622406,206.3021016,209.479314,13.238069,0.122496894,1620000000000 ,1620000000000 ,1620000000000 ,1616812480700 -1616812480730 ,112.5690666,26.87653334,58.06207275,206.2766933,209.4519462,13.239412,0.122512137,1620000000000 ,1620000000000 ,1620000000000 ,1616812480710 -1616812480739 ,112.569066,26.87653227,58.06205368,206.2532521,209.4255051,13.241555,0.122526365,1620000000000 ,1620000000000 ,1620000000000 ,1616812480720 -1616812480750 ,112.5690654,26.8765312,58.06214905,206.2286087,209.3968083,13.244227,0.122550693,1620000000000 ,1620000000000 ,1620000000000 ,1616812480730 -1616812480761 ,112.5690648,26.87653013,58.06231308,206.2058506,209.3587485,13.245174,0.122557598,1620000000000 ,1620000000000 ,1620000000000 ,1616812480740 -1616812480769 ,112.5690642,26.87652907,58.06258392,206.1804149,209.3331355,13.247675,0.122576682,1620000000000 ,1620000000000 ,1620000000000 ,1616812480750 -1616812480780 ,112.5690636,26.876528,58.06296539,206.1580666,209.3040497,13.250166,0.122594861,1620000000000 ,1620000000000 ,1620000000000 ,1616812480760 -1616812480793 ,112.569063,26.87652693,58.06344604,206.1361553,209.2793646,13.251229,0.12260693,1620000000000 ,1620000000000 ,1620000000000 ,1616812480770 -1616812480805 ,112.5690624,26.87652586,58.06404495,206.1154735,209.2465101,13.252867,0.122622647,1620000000000 ,1620000000000 ,1620000000000 ,1616812480780 -1616812480813 ,112.5690618,26.87652479,58.06472015,206.0941087,209.2128736,13.25371,0.122626617,1620000000000 ,1620000000000 ,1620000000000 ,1616812480790 -1616812480824 ,112.5690612,26.87652372,58.0654335,206.0748202,209.2013009,13.257418,0.122650619,1620000000000 ,1620000000000 ,1620000000000 ,1616812480800 -1616812480831 ,112.5690606,26.87652265,58.06612015,206.0552039,209.1829996,13.260756,0.122682998,1620000000000 ,1620000000000 ,1620000000000 ,1616812480810 -1616812480843 ,112.56906,26.87652157,58.06680298,206.0342762,209.1576205,13.262325,0.122698796,1620000000000 ,1620000000000 ,1620000000000 ,1616812480820 -1616812480851 ,112.5690594,26.8765205,58.06753922,206.0144413,209.1292256,13.262911,0.122701384,1620000000000 ,1620000000000 ,1620000000000 ,1616812480830 -1616812480860 ,112.5690588,26.87651943,58.06827927,205.9966828,209.1035882,13.265453,0.122717488,1620000000000 ,1620000000000 ,1620000000000 ,1616812480840 -1616812480871 ,112.5690582,26.87651836,58.06896591,205.9787331,209.0749681,13.267675,0.122730549,1620000000000 ,1620000000000 ,1620000000000 ,1616812480850 -1616812480882 ,112.5690576,26.87651728,58.06961823,205.9607014,209.0615437,13.269971,0.122751023,1620000000000 ,1620000000000 ,1620000000000 ,1616812480860 -1616812480892 ,112.569057,26.87651621,58.07029343,205.9436259,209.0401783,13.27164,0.122766515,1620000000000 ,1620000000000 ,1620000000000 ,1616812480870 -1616812480902 ,112.5690564,26.87651514,58.07100296,205.9279438,209.0131042,13.273039,0.122775613,1620000000000 ,1620000000000 ,1620000000000 ,1616812480880 -1616812480912 ,112.5690558,26.87651406,58.0717392,205.9140649,208.9849656,13.274328,0.122783163,1620000000000 ,1620000000000 ,1620000000000 ,1616812480890 -1616812480921 ,112.5690552,26.87651299,58.07245636,205.9015793,208.9489034,13.276411,0.122791971,1620000000000 ,1620000000000 ,1620000000000 ,1616812480900 -1616812480931 ,112.5690546,26.87651191,58.07310104,205.8896948,208.9243448,13.279058,0.122811486,1620000000000 ,1620000000000 ,1620000000000 ,1616812480910 -1616812480941 ,112.569054,26.87651084,58.0736351,205.8806789,208.9079207,13.284199,0.122844877,1620000000000 ,1620000000000 ,1620000000000 ,1616812480920 -1616812480950 ,112.5690535,26.87650976,58.07409668,205.8705702,208.890855,13.2848625,0.122859432,1620000000000 ,1620000000000 ,1620000000000 ,1616812480930 -1616812480962 ,112.5690529,26.87650869,58.07455444,205.8610353,208.8696404,13.286009,0.122865839,1620000000000 ,1620000000000 ,1620000000000 ,1616812480940 -1616812480972 ,112.5690523,26.87650761,58.07502747,205.8533308,208.8457473,13.287392,0.122872093,1620000000000 ,1620000000000 ,1620000000000 ,1616812480950 -1616812480986 ,112.5690517,26.87650653,58.0754776,205.8460908,208.8280646,13.289207,0.122883778,1620000000000 ,1620000000000 ,1620000000000 ,1616812480960 -1616812481000 ,112.5690511,26.87650546,58.07585144,205.8405174,208.8168582,13.291551,0.122901275,1620000000000 ,1620000000000 ,1620000000000 ,1616812480970 -1616812481003 ,112.5690505,26.87650438,58.07612228,205.8381405,208.8050833,13.294374,0.122919795,1620000000000 ,1620000000000 ,1620000000000 ,1616812480980 -1616812481012 ,112.5690499,26.8765033,58.07633972,205.83478,208.7910869,13.29542,0.122929203,1620000000000 ,1620000000000 ,1620000000000 ,1616812480990 -1616812481023 ,112.5690493,26.87650223,58.07654953,205.8316655,208.772255,13.296399,0.122935124,1620000000000 ,1620000000000 ,1620000000000 ,1616812481000 -1616812481032 ,112.5690487,26.87650115,58.07672501,205.8327856,208.7635685,13.299166,0.122954865,1620000000000 ,1620000000000 ,1620000000000 ,1616812481010 -1616812481042 ,112.5690481,26.87650007,58.07683945,205.8364739,208.7579756,13.301197,0.122970316,1620000000000 ,1620000000000 ,1620000000000 ,1616812481020 -1616812481052 ,112.5690475,26.87649899,58.07691193,205.8382771,208.7538637,13.301532,0.122976591,1620000000000 ,1620000000000 ,1620000000000 ,1616812481030 -1616812481065 ,112.5690469,26.87649791,58.07697296,205.8421566,208.73906,13.301595,0.122974165,1620000000000 ,1620000000000 ,1620000000000 ,1616812481040 -1616812481072 ,112.5690463,26.87649683,58.07701111,205.846446,208.728068,13.302921,0.12297801,1620000000000 ,1620000000000 ,1620000000000 ,1616812481050 -1616812481084 ,112.5690458,26.87649576,58.07702255,205.8525385,208.7317846,13.304377,0.122992313,1620000000000 ,1620000000000 ,1620000000000 ,1616812481060 -1616812481094 ,112.5690452,26.87649468,58.07698441,205.8600517,208.7318858,13.306755,0.123010834,1620000000000 ,1620000000000 ,1620000000000 ,1616812481070 -1616812481102 ,112.5690446,26.8764936,58.07693481,205.8691769,208.7303544,13.307963,0.123023203,1620000000000 ,1620000000000 ,1620000000000 ,1616812481080 -1616812481113 ,112.569044,26.87649252,58.07688522,205.8780015,208.7272897,13.308595,0.123030318,1620000000000 ,1620000000000 ,1620000000000 ,1616812481090 -1616812481127 ,112.5690434,26.87649144,58.07682419,205.8877823,208.7304355,13.309577,0.123037144,1620000000000 ,1620000000000 ,1620000000000 ,1616812481100 -1616812481133 ,112.5690428,26.87649036,58.07674789,205.9001586,208.7341631,13.309767,0.123039768,1620000000000 ,1620000000000 ,1620000000000 ,1616812481120 -1616812481148 ,112.5690422,26.87648928,58.07666397,205.9127535,208.7393346,13.311653,0.123056589,1620000000000 ,1620000000000 ,1620000000000 ,1616812481130 -1616812481154 ,112.5690416,26.8764882,58.07659912,205.9249659,208.7455715,13.311773,0.123062565,1620000000000 ,1620000000000 ,1620000000000 ,1616812481140 -1616812481163 ,112.569041,26.87648713,58.07655334,205.9394732,208.7519027,13.312558,0.123070712,1620000000000 ,1620000000000 ,1620000000000 ,1616812481150 -1616812481172 ,112.5690398,26.87648497,58.07650375,205.971657,208.7720511,13.313511,0.246164366,1620000000000 ,1620000000000 ,1620000000000 ,1616812481160 -1616812481182 ,112.5690392,26.87648389,58.0765152,205.9880222,208.7889865,13.314135,0.123096806,1620000000000 ,1620000000000 ,1620000000000 ,1616812481170 -1616812481193 ,112.5690387,26.87648281,58.07656097,206.0047698,208.7981002,13.315326,0.123109432,1620000000000 ,1620000000000 ,1620000000000 ,1616812481180 -1616812481203 ,112.5690387,26.87648281,58.07656097,206.0047698,-400,13.315326,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812481180 -1616812481213 ,112.5690375,26.87648065,58.07676697,206.0393032,208.8624988,13.330031,0.246467055,1620000000000 ,1620000000000 ,1620000000000 ,1616812481200 -1616812481226 ,112.5690375,26.87648065,58.07676697,206.0393032,-400,13.330031,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812481210 -1616812481233 ,112.5690363,26.87647849,58.07755661,206.0767053,209.0667014,13.329604,0.247402528,1620000000000 ,1620000000000 ,1620000000000 ,1616812481220 -1616812481244 ,112.5690357,26.87647741,58.078022,206.0959118,209.0845363,13.329742,0.123706952,1620000000000 ,1620000000000 ,1620000000000 ,1616812481230 -1616812481253 ,112.5690351,26.87647633,58.0784874,206.1171674,209.1079027,13.33083,0.123721918,1620000000000 ,1620000000000 ,1620000000000 ,1616812481240 -1616812481263 ,112.5690345,26.87647525,58.07892609,206.1384776,209.1309497,13.3328,0.123742875,1620000000000 ,1620000000000 ,1620000000000 ,1616812481250 -1616812481273 ,112.5690339,26.87647416,58.07935333,206.162192,209.1499038,13.33387,0.123758574,1620000000000 ,1620000000000 ,1620000000000 ,1616812481260 -1616812481283 ,112.5690332,26.87647308,58.07979584,206.1869446,209.1727041,13.333464,0.123766,1620000000000 ,1620000000000 ,1620000000000 ,1616812481270 -1616812481294 ,112.5690326,26.876472,58.08024979,206.2104951,209.1996159,13.33355,0.123773356,1620000000000 ,1620000000000 ,1620000000000 ,1616812481280 -1616812481313 ,112.5690326,26.876472,58.08024979,206.2104951,-400,13.33355,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812481290 -1616812481317 ,112.5690314,26.87646984,58.08107376,206.2632788,209.2378437,13.333183,0.247553024,1620000000000 ,1620000000000 ,1620000000000 ,1616812481300 -1616812481326 ,112.5690308,26.87646876,58.08142471,206.2888783,209.2879464,13.333903,0.123789564,1620000000000 ,1620000000000 ,1620000000000 ,1616812481310 -1616812481335 ,112.5690302,26.87646768,58.08177185,206.3125928,209.3225544,13.334235,0.123803155,1620000000000 ,1620000000000 ,1620000000000 ,1616812481320 -1616812481344 ,112.5690296,26.87646661,58.08211136,206.3384928,209.3472028,13.334631,0.123811873,1620000000000 ,1620000000000 ,1620000000000 ,1616812481330 -1616812481354 ,112.569029,26.87646553,58.08242416,206.364229,209.3768273,13.336182,0.123828233,1620000000000 ,1620000000000 ,1620000000000 ,1616812481340 -1616812481364 ,112.5690284,26.87646445,58.08270264,206.3890362,209.3982359,13.336727,0.123838556,1620000000000 ,1620000000000 ,1620000000000 ,1616812481350 -1616812481375 ,112.5690278,26.87646337,58.08292389,206.4143899,209.4201984,13.338387,0.123853892,1620000000000 ,1620000000000 ,1620000000000 ,1616812481360 -1616812481387 ,112.5690272,26.87646229,58.08308411,206.441738,209.4437397,13.337614,0.123857931,1620000000000 ,1620000000000 ,1620000000000 ,1616812481370 -1616812481396 ,112.5690266,26.87646121,58.08318329,206.4685123,209.4653403,13.338136,0.123860305,1620000000000 ,1620000000000 ,1620000000000 ,1616812481380 -1616812481406 ,112.569026,26.87646013,58.08325195,206.4967073,209.4931812,13.337196,0.12385707,1620000000000 ,1620000000000 ,1620000000000 ,1616812481390 -1616812481415 ,112.5690254,26.87645906,58.0832901,206.5253941,209.5120332,13.338406,0.123868123,1620000000000 ,1620000000000 ,1620000000000 ,1616812481400 -1616812481426 ,112.5690247,26.87645798,58.08327866,206.5543268,209.5379329,13.340097,0.123885851,1620000000000 ,1620000000000 ,1620000000000 ,1616812481410 -1616812481435 ,112.5690241,26.8764569,58.08322525,206.5835873,209.5696257,13.341109,0.123898895,1620000000000 ,1620000000000 ,1620000000000 ,1616812481420 -1616812481445 ,112.5690235,26.87645582,58.0831337,206.6149789,209.6001723,13.341013,0.123905005,1620000000000 ,1620000000000 ,1620000000000 ,1616812481430 -1616812481457 ,112.5690229,26.87645475,58.08301926,206.6446766,209.6254399,13.3401375,0.123906181,1620000000000 ,1620000000000 ,1620000000000 ,1616812481440 -1616812481468 ,112.5690223,26.87645367,58.08275223,206.675631,209.577401,13.341149,0.123693852,1620000000000 ,1620000000000 ,1620000000000 ,1616812481450 -1616812481480 ,112.5690217,26.8764526,58.08232117,206.7052193,209.5231533,13.341427,0.123488856,1620000000000 ,1620000000000 ,1620000000000 ,1616812481460 -1616812481488 ,112.5690211,26.87645152,58.0818367,206.732868,209.5625525,13.342639,0.123498005,1620000000000 ,1620000000000 ,1620000000000 ,1616812481470 -1616812481497 ,112.5690205,26.87645045,58.08132553,206.7601614,209.6095521,13.343534,0.123517676,1620000000000 ,1620000000000 ,1620000000000 ,1616812481480 -1616812481507 ,112.5690199,26.87644937,58.08080292,206.7889848,209.6474425,13.344042,0.123525415,1620000000000 ,1620000000000 ,1620000000000 ,1616812481490 -1616812481515 ,112.5690192,26.8764483,58.08031845,206.8192015,209.6762051,13.343814,0.123533137,1620000000000 ,1620000000000 ,1620000000000 ,1616812481500 -1616812481526 ,112.5690186,26.87644723,58.07990646,206.8498008,209.6950478,13.343158,0.123536657,1620000000000 ,1620000000000 ,1620000000000 ,1616812481510 -1616812481543 ,112.569018,26.87644615,58.07954407,206.8799083,209.7186412,13.342966,0.123536135,1620000000000 ,1620000000000 ,1620000000000 ,1616812481520 -1616812481549 ,112.5690174,26.87644508,58.07918549,206.9114364,209.7535195,13.343406,0.123543391,1620000000000 ,1620000000000 ,1620000000000 ,1616812481530 -1616812481557 ,112.5690168,26.87644401,58.07881927,206.9396588,209.7938018,13.344298,0.12355899,1620000000000 ,1620000000000 ,1620000000000 ,1616812481540 -1616812481567 ,112.5690162,26.87644294,58.07848358,206.9686734,209.8261412,13.344786,0.123571952,1620000000000 ,1620000000000 ,1620000000000 ,1616812481550 -1616812481577 ,112.5690156,26.87644187,58.07820129,206.9973329,209.8533006,13.345095,0.123581127,1620000000000 ,1620000000000 ,1620000000000 ,1616812481560 -1616812481587 ,112.569015,26.87644079,58.07796097,207.0264295,209.8824189,13.344729,0.123584207,1620000000000 ,1620000000000 ,1620000000000 ,1616812481570 -1616812481598 ,112.5690143,26.87643972,58.07774353,207.0570014,209.9165258,13.344246,0.123590086,1620000000000 ,1620000000000 ,1620000000000 ,1616812481580 -1616812481608 ,112.5690137,26.87643865,58.07755661,207.0853604,209.9471519,13.343168,0.123588023,1620000000000 ,1620000000000 ,1620000000000 ,1616812481590 -1616812481620 ,112.5690131,26.87643758,58.0774231,207.1154678,209.9741767,13.342786,0.123591696,1620000000000 ,1620000000000 ,1620000000000 ,1616812481600 -1616812481628 ,112.5690125,26.87643651,58.07733917,207.1444278,210.0059962,13.343401,0.123599427,1620000000000 ,1620000000000 ,1620000000000 ,1616812481610 -1616812481647 ,112.5690119,26.87643544,58.07728195,207.1736064,210.0422823,13.3432455,0.123608964,1620000000000 ,1620000000000 ,1620000000000 ,1616812481620 -1616812481658 ,112.5690112,26.87643437,58.07725906,207.2036592,210.0729923,13.343147,0.123616051,1620000000000 ,1620000000000 ,1620000000000 ,1616812481630 -1616812481661 ,112.5690106,26.8764333,58.07729721,207.233794,210.0988762,13.342852,0.123624394,1620000000000 ,1620000000000 ,1620000000000 ,1616812481640 -1616812481670 ,112.56901,26.87643223,58.07740021,207.2637649,210.124313,13.341941,0.123622176,1620000000000 ,1620000000000 ,1620000000000 ,1616812481650 -1616812481682 ,112.5690094,26.87643116,58.07756042,207.292479,210.1548198,13.341156,0.123620111,1620000000000 ,1620000000000 ,1620000000000 ,1616812481660 -1616812481689 ,112.5690088,26.8764301,58.07776642,207.3240072,210.1888666,13.339725,0.12362259,1620000000000 ,1620000000000 ,1620000000000 ,1616812481670 -1616812481698 ,112.5690081,26.87642903,58.0779953,207.3549889,210.2180694,13.340115,0.123628397,1620000000000 ,1620000000000 ,1620000000000 ,1616812481680 -1616812481709 ,112.5690075,26.87642796,58.07822418,207.3860799,210.2451533,13.340233,0.123634214,1620000000000 ,1620000000000 ,1620000000000 ,1616812481690 -1616812481718 ,112.5690069,26.87642689,58.07843399,207.4167065,210.2736767,13.340622,0.123641876,1620000000000 ,1620000000000 ,1620000000000 ,1616812481700 -1616812481728 ,112.5690063,26.87642582,58.07862854,207.4467593,210.3075653,13.341018,0.123656246,1620000000000 ,1620000000000 ,1620000000000 ,1616812481710 -1616812481739 ,112.5690056,26.87642476,58.07878113,207.4760745,210.3397926,13.340843,0.123659549,1620000000000 ,1620000000000 ,1620000000000 ,1616812481720 -1616812481748 ,112.569005,26.87642369,58.07888794,207.5066737,210.3770531,13.340822,0.123665494,1620000000000 ,1620000000000 ,1620000000000 ,1616812481730 -1616812481761 ,112.5690044,26.87642262,58.07894897,207.5373003,210.4052269,13.34185,0.123674249,1620000000000 ,1620000000000 ,1620000000000 ,1616812481740 -1616812481773 ,112.5690038,26.87642156,58.07897568,207.5682821,210.4367181,13.342951,0.12369167,1620000000000 ,1620000000000 ,1620000000000 ,1616812481750 -1616812481778 ,112.5690031,26.87642049,58.0789566,207.5986627,210.4694028,13.344384,0.123710848,1620000000000 ,1620000000000 ,1620000000000 ,1616812481760 -1616812481789 ,112.5690025,26.87641942,58.07887268,207.6297811,210.4970268,13.346082,0.123727933,1620000000000 ,1620000000000 ,1620000000000 ,1616812481770 -1616812481802 ,112.5690019,26.87641836,58.07875824,207.6594787,210.5335591,13.346143,0.123737147,1620000000000 ,1620000000000 ,1620000000000 ,1616812481780 -1616812481810 ,112.5690013,26.87641729,58.07862473,207.6894223,210.56926,13.348729,0.123760952,1620000000000 ,1620000000000 ,1620000000000 ,1616812481790 -1616812481822 ,112.5690006,26.87641623,58.07847977,207.7207865,210.5975333,13.350778,0.12378886,1620000000000 ,1620000000000 ,1620000000000 ,1616812481800 -1616812481832 ,112.569,26.87641516,58.07831192,207.7487083,210.6251944,13.354518,0.123824036,1620000000000 ,1620000000000 ,1620000000000 ,1616812481810 -1616812481843 ,112.5689994,26.8764141,58.07812119,207.7771492,210.6563802,13.357403,0.123857551,1620000000000 ,1620000000000 ,1620000000000 ,1616812481820 -1616812481851 ,112.5689987,26.87641303,58.07788086,207.8062732,210.6987618,13.361245,0.123897428,1620000000000 ,1620000000000 ,1620000000000 ,1616812481830 -1616812481860 ,112.5689981,26.87641197,58.07760239,207.8365992,210.7381194,13.364905,0.123941608,1620000000000 ,1620000000000 ,1620000000000 ,1616812481840 -1616812481871 ,112.5689975,26.8764109,58.07729721,207.8644937,210.7688566,13.368276,0.12397842,1620000000000 ,1620000000000 ,1620000000000 ,1616812481850 -1616812481881 ,112.5689968,26.87640983,58.07698822,207.8925521,210.801385,13.37133,0.124011946,1620000000000 ,1620000000000 ,1620000000000 ,1616812481860 -1616812481889 ,112.5689962,26.87640877,58.07667542,207.9219219,210.8332634,13.373726,0.124042939,1620000000000 ,1620000000000 ,1620000000000 ,1616812481870 -1616812481900 ,112.5689956,26.8764077,58.07634354,207.9492973,210.8677134,13.376505,0.124076565,1620000000000 ,1620000000000 ,1620000000000 ,1616812481880 -1616812481912 ,112.5689949,26.87640664,58.07598495,207.9758531,210.9035246,13.380011,0.12411305,1620000000000 ,1620000000000 ,1620000000000 ,1616812481890 -1616812481920 ,112.5689943,26.87640557,58.0756073,208.0014253,210.9357684,13.384609,0.124157628,1620000000000 ,1620000000000 ,1620000000000 ,1616812481900 -1616812481931 ,112.5689936,26.87640451,58.07522202,208.0270795,210.962192,13.387476,0.12419443,1620000000000 ,1620000000000 ,1620000000000 ,1616812481910 -1616812481943 ,112.568993,26.87640344,58.07481384,208.0545915,210.9879786,13.390483,0.124226523,1620000000000 ,1620000000000 ,1620000000000 ,1616812481920 -1616812481952 ,112.5689924,26.87640238,58.07437134,208.0824041,211.0176207,13.393595,0.124260801,1620000000000 ,1620000000000 ,1620000000000 ,1616812481930 -1616812481961 ,112.5689917,26.87640132,58.07389069,208.1086866,211.046267,13.39577,0.124286835,1620000000000 ,1620000000000 ,1620000000000 ,1616812481940 -1616812481972 ,112.5689911,26.87640025,58.07342148,208.1333026,211.0708866,13.396629,0.124302464,1620000000000 ,1620000000000 ,1620000000000 ,1616812481950 -1616812481980 ,112.5689904,26.87639919,58.07296753,208.1591207,211.0952957,13.398744,0.124323905,1620000000000 ,1620000000000 ,1620000000000 ,1616812481960 -1616812481991 ,112.5689898,26.87639812,58.0725174,208.1852667,211.1227364,13.401303,0.124353781,1620000000000 ,1620000000000 ,1620000000000 ,1616812481970 -1616812482010 ,112.5689891,26.87639706,58.07202911,208.2102379,211.1546395,13.405165,0.124389921,1620000000000 ,1620000000000 ,1620000000000 ,1616812481980 -1616812482014 ,112.5689885,26.87639599,58.07151031,208.2326136,211.1872331,13.408034,0.124425344,1620000000000 ,1620000000000 ,1620000000000 ,1616812481990 -1616812482022 ,112.5689879,26.87639493,58.07095718,208.2573389,211.2212305,13.408727,0.12443999,1620000000000 ,1620000000000 ,1620000000000 ,1616812482000 -1616812482031 ,112.5689872,26.87639386,58.07038116,208.2798785,211.2536575,13.411622,0.124468106,1620000000000 ,1620000000000 ,1620000000000 ,1616812482010 -1616812482044 ,112.5689866,26.8763928,58.06976318,208.3032377,211.2754835,13.414437,0.124494902,1620000000000 ,1620000000000 ,1620000000000 ,1616812482020 -1616812482052 ,112.5689859,26.87639174,58.0691185,208.3241654,211.3058349,13.417151,0.12452495,1620000000000 ,1620000000000 ,1620000000000 ,1616812482030 -1616812482062 ,112.5689853,26.87639067,58.06842804,208.3441642,211.3365023,13.419621,0.124550828,1620000000000 ,1620000000000 ,1620000000000 ,1616812482040 -1616812482072 ,112.5689846,26.87638961,58.06768799,208.3621413,211.3663267,13.42384,0.124592073,1620000000000 ,1620000000000 ,1620000000000 ,1616812482050 -1616812482085 ,112.568984,26.87638854,58.06691742,208.3817029,211.391749,13.427915,0.124630711,1620000000000 ,1620000000000 ,1620000000000 ,1616812482060 -1616812482093 ,112.5689833,26.87638748,58.06613541,208.398314,211.4150485,13.431065,0.124665446,1620000000000 ,1620000000000 ,1620000000000 ,1616812482070 -1616812482103 ,112.5689827,26.87638642,58.06535721,208.414925,211.4348199,13.432375,0.124687498,1620000000000 ,1620000000000 ,1620000000000 ,1616812482080 -1616812482113 ,112.568982,26.87638535,58.06461334,208.4295962,211.4530285,13.433419,0.1246992,1620000000000 ,1620000000000 ,1620000000000 ,1616812482090 -1616812482125 ,112.5689814,26.87638429,58.06390381,208.4449232,211.472,13.437149,0.124730632,1620000000000 ,1620000000000 ,1620000000000 ,1616812482100 -1616812482134 ,112.5689807,26.87638323,58.06319046,208.4604687,211.4935175,13.440144,0.124762975,1620000000000 ,1620000000000 ,1620000000000 ,1616812482110 -1616812482142 ,112.5689801,26.87638216,58.06246948,208.4743749,211.513747,13.443399,0.124797607,1620000000000 ,1620000000000 ,1620000000000 ,1616812482120 -1616812482153 ,112.5689794,26.8763811,58.06179047,208.4859043,211.5305638,13.445822,0.124824996,1620000000000 ,1620000000000 ,1620000000000 ,1616812482130 -1616812482162 ,112.5689788,26.87638003,58.06119156,208.4969146,211.5500528,13.447426,0.124846902,1620000000000 ,1620000000000 ,1620000000000 ,1616812482140 -1616812482174 ,112.5689781,26.87637897,58.06065369,208.5062583,211.5725015,13.4485655,0.124865371,1620000000000 ,1620000000000 ,1620000000000 ,1616812482150 -1616812482189 ,112.5689775,26.87637791,58.06018066,208.5161484,211.5999731,13.449048,0.12488026,1620000000000 ,1620000000000 ,1620000000000 ,1616812482170 -1616812482194 ,112.5689768,26.87637684,58.05978012,208.5257106,211.6166613,13.4504595,0.124895047,1620000000000 ,1620000000000 ,1620000000000 ,1616812482180 -1616812482207 ,112.5689761,26.87637578,58.05942535,208.5320217,211.6308478,13.453965,0.124927889,1620000000000 ,1620000000000 ,1620000000000 ,1616812482180 -1616812482216 ,112.5689755,26.87637472,58.0590744,208.5403546,211.6458292,13.456995,0.124960246,1620000000000 ,1620000000000 ,1620000000000 ,1616812482190 -1616812482226 ,112.5689748,26.87637365,58.05872726,208.5484142,211.661973,13.460115,0.124991514,1620000000000 ,1620000000000 ,1620000000000 ,1616812482210 -1616812482236 ,112.5689735,26.87637154,58.05763626,208.5581131,212.0730686,13.445147,0.249326177,1620000000000 ,1620000000000 ,1620000000000 ,1616812482220 -1616812482245 ,112.5689728,26.87637049,58.05706787,208.5645334,212.2621558,13.445624,0.124515305,1620000000000 ,1620000000000 ,1620000000000 ,1616812482230 -1616812482255 ,112.5689722,26.87636943,58.05651093,208.570626,212.2683088,13.447876,0.124534844,1620000000000 ,1620000000000 ,1620000000000 ,1616812482240 -1616812482265 ,112.5689715,26.87636838,58.05593872,208.5756257,212.2757331,13.450139,0.124556884,1620000000000 ,1620000000000 ,1620000000000 ,1616812482250 -1616812482274 ,112.5689708,26.87636733,58.0553627,208.5812537,212.2828378,13.453165,0.124584784,1620000000000 ,1620000000000 ,1620000000000 ,1616812482260 -1616812482284 ,112.5689708,26.87636733,58.0553627,208.5812537,-400,13.453165,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812482270 -1616812482294 ,112.5689695,26.87636522,58.05437851,208.5904882,212.2855144,13.456429,0.249236987,1620000000000 ,1620000000000 ,1620000000000 ,1616812482280 -1616812482304 ,112.5689689,26.87636417,58.05395508,208.5952147,212.2825895,13.45722,0.124636174,1620000000000 ,1620000000000 ,1620000000000 ,1616812482290 -1616812482314 ,112.5689682,26.87636311,58.05355453,208.5998865,212.2875882,13.458155,0.124645055,1620000000000 ,1620000000000 ,1620000000000 ,1616812482300 -1616812482323 ,112.5689675,26.87636206,58.05318069,208.6034382,212.2939499,13.458909,0.124656198,1620000000000 ,1620000000000 ,1620000000000 ,1616812482310 -1616812482335 ,112.5689669,26.876361,58.05284882,208.6074544,212.2907037,13.460392,0.12467134,1620000000000 ,1620000000000 ,1620000000000 ,1616812482320 -1616812482345 ,112.5689662,26.87635995,58.05255127,208.6106782,212.2895413,13.460605,0.124677088,1620000000000 ,1620000000000 ,1620000000000 ,1616812482330 -1616812482355 ,112.5689655,26.8763589,58.05228043,208.6146944,212.2935479,13.461072,0.124683681,1620000000000 ,1620000000000 ,1620000000000 ,1616812482340 -1616812482365 ,112.5689649,26.87635784,58.05200958,208.6183827,212.2986275,13.4626,0.124695279,1620000000000 ,1620000000000 ,1620000000000 ,1616812482350 -1616812482376 ,112.5689642,26.87635679,58.05175018,208.6209235,212.3051146,13.464513,0.124716713,1620000000000 ,1620000000000 ,1620000000000 ,1616812482360 -1616812482385 ,112.5689635,26.87635573,58.05151749,208.6236556,212.3025656,13.465625,0.124730297,1620000000000 ,1620000000000 ,1620000000000 ,1616812482370 -1616812482394 ,112.5689629,26.87635468,58.05132294,208.6261144,212.2982455,13.465677,0.124735392,1620000000000 ,1620000000000 ,1620000000000 ,1616812482380 -1616812482405 ,112.5689622,26.87635362,58.05112457,208.6300759,212.301557,13.466773,0.124743631,1620000000000 ,1620000000000 ,1620000000000 ,1616812482390 -1616812482415 ,112.5689615,26.87635257,58.05088806,208.6323709,212.3068351,13.467147,0.124750013,1620000000000 ,1620000000000 ,1620000000000 ,1616812482400 -1616812482434 ,112.5689609,26.87635152,58.05061722,208.634256,212.3021257,13.467747,0.124753195,1620000000000 ,1620000000000 ,1620000000000 ,1616812482410 -1616812482438 ,112.5689602,26.87635046,58.0503273,208.6361138,212.3004368,13.467976,0.124755648,1620000000000 ,1620000000000 ,1620000000000 ,1616812482420 -1616812482446 ,112.5689595,26.87634941,58.04999924,208.6378624,212.3018329,13.469297,0.124763679,1620000000000 ,1620000000000 ,1620000000000 ,1616812482430 -1616812482457 ,112.5689589,26.87634835,58.04962921,208.6387639,212.3076374,13.471144,0.124780973,1620000000000 ,1620000000000 ,1620000000000 ,1616812482440 -1616812482467 ,112.5689582,26.8763473,58.04921341,208.6414414,212.3074402,13.4728985,0.124797335,1620000000000 ,1620000000000 ,1620000000000 ,1616812482450 -1616812482475 ,112.5689575,26.87634624,58.0489006,208.6429167,212.0899519,13.473657,0.124994912,1620000000000 ,1620000000000 ,1620000000000 ,1616812482460 -1616812482487 ,112.5689569,26.87634518,58.04868317,208.6429987,211.8802736,13.474042,0.125189855,1620000000000 ,1620000000000 ,1620000000000 ,1616812482470 -1616812482495 ,112.5689562,26.87634411,58.04839706,208.6423703,211.8820668,13.474481,0.125193341,1620000000000 ,1620000000000 ,1620000000000 ,1616812482480 -1616812482506 ,112.5689555,26.87634305,58.04802704,208.6420151,211.8827731,13.4755125,0.125196142,1620000000000 ,1620000000000 ,1620000000000 ,1616812482490 -1616812482517 ,112.5689549,26.87634199,58.04761887,208.6407037,211.8893355,13.475511,0.125200035,1620000000000 ,1620000000000 ,1620000000000 ,1616812482500 -1616812482527 ,112.5689542,26.87634092,58.04719925,208.6377258,211.8941442,13.476307,0.12520738,1620000000000 ,1620000000000 ,1620000000000 ,1616812482510 -1616812482538 ,112.5689536,26.87633986,58.046772,208.6382722,211.8976089,13.476861,0.125212319,1620000000000 ,1620000000000 ,1620000000000 ,1616812482520 -1616812482548 ,112.5689529,26.8763388,58.04631424,208.6372886,211.9028483,13.478029,0.125222784,1620000000000 ,1620000000000 ,1620000000000 ,1616812482530 -1616812482556 ,112.5689522,26.87633773,58.04582977,208.6369334,211.8983018,13.478201,0.125223605,1620000000000 ,1620000000000 ,1620000000000 ,1616812482540 -1616812482566 ,112.5689516,26.87633667,58.04536057,208.6323436,211.896135,13.478366,0.125225865,1620000000000 ,1620000000000 ,1620000000000 ,1616812482550 -1616812482579 ,112.5689509,26.87633561,58.0449028,208.6284367,211.8974857,13.4784775,0.125227049,1620000000000 ,1620000000000 ,1620000000000 ,1616812482560 -1616812482586 ,112.5689502,26.87633454,58.04443359,208.6255407,211.8987211,13.478706,0.125230292,1620000000000 ,1620000000000 ,1620000000000 ,1616812482570 -1616812482597 ,112.5689496,26.87633348,58.0439415,208.6229452,211.897155,13.478661,0.12522711,1620000000000 ,1620000000000 ,1620000000000 ,1616812482580 -1616812482609 ,112.5689489,26.87633242,58.04345703,208.6185466,211.8940476,13.47818,0.125223561,1620000000000 ,1620000000000 ,1620000000000 ,1616812482590 -1616812482617 ,112.5689483,26.87633135,58.04298782,208.6152134,211.8841961,13.478348,0.125221114,1620000000000 ,1620000000000 ,1620000000000 ,1616812482600 -1616812482628 ,112.5689476,26.87633029,58.04251862,208.6106509,211.8827063,13.479729,0.125230358,1620000000000 ,1620000000000 ,1620000000000 ,1616812482610 -1616812482637 ,112.5689469,26.87632923,58.04204941,208.6059517,211.8792106,13.480063,0.125233962,1620000000000 ,1620000000000 ,1620000000000 ,1616812482620 -1616812482647 ,112.5689463,26.87632816,58.04158783,208.6012252,211.8701723,13.480013,0.125233688,1620000000000 ,1620000000000 ,1620000000000 ,1616812482630 -1616812482657 ,112.5689456,26.8763271,58.04115295,208.5968539,211.8633986,13.479136,0.125227871,1620000000000 ,1620000000000 ,1620000000000 ,1616812482640 -1616812482669 ,112.568945,26.87632604,58.04071426,208.5929744,211.8540477,13.479176,0.125222007,1620000000000 ,1620000000000 ,1620000000000 ,1616812482650 -1616812482677 ,112.5689443,26.87632497,58.04024887,208.5867179,211.8537705,13.479498,0.125224353,1620000000000 ,1620000000000 ,1620000000000 ,1616812482660 -1616812482687 ,112.5689436,26.87632391,58.0397644,208.5815543,211.8532845,13.479929,0.125226744,1620000000000 ,1620000000000 ,1620000000000 ,1616812482670 -1616812482700 ,112.568943,26.87632285,58.03930664,208.5740684,211.8490036,13.47895,0.125220546,1620000000000 ,1620000000000 ,1620000000000 ,1616812482680 -1616812482709 ,112.5689423,26.87632178,58.03887939,208.5662,211.8404409,13.478801,0.125217382,1620000000000 ,1620000000000 ,1620000000000 ,1616812482690 -1616812482718 ,112.5689417,26.87632072,58.03845978,208.5601348,211.8359687,13.479088,0.125214195,1620000000000 ,1620000000000 ,1620000000000 ,1616812482700 -1616812482728 ,112.568941,26.87631965,58.0380249,208.5529494,211.8312939,13.478915,0.125214854,1620000000000 ,1620000000000 ,1620000000000 ,1616812482710 -1616812482737 ,112.5689403,26.87631859,58.03759766,208.5436877,211.8311927,13.479646,0.125219066,1620000000000 ,1620000000000 ,1620000000000 ,1616812482720 -1616812482748 ,112.5689397,26.87631753,58.0371933,208.5373493,211.8274208,13.479847,0.125221102,1620000000000 ,1620000000000 ,1620000000000 ,1616812482730 -1616812482759 ,112.568939,26.87631646,58.03681946,208.5297268,211.8198494,13.479748,0.12522226,1620000000000 ,1620000000000 ,1620000000000 ,1616812482740 -1616812482768 ,112.5689384,26.8763154,58.03644943,208.5202738,211.8090461,13.478973,0.125212505,1620000000000 ,1620000000000 ,1620000000000 ,1616812482750 -1616812482780 ,112.5689377,26.87631434,58.03607941,208.5115585,211.8081376,13.478481,0.125205568,1620000000000 ,1620000000000 ,1620000000000 ,1616812482760 -1616812482790 ,112.568937,26.87631327,58.03572464,208.5005209,211.8023632,13.478447,0.12520407,1620000000000 ,1620000000000 ,1620000000000 ,1616812482770 -1616812482799 ,112.5689364,26.87631221,58.03541183,208.4901117,211.7946237,13.478275,0.125204695,1620000000000 ,1620000000000 ,1620000000000 ,1616812482780 -1616812482810 ,112.5689357,26.87631114,58.03514862,208.4791288,211.7826849,13.478333,0.125202045,1620000000000 ,1620000000000 ,1620000000000 ,1616812482790 -1616812482820 ,112.5689351,26.87631008,58.03490448,208.4668071,211.7661837,13.47726,0.125191954,1620000000000 ,1620000000000 ,1620000000000 ,1616812482800 -1616812482829 ,112.5689344,26.87630901,58.03468704,208.454622,211.7599739,13.475965,0.125179573,1620000000000 ,1620000000000 ,1620000000000 ,1616812482810 -1616812482839 ,112.5689337,26.87630795,58.03448868,208.4421638,211.7506376,13.476313,0.12517947,1620000000000 ,1620000000000 ,1620000000000 ,1616812482820 -1616812482850 ,112.5689331,26.87630688,58.03430557,208.4291864,211.7382353,13.475788,0.125175672,1620000000000 ,1620000000000 ,1620000000000 ,1616812482830 -1616812482859 ,112.5689324,26.87630582,58.03414154,208.4164549,211.7255742,13.475733,0.125170121,1620000000000 ,1620000000000 ,1620000000000 ,1616812482840 -1616812482869 ,112.5689318,26.87630476,58.0340004,208.4032317,211.7134408,13.474857,0.125163689,1620000000000 ,1620000000000 ,1620000000000 ,1616812482850 -1616812482879 ,112.5689311,26.87630369,58.03387833,208.3897899,211.6984958,13.473878,0.125150293,1620000000000 ,1620000000000 ,1620000000000 ,1616812482860 -1616812482888 ,112.5689304,26.87630263,58.03376007,208.3752826,211.6882755,13.473677,0.125146462,1620000000000 ,1620000000000 ,1620000000000 ,1616812482870 -1616812482899 ,112.5689298,26.87630156,58.03364182,208.3631795,211.6749636,13.473745,0.125140888,1620000000000 ,1620000000000 ,1620000000000 ,1616812482880 -1616812482916 ,112.5689291,26.8763005,58.03353119,208.3470056,211.6629973,13.4735155,0.125141112,1620000000000 ,1620000000000 ,1620000000000 ,1616812482890 -1616812482920 ,112.5689285,26.87629943,58.03343201,208.3316513,211.648231,13.474228,0.125143526,1620000000000 ,1620000000000 ,1620000000000 ,1616812482900 -1616812482931 ,112.5689278,26.87629836,58.03332138,208.3170894,211.6369785,13.473492,0.125135121,1620000000000 ,1620000000000 ,1620000000000 ,1616812482910 -1616812482948 ,112.5689272,26.8762973,58.0331955,208.2997134,211.6217927,13.472145,0.12512168,1620000000000 ,1620000000000 ,1620000000000 ,1616812482920 -1616812482954 ,112.5689265,26.87629623,58.03305435,208.280944,211.6105865,13.470982,0.125107504,1620000000000 ,1620000000000 ,1620000000000 ,1616812482930 -1616812482963 ,112.5689259,26.87629517,58.0329361,208.263568,211.5991393,13.47091,0.12509986,1620000000000 ,1620000000000 ,1620000000000 ,1616812482940 -1616812482973 ,112.5689252,26.8762941,58.0328064,208.2464652,211.5832022,13.472004,0.1251035,1620000000000 ,1620000000000 ,1620000000000 ,1616812482950 -1616812482984 ,112.5689245,26.87629304,58.03264618,208.2282423,211.5666454,13.472933,0.125111427,1620000000000 ,1620000000000 ,1620000000000 ,1616812482960 -1616812482993 ,112.5689239,26.87629197,58.03246307,208.2088172,211.5457235,13.471797,0.125098941,1620000000000 ,1620000000000 ,1620000000000 ,1616812482970 -1616812483001 ,112.5689232,26.8762909,58.03230286,208.1878895,211.5289757,13.469981,0.125080503,1620000000000 ,1620000000000 ,1620000000000 ,1616812482980 -1616812483010 ,112.5689226,26.87628984,58.03219604,208.1685191,211.5113591,13.468276,0.125064169,1620000000000 ,1620000000000 ,1620000000000 ,1616812482990 -1616812483021 ,112.5689219,26.87628877,58.03211212,208.149941,211.4897994,13.468042,0.125055059,1620000000000 ,1620000000000 ,1620000000000 ,1616812483000 -1616812483031 ,112.5689213,26.87628771,58.0320282,208.1303793,211.4629444,13.467959,0.125049429,1620000000000 ,1620000000000 ,1620000000000 ,1616812483010 -1616812483044 ,112.5689206,26.87628664,58.03193283,208.10855,211.4413891,13.466806,0.125036366,1620000000000 ,1620000000000 ,1620000000000 ,1616812483020 -1616812483052 ,112.56892,26.87628557,58.03183365,208.0883873,211.4200377,13.466547,0.125026502,1620000000000 ,1620000000000 ,1620000000000 ,1616812483030 -1616812483064 ,112.5689193,26.8762845,58.03174973,208.0682246,211.4017739,13.466269,0.125020411,1620000000000 ,1620000000000 ,1620000000000 ,1616812483040 -1616812483072 ,112.5689187,26.87628344,58.03170776,208.0482804,211.3827556,13.467163,0.125025083,1620000000000 ,1620000000000 ,1620000000000 ,1616812483050 -1616812483084 ,112.568918,26.87628237,58.03168869,208.0271068,211.3592518,13.465706,0.125015142,1620000000000 ,1620000000000 ,1620000000000 ,1616812483060 -1616812483090 ,112.5689174,26.8762813,58.03168488,208.0044306,211.3345163,13.463472,0.124990611,1620000000000 ,1620000000000 ,1620000000000 ,1616812483070 -1616812483103 ,112.5689167,26.87628023,58.03166962,207.9814812,211.311002,13.462024,0.124969516,1620000000000 ,1620000000000 ,1620000000000 ,1616812483080 -1616812483113 ,112.5689154,26.8762781,58.03145599,207.9341616,211.2798234,13.461391,0.249912803,1620000000000 ,1620000000000 ,1620000000000 ,1616812483100 -1616812483124 ,112.5689148,26.87627703,58.03131104,207.9105838,211.2446801,13.460862,0.124936923,1620000000000 ,1620000000000 ,1620000000000 ,1616812483110 -1616812483135 ,112.5689141,26.87627596,58.03119659,207.8881262,211.2159616,13.459805,0.124925831,1620000000000 ,1620000000000 ,1620000000000 ,1616812483120 -1616812483144 ,112.5689135,26.87627489,58.0310936,207.8641112,211.1977295,13.460973,0.124929303,1620000000000 ,1620000000000 ,1620000000000 ,1616812483130 -1616812483154 ,112.5689128,26.87627382,58.03096008,207.8419268,211.1734589,13.461086,0.124927379,1620000000000 ,1620000000000 ,1620000000000 ,1616812483140 -1616812483163 ,112.5689122,26.87627276,58.03082275,207.8177206,211.1512247,13.459749,0.124912517,1620000000000 ,1620000000000 ,1620000000000 ,1616812483150 -1616812483173 ,112.5689115,26.87627169,58.03070068,207.7935963,211.1234867,13.457757,0.124892139,1620000000000 ,1620000000000 ,1620000000000 ,1616812483160 -1616812483184 ,112.5689109,26.87627062,58.03057098,207.7702371,211.0961155,13.456196,0.124870014,1620000000000 ,1620000000000 ,1620000000000 ,1616812483170 -1616812483196 ,112.5689102,26.87626955,58.03040314,207.7461675,211.073834,13.456967,0.124864792,1620000000000 ,1620000000000 ,1620000000000 ,1616812483180 -1616812483205 ,112.5689096,26.87626848,58.0302124,207.7214422,211.0559784,13.455389,0.124852173,1620000000000 ,1620000000000 ,1620000000000 ,1616812483190 -1616812483219 ,112.568909,26.87626741,58.03003693,207.6969628,211.0394666,13.455677,0.124847077,1620000000000 ,1620000000000 ,1620000000000 ,1616812483200 -1616812483225 ,112.5689083,26.87626634,58.03007126,207.6714726,211.1482292,13.436784,0.124247019,1620000000000 ,1620000000000 ,1620000000000 ,1616812483210 -1616812483235 ,112.5689077,26.87626528,58.03011322,207.6480587,211.1442578,13.435816,0.124152894,1620000000000 ,1620000000000 ,1620000000000 ,1616812483220 -1616812483244 ,112.568907,26.87626422,58.0301857,207.6210931,211.1161883,13.434663,0.124140984,1620000000000 ,1620000000000 ,1620000000000 ,1616812483230 -1616812483254 ,112.5689064,26.87626316,58.03025055,207.5971874,211.0862777,13.433873,0.124123557,1620000000000 ,1620000000000 ,1620000000000 ,1616812483240 -1616812483264 ,112.5689058,26.87626209,58.03025436,207.5724075,211.0614758,13.433766,0.124114783,1620000000000 ,1620000000000 ,1620000000000 ,1616812483250 -1616812483277 ,112.5689051,26.87626103,58.03017807,207.5481193,211.0444229,13.431869,0.124090294,1620000000000 ,1620000000000 ,1620000000000 ,1616812483260 -1616812483285 ,112.5689045,26.87625997,58.03007889,207.5217275,211.0129123,13.430146,0.124073844,1620000000000 ,1620000000000 ,1620000000000 ,1616812483270 -1616812483297 ,112.5689038,26.8762589,58.03003693,207.4970295,210.9768118,13.429498,0.124057875,1620000000000 ,1620000000000 ,1620000000000 ,1616812483280 -1616812483306 ,112.5689032,26.87625784,58.03007507,207.4725774,210.9456985,13.429498,0.12404981,1620000000000 ,1620000000000 ,1620000000000 ,1616812483290 -1616812483316 ,112.5689026,26.87625677,58.03013611,207.448945,210.9144755,13.427258,0.124030013,1620000000000 ,1620000000000 ,1620000000000 ,1616812483300 -1616812483325 ,112.5689019,26.87625571,58.03022766,207.426378,210.8914262,13.425575,0.124015726,1620000000000 ,1620000000000 ,1620000000000 ,1616812483310 -1616812483335 ,112.5689013,26.87625465,58.0303688,207.4028549,210.8637467,13.424649,0.123997199,1620000000000 ,1620000000000 ,1620000000000 ,1616812483320 -1616812483349 ,112.5689007,26.87625358,58.03054428,207.3762718,210.8312604,13.423525,0.12398101,1620000000000 ,1620000000000 ,1620000000000 ,1616812483330 -1616812483355 ,112.5689,26.87625252,58.03070068,207.3506995,210.801954,13.422212,0.12396374,1620000000000 ,1620000000000 ,1620000000000 ,1616812483340 -1616812483367 ,112.5688994,26.87625145,58.03078842,207.3277774,210.7827648,13.42222,0.123959213,1620000000000 ,1620000000000 ,1620000000000 ,1616812483350 -1616812483376 ,112.5688987,26.87625039,58.03084946,207.304828,210.7727479,13.420984,0.123943687,1620000000000 ,1620000000000 ,1620000000000 ,1616812483360 -1616812483388 ,112.5688981,26.87624932,58.03097153,207.2804852,210.7505413,13.419734,0.123929225,1620000000000 ,1620000000000 ,1620000000000 ,1616812483370 -1616812483401 ,112.5688975,26.87624826,58.03115845,207.2559512,210.7156592,13.418177,0.123916146,1620000000000 ,1620000000000 ,1620000000000 ,1616812483380 -1616812483407 ,112.5688968,26.87624719,58.03134918,207.2322641,210.6853033,13.417395,0.123899134,1620000000000 ,1620000000000 ,1620000000000 ,1616812483390 -1616812483417 ,112.5688962,26.87624613,58.03147125,207.2110905,210.6649587,13.418518,0.123897399,1620000000000 ,1620000000000 ,1620000000000 ,1616812483400 -1616812483430 ,112.5688956,26.87624506,58.03154755,207.1872395,210.6494313,13.41745,0.123887793,1620000000000 ,1620000000000 ,1620000000000 ,1616812483410 -1616812483436 ,112.568895,26.87624399,58.03160858,207.1624322,210.6220117,13.418298,0.123888376,1620000000000 ,1620000000000 ,1620000000000 ,1616812483420 -1616812483446 ,112.5688943,26.87624293,58.03166199,207.1383899,210.594197,13.416784,0.123873262,1620000000000 ,1620000000000 ,1620000000000 ,1616812483430 -1616812483456 ,112.5688937,26.87624186,58.03168106,207.116506,210.5735507,13.416481,0.123861318,1620000000000 ,1620000000000 ,1620000000000 ,1616812483440 -1616812483469 ,112.5688931,26.87624079,58.03166199,207.0938298,210.5502056,13.41452,0.123839208,1620000000000 ,1620000000000 ,1620000000000 ,1616812483450 -1616812483477 ,112.5688924,26.87623972,58.03141022,207.0700881,210.408803,13.412944,0.124335323,1620000000000 ,1620000000000 ,1620000000000 ,1616812483460 -1616812483487 ,112.5688918,26.87623865,58.03118515,207.0465922,210.3809312,13.412223,0.124319241,1620000000000 ,1620000000000 ,1620000000000 ,1616812483470 -1616812483497 ,112.5688912,26.87623758,58.03096008,207.0254459,210.3575644,13.412584,0.124316446,1620000000000 ,1620000000000 ,1620000000000 ,1616812483480 -1616812483508 ,112.5688906,26.8762365,58.0307312,207.0035347,210.3401466,13.41094,0.124302584,1620000000000 ,1620000000000 ,1620000000000 ,1616812483490 -1616812483519 ,112.5688899,26.87623543,58.03049088,206.9817327,210.3106802,13.410338,0.124288475,1620000000000 ,1620000000000 ,1620000000000 ,1616812483500 -1616812483528 ,112.5688893,26.87623436,58.03025055,206.9581003,210.2761273,13.409163,0.124273652,1620000000000 ,1620000000000 ,1620000000000 ,1616812483510 -1616812483538 ,112.5688887,26.87623328,58.02999115,206.9365988,210.2487848,13.409774,0.124266116,1620000000000 ,1620000000000 ,1620000000000 ,1616812483520 -1616812483548 ,112.568888,26.87623221,58.02968979,206.915917,210.2297053,13.408476,0.124255584,1620000000000 ,1620000000000 ,1620000000000 ,1616812483530 -1616812483561 ,112.5688874,26.87623114,58.02937317,206.8954538,210.2117996,13.40698,0.124238141,1620000000000 ,1620000000000 ,1620000000000 ,1616812483540 -1616812483568 ,112.5688868,26.87623006,58.02910614,206.8741982,210.1749657,13.406135,0.124223015,1620000000000 ,1620000000000 ,1620000000000 ,1616812483550 -1616812483579 ,112.5688862,26.87622899,58.02889252,206.8538989,210.1406794,13.405415,0.124210008,1620000000000 ,1620000000000 ,1620000000000 ,1616812483560 -1616812483588 ,112.5688855,26.87622791,58.02868271,206.8351295,210.1149212,13.405071,0.124200815,1620000000000 ,1620000000000 ,1620000000000 ,1616812483570 -1616812483598 ,112.5688849,26.87622684,58.02840805,206.8160323,210.0989633,13.405207,0.12419585,1620000000000 ,1620000000000 ,1620000000000 ,1616812483580 -1616812483609 ,112.5688843,26.87622577,58.02806854,206.7969624,210.0767798,13.404918,0.124185165,1620000000000 ,1620000000000 ,1620000000000 ,1616812483590 -1616812483618 ,112.5688837,26.87622469,58.02773666,206.7767997,210.0442564,13.404227,0.124177189,1620000000000 ,1620000000000 ,1620000000000 ,1616812483600 -1616812483630 ,112.5688831,26.87622362,58.0274086,206.7559267,210.0097498,13.403926,0.124162508,1620000000000 ,1620000000000 ,1620000000000 ,1616812483610 -1616812483639 ,112.5688824,26.87622254,58.02702332,206.73713,209.9923601,13.40289,0.124150534,1620000000000 ,1620000000000 ,1620000000000 ,1616812483620 -1616812483649 ,112.5688818,26.87622146,58.02655029,206.7166121,209.9723211,13.40389,0.12414656,1620000000000 ,1620000000000 ,1620000000000 ,1616812483630 -1616812483661 ,112.5688812,26.87622039,58.02602005,206.6970504,209.9584437,13.40386,0.124142271,1620000000000 ,1620000000000 ,1620000000000 ,1616812483640 -1616812483669 ,112.5688806,26.87621931,58.02550888,206.6772975,209.9282842,13.403437,0.124132884,1620000000000 ,1620000000000 ,1620000000000 ,1616812483650 -1616812483678 ,112.56888,26.87621824,58.02502823,206.6564518,209.8986928,13.40239,0.124122791,1620000000000 ,1620000000000 ,1620000000000 ,1616812483660 -1616812483689 ,112.5688793,26.87621716,58.02460098,206.6379556,209.8762793,13.400479,0.124107505,1620000000000 ,1620000000000 ,1620000000000 ,1616812483670 -1616812483698 ,112.5688787,26.87621609,58.02422333,206.6173831,209.8575737,13.398138,0.124078213,1620000000000 ,1620000000000 ,1620000000000 ,1616812483680 -1616812483711 ,112.5688781,26.87621501,58.02389526,206.5990782,209.8391363,13.397389,0.124066736,1620000000000 ,1620000000000 ,1620000000000 ,1616812483690 -1616812483721 ,112.5688775,26.87621393,58.02359009,206.5786696,209.8165734,13.397823,0.124068206,1620000000000 ,1620000000000 ,1620000000000 ,1616812483700 -1616812483731 ,112.5688769,26.87621286,58.02330399,206.5611297,209.7970824,13.397957,0.124066057,1620000000000 ,1620000000000 ,1620000000000 ,1616812483710 -1616812483741 ,112.5688763,26.87621178,58.02304459,206.5410489,209.7778076,13.396476,0.124054518,1620000000000 ,1620000000000 ,1620000000000 ,1616812483720 -1616812483750 ,112.5688756,26.8762107,58.02285385,206.5204491,209.7607281,13.3933,0.124031323,1620000000000 ,1620000000000 ,1620000000000 ,1616812483730 -1616812483761 ,112.568875,26.87620963,58.02274323,206.5029638,209.7316492,13.388682,0.123987211,1620000000000 ,1620000000000 ,1620000000000 ,1616812483740 -1616812483769 ,112.5688744,26.87620855,58.02268982,206.4857244,209.7014911,13.389061,0.12397115,1620000000000 ,1620000000000 ,1620000000000 ,1616812483750 -1616812483779 ,112.5688738,26.87620747,58.02261734,206.46772,209.6747001,13.391363,0.12399006,1620000000000 ,1620000000000 ,1620000000000 ,1616812483760 -1616812483793 ,112.5688732,26.87620639,58.0224762,206.4479398,209.6466899,13.392853,0.123994421,1620000000000 ,1620000000000 ,1620000000000 ,1616812483770 -1616812483800 ,112.5688726,26.87620532,58.02231979,206.42999,209.6331887,13.393511,0.124003351,1620000000000 ,1620000000000 ,1620000000000 ,1616812483780 -1616812483811 ,112.568872,26.87620424,58.02218246,206.4130239,209.6159139,13.393071,0.123998937,1620000000000 ,1620000000000 ,1620000000000 ,1616812483790 -1616812483827 ,112.5688713,26.87620316,58.02206802,206.3961943,209.5908756,13.391003,0.123983687,1620000000000 ,1620000000000 ,1620000000000 ,1616812483800 -1616812483833 ,112.5688707,26.87620208,58.02192307,206.3811952,209.5620216,13.3892355,0.123955789,1620000000000 ,1620000000000 ,1620000000000 ,1616812483810 -1616812483840 ,112.5688701,26.876201,58.021698,206.3671796,209.5320552,13.389371,0.123944273,1620000000000 ,1620000000000 ,1620000000000 ,1616812483820 -1616812483850 ,112.5688695,26.87619992,58.02138901,206.350432,209.5158167,13.39026,0.123945606,1620000000000 ,1620000000000 ,1620000000000 ,1616812483830 -1616812483860 ,112.5688689,26.87619885,58.02104187,206.3353783,209.5105676,13.391179,0.123952884,1620000000000 ,1620000000000 ,1620000000000 ,1616812483840 -1616812483872 ,112.5688683,26.87619777,58.02069092,206.3207617,209.4997628,13.391913,0.123956946,1620000000000 ,1620000000000 ,1620000000000 ,1616812483850 -1616812483882 ,112.5688677,26.87619669,58.02033615,206.3054074,209.4849512,13.392938,0.123964089,1620000000000 ,1620000000000 ,1620000000000 ,1616812483860 -1616812483891 ,112.5688671,26.87619561,58.01993561,206.2889876,209.4705532,13.394418,0.123970132,1620000000000 ,1620000000000 ,1620000000000 ,1616812483870 -1616812483903 ,112.5688665,26.87619453,58.01945496,206.2721034,209.4608439,13.394598,0.123972073,1620000000000 ,1620000000000 ,1620000000000 ,1616812483880 -1616812483912 ,112.5688659,26.87619345,58.01891327,206.2557383,209.4510398,13.394266,0.123965087,1620000000000 ,1620000000000 ,1620000000000 ,1616812483890 -1616812483922 ,112.5688652,26.87619237,58.01835632,206.2404113,209.434048,13.393935,0.123958812,1620000000000 ,1620000000000 ,1620000000000 ,1616812483900 -1616812483932 ,112.5688646,26.87619129,58.01781464,206.2268056,209.4127318,13.3942375,0.123954964,1620000000000 ,1620000000000 ,1620000000000 ,1616812483910 -1616812483940 ,112.568864,26.87619021,58.01727676,206.2128174,209.3913312,13.396944,0.123969249,1620000000000 ,1620000000000 ,1620000000000 ,1616812483920 -1616812483952 ,112.5688634,26.87618913,58.01671219,206.198993,209.3748957,13.397283,0.123978038,1620000000000 ,1620000000000 ,1620000000000 ,1616812483930 -1616812483963 ,112.5688628,26.87618805,58.01612473,206.1873817,209.3380219,13.398684,0.123970909,1620000000000 ,1620000000000 ,1620000000000 ,1616812483940 -1616812483982 ,112.5688622,26.87618697,58.01557159,206.175142,209.3414898,13.401816,0.124009635,1620000000000 ,1620000000000 ,1620000000000 ,1616812483950 -1616812483985 ,112.5688616,26.87618589,58.01503372,206.1664267,209.3194817,13.4010725,0.123997395,1620000000000 ,1620000000000 ,1620000000000 ,1616812483960 -1616812483992 ,112.568861,26.87618481,58.01438141,206.1612904,209.2797816,13.404317,0.124008014,1620000000000 ,1620000000000 ,1620000000000 ,1616812483970 -1616812484002 ,112.5688604,26.87618372,58.01361084,206.1527117,209.2660414,13.405873,0.124018567,1620000000000 ,1620000000000 ,1620000000000 ,1616812483980 -1616812484011 ,112.5688598,26.87618264,58.01281738,206.1403627,209.2511939,13.411631,0.124055345,1620000000000 ,1620000000000 ,1620000000000 ,1616812483990 -1616812484024 ,112.5688592,26.87618156,58.01197433,206.1323031,209.2442456,13.41459,0.124089425,1620000000000 ,1620000000000 ,1620000000000 ,1616812484000 -1616812484035 ,112.5688586,26.87618048,58.01107025,206.1258554,209.2470683,13.416541,0.124103172,1620000000000 ,1620000000000 ,1620000000000 ,1616812484010 -1616812484045 ,112.568858,26.87617939,58.01019287,206.1198995,209.2391655,13.41559,0.124105541,1620000000000 ,1620000000000 ,1620000000000 ,1616812484020 -1616812484062 ,112.5688574,26.87617831,58.00946426,206.112195,209.2144175,13.415083,0.124092993,1620000000000 ,1620000000000 ,1620000000000 ,1616812484030 -1616812484065 ,112.5688568,26.87617723,58.00883484,206.1094902,209.1929171,13.419684,0.124121974,1620000000000 ,1620000000000 ,1620000000000 ,1616812484040 -1616812484072 ,112.5688561,26.87617614,58.00811386,206.1046818,209.1849185,13.425807,0.124172632,1620000000000 ,1620000000000 ,1620000000000 ,1616812484050 -1616812484082 ,112.5688555,26.87617506,58.0072937,206.1003651,209.2027082,13.427545,0.12419746,1620000000000 ,1620000000000 ,1620000000000 ,1616812484060 -1616812484095 ,112.5688549,26.87617397,58.00652695,206.0942999,209.1976409,13.4271555,0.124201501,1620000000000 ,1620000000000 ,1620000000000 ,1616812484070 -1616812484102 ,112.5688543,26.87617289,58.00595093,206.0895461,209.1663616,13.426042,0.124190676,1620000000000 ,1620000000000 ,1620000000000 ,1616812484080 -1616812484114 ,112.5688537,26.8761718,58.00548935,206.0862403,209.1497704,13.427656,0.124199834,1620000000000 ,1620000000000 ,1620000000000 ,1616812484100 -1616812484122 ,112.5688531,26.87617072,58.00501633,206.0825247,209.1456301,13.430326,0.124222316,1620000000000 ,1620000000000 ,1620000000000 ,1616812484100 -1616812484136 ,112.5688519,26.87616855,58.00401306,206.0761589,209.1506954,13.434439,0.248515475,1620000000000 ,1620000000000 ,1620000000000 ,1616812484120 -1616812484144 ,112.5688513,26.87616746,58.00359344,206.0723613,209.1319352,13.436067,0.124278005,1620000000000 ,1620000000000 ,1620000000000 ,1616812484130 -1616812484154 ,112.5688507,26.87616638,58.00324249,206.0690829,209.1233132,13.437657,0.124291739,1620000000000 ,1620000000000 ,1620000000000 ,1616812484140 -1616812484168 ,112.5688501,26.87616529,58.00289154,206.0674163,209.1228453,13.440319,0.124315148,1620000000000 ,1620000000000 ,1620000000000 ,1616812484150 -1616812484175 ,112.5688495,26.87616421,58.00255203,206.0651487,209.1265574,13.441512,0.124332809,1620000000000 ,1620000000000 ,1620000000000 ,1616812484160 -1616812484187 ,112.5688489,26.87616312,58.00225067,206.0617882,209.1170289,13.442027,0.124340741,1620000000000 ,1620000000000 ,1620000000000 ,1616812484170 -1616812484195 ,112.5688483,26.87616203,58.00198746,206.0608047,209.112144,13.443243,0.124346276,1620000000000 ,1620000000000 ,1620000000000 ,1616812484180 -1616812484204 ,112.5688477,26.87616095,58.00173187,206.0592474,209.1163801,13.445667,0.124372106,1620000000000 ,1620000000000 ,1620000000000 ,1616812484190 -1616812484216 ,112.5688471,26.87615986,58.00147629,206.0580453,209.117907,13.447292,0.124384957,1620000000000 ,1620000000000 ,1620000000000 ,1616812484200 -1616812484227 ,112.5688465,26.87615877,58.00230789,206.0496305,209.1581731,13.440347,0.124314246,1620000000000 ,1620000000000 ,1620000000000 ,1616812484210 -1616812484237 ,112.5688459,26.87615769,58.00327301,206.0473902,209.171089,13.44079,0.124284543,1620000000000 ,1620000000000 ,1620000000000 ,1616812484220 -1616812484246 ,112.5688452,26.8761566,58.00424194,206.0454504,209.1733992,13.441881,0.124297409,1620000000000 ,1620000000000 ,1620000000000 ,1616812484230 -1616812484255 ,112.5688446,26.87615552,58.0051918,206.0428003,209.1733907,13.443049,0.124305762,1620000000000 ,1620000000000 ,1620000000000 ,1616812484240 -1616812484264 ,112.568844,26.87615443,58.00613022,206.0405053,209.1729332,13.445349,0.124328691,1620000000000 ,1620000000000 ,1620000000000 ,1616812484250 -1616812484274 ,112.5688434,26.87615335,58.00704575,206.0368444,209.1705893,13.448102,0.124346223,1620000000000 ,1620000000000 ,1620000000000 ,1616812484260 -1616812484287 ,112.5688428,26.87615226,58.00793457,206.0344401,209.164075,13.450222,0.124368616,1620000000000 ,1620000000000 ,1620000000000 ,1616812484270 -1616812484295 ,112.5688422,26.87615118,58.00878906,206.0301235,209.1573687,13.451327,0.124375789,1620000000000 ,1620000000000 ,1620000000000 ,1616812484280 -1616812484306 ,112.5688416,26.87615009,58.00960541,206.028293,209.1517986,13.453676,0.124394881,1620000000000 ,1620000000000 ,1620000000000 ,1616812484290 -1616812484316 ,112.568841,26.876149,58.01037216,206.0269816,209.1487471,13.455752,0.124405915,1620000000000 ,1620000000000 ,1620000000000 ,1616812484300 -1616812484328 ,112.5688404,26.87614792,58.01111603,206.0244134,209.1464305,13.457897,0.124426282,1620000000000 ,1620000000000 ,1620000000000 ,1616812484310 -1616812484337 ,112.5688398,26.87614683,58.01181412,206.0231293,209.1351135,13.459859,0.124440926,1620000000000 ,1620000000000 ,1620000000000 ,1616812484320 -1616812484349 ,112.5688392,26.87614574,58.01247787,206.0224463,209.1299408,13.462646,0.124461012,1620000000000 ,1620000000000 ,1620000000000 ,1616812484330 -1616812484359 ,112.5688386,26.87614465,58.01309204,206.0212169,209.1203682,13.465359,0.124481306,1620000000000 ,1620000000000 ,1620000000000 ,1616812484340 -1616812484366 ,112.568838,26.87614357,58.01367188,206.0185121,209.1232132,13.4668455,0.124496353,1620000000000 ,1620000000000 ,1620000000000 ,1616812484350 -1616812484375 ,112.5688374,26.87614248,58.01425171,206.016545,209.1259782,13.468814,0.124513397,1620000000000 ,1620000000000 ,1620000000000 ,1616812484360 -1616812484387 ,112.5688368,26.87614139,58.01485062,206.013649,209.1232819,13.4709635,0.124531366,1620000000000 ,1620000000000 ,1620000000000 ,1616812484370 -1616812484398 ,112.5688362,26.8761403,58.01548004,206.011518,209.1246799,13.472932,0.124549025,1620000000000 ,1620000000000 ,1620000000000 ,1616812484380 -1616812484407 ,112.5688356,26.87613921,58.01612854,206.007939,209.1242798,13.473974,0.124564496,1620000000000 ,1620000000000 ,1620000000000 ,1616812484390 -1616812484416 ,112.5688349,26.87613813,58.01680756,206.0046332,209.1267006,13.476004,0.124579698,1620000000000 ,1620000000000 ,1620000000000 ,1616812484400 -1616812484427 ,112.5688343,26.87613704,58.01753998,206.0012727,209.127327,13.47701,0.124592707,1620000000000 ,1620000000000 ,1620000000000 ,1616812484410 -1616812484436 ,112.5688337,26.87613595,58.01836014,205.9985407,209.1239838,13.477672,0.124603124,1620000000000 ,1620000000000 ,1620000000000 ,1616812484420 -1616812484447 ,112.5688331,26.87613486,58.01926804,205.9976118,209.1150285,13.47844,0.124611803,1620000000000 ,1620000000000 ,1620000000000 ,1616812484430 -1616812484458 ,112.5688325,26.87613377,58.02022552,205.9953441,209.1093154,13.480655,0.124630072,1620000000000 ,1620000000000 ,1620000000000 ,1616812484440 -1616812484467 ,112.5688319,26.87613268,58.02121735,205.9926667,209.1080147,13.482719,0.124649698,1620000000000 ,1620000000000 ,1620000000000 ,1616812484450 -1616812484477 ,112.5688313,26.87613159,58.0213089,205.9899893,209.0785618,13.483287,0.124719622,1620000000000 ,1620000000000 ,1620000000000 ,1616812484460 -1616812484487 ,112.5688307,26.8761305,58.02146912,205.9871752,209.0761107,13.483437,0.124726655,1620000000000 ,1620000000000 ,1620000000000 ,1616812484470 -1616812484498 ,112.5688301,26.87612941,58.021698,205.9873118,209.0720959,13.485023,0.124737538,1620000000000 ,1620000000000 ,1620000000000 ,1616812484480 -1616812484508 ,112.5688295,26.87612832,58.02194977,205.9834869,209.0668254,13.486217,0.124749836,1620000000000 ,1620000000000 ,1620000000000 ,1616812484490 -1616812484517 ,112.5688289,26.87612723,58.02219391,205.9841153,209.0626893,13.4881935,0.124766344,1620000000000 ,1620000000000 ,1620000000000 ,1616812484500 -1616812484528 ,112.5688283,26.87612614,58.02243042,205.9840333,209.0611439,13.490136,0.124786911,1620000000000 ,1620000000000 ,1620000000000 ,1616812484510 -1616812484538 ,112.5688277,26.87612505,58.02267456,205.9813013,209.0596875,13.491505,0.12479859,1620000000000 ,1620000000000 ,1620000000000 ,1616812484520 -1616812484548 ,112.5688271,26.87612396,58.02292633,205.9794981,209.0580386,13.492599,0.124812258,1620000000000 ,1620000000000 ,1620000000000 ,1616812484530 -1616812484560 ,112.5688265,26.87612287,58.02316284,205.9769846,209.0522944,13.493886,0.124823545,1620000000000 ,1620000000000 ,1620000000000 ,1616812484540 -1616812484576 ,112.5688259,26.87612178,58.02338409,205.9749902,209.0507684,13.495388,0.124839138,1620000000000 ,1620000000000 ,1620000000000 ,1616812484550 -1616812484580 ,112.5688252,26.87612069,58.02359009,205.9729684,209.0500962,13.496263,0.124844465,1620000000000 ,1620000000000 ,1620000000000 ,1616812484560 -1616812484589 ,112.5688246,26.87611959,58.02378082,205.9715751,209.0488482,13.496612,0.124851108,1620000000000 ,1620000000000 ,1620000000000 ,1616812484570 -1616812484598 ,112.568824,26.8761185,58.02392578,205.9709194,209.0451354,13.497733,0.124858674,1620000000000 ,1620000000000 ,1620000000000 ,1616812484580 -1616812484607 ,112.5688234,26.87611741,58.02404022,205.9696626,209.0445401,13.500115,0.12487701,1620000000000 ,1620000000000 ,1620000000000 ,1616812484590 -1616812484618 ,112.5688228,26.87611632,58.02411652,205.9694987,209.0410341,13.501837,0.124891568,1620000000000 ,1620000000000 ,1620000000000 ,1616812484600 -1616812484628 ,112.5688222,26.87611523,58.02414703,205.9684878,209.0374888,13.503322,0.124903251,1620000000000 ,1620000000000 ,1620000000000 ,1616812484610 -1616812484638 ,112.5688216,26.87611413,58.02410507,205.9676409,209.0377021,13.503944,0.124911182,1620000000000 ,1620000000000 ,1620000000000 ,1616812484620 -1616812484649 ,112.568821,26.87611304,58.02400208,205.9669305,209.0398213,13.504916,0.124919097,1620000000000 ,1620000000000 ,1620000000000 ,1616812484630 -1616812484662 ,112.5688204,26.87611195,58.02386093,205.9655645,209.0345968,13.505375,0.124917958,1620000000000 ,1620000000000 ,1620000000000 ,1616812484640 -1616812484670 ,112.5688198,26.87611086,58.02368927,205.9650181,209.0319645,13.506704,0.124927701,1620000000000 ,1620000000000 ,1620000000000 ,1616812484650 -1616812484679 ,112.5688192,26.87610977,58.02347183,205.9647995,209.027593,13.507792,0.124937036,1620000000000 ,1620000000000 ,1620000000000 ,1616812484660 -1616812484693 ,112.5688186,26.87610867,58.02318954,205.9650727,209.0271169,13.510245,0.12495155,1620000000000 ,1620000000000 ,1620000000000 ,1616812484670 -1616812484702 ,112.568818,26.87610758,58.02287674,205.9641711,209.0256353,13.511056,0.124961476,1620000000000 ,1620000000000 ,1620000000000 ,1616812484680 -1616812484710 ,112.5688174,26.87610649,58.02253723,205.9632969,209.0179801,13.510958,0.124959079,1620000000000 ,1620000000000 ,1620000000000 ,1616812484690 -1616812484721 ,112.5688168,26.87610539,58.02221298,205.9623133,209.012259,13.51067,0.124955246,1620000000000 ,1620000000000 ,1620000000000 ,1616812484700 -1616812484732 ,112.5688162,26.8761043,58.02187729,205.9618762,209.0137572,13.512812,0.124965986,1620000000000 ,1620000000000 ,1620000000000 ,1616812484710 -1616812484740 ,112.5688155,26.87610321,58.02148819,205.9631603,209.0132291,13.514363,0.124983237,1620000000000 ,1620000000000 ,1620000000000 ,1616812484720 -1616812484752 ,112.5688149,26.87610212,58.02105331,205.9619308,209.0121825,13.514294,0.124979287,1620000000000 ,1620000000000 ,1620000000000 ,1616812484730 -1616812484761 ,112.5688143,26.87610102,58.02062988,205.9617942,209.0115964,13.51457,0.12498171,1620000000000 ,1620000000000 ,1620000000000 ,1616812484740 -1616812484769 ,112.5688137,26.87609993,58.02023315,205.9614391,209.0064766,13.514738,0.124981659,1620000000000 ,1620000000000 ,1620000000000 ,1616812484750 -1616812484779 ,112.5688131,26.87609884,58.01985168,205.9630237,209.0132624,13.51777,0.125004788,1620000000000 ,1620000000000 ,1620000000000 ,1616812484760 -1616812484789 ,112.5688125,26.87609774,58.01945877,205.9649088,209.0174839,13.518942,0.125016692,1620000000000 ,1620000000000 ,1620000000000 ,1616812484770 -1616812484800 ,112.5688119,26.87609665,58.01910019,205.9650727,209.0142658,13.519418,0.125024289,1620000000000 ,1620000000000 ,1620000000000 ,1616812484780 -1616812484811 ,112.5688113,26.87609556,58.0188179,205.9631603,209.008494,13.518101,0.125018515,1620000000000 ,1620000000000 ,1620000000000 ,1616812484790 -1616812484821 ,112.5688107,26.87609446,58.01858139,205.9637067,209.006561,13.518344,0.125017825,1620000000000 ,1620000000000 ,1620000000000 ,1616812484800 -1616812484840 ,112.5688101,26.87609337,58.01836777,205.964581,209.0183818,13.518758,0.1250195,1620000000000 ,1620000000000 ,1620000000000 ,1616812484810 -1616812484849 ,112.5688095,26.87609228,58.01821136,205.9633515,209.016259,13.5189705,0.125024994,1620000000000 ,1620000000000 ,1620000000000 ,1616812484820 -1616812484854 ,112.5688089,26.87609118,58.01814651,205.9622587,209.0135742,13.518505,0.125027722,1620000000000 ,1620000000000 ,1620000000000 ,1616812484830 -1616812484861 ,112.5688083,26.87609009,58.01816559,205.9636521,209.0104406,13.519893,0.12503702,1620000000000 ,1620000000000 ,1620000000000 ,1616812484840 -1616812484871 ,112.5688077,26.876089,58.0182457,205.9621494,209.0085045,13.518716,0.125034298,1620000000000 ,1620000000000 ,1620000000000 ,1616812484850 -1616812484882 ,112.5688071,26.8760879,58.01840591,205.9611385,209.0108082,13.518481,0.125034747,1620000000000 ,1620000000000 ,1620000000000 ,1616812484860 -1616812484890 ,112.5688065,26.87608681,58.01865768,205.9613571,209.0105144,13.5172825,0.12503016,1620000000000 ,1620000000000 ,1620000000000 ,1616812484870 -1616812484901 ,112.5688058,26.87608572,58.01897812,205.9599911,209.0100171,13.517611,0.12502955,1620000000000 ,1620000000000 ,1620000000000 ,1616812484880 -1616812484913 ,112.5688052,26.87608462,58.01933289,205.9598818,209.0111167,13.517288,0.125034309,1620000000000 ,1620000000000 ,1620000000000 ,1616812484890 -1616812484926 ,112.5688046,26.87608353,58.01971436,205.9556197,209.0152634,13.51657,0.125027692,1620000000000 ,1620000000000 ,1620000000000 ,1616812484900 -1616812484932 ,112.568804,26.87608244,58.0201149,205.9537619,209.0205455,13.516451,0.125031082,1620000000000 ,1620000000000 ,1620000000000 ,1616812484910 -1616812484941 ,112.5688034,26.87608134,58.02053833,205.9508386,209.0243208,13.516385,0.125032478,1620000000000 ,1620000000000 ,1620000000000 ,1616812484920 -1616812484951 ,112.5688028,26.87608025,58.02100754,205.9493906,209.0212228,13.515912,0.125032261,1620000000000 ,1620000000000 ,1620000000000 ,1616812484930 -1616812484961 ,112.5688022,26.87607916,58.02150726,205.9450739,209.0128544,13.514714,0.125022517,1620000000000 ,1620000000000 ,1620000000000 ,1616812484940 -1616812484972 ,112.5688016,26.87607806,58.02198792,205.9400196,209.0116383,13.514605,0.125018382,1620000000000 ,1620000000000 ,1620000000000 ,1616812484950 -1616812484983 ,112.568801,26.87607697,58.02240372,205.9359761,209.0144297,13.514905,0.125021646,1620000000000 ,1620000000000 ,1620000000000 ,1616812484960 -1616812484993 ,112.5688004,26.87607588,58.02272415,205.9322059,209.010994,13.514996,0.125017234,1620000000000 ,1620000000000 ,1620000000000 ,1616812484970 -1616812485004 ,112.5687998,26.87607478,58.02299118,205.9248019,209.0080795,13.515437,0.1250199,1620000000000 ,1620000000000 ,1620000000000 ,1616812484980 -1616812485014 ,112.5687992,26.87607369,58.02320099,205.9189826,208.9996396,13.515691,0.125019735,1620000000000 ,1620000000000 ,1620000000000 ,1616812484990 -1616812485021 ,112.5687986,26.8760726,58.02336884,205.913136,208.9967501,13.515256,0.125014595,1620000000000 ,1620000000000 ,1620000000000 ,1616812485000 -1616812485031 ,112.568798,26.8760715,58.02347946,205.9078084,208.9933779,13.515355,0.125012641,1620000000000 ,1620000000000 ,1620000000000 ,1616812485010 -1616812485041 ,112.5687974,26.87607041,58.02353287,205.9009236,208.9861907,13.515676,0.125011346,1620000000000 ,1620000000000 ,1620000000000 ,1616812485020 -1616812485052 ,112.5687968,26.87606932,58.02353287,205.8940661,208.9811349,13.516186,0.125009772,1620000000000 ,1620000000000 ,1620000000000 ,1616812485030 -1616812485063 ,112.5687961,26.87606822,58.02347565,205.8866622,208.9710359,13.5166645,0.125010465,1620000000000 ,1620000000000 ,1620000000000 ,1616812485040 -1616812485072 ,112.5687955,26.87606713,58.02335739,205.8793675,208.9628099,13.51696,0.125008395,1620000000000 ,1620000000000 ,1620000000000 ,1616812485050 -1616812485084 ,112.5687949,26.87606603,58.02318573,205.8714445,208.9621283,13.516669,0.125007951,1620000000000 ,1620000000000 ,1620000000000 ,1616812485060 -1616812485094 ,112.5687943,26.87606494,58.02297974,205.8636034,208.9572022,13.516652,0.125003077,1620000000000 ,1620000000000 ,1620000000000 ,1616812485070 -1616812485103 ,112.5687937,26.87606385,58.02276611,205.8546696,208.9457073,13.516314,0.124995449,1620000000000 ,1620000000000 ,1620000000000 ,1616812485080 -1616812485113 ,112.5687931,26.87606275,58.02254105,205.8480306,208.9396996,13.515718,0.12498317,1620000000000 ,1620000000000 ,1620000000000 ,1616812485090 -1616812485122 ,112.5687925,26.87606166,58.02228165,205.8413643,208.93157,13.517561,0.12499618,1620000000000 ,1620000000000 ,1620000000000 ,1616812485100 -1616812485132 ,112.5687919,26.87606056,58.02196884,205.8350532,208.9249526,13.518298,0.12499911,1620000000000 ,1620000000000 ,1620000000000 ,1616812485120 -1616812485143 ,112.5687913,26.87605947,58.02163696,205.8263106,208.9187655,13.519755,0.125008981,1620000000000 ,1620000000000 ,1620000000000 ,1616812485130 -1616812485153 ,112.5687907,26.87605838,58.02131271,205.8191252,208.904898,13.51771,0.124992662,1620000000000 ,1620000000000 ,1620000000000 ,1616812485140 -1616812485165 ,112.5687901,26.87605728,58.02101517,205.8112022,208.8917791,13.517164,0.124980442,1620000000000 ,1620000000000 ,1620000000000 ,1616812485150 -1616812485175 ,112.5687895,26.87605619,58.02074814,205.8025415,208.8819058,13.51718,0.124979019,1620000000000 ,1620000000000 ,1620000000000 ,1616812485160 -1616812485184 ,112.5687889,26.87605509,58.02051544,205.7951649,208.8700655,13.517087,0.124977703,1620000000000 ,1620000000000 ,1620000000000 ,1616812485170 -1616812485193 ,112.5687883,26.876054,58.02034378,205.7879249,208.8590895,13.516909,0.124971453,1620000000000 ,1620000000000 ,1620000000000 ,1616812485180 -1616812485202 ,112.5687877,26.8760529,58.02022552,205.7815865,208.8424841,13.516659,0.124969852,1620000000000 ,1620000000000 ,1620000000000 ,1616812485190 -1616812485214 ,112.5687865,26.87605071,58.02019501,205.7672431,208.8285065,13.516177,0.24993484,1620000000000 ,1620000000000 ,1620000000000 ,1616812485200 -1616812485223 ,112.5687865,26.87605071,58.02019501,205.7672431,-400,13.516177,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812485210 -1616812485233 ,112.5687853,26.87604851,58.02179718,205.7551947,208.8447195,13.53266,0.251538298,1620000000000 ,1620000000000 ,1620000000000 ,1616812485220 -1616812485244 ,112.5687847,26.87604741,58.02274323,205.7460422,208.8414665,13.532041,0.125803235,1620000000000 ,1620000000000 ,1620000000000 ,1616812485230 -1616812485254 ,112.5687841,26.87604631,58.02374649,205.7383924,208.835525,13.53178,0.125798057,1620000000000 ,1620000000000 ,1620000000000 ,1616812485240 -1616812485264 ,112.5687834,26.8760452,58.0247879,205.7279832,208.8296705,13.532874,0.125806565,1620000000000 ,1620000000000 ,1620000000000 ,1616812485250 -1616812485274 ,112.5687828,26.8760441,58.02587509,205.7188034,208.8228493,13.532155,0.125805756,1620000000000 ,1620000000000 ,1620000000000 ,1616812485260 -1616812485283 ,112.5687822,26.876043,58.02703476,205.7078478,208.8173317,13.530843,0.12580065,1620000000000 ,1620000000000 ,1620000000000 ,1616812485270 -1616812485294 ,112.5687816,26.8760419,58.02827835,205.6989412,208.8110053,13.528032,0.125777716,1620000000000 ,1620000000000 ,1620000000000 ,1616812485280 -1616812485304 ,112.568781,26.8760408,58.02957153,205.6880949,208.8019392,13.527362,0.125765427,1620000000000 ,1620000000000 ,1620000000000 ,1616812485290 -1616812485318 ,112.5687804,26.87603969,58.03085709,205.6792703,208.7933039,13.527077,0.125764951,1620000000000 ,1620000000000 ,1620000000000 ,1616812485300 -1616812485328 ,112.5687798,26.87603859,58.03211975,205.6674404,208.7890412,13.526993,0.125760027,1620000000000 ,1620000000000 ,1620000000000 ,1616812485310 -1616812485338 ,112.5687792,26.87603749,58.03338623,205.655228,208.7822426,13.525285,0.125749413,1620000000000 ,1620000000000 ,1620000000000 ,1616812485320 -1616812485345 ,112.5687786,26.87603639,58.03466415,205.6439992,208.7691208,13.525193,0.125742418,1620000000000 ,1620000000000 ,1620000000000 ,1616812485330 -1616812485354 ,112.568778,26.87603529,58.03595734,205.6311038,208.7610533,13.524759,0.125738973,1620000000000 ,1620000000000 ,1620000000000 ,1616812485340 -1616812485366 ,112.5687774,26.87603418,58.03720474,205.6215689,208.7536196,13.526,0.125743912,1620000000000 ,1620000000000 ,1620000000000 ,1616812485350 -1616812485375 ,112.5687768,26.87603308,58.03839111,205.6091379,208.7440767,13.524707,0.125736411,1620000000000 ,1620000000000 ,1620000000000 ,1616812485360 -1616812485386 ,112.5687762,26.87603198,58.03952408,205.5932372,208.7374066,13.523681,0.125721312,1620000000000 ,1620000000000 ,1620000000000 ,1616812485370 -1616812485396 ,112.5687756,26.87603088,58.04063797,205.5796042,208.7309902,13.523161,0.12571423,1620000000000 ,1620000000000 ,1620000000000 ,1616812485380 -1616812485405 ,112.568775,26.87602977,58.04167938,205.5658618,208.7236391,13.52395,0.12571258,1620000000000 ,1620000000000 ,1620000000000 ,1616812485390 -1616812485416 ,112.5687744,26.87602867,58.0426445,205.551655,208.719463,13.525025,0.12572077,1620000000000 ,1620000000000 ,1620000000000 ,1616812485400 -1616812485430 ,112.5687738,26.87602757,58.04356003,205.5346888,208.7116288,13.52385,0.125710585,1620000000000 ,1620000000000 ,1620000000000 ,1616812485410 -1616812485437 ,112.5687732,26.87602647,58.04446411,205.5182964,208.7047216,13.523081,0.125701668,1620000000000 ,1620000000000 ,1620000000000 ,1616812485420 -1616812485446 ,112.5687726,26.87602536,58.04535675,205.5026143,208.6940474,13.523145,0.125692788,1620000000000 ,1620000000000 ,1620000000000 ,1616812485430 -1616812485458 ,112.568772,26.87602426,58.04621124,205.4876698,208.6840367,13.522904,0.125688437,1620000000000 ,1620000000000 ,1620000000000 ,1616812485440 -1616812485466 ,112.5687714,26.87602316,58.04702759,205.4713867,208.670653,13.523157,0.125685995,1620000000000 ,1620000000000 ,1620000000000 ,1616812485450 -1616812485476 ,112.5687708,26.87602206,58.04724884,205.454803,208.6370863,13.523729,0.125010581,1620000000000 ,1620000000000 ,1620000000000 ,1616812485460 -1616812485486 ,112.5687702,26.87602096,58.04745483,205.4369898,208.6255086,13.523774,0.125006556,1620000000000 ,1620000000000 ,1620000000000 ,1616812485470 -1616812485496 ,112.5687696,26.87601987,58.04766464,205.4204881,208.6117484,13.522839,0.124996944,1620000000000 ,1620000000000 ,1620000000000 ,1616812485480 -1616812485506 ,112.568769,26.87601877,58.04789734,205.40191,208.6041448,13.522368,0.124994759,1620000000000 ,1620000000000 ,1620000000000 ,1616812485490 -1616812485517 ,112.5687684,26.87601767,58.04817963,205.3837143,208.5825682,13.521927,0.124983576,1620000000000 ,1620000000000 ,1620000000000 ,1616812485500 -1616812485526 ,112.5687678,26.87601657,58.04850006,205.3671306,208.5586311,13.521552,0.12497424,1620000000000 ,1620000000000 ,1620000000000 ,1616812485510 -1616812485537 ,112.5687672,26.87601548,58.04885101,205.3511207,208.5398599,13.52104,0.124968581,1620000000000 ,1620000000000 ,1620000000000 ,1616812485520 -1616812485550 ,112.5687666,26.87601438,58.04923248,205.3331436,208.5216415,13.519151,0.124954243,1620000000000 ,1620000000000 ,1620000000000 ,1616812485530 -1616812485556 ,112.568766,26.87601328,58.04967117,205.3151939,208.5095606,13.518201,0.124939874,1620000000000 ,1620000000000 ,1620000000000 ,1616812485540 -1616812485570 ,112.5687654,26.87601218,58.05019379,205.298938,208.4918917,13.517214,0.124929172,1620000000000 ,1620000000000 ,1620000000000 ,1616812485550 -1616812485578 ,112.5687648,26.87601108,58.05076599,205.2823817,208.4669979,13.516114,0.124916491,1620000000000 ,1620000000000 ,1620000000000 ,1616812485560 -1616812485592 ,112.5687642,26.87600999,58.05138779,205.2650603,208.4452911,13.5154915,0.12491009,1620000000000 ,1620000000000 ,1620000000000 ,1616812485570 -1616812485603 ,112.5687636,26.87600889,58.05202866,205.2495421,208.4229865,13.514368,0.124896988,1620000000000 ,1620000000000 ,1620000000000 ,1616812485580 -1616812485607 ,112.568763,26.87600779,58.05269623,205.2321115,208.4079195,13.512165,0.124874422,1620000000000 ,1620000000000 ,1620000000000 ,1616812485590 -1616812485617 ,112.5687624,26.87600669,58.05342102,205.2145442,208.387117,13.509819,0.124853224,1620000000000 ,1620000000000 ,1620000000000 ,1616812485600 -1616812485627 ,112.5687618,26.87600559,58.05419922,205.1992173,208.3633308,13.508581,0.124840295,1620000000000 ,1620000000000 ,1620000000000 ,1616812485610 -1616812485637 ,112.5687612,26.87600449,58.05501175,205.1843275,208.334646,13.508419,0.124830421,1620000000000 ,1620000000000 ,1620000000000 ,1616812485620 -1616812485647 ,112.5687606,26.87600339,58.05580902,205.1683175,208.3117874,13.508,0.124822006,1620000000000 ,1620000000000 ,1620000000000 ,1616812485630 -1616812485658 ,112.56876,26.8760023,58.05659103,205.1534277,208.3005518,13.507549,0.124816913,1620000000000 ,1620000000000 ,1620000000000 ,1616812485640 -1616812485669 ,112.5687594,26.8760012,58.05739212,205.1363795,208.2798041,13.505419,0.124800942,1620000000000 ,1620000000000 ,1620000000000 ,1616812485650 -1616812485681 ,112.5687589,26.8760001,58.05824661,205.1200964,208.2531157,13.507803,0.124803097,1620000000000 ,1620000000000 ,1620000000000 ,1616812485660 -1616812485687 ,112.5687583,26.875999,58.05913925,205.1046601,208.2320104,13.512219,0.124845533,1620000000000 ,1620000000000 ,1620000000000 ,1616812485670 -1616812485698 ,112.5687577,26.8759979,58.05997849,205.0885682,208.2115717,13.511055,0.12483676,1620000000000 ,1620000000000 ,1620000000000 ,1616812485680 -1616812485708 ,112.5687571,26.8759968,58.06071472,205.0761919,208.1949277,13.50891,0.12481954,1620000000000 ,1620000000000 ,1620000000000 ,1616812485690 -1616812485723 ,112.5687565,26.8759957,58.06135941,205.0650724,208.1832574,13.502424,0.124768454,1620000000000 ,1620000000000 ,1620000000000 ,1616812485700 -1616812485731 ,112.5687559,26.8759946,58.0619545,205.0502918,208.1722851,13.49925,0.124722693,1620000000000 ,1620000000000 ,1620000000000 ,1616812485710 -1616812485745 ,112.5687553,26.8759935,58.06255341,205.0354293,208.1380877,13.496901,0.124700343,1620000000000 ,1620000000000 ,1620000000000 ,1616812485720 -1616812485750 ,112.5687547,26.8759924,58.06307983,205.0211952,208.1126128,13.496304,0.124676607,1620000000000 ,1620000000000 ,1620000000000 ,1616812485730 -1616812485759 ,112.5687541,26.8759913,58.06354523,205.0065786,208.1283521,13.500984,0.124705398,1620000000000 ,1620000000000 ,1620000000000 ,1616812485740 -1616812485769 ,112.5687536,26.8759902,58.06396484,204.9924811,208.1342233,13.505055,0.124750311,1620000000000 ,1620000000000 ,1620000000000 ,1616812485750 -1616812485779 ,112.568753,26.8759891,58.06439972,204.9759521,208.1193694,13.504816,0.124759904,1620000000000 ,1620000000000 ,1620000000000 ,1616812485760 -1616812485789 ,112.5687524,26.875988,58.06488419,204.9583028,208.1016087,13.503939,0.124748352,1620000000000 ,1620000000000 ,1620000000000 ,1616812485770 -1616812485798 ,112.5687518,26.8759869,58.06534576,204.9416372,208.0836044,13.501968,0.12473135,1620000000000 ,1620000000000 ,1620000000000 ,1616812485780 -1616812485808 ,112.5687512,26.8759858,58.06577301,204.923305,208.0637453,13.498497,0.124699029,1620000000000 ,1620000000000 ,1620000000000 ,1616812485790 -1616812485819 ,112.5687506,26.8759847,58.06620789,204.9059836,208.0301188,13.493628,0.124652213,1620000000000 ,1620000000000 ,1620000000000 ,1616812485800 -1616812485842 ,112.56875,26.8759836,58.06669235,204.8889901,207.9991425,13.490347,0.124613327,1620000000000 ,1620000000000 ,1620000000000 ,1616812485810 -1616812485846 ,112.5687494,26.8759825,58.06720734,204.8728982,207.9728961,13.490502,0.124600805,1620000000000 ,1620000000000 ,1620000000000 ,1616812485820 -1616812485849 ,112.5687489,26.87598139,58.06771469,204.8568882,207.9470318,13.492806,0.124612389,1620000000000 ,1620000000000 ,1620000000000 ,1616812485830 -1616812485860 ,112.5687483,26.87598029,58.0682106,204.8436923,207.9216998,13.495337,0.124635666,1620000000000 ,1620000000000 ,1620000000000 ,1616812485840 -1616812485870 ,112.5687477,26.87597919,58.06869507,204.8302505,207.9000271,13.493195,0.124616351,1620000000000 ,1620000000000 ,1620000000000 ,1616812485850 -1616812485880 ,112.5687471,26.87597809,58.06904602,204.8153606,207.8721948,13.49753,0.124632431,1620000000000 ,1620000000000 ,1620000000000 ,1616812485860 -1616812485889 ,112.5687465,26.87597699,58.06906128,204.800744,207.8757997,13.493575,0.124599758,1620000000000 ,1620000000000 ,1620000000000 ,1616812485870 -1616812485901 ,112.5687459,26.87597589,58.06871796,204.7842969,207.8763424,13.4944725,0.124590977,1620000000000 ,1620000000000 ,1620000000000 ,1616812485880 -1616812485911 ,112.5687454,26.87597479,58.06816864,204.7629594,207.847921,13.496679,0.124585788,1620000000000 ,1620000000000 ,1620000000000 ,1616812485890 -1616812485924 ,112.5687448,26.87597368,58.06767273,204.740092,207.8278877,13.501047,0.124613317,1620000000000 ,1620000000000 ,1620000000000 ,1616812485900 -1616812485930 ,112.5687442,26.87597258,58.06739044,204.7196287,207.8350895,13.497604,0.124621549,1620000000000 ,1620000000000 ,1620000000000 ,1616812485910 -1616812485940 ,112.5687436,26.87597148,58.06723022,204.7040559,207.8244649,13.486474,0.124542159,1620000000000 ,1620000000000 ,1620000000000 ,1616812485920 -1616812485950 ,112.568743,26.87597038,58.06719589,204.6912698,207.7662212,13.480178,0.124455757,1620000000000 ,1620000000000 ,1620000000000 ,1616812485930 -1616812485962 ,112.5687425,26.87596928,58.06731415,204.6768991,207.7287368,13.480762,0.124431605,1620000000000 ,1620000000000 ,1620000000000 ,1616812485940 -1616812485970 ,112.5687419,26.87596818,58.0674324,204.6636212,207.6943347,13.490048,0.124494884,1620000000000 ,1620000000000 ,1620000000000 ,1616812485950 -1616812485982 ,112.5687413,26.87596707,58.06729889,204.6497422,207.6818024,13.498206,0.12456751,1620000000000 ,1620000000000 ,1620000000000 ,1616812485960 -1616812485996 ,112.5687407,26.87596597,58.06700897,204.6309455,207.700082,13.497447,0.1245791,1620000000000 ,1620000000000 ,1620000000000 ,1616812485970 -1616812486001 ,112.5687401,26.87596487,58.06687546,204.6105096,207.6858906,13.487454,0.12450949,1620000000000 ,1620000000000 ,1620000000000 ,1616812485980 -1616812486014 ,112.5687396,26.87596376,58.06708908,204.5950187,207.6466002,13.480204,0.124442003,1620000000000 ,1620000000000 ,1620000000000 ,1616812485990 -1616812486021 ,112.568739,26.87596266,58.06750488,204.579282,207.6123552,13.478169,0.124408547,1620000000000 ,1620000000000 ,1620000000000 ,1616812486000 -1616812486030 ,112.5687384,26.87596156,58.06797028,204.5655396,207.5966001,13.477508,0.124397735,1620000000000 ,1620000000000 ,1620000000000 ,1616812486010 -1616812486041 ,112.5687378,26.87596046,58.06838608,204.5504859,207.5916193,13.478591,0.12440119,1620000000000 ,1620000000000 ,1620000000000 ,1616812486020 -1616812486051 ,112.5687373,26.87595935,58.06877136,204.5377271,207.5759443,13.481422,0.124423188,1620000000000 ,1620000000000 ,1620000000000 ,1616812486030 -1616812486062 ,112.5687367,26.87595825,58.06914139,204.5229466,207.5473391,13.483037,0.124439506,1620000000000 ,1620000000000 ,1620000000000 ,1616812486040 -1616812486073 ,112.5687361,26.87595715,58.06958771,204.5058711,207.5200906,13.481679,0.124425607,1620000000000 ,1620000000000 ,1620000000000 ,1616812486050 -1616812486082 ,112.5687355,26.87595604,58.07011414,204.4907081,207.499873,13.479183,0.124406265,1620000000000 ,1620000000000 ,1620000000000 ,1616812486060 -1616812486100 ,112.568735,26.87595494,58.07070923,204.4766652,207.4937465,13.476383,0.124385014,1620000000000 ,1620000000000 ,1620000000000 ,1616812486070 -1616812486105 ,112.5687344,26.87595384,58.07135773,204.4620759,207.477699,13.473153,0.124355886,1620000000000 ,1620000000000 ,1620000000000 ,1616812486080 -1616812486112 ,112.5687338,26.87595273,58.07209778,204.4473501,207.4471975,13.470085,0.124322994,1620000000000 ,1620000000000 ,1620000000000 ,1616812486090 -1616812486122 ,112.5687332,26.87595163,58.07289505,204.4311762,207.4193691,13.469453,0.124309758,1620000000000 ,1620000000000 ,1620000000000 ,1616812486100 -1616812486132 ,112.5687327,26.87595053,58.07364655,204.4184447,207.4036468,13.470368,0.124315212,1620000000000 ,1620000000000 ,1620000000000 ,1616812486110 -1616812486142 ,112.5687321,26.87594942,58.07431412,204.4041013,207.3985549,13.470843,0.124317396,1620000000000 ,1620000000000 ,1620000000000 ,1616812486120 -1616812486152 ,112.5687315,26.87594832,58.07496262,204.3882006,207.3826771,13.469831,0.124310511,1620000000000 ,1620000000000 ,1620000000000 ,1616812486130 -1616812486163 ,112.568731,26.87594722,58.07564163,204.3732835,207.3580102,13.468111,0.124292307,1620000000000 ,1620000000000 ,1620000000000 ,1616812486140 -1616812486173 ,112.5687304,26.87594611,58.07628632,204.3593499,207.338156,13.466548,0.124274397,1620000000000 ,1620000000000 ,1620000000000 ,1616812486150 -1616812486183 ,112.5687298,26.87594501,58.07683945,204.3454983,207.3248768,13.465713,0.124259334,1620000000000 ,1620000000000 ,1620000000000 ,1616812486160 -1616812486193 ,112.5687292,26.8759439,58.07730484,204.330991,207.3144944,13.464867,0.124247353,1620000000000 ,1620000000000 ,1620000000000 ,1616812486170 -1616812486202 ,112.5687287,26.8759428,58.07772064,204.3187239,207.29509,13.464951,0.124239802,1620000000000 ,1620000000000 ,1620000000000 ,1616812486180 -1616812486212 ,112.5687281,26.8759417,58.07809448,204.307058,207.2757554,13.464097,0.124230172,1620000000000 ,1620000000000 ,1620000000000 ,1616812486190 -1616812486222 ,112.5687275,26.87594059,58.0784111,204.2934249,207.2574385,13.464202,0.124224462,1620000000000 ,1620000000000 ,1620000000000 ,1616812486210 -1616812486234 ,112.568727,26.87593949,58.07801056,204.2830977,207.4250239,13.460013,0.124228917,1620000000000 ,1620000000000 ,1620000000000 ,1616812486220 -1616812486244 ,112.5687264,26.87593839,58.07748032,204.2686177,207.4506809,13.457909,0.124196785,1620000000000 ,1620000000000 ,1620000000000 ,1616812486230 -1616812486253 ,112.5687258,26.87593728,58.07692337,204.2563506,207.4354045,13.455819,0.124174835,1620000000000 ,1620000000000 ,1620000000000 ,1616812486240 -1616812486264 ,112.5687253,26.87593618,58.07632828,204.2437558,207.418186,13.455319,0.124161796,1620000000000 ,1620000000000 ,1620000000000 ,1616812486250 -1616812486274 ,112.5687241,26.87593398,58.07498169,204.2225822,207.3956622,13.454962,0.248304308,1620000000000 ,1620000000000 ,1620000000000 ,1616812486260 -1616812486284 ,112.5687235,26.87593288,58.07421875,204.2130472,207.3696302,13.454295,0.124134679,1620000000000 ,1620000000000 ,1620000000000 ,1616812486270 -1616812486294 ,112.568723,26.87593177,58.07346725,204.2023648,207.3604941,13.452982,0.124124433,1620000000000 ,1620000000000 ,1620000000000 ,1616812486280 -1616812486311 ,112.568723,26.87593177,58.07346725,204.2023648,-400,13.452982,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812486290 -1616812486315 ,112.5687218,26.87592957,58.072052,204.1855899,207.3338535,13.450764,0.248209817,1620000000000 ,1620000000000 ,1620000000000 ,1616812486300 -1616812486338 ,112.5687213,26.87592847,58.07130051,204.1762462,207.3068805,13.449992,0.124082118,1620000000000 ,1620000000000 ,1620000000000 ,1616812486310 -1616812486341 ,112.5687207,26.87592736,58.07049179,204.1697438,207.2949767,13.448653,0.12406767,1620000000000 ,1620000000000 ,1620000000000 ,1616812486320 -1616812486346 ,112.5687201,26.87592626,58.06967163,204.1637879,207.2813717,13.446901,0.124046128,1620000000000 ,1620000000000 ,1620000000000 ,1616812486330 -1616812486356 ,112.5687196,26.87592516,58.06887436,204.1584331,207.2648451,13.444324,0.12402402,1620000000000 ,1620000000000 ,1620000000000 ,1616812486340 -1616812486365 ,112.568719,26.87592406,58.06811905,204.1528869,207.2549845,13.442743,0.124007538,1620000000000 ,1620000000000 ,1620000000000 ,1616812486350 -1616812486374 ,112.5687184,26.87592295,58.06739426,204.1503734,207.2443184,13.441515,0.123990694,1620000000000 ,1620000000000 ,1620000000000 ,1616812486360 -1616812486386 ,112.5687179,26.87592185,58.06668472,204.1462207,207.2380307,13.440364,0.123978271,1620000000000 ,1620000000000 ,1620000000000 ,1616812486370 -1616812486394 ,112.5687173,26.87592075,58.06599045,204.1439531,207.231853,13.438613,0.123966578,1620000000000 ,1620000000000 ,1620000000000 ,1616812486380 -1616812486407 ,112.5687167,26.87591965,58.06532669,204.1431607,207.2228185,13.436591,0.123947296,1620000000000 ,1620000000000 ,1620000000000 ,1616812486390 -1616812486416 ,112.5687161,26.87591854,58.06471252,204.1416854,207.2175983,13.434392,0.123926381,1620000000000 ,1620000000000 ,1620000000000 ,1616812486400 -1616812486427 ,112.5687161,26.87591854,58.06471252,204.1416854,-400,13.434392,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812486410 -1616812486439 ,112.568715,26.87591634,58.06362152,204.1385982,207.2163997,13.430479,0.247800379,1620000000000 ,1620000000000 ,1620000000000 ,1616812486420 -1616812486449 ,112.5687144,26.87591524,58.06314087,204.1395817,207.215909,13.427767,0.123871505,1620000000000 ,1620000000000 ,1620000000000 ,1616812486430 -1616812486456 ,112.5687139,26.87591414,58.06269073,204.139008,207.2082492,13.426727,0.123861514,1620000000000 ,1620000000000 ,1620000000000 ,1616812486440 -1616812486467 ,112.5687133,26.87591304,58.06224823,204.1400189,207.2084629,13.424573,0.123840354,1620000000000 ,1620000000000 ,1620000000000 ,1616812486450 -1616812486476 ,112.5687128,26.87591193,58.06237411,204.1402101,207.0600144,13.423184,0.12379937,1620000000000 ,1620000000000 ,1620000000000 ,1616812486460 -1616812486486 ,112.5687122,26.87591083,58.06249619,204.1416035,207.0527611,13.420889,0.123781156,1620000000000 ,1620000000000 ,1620000000000 ,1616812486470 -1616812486495 ,112.5687116,26.87590973,58.06260681,204.1407838,207.0478117,13.420006,0.123766156,1620000000000 ,1620000000000 ,1620000000000 ,1616812486480 -1616812486506 ,112.5687111,26.87590863,58.06267929,204.1408931,207.0488492,13.419426,0.123759095,1620000000000 ,1620000000000 ,1620000000000 ,1616812486490 -1616812486516 ,112.5687105,26.87590752,58.06271362,204.139773,207.0491757,13.416855,0.123738592,1620000000000 ,1620000000000 ,1620000000000 ,1616812486500 -1616812486528 ,112.5687099,26.87590642,58.06274796,204.1395817,207.0571392,13.414691,0.123722156,1620000000000 ,1620000000000 ,1620000000000 ,1616812486510 -1616812486536 ,112.5687094,26.87590532,58.06283188,204.1386801,207.0568261,13.412451,0.123701745,1620000000000 ,1620000000000 ,1620000000000 ,1616812486520 -1616812486547 ,112.5687088,26.87590422,58.06293488,204.1389534,207.0541388,13.4106245,0.123683986,1620000000000 ,1620000000000 ,1620000000000 ,1616812486530 -1616812486556 ,112.5687083,26.87590312,58.06301117,204.1393905,207.0552527,13.4101515,0.123675453,1620000000000 ,1620000000000 ,1620000000000 ,1616812486540 -1616812486566 ,112.5687077,26.87590202,58.06302261,204.1405106,207.0606043,13.409752,0.12367148,1620000000000 ,1620000000000 ,1620000000000 ,1616812486550 -1616812486581 ,112.5687071,26.87590092,58.06300735,204.1422592,207.065542,13.408631,0.123662601,1620000000000 ,1620000000000 ,1620000000000 ,1616812486560 -1616812486602 ,112.5687071,26.87590092,58.06300735,204.1421226,-400,13.40637,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812486570 -1616812486608 ,112.568706,26.87589871,58.0629921,204.1422592,207.0668411,13.405802,0.247280875,1620000000000 ,1620000000000 ,1620000000000 ,1616812486580 -1616812486613 ,112.5687054,26.87589761,58.06299591,204.1439531,207.0746984,13.40321,0.123616742,1620000000000 ,1620000000000 ,1620000000000 ,1616812486590 -1616812486620 ,112.5687049,26.87589651,58.06298065,204.1444448,207.0777573,13.402012,0.123602665,1620000000000 ,1620000000000 ,1620000000000 ,1616812486600 -1616812486626 ,112.5687043,26.87589541,58.0629425,204.1451005,207.0806479,13.400405,0.12358789,1620000000000 ,1620000000000 ,1620000000000 ,1616812486610 -1616812486637 ,112.5687038,26.87589431,58.06289673,204.1431607,207.0875462,13.401615,0.123596618,1620000000000 ,1620000000000 ,1620000000000 ,1616812486620 -1616812486646 ,112.5687032,26.87589321,58.06284332,204.1436798,207.094739,13.402724,0.123604791,1620000000000 ,1620000000000 ,1620000000000 ,1616812486630 -1616812486657 ,112.5687026,26.87589211,58.06276321,204.1434066,207.0992643,13.4020405,0.123604293,1620000000000 ,1620000000000 ,1620000000000 ,1616812486640 -1616812486667 ,112.5687021,26.87589101,58.06267166,204.1422318,207.1052063,13.40111,0.123594434,1620000000000 ,1620000000000 ,1620000000000 ,1616812486650 -1616812486677 ,112.5687015,26.87588991,58.06258774,204.140374,207.1097052,13.398902,0.123580519,1620000000000 ,1620000000000 ,1620000000000 ,1616812486660 -1616812486687 ,112.5687009,26.87588881,58.06253052,204.1408385,207.1083384,13.396615,0.123556424,1620000000000 ,1620000000000 ,1620000000000 ,1616812486670 -1616812486697 ,112.5687004,26.87588771,58.06249237,204.1402921,207.106788,13.397745,0.123560245,1620000000000 ,1620000000000 ,1620000000000 ,1616812486680 -1616812486707 ,112.5686998,26.87588661,58.06245804,204.1404014,207.1061717,13.397392,0.123556679,1620000000000 ,1620000000000 ,1620000000000 ,1616812486690 -1616812486717 ,112.5686992,26.87588551,58.06240463,204.1381337,207.0996774,13.39839,0.123562034,1620000000000 ,1620000000000 ,1620000000000 ,1616812486700 -1616812486727 ,112.5686987,26.87588441,58.06232834,204.1373687,207.0992147,13.39862,0.123564833,1620000000000 ,1620000000000 ,1620000000000 ,1616812486710 -1616812486741 ,112.5686981,26.87588331,58.06225967,204.1381064,207.0953195,13.397684,0.123560975,1620000000000 ,1620000000000 ,1620000000000 ,1616812486720 -1616812486748 ,112.5686976,26.87588221,58.06222153,204.1373687,207.086618,13.395271,0.123537946,1620000000000 ,1620000000000 ,1620000000000 ,1616812486730 -1616812486764 ,112.568697,26.87588111,58.06222534,204.1372868,207.0847774,13.393424,0.123521948,1620000000000 ,1620000000000 ,1620000000000 ,1616812486740 -1616812486767 ,112.5686964,26.87588001,58.06225586,204.1387348,207.0843526,13.391127,0.123500979,1620000000000 ,1620000000000 ,1620000000000 ,1616812486750 -1616812486780 ,112.5686959,26.87587891,58.06229782,204.1383523,207.0844835,13.391072,0.123497883,1620000000000 ,1620000000000 ,1620000000000 ,1616812486760 -1616812486800 ,112.5686953,26.87587781,58.06233215,204.1381337,207.0789432,13.391065,0.123492538,1620000000000 ,1620000000000 ,1620000000000 ,1616812486770 -1616812486804 ,112.5686947,26.87587671,58.06235123,204.1390353,207.0789015,13.391735,0.123498967,1620000000000 ,1620000000000 ,1620000000000 ,1616812486780 -1616812486808 ,112.5686942,26.87587561,58.062397,204.1370955,207.0859269,13.391039,0.123497393,1620000000000 ,1620000000000 ,1620000000000 ,1616812486790 -1616812486818 ,112.5686936,26.87587451,58.06252289,204.1380518,207.0890302,13.388788,0.123485314,1620000000000 ,1620000000000 ,1620000000000 ,1616812486800 -1616812486829 ,112.5686931,26.87587342,58.06271362,204.1384069,207.0872702,13.386401,0.123465672,1620000000000 ,1620000000000 ,1620000000000 ,1616812486810 -1616812486839 ,112.5686925,26.87587232,58.06293488,204.1386255,207.0859441,13.385499,0.123452715,1620000000000 ,1620000000000 ,1620000000000 ,1616812486820 -1616812486849 ,112.5686919,26.87587122,58.0631218,204.1377512,207.0806474,13.384339,0.123440317,1620000000000 ,1620000000000 ,1620000000000 ,1616812486830 -1616812486860 ,112.5686914,26.87587012,58.06326294,204.1387348,207.0823933,13.384045,0.123437065,1620000000000 ,1620000000000 ,1620000000000 ,1616812486840 -1616812486868 ,112.5686908,26.87586902,58.0634079,204.1353743,207.0821455,13.384015,0.123435418,1620000000000 ,1620000000000 ,1620000000000 ,1616812486850 -1616812486879 ,112.5686903,26.87586792,58.06360626,204.1331887,207.0821282,13.382666,0.12342838,1620000000000 ,1620000000000 ,1620000000000 ,1616812486860 -1616812486888 ,112.5686897,26.87586682,58.06383514,204.1340356,207.0808527,13.38278,0.1234262,1620000000000 ,1620000000000 ,1620000000000 ,1616812486870 -1616812486898 ,112.5686891,26.87586572,58.06403732,204.1353743,207.0725266,13.382411,0.123425057,1620000000000 ,1620000000000 ,1620000000000 ,1616812486880 -1616812486910 ,112.5686886,26.87586462,58.0642128,204.1364125,207.0698897,13.3818655,0.12341677,1620000000000 ,1620000000000 ,1620000000000 ,1616812486890 -1616812486920 ,112.568688,26.87586352,58.06440353,204.1356749,207.0709017,13.380247,0.123404527,1620000000000 ,1620000000000 ,1620000000000 ,1616812486900 -1616812486930 ,112.5686874,26.87586243,58.06460571,204.1369043,207.0717953,13.38,0.123398182,1620000000000 ,1620000000000 ,1620000000000 ,1616812486910 -1616812486941 ,112.5686869,26.87586133,58.06478119,204.1389807,207.0747624,13.379815,0.123397598,1620000000000 ,1620000000000 ,1620000000000 ,1616812486920 -1616812486949 ,112.5686863,26.87586023,58.06490326,204.1402921,207.0760854,13.381846,0.123407807,1620000000000 ,1620000000000 ,1620000000000 ,1616812486930 -1616812486961 ,112.5686858,26.87585913,58.06498337,204.1417127,207.0701794,13.381794,0.123412005,1620000000000 ,1620000000000 ,1620000000000 ,1616812486940 -1616812486970 ,112.5686852,26.87585803,58.06502914,204.1432427,207.0691853,13.383267,0.123415461,1620000000000 ,1620000000000 ,1620000000000 ,1616812486950 -1616812486978 ,112.5686846,26.87585693,58.06504822,204.1441716,207.0719977,13.382554,0.123418912,1620000000000 ,1620000000000 ,1620000000000 ,1616812486960 -1616812486989 ,112.5686841,26.87585583,58.06506729,204.1444995,207.0805748,13.38296,0.123419439,1620000000000 ,1620000000000 ,1620000000000 ,1616812486970 -1616812487001 ,112.5686835,26.87585473,58.06509781,204.1439531,207.0796345,13.383844,0.123425199,1620000000000 ,1620000000000 ,1620000000000 ,1616812486980 -1616812487010 ,112.5686829,26.87585363,58.06509018,204.1446907,207.0742739,13.38645,0.123439484,1620000000000 ,1620000000000 ,1620000000000 ,1616812486990 -1616812487021 ,112.5686824,26.87585253,58.06502151,204.1452098,207.0713469,13.388497,0.12345927,1620000000000 ,1620000000000 ,1620000000000 ,1616812487000 -1616812487032 ,112.5686818,26.87585144,58.06488037,204.1437891,207.0767401,13.391366,0.123481116,1620000000000 ,1620000000000 ,1620000000000 ,1616812487010 -1616812487041 ,112.5686813,26.87585034,58.06472397,204.1446361,207.0886267,13.392042,0.123492759,1620000000000 ,1620000000000 ,1620000000000 ,1616812487020 -1616812487051 ,112.5686807,26.87584924,58.06460953,204.1456743,207.0860527,13.391269,0.123489522,1620000000000 ,1620000000000 ,1620000000000 ,1616812487030 -1616812487061 ,112.5686801,26.87584814,58.06456757,204.1464119,207.0835775,13.392105,0.123495659,1620000000000 ,1620000000000 ,1620000000000 ,1616812487040 -1616812487070 ,112.5686796,26.87584704,58.06453705,204.1466578,207.0752761,13.394612,0.123512918,1620000000000 ,1620000000000 ,1620000000000 ,1616812487050 -1616812487079 ,112.568679,26.87584594,58.0644722,204.1475047,207.0787366,13.396899,0.123531202,1620000000000 ,1620000000000 ,1620000000000 ,1616812487060 -1616812487091 ,112.5686785,26.87584484,58.06436539,204.1458382,207.093124,13.397892,0.12354744,1620000000000 ,1620000000000 ,1620000000000 ,1616812487070 -1616812487101 ,112.5686779,26.87584374,58.06429291,204.1457289,207.0979291,13.39876,0.123559033,1620000000000 ,1620000000000 ,1620000000000 ,1616812487080 -1616812487111 ,112.5686773,26.87584264,58.06430817,204.1453737,207.0960591,13.398714,0.123560656,1620000000000 ,1620000000000 ,1620000000000 ,1616812487090 -1616812487129 ,112.5686768,26.87584154,58.06439972,204.1452918,207.1006888,13.4002,0.123573376,1620000000000 ,1620000000000 ,1620000000000 ,1616812487100 -1616812487132 ,112.5686762,26.87584044,58.0645256,204.1444995,207.104706,13.400526,0.12358343,1620000000000 ,1620000000000 ,1620000000000 ,1616812487110 -1616812487142 ,112.5686756,26.87583934,58.06465149,204.1449366,207.1114741,13.400046,0.123580661,1620000000000 ,1620000000000 ,1620000000000 ,1616812487120 -1616812487152 ,112.5686751,26.87583824,58.06480026,204.1439257,207.1168522,13.401537,0.123595926,1620000000000 ,1620000000000 ,1620000000000 ,1616812487130 -1616812487161 ,112.5686745,26.87583714,58.06497955,204.1425324,207.1156507,13.401901,0.123599587,1620000000000 ,1620000000000 ,1620000000000 ,1616812487140 -1616812487171 ,112.5686739,26.87583604,58.06520844,204.1412483,207.1204414,13.404454,0.123623302,1620000000000 ,1620000000000 ,1620000000000 ,1616812487150 -1616812487182 ,112.5686734,26.87583494,58.06546021,204.1384069,207.1210975,13.404865,0.123632452,1620000000000 ,1620000000000 ,1620000000000 ,1616812487160 -1616812487194 ,112.5686728,26.87583384,58.0657196,204.1376966,207.1221046,13.405267,0.123642346,1620000000000 ,1620000000000 ,1620000000000 ,1616812487170 -1616812487201 ,112.5686723,26.87583274,58.06601334,204.1353743,207.125298,13.405204,0.123639875,1620000000000 ,1620000000000 ,1620000000000 ,1616812487180 -1616812487212 ,112.5686717,26.87583163,58.06634521,204.1349645,207.123053,13.405405,0.123644451,1620000000000 ,1620000000000 ,1620000000000 ,1616812487190 -1616812487221 ,112.5686711,26.87583053,58.06674957,204.1332433,207.1033614,13.4189205,0.123825727,1620000000000 ,1620000000000 ,1620000000000 ,1616812487200 -1616812487232 ,112.5686706,26.87582943,58.06721497,204.1327515,207.0814209,13.421144,0.124132663,1620000000000 ,1620000000000 ,1620000000000 ,1616812487210 -1616812487242 ,112.56867,26.87582832,58.06761932,204.1313309,207.0839155,13.4229765,0.124147617,1620000000000 ,1620000000000 ,1620000000000 ,1616812487220 -1616812487251 ,112.5686694,26.87582722,58.06798935,204.1310303,207.0823348,13.423556,0.124155476,1620000000000 ,1620000000000 ,1620000000000 ,1616812487230 -1616812487262 ,112.5686689,26.87582611,58.06835938,204.1282709,207.0754708,13.423773,0.124159529,1620000000000 ,1620000000000 ,1620000000000 ,1616812487240 -1616812487272 ,112.5686683,26.87582501,58.06873703,204.1302927,207.0736342,13.424628,0.124164458,1620000000000 ,1620000000000 ,1620000000000 ,1616812487260 -1616812487293 ,112.5686677,26.8758239,58.06907272,204.129637,207.0707884,13.425874,0.124174217,1620000000000 ,1620000000000 ,1620000000000 ,1616812487260 -1616812487295 ,112.5686672,26.87582279,58.06933212,204.1305112,207.0705198,13.42754,0.124186866,1620000000000 ,1620000000000 ,1620000000000 ,1616812487270 -1616812487304 ,112.5686666,26.87582169,58.06953049,204.1308937,207.0703905,13.428726,0.124195187,1620000000000 ,1620000000000 ,1620000000000 ,1616812487280 -1616812487312 ,112.568666,26.87582058,58.06968307,204.1306205,207.0696478,13.429626,0.124203927,1620000000000 ,1620000000000 ,1620000000000 ,1616812487300 -1616812487328 ,112.5686655,26.87581948,58.06980133,204.1299921,207.0721587,13.430602,0.124212106,1620000000000 ,1620000000000 ,1620000000000 ,1616812487310 -1616812487334 ,112.5686649,26.87581837,58.06988144,204.1302654,207.0731966,13.432425,0.12422359,1620000000000 ,1620000000000 ,1620000000000 ,1616812487320 -1616812487343 ,112.5686643,26.87581726,58.0699234,204.1320685,207.0739401,13.43341,0.124234025,1620000000000 ,1620000000000 ,1620000000000 ,1616812487330 -1616812487354 ,112.5686632,26.87581505,58.06986618,204.1332433,207.0651827,13.437978,0.248513545,1620000000000 ,1620000000000 ,1620000000000 ,1616812487340 -1616812487367 ,112.5686626,26.87581394,58.06976318,204.1338717,207.0653283,13.439226,0.124277012,1620000000000 ,1620000000000 ,1620000000000 ,1616812487350 -1616812487374 ,112.5686621,26.87581284,58.069664,204.1348826,207.067439,13.440842,0.124292143,1620000000000 ,1620000000000 ,1620000000000 ,1616812487360 -1616812487385 ,112.5686615,26.87581173,58.06959534,204.1341722,207.0587068,13.44037,0.124288795,1620000000000 ,1620000000000 ,1620000000000 ,1616812487370 -1616812487395 ,112.568661,26.87581062,58.06953049,204.1354563,207.054697,13.4424095,0.124301008,1620000000000 ,1620000000000 ,1620000000000 ,1616812487380 -1616812487404 ,112.568661,26.87581062,58.06953049,204.1354563,-400,13.4424095,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812487390 -1616812487414 ,112.5686598,26.87580841,58.06925201,204.1359754,207.0581534,13.445818,0.248646569,1620000000000 ,1620000000000 ,1620000000000 ,1616812487400 -1616812487424 ,112.5686593,26.8758073,58.06911087,204.1370409,207.0583471,13.446496,0.124338244,1620000000000 ,1620000000000 ,1620000000000 ,1616812487410 -1616812487435 ,112.5686587,26.87580619,58.06903458,204.1356749,207.0541617,13.446866,0.124340578,1620000000000 ,1620000000000 ,1620000000000 ,1616812487420 -1616812487446 ,112.5686581,26.87580509,58.06900024,204.1358934,207.0538345,13.448342,0.124354544,1620000000000 ,1620000000000 ,1620000000000 ,1616812487430 -1616812487457 ,112.5686581,26.87580509,58.06900024,204.1358934,-400,13.448342,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812487440 -1616812487466 ,112.568657,26.87580287,58.06885147,204.1346094,207.0662969,13.449895,0.248559472,1620000000000 ,1620000000000 ,1620000000000 ,1616812487450 -1616812487473 ,112.5686564,26.87580177,58.06872559,204.131003,207.0893258,13.449529,0.124024477,1620000000000 ,1620000000000 ,1620000000000 ,1616812487460 -1616812487484 ,112.5686559,26.87580067,58.06867218,204.1290906,207.0873929,13.450326,0.124031796,1620000000000 ,1620000000000 ,1620000000000 ,1616812487470 -1616812487494 ,112.5686553,26.87579956,58.06868362,204.1265771,207.0864475,13.4495735,0.124031719,1620000000000 ,1620000000000 ,1620000000000 ,1616812487480 -1616812487506 ,112.5686547,26.87579846,58.06877899,204.1264678,207.0890462,13.44884,0.124028356,1620000000000 ,1620000000000 ,1620000000000 ,1616812487490 -1616812487515 ,112.5686542,26.87579735,58.06895447,204.1250744,207.0814075,13.448817,0.124026327,1620000000000 ,1620000000000 ,1620000000000 ,1616812487500 -1616812487527 ,112.5686536,26.87579625,58.06917191,204.1247739,207.0792561,13.4493475,0.124031811,1620000000000 ,1620000000000 ,1620000000000 ,1616812487510 -1616812487535 ,112.568653,26.87579514,58.06944275,204.122315,207.0801739,13.449493,0.1240365,1620000000000 ,1620000000000 ,1620000000000 ,1616812487520 -1616812487546 ,112.5686525,26.87579404,58.06977844,204.120184,207.0796775,13.448657,0.124037681,1620000000000 ,1620000000000 ,1620000000000 ,1616812487530 -1616812487557 ,112.5686519,26.87579294,58.0701828,204.1194737,207.0829088,13.447716,0.124030012,1620000000000 ,1620000000000 ,1620000000000 ,1616812487540 -1616812487566 ,112.5686513,26.87579183,58.07060623,204.1181623,207.0839083,13.448647,0.124035648,1620000000000 ,1620000000000 ,1620000000000 ,1616812487550 -1616812487575 ,112.5686508,26.87579073,58.07102203,204.1153209,207.0837858,13.448632,0.12404072,1620000000000 ,1620000000000 ,1620000000000 ,1616812487560 -1616812487588 ,112.5686502,26.87578962,58.07143402,204.1129167,207.0835065,13.448741,0.124042583,1620000000000 ,1620000000000 ,1620000000000 ,1616812487570 -1616812487601 ,112.5686497,26.87578852,58.07187271,204.1110589,207.07949,13.447496,0.124038256,1620000000000 ,1620000000000 ,1620000000000 ,1616812487580 -1616812487607 ,112.5686491,26.87578741,58.0723381,204.1075618,207.0761248,13.447369,0.124032863,1620000000000 ,1620000000000 ,1620000000000 ,1616812487590 -1616812487620 ,112.5686485,26.87578631,58.07281494,204.1073706,207.0765441,13.447037,0.124032296,1620000000000 ,1620000000000 ,1620000000000 ,1616812487600 -1616812487629 ,112.568648,26.8757852,58.07326889,204.1051849,207.075954,13.446945,0.124036041,1620000000000 ,1620000000000 ,1620000000000 ,1616812487610 -1616812487639 ,112.5686474,26.8757841,58.07368469,204.1028626,207.071734,13.447592,0.124041025,1620000000000 ,1620000000000 ,1620000000000 ,1616812487620 -1616812487655 ,112.5686468,26.875783,58.07405472,204.100595,207.0660644,13.446984,0.124028758,1620000000000 ,1620000000000 ,1620000000000 ,1616812487630 -1616812487660 ,112.5686463,26.87578189,58.07438278,204.0990924,207.0681696,13.446282,0.124026126,1620000000000 ,1620000000000 ,1620000000000 ,1616812487640 -1616812487671 ,112.5686457,26.87578079,58.0746727,204.0979722,207.0668166,13.446624,0.1240288,1620000000000 ,1620000000000 ,1620000000000 ,1616812487650 -1616812487679 ,112.5686451,26.87577968,58.07492065,204.0953221,207.0616803,13.447381,0.124030738,1620000000000 ,1620000000000 ,1620000000000 ,1616812487660 -1616812487689 ,112.5686446,26.87577858,58.07511139,204.092672,207.0539377,13.447585,0.124033754,1620000000000 ,1620000000000 ,1620000000000 ,1616812487670 -1616812487700 ,112.568644,26.87577747,58.0752182,204.089694,207.0484558,13.446769,0.124021852,1620000000000 ,1620000000000 ,1620000000000 ,1616812487680 -1616812487708 ,112.5686434,26.87577637,58.07522202,204.0875903,207.053145,13.447787,0.124026941,1620000000000 ,1620000000000 ,1620000000000 ,1616812487690 -1616812487717 ,112.5686429,26.87577526,58.0751152,204.0864155,207.0558208,13.44816,0.124027922,1620000000000 ,1620000000000 ,1620000000000 ,1616812487700 -1616812487727 ,112.5686423,26.87577416,58.07492447,204.0823994,207.0536438,13.449104,0.124031863,1620000000000 ,1620000000000 ,1620000000000 ,1616812487710 -1616812487737 ,112.5686418,26.87577305,58.07468414,204.0798039,207.0442357,13.4490185,0.124031203,1620000000000 ,1620000000000 ,1620000000000 ,1616812487720 -1616812487748 ,112.5686412,26.87577195,58.07440567,204.0777275,207.0408497,13.449742,0.124030484,1620000000000 ,1620000000000 ,1620000000000 ,1616812487730 -1616812487758 ,112.5686406,26.87577084,58.07406235,204.0746676,207.0408579,13.45011,0.124031559,1620000000000 ,1620000000000 ,1620000000000 ,1616812487740 -1616812487770 ,112.5686401,26.87576974,58.0736618,204.073766,207.0422611,13.449434,0.124025874,1620000000000 ,1620000000000 ,1620000000000 ,1616812487750 -1616812487780 ,112.5686395,26.87576864,58.073246,204.0700231,207.0408604,13.447838,0.124013644,1620000000000 ,1620000000000 ,1620000000000 ,1616812487760 -1616812487800 ,112.5686389,26.87576753,58.07282257,204.068056,207.0365014,13.4482975,0.124010222,1620000000000 ,1620000000000 ,1620000000000 ,1616812487770 -1616812487804 ,112.5686384,26.87576643,58.07236481,204.0649414,207.0325669,13.449247,0.124013367,1620000000000 ,1620000000000 ,1620000000000 ,1616812487780 -1616812487808 ,112.5686378,26.87576532,58.0718689,204.0624826,207.0313661,13.450355,0.124024317,1620000000000 ,1620000000000 ,1620000000000 ,1616812487790 -1616812487820 ,112.5686372,26.87576422,58.07137299,204.057838,207.028493,13.4499655,0.124022029,1620000000000 ,1620000000000 ,1620000000000 ,1616812487800 -1616812487828 ,112.5686367,26.87576311,58.07089996,204.0550513,207.0232377,13.449557,0.124016426,1620000000000 ,1620000000000 ,1620000000000 ,1616812487810 -1616812487839 ,112.5686361,26.87576201,58.07045364,204.0517455,207.0213681,13.448154,0.124006454,1620000000000 ,1620000000000 ,1620000000000 ,1616812487820 -1616812487852 ,112.5686356,26.8757609,58.0700264,204.047702,207.0158267,13.447726,0.123999304,1620000000000 ,1620000000000 ,1620000000000 ,1616812487830 -1616812487862 ,112.568635,26.8757598,58.06961823,204.043358,207.0113351,13.446761,0.123988474,1620000000000 ,1620000000000 ,1620000000000 ,1616812487840 -1616812487870 ,112.5686344,26.87575869,58.06921005,204.0408445,207.0043806,13.446963,0.123985558,1620000000000 ,1620000000000 ,1620000000000 ,1616812487850 -1616812487880 ,112.5686339,26.87575759,58.06880569,204.0376753,206.9973176,13.447279,0.123986988,1620000000000 ,1620000000000 ,1620000000000 ,1616812487860 -1616812487888 ,112.5686333,26.87575648,58.0684166,204.0344515,206.9929506,13.447539,0.123988461,1620000000000 ,1620000000000 ,1620000000000 ,1616812487870 -1616812487898 ,112.5686327,26.87575538,58.06808472,204.0325663,206.9890356,13.44713,0.123986518,1620000000000 ,1620000000000 ,1620000000000 ,1616812487880 -1616812487911 ,112.5686322,26.87575427,58.06780243,204.0276486,206.979473,13.446882,0.123982093,1620000000000 ,1620000000000 ,1620000000000 ,1616812487890 -1616812487921 ,112.5686316,26.87575317,58.06755447,204.024534,206.9760036,13.445822,0.12397333,1620000000000 ,1620000000000 ,1620000000000 ,1616812487900 -1616812487931 ,112.568631,26.87575206,58.06731796,204.0195343,206.9676883,13.44487,0.123964132,1620000000000 ,1620000000000 ,1620000000000 ,1616812487910 -1616812487942 ,112.5686305,26.87575096,58.06711197,204.017294,206.9632145,13.443866,0.123952569,1620000000000 ,1620000000000 ,1620000000000 ,1616812487920 -1616812487950 ,112.5686299,26.87574985,58.06695557,204.0126222,206.9586624,13.443286,0.123947017,1620000000000 ,1620000000000 ,1620000000000 ,1616812487930 -1616812487962 ,112.5686294,26.87574875,58.06683731,204.0091251,206.95593,13.442432,0.12393982,1620000000000 ,1620000000000 ,1620000000000 ,1616812487940 -1616812487970 ,112.5686288,26.87574765,58.06678772,204.0052729,206.9541924,13.442168,0.123940161,1620000000000 ,1620000000000 ,1620000000000 ,1616812487950 -1616812487982 ,112.5686282,26.87574654,58.06679535,204.0007923,206.9555605,13.443043,0.123946214,1620000000000 ,1620000000000 ,1620000000000 ,1616812487960 -1616812488000 ,112.5686277,26.87574544,58.06687927,203.9937709,206.9553726,13.442755,0.123950136,1620000000000 ,1620000000000 ,1620000000000 ,1616812487970 -1616812488003 ,112.5686271,26.87574433,58.06703568,203.9876237,206.9477785,13.440816,0.123933638,1620000000000 ,1620000000000 ,1620000000000 ,1616812487980 -1616812488012 ,112.5686266,26.87574323,58.06726837,203.9822142,206.9434895,13.438916,0.12392096,1620000000000 ,1620000000000 ,1620000000000 ,1616812487990 -1616812488021 ,112.568626,26.87574212,58.06752777,203.9774057,206.9336818,13.438645,0.12391094,1620000000000 ,1620000000000 ,1620000000000 ,1616812488000 -1616812488032 ,112.5686254,26.87574102,58.06777954,203.9716137,206.9273937,13.439672,0.123918853,1620000000000 ,1620000000000 ,1620000000000 ,1616812488010 -1616812488041 ,112.5686249,26.87573991,58.06803513,203.9646469,206.9244232,13.440309,0.123924316,1620000000000 ,1620000000000 ,1620000000000 ,1616812488020 -1616812488055 ,112.5686243,26.87573881,58.06831741,203.9580626,206.9170112,13.438641,0.123916947,1620000000000 ,1620000000000 ,1620000000000 ,1616812488030 -1616812488061 ,112.5686237,26.8757377,58.06864548,203.952216,206.9130288,13.437013,0.123901153,1620000000000 ,1620000000000 ,1620000000000 ,1616812488040 -1616812488071 ,112.5686232,26.8757366,58.0690155,203.9453038,206.9111422,13.436805,0.123899533,1620000000000 ,1620000000000 ,1620000000000 ,1616812488050 -1616812488081 ,112.5686226,26.87573549,58.06937027,203.9397031,206.9025869,13.438087,0.12390284,1620000000000 ,1620000000000 ,1620000000000 ,1616812488060 -1616812488091 ,112.5686221,26.87573439,58.06969452,203.93331,206.9034688,13.4387455,0.123914072,1620000000000 ,1620000000000 ,1620000000000 ,1616812488070 -1616812488106 ,112.5686215,26.87573328,58.06998444,203.9265345,206.8946301,13.438814,0.123913503,1620000000000 ,1620000000000 ,1620000000000 ,1616812488080 -1616812488112 ,112.5686209,26.87573218,58.07027054,203.9162619,206.8843667,13.437997,0.123906297,1620000000000 ,1620000000000 ,1620000000000 ,1616812488090 -1616812488123 ,112.5686204,26.87573107,58.07056808,203.910142,206.8783695,13.437385,0.123896644,1620000000000 ,1620000000000 ,1620000000000 ,1616812488100 -1616812488137 ,112.5686198,26.87572997,58.07084656,203.9034758,206.8709209,13.437626,0.123897141,1620000000000 ,1620000000000 ,1620000000000 ,1616812488110 -1616812488147 ,112.5686193,26.87572886,58.07110977,203.8973286,206.8714384,13.437758,0.123899806,1620000000000 ,1620000000000 ,1620000000000 ,1616812488120 -1616812488156 ,112.5686181,26.87572665,58.07168198,203.8798433,206.8597404,13.436881,0.247791224,1620000000000 ,1620000000000 ,1620000000000 ,1616812488140 -1616812488166 ,112.5686176,26.87572555,58.07199097,203.8730404,206.8426669,13.43587,0.123883954,1620000000000 ,1620000000000 ,1620000000000 ,1616812488150 -1616812488176 ,112.568617,26.87572444,58.07226181,203.8668113,206.8350888,13.437494,0.123887061,1620000000000 ,1620000000000 ,1620000000000 ,1616812488160 -1616812488184 ,112.5686165,26.87572333,58.07247925,203.8605548,206.8310753,13.437106,0.12388834,1620000000000 ,1620000000000 ,1620000000000 ,1616812488170 -1616812488195 ,112.5686159,26.87572223,58.07268906,203.8540798,206.818186,13.436902,0.12388304,1620000000000 ,1620000000000 ,1620000000000 ,1616812488180 -1616812488208 ,112.5686154,26.87572112,58.07289505,203.8452279,206.8032651,13.436337,0.123876732,1620000000000 ,1620000000000 ,1620000000000 ,1616812488190 -1616812488216 ,112.5686148,26.87572002,58.07297516,203.8413484,206.8265461,13.419347,0.123716243,1620000000000 ,1620000000000 ,1620000000000 ,1616812488200 -1616812488225 ,112.5686142,26.87571892,58.07280731,203.8344089,206.8728,13.419062,0.123409835,1620000000000 ,1620000000000 ,1620000000000 ,1616812488210 -1616812488236 ,112.5686137,26.87571782,58.0725975,203.8272235,206.8649745,13.41864,0.123404406,1620000000000 ,1620000000000 ,1620000000000 ,1616812488220 -1616812488246 ,112.5686131,26.87571672,58.0724144,203.819601,206.8570374,13.417987,0.123392662,1620000000000 ,1620000000000 ,1620000000000 ,1616812488230 -1616812488256 ,112.5686126,26.87571562,58.07221985,203.8125523,206.849633,13.418866,0.123397023,1620000000000 ,1620000000000 ,1620000000000 ,1616812488240 -1616812488268 ,112.568612,26.87571451,58.07197189,203.806733,206.8425171,13.418731,0.123396196,1620000000000 ,1620000000000 ,1620000000000 ,1616812488250 -1616812488276 ,112.5686114,26.87571341,58.07168198,203.7991924,206.841324,13.417665,0.123390749,1620000000000 ,1620000000000 ,1620000000000 ,1616812488260 -1616812488293 ,112.5686109,26.87571231,58.07139587,203.7896575,206.8320553,13.415045,0.123364458,1620000000000 ,1620000000000 ,1620000000000 ,1616812488270 -1616812488297 ,112.5686103,26.87571121,58.0711441,203.7818711,206.8259898,13.414787,0.123356204,1620000000000 ,1620000000000 ,1620000000000 ,1616812488280 -1616812488307 ,112.5686098,26.87571011,58.07088089,203.7744945,206.8188031,13.41515,0.123358483,1620000000000 ,1620000000000 ,1620000000000 ,1616812488290 -1616812488318 ,112.5686092,26.87570901,58.07056808,203.7688937,206.8149446,13.415411,0.123358007,1620000000000 ,1620000000000 ,1620000000000 ,1616812488300 -1616812488329 ,112.5686087,26.87570791,58.07025528,203.7599871,206.8085339,13.412831,0.123341741,1620000000000 ,1620000000000 ,1620000000000 ,1616812488310 -1616812488337 ,112.5686081,26.87570681,58.07001114,203.7533482,206.7939598,13.411688,0.123326188,1620000000000 ,1620000000000 ,1620000000000 ,1616812488320 -1616812488349 ,112.5686076,26.87570571,58.06982422,203.7471191,206.7876555,13.411321,0.123323057,1620000000000 ,1620000000000 ,1620000000000 ,1616812488330 -1616812488358 ,112.568607,26.87570461,58.0696106,203.7402342,206.7799232,13.411953,0.123323811,1620000000000 ,1620000000000 ,1620000000000 ,1616812488340 -1616812488367 ,112.5686064,26.87570351,58.06936264,203.7329123,206.7794713,13.410442,0.123318676,1620000000000 ,1620000000000 ,1620000000000 ,1616812488350 -1616812488378 ,112.5686059,26.87570241,58.06912994,203.7259455,206.7694729,13.409343,0.123303111,1620000000000 ,1620000000000 ,1620000000000 ,1616812488360 -1616812488389 ,112.5686053,26.8757013,58.0689621,203.7198529,206.7530953,13.408714,0.123294998,1620000000000 ,1620000000000 ,1620000000000 ,1616812488370 -1616812488400 ,112.5686048,26.8757002,58.06879044,203.7141702,206.7427901,13.408412,0.123292462,1620000000000 ,1620000000000 ,1620000000000 ,1616812488380 -1616812488409 ,112.5686042,26.8756991,58.06856918,203.7092798,206.740668,13.40768,0.12328484,1620000000000 ,1620000000000 ,1620000000000 ,1616812488390 -1616812488421 ,112.5686037,26.875698,58.06833267,203.7021764,206.7383111,13.406932,0.123276233,1620000000000 ,1620000000000 ,1620000000000 ,1616812488400 -1616812488429 ,112.5686031,26.8756969,58.0681076,203.6975865,206.7245938,13.405429,0.123265084,1620000000000 ,1620000000000 ,1620000000000 ,1616812488410 -1616812488438 ,112.5686026,26.8756958,58.06784439,203.6913847,206.7175415,13.40562,0.123259512,1620000000000 ,1620000000000 ,1620000000000 ,1616812488420 -1616812488451 ,112.568602,26.8756947,58.06752396,203.6842813,206.7130562,13.404677,0.123250162,1620000000000 ,1620000000000 ,1620000000000 ,1616812488430 -1616812488461 ,112.5686015,26.8756936,58.06715393,203.6783254,206.7121301,13.402309,0.123231203,1620000000000 ,1620000000000 ,1620000000000 ,1616812488440 -1616812488470 ,112.5686009,26.8756925,58.06684494,203.6722602,206.6797302,13.401363,0.123370414,1620000000000 ,1620000000000 ,1620000000000 ,1616812488450 -1616812488490 ,112.5686003,26.87569139,58.06661224,203.6661403,206.6430569,13.400713,0.12351447,1620000000000 ,1620000000000 ,1620000000000 ,1616812488460 -1616812488492 ,112.5685998,26.87569029,58.06637573,203.6576436,206.6341675,13.400035,0.123502823,1620000000000 ,1620000000000 ,1620000000000 ,1616812488470 -1616812488499 ,112.5685992,26.87568918,58.06612015,203.6519335,206.6285502,13.39899,0.123494102,1620000000000 ,1620000000000 ,1620000000000 ,1616812488480 -1616812488510 ,112.5685987,26.87568808,58.06585693,203.6451034,206.6239162,13.397639,0.12348593,1620000000000 ,1620000000000 ,1620000000000 ,1616812488490 -1616812488519 ,112.5685981,26.87568698,58.06563187,203.6383005,206.6143331,13.396395,0.123470777,1620000000000 ,1620000000000 ,1620000000000 ,1616812488500 -1616812488529 ,112.5685976,26.87568587,58.06545639,203.6320714,206.5970416,13.395571,0.123459197,1620000000000 ,1620000000000 ,1620000000000 ,1616812488510 -1616812488540 ,112.568597,26.87568477,58.06529236,203.6247221,206.583054,13.395087,0.123452925,1620000000000 ,1620000000000 ,1620000000000 ,1616812488520 -1616812488551 ,112.5685965,26.87568366,58.06506729,203.6183563,206.583048,13.395108,0.123450252,1620000000000 ,1620000000000 ,1620000000000 ,1616812488530 -1616812488559 ,112.5685959,26.87568256,58.06478119,203.6131107,206.5794944,13.393827,0.123438311,1620000000000 ,1620000000000 ,1620000000000 ,1616812488540 -1616812488569 ,112.5685954,26.87568146,58.0644722,203.6072914,206.5648254,13.392056,0.123421471,1620000000000 ,1620000000000 ,1620000000000 ,1616812488550 -1616812488579 ,112.5685948,26.87568035,58.06415558,203.6013082,206.5483263,13.391338,0.123406874,1620000000000 ,1620000000000 ,1620000000000 ,1616812488560 -1616812488589 ,112.5685943,26.87567925,58.06377792,203.5946419,206.5389035,13.391564,0.123401846,1620000000000 ,1620000000000 ,1620000000000 ,1616812488570 -1616812488600 ,112.5685937,26.87567814,58.06329346,203.5893417,206.5361083,13.392299,0.12340072,1620000000000 ,1620000000000 ,1620000000000 ,1616812488580 -1616812488611 ,112.5685932,26.87567704,58.06271744,203.5833311,206.5361084,13.393117,0.123406048,1620000000000 ,1620000000000 ,1620000000000 ,1616812488590 -1616812488619 ,112.5685926,26.87567594,58.06211853,203.5750803,206.5265347,13.3923645,0.123400748,1620000000000 ,1620000000000 ,1620000000000 ,1616812488600 -1616812488632 ,112.5685921,26.87567483,58.06152725,203.5662557,206.5173946,13.391122,0.123385191,1620000000000 ,1620000000000 ,1620000000000 ,1616812488610 -1616812488639 ,112.5685915,26.87567373,58.06096649,203.5580594,206.5101341,13.389005,0.123366185,1620000000000 ,1620000000000 ,1620000000000 ,1616812488620 -1616812488650 ,112.568591,26.87567262,58.06042862,203.5529504,206.5013179,13.387965,0.12335498,1620000000000 ,1620000000000 ,1620000000000 ,1616812488630 -1616812488660 ,112.5685904,26.87567152,58.05991745,203.5459017,206.493938,13.387556,0.123348176,1620000000000 ,1620000000000 ,1620000000000 ,1616812488640 -1616812488670 ,112.5685899,26.87567042,58.05944824,203.5409293,206.4847379,13.387615,0.123346708,1620000000000 ,1620000000000 ,1620000000000 ,1616812488650 -1616812488681 ,112.5685893,26.87566931,58.05904388,203.5354925,206.4724272,13.385659,0.123330743,1620000000000 ,1620000000000 ,1620000000000 ,1616812488660 -1616812488690 ,112.5685888,26.87566821,58.05871582,203.5312304,206.4648425,13.383132,0.12331356,1620000000000 ,1620000000000 ,1620000000000 ,1616812488670 -1616812488703 ,112.5685882,26.8756671,58.05846786,203.5252472,206.4581246,13.381817,0.123299055,1620000000000 ,1620000000000 ,1620000000000 ,1616812488680 -1616812488711 ,112.5685877,26.875666,58.05826569,203.5196191,206.4490384,13.38071,0.123287504,1620000000000 ,1620000000000 ,1620000000000 ,1616812488690 -1616812488720 ,112.5685871,26.8756649,58.05810165,203.5165592,206.4398005,13.380791,0.123282781,1620000000000 ,1620000000000 ,1620000000000 ,1616812488700 -1616812488731 ,112.5685866,26.87566379,58.05794144,203.5102481,206.4276571,13.379549,0.123275445,1620000000000 ,1620000000000 ,1620000000000 ,1616812488710 -1616812488740 ,112.568586,26.87566269,58.05777359,203.5047566,206.4188644,13.378678,0.123267225,1620000000000 ,1620000000000 ,1620000000000 ,1616812488720 -1616812488751 ,112.5685855,26.87566158,58.05762863,203.4993471,206.4154096,13.37718,0.123250206,1620000000000 ,1620000000000 ,1620000000000 ,1616812488730 -1616812488763 ,112.5685849,26.87566048,58.05751038,203.4935824,206.4109652,13.375892,0.123239294,1620000000000 ,1620000000000 ,1620000000000 ,1616812488740 -1616812488772 ,112.5685844,26.87565938,58.05742264,203.4886647,206.4064916,13.374726,0.123229866,1620000000000 ,1620000000000 ,1620000000000 ,1616812488750 -1616812488783 ,112.5685838,26.87565827,58.05734253,203.4851676,206.3948179,13.374734,0.123225596,1620000000000 ,1620000000000 ,1620000000000 ,1616812488760 -1616812488796 ,112.5685833,26.87565717,58.05729294,203.4813701,206.3900699,13.373407,0.123215891,1620000000000 ,1620000000000 ,1620000000000 ,1616812488770 -1616812488813 ,112.5685827,26.87565607,58.05726242,203.476507,206.3838951,13.372634,0.123207413,1620000000000 ,1620000000000 ,1620000000000 ,1616812488780 -1616812488816 ,112.5685822,26.87565496,58.05724335,203.4697587,206.3837676,13.371419,0.123198286,1620000000000 ,1620000000000 ,1620000000000 ,1616812488790 -1616812488821 ,112.5685816,26.87565386,58.05723572,203.4659885,206.3813017,13.371112,0.123194923,1620000000000 ,1620000000000 ,1620000000000 ,1616812488800 -1616812488831 ,112.5685811,26.87565275,58.05727005,203.4594042,206.3782641,13.369842,0.123186701,1620000000000 ,1620000000000 ,1620000000000 ,1616812488810 -1616812488842 ,112.5685805,26.87565165,58.05732346,203.4550602,206.3763545,13.368651,0.123175948,1620000000000 ,1620000000000 ,1620000000000 ,1616812488820 -1616812488852 ,112.56858,26.87565055,58.05736542,203.4505522,206.371295,13.367114,0.123162966,1620000000000 ,1620000000000 ,1620000000000 ,1616812488830 -1616812488861 ,112.5685794,26.87564944,58.05739594,203.4459077,206.3719815,13.366697,0.123158771,1620000000000 ,1620000000000 ,1620000000000 ,1616812488840 -1616812488873 ,112.5685789,26.87564834,58.05743027,203.4399245,206.3674571,13.366075,0.123151874,1620000000000 ,1620000000000 ,1620000000000 ,1616812488850 -1616812488884 ,112.5685784,26.87564724,58.05747986,203.4353073,206.3590664,13.365668,0.123146609,1620000000000 ,1620000000000 ,1620000000000 ,1616812488860 -1616812488894 ,112.5685778,26.87564613,58.05752563,203.4298431,206.3537893,13.364675,0.123140705,1620000000000 ,1620000000000 ,1620000000000 ,1616812488870 -1616812488902 ,112.5685773,26.87564503,58.05754089,203.4239692,206.3467079,13.363651,0.123129959,1620000000000 ,1620000000000 ,1620000000000 ,1616812488880 -1616812488912 ,112.5685767,26.87564393,58.05752182,203.4175761,206.346353,13.362232,0.123114425,1620000000000 ,1620000000000 ,1620000000000 ,1616812488890 -1616812488922 ,112.5685762,26.87564282,58.05746841,203.4124398,206.3424362,13.361643,0.123108965,1620000000000 ,1620000000000 ,1620000000000 ,1616812488900 -1616812488932 ,112.5685756,26.87564172,58.05738449,203.4070849,206.3370629,13.361438,0.123101687,1620000000000 ,1620000000000 ,1620000000000 ,1616812488910 -1616812488942 ,112.5685751,26.87564062,58.05726242,203.4032327,206.3318522,13.360978,0.123098546,1620000000000 ,1620000000000 ,1620000000000 ,1616812488920 -1616812488952 ,112.5685745,26.87563951,58.05709839,203.3978232,206.3281951,13.360874,0.123093879,1620000000000 ,1620000000000 ,1620000000000 ,1616812488930 -1616812488963 ,112.568574,26.87563841,58.05689621,203.3927415,206.3267117,13.360109,0.123088781,1620000000000 ,1620000000000 ,1620000000000 ,1616812488940 -1616812488975 ,112.5685734,26.87563731,58.05666351,203.3890805,206.3195988,13.358723,0.123073742,1620000000000 ,1620000000000 ,1620000000000 ,1616812488950 -1616812488984 ,112.5685729,26.8756362,58.0564003,203.3818405,206.3148085,13.357352,0.123058929,1620000000000 ,1620000000000 ,1620000000000 ,1616812488960 -1616812488995 ,112.5685723,26.8756351,58.05610275,203.377196,206.3070554,13.3571615,0.12305248,1620000000000 ,1620000000000 ,1620000000000 ,1616812488970 -1616812489003 ,112.5685718,26.875634,58.0557518,203.3726608,206.3040609,13.357541,0.123050068,1620000000000 ,1620000000000 ,1620000000000 ,1616812488980 -1616812489013 ,112.5685713,26.8756329,58.0553627,203.3683168,206.3023794,13.357845,0.123051136,1620000000000 ,1620000000000 ,1620000000000 ,1616812489000 -1616812489024 ,112.5685707,26.87563179,58.05496216,203.3633444,206.2976381,13.35626,0.123043238,1620000000000 ,1620000000000 ,1620000000000 ,1616812489010 -1616812489037 ,112.5685696,26.87562959,58.05417252,203.354028,206.2884758,13.354665,0.246050378,1620000000000 ,1620000000000 ,1620000000000 ,1616812489020 -1616812489044 ,112.5685691,26.87562848,58.0537529,203.3494654,206.2797592,13.354275,0.123013372,1620000000000 ,1620000000000 ,1620000000000 ,1616812489030 -1616812489054 ,112.5685685,26.87562738,58.05329132,203.344657,206.2764462,13.353645,0.123005472,1620000000000 ,1620000000000 ,1620000000000 ,1616812489040 -1616812489066 ,112.568568,26.87562628,58.05280304,203.3384005,206.2759291,13.352179,0.122994325,1620000000000 ,1620000000000 ,1620000000000 ,1616812489050 -1616812489074 ,112.5685674,26.87562518,58.05232239,203.3340839,206.2721938,13.350043,0.122971648,1620000000000 ,1620000000000 ,1620000000000 ,1616812489060 -1616812489084 ,112.5685669,26.87562407,58.05186081,203.3282372,206.2677545,13.349878,0.122966665,1620000000000 ,1620000000000 ,1620000000000 ,1616812489070 -1616812489094 ,112.5685664,26.87562297,58.05138779,203.3217895,206.2554414,13.349621,0.122961442,1620000000000 ,1620000000000 ,1620000000000 ,1616812489080 -1616812489104 ,112.5685658,26.87562187,58.05089951,203.3159702,206.2550382,13.350403,0.122964925,1620000000000 ,1620000000000 ,1620000000000 ,1616812489090 -1616812489115 ,112.5685653,26.87562076,58.05039597,203.3084843,206.2472414,13.350753,0.122966298,1620000000000 ,1620000000000 ,1620000000000 ,1616812489100 -1616812489126 ,112.5685647,26.87561966,58.04991913,203.3010804,206.2413318,13.349225,0.122957151,1620000000000 ,1620000000000 ,1620000000000 ,1616812489110 -1616812489137 ,112.5685642,26.87561856,58.04949951,203.2955616,206.2328025,13.347073,0.122939495,1620000000000 ,1620000000000 ,1620000000000 ,1616812489120 -1616812489145 ,112.5685636,26.87561746,58.0491066,203.2892232,206.2239859,13.345306,0.122920069,1620000000000 ,1620000000000 ,1620000000000 ,1616812489130 -1616812489154 ,112.5685631,26.87561635,58.04872131,203.2850704,206.2188452,13.343184,0.122899332,1620000000000 ,1620000000000 ,1620000000000 ,1616812489140 -1616812489172 ,112.5685625,26.87561525,58.04833984,203.2792238,206.2145628,13.34373,0.122899003,1620000000000 ,1620000000000 ,1620000000000 ,1616812489150 -1616812489182 ,112.568562,26.87561415,58.04798508,203.2759726,206.2024335,13.343199,0.122894674,1620000000000 ,1620000000000 ,1620000000000 ,1616812489160 -1616812489192 ,112.5685615,26.87561305,58.04765701,203.2697162,206.1952403,13.343139,0.12289138,1620000000000 ,1620000000000 ,1620000000000 ,1616812489170 -1616812489195 ,112.5685609,26.87561194,58.04736328,203.2646891,206.1927562,13.342252,0.122884761,1620000000000 ,1620000000000 ,1620000000000 ,1616812489180 -1616812489205 ,112.5685604,26.87561084,58.0471077,203.2590884,206.1895092,13.341441,0.122876619,1620000000000 ,1620000000000 ,1620000000000 ,1616812489190 -1616812489215 ,112.5685598,26.87560973,58.04729462,203.2524494,206.1901751,13.379636,0.12342344,1620000000000 ,1620000000000 ,1620000000000 ,1616812489200 -1616812489225 ,112.5685593,26.87560862,58.04803467,203.245428,206.2031648,13.379588,0.124345627,1620000000000 ,1620000000000 ,1620000000000 ,1616812489210 -1616812489236 ,112.5685587,26.8756075,58.0487709,203.2387071,206.1953738,13.378175,0.124333283,1620000000000 ,1620000000000 ,1620000000000 ,1616812489220 -1616812489248 ,112.5685582,26.87560639,58.04953003,203.2358384,206.1827072,13.37688,0.124317823,1620000000000 ,1620000000000 ,1620000000000 ,1616812489230 -1616812489256 ,112.5685576,26.87560527,58.05034637,203.2300191,206.176984,13.376625,0.124317143,1620000000000 ,1620000000000 ,1620000000000 ,1616812489240 -1616812489265 ,112.5685571,26.87560415,58.05122375,203.2247189,206.1599291,13.374637,0.124300023,1620000000000 ,1620000000000 ,1620000000000 ,1616812489250 -1616812489275 ,112.5685565,26.87560304,58.05215454,203.2198285,206.1521624,13.373642,0.124288843,1620000000000 ,1620000000000 ,1620000000000 ,1616812489260 -1616812489286 ,112.568556,26.87560192,58.05311584,203.2138452,206.1511111,13.372903,0.124283651,1620000000000 ,1620000000000 ,1620000000000 ,1616812489270 -1616812489297 ,112.5685554,26.87560081,58.05408096,203.2086816,206.1468924,13.371341,0.124271623,1620000000000 ,1620000000000 ,1620000000000 ,1616812489280 -1616812489306 ,112.5685549,26.87559969,58.05507278,203.2023432,206.1394014,13.369078,0.124253178,1620000000000 ,1620000000000 ,1620000000000 ,1616812489290 -1616812489327 ,112.5685544,26.87559858,58.05607605,203.1981904,206.1313806,13.368169,0.124238918,1620000000000 ,1620000000000 ,1620000000000 ,1616812489300 -1616812489329 ,112.5685538,26.87559746,58.05707169,203.1931361,206.1260898,13.367488,0.124230705,1620000000000 ,1620000000000 ,1620000000000 ,1616812489310 -1616812489335 ,112.5685533,26.87559635,58.05803299,203.1871255,206.1224672,13.3672695,0.124229838,1620000000000 ,1620000000000 ,1620000000000 ,1616812489320 -1616812489346 ,112.5685527,26.87559523,58.05897903,203.1783555,206.1182152,13.36572,0.124214424,1620000000000 ,1620000000000 ,1620000000000 ,1616812489330 -1616812489357 ,112.5685522,26.87559412,58.05994797,203.171498,206.1134533,13.363515,0.124195071,1620000000000 ,1620000000000 ,1620000000000 ,1616812489340 -1616812489366 ,112.5685516,26.875593,58.06095886,203.1640941,206.11299,13.361238,0.12417902,1620000000000 ,1620000000000 ,1620000000000 ,1616812489350 -1616812489376 ,112.5685511,26.87559189,58.06200409,203.1578377,206.1032734,13.359987,0.124165267,1620000000000 ,1620000000000 ,1620000000000 ,1616812489360 -1616812489388 ,112.5685505,26.87559077,58.06303406,203.1533571,206.0923632,13.360155,0.124158118,1620000000000 ,1620000000000 ,1620000000000 ,1616812489370 -1616812489400 ,112.56855,26.87558965,58.06402588,203.1486579,206.0859707,13.360499,0.124158957,1620000000000 ,1620000000000 ,1620000000000 ,1616812489380 -1616812489411 ,112.5685494,26.87558854,58.06496048,203.1437401,206.0802405,13.360168,0.124153894,1620000000000 ,1620000000000 ,1620000000000 ,1616812489390 -1616812489417 ,112.5685489,26.87558742,58.06586075,203.13691,206.0747188,13.357959,0.124135658,1620000000000 ,1620000000000 ,1620000000000 ,1616812489400 -1616812489427 ,112.5685483,26.87558631,58.06674194,203.1300798,206.0719067,13.356887,0.124120574,1620000000000 ,1620000000000 ,1620000000000 ,1616812489410 -1616812489436 ,112.5685478,26.8755852,58.06759644,203.1238233,206.0645619,13.35579,0.12410801,1620000000000 ,1620000000000 ,1620000000000 ,1616812489420 -1616812489447 ,112.5685473,26.87558408,58.06838608,203.1175942,206.0577563,13.354955,0.124092669,1620000000000 ,1620000000000 ,1620000000000 ,1616812489430 -1616812489458 ,112.5685467,26.87558297,58.06909561,203.1102722,206.0537544,13.356146,0.124098953,1620000000000 ,1620000000000 ,1620000000000 ,1616812489440 -1616812489468 ,112.5685462,26.87558186,58.06932449,203.1012017,206.038208,13.355987,0.123537718,1620000000000 ,1620000000000 ,1620000000000 ,1616812489450 -1616812489477 ,112.5685456,26.87558075,58.0691185,203.0919673,206.0266981,13.355599,0.122975442,1620000000000 ,1620000000000 ,1620000000000 ,1616812489460 -1616812489488 ,112.5685451,26.87557965,58.06892395,203.0828422,206.0249634,13.353505,0.122960402,1620000000000 ,1620000000000 ,1620000000000 ,1616812489470 -1616812489497 ,112.5685445,26.87557854,58.06874847,203.0741815,206.0168505,13.352574,0.122947604,1620000000000 ,1620000000000 ,1620000000000 ,1616812489480 -1616812489508 ,112.568544,26.87557744,58.06858063,203.06451,206.0073904,13.351653,0.122935978,1620000000000 ,1620000000000 ,1620000000000 ,1616812489490 -1616812489517 ,112.5685435,26.87557633,58.06844711,203.0561771,205.9970992,13.351067,0.122927054,1620000000000 ,1620000000000 ,1620000000000 ,1616812489500 -1616812489529 ,112.5685429,26.87557523,58.06835938,203.0485546,205.9875287,13.349375,0.122914807,1620000000000 ,1620000000000 ,1620000000000 ,1616812489510 -1616812489539 ,112.5685424,26.87557412,58.0683136,203.038965,205.979115,13.348407,0.122904641,1620000000000 ,1620000000000 ,1620000000000 ,1616812489520 -1616812489567 ,112.5685419,26.87557302,58.06832886,203.0292389,205.973956,13.347003,0.122891109,1620000000000 ,1620000000000 ,1620000000000 ,1616812489530 -1616812489569 ,112.5685413,26.87557191,58.06842041,203.0199225,205.9608468,13.346646,0.122884137,1620000000000 ,1620000000000 ,1620000000000 ,1616812489540 -1616812489571 ,112.5685408,26.87557081,58.068573,203.0098684,205.9486489,13.344665,0.122868371,1620000000000 ,1620000000000 ,1620000000000 ,1616812489550 -1616812489578 ,112.5685402,26.8755697,58.06877136,203.0014536,205.9404857,13.3433485,0.122857651,1620000000000 ,1620000000000 ,1620000000000 ,1616812489560 -1616812489588 ,112.5685397,26.8755686,58.06900024,202.989897,205.9338633,13.341358,0.122840799,1620000000000 ,1620000000000 ,1620000000000 ,1616812489570 -1616812489597 ,112.5685392,26.87556749,58.0692749,202.9795424,205.9261821,13.3397875,0.122820562,1620000000000 ,1620000000000 ,1620000000000 ,1616812489580 -1616812489608 ,112.5685386,26.87556639,58.06961441,202.9700348,205.9140009,13.33899,0.12281403,1620000000000 ,1620000000000 ,1620000000000 ,1616812489590 -1616812489620 ,112.5685381,26.87556528,58.06999969,202.9596529,205.9067371,13.337741,0.122803056,1620000000000 ,1620000000000 ,1620000000000 ,1616812489600 -1616812489631 ,112.5685376,26.87556418,58.07042694,202.9494349,205.8981097,13.336323,0.122792189,1620000000000 ,1620000000000 ,1620000000000 ,1616812489610 -1616812489639 ,112.568537,26.87556307,58.07091904,202.9387252,205.8925301,13.333639,0.122773388,1620000000000 ,1620000000000 ,1620000000000 ,1616812489620 -1616812489649 ,112.5685365,26.87556197,58.07148743,202.9308295,205.8776437,13.332201,0.122754453,1620000000000 ,1620000000000 ,1620000000000 ,1616812489630 -1616812489659 ,112.568536,26.87556087,58.07209778,202.9180434,205.8611589,13.3306265,0.122739732,1620000000000 ,1620000000000 ,1620000000000 ,1616812489640 -1616812489669 ,112.5685354,26.87555976,58.07271957,202.9083445,205.8545822,13.329225,0.122728354,1620000000000 ,1620000000000 ,1620000000000 ,1616812489650 -1616812489679 ,112.5685349,26.87555866,58.07334518,202.8979626,205.8459609,13.328687,0.122721446,1620000000000 ,1620000000000 ,1620000000000 ,1616812489660 -1616812489689 ,112.5685343,26.87555755,58.07401276,202.8866518,205.8384489,13.327202,0.122708145,1620000000000 ,1620000000000 ,1620000000000 ,1616812489670 -1616812489699 ,112.5685338,26.87555645,58.07474518,202.8757508,205.8224562,13.325412,0.122694442,1620000000000 ,1620000000000 ,1620000000000 ,1616812489680 -1616812489713 ,112.5685333,26.87555534,58.07548904,202.8662159,205.8058987,13.32342,0.122675788,1620000000000 ,1620000000000 ,1620000000000 ,1616812489690 -1616812489720 ,112.5685327,26.87555424,58.07621765,202.8564624,205.7955464,13.32178,0.122657561,1620000000000 ,1620000000000 ,1620000000000 ,1616812489700 -1616812489731 ,112.5685322,26.87555313,58.07692719,202.846463,205.7817981,13.320613,0.122644231,1620000000000 ,1620000000000 ,1620000000000 ,1616812489710 -1616812489739 ,112.5685317,26.87555203,58.07762527,202.83701,205.7746252,13.3213,0.122646967,1620000000000 ,1620000000000 ,1620000000000 ,1616812489720 -1616812489750 ,112.5685311,26.87555093,58.07829666,202.8269287,205.7639115,13.321089,0.122642417,1620000000000 ,1620000000000 ,1620000000000 ,1616812489730 -1616812489759 ,112.5685306,26.87554982,58.07894135,202.8157818,205.7492965,13.319073,0.122629846,1620000000000 ,1620000000000 ,1620000000000 ,1616812489740 -1616812489771 ,112.5685301,26.87554872,58.07955933,202.8067386,205.7351572,13.317118,0.122607547,1620000000000 ,1620000000000 ,1620000000000 ,1616812489750 -1616812489781 ,112.5685295,26.87554761,58.08013535,202.7966846,205.7206457,13.316871,0.122598793,1620000000000 ,1620000000000 ,1620000000000 ,1616812489760 -1616812489791 ,112.568529,26.87554651,58.08063889,202.787177,205.7067497,13.315193,0.122580241,1620000000000 ,1620000000000 ,1620000000000 ,1616812489770 -1616812489801 ,112.5685285,26.8755454,58.08106613,202.7778059,205.6964154,13.315186,0.122577246,1620000000000 ,1620000000000 ,1620000000000 ,1616812489780 -1616812489809 ,112.568528,26.8755443,58.08144379,202.7684896,205.6860736,13.314741,0.122571843,1620000000000 ,1620000000000 ,1620000000000 ,1616812489790 -1616812489821 ,112.5685274,26.87554319,58.08179474,202.7589,205.6730155,13.313966,0.122560861,1620000000000 ,1620000000000 ,1620000000000 ,1616812489800 -1616812489831 ,112.5685269,26.87554209,58.08211136,202.7493104,205.6634944,13.312795,0.122549344,1620000000000 ,1620000000000 ,1620000000000 ,1616812489810 -1616812489840 ,112.5685264,26.87554098,58.08240128,202.7411415,205.6545885,13.310842,0.12252978,1620000000000 ,1620000000000 ,1620000000000 ,1616812489820 -1616812489855 ,112.5685258,26.87553988,58.08265305,202.731224,205.6465759,13.309545,0.122513798,1620000000000 ,1620000000000 ,1620000000000 ,1616812489830 -1616812489874 ,112.5685253,26.87553878,58.08286667,202.7205689,205.6374125,13.308393,0.122500782,1620000000000 ,1620000000000 ,1620000000000 ,1616812489840 -1616812489878 ,112.5685248,26.87553767,58.0830574,202.7090123,205.623252,13.306893,0.122487284,1620000000000 ,1620000000000 ,1620000000000 ,1616812489850 -1616812489882 ,112.5685242,26.87553657,58.08321762,202.6985211,205.6105223,13.305843,0.122473182,1620000000000 ,1620000000000 ,1620000000000 ,1616812489860 -1616812489891 ,112.5685237,26.87553546,58.08333206,202.6887129,205.6032866,13.305173,0.12246253,1620000000000 ,1620000000000 ,1620000000000 ,1616812489870 -1616812489901 ,112.5685232,26.87553436,58.0833931,202.6787955,205.5909862,13.304261,0.12244822,1620000000000 ,1620000000000 ,1620000000000 ,1616812489880 -1616812489911 ,112.5685227,26.87553325,58.08340073,202.6701075,205.582813,13.303629,0.122442287,1620000000000 ,1620000000000 ,1620000000000 ,1616812489890 -1616812489924 ,112.5685221,26.87553215,58.08338165,202.6604633,205.5669268,13.303827,0.122435415,1620000000000 ,1620000000000 ,1620000000000 ,1616812489900 -1616812489935 ,112.5685216,26.87553104,58.08333969,202.6508737,205.5522793,13.302601,0.122425165,1620000000000 ,1620000000000 ,1620000000000 ,1616812489910 -1616812489945 ,112.5685211,26.87552994,58.08327484,202.6412841,205.5394593,13.301168,0.122405288,1620000000000 ,1620000000000 ,1620000000000 ,1616812489920 -1616812489953 ,112.5685205,26.87552884,58.08316803,202.6325688,205.5304314,13.300904,0.122399489,1620000000000 ,1620000000000 ,1620000000000 ,1616812489930 -1616812489962 ,112.56852,26.87552773,58.08298492,202.622788,205.5185838,13.300366,0.122387132,1620000000000 ,1620000000000 ,1620000000000 ,1616812489940 -1616812489980 ,112.5685195,26.87552663,58.08274841,202.612652,205.5094921,13.300846,0.122387043,1620000000000 ,1620000000000 ,1620000000000 ,1616812489950 -1616812489982 ,112.568519,26.87552552,58.08247375,202.6015871,205.4976799,13.300386,0.122378556,1620000000000 ,1620000000000 ,1620000000000 ,1616812489960 -1616812489993 ,112.5685184,26.87552442,58.08221054,202.5915877,205.4933429,13.299219,0.12236836,1620000000000 ,1620000000000 ,1620000000000 ,1616812489970 -1616812490004 ,112.5685179,26.87552331,58.08195877,202.5807413,205.4794576,13.298011,0.122356613,1620000000000 ,1620000000000 ,1620000000000 ,1616812489980 -1616812490013 ,112.5685174,26.87552221,58.08170319,202.571343,205.4695616,13.296555,0.122336714,1620000000000 ,1620000000000 ,1620000000000 ,1616812489990 -1616812490024 ,112.5685169,26.8755211,58.08142471,202.561125,205.4618062,13.296545,0.122333486,1620000000000 ,1620000000000 ,1620000000000 ,1616812490000 -1616812490033 ,112.5685163,26.87552,58.08113098,202.5512895,205.4483444,13.296529,0.122329234,1620000000000 ,1620000000000 ,1620000000000 ,1616812490020 -1616812490046 ,112.5685158,26.87551889,58.08086395,202.5432299,205.4397705,13.296636,0.122327497,1620000000000 ,1620000000000 ,1620000000000 ,1616812490030 -1616812490053 ,112.5685153,26.87551779,58.08064651,202.5345966,205.4327091,13.295072,0.122314958,1620000000000 ,1620000000000 ,1620000000000 ,1616812490040 -1616812490064 ,112.5685148,26.87551669,58.08049774,202.5249797,205.4265376,13.291739,0.122293274,1620000000000 ,1620000000000 ,1620000000000 ,1616812490050 -1616812490073 ,112.5685142,26.87551558,58.08045959,202.5150349,205.4142566,13.288827,0.122265151,1620000000000 ,1620000000000 ,1620000000000 ,1616812490060 -1616812490083 ,112.5685132,26.87551337,58.08065796,202.4941072,205.3982877,13.288205,0.244504422,1620000000000 ,1620000000000 ,1620000000000 ,1616812490070 -1616812490093 ,112.5685127,26.87551227,58.08084488,202.4832062,205.3862265,13.287604,0.122253167,1620000000000 ,1620000000000 ,1620000000000 ,1616812490080 -1616812490113 ,112.5685121,26.87551116,58.08112335,202.4730702,205.3821768,13.284918,0.122234653,1620000000000 ,1620000000000 ,1620000000000 ,1616812490090 -1616812490117 ,112.5685116,26.87551006,58.08150101,202.4623332,205.3743771,13.283224,0.122221489,1620000000000 ,1620000000000 ,1620000000000 ,1616812490100 -1616812490125 ,112.5685111,26.87550896,58.0819664,202.4513229,205.3681735,13.280428,0.122199929,1620000000000 ,1620000000000 ,1620000000000 ,1616812490110 -1616812490136 ,112.5685106,26.87550785,58.08246994,202.4413781,205.3587598,13.278724,0.122183632,1620000000000 ,1620000000000 ,1620000000000 ,1616812490120 -1616812490145 ,112.56851,26.87550675,58.08298492,202.4332639,205.3495617,13.278105,0.122175322,1620000000000 ,1620000000000 ,1620000000000 ,1616812490130 -1616812490155 ,112.5685095,26.87550564,58.08351517,202.4241114,205.3392033,13.277419,0.122170862,1620000000000 ,1620000000000 ,1620000000000 ,1616812490140 -1616812490165 ,112.568509,26.87550454,58.08409119,202.4132651,205.3297994,13.275491,0.122156573,1620000000000 ,1620000000000 ,1620000000000 ,1616812490150 -1616812490174 ,112.5685085,26.87550343,58.08470535,202.4038121,205.3181739,13.273833,0.122141415,1620000000000 ,1620000000000 ,1620000000000 ,1616812490160 -1616812490184 ,112.5685079,26.87550233,58.08530426,202.3943591,205.3130206,13.272485,0.12212933,1620000000000 ,1620000000000 ,1620000000000 ,1616812490170 -1616812490195 ,112.5685074,26.87550123,58.08585739,202.385835,205.3086766,13.270913,0.122116134,1620000000000 ,1620000000000 ,1620000000000 ,1616812490180 -1616812490205 ,112.5685069,26.87550012,58.08640289,202.3743603,205.2991052,13.268376,0.122094857,1620000000000 ,1620000000000 ,1620000000000 ,1616812490190 -1616812490216 ,112.5685064,26.87549902,58.08740616,202.3725572,205.1986316,13.240169,0.121651293,1620000000000 ,1620000000000 ,1620000000000 ,1616812490200 -1616812490225 ,112.5685059,26.87549793,58.08901215,202.3633227,205.0647094,13.239042,0.120975545,1620000000000 ,1620000000000 ,1620000000000 ,1616812490210 -1616812490235 ,112.5685054,26.87549683,58.09058762,202.3540883,205.0600538,13.237659,0.120961638,1620000000000 ,1620000000000 ,1620000000000 ,1616812490220 -1616812490248 ,112.5685049,26.87549573,58.09212112,202.3437611,205.050246,13.23603,0.120949429,1620000000000 ,1620000000000 ,1620000000000 ,1616812490230 -1616812490255 ,112.5685043,26.87549464,58.09361267,202.334554,205.0415118,13.234909,0.120934255,1620000000000 ,1620000000000 ,1620000000000 ,1616812490240 -1616812490267 ,112.5685038,26.87549354,58.09505844,202.3252376,205.0282952,13.233268,0.120920833,1620000000000 ,1620000000000 ,1620000000000 ,1616812490250 -1616812490282 ,112.5685033,26.87549245,58.09644699,202.3149923,205.0172565,13.231348,0.120900032,1620000000000 ,1620000000000 ,1620000000000 ,1616812490260 -1616812490287 ,112.5685028,26.87549135,58.09776688,202.3046924,205.0125862,13.229399,0.120880905,1620000000000 ,1620000000000 ,1620000000000 ,1616812490270 -1616812490303 ,112.5685023,26.87549026,58.09898376,202.2962503,205.0045808,13.22865,0.120863973,1620000000000 ,1620000000000 ,1620000000000 ,1616812490280 -1616812490308 ,112.5685018,26.87548916,58.10009003,202.288218,204.9881785,13.229221,0.120860508,1620000000000 ,1620000000000 ,1620000000000 ,1616812490290 -1616812490320 ,112.5685013,26.87548807,58.1010704,202.2776448,204.9777003,13.229462,0.120858254,1620000000000 ,1620000000000 ,1620000000000 ,1616812490300 -1616812490327 ,112.5685008,26.87548697,58.1019249,202.2697765,204.969618,13.228359,0.120844406,1620000000000 ,1620000000000 ,1620000000000 ,1616812490310 -1616812490341 ,112.5685003,26.87548588,58.10269165,202.2599137,204.9637292,13.225896,0.120823463,1620000000000 ,1620000000000 ,1620000000000 ,1616812490320 -1616812490346 ,112.5684997,26.87548478,58.10342407,202.2489034,204.9565456,13.22402,0.120798547,1620000000000 ,1620000000000 ,1620000000000 ,1616812490330 -1616812490356 ,112.5684992,26.87548369,58.10409546,202.2392319,204.9417424,13.222571,0.12077802,1620000000000 ,1620000000000 ,1620000000000 ,1616812490340 -1616812490367 ,112.5684987,26.87548259,58.10465622,202.2322104,204.9314247,13.222511,0.120765172,1620000000000 ,1620000000000 ,1620000000000 ,1616812490350 -1616812490377 ,112.5684982,26.87548149,58.10512543,202.2226208,204.9244368,13.221416,0.120756232,1620000000000 ,1620000000000 ,1620000000000 ,1616812490360 -1616812490387 ,112.5684977,26.8754804,58.10556412,202.2118565,204.9125576,13.220282,0.120740493,1620000000000 ,1620000000000 ,1620000000000 ,1616812490370 -1616812490398 ,112.5684972,26.8754793,58.10602951,202.2004364,204.9035001,13.217868,0.12071933,1620000000000 ,1620000000000 ,1620000000000 ,1616812490380 -1616812490416 ,112.5684967,26.87547821,58.10653687,202.1913659,204.8955459,13.215304,0.120695838,1620000000000 ,1620000000000 ,1620000000000 ,1616812490390 -1616812490424 ,112.5684962,26.87547712,58.10708618,202.1820495,204.8821895,13.21192,0.120664894,1620000000000 ,1620000000000 ,1620000000000 ,1616812490400 -1616812490431 ,112.5684957,26.87547602,58.10764694,202.172214,204.8694244,13.210181,0.120642403,1620000000000 ,1620000000000 ,1620000000000 ,1616812490410 -1616812490438 ,112.5684952,26.87547493,58.10819626,202.1613131,204.8619396,13.208907,0.120625081,1620000000000 ,1620000000000 ,1620000000000 ,1616812490420 -1616812490448 ,112.5684947,26.87547383,58.10873413,202.1506306,204.8484005,13.206978,0.120606623,1620000000000 ,1620000000000 ,1620000000000 ,1616812490430 -1616812490458 ,112.5684942,26.87547274,58.10931015,202.1395384,204.838792,13.2039585,0.120579625,1620000000000 ,1620000000000 ,1620000000000 ,1616812490440 -1616812490470 ,112.5684936,26.87547164,58.10950089,202.1298395,204.9178879,13.2024145,0.120982419,1620000000000 ,1620000000000 ,1620000000000 ,1616812490450 -1616812490478 ,112.5684931,26.87547054,58.10927963,202.1211789,204.9965346,13.200429,0.12138577,1620000000000 ,1620000000000 ,1620000000000 ,1616812490460 -1616812490487 ,112.5684926,26.87546944,58.10907745,202.1117532,204.9901244,13.197813,0.121361344,1620000000000 ,1620000000000 ,1620000000000 ,1616812490470 -1616812490497 ,112.5684921,26.87546834,58.10889053,202.1023275,204.9774624,13.19561,0.121337463,1620000000000 ,1620000000000 ,1620000000000 ,1616812490480 -1616812490508 ,112.5684916,26.87546724,58.1087532,202.0937215,204.9636548,13.192917,0.121313078,1620000000000 ,1620000000000 ,1620000000000 ,1616812490490 -1616812490517 ,112.5684911,26.87546614,58.10866165,202.0849515,204.9491865,13.190616,0.121290647,1620000000000 ,1620000000000 ,1620000000000 ,1616812490500 -1616812490532 ,112.5684906,26.87546504,58.10861969,202.0765914,204.9371976,13.188951,0.121271137,1620000000000 ,1620000000000 ,1620000000000 ,1616812490510 -1616812490539 ,112.5684901,26.87546394,58.10864258,202.0662095,204.9270235,13.186906,0.121251999,1620000000000 ,1620000000000 ,1620000000000 ,1616812490520 -1616812490550 ,112.5684896,26.87546284,58.10873413,202.0567019,204.9184544,13.184164,0.121230051,1620000000000 ,1620000000000 ,1620000000000 ,1616812490530 -1616812490564 ,112.568489,26.87546174,58.10891342,202.0477953,204.9051403,13.180876,0.12120541,1620000000000 ,1620000000000 ,1620000000000 ,1616812490540 -1616812490572 ,112.5684885,26.87546064,58.10919952,202.0382331,204.890182,13.177129,0.121171117,1620000000000 ,1620000000000 ,1620000000000 ,1616812490550 -1616812490579 ,112.568488,26.87545954,58.10957718,202.0287801,204.8776195,13.1726885,0.121132717,1620000000000 ,1620000000000 ,1620000000000 ,1616812490560 -1616812490589 ,112.5684875,26.87545845,58.11001587,202.0205838,204.870409,13.170356,0.121106115,1620000000000 ,1620000000000 ,1620000000000 ,1616812490570 -1616812490598 ,112.568487,26.87545735,58.11051559,202.0100654,204.8610849,13.167286,0.121082622,1620000000000 ,1620000000000 ,1620000000000 ,1616812490580 -1616812490608 ,112.5684865,26.87545625,58.1110611,201.9997654,204.8459885,13.165216,0.121058706,1620000000000 ,1620000000000 ,1620000000000 ,1616812490590 -1616812490624 ,112.568486,26.87545515,58.11164474,201.9917331,204.8274186,13.162413,0.121035053,1620000000000 ,1620000000000 ,1620000000000 ,1616812490600 -1616812490632 ,112.5684855,26.87545405,58.1122551,201.9823894,204.8129104,13.160292,0.121014523,1620000000000 ,1620000000000 ,1620000000000 ,1616812490610 -1616812490642 ,112.568485,26.87545295,58.11289215,201.9734009,204.8037956,13.157367,0.120986596,1620000000000 ,1620000000000 ,1620000000000 ,1616812490620 -1616812490651 ,112.5684845,26.87545186,58.11353302,201.9630463,204.7986083,13.155709,0.120969882,1620000000000 ,1620000000000 ,1620000000000 ,1616812490630 -1616812490661 ,112.568484,26.87545076,58.11417007,201.9537846,204.7872878,13.152363,0.120940677,1620000000000 ,1620000000000 ,1620000000000 ,1616812490640 -1616812490673 ,112.5684834,26.87544966,58.11478424,201.9440038,204.774557,13.149965,0.120914356,1620000000000 ,1620000000000 ,1620000000000 ,1616812490650 -1616812490681 ,112.5684829,26.87544856,58.11538315,201.9343595,204.7643685,13.14729,0.120887875,1620000000000 ,1620000000000 ,1620000000000 ,1616812490660 -1616812490691 ,112.5684824,26.87544746,58.11594391,201.9264092,204.7516408,13.145975,0.120869689,1620000000000 ,1620000000000 ,1620000000000 ,1616812490670 -1616812490702 ,112.5684819,26.87544637,58.11647415,201.9164644,204.7457099,13.143118,0.120845784,1620000000000 ,1620000000000 ,1620000000000 ,1616812490680 -1616812490712 ,112.5684814,26.87544527,58.11698532,201.9071481,204.7376579,13.140881,0.120822473,1620000000000 ,1620000000000 ,1620000000000 ,1616812490690 -1616812490723 ,112.5684809,26.87544417,58.11749268,201.8968481,204.7300561,13.1371,0.120788053,1620000000000 ,1620000000000 ,1620000000000 ,1616812490700 -1616812490733 ,112.5684804,26.87544308,58.11800003,201.8846358,204.7231918,13.133775,0.120757369,1620000000000 ,1620000000000 ,1620000000000 ,1616812490710 -1616812490743 ,112.5684799,26.87544198,58.11850357,201.8731337,204.7153929,13.130114,0.120724464,1620000000000 ,1620000000000 ,1620000000000 ,1616812490720 -1616812490753 ,112.5684794,26.87544088,58.11898804,201.8610306,204.7103988,13.127306,0.120696767,1620000000000 ,1620000000000 ,1620000000000 ,1616812490740 -1616812490763 ,112.5684789,26.87543979,58.11945724,201.8519055,204.7001479,13.1244755,0.120666373,1620000000000 ,1620000000000 ,1620000000000 ,1616812490750 -1616812490774 ,112.5684784,26.87543869,58.11991119,201.8414143,204.6934058,13.12168,0.120641536,1620000000000 ,1620000000000 ,1620000000000 ,1616812490760 -1616812490785 ,112.5684779,26.87543759,58.12036514,201.8294478,204.6819021,13.119301,0.120616465,1620000000000 ,1620000000000 ,1620000000000 ,1616812490770 -1616812490803 ,112.5684769,26.8754354,58.12127686,201.8042308,-400,13.111848,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812490780 -1616812490801 ,112.5684769,26.8754354,58.12127686,201.8042308,204.6611439,13.111848,0.241143721,1620000000000 ,1620000000000 ,1620000000000 ,1616812490780 -1616812490816 ,112.5684759,26.87543321,58.12220764,201.7815272,204.6455025,13.10412,0.240990524,1620000000000 ,1620000000000 ,1620000000000 ,1616812490800 -1616812490828 ,112.5684759,26.87543321,58.12220764,201.7815272,-400,13.10412,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812490810 -1616812490844 ,112.5684749,26.87543102,58.12305832,201.7576762,204.6105604,13.101109,0.240887656,1620000000000 ,1620000000000 ,1620000000000 ,1616812490820 -1616812490849 ,112.5684744,26.87542993,58.12338257,201.7457644,204.5944936,13.099734,0.120421112,1620000000000 ,1620000000000 ,1620000000000 ,1616812490830 -1616812490855 ,112.5684739,26.87542883,58.12367249,201.7344809,204.5838418,13.09541,0.120386397,1620000000000 ,1620000000000 ,1620000000000 ,1616812490840 -1616812490865 ,112.5684734,26.87542774,58.12398148,201.723416,204.5691178,13.092293,0.120354597,1620000000000 ,1620000000000 ,1620000000000 ,1616812490850 -1616812490874 ,112.5684729,26.87542664,58.12428665,201.7097283,204.5563638,13.088349,0.120317432,1620000000000 ,1620000000000 ,1620000000000 ,1616812490860 -1616812490883 ,112.5684724,26.87542555,58.12456512,201.6976798,204.546969,13.085837,0.120288088,1620000000000 ,1620000000000 ,1620000000000 ,1616812490870 -1616812490895 ,112.5684719,26.87542446,58.12481308,201.6872979,204.5325682,13.082571,0.120258025,1620000000000 ,1620000000000 ,1620000000000 ,1616812490880 -1616812490905 ,112.5684714,26.87542336,58.12503052,201.6754134,204.5197123,13.080031,0.120229989,1620000000000 ,1620000000000 ,1620000000000 ,1616812490890 -1616812490916 ,112.5684709,26.87542227,58.12523651,201.6652774,204.5034339,13.077058,0.120201244,1620000000000 ,1620000000000 ,1620000000000 ,1616812490900 -1616812490925 ,112.5684704,26.87542117,58.12543488,201.6547316,204.4938459,13.07346,0.120167452,1620000000000 ,1620000000000 ,1620000000000 ,1616812490910 -1616812490934 ,112.5684699,26.87542008,58.12561417,201.6440492,204.4861329,13.071373,0.12014435,1620000000000 ,1620000000000 ,1620000000000 ,1616812490920 -1616812490947 ,112.5684694,26.87541899,58.12574768,201.6328203,204.4756196,13.068502,0.12011663,1620000000000 ,1620000000000 ,1620000000000 ,1616812490930 -1616812490955 ,112.5684694,26.87541899,58.12574768,201.6328203,-400,13.068502,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812490940 -1616812490964 ,112.5684684,26.8754168,58.12591171,201.6102807,204.4511803,13.0608635,0.240121806,1620000000000 ,1620000000000 ,1620000000000 ,1616812490950 -1616812490976 ,112.5684679,26.87541571,58.12595749,201.5993797,204.4343504,13.057117,0.12000297,1620000000000 ,1620000000000 ,1620000000000 ,1616812490960 -1616812490991 ,112.5684674,26.87541462,58.12597656,201.5886154,204.4258707,13.054884,0.119976019,1620000000000 ,1620000000000 ,1620000000000 ,1616812490970 -1616812490995 ,112.5684669,26.87541352,58.12595367,201.5759385,204.4068004,13.05289,0.119952833,1620000000000 ,1620000000000 ,1620000000000 ,1616812490980 -1616812491005 ,112.5684664,26.87541243,58.12588882,201.5646277,204.3942195,13.051488,0.119935103,1620000000000 ,1620000000000 ,1620000000000 ,1616812490990 -1616812491015 ,112.5684659,26.87541134,58.12577438,201.5548742,204.3806221,13.050227,0.119918168,1620000000000 ,1620000000000 ,1620000000000 ,1616812491000 -1616812491026 ,112.5684654,26.87541025,58.12563705,201.5447655,204.3691152,13.046272,0.119885427,1620000000000 ,1620000000000 ,1620000000000 ,1616812491010 -1616812491035 ,112.5684649,26.87540916,58.12551498,201.5325532,204.3575309,13.041516,0.119842532,1620000000000 ,1620000000000 ,1620000000000 ,1616812491020 -1616812491045 ,112.5684644,26.87540806,58.1254425,201.5217068,204.3423554,13.036606,0.11979671,1620000000000 ,1620000000000 ,1620000000000 ,1616812491030 -1616812491055 ,112.5684639,26.87540697,58.12538528,201.5113249,204.3260557,13.032999,0.11975355,1620000000000 ,1620000000000 ,1620000000000 ,1616812491040 -1616812491066 ,112.5684634,26.87540588,58.12529373,201.5006698,204.3168562,13.032078,0.119737673,1620000000000 ,1620000000000 ,1620000000000 ,1616812491050 -1616812491079 ,112.568463,26.87540479,58.1251564,201.4914081,204.3065248,13.0305605,0.11972186,1620000000000 ,1620000000000 ,1620000000000 ,1616812491060 -1616812491088 ,112.5684625,26.8754037,58.12500381,201.4795782,204.2929458,13.027996,0.119695302,1620000000000 ,1620000000000 ,1620000000000 ,1616812491070 -1616812491103 ,112.568462,26.87540261,58.12487793,201.4672839,204.2823877,13.024794,0.119665087,1620000000000 ,1620000000000 ,1620000000000 ,1616812491080 -1616812491117 ,112.5684615,26.87540152,58.12478256,201.4548803,204.2761167,13.021511,0.119633796,1620000000000 ,1620000000000 ,1620000000000 ,1616812491090 -1616812491119 ,112.568461,26.87540043,58.12472153,201.4450994,204.2707854,13.018818,0.119608115,1620000000000 ,1620000000000 ,1620000000000 ,1616812491100 -1616812491126 ,112.5684605,26.87539934,58.12467575,201.4347722,204.2516075,13.014997,0.119572029,1620000000000 ,1620000000000 ,1620000000000 ,1616812491110 -1616812491139 ,112.56846,26.87539825,58.12464142,201.4236526,204.2338976,13.012656,0.11954336,1620000000000 ,1620000000000 ,1620000000000 ,1616812491120 -1616812491148 ,112.5684595,26.87539716,58.12461853,201.4116861,204.2239047,13.009719,0.119515424,1620000000000 ,1620000000000 ,1620000000000 ,1616812491130 -1616812491157 ,112.568459,26.87539607,58.12460709,201.3988454,204.218534,13.007497,0.119491106,1620000000000 ,1620000000000 ,1620000000000 ,1616812491140 -1616812491168 ,112.5684585,26.87539498,58.12464523,201.3888733,204.2123362,13.005229,0.119471679,1620000000000 ,1620000000000 ,1620000000000 ,1616812491150 -1616812491178 ,112.568458,26.87539389,58.12473679,201.3767156,204.1981728,13.002042,0.119444318,1620000000000 ,1620000000000 ,1620000000000 ,1616812491160 -1616812491190 ,112.5684576,26.8753928,58.12490082,201.3653775,204.1853723,12.998636,0.119412363,1620000000000 ,1620000000000 ,1620000000000 ,1616812491170 -1616812491201 ,112.5684571,26.87539171,58.12511826,201.3547224,204.1678902,12.993986,0.119374175,1620000000000 ,1620000000000 ,1620000000000 ,1616812491180 -1616812491208 ,112.5684566,26.87539062,58.12538147,201.3451874,204.1570258,12.9917555,0.119344978,1620000000000 ,1620000000000 ,1620000000000 ,1616812491190 -1616812491217 ,112.5684561,26.87538953,58.12557602,201.3300517,204.2698178,13.009786,0.119619309,1620000000000 ,1620000000000 ,1620000000000 ,1616812491200 -1616812491231 ,112.5684556,26.87538844,58.12559891,201.3175388,204.4463179,13.006424,0.120086875,1620000000000 ,1620000000000 ,1620000000000 ,1616812491210 -1616812491239 ,112.5684551,26.87538735,58.12568283,201.3066378,204.4323375,13.002529,0.120055396,1620000000000 ,1620000000000 ,1620000000000 ,1616812491220 -1616812491250 ,112.5684546,26.87538625,58.12582016,201.2957642,204.4181739,12.998823,0.120017272,1620000000000 ,1620000000000 ,1620000000000 ,1616812491230 -1616812491261 ,112.5684541,26.87538516,58.12600327,201.2841802,204.412592,12.994317,0.119977948,1620000000000 ,1620000000000 ,1620000000000 ,1616812491240 -1616812491269 ,112.5684536,26.87538407,58.12624359,201.2737436,204.3978207,12.990826,0.119945221,1620000000000 ,1620000000000 ,1620000000000 ,1616812491250 -1616812491279 ,112.5684531,26.87538298,58.1265564,201.2625148,204.3870083,12.987722,0.119916541,1620000000000 ,1620000000000 ,1620000000000 ,1616812491260 -1616812491290 ,112.5684526,26.87538188,58.12688828,201.2517777,204.3697309,12.9851675,0.119891386,1620000000000 ,1620000000000 ,1620000000000 ,1616812491270 -1616812491298 ,112.5684521,26.87538079,58.1272049,201.2407128,204.3573793,12.982935,0.119866524,1620000000000 ,1620000000000 ,1620000000000 ,1616812491280 -1616812491311 ,112.5684516,26.8753797,58.1275177,201.2298938,204.3464414,12.980055,0.119841936,1620000000000 ,1620000000000 ,1620000000000 ,1616812491290 -1616812491322 ,112.5684511,26.87537861,58.12784958,201.2189928,204.3293779,12.9765,0.11980797,1620000000000 ,1620000000000 ,1620000000000 ,1616812491300 -1616812491332 ,112.5684506,26.87537752,58.12818909,201.2078733,204.3183597,12.97305,0.11977682,1620000000000 ,1620000000000 ,1620000000000 ,1616812491310 -1616812491339 ,112.5684501,26.87537643,58.12851334,201.1973548,204.3097704,12.969626,0.11973999,1620000000000 ,1620000000000 ,1620000000000 ,1616812491320 -1616812491352 ,112.5684497,26.87537533,58.12882614,201.185962,204.2999735,12.965928,0.119709699,1620000000000 ,1620000000000 ,1620000000000 ,1616812491330 -1616812491360 ,112.5684492,26.87537424,58.12911987,201.1739682,204.288739,12.962407,0.119674026,1620000000000 ,1620000000000 ,1620000000000 ,1616812491340 -1616812491371 ,112.5684487,26.87537315,58.12936783,201.1628487,204.2760225,12.96062,0.119648262,1620000000000 ,1620000000000 ,1620000000000 ,1616812491350 -1616812491380 ,112.5684482,26.87537206,58.12955093,201.15121,204.2650707,12.95847,0.1196249,1620000000000 ,1620000000000 ,1620000000000 ,1616812491360 -1616812491389 ,112.5684477,26.87537097,58.12969971,201.1401998,204.2560515,12.955374,0.119596924,1620000000000 ,1620000000000 ,1620000000000 ,1616812491370 -1616812491402 ,112.5684472,26.87536988,58.12982559,201.12949,204.2407826,12.951167,0.119561145,1620000000000 ,1620000000000 ,1620000000000 ,1616812491380 -1616812491412 ,112.5684467,26.87536879,58.12992477,201.11807,204.2291329,12.947757,0.119520496,1620000000000 ,1620000000000 ,1620000000000 ,1616812491390 -1616812491420 ,112.5684462,26.8753677,58.12998962,201.1050653,204.2132442,12.943988,0.119483705,1620000000000 ,1620000000000 ,1620000000000 ,1616812491400 -1616812491431 ,112.5684457,26.87536661,58.1300087,201.0923885,204.2046895,12.941889,0.11945775,1620000000000 ,1620000000000 ,1620000000000 ,1616812491410 -1616812491440 ,112.5684452,26.87536552,58.12999725,201.0798755,204.1974026,12.939888,0.11943795,1620000000000 ,1620000000000 ,1620000000000 ,1616812491420 -1616812491450 ,112.5684447,26.87536443,58.12995911,201.0669528,204.1820112,12.937136,0.119408713,1620000000000 ,1620000000000 ,1620000000000 ,1616812491430 -1616812491465 ,112.5684443,26.87536334,58.12995911,201.0543853,204.1680968,12.933223,0.119375729,1620000000000 ,1620000000000 ,1620000000000 ,1616812491440 -1616812491472 ,112.5684438,26.87536226,58.13010025,201.0438941,204.0283494,12.929708,0.119042144,1620000000000 ,1620000000000 ,1620000000000 ,1616812491450 -1616812491482 ,112.5684433,26.87536117,58.13033676,201.0329931,203.8889789,12.927912,0.118720582,1620000000000 ,1620000000000 ,1620000000000 ,1616812491460 -1616812491492 ,112.5684428,26.87536009,58.13050842,201.0218463,203.8816713,12.925775,0.118700805,1620000000000 ,1620000000000 ,1620000000000 ,1616812491470 -1616812491502 ,112.5684423,26.875359,58.13061523,201.0091421,203.8730515,12.923456,0.118673286,1620000000000 ,1620000000000 ,1620000000000 ,1616812491480 -1616812491513 ,112.5684419,26.87535792,58.13071823,200.9948807,203.8627461,12.918771,0.118635768,1620000000000 ,1620000000000 ,1620000000000 ,1616812491490 -1616812491522 ,112.5684414,26.87535683,58.1308403,200.9805373,203.8457066,12.915146,0.11859478,1620000000000 ,1620000000000 ,1620000000000 ,1616812491500 -1616812491540 ,112.5684409,26.87535575,58.1309433,200.9671501,203.8371496,12.91268,0.118570813,1620000000000 ,1620000000000 ,1620000000000 ,1616812491510 -1616812491546 ,112.5684404,26.87535466,58.13100052,200.9559486,203.8309916,12.910431,0.118544011,1620000000000 ,1620000000000 ,1620000000000 ,1616812491520 -1616812491552 ,112.5684399,26.87535358,58.13104248,200.942862,203.8167183,12.908356,0.11852379,1620000000000 ,1620000000000 ,1620000000000 ,1616812491530 -1616812491563 ,112.5684395,26.87535249,58.13110733,200.9287918,203.7991986,12.905266,0.118494897,1620000000000 ,1620000000000 ,1620000000000 ,1616812491540 -1616812491571 ,112.568439,26.87535141,58.13121033,200.9169346,203.7821883,12.902028,0.118465256,1620000000000 ,1620000000000 ,1620000000000 ,1616812491550 -1616812491582 ,112.5684385,26.87535033,58.13134003,200.9031376,203.7659472,12.897269,0.118424217,1620000000000 ,1620000000000 ,1620000000000 ,1616812491560 -1616812491594 ,112.568438,26.87534924,58.13149261,200.891417,203.7569409,12.89383,0.118388609,1620000000000 ,1620000000000 ,1620000000000 ,1616812491570 -1616812491602 ,112.5684375,26.87534816,58.13167191,200.879068,203.7434503,12.891444,0.118364067,1620000000000 ,1620000000000 ,1620000000000 ,1616812491580 -1616812491614 ,112.5684371,26.87534708,58.13189316,200.8676206,203.7282021,12.88855,0.118335738,1620000000000 ,1620000000000 ,1620000000000 ,1616812491590 -1616812491624 ,112.5684366,26.87534599,58.132164,200.855053,203.7095097,12.885091,0.11830785,1620000000000 ,1620000000000 ,1620000000000 ,1616812491600 -1616812491632 ,112.5684361,26.87534491,58.13246155,200.8413927,203.6955566,12.881489,0.118275713,1620000000000 ,1620000000000 ,1620000000000 ,1616812491610 -1616812491650 ,112.5684356,26.87534383,58.13278961,200.8295081,203.6868276,12.878148,0.118240217,1620000000000 ,1620000000000 ,1620000000000 ,1616812491620 -1616812491657 ,112.5684352,26.87534274,58.13313293,200.8184979,203.6718296,12.874789,0.118211163,1620000000000 ,1620000000000 ,1620000000000 ,1616812491630 -1616812491664 ,112.5684347,26.87534166,58.13348007,200.8077608,203.6501225,12.871862,0.118180742,1620000000000 ,1620000000000 ,1620000000000 ,1616812491640 -1616812491676 ,112.5684342,26.87534058,58.13381958,200.7947561,203.6345604,12.869355,0.118154751,1620000000000 ,1620000000000 ,1620000000000 ,1616812491650 -1616812491684 ,112.5684338,26.8753395,58.13412857,200.7836639,203.6219073,12.865506,0.118119733,1620000000000 ,1620000000000 ,1620000000000 ,1616812491670 -1616812491695 ,112.5684333,26.87533841,58.13441467,200.7734733,203.6084823,12.862328,0.11808587,1620000000000 ,1620000000000 ,1620000000000 ,1616812491680 -1616812491705 ,112.5684328,26.87533733,58.13470078,200.762463,203.5892888,12.85909,0.118051869,1620000000000 ,1620000000000 ,1620000000000 ,1616812491680 -1616812491716 ,112.5684323,26.87533625,58.13498306,200.7503872,203.5741549,12.85615,0.118023538,1620000000000 ,1620000000000 ,1620000000000 ,1616812491700 -1616812491724 ,112.5684314,26.87533409,58.13542557,200.7265635,203.5565932,12.851076,0.235972519,1620000000000 ,1620000000000 ,1620000000000 ,1616812491710 -1616812491733 ,112.5684309,26.87533301,58.13559723,200.7167281,203.5390278,12.847684,0.11793729,1620000000000 ,1620000000000 ,1620000000000 ,1616812491720 -1616812491746 ,112.5684309,26.87533301,58.13559723,200.7167281,-400,12.847684,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812491730 -1616812491754 ,112.56843,26.87533085,58.13586807,200.6969205,203.5158363,12.84079,0.235770981,1620000000000 ,1620000000000 ,1620000000000 ,1616812491740 -1616812491765 ,112.5684295,26.87532976,58.135952,200.685036,203.4991671,12.837845,0.117835173,1620000000000 ,1620000000000 ,1620000000000 ,1616812491750 -1616812491775 ,112.568429,26.87532868,58.13600922,200.674818,203.487697,12.834962,0.117808326,1620000000000 ,1620000000000 ,1620000000000 ,1616812491760 -1616812491784 ,112.568429,26.87532868,58.13600922,200.674818,-400,12.834962,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812491770 -1616812491795 ,112.5684281,26.87532652,58.13608932,200.6515954,203.4743182,12.82961,0.235537722,1620000000000 ,1620000000000 ,1620000000000 ,1616812491780 -1616812491805 ,112.5684276,26.87532544,58.13609695,200.6394376,203.4579179,12.825453,0.117716243,1620000000000 ,1620000000000 ,1620000000000 ,1616812491790 -1616812491815 ,112.5684272,26.87532436,58.13608932,200.6289191,203.4473826,12.822309,0.117677429,1620000000000 ,1620000000000 ,1620000000000 ,1616812491800 -1616812491824 ,112.5684267,26.87532328,58.13603592,200.6175264,203.4376722,12.819656,0.117650211,1620000000000 ,1620000000000 ,1620000000000 ,1616812491810 -1616812491834 ,112.5684262,26.87532221,58.13594437,200.6073084,203.4226057,12.816889,0.117620192,1620000000000 ,1620000000000 ,1620000000000 ,1616812491820 -1616812491844 ,112.5684258,26.87532113,58.13585281,200.5976642,203.4113478,12.814663,0.117599138,1620000000000 ,1620000000000 ,1620000000000 ,1616812491830 -1616812491855 ,112.5684253,26.87532005,58.13576889,200.5862714,203.3940298,12.812047,0.117568487,1620000000000 ,1620000000000 ,1620000000000 ,1616812491840 -1616812491867 ,112.5684248,26.87531897,58.13570404,200.5766545,203.3790794,12.80905,0.11753974,1620000000000 ,1620000000000 ,1620000000000 ,1616812491850 -1616812491875 ,112.5684244,26.87531789,58.13566971,200.5670649,203.3671305,12.807171,0.117518904,1620000000000 ,1620000000000 ,1620000000000 ,1616812491860 -1616812491885 ,112.5684239,26.87531681,58.13565445,200.5562459,203.3573977,12.804147,0.117492276,1620000000000 ,1620000000000 ,1620000000000 ,1616812491870 -1616812491895 ,112.5684234,26.87531573,58.13566589,200.5447712,203.3479904,12.800759,0.117456722,1620000000000 ,1620000000000 ,1620000000000 ,1616812491880 -1616812491905 ,112.568423,26.87531465,58.13570404,200.537176,203.3361379,12.797166,0.117426145,1620000000000 ,1620000000000 ,1620000000000 ,1616812491890 -1616812491915 ,112.5684225,26.87531358,58.13576508,200.5299634,203.3297564,12.79438,0.117392753,1620000000000 ,1620000000000 ,1620000000000 ,1616812491900 -1616812491935 ,112.568422,26.8753125,58.135849,200.5228873,203.3199201,12.791986,0.117372197,1620000000000 ,1620000000000 ,1620000000000 ,1616812491910 -1616812491940 ,112.5684216,26.87531142,58.135952,200.5138441,203.3109466,12.788574,0.117342266,1620000000000 ,1620000000000 ,1620000000000 ,1616812491920 -1616812491950 ,112.5684211,26.87531034,58.13608932,200.5063855,203.3052167,12.78661,0.117320361,1620000000000 ,1620000000000 ,1620000000000 ,1616812491930 -1616812491957 ,112.5684206,26.87530927,58.1362648,200.4977249,203.2968543,12.782594,0.117282114,1620000000000 ,1620000000000 ,1620000000000 ,1616812491940 -1616812491967 ,112.5684202,26.87530819,58.13651657,200.4897745,203.2939995,12.779176,0.1172562,1620000000000 ,1620000000000 ,1620000000000 ,1616812491950 -1616812491975 ,112.5684197,26.87530711,58.13684845,200.4836,203.279763,12.77553,0.117226589,1620000000000 ,1620000000000 ,1620000000000 ,1616812491960 -1616812491986 ,112.5684193,26.87530604,58.13726425,200.4792834,203.2623423,12.771716,0.117185713,1620000000000 ,1620000000000 ,1620000000000 ,1616812491970 -1616812491997 ,112.5684188,26.87530496,58.13772964,200.473546,203.2523018,12.768679,0.117155001,1620000000000 ,1620000000000 ,1620000000000 ,1616812491980 -1616812492005 ,112.5684183,26.87530388,58.13825607,200.4684097,203.2469511,12.764758,0.117127162,1620000000000 ,1620000000000 ,1620000000000 ,1616812491990 -1616812492015 ,112.5684179,26.87530281,58.13885117,200.4651039,203.2353473,12.762946,0.117107554,1620000000000 ,1620000000000 ,1620000000000 ,1616812492000 -1616812492026 ,112.5684174,26.87530173,58.139534,200.4627816,203.225125,12.75887,0.117076283,1620000000000 ,1620000000000 ,1620000000000 ,1616812492010 -1616812492037 ,112.5684169,26.87530066,58.14029694,200.4592572,203.2154618,12.7554655,0.117043903,1620000000000 ,1620000000000 ,1620000000000 ,1616812492020 -1616812492047 ,112.5684165,26.87529958,58.14112473,200.4586015,203.2030424,12.751143,0.117007971,1620000000000 ,1620000000000 ,1620000000000 ,1616812492030 -1616812492056 ,112.568416,26.8752985,58.14201355,200.4548586,203.1971829,12.747618,0.116976083,1620000000000 ,1620000000000 ,1620000000000 ,1616812492040 -1616812492067 ,112.5684156,26.87529743,58.14292908,200.4536838,203.1884425,12.745106,0.116951352,1620000000000 ,1620000000000 ,1620000000000 ,1616812492050 -1616812492080 ,112.5684151,26.87529636,58.14383316,200.4536565,203.1894371,12.742487,0.116930726,1620000000000 ,1620000000000 ,1620000000000 ,1616812492060 -1616812492088 ,112.5684146,26.87529528,58.14471817,200.4538751,203.1814035,12.739286,0.116902695,1620000000000 ,1620000000000 ,1620000000000 ,1616812492070 -1616812492097 ,112.5684142,26.87529421,58.14557648,200.4543941,203.176673,12.736414,0.116875461,1620000000000 ,1620000000000 ,1620000000000 ,1616812492080 -1616812492107 ,112.5684137,26.87529313,58.14640427,200.4545307,203.1788744,12.734959,0.116858449,1620000000000 ,1620000000000 ,1620000000000 ,1616812492090 -1616812492116 ,112.5684133,26.87529206,58.14717102,200.4548586,203.176346,12.732124,0.116836895,1620000000000 ,1620000000000 ,1620000000000 ,1616812492100 -1616812492129 ,112.5684128,26.87529098,58.14789963,200.4555689,203.1789965,12.729114,0.11681178,1620000000000 ,1620000000000 ,1620000000000 ,1616812492110 -1616812492140 ,112.5684123,26.87528991,58.14861679,200.4550498,203.1796702,12.726789,0.116789398,1620000000000 ,1620000000000 ,1620000000000 ,1616812492120 -1616812492150 ,112.5684119,26.87528884,58.14929199,200.4553777,203.1825579,12.72521,0.116772537,1620000000000 ,1620000000000 ,1620000000000 ,1616812492130 -1616812492160 ,112.5684114,26.87528776,58.14988708,200.4564705,203.1857154,12.724103,0.116761241,1620000000000 ,1620000000000 ,1620000000000 ,1616812492140 -1616812492167 ,112.568411,26.87528669,58.15040588,200.4586835,203.1929769,12.722078,0.116746011,1620000000000 ,1620000000000 ,1620000000000 ,1616812492150 -1616812492177 ,112.5684105,26.87528562,58.15090179,200.4578912,203.19893,12.719649,0.116728829,1620000000000 ,1620000000000 ,1620000000000 ,1616812492160 -1616812492189 ,112.56841,26.87528454,58.15138245,200.459831,203.2010232,12.71769,0.116706445,1620000000000 ,1620000000000 ,1620000000000 ,1616812492170 -1616812492198 ,112.5684096,26.87528347,58.15181351,200.4607052,203.2052594,12.716674,0.116696679,1620000000000 ,1620000000000 ,1620000000000 ,1616812492180 -1616812492213 ,112.5684091,26.8752824,58.15216827,200.4622898,203.2070523,12.71539,0.116684433,1620000000000 ,1620000000000 ,1620000000000 ,1616812492190 -1616812492218 ,112.5684087,26.87528133,58.15228653,200.4605413,203.173881,12.716226,0.11667451,1620000000000 ,1620000000000 ,1620000000000 ,1616812492200 -1616812492229 ,112.5684082,26.87528025,58.15211105,200.4614429,203.105691,12.714232,0.116677618,1620000000000 ,1620000000000 ,1620000000000 ,1616812492210 -1616812492238 ,112.5684077,26.87527918,58.15187454,200.4601315,203.1064305,12.712724,0.116659448,1620000000000 ,1620000000000 ,1620000000000 ,1616812492220 -1616812492248 ,112.5684073,26.87527811,58.15155411,200.4614429,203.108609,12.711591,0.11664574,1620000000000 ,1620000000000 ,1620000000000 ,1616812492230 -1616812492258 ,112.5684068,26.87527704,58.15111923,200.4622079,203.109705,12.712276,0.116645736,1620000000000 ,1620000000000 ,1620000000000 ,1616812492240 -1616812492267 ,112.5684064,26.87527596,58.15053558,200.463328,203.1107941,12.711871,0.116638223,1620000000000 ,1620000000000 ,1620000000000 ,1616812492250 -1616812492278 ,112.5684059,26.87527489,58.14982605,200.4643935,203.1075232,12.711852,0.116631509,1620000000000 ,1620000000000 ,1620000000000 ,1616812492260 -1616812492291 ,112.5684055,26.87527382,58.14902878,200.4638471,203.1078648,12.710102,0.116613632,1620000000000 ,1620000000000 ,1620000000000 ,1616812492270 -1616812492300 ,112.568405,26.87527274,58.14815903,200.4635739,203.1097717,12.708884,0.11659932,1620000000000 ,1620000000000 ,1620000000000 ,1616812492280 -1616812492311 ,112.5684045,26.87527167,58.14720154,200.4636012,203.1108361,12.707692,0.116581373,1620000000000 ,1620000000000 ,1620000000000 ,1616812492290 -1616812492320 ,112.5684041,26.8752706,58.14614868,200.4626997,203.115183,12.706046,0.116564119,1620000000000 ,1620000000000 ,1620000000000 ,1616812492300 -1616812492332 ,112.5684036,26.87526953,58.14503479,200.4605413,203.117128,12.706031,0.11655283,1620000000000 ,1620000000000 ,1620000000000 ,1616812492310 -1616812492341 ,112.5684032,26.87526846,58.14387131,200.4575634,203.1162546,12.705084,0.116546463,1620000000000 ,1620000000000 ,1620000000000 ,1616812492320 -1616812492352 ,112.5684027,26.87526738,58.14268875,200.4558421,203.1230342,12.705403,0.11654494,1620000000000 ,1620000000000 ,1620000000000 ,1616812492330 -1616812492360 ,112.5684023,26.87526631,58.14151001,200.4553504,203.129794,12.703758,0.116532968,1620000000000 ,1620000000000 ,1620000000000 ,1616812492340 -1616812492368 ,112.5684018,26.87526524,58.14035416,200.4527003,203.1319037,12.7013235,0.116509315,1620000000000 ,1620000000000 ,1620000000000 ,1616812492350 -1616812492379 ,112.5684013,26.87526417,58.13924789,200.4516074,203.1319929,12.699828,0.116494038,1620000000000 ,1620000000000 ,1620000000000 ,1616812492360 -1616812492389 ,112.5684009,26.8752631,58.13817978,200.4485475,203.1320648,12.698413,0.11648267,1620000000000 ,1620000000000 ,1620000000000 ,1616812492370 -1616812492399 ,112.5684004,26.87526203,58.13715363,200.4456515,203.1341965,12.697305,0.116470066,1620000000000 ,1620000000000 ,1620000000000 ,1616812492380 -1616812492410 ,112.5684,26.87526096,58.13619614,200.4415261,203.1366537,12.695779,0.116457642,1620000000000 ,1620000000000 ,1620000000000 ,1616812492390 -1616812492420 ,112.5683995,26.87525989,58.13532257,200.4354609,203.1342672,12.694314,0.116446567,1620000000000 ,1620000000000 ,1620000000000 ,1616812492400 -1616812492431 ,112.5683991,26.87525882,58.13451767,200.4316633,203.1283453,12.692463,0.116429835,1620000000000 ,1620000000000 ,1620000000000 ,1616812492410 -1616812492446 ,112.5683986,26.87525775,58.1337738,200.4260898,203.1255498,12.691055,0.116416408,1620000000000 ,1620000000000 ,1620000000000 ,1616812492420 -1616812492452 ,112.5683981,26.87525667,58.13312149,200.4218005,203.126534,12.689544,0.116402522,1620000000000 ,1620000000000 ,1620000000000 ,1616812492430 -1616812492460 ,112.5683977,26.8752556,58.13256836,200.4171013,203.1276532,12.688271,0.116394216,1620000000000 ,1620000000000 ,1620000000000 ,1616812492440 -1616812492470 ,112.5683972,26.87525453,58.13227081,200.4118557,203.1563193,12.685933,0.116371192,1620000000000 ,1620000000000 ,1620000000000 ,1616812492450 -1616812492483 ,112.5683968,26.87525346,58.13221359,200.4073751,203.1824809,12.683633,0.116344059,1620000000000 ,1620000000000 ,1620000000000 ,1616812492460 -1616812492496 ,112.5683963,26.8752524,58.13223648,200.401228,203.1769228,12.683765,0.116340498,1620000000000 ,1620000000000 ,1620000000000 ,1616812492470 -1616812492500 ,112.5683958,26.87525133,58.13233185,200.3937421,203.1792265,12.683857,0.116339903,1620000000000 ,1620000000000 ,1620000000000 ,1616812492480 -1616812492514 ,112.5683954,26.87525026,58.13251495,200.3875949,203.180266,12.683255,0.116343685,1620000000000 ,1620000000000 ,1620000000000 ,1616812492490 -1616812492521 ,112.5683949,26.87524919,58.13280487,200.3811472,203.1731156,12.680762,0.11632939,1620000000000 ,1620000000000 ,1620000000000 ,1616812492500 -1616812492530 ,112.5683945,26.87524812,58.1332283,200.3728963,203.1662756,12.677417,0.116300399,1620000000000 ,1620000000000 ,1620000000000 ,1616812492510 -1616812492545 ,112.568394,26.87524705,58.13380051,200.3673229,203.1541316,12.673929,0.116270235,1620000000000 ,1620000000000 ,1620000000000 ,1616812492520 -1616812492552 ,112.5683936,26.87524598,58.13446808,200.3639078,203.1435693,12.67201,0.116254527,1620000000000 ,1620000000000 ,1620000000000 ,1616812492530 -1616812492560 ,112.5683931,26.87524491,58.13518524,200.3574874,203.140836,12.672368,0.1162539,1620000000000 ,1620000000000 ,1620000000000 ,1616812492540 -1616812492572 ,112.5683926,26.87524384,58.135952,200.3523238,203.1323817,12.670235,0.116241468,1620000000000 ,1620000000000 ,1620000000000 ,1616812492550 -1616812492581 ,112.5683922,26.87524277,58.13682175,200.3479525,203.1212467,12.667949,0.116224887,1620000000000 ,1620000000000 ,1620000000000 ,1616812492560 -1616812492592 ,112.5683917,26.8752417,58.13778687,200.3421058,203.1070693,12.666175,0.116208001,1620000000000 ,1620000000000 ,1620000000000 ,1616812492570 -1616812492606 ,112.5683913,26.87524064,58.13877487,200.3390459,203.0978782,12.664993,0.11619475,1620000000000 ,1620000000000 ,1620000000000 ,1616812492580 -1616812492613 ,112.5683908,26.87523957,58.1397438,200.3347566,203.0970457,12.663565,0.116185479,1620000000000 ,1620000000000 ,1620000000000 ,1616812492590 -1616812492622 ,112.5683904,26.8752385,58.14070892,200.3292924,203.0990967,12.662445,0.116176144,1620000000000 ,1620000000000 ,1620000000000 ,1616812492600 -1616812492631 ,112.5683899,26.87523743,58.14167023,200.3235824,203.0850922,12.66081,0.11616102,1620000000000 ,1620000000000 ,1620000000000 ,1616812492610 -1616812492640 ,112.5683895,26.87523636,58.1425972,200.3201673,203.0739974,12.659463,0.116147889,1620000000000 ,1620000000000 ,1620000000000 ,1616812492620 -1616812492657 ,112.568389,26.87523529,58.14346313,200.3156047,203.0614039,12.658177,0.116130098,1620000000000 ,1620000000000 ,1620000000000 ,1616812492630 -1616812492664 ,112.5683885,26.87523422,58.14427185,200.3093209,203.0585534,12.655498,0.116107696,1620000000000 ,1620000000000 ,1620000000000 ,1616812492640 -1616812492673 ,112.5683881,26.87523316,58.14502335,200.3061517,203.0571756,12.655082,0.116097086,1620000000000 ,1620000000000 ,1620000000000 ,1616812492650 -1616812492683 ,112.5683876,26.87523209,58.14570618,200.3011247,203.0512044,12.6541815,0.116088978,1620000000000 ,1620000000000 ,1620000000000 ,1616812492660 -1616812492691 ,112.5683872,26.87523102,58.14632034,200.2971905,203.042429,12.65419,0.116080693,1620000000000 ,1620000000000 ,1620000000000 ,1616812492670 -1616812492703 ,112.5683867,26.87522995,58.14688492,200.2916717,203.0344621,12.653597,0.116077429,1620000000000 ,1620000000000 ,1620000000000 ,1616812492680 -1616812492713 ,112.5683863,26.87522888,58.14738083,200.2855245,203.0302795,12.653205,0.116073184,1620000000000 ,1620000000000 ,1620000000000 ,1616812492690 -1616812492723 ,112.5683858,26.87522781,58.14780426,200.2816996,203.0303832,12.651822,0.116057161,1620000000000 ,1620000000000 ,1620000000000 ,1616812492700 -1616812492735 ,112.5683854,26.87522675,58.14815521,200.2762628,203.0320729,12.6507225,0.116043714,1620000000000 ,1620000000000 ,1620000000000 ,1616812492710 -1616812492743 ,112.5683849,26.87522568,58.14846802,200.270826,203.0313574,12.650526,0.116039338,1620000000000 ,1620000000000 ,1620000000000 ,1616812492720 -1616812492752 ,112.5683845,26.87522461,58.14872742,200.2655531,203.0190661,12.64953,0.116029974,1620000000000 ,1620000000000 ,1620000000000 ,1616812492730 -1616812492765 ,112.568384,26.87522354,58.14891434,200.259843,203.0110889,12.649548,0.116020116,1620000000000 ,1620000000000 ,1620000000000 ,1616812492740 -1616812492773 ,112.5683836,26.87522248,58.14904404,200.2561274,203.0101385,12.647738,0.116006477,1620000000000 ,1620000000000 ,1620000000000 ,1616812492750 -1616812492785 ,112.5683831,26.87522141,58.1491394,200.2513463,203.008989,12.646987,0.115994521,1620000000000 ,1620000000000 ,1620000000000 ,1616812492770 -1616812492793 ,112.5683826,26.87522034,58.1492157,200.2457728,203.0058322,12.646232,0.115987251,1620000000000 ,1620000000000 ,1620000000000 ,1616812492780 -1616812492803 ,112.5683822,26.87521927,58.14923859,200.2405819,203.0031245,12.646291,0.11598119,1620000000000 ,1620000000000 ,1620000000000 ,1616812492780 -1616812492813 ,112.5683817,26.8752182,58.14921188,200.2346533,203.0003155,12.646294,0.115978306,1620000000000 ,1620000000000 ,1620000000000 ,1616812492800 -1616812492831 ,112.5683813,26.87521714,58.14915848,200.2280144,202.9915381,12.645602,0.115972256,1620000000000 ,1620000000000 ,1620000000000 ,1616812492810 -1616812492836 ,112.5683804,26.875215,58.14904022,200.2165123,202.9846096,12.6437645,0.231922714,1620000000000 ,1620000000000 ,1620000000000 ,1616812492820 -1616812492843 ,112.5683804,26.875215,58.14904022,200.2165123,-400,12.6437645,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812492830 -1616812492855 ,112.5683795,26.87521287,58.14898682,200.2051196,202.9796095,12.640474,0.231862752,1620000000000 ,1620000000000 ,1620000000000 ,1616812492840 -1616812492867 ,112.5683795,26.87521287,58.14898682,200.2051196,-400,12.640474,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812492850 -1616812492876 ,112.5683786,26.87521073,58.14899063,200.1955027,202.9674223,12.638835,0.231819021,1620000000000 ,1620000000000 ,1620000000000 ,1616812492860 -1616812492888 ,112.5683781,26.87520967,58.14904785,200.1864048,202.9598786,12.636621,0.115890108,1620000000000 ,1620000000000 ,1620000000000 ,1616812492870 -1616812492895 ,112.5683777,26.8752086,58.14916611,200.1823067,202.9611716,12.635054,0.115879621,1620000000000 ,1620000000000 ,1620000000000 ,1616812492880 -1616812492904 ,112.5683777,26.8752086,58.14916611,200.1823067,-400,12.635054,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812492890 -1616812492915 ,112.5683768,26.87520647,58.14952087,200.171515,202.9458838,12.632722,0.231717797,1620000000000 ,1620000000000 ,1620000000000 ,1616812492900 -1616812492930 ,112.5683763,26.8752054,58.14971161,200.1670344,202.9345858,12.632059,0.115848603,1620000000000 ,1620000000000 ,1620000000000 ,1616812492910 -1616812492941 ,112.5683759,26.87520433,58.14993286,200.1591934,202.9303247,12.630099,0.115832929,1620000000000 ,1620000000000 ,1620000000000 ,1616812492920 -1616812492954 ,112.5683754,26.87520326,58.15020752,200.1546581,202.9260557,12.627579,0.115817382,1620000000000 ,1620000000000 ,1620000000000 ,1616812492930 -1616812492956 ,112.568375,26.8752022,58.15053177,200.1496857,202.9195115,12.626323,0.115800667,1620000000000 ,1620000000000 ,1620000000000 ,1616812492940 -1616812492965 ,112.5683745,26.87520113,58.15088272,200.1443855,202.9138479,12.625743,0.115796128,1620000000000 ,1620000000000 ,1620000000000 ,1616812492950 -1616812492974 ,112.5683741,26.87520007,58.15123367,200.1402601,202.9062332,12.624731,0.115783422,1620000000000 ,1620000000000 ,1620000000000 ,1616812492960 -1616812492985 ,112.5683736,26.875199,58.15155411,200.134714,202.8953001,12.624802,0.115781697,1620000000000 ,1620000000000 ,1620000000000 ,1616812492970 -1616812492996 ,112.5683732,26.87519793,58.15185547,200.1297143,202.890304,12.623606,0.115773783,1620000000000 ,1620000000000 ,1620000000000 ,1616812492980 -1616812493005 ,112.5683732,26.87519793,58.15185547,200.1297143,-400,12.623606,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812492990 -1616812493018 ,112.5683723,26.8751958,58.15248108,200.1201793,202.8828692,12.620477,0.231507313,1620000000000 ,1620000000000 ,1620000000000 ,1616812493000 -1616812493027 ,112.5683718,26.87519473,58.15278244,200.1162998,202.8731327,12.619299,0.115729049,1620000000000 ,1620000000000 ,1620000000000 ,1616812493010 -1616812493037 ,112.5683714,26.87519367,58.1530304,200.1111635,202.8673691,12.618411,0.115720719,1620000000000 ,1620000000000 ,1620000000000 ,1616812493020 -1616812493046 ,112.5683709,26.8751926,58.15323639,200.104907,202.8635205,12.616894,0.11570765,1620000000000 ,1620000000000 ,1620000000000 ,1616812493030 -1616812493056 ,112.5683705,26.87519153,58.15342331,200.0995248,202.8551935,12.617542,0.115701525,1620000000000 ,1620000000000 ,1620000000000 ,1616812493040 -1616812493065 ,112.56837,26.87519047,58.15359879,200.0960005,202.8558378,12.617252,0.115703824,1620000000000 ,1620000000000 ,1620000000000 ,1616812493050 -1616812493079 ,112.5683696,26.8751894,58.15376663,200.0908915,202.8581017,12.616683,0.115699418,1620000000000 ,1620000000000 ,1620000000000 ,1616812493060 -1616812493086 ,112.5683691,26.87518834,58.15393829,200.0865202,202.8497882,12.615422,0.115690331,1620000000000 ,1620000000000 ,1620000000000 ,1616812493070 -1616812493097 ,112.5683687,26.87518727,58.15408325,200.0830777,202.8347943,12.613547,0.115668402,1620000000000 ,1620000000000 ,1620000000000 ,1616812493080 -1616812493108 ,112.5683682,26.8751862,58.15419006,200.0788703,202.8307992,12.613846,0.1156622,1620000000000 ,1620000000000 ,1620000000000 ,1616812493090 -1616812493123 ,112.5683678,26.87518514,58.15424347,200.0731603,202.8374056,12.612371,0.115655042,1620000000000 ,1620000000000 ,1620000000000 ,1616812493100 -1616812493129 ,112.5683673,26.87518407,58.15431976,200.0681333,202.8393453,12.611148,0.115643399,1620000000000 ,1620000000000 ,1620000000000 ,1616812493110 -1616812493138 ,112.5683669,26.87518301,58.15446091,200.0608113,202.8259265,12.60884,0.115624201,1620000000000 ,1620000000000 ,1620000000000 ,1616812493120 -1616812493147 ,112.5683664,26.87518194,58.15465546,200.055757,202.8115403,12.608201,0.115611812,1620000000000 ,1620000000000 ,1620000000000 ,1616812493130 -1616812493158 ,112.568366,26.87518087,58.15483093,200.0504021,202.7991014,12.608385,0.115611227,1620000000000 ,1620000000000 ,1620000000000 ,1616812493140 -1616812493167 ,112.5683655,26.87517981,58.15494919,200.0463313,202.7945493,12.608883,0.115611145,1620000000000 ,1620000000000 ,1620000000000 ,1616812493150 -1616812493176 ,112.5683651,26.87517874,58.15505219,200.0393645,202.792001,12.607664,0.115606779,1620000000000 ,1620000000000 ,1620000000000 ,1616812493160 -1616812493187 ,112.5683646,26.87517768,58.1551857,200.0344741,202.7775518,12.605653,0.11558409,1620000000000 ,1620000000000 ,1620000000000 ,1616812493170 -1616812493198 ,112.5683642,26.87517661,58.15536499,200.0304033,202.7628389,12.602563,0.115559761,1620000000000 ,1620000000000 ,1620000000000 ,1616812493180 -1616812493208 ,112.5683637,26.87517555,58.15553284,200.0257042,202.7512247,12.601431,0.115539891,1620000000000 ,1620000000000 ,1620000000000 ,1616812493190 -1616812493218 ,112.5683633,26.87517448,58.15581131,200.0306492,202.6530611,12.604541,0.115585363,1620000000000 ,1620000000000 ,1620000000000 ,1616812493200 -1616812493227 ,112.5683628,26.87517341,58.15636444,200.0270429,202.472137,12.604772,0.115653943,1620000000000 ,1620000000000 ,1620000000000 ,1616812493210 -1616812493237 ,112.5683624,26.87517234,58.15694809,200.0222344,202.4585046,12.604705,0.115653858,1620000000000 ,1620000000000 ,1620000000000 ,1616812493220 -1616812493247 ,112.568362,26.87517127,58.15759277,200.0164697,202.4534854,12.602747,0.115640176,1620000000000 ,1620000000000 ,1620000000000 ,1616812493230 -1616812493256 ,112.5683615,26.8751702,58.1582756,200.0120711,202.460055,12.600594,0.115624814,1620000000000 ,1620000000000 ,1620000000000 ,1616812493240 -1616812493267 ,112.5683611,26.87516914,58.15900421,200.0072353,202.4643024,12.599272,0.115611909,1620000000000 ,1620000000000 ,1620000000000 ,1616812493250 -1616812493279 ,112.5683606,26.87516807,58.15976715,200.0008149,202.4510732,12.595943,0.115585636,1620000000000 ,1620000000000 ,1620000000000 ,1616812493260 -1616812493289 ,112.5683602,26.875167,58.16051865,199.991963,202.4475699,12.595088,0.115570602,1620000000000 ,1620000000000 ,1620000000000 ,1616812493270 -1616812493300 ,112.5683598,26.87516593,58.16123962,199.9859525,202.4610228,12.59532,0.11557175,1620000000000 ,1620000000000 ,1620000000000 ,1616812493280 -1616812493311 ,112.5683593,26.87516486,58.16189575,199.9821549,202.4596499,12.596161,0.115575403,1620000000000 ,1620000000000 ,1620000000000 ,1616812493290 -1616812493318 ,112.5683589,26.8751638,58.16255951,199.9766634,202.4342898,12.5966625,0.115577191,1620000000000 ,1620000000000 ,1620000000000 ,1616812493300 -1616812493327 ,112.5683584,26.87516273,58.163311,199.9709534,202.4041898,12.5928955,0.11555416,1620000000000 ,1620000000000 ,1620000000000 ,1616812493310 -1616812493342 ,112.568358,26.87516166,58.16413498,199.963085,202.3939327,12.588877,0.115514208,1620000000000 ,1620000000000 ,1620000000000 ,1616812493320 -1616812493349 ,112.5683576,26.87516059,58.16493988,199.9595606,202.3880581,12.589295,0.115506007,1620000000000 ,1620000000000 ,1620000000000 ,1616812493330 -1616812493363 ,112.5683571,26.87515952,58.1656723,199.9580033,202.3918547,12.590565,0.115514588,1620000000000 ,1620000000000 ,1620000000000 ,1616812493340 -1616812493371 ,112.5683567,26.87515845,58.16638565,199.9525392,202.3723287,12.591425,0.115524743,1620000000000 ,1620000000000 ,1620000000000 ,1616812493350 -1616812493380 ,112.5683562,26.87515739,58.16714096,199.9483044,202.339979,12.588836,0.11550366,1620000000000 ,1620000000000 ,1620000000000 ,1616812493360 -1616812493389 ,112.5683558,26.87515632,58.16790009,199.9452992,202.3201996,12.586491,0.11547763,1620000000000 ,1620000000000 ,1620000000000 ,1616812493370 -1616812493399 ,112.5683554,26.87515525,58.16863251,199.9423485,202.3267622,12.586369,0.115473171,1620000000000 ,1620000000000 ,1620000000000 ,1616812493380 -1616812493408 ,112.5683549,26.87515418,58.16933441,199.9415289,202.3393893,12.585253,0.115464738,1620000000000 ,1620000000000 ,1620000000000 ,1616812493390 -1616812493420 ,112.5683545,26.87515311,58.17007828,199.9388788,202.3295002,12.5854225,0.115463402,1620000000000 ,1620000000000 ,1620000000000 ,1616812493400 -1616812493430 ,112.568354,26.87515205,58.17087936,199.9360374,202.3052918,12.5837755,0.115453154,1620000000000 ,1620000000000 ,1620000000000 ,1616812493410 -1616812493440 ,112.5683536,26.87515098,58.17166519,199.93336,202.2987415,12.581933,0.11543423,1620000000000 ,1620000000000 ,1620000000000 ,1616812493420 -1616812493451 ,112.5683532,26.87514991,58.17238235,199.9322125,202.3004824,12.582462,0.115431742,1620000000000 ,1620000000000 ,1620000000000 ,1616812493430 -1616812493460 ,112.5683527,26.87514884,58.17304611,199.9310651,202.3115844,12.582284,0.115431294,1620000000000 ,1620000000000 ,1620000000000 ,1616812493440 -1616812493470 ,112.5683523,26.87514778,58.17355728,199.9289887,202.4095789,12.583504,0.115393404,1620000000000 ,1620000000000 ,1620000000000 ,1616812493450 -1616812493486 ,112.5683518,26.87514671,58.17394257,199.9283057,202.4917367,12.58064,0.115329053,1620000000000 ,1620000000000 ,1620000000000 ,1616812493460 -1616812493491 ,112.5683514,26.87514564,58.17435837,199.9256009,202.489633,12.577945,0.115304615,1620000000000 ,1620000000000 ,1620000000000 ,1616812493470 -1616812493500 ,112.568351,26.87514458,58.17477036,199.9238251,202.4901591,12.576921,0.115290609,1620000000000 ,1620000000000 ,1620000000000 ,1616812493480 -1616812493510 ,112.5683505,26.87514351,58.17515945,199.923224,202.4875176,12.576815,0.115287309,1620000000000 ,1620000000000 ,1620000000000 ,1616812493490 -1616812493521 ,112.5683501,26.87514245,58.17554855,199.922459,202.4831759,12.576591,0.115288153,1620000000000 ,1620000000000 ,1620000000000 ,1616812493500 -1616812493532 ,112.5683496,26.87514138,58.17595291,199.9199728,202.4781965,12.576618,0.11528707,1620000000000 ,1620000000000 ,1620000000000 ,1616812493510 -1616812493557 ,112.5683492,26.87514032,58.17635727,199.9192078,202.4791589,12.574495,0.115275715,1620000000000 ,1620000000000 ,1620000000000 ,1616812493520 -1616812493562 ,112.5683488,26.87513925,58.17673111,199.9211203,202.482839,12.573875,0.115261968,1620000000000 ,1620000000000 ,1620000000000 ,1616812493530 -1616812493569 ,112.5683483,26.87513819,58.17709732,199.919645,202.4746012,12.571877,0.115254408,1620000000000 ,1620000000000 ,1620000000000 ,1616812493540 -1616812493576 ,112.5683479,26.87513712,58.17743301,199.9178691,202.4693358,12.570197,0.115228638,1620000000000 ,1620000000000 ,1620000000000 ,1616812493550 -1616812493581 ,112.5683474,26.87513606,58.1777153,199.9156015,202.483443,12.571222,0.115234119,1620000000000 ,1620000000000 ,1620000000000 ,1616812493560 -1616812493591 ,112.568347,26.87513499,58.17792511,199.9146999,202.4952229,12.570786,0.115232478,1620000000000 ,1620000000000 ,1620000000000 ,1616812493570 -1616812493601 ,112.5683466,26.87513393,58.17811203,199.9134705,202.4904743,12.5709915,0.115234819,1620000000000 ,1620000000000 ,1620000000000 ,1616812493580 -1616812493610 ,112.5683461,26.87513286,58.17831802,199.9121864,202.480094,12.570387,0.115231338,1620000000000 ,1620000000000 ,1620000000000 ,1616812493590 -1616812493621 ,112.5683457,26.8751318,58.17850494,199.9119678,202.4759308,12.569097,0.115214938,1620000000000 ,1620000000000 ,1620000000000 ,1616812493600 -1616812493633 ,112.5683452,26.87513074,58.17864227,199.9124323,202.4789836,12.567593,0.115203767,1620000000000 ,1620000000000 ,1620000000000 ,1616812493610 -1616812493642 ,112.5683448,26.87512967,58.17869949,199.9127328,202.4856492,12.566634,0.115192593,1620000000000 ,1620000000000 ,1620000000000 ,1616812493620 -1616812493652 ,112.5683444,26.87512861,58.17869568,199.9109843,202.4926497,12.566074,0.115182645,1620000000000 ,1620000000000 ,1620000000000 ,1616812493630 -1616812493662 ,112.5683439,26.87512754,58.1786499,199.9082522,202.4873305,12.566261,0.115181269,1620000000000 ,1620000000000 ,1620000000000 ,1616812493640 -1616812493672 ,112.5683435,26.87512648,58.17857361,199.9059026,202.4808511,12.565469,0.115172052,1620000000000 ,1620000000000 ,1620000000000 ,1616812493650 -1616812493685 ,112.568343,26.87512541,58.17845154,199.9042087,202.4826975,12.566006,0.115171784,1620000000000 ,1620000000000 ,1620000000000 ,1616812493660 -1616812493692 ,112.5683426,26.87512435,58.17826462,199.9043454,202.4843853,12.566461,0.115172962,1620000000000 ,1620000000000 ,1620000000000 ,1616812493670 -1616812493702 ,112.5683422,26.87512329,58.17804718,199.9030066,202.4921475,12.565955,0.115171521,1620000000000 ,1620000000000 ,1620000000000 ,1616812493680 -1616812493715 ,112.5683417,26.87512222,58.17782974,199.8996462,202.4916218,12.564349,0.115157561,1620000000000 ,1620000000000 ,1620000000000 ,1616812493690 -1616812493722 ,112.5683413,26.87512116,58.17760468,199.8996189,202.4845953,12.562981,0.115142256,1620000000000 ,1620000000000 ,1620000000000 ,1616812493700 -1616812493734 ,112.5683408,26.87512009,58.17735291,199.8991271,202.4823841,12.561742,0.115126689,1620000000000 ,1620000000000 ,1620000000000 ,1616812493710 -1616812493742 ,112.5683404,26.87511903,58.1770668,199.8975698,202.4837339,12.561317,0.115121894,1620000000000 ,1620000000000 ,1620000000000 ,1616812493720 -1616812493752 ,112.5683399,26.87511797,58.17678833,199.8960945,202.4833929,12.561756,0.11512019,1620000000000 ,1620000000000 ,1620000000000 ,1616812493730 -1616812493762 ,112.5683395,26.8751169,58.17655945,199.895794,202.4778739,12.561767,0.11512051,1620000000000 ,1620000000000 ,1620000000000 ,1616812493740 -1616812493773 ,112.5683391,26.87511584,58.17637634,199.893417,202.4779759,12.561098,0.115117893,1620000000000 ,1620000000000 ,1620000000000 ,1616812493750 -1616812493782 ,112.5683386,26.87511478,58.17624283,199.8925974,202.4806425,12.560302,0.115112412,1620000000000 ,1620000000000 ,1620000000000 ,1616812493760 -1616812493796 ,112.5683382,26.87511371,58.17615891,199.8926521,202.4785446,12.558596,0.115100584,1620000000000 ,1620000000000 ,1620000000000 ,1616812493770 -1616812493803 ,112.5683377,26.87511265,58.1761322,199.8915592,202.4762329,12.555889,0.115077498,1620000000000 ,1620000000000 ,1620000000000 ,1616812493780 -1616812493813 ,112.5683373,26.87511159,58.17615891,199.8915592,202.4769336,12.554862,0.11506496,1620000000000 ,1620000000000 ,1620000000000 ,1616812493800 -1616812493827 ,112.5683369,26.87511052,58.17622375,199.8912314,202.4822178,12.553775,0.115056472,1620000000000 ,1620000000000 ,1620000000000 ,1616812493800 -1616812493834 ,112.5683364,26.87510946,58.17630386,199.8905484,202.485191,12.554505,0.115059627,1620000000000 ,1620000000000 ,1620000000000 ,1616812493820 -1616812493844 ,112.568336,26.8751084,58.17640305,199.8894282,202.4885307,12.554771,0.115065647,1620000000000 ,1620000000000 ,1620000000000 ,1616812493830 -1616812493853 ,112.5683355,26.87510733,58.17654419,199.8875158,202.4849776,12.552931,0.11505323,1620000000000 ,1620000000000 ,1620000000000 ,1616812493840 -1616812493863 ,112.5683351,26.87510627,58.17677307,199.8865322,202.4800678,12.549958,0.11503395,1620000000000 ,1620000000000 ,1620000000000 ,1616812493850 -1616812493873 ,112.5683347,26.87510521,58.17709732,199.8857126,202.4777548,12.548032,0.115013609,1620000000000 ,1620000000000 ,1620000000000 ,1616812493860 -1616812493885 ,112.5683342,26.87510414,58.17751312,199.8822975,202.4779636,12.546653,0.115003787,1620000000000 ,1620000000000 ,1620000000000 ,1616812493870 -1616812493893 ,112.5683333,26.87510202,58.17844009,199.8815052,202.4757598,12.545849,0.229988637,1620000000000 ,1620000000000 ,1620000000000 ,1616812493880 -1616812493905 ,112.5683333,26.87510202,58.17844009,199.8815052,-400,12.545849,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812493890 -1616812493914 ,112.5683325,26.87509989,58.17937469,199.876888,202.4760728,12.543803,0.22996346,1620000000000 ,1620000000000 ,1620000000000 ,1616812493900 -1616812493923 ,112.568332,26.87509883,58.17990112,199.8753034,202.4712609,12.541982,0.114968236,1620000000000 ,1620000000000 ,1620000000000 ,1616812493910 -1616812493934 ,112.5683316,26.87509777,58.18046951,199.8747023,202.4744694,12.540245,0.114951518,1620000000000 ,1620000000000 ,1620000000000 ,1616812493920 -1616812493943 ,112.5683312,26.87509671,58.18109131,199.8728718,202.4759346,12.537902,0.114936557,1620000000000 ,1620000000000 ,1620000000000 ,1616812493930 -1616812493956 ,112.5683307,26.87509565,58.1817627,199.8714238,202.4705322,12.536666,0.114921157,1620000000000 ,1620000000000 ,1620000000000 ,1616812493940 -1616812493967 ,112.5683303,26.87509458,58.18243027,199.8722161,202.4667009,12.537936,0.114925389,1620000000000 ,1620000000000 ,1620000000000 ,1616812493950 -1616812493975 ,112.5683298,26.87509352,58.18302536,199.8707955,202.4630131,12.538298,0.114930448,1620000000000 ,1620000000000 ,1620000000000 ,1616812493960 -1616812493985 ,112.5683294,26.87509246,58.18355942,199.8695114,202.4729231,12.536476,0.114921862,1620000000000 ,1620000000000 ,1620000000000 ,1616812493970 -1616812493996 ,112.568329,26.8750914,58.18409729,199.8682546,202.4741665,12.534626,0.114905019,1620000000000 ,1620000000000 ,1620000000000 ,1616812493980 -1616812494004 ,112.568329,26.8750914,58.18409729,199.8682546,-400,12.534626,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812493990 -1616812494015 ,112.5683281,26.87508927,58.18520355,199.8631183,202.4629178,12.533741,0.229777892,1620000000000 ,1620000000000 ,1620000000000 ,1616812494000 -1616812494024 ,112.5683276,26.87508821,58.18568802,199.8596213,202.4641497,12.533521,0.114887431,1620000000000 ,1620000000000 ,1620000000000 ,1616812494010 -1616812494035 ,112.5683272,26.87508715,58.18611145,199.856534,202.4686542,12.533437,0.114885098,1620000000000 ,1620000000000 ,1620000000000 ,1616812494020 -1616812494047 ,112.5683268,26.87508609,58.18649292,199.8543757,202.4611866,12.532635,0.114876272,1620000000000 ,1620000000000 ,1620000000000 ,1616812494030 -1616812494056 ,112.5683263,26.87508503,58.18686295,199.8531736,202.4541143,12.531046,0.114863838,1620000000000 ,1620000000000 ,1620000000000 ,1616812494040 -1616812494068 ,112.5683259,26.87508397,58.18722153,199.8516983,202.4568536,12.530088,0.114852639,1620000000000 ,1620000000000 ,1620000000000 ,1616812494050 -1616812494076 ,112.5683254,26.87508291,58.18755722,199.8470264,202.4531965,12.530153,0.114848618,1620000000000 ,1620000000000 ,1620000000000 ,1616812494060 -1616812494086 ,112.568325,26.87508184,58.18786621,199.8455511,202.4494365,12.529594,0.114843448,1620000000000 ,1620000000000 ,1620000000000 ,1616812494070 -1616812494095 ,112.5683246,26.87508078,58.18816376,199.8422726,202.4469983,12.529201,0.114840364,1620000000000 ,1620000000000 ,1620000000000 ,1616812494080 -1616812494105 ,112.5683241,26.87507972,58.18844604,199.8392946,202.4339213,12.52789,0.114828297,1620000000000 ,1620000000000 ,1620000000000 ,1616812494090 -1616812494116 ,112.5683237,26.87507866,58.18870163,199.8364533,202.4310834,12.526611,0.114816635,1620000000000 ,1620000000000 ,1620000000000 ,1616812494100 -1616812494126 ,112.5683233,26.8750776,58.18892288,199.8333114,202.4328511,12.525652,0.114802795,1620000000000 ,1620000000000 ,1620000000000 ,1616812494110 -1616812494136 ,112.5683228,26.87507654,58.18911362,199.8299783,202.4278611,12.524255,0.114790386,1620000000000 ,1620000000000 ,1620000000000 ,1616812494120 -1616812494147 ,112.5683224,26.87507548,58.1893158,199.8274921,202.421004,12.523476,0.114781039,1620000000000 ,1620000000000 ,1620000000000 ,1616812494130 -1616812494156 ,112.5683219,26.87507442,58.18952942,199.8227929,202.410062,12.52247,0.114772494,1620000000000 ,1620000000000 ,1620000000000 ,1616812494140 -1616812494167 ,112.5683215,26.87507335,58.18976212,199.8200881,202.4082679,12.521867,0.114765619,1620000000000 ,1620000000000 ,1620000000000 ,1616812494150 -1616812494178 ,112.5683211,26.87507229,58.18998718,199.81752,202.4039007,12.520432,0.114751816,1620000000000 ,1620000000000 ,1620000000000 ,1616812494160 -1616812494190 ,112.5683206,26.87507123,58.19019699,199.8145693,202.3968819,12.5185995,0.114738058,1620000000000 ,1620000000000 ,1620000000000 ,1616812494170 -1616812494197 ,112.5683202,26.87507017,58.19041443,199.8121924,202.3912629,12.517214,0.114719301,1620000000000 ,1620000000000 ,1620000000000 ,1616812494180 -1616812494211 ,112.5683198,26.87506911,58.19063187,199.8092418,202.3796046,12.515844,0.114705969,1620000000000 ,1620000000000 ,1620000000000 ,1616812494190 -1616812494219 ,112.5683193,26.87506805,58.19059372,199.8017832,202.4722344,12.519422,0.114754691,1620000000000 ,1620000000000 ,1620000000000 ,1616812494200 -1616812494228 ,112.5683189,26.87506699,58.1901474,199.799461,202.631886,12.519674,0.114870254,1620000000000 ,1620000000000 ,1620000000000 ,1616812494210 -1616812494238 ,112.5683184,26.87506593,58.18967056,199.797931,202.6305188,12.519066,0.11486463,1620000000000 ,1620000000000 ,1620000000000 ,1616812494220 -1616812494247 ,112.568318,26.87506487,58.18916702,199.7941607,202.6263386,12.518672,0.114856386,1620000000000 ,1620000000000 ,1620000000000 ,1616812494230 -1616812494258 ,112.5683175,26.87506381,58.18862915,199.7915926,202.6273987,12.518311,0.114854169,1620000000000 ,1620000000000 ,1620000000000 ,1616812494240 -1616812494268 ,112.5683171,26.87506275,58.18805695,199.7878496,202.6225835,12.517603,0.114842848,1620000000000 ,1620000000000 ,1620000000000 ,1616812494250 -1616812494277 ,112.5683167,26.87506169,58.18749237,199.7843253,202.6213038,12.51516,0.114824578,1620000000000 ,1620000000000 ,1620000000000 ,1616812494260 -1616812494287 ,112.5683162,26.87506063,58.18695068,199.78132,202.6186833,12.514459,0.114814655,1620000000000 ,1620000000000 ,1620000000000 ,1616812494270 -1616812494301 ,112.5683158,26.87505957,58.186409,199.776976,202.6168077,12.513547,0.114801556,1620000000000 ,1620000000000 ,1620000000000 ,1616812494280 -1616812494307 ,112.5683153,26.87505851,58.18582153,199.7738614,202.6175372,12.513268,0.114797671,1620000000000 ,1620000000000 ,1620000000000 ,1616812494290 -1616812494318 ,112.5683149,26.87505745,58.18520737,199.7698726,202.618372,12.513723,0.114799099,1620000000000 ,1620000000000 ,1620000000000 ,1616812494300 -1616812494328 ,112.5683145,26.87505639,58.18459702,199.764627,202.6161608,12.512921,0.11479238,1620000000000 ,1620000000000 ,1620000000000 ,1616812494310 -1616812494338 ,112.568314,26.87505533,58.18402863,199.7580154,202.6152363,12.51173,0.114782056,1620000000000 ,1620000000000 ,1620000000000 ,1616812494320 -1616812494348 ,112.5683136,26.87505427,58.18351746,199.7527425,202.6123673,12.510302,0.114768918,1620000000000 ,1620000000000 ,1620000000000 ,1616812494330 -1616812494359 ,112.5683131,26.87505321,58.18307495,199.747934,202.6187306,12.508207,0.114753212,1620000000000 ,1620000000000 ,1620000000000 ,1616812494340 -1616812494369 ,112.5683127,26.87505215,58.1826973,199.7418415,202.6108369,12.5055895,0.114728139,1620000000000 ,1620000000000 ,1620000000000 ,1616812494350 -1616812494379 ,112.5683123,26.8750511,58.18233109,199.7341644,202.6092643,12.504928,0.11472188,1620000000000 ,1620000000000 ,1620000000000 ,1616812494360 -1616812494389 ,112.5683118,26.87505004,58.18199158,199.7258862,202.6160601,12.5053425,0.114722578,1620000000000 ,1620000000000 ,1620000000000 ,1616812494370 -1616812494400 ,112.5683114,26.87504898,58.18170929,199.7178265,202.6115376,12.5051775,0.114721943,1620000000000 ,1620000000000 ,1620000000000 ,1616812494380 -1616812494409 ,112.5683109,26.87504792,58.18151093,199.7076905,202.6085714,12.5036125,0.114714631,1620000000000 ,1620000000000 ,1620000000000 ,1616812494390 -1616812494418 ,112.5683105,26.87504686,58.181427,199.6978278,202.6025619,12.500099,0.114691294,1620000000000 ,1620000000000 ,1620000000000 ,1616812494400 -1616812494430 ,112.56831,26.8750458,58.18146133,199.6892764,202.5897425,12.495896,0.114654581,1620000000000 ,1620000000000 ,1620000000000 ,1616812494410 -1616812494439 ,112.5683096,26.87504474,58.18158722,199.6798507,202.588037,12.493273,0.114629657,1620000000000 ,1620000000000 ,1620000000000 ,1616812494420 -1616812494448 ,112.5683092,26.87504368,58.18175125,199.6696874,202.5833222,12.49419,0.114630596,1620000000000 ,1620000000000 ,1620000000000 ,1616812494430 -1616812494460 ,112.5683087,26.87504263,58.18191147,199.6584585,202.5773428,12.494924,0.114638849,1620000000000 ,1620000000000 ,1620000000000 ,1616812494440 -1616812494471 ,112.5683083,26.87504157,58.18235016,199.648705,202.4781884,12.492867,0.114563174,1620000000000 ,1620000000000 ,1620000000000 ,1616812494450 -1616812494481 ,112.5683079,26.87504051,58.18310547,199.6374762,202.3708338,12.491707,0.114486526,1620000000000 ,1620000000000 ,1620000000000 ,1616812494460 -1616812494490 ,112.5683074,26.87503945,58.18392181,199.6264659,202.3655157,12.488969,0.114466471,1620000000000 ,1620000000000 ,1620000000000 ,1616812494470 -1616812494511 ,112.568307,26.87503839,58.18476868,199.6153737,202.3577528,12.488616,0.11446078,1620000000000 ,1620000000000 ,1620000000000 ,1616812494480 -1616812494518 ,112.5683065,26.87503733,58.18563843,199.6033799,202.351585,12.486489,0.114446699,1620000000000 ,1620000000000 ,1620000000000 ,1616812494490 -1616812494520 ,112.5683061,26.87503627,58.18651199,199.590785,202.3389636,12.485331,0.114432369,1620000000000 ,1620000000000 ,1620000000000 ,1616812494500 -1616812494529 ,112.5683057,26.87503522,58.18738937,199.577152,202.3220586,12.482749,0.114414623,1620000000000 ,1620000000000 ,1620000000000 ,1616812494510 -1616812494541 ,112.5683052,26.87503416,58.18825912,199.5642839,202.305808,12.480298,0.114389487,1620000000000 ,1620000000000 ,1620000000000 ,1616812494520 -1616812494552 ,112.5683048,26.8750331,58.18912506,199.5513339,202.294655,12.479854,0.114377892,1620000000000 ,1620000000000 ,1620000000000 ,1616812494530 -1616812494563 ,112.5683044,26.87503204,58.18997955,199.5386843,202.2870692,12.478746,0.114369446,1620000000000 ,1620000000000 ,1620000000000 ,1616812494540 -1616812494570 ,112.5683039,26.87503098,58.1908226,199.5245322,202.2670824,12.478273,0.114363014,1620000000000 ,1620000000000 ,1620000000000 ,1616812494550 -1616812494580 ,112.5683035,26.87502992,58.19164658,199.5098609,202.2477755,12.476774,0.114350426,1620000000000 ,1620000000000 ,1620000000000 ,1616812494560 -1616812494590 ,112.5683031,26.87502887,58.19243622,199.4995064,202.2298176,12.476182,0.114337292,1620000000000 ,1620000000000 ,1620000000000 ,1616812494570 -1616812494604 ,112.5683026,26.87502781,58.19316864,199.4854908,202.213883,12.474301,0.114320382,1620000000000 ,1620000000000 ,1620000000000 ,1616812494580 -1616812494610 ,112.5683022,26.87502675,58.19383621,199.4724861,202.2029216,12.473701,0.114311726,1620000000000 ,1620000000000 ,1620000000000 ,1616812494590 -1616812494622 ,112.5683018,26.87502569,58.19442749,199.4604377,202.1855684,12.473312,0.114302701,1620000000000 ,1620000000000 ,1620000000000 ,1616812494600 -1616812494632 ,112.5683013,26.87502463,58.1949501,199.4475696,202.1735527,12.472239,0.114290297,1620000000000 ,1620000000000 ,1620000000000 ,1616812494610 -1616812494641 ,112.5683009,26.87502357,58.19542313,199.4345376,202.1568933,12.47144,0.114280999,1620000000000 ,1620000000000 ,1620000000000 ,1616812494620 -1616812494652 ,112.5683005,26.87502252,58.1958313,199.4222706,202.1371652,12.47053,0.114265739,1620000000000 ,1620000000000 ,1620000000000 ,1616812494630 -1616812494663 ,112.5683001,26.87502146,58.19618607,199.4078452,202.1217365,12.470318,0.114256985,1620000000000 ,1620000000000 ,1620000000000 ,1616812494640 -1616812494677 ,112.5682996,26.8750204,58.19646072,199.3950864,202.1099007,12.469199,0.114246669,1620000000000 ,1620000000000 ,1620000000000 ,1616812494650 -1616812494684 ,112.5682992,26.87501934,58.19664383,199.3803059,202.0977937,12.469152,0.114241589,1620000000000 ,1620000000000 ,1620000000000 ,1616812494660 -1616812494693 ,112.5682988,26.87501828,58.1967659,199.366345,202.0860675,12.469799,0.114235848,1620000000000 ,1620000000000 ,1620000000000 ,1616812494670 -1616812494710 ,112.5682983,26.87501722,58.19683838,199.3511547,202.0678386,12.468265,0.11422503,1620000000000 ,1620000000000 ,1620000000000 ,1616812494680 -1616812494717 ,112.5682979,26.87501616,58.19681168,199.3370025,202.0522666,12.467719,0.114209895,1620000000000 ,1620000000000 ,1620000000000 ,1616812494690 -1616812494722 ,112.5682975,26.87501511,58.1966629,199.3209379,202.0502708,12.467011,0.114202762,1620000000000 ,1620000000000 ,1620000000000 ,1616812494700 -1616812494733 ,112.5682971,26.87501405,58.19643021,199.3067038,202.0455573,12.466652,0.114190415,1620000000000 ,1620000000000 ,1620000000000 ,1616812494710 -1616812494743 ,112.5682966,26.87501299,58.19619751,199.2919506,202.0285479,12.466321,0.114185368,1620000000000 ,1620000000000 ,1620000000000 ,1616812494720 -1616812494752 ,112.5682962,26.87501193,58.19598007,199.2770335,202.0073378,12.465799,0.11417987,1620000000000 ,1620000000000 ,1620000000000 ,1616812494730 -1616812494762 ,112.5682958,26.87501087,58.19579315,199.2611874,201.9899292,12.463711,0.114161384,1620000000000 ,1620000000000 ,1620000000000 ,1616812494740 -1616812494773 ,112.5682953,26.87500981,58.19562912,199.245478,201.9762236,12.461364,0.114137499,1620000000000 ,1620000000000 ,1620000000000 ,1616812494750 -1616812494782 ,112.5682949,26.87500876,58.19550323,199.2297959,201.9630661,12.459761,0.114118151,1620000000000 ,1620000000000 ,1620000000000 ,1616812494760 -1616812494793 ,112.5682945,26.8750077,58.19540787,199.2152066,201.9446769,12.458765,0.114108506,1620000000000 ,1620000000000 ,1620000000000 ,1616812494780 -1616812494805 ,112.5682941,26.87500664,58.19536209,199.1982677,201.9308646,12.457951,0.114099182,1620000000000 ,1620000000000 ,1620000000000 ,1616812494780 -1616812494821 ,112.5682936,26.87500558,58.19535828,199.1829134,201.9118973,12.45614,0.114080598,1620000000000 ,1620000000000 ,1620000000000 ,1616812494790 -1616812494826 ,112.5682932,26.87500452,58.19536591,199.1665756,201.8957641,12.454468,0.114064129,1620000000000 ,1620000000000 ,1620000000000 ,1616812494800 -1616812494834 ,112.5682928,26.87500346,58.19539261,199.1530792,201.8825459,12.452838,0.114048913,1620000000000 ,1620000000000 ,1620000000000 ,1616812494810 -1616812494844 ,112.5682924,26.8750024,58.19543076,199.1381894,201.859374,12.453173,0.114042005,1620000000000 ,1620000000000 ,1620000000000 ,1616812494820 -1616812494854 ,112.5682915,26.87500029,58.19555664,199.108683,201.8302243,12.451567,0.228057891,1620000000000 ,1620000000000 ,1620000000000 ,1616812494840 -1616812494867 ,112.5682911,26.87499923,58.19564438,199.096334,201.8112922,12.449113,0.114005196,1620000000000 ,1620000000000 ,1620000000000 ,1616812494850 -1616812494874 ,112.5682911,26.87499923,58.19564438,199.096334,-400,12.449113,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812494860 -1616812494884 ,112.5682902,26.87499711,58.19604111,199.0696416,201.7882333,12.445985,0.227960636,1620000000000 ,1620000000000 ,1620000000000 ,1616812494870 -1616812494897 ,112.5682898,26.87499605,58.19630432,199.0577571,201.7633553,12.44604,0.1139681,1620000000000 ,1620000000000 ,1620000000000 ,1616812494880 -1616812494905 ,112.5682898,26.87499605,58.19630432,199.0577571,-400,12.44604,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812494890 -1616812494915 ,112.568289,26.87499394,58.19686508,199.0318023,201.7497796,12.443606,0.227905833,1620000000000 ,1620000000000 ,1620000000000 ,1616812494900 -1616812494923 ,112.5682886,26.87499288,58.19721603,199.0166393,201.7277182,12.441887,0.113936409,1620000000000 ,1620000000000 ,1620000000000 ,1616812494910 -1616812494933 ,112.5682886,26.87499288,58.19721603,199.0166393,-400,12.441887,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812494920 -1616812494943 ,112.5682877,26.87499076,58.19808197,198.9915042,201.7054249,12.439395,0.22783105,1620000000000 ,1620000000000 ,1620000000000 ,1616812494930 -1616812494953 ,112.5682873,26.8749897,58.19855881,198.979729,201.6832183,12.437346,0.113888896,1620000000000 ,1620000000000 ,1620000000000 ,1616812494940 -1616812494964 ,112.5682869,26.87498865,58.19906235,198.967462,201.6650695,12.435193,0.113869344,1620000000000 ,1620000000000 ,1620000000000 ,1616812494950 -1616812494984 ,112.5682865,26.87498759,58.19959259,198.9540475,201.638729,12.435365,0.113865106,1620000000000 ,1620000000000 ,1620000000000 ,1616812494960 -1616812494989 ,112.568286,26.87498653,58.20013046,198.9443486,201.6183598,12.436181,0.11386551,1620000000000 ,1620000000000 ,1620000000000 ,1616812494970 -1616812494997 ,112.5682856,26.87498547,58.20065689,198.9357426,201.6065261,12.437071,0.113872574,1620000000000 ,1620000000000 ,1620000000000 ,1616812494980 -1616812495007 ,112.5682856,26.87498547,58.20065689,198.9357426,-400,12.437071,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812494980 -1616812495015 ,112.5682848,26.87498335,58.20171356,198.9157438,201.5756444,12.437928,0.22775413,1620000000000 ,1620000000000 ,1620000000000 ,1616812495000 -1616812495024 ,112.5682844,26.87498229,58.20225906,198.9063728,201.5489352,12.438516,0.113878757,1620000000000 ,1620000000000 ,1620000000000 ,1616812495010 -1616812495040 ,112.5682839,26.87498123,58.20277405,198.8960728,201.5282372,12.438389,0.113873855,1620000000000 ,1620000000000 ,1620000000000 ,1616812495020 -1616812495045 ,112.5682835,26.87498017,58.20323563,198.8874668,201.5207503,12.4394,0.113877859,1620000000000 ,1620000000000 ,1620000000000 ,1616812495030 -1616812495058 ,112.5682831,26.87497911,58.2036438,198.8784509,201.5083851,12.441288,0.113889189,1620000000000 ,1620000000000 ,1620000000000 ,1616812495040 -1616812495067 ,112.5682827,26.87497805,58.20402145,198.8693804,201.4985301,12.442833,0.11390389,1620000000000 ,1620000000000 ,1620000000000 ,1616812495050 -1616812495076 ,112.5682823,26.87497699,58.20438766,198.8586707,201.4909175,12.444604,0.113916965,1620000000000 ,1620000000000 ,1620000000000 ,1616812495060 -1616812495089 ,112.5682819,26.87497593,58.20474243,198.848562,201.4824076,12.446078,0.113928842,1620000000000 ,1620000000000 ,1620000000000 ,1616812495070 -1616812495097 ,112.5682814,26.87497487,58.20509338,198.8381528,201.4745842,12.445758,0.113928391,1620000000000 ,1620000000000 ,1620000000000 ,1616812495080 -1616812495105 ,112.568281,26.87497381,58.20543289,198.8290277,201.4739044,12.446166,0.113930289,1620000000000 ,1620000000000 ,1620000000000 ,1616812495090 -1616812495115 ,112.5682806,26.87497275,58.20576096,198.8187278,201.4647514,12.446415,0.113936812,1620000000000 ,1620000000000 ,1620000000000 ,1616812495100 -1616812495125 ,112.5682802,26.87497169,58.20607758,198.8088103,201.451994,12.447706,0.113935442,1620000000000 ,1620000000000 ,1620000000000 ,1616812495110 -1616812495135 ,112.5682798,26.87497063,58.20639801,198.7997945,201.4382808,12.4478,0.113942626,1620000000000 ,1620000000000 ,1620000000000 ,1616812495120 -1616812495148 ,112.5682794,26.87496957,58.20671844,198.7893853,201.4247541,12.447725,0.113939858,1620000000000 ,1620000000000 ,1620000000000 ,1616812495130 -1616812495156 ,112.5682789,26.87496851,58.20706177,198.7800962,201.4155014,12.447381,0.113934804,1620000000000 ,1620000000000 ,1620000000000 ,1616812495140 -1616812495166 ,112.5682785,26.87496745,58.20742798,198.7709711,201.4086516,12.448144,0.113938848,1620000000000 ,1620000000000 ,1620000000000 ,1616812495150 -1616812495175 ,112.5682781,26.87496639,58.20782471,198.7629115,201.4020358,12.447637,0.113937139,1620000000000 ,1620000000000 ,1620000000000 ,1616812495160 -1616812495186 ,112.5682777,26.87496533,58.20824814,198.753759,201.3832603,12.447595,0.113935931,1620000000000 ,1620000000000 ,1620000000000 ,1616812495170 -1616812495196 ,112.5682773,26.87496427,58.20872116,198.7458087,201.3673228,12.446396,0.113926799,1620000000000 ,1620000000000 ,1620000000000 ,1616812495180 -1616812495206 ,112.5682769,26.87496321,58.2092247,198.7375851,201.3554948,12.446729,0.11392441,1620000000000 ,1620000000000 ,1620000000000 ,1616812495190 -1616812495216 ,112.5682764,26.87496215,58.20994568,198.732722,201.3193176,12.44674,0.113911428,1620000000000 ,1620000000000 ,1620000000000 ,1616812495200 -1616812495227 ,112.568276,26.87496108,58.21098709,198.7256186,201.2542173,12.446653,0.113890687,1620000000000 ,1620000000000 ,1620000000000 ,1616812495210 -1616812495237 ,112.5682756,26.87496002,58.21200943,198.7182147,201.2491886,12.448217,0.113899864,1620000000000 ,1620000000000 ,1620000000000 ,1616812495220 -1616812495249 ,112.5682752,26.87495896,58.21300888,198.7111659,201.2408158,12.449757,0.113915867,1620000000000 ,1620000000000 ,1620000000000 ,1616812495230 -1616812495256 ,112.5682748,26.8749579,58.21399307,198.7051554,201.2338849,12.450286,0.113921,1620000000000 ,1620000000000 ,1620000000000 ,1616812495240 -1616812495269 ,112.5682744,26.87495684,58.21500015,198.696604,201.2256701,12.449314,0.113917643,1620000000000 ,1620000000000 ,1620000000000 ,1616812495250 -1616812495277 ,112.568274,26.87495578,58.21602631,198.6907573,201.2155635,12.447667,0.113901924,1620000000000 ,1620000000000 ,1620000000000 ,1616812495260 -1616812495290 ,112.5682736,26.87495471,58.21704483,198.6872876,201.2073984,12.447739,0.11389667,1620000000000 ,1620000000000 ,1620000000000 ,1616812495270 -1616812495302 ,112.5682731,26.87495365,58.21801758,198.6832988,201.2014376,12.448852,0.113903608,1620000000000 ,1620000000000 ,1620000000000 ,1616812495280 -1616812495309 ,112.5682727,26.87495259,58.21893311,198.6796105,201.1931702,12.44987,0.113911116,1620000000000 ,1620000000000 ,1620000000000 ,1616812495290 -1616812495317 ,112.5682723,26.87495153,58.21979523,198.675649,201.1797083,12.451445,0.113918013,1620000000000 ,1620000000000 ,1620000000000 ,1616812495300 -1616812495327 ,112.5682719,26.87495047,58.22066116,198.6720153,201.1674014,12.451361,0.11392045,1620000000000 ,1620000000000 ,1620000000000 ,1616812495310 -1616812495336 ,112.5682715,26.8749494,58.22154617,198.6700209,201.1540125,12.451973,0.113923654,1620000000000 ,1620000000000 ,1620000000000 ,1616812495320 -1616812495347 ,112.5682711,26.87494834,58.22241592,198.6687915,201.1479458,12.452438,0.113931384,1620000000000 ,1620000000000 ,1620000000000 ,1616812495330 -1616812495357 ,112.5682707,26.87494728,58.22323608,198.6686822,201.1440019,12.45354,0.113932787,1620000000000 ,1620000000000 ,1620000000000 ,1616812495340 -1616812495367 ,112.5682703,26.87494621,58.22400284,198.6684909,201.1337735,12.453258,0.113932082,1620000000000 ,1620000000000 ,1620000000000 ,1616812495350 -1616812495381 ,112.5682699,26.87494515,58.22473907,198.6691466,201.1188139,12.454218,0.113932894,1620000000000 ,1620000000000 ,1620000000000 ,1616812495360 -1616812495389 ,112.5682694,26.87494409,58.22546005,198.6714142,201.1149938,12.454329,0.113938801,1620000000000 ,1620000000000 ,1620000000000 ,1616812495370 -1616812495400 ,112.568269,26.87494303,58.22611618,198.6729715,201.1137308,12.457041,0.113950623,1620000000000 ,1620000000000 ,1620000000000 ,1616812495380 -1616812495410 ,112.5682686,26.87494196,58.22670746,198.6741463,201.1164552,12.457549,0.113958481,1620000000000 ,1620000000000 ,1620000000000 ,1616812495390 -1616812495420 ,112.5682682,26.8749409,58.22726822,198.6763593,201.1149107,12.458877,0.113967793,1620000000000 ,1620000000000 ,1620000000000 ,1616812495400 -1616812495432 ,112.5682678,26.87493984,58.22782135,198.677698,201.1141917,12.459465,0.113976274,1620000000000 ,1620000000000 ,1620000000000 ,1616812495410 -1616812495440 ,112.5682674,26.87493877,58.22836685,198.6778073,201.1144337,12.460409,0.113979217,1620000000000 ,1620000000000 ,1620000000000 ,1616812495420 -1616812495448 ,112.568267,26.87493771,58.22890091,198.6804847,201.1212232,12.461042,0.113989439,1620000000000 ,1620000000000 ,1620000000000 ,1616812495430 -1616812495460 ,112.5682666,26.87493665,58.22945404,198.6815502,201.1373092,12.460264,0.113987016,1620000000000 ,1620000000000 ,1620000000000 ,1616812495440 -1616812495470 ,112.5682662,26.87493558,58.22985077,198.6805121,201.169448,12.460617,0.114005322,1620000000000 ,1620000000000 ,1620000000000 ,1616812495450 -1616812495479 ,112.5682657,26.87493452,58.23006058,198.6822059,201.1969829,12.460619,0.114023996,1620000000000 ,1620000000000 ,1620000000000 ,1616812495460 -1616812495490 ,112.5682653,26.87493346,58.23025894,198.6852385,201.2041265,12.462771,0.114040821,1620000000000 ,1620000000000 ,1620000000000 ,1616812495470 -1616812495500 ,112.5682649,26.87493239,58.23044968,198.6876428,201.2098802,12.464188,0.114055551,1620000000000 ,1620000000000 ,1620000000000 ,1616812495480 -1616812495509 ,112.5682645,26.87493133,58.23069382,198.6878067,201.2166049,12.464467,0.114063143,1620000000000 ,1620000000000 ,1620000000000 ,1616812495490 -1616812495518 ,112.5682641,26.87493027,58.2310524,198.6874788,201.2209906,12.463368,0.114060578,1620000000000 ,1620000000000 ,1620000000000 ,1616812495500 -1616812495529 ,112.5682637,26.8749292,58.23150253,198.6875335,201.2215615,12.461751,0.114050886,1620000000000 ,1620000000000 ,1620000000000 ,1616812495510 -1616812495541 ,112.5682633,26.87492814,58.231987,198.6891727,201.2204601,12.461172,0.114044625,1620000000000 ,1620000000000 ,1620000000000 ,1616812495520 -1616812495550 ,112.5682629,26.87492708,58.23245621,198.6891181,201.2239953,12.4621725,0.114047888,1620000000000 ,1620000000000 ,1620000000000 ,1616812495530 -1616812495560 ,112.5682624,26.87492601,58.23287582,198.6904022,201.2237769,12.464734,0.11406668,1620000000000 ,1620000000000 ,1620000000000 ,1616812495540 -1616812495571 ,112.568262,26.87492495,58.23327255,198.6924785,201.2248939,12.465165,0.114077366,1620000000000 ,1620000000000 ,1620000000000 ,1616812495550 -1616812495582 ,112.5682616,26.87492389,58.23368835,198.6938446,201.2225616,12.465686,0.114084743,1620000000000 ,1620000000000 ,1620000000000 ,1616812495560 -1616812495589 ,112.5682612,26.87492282,58.2341423,198.6953472,201.2307821,12.465044,0.11408204,1620000000000 ,1620000000000 ,1620000000000 ,1616812495570 -1616812495606 ,112.5682608,26.87492176,58.23460388,198.6970411,201.2415206,12.464143,0.114075802,1620000000000 ,1620000000000 ,1620000000000 ,1616812495580 -1616812495610 ,112.5682604,26.8749207,58.23503876,198.6986804,201.2456899,12.466027,0.114089782,1620000000000 ,1620000000000 ,1620000000000 ,1616812495590 -1616812495620 ,112.56826,26.87491963,58.23547363,198.6997732,201.2500903,12.466739,0.114096534,1620000000000 ,1620000000000 ,1620000000000 ,1616812495600 -1616812495629 ,112.5682596,26.87491857,58.23591995,198.6995,201.2519683,12.469251,0.114117471,1620000000000 ,1620000000000 ,1620000000000 ,1616812495610 -1616812495640 ,112.5682591,26.87491751,58.23636246,198.7007021,201.2556824,12.46849,0.114120746,1620000000000 ,1620000000000 ,1620000000000 ,1616812495620 -1616812495651 ,112.5682587,26.87491644,58.23681259,198.701631,201.262428,12.468006,0.114117634,1620000000000 ,1620000000000 ,1620000000000 ,1616812495630 -1616812495660 ,112.5682583,26.87491538,58.23728561,198.7026965,201.2595551,12.467326,0.114113089,1620000000000 ,1620000000000 ,1620000000000 ,1616812495640 -1616812495670 ,112.5682579,26.87491432,58.23775482,198.7045543,201.2549954,12.46885,0.114118173,1620000000000 ,1620000000000 ,1620000000000 ,1616812495650 -1616812495681 ,112.5682575,26.87491325,58.23818588,198.7049641,201.2462211,12.469933,0.114126959,1620000000000 ,1620000000000 ,1620000000000 ,1616812495660 -1616812495690 ,112.5682571,26.87491219,58.23854828,198.7066034,201.2486018,12.470561,0.114133256,1620000000000 ,1620000000000 ,1620000000000 ,1616812495670 -1616812495701 ,112.5682567,26.87491113,58.23888016,198.7086251,201.2483892,12.471777,0.114143618,1620000000000 ,1620000000000 ,1620000000000 ,1616812495680 -1616812495717 ,112.5682562,26.87491006,58.23921967,198.7088437,201.2475883,12.47202,0.114146357,1620000000000 ,1620000000000 ,1620000000000 ,1616812495690 -1616812495723 ,112.5682558,26.874909,58.23957443,198.7113572,201.2369787,12.472266,0.114146558,1620000000000 ,1620000000000 ,1620000000000 ,1616812495700 -1616812495733 ,112.5682554,26.87490793,58.23987198,198.7135702,201.2245433,12.47318,0.114153416,1620000000000 ,1620000000000 ,1620000000000 ,1616812495710 -1616812495743 ,112.568255,26.87490687,58.24006653,198.7169579,201.2322385,12.475514,0.114164358,1620000000000 ,1620000000000 ,1620000000000 ,1616812495720 -1616812495753 ,112.5682546,26.87490581,58.24018097,198.7186245,201.2432093,12.476397,0.114176407,1620000000000 ,1620000000000 ,1620000000000 ,1616812495730 -1616812495763 ,112.5682542,26.87490474,58.24030685,198.7176683,201.2426726,12.476961,0.114183418,1620000000000 ,1620000000000 ,1620000000000 ,1616812495740 -1616812495773 ,112.5682538,26.87490368,58.24049377,198.7182693,201.238227,12.477135,0.114186936,1620000000000 ,1620000000000 ,1620000000000 ,1616812495750 -1616812495782 ,112.5682533,26.87490261,58.24069977,198.7196627,201.2414394,12.476752,0.114184186,1620000000000 ,1620000000000 ,1620000000000 ,1616812495760 -1616812495792 ,112.5682529,26.87490155,58.24089813,198.7193622,201.249243,12.477134,0.114188951,1620000000000 ,1620000000000 ,1620000000000 ,1616812495770 -1616812495802 ,112.5682525,26.87490048,58.24106598,198.7210561,201.252127,12.478877,0.114201244,1620000000000 ,1620000000000 ,1620000000000 ,1616812495780 -1616812495813 ,112.5682521,26.87489942,58.24122238,198.7214385,201.2585397,12.481344,0.114220353,1620000000000 ,1620000000000 ,1620000000000 ,1616812495790 -1616812495823 ,112.5682517,26.87489835,58.24138641,198.7216571,201.2518524,12.482363,0.114234325,1620000000000 ,1620000000000 ,1620000000000 ,1616812495800 -1616812495833 ,112.5682513,26.87489729,58.24157333,198.7210561,201.254639,12.4816,0.114231783,1620000000000 ,1620000000000 ,1620000000000 ,1616812495810 -1616812495842 ,112.5682509,26.87489623,58.2417717,198.7207829,201.2637974,12.482511,0.11423827,1620000000000 ,1620000000000 ,1620000000000 ,1616812495820 -1616812495855 ,112.5682504,26.87489516,58.24193573,198.7222309,201.2575929,12.484058,0.114248612,1620000000000 ,1620000000000 ,1620000000000 ,1616812495830 -1616812495862 ,112.56825,26.8748941,58.24206924,198.7231871,201.2560981,12.485257,0.11426061,1620000000000 ,1620000000000 ,1620000000000 ,1616812495840 -1616812495874 ,112.5682496,26.87489303,58.24221039,198.7231324,201.2508019,12.485896,0.114267227,1620000000000 ,1620000000000 ,1620000000000 ,1616812495850 -1616812495884 ,112.5682492,26.87489197,58.24238205,198.7235149,201.2506245,12.484745,0.114262166,1620000000000 ,1620000000000 ,1620000000000 ,1616812495860 -1616812495895 ,112.5682488,26.8748909,58.24256516,198.725482,201.2525783,12.485446,0.11426501,1620000000000 ,1620000000000 ,1620000000000 ,1616812495880 -1616812495903 ,112.5682484,26.87488984,58.24274445,198.7252088,201.2552187,12.486122,0.114270779,1620000000000 ,1620000000000 ,1620000000000 ,1616812495880 -1616812495914 ,112.5682475,26.87488771,58.24313736,198.722668,201.2455232,12.487919,0.228568499,1620000000000 ,1620000000000 ,1620000000000 ,1616812495900 -1616812495923 ,112.5682475,26.87488771,58.24313736,198.722668,-400,12.487919,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812495910 -1616812495936 ,112.5682467,26.87488558,58.24349594,198.723351,201.2544274,12.489709,0.228610058,1620000000000 ,1620000000000 ,1620000000000 ,1616812495920 -1616812495943 ,112.5682463,26.87488451,58.24371719,198.7238701,201.2398021,12.489233,0.114305006,1620000000000 ,1620000000000 ,1620000000000 ,1616812495930 -1616812495954 ,112.5682459,26.87488344,58.24396896,198.7228319,201.2267987,12.490155,0.1143061,1620000000000 ,1620000000000 ,1620000000000 ,1616812495940 -1616812495964 ,112.5682455,26.87488238,58.24419403,198.7231871,201.2237456,12.49291,0.114331331,1620000000000 ,1620000000000 ,1620000000000 ,1616812495950 -1616812495973 ,112.5682451,26.87488131,58.24437332,198.7247444,201.2286114,12.492418,0.114329754,1620000000000 ,1620000000000 ,1620000000000 ,1616812495960 -1616812495983 ,112.5682447,26.87488025,58.24452209,198.7263016,201.2471129,12.492841,0.114337076,1620000000000 ,1620000000000 ,1620000000000 ,1616812495970 -1616812495993 ,112.5682442,26.87487918,58.24469757,198.7255367,201.2476236,12.493623,0.114344086,1620000000000 ,1620000000000 ,1620000000000 ,1616812495980 -1616812496006 ,112.5682442,26.87487918,58.24469757,198.7255367,-400,12.493623,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812495980 -1616812496015 ,112.5682434,26.87487705,58.24500275,198.7252908,201.2340547,12.493164,0.228660896,1620000000000 ,1620000000000 ,1620000000000 ,1616812496000 -1616812496025 ,112.568243,26.87487598,58.24509048,198.7258645,201.2543266,12.495686,0.114356085,1620000000000 ,1620000000000 ,1620000000000 ,1616812496010 -1616812496036 ,112.5682426,26.87487492,58.24515915,198.7263563,201.2695152,12.498608,0.114381262,1620000000000 ,1620000000000 ,1620000000000 ,1616812496020 -1616812496044 ,112.5682422,26.87487385,58.24526978,198.7246078,201.2717049,12.499956,0.114400332,1620000000000 ,1620000000000 ,1620000000000 ,1616812496030 -1616812496055 ,112.5682417,26.87487279,58.24534225,198.7223675,201.2566197,12.501225,0.114408282,1620000000000 ,1620000000000 ,1620000000000 ,1616812496040 -1616812496065 ,112.5682413,26.87487172,58.24532318,198.7211927,201.2463138,12.5014515,0.114407397,1620000000000 ,1620000000000 ,1620000000000 ,1616812496050 -1616812496075 ,112.5682409,26.87487065,58.24521255,198.7196081,201.2455056,12.501543,0.114405026,1620000000000 ,1620000000000 ,1620000000000 ,1616812496060 -1616812496086 ,112.5682405,26.87486959,58.24507904,198.7175317,201.2505758,12.50033,0.114397177,1620000000000 ,1620000000000 ,1620000000000 ,1616812496070 -1616812496096 ,112.5682401,26.87486852,58.24500656,198.7159471,201.2504033,12.501006,0.114398867,1620000000000 ,1620000000000 ,1620000000000 ,1616812496080 -1616812496106 ,112.5682397,26.87486745,58.24500275,198.7151275,201.2430536,12.501631,0.114403308,1620000000000 ,1620000000000 ,1620000000000 ,1616812496090 -1616812496116 ,112.5682393,26.87486639,58.24502182,198.7137614,201.2414056,12.504101,0.114425448,1620000000000 ,1620000000000 ,1620000000000 ,1616812496100 -1616812496124 ,112.5682388,26.87486532,58.24501038,198.7140619,201.2380653,12.506774,0.114443585,1620000000000 ,1620000000000 ,1620000000000 ,1616812496110 -1616812496135 ,112.5682384,26.87486425,58.2449646,198.711767,201.2379848,12.509772,0.114469628,1620000000000 ,1620000000000 ,1620000000000 ,1616812496120 -1616812496145 ,112.568238,26.87486319,58.24493408,198.7097179,201.233433,12.50992,0.114474806,1620000000000 ,1620000000000 ,1620000000000 ,1616812496130 -1616812496157 ,112.5682376,26.87486212,58.24494934,198.7077508,201.2239183,12.508787,0.114469469,1620000000000 ,1620000000000 ,1620000000000 ,1616812496140 -1616812496166 ,112.5682372,26.87486105,58.2449913,198.7067127,201.2332517,12.507038,0.114452443,1620000000000 ,1620000000000 ,1620000000000 ,1616812496150 -1616812496174 ,112.5682368,26.87485999,58.24499512,198.7034615,201.2303253,12.513126,0.114493191,1620000000000 ,1620000000000 ,1620000000000 ,1616812496160 -1616812496185 ,112.5682364,26.87485892,58.24485397,198.7008387,201.2195813,12.511488,0.114473359,1620000000000 ,1620000000000 ,1620000000000 ,1616812496170 -1616812496196 ,112.5682359,26.87485785,58.24465942,198.6927518,201.2180347,12.516585,0.114518444,1620000000000 ,1620000000000 ,1620000000000 ,1616812496180 -1616812496207 ,112.5682355,26.87485678,58.24453354,198.6858123,201.2351943,12.519115,0.114542419,1620000000000 ,1620000000000 ,1620000000000 ,1616812496190 -1616812496220 ,112.5682351,26.87485572,58.24472809,198.6884351,201.2863819,12.516499,0.114530091,1620000000000 ,1620000000000 ,1620000000000 ,1616812496200 -1616812496227 ,112.5682347,26.87485465,58.2453804,198.687069,201.3796937,12.511276,0.114417515,1620000000000 ,1620000000000 ,1620000000000 ,1616812496210 -1616812496237 ,112.5682343,26.87485359,58.24621582,198.6847195,201.3547345,12.506196,0.114370519,1620000000000 ,1620000000000 ,1620000000000 ,1616812496220 -1616812496250 ,112.5682339,26.87485252,58.24720764,198.6795831,201.3286735,12.508508,0.114369213,1620000000000 ,1620000000000 ,1620000000000 ,1616812496230 -1616812496256 ,112.5682334,26.87485146,58.24816132,198.6748567,201.3329392,12.513515,0.114408213,1620000000000 ,1620000000000 ,1620000000000 ,1616812496240 -1616812496266 ,112.568233,26.87485039,58.24897003,198.6710318,201.3571768,12.518754,0.114458844,1620000000000 ,1620000000000 ,1620000000000 ,1616812496250 -1616812496277 ,112.5682326,26.87484932,58.2497406,198.6643655,201.3832034,12.518051,0.114469457,1620000000000 ,1620000000000 ,1620000000000 ,1616812496260 -1616812496289 ,112.5682322,26.87484826,58.25071335,198.6585462,201.3627787,12.515395,0.114449236,1620000000000 ,1620000000000 ,1620000000000 ,1616812496270 -1616812496297 ,112.5682318,26.87484719,58.25192642,198.6538743,201.3253178,12.512523,0.114425561,1620000000000 ,1620000000000 ,1620000000000 ,1616812496280 -1616812496312 ,112.5682314,26.87484613,58.2532692,198.6494484,201.3112218,12.51376,0.114428838,1620000000000 ,1620000000000 ,1620000000000 ,1616812496290 -1616812496321 ,112.5682309,26.87484506,58.2546196,198.6490385,201.3287885,12.515549,0.114446411,1620000000000 ,1620000000000 ,1620000000000 ,1616812496300 -1616812496326 ,112.5682305,26.87484399,58.2559433,198.6444213,201.3383574,12.515851,0.114455205,1620000000000 ,1620000000000 ,1620000000000 ,1616812496310 -1616812496343 ,112.5682301,26.87484293,58.25735092,198.6361978,201.3299047,12.5157,0.114458217,1620000000000 ,1620000000000 ,1620000000000 ,1616812496320 -1616812496350 ,112.5682297,26.87484186,58.25890732,198.6300233,201.2996683,12.515868,0.114456624,1620000000000 ,1620000000000 ,1620000000000 ,1616812496330 -1616812496357 ,112.5682293,26.87484079,58.26052856,198.6245865,201.2839536,12.517247,0.114467315,1620000000000 ,1620000000000 ,1620000000000 ,1616812496340 -1616812496366 ,112.5682289,26.87483973,58.26213455,198.620543,201.2950255,12.520213,0.114494568,1620000000000 ,1620000000000 ,1620000000000 ,1616812496350 -1616812496378 ,112.5682285,26.87483866,58.2637291,198.6143412,201.2968419,12.519094,0.114497507,1620000000000 ,1620000000000 ,1620000000000 ,1616812496360 -1616812496387 ,112.568228,26.87483759,58.26543427,198.6067187,201.2751896,12.516387,0.114476545,1620000000000 ,1620000000000 ,1620000000000 ,1616812496370 -1616812496400 ,112.5682276,26.87483653,58.2672081,198.6013365,201.2518439,12.517161,0.114471274,1620000000000 ,1620000000000 ,1620000000000 ,1616812496380 -1616812496410 ,112.5682272,26.87483546,58.26895142,198.5937687,201.2494563,12.520421,0.114497421,1620000000000 ,1620000000000 ,1620000000000 ,1616812496390 -1616812496421 ,112.5682268,26.87483439,58.27058029,198.5895886,201.2561941,12.524182,0.114530491,1620000000000 ,1620000000000 ,1620000000000 ,1616812496400 -1616812496436 ,112.5682264,26.87483332,58.27215195,198.5829496,201.2549215,12.525381,0.114547643,1620000000000 ,1620000000000 ,1620000000000 ,1616812496410 -1616812496438 ,112.568226,26.87483226,58.27376938,198.5753545,201.2345547,12.524498,0.114541363,1620000000000 ,1620000000000 ,1620000000000 ,1616812496420 -1616812496452 ,112.5682255,26.87483119,58.27541733,198.5702728,201.2186346,12.525442,0.114543057,1620000000000 ,1620000000000 ,1620000000000 ,1616812496430 -1616812496459 ,112.5682251,26.87483012,58.27699661,198.5640983,201.2138229,12.527657,0.114560416,1620000000000 ,1620000000000 ,1620000000000 ,1616812496440 -1616812496469 ,112.5682247,26.87482905,58.2781105,198.5586615,201.1742541,12.530098,0.114620619,1620000000000 ,1620000000000 ,1620000000000 ,1616812496450 -1616812496482 ,112.5682243,26.87482798,58.27883148,198.5527056,201.1223269,12.53117,0.114677013,1620000000000 ,1620000000000 ,1620000000000 ,1616812496460 -1616812496489 ,112.5682239,26.87482691,58.27952576,198.5441542,201.1090385,12.532025,0.114679913,1620000000000 ,1620000000000 ,1620000000000 ,1616812496470 -1616812496509 ,112.5682235,26.87482584,58.28020096,198.5366683,201.1010689,12.534436,0.114696144,1620000000000 ,1620000000000 ,1620000000000 ,1616812496480 -1616812496515 ,112.5682231,26.87482477,58.28079987,198.5274339,201.0941315,12.535145,0.114704422,1620000000000 ,1620000000000 ,1620000000000 ,1616812496490 -1616812496524 ,112.5682227,26.8748237,58.28130722,198.5178989,201.098833,12.537016,0.114716394,1620000000000 ,1620000000000 ,1620000000000 ,1616812496500 -1616812496529 ,112.5682222,26.87482263,58.28176498,198.5075717,201.101651,12.538987,0.114730702,1620000000000 ,1620000000000 ,1620000000000 ,1616812496510 -1616812496540 ,112.5682218,26.87482156,58.28218842,198.5001404,201.0935961,12.541542,0.11475291,1620000000000 ,1620000000000 ,1620000000000 ,1616812496520 -1616812496552 ,112.5682214,26.87482049,58.28258514,198.4902776,201.0772474,12.544348,0.114776764,1620000000000 ,1620000000000 ,1620000000000 ,1616812496530 -1616812496561 ,112.568221,26.87481942,58.28294373,198.4806334,201.068373,12.544653,0.114778614,1620000000000 ,1620000000000 ,1620000000000 ,1616812496540 -1616812496572 ,112.5682206,26.87481835,58.28327942,198.4720274,201.0637837,12.545587,0.11478504,1620000000000 ,1620000000000 ,1620000000000 ,1616812496550 -1616812496581 ,112.5682202,26.87481728,58.2836113,198.4641043,201.0515862,12.545803,0.114785736,1620000000000 ,1620000000000 ,1620000000000 ,1616812496560 -1616812496590 ,112.5682198,26.87481621,58.28393936,198.4545967,201.038601,12.548287,0.114801222,1620000000000 ,1620000000000 ,1620000000000 ,1616812496570 -1616812496603 ,112.5682194,26.87481513,58.28424835,198.4453077,201.0286793,12.550305,0.114816433,1620000000000 ,1620000000000 ,1620000000000 ,1616812496580 -1616812496611 ,112.5682189,26.87481406,58.28453445,198.4370022,201.0183285,12.551619,0.114830532,1620000000000 ,1620000000000 ,1620000000000 ,1616812496590 -1616812496620 ,112.5682185,26.87481299,58.28483963,198.4289425,201.0025036,12.552498,0.11483698,1620000000000 ,1620000000000 ,1620000000000 ,1616812496600 -1616812496630 ,112.5682181,26.87481192,58.28517151,198.4208829,200.9987501,12.552834,0.114839693,1620000000000 ,1620000000000 ,1620000000000 ,1616812496610 -1616812496641 ,112.5682177,26.87481085,58.28550339,198.4111294,200.9884776,12.554298,0.114849437,1620000000000 ,1620000000000 ,1620000000000 ,1616812496620 -1616812496652 ,112.5682173,26.87480977,58.28580475,198.4023048,200.983103,12.556,0.114859641,1620000000000 ,1620000000000 ,1620000000000 ,1616812496630 -1616812496667 ,112.5682169,26.8748087,58.28610229,198.3923054,200.9755969,12.557602,0.114874336,1620000000000 ,1620000000000 ,1620000000000 ,1616812496640 -1616812496671 ,112.5682165,26.87480763,58.28640366,198.3838633,200.9623587,12.557278,0.114872239,1620000000000 ,1620000000000 ,1620000000000 ,1616812496650 -1616812496680 ,112.5682161,26.87480656,58.28672409,198.3736726,200.9519014,12.557181,0.11486667,1620000000000 ,1620000000000 ,1620000000000 ,1616812496660 -1616812496690 ,112.5682157,26.87480548,58.28707886,198.3644109,200.9474461,12.5573845,0.114875605,1620000000000 ,1620000000000 ,1620000000000 ,1616812496670 -1616812496700 ,112.5682152,26.87480441,58.28745651,198.3552038,200.9388247,12.557648,0.114867027,1620000000000 ,1620000000000 ,1620000000000 ,1616812496680 -1616812496715 ,112.5682148,26.87480334,58.28787613,198.343893,200.9202654,12.562115,0.114900057,1620000000000 ,1620000000000 ,1620000000000 ,1616812496690 -1616812496720 ,112.5682144,26.87480226,58.28831482,198.3334292,200.9051297,12.564085,0.114923232,1620000000000 ,1620000000000 ,1620000000000 ,1616812496700 -1616812496732 ,112.568214,26.87480119,58.28877258,198.3246319,200.8945455,12.566769,0.114943832,1620000000000 ,1620000000000 ,1620000000000 ,1616812496710 -1616812496741 ,112.5682136,26.87480011,58.2892952,198.3148237,200.8981294,12.565742,0.114946208,1620000000000 ,1620000000000 ,1620000000000 ,1616812496720 -1616812496753 ,112.5682132,26.87479904,58.28991318,198.3050156,200.8892175,12.563993,0.114934506,1620000000000 ,1620000000000 ,1620000000000 ,1616812496730 -1616812496763 ,112.5682128,26.87479797,58.29060364,198.2952894,200.8610584,12.56261,0.114915614,1620000000000 ,1620000000000 ,1620000000000 ,1616812496740 -1616812496774 ,112.5682124,26.87479689,58.2912674,198.2871751,200.8328053,12.563014,0.114908528,1620000000000 ,1620000000000 ,1620000000000 ,1616812496750 -1616812496782 ,112.568212,26.87479582,58.29188538,198.277367,200.832335,12.564571,0.114924465,1620000000000 ,1620000000000 ,1620000000000 ,1616812496760 -1616812496792 ,112.5682116,26.87479474,58.29251099,198.2691707,200.8336321,12.566394,0.114940323,1620000000000 ,1620000000000 ,1620000000000 ,1616812496770 -1616812496803 ,112.5682111,26.87479367,58.29325104,198.2582971,200.8349911,12.566595,0.114949018,1620000000000 ,1620000000000 ,1620000000000 ,1616812496780 -1616812496812 ,112.5682107,26.8747926,58.29410172,198.2466858,200.8202818,12.566589,0.114950913,1620000000000 ,1620000000000 ,1620000000000 ,1616812496790 -1616812496824 ,112.5682103,26.87479152,58.29499054,198.2372055,200.8091365,12.567575,0.114958449,1620000000000 ,1620000000000 ,1620000000000 ,1616812496800 -1616812496833 ,112.5682099,26.87479045,58.29584122,198.2270968,200.8029373,12.567783,0.114959676,1620000000000 ,1620000000000 ,1620000000000 ,1616812496810 -1616812496844 ,112.5682095,26.87478937,58.29663849,198.2151849,200.7942078,12.567906,0.11496171,1620000000000 ,1620000000000 ,1620000000000 ,1616812496820 -1616812496852 ,112.5682091,26.8747883,58.29747772,198.2031638,200.7777173,12.566694,0.114951987,1620000000000 ,1620000000000 ,1620000000000 ,1616812496830 -1616812496862 ,112.5682087,26.87478722,58.29838181,198.1924541,200.7573556,12.56616,0.114949933,1620000000000 ,1620000000000 ,1620000000000 ,1616812496840 -1616812496873 ,112.5682083,26.87478615,58.29932404,198.1822361,200.7489499,12.566946,0.114952777,1620000000000 ,1620000000000 ,1620000000000 ,1616812496850 -1616812496882 ,112.5682079,26.87478507,58.30026627,198.1718815,200.7362339,12.5667515,0.114952275,1620000000000 ,1620000000000 ,1620000000000 ,1616812496860 -1616812496892 ,112.5682075,26.874784,58.30123138,198.1604888,200.7160626,12.5660515,0.114938628,1620000000000 ,1620000000000 ,1620000000000 ,1616812496870 -1616812496903 ,112.5682071,26.87478292,58.30228806,198.1480578,200.6939768,12.568175,0.114970979,1620000000000 ,1620000000000 ,1620000000000 ,1616812496880 -1616812496912 ,112.5682067,26.87478185,58.30339813,198.1371842,200.6753621,12.566812,0.1149446,1620000000000 ,1620000000000 ,1620000000000 ,1616812496890 -1616812496924 ,112.5682063,26.87478077,58.30449295,198.1296983,200.6760044,12.567319,0.114963572,1620000000000 ,1620000000000 ,1620000000000 ,1616812496900 -1616812496934 ,112.5682059,26.8747797,58.3054924,198.12601,200.6687242,12.564517,0.114931296,1620000000000 ,1620000000000 ,1620000000000 ,1616812496910 -1616812496942 ,112.5682054,26.87477862,58.30632401,198.1157647,200.6311548,12.567734,0.114945682,1620000000000 ,1620000000000 ,1620000000000 ,1616812496920 -1616812496955 ,112.568205,26.87477754,58.30703735,198.1025414,200.6171862,12.568204,0.114947921,1620000000000 ,1620000000000 ,1620000000000 ,1616812496930 -1616812496962 ,112.5682046,26.87477647,58.30770111,198.0874877,200.6201168,12.570912,0.114963606,1620000000000 ,1620000000000 ,1620000000000 ,1616812496940 -1616812496973 ,112.5682042,26.87477539,58.30823898,198.076013,200.6280302,12.572824,0.114982801,1620000000000 ,1620000000000 ,1620000000000 ,1616812496950 -1616812496984 ,112.5682038,26.87477432,58.30871964,198.0643744,200.6279219,12.571487,0.114976904,1620000000000 ,1620000000000 ,1620000000000 ,1616812496960 -1616812496999 ,112.5682034,26.87477324,58.30926132,198.052927,200.6038577,12.570208,0.114964253,1620000000000 ,1620000000000 ,1620000000000 ,1616812496980 -1616812497008 ,112.568203,26.87477216,58.30989838,198.0400316,200.5680656,12.5703125,0.114955037,1620000000000 ,1620000000000 ,1620000000000 ,1616812496980 -1616812497012 ,112.5682026,26.87477109,58.3104744,198.0271908,200.5459022,12.5734005,0.114971978,1620000000000 ,1620000000000 ,1620000000000 ,1616812497000 -1616812497026 ,112.5682022,26.87477001,58.31083298,198.0184208,200.5545503,12.576702,0.114997176,1620000000000 ,1620000000000 ,1620000000000 ,1616812497000 -1616812497034 ,112.5682018,26.87476893,58.31102371,198.0063177,200.5716108,12.577145,0.115002788,1620000000000 ,1620000000000 ,1620000000000 ,1616812497020 -1616812497043 ,112.5682014,26.87476786,58.31124878,197.9929033,200.5491824,12.574436,0.114985042,1620000000000 ,1620000000000 ,1620000000000 ,1616812497030 -1616812497053 ,112.568201,26.87476678,58.31162643,197.9784779,200.5104427,12.573457,0.114969731,1620000000000 ,1620000000000 ,1620000000000 ,1616812497040 -1616812497064 ,112.5682002,26.87476463,58.31238937,197.9535614,200.49641,12.576463,0.229950685,1620000000000 ,1620000000000 ,1620000000000 ,1616812497050 -1616812497080 ,112.5681998,26.87476355,58.31261444,197.9407206,200.5086846,12.578682,0.115005491,1620000000000 ,1620000000000 ,1620000000000 ,1616812497060 -1616812497086 ,112.5681994,26.87476247,58.31285858,197.9254756,200.4897694,12.5775795,0.114997144,1620000000000 ,1620000000000 ,1620000000000 ,1616812497070 -1616812497094 ,112.568199,26.87476139,58.31319046,197.9121431,200.454375,12.577127,0.114990647,1620000000000 ,1620000000000 ,1620000000000 ,1616812497080 -1616812497110 ,112.568199,26.87476139,58.31319046,197.9121431,-400,12.577127,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812497090 -1616812497116 ,112.5681982,26.87475924,58.31394577,197.8884287,200.4397555,12.5766735,0.229962791,1620000000000 ,1620000000000 ,1620000000000 ,1616812497100 -1616812497123 ,112.5681978,26.87475816,58.31437683,197.8784839,200.4330906,12.576336,0.114982055,1620000000000 ,1620000000000 ,1620000000000 ,1616812497110 -1616812497134 ,112.5681974,26.87475708,58.314888,197.8651787,200.4053788,12.576429,0.114975696,1620000000000 ,1620000000000 ,1620000000000 ,1616812497120 -1616812497144 ,112.568197,26.87475601,58.31545258,197.852174,200.3794208,12.577406,0.114979625,1620000000000 ,1620000000000 ,1620000000000 ,1616812497130 -1616812497154 ,112.5681966,26.87475493,58.31603622,197.839907,200.3706055,12.5779295,0.114988715,1620000000000 ,1620000000000 ,1620000000000 ,1616812497140 -1616812497165 ,112.5681962,26.87475385,58.31666183,197.8277766,200.3638158,12.577384,0.11498643,1620000000000 ,1620000000000 ,1620000000000 ,1616812497150 -1616812497174 ,112.5681958,26.87475277,58.31738663,197.8158647,200.3461375,12.575079,0.114967305,1620000000000 ,1620000000000 ,1620000000000 ,1616812497160 -1616812497187 ,112.5681954,26.87475169,58.31818008,197.8043627,200.319278,12.574294,0.114955663,1620000000000 ,1620000000000 ,1620000000000 ,1616812497170 -1616812497198 ,112.568195,26.87475062,58.31897354,197.7931885,200.303633,12.575428,0.114957407,1620000000000 ,1620000000000 ,1620000000000 ,1616812497180 -1616812497203 ,112.5681946,26.87474954,58.31970596,197.7794189,200.2982853,12.578129,0.114975809,1620000000000 ,1620000000000 ,1620000000000 ,1616812497190 -1616812497214 ,112.5681942,26.87474846,58.32052994,197.7657312,200.3080272,12.577836,0.115040455,1620000000000 ,1620000000000 ,1620000000000 ,1616812497200 -1616812497226 ,112.5681938,26.87474738,58.32149124,197.7517976,200.3409442,12.578336,0.115088686,1620000000000 ,1620000000000 ,1620000000000 ,1616812497210 -1616812497235 ,112.5681934,26.8747463,58.32252121,197.7392573,200.3249227,12.576267,0.115072525,1620000000000 ,1620000000000 ,1620000000000 ,1616812497220 -1616812497250 ,112.568193,26.87474522,58.32362747,197.7265532,200.3085821,12.574723,0.115059599,1620000000000 ,1620000000000 ,1620000000000 ,1616812497230 -1616812497255 ,112.5681926,26.87474414,58.32476425,197.713166,200.297772,12.575354,0.115057858,1620000000000 ,1620000000000 ,1620000000000 ,1616812497240 -1616812497265 ,112.5681922,26.87474306,58.32588959,197.7020192,200.2893354,12.576191,0.115066721,1620000000000 ,1620000000000 ,1620000000000 ,1616812497250 -1616812497275 ,112.5681918,26.87474198,58.32698059,197.6903805,200.2829519,12.577273,0.115075267,1620000000000 ,1620000000000 ,1620000000000 ,1616812497260 -1616812497284 ,112.5681914,26.8747409,58.32810211,197.6781955,200.2713359,12.576034,0.115070893,1620000000000 ,1620000000000 ,1620000000000 ,1616812497270 -1616812497296 ,112.568191,26.87473983,58.32930374,197.6659831,200.254225,12.574712,0.115057641,1620000000000 ,1620000000000 ,1620000000000 ,1616812497280 -1616812497308 ,112.5681906,26.87473875,58.33055496,197.6523773,200.2488919,12.574723,0.115055499,1620000000000 ,1620000000000 ,1620000000000 ,1616812497290 -1616812497317 ,112.5681902,26.87473767,58.33180237,197.6409846,200.2409352,12.576051,0.115065566,1620000000000 ,1620000000000 ,1620000000000 ,1616812497300 -1616812497327 ,112.5681898,26.87473659,58.33302307,197.6264499,200.2292895,12.575905,0.115069297,1620000000000 ,1620000000000 ,1620000000000 ,1616812497310 -1616812497337 ,112.5681894,26.87473551,58.33423996,197.6138278,200.2130085,12.575414,0.115061482,1620000000000 ,1620000000000 ,1620000000000 ,1616812497320 -1616812497346 ,112.568189,26.87473443,58.3354454,197.6006865,200.1947738,12.575432,0.115059315,1620000000000 ,1620000000000 ,1620000000000 ,1616812497330 -1616812497355 ,112.5681886,26.87473335,58.33662415,197.5868348,200.1806008,12.575688,0.115056925,1620000000000 ,1620000000000 ,1620000000000 ,1616812497340 -1616812497366 ,112.5681882,26.87473227,58.33775711,197.5733657,200.1646856,12.576637,0.115064165,1620000000000 ,1620000000000 ,1620000000000 ,1616812497350 -1616812497375 ,112.5681878,26.87473119,58.33883667,197.5605523,200.1459488,12.57653,0.115059816,1620000000000 ,1620000000000 ,1620000000000 ,1616812497360 -1616812497386 ,112.5681874,26.87473011,58.33984756,197.5482579,200.1322591,12.576274,0.115056032,1620000000000 ,1620000000000 ,1620000000000 ,1616812497370 -1616812497397 ,112.568187,26.87472903,58.34078979,197.5375755,200.1125005,12.577856,0.115060495,1620000000000 ,1620000000000 ,1620000000000 ,1616812497380 -1616812497411 ,112.5681866,26.87472795,58.3416748,197.5271936,200.096724,12.579119,0.115071633,1620000000000 ,1620000000000 ,1620000000000 ,1616812497390 -1616812497422 ,112.5681862,26.87472686,58.34250259,197.5156643,200.0795037,12.579442,0.115068439,1620000000000 ,1620000000000 ,1620000000000 ,1616812497400 -1616812497428 ,112.5681858,26.87472578,58.34328079,197.5044628,200.0591556,12.578406,0.115058182,1620000000000 ,1620000000000 ,1620000000000 ,1616812497410 -1616812497443 ,112.5681854,26.8747247,58.34398651,197.4929607,200.043836,12.578999,0.115055831,1620000000000 ,1620000000000 ,1620000000000 ,1616812497420 -1616812497448 ,112.5681851,26.87472362,58.34460449,197.482852,200.0314986,12.58087,0.115064491,1620000000000 ,1620000000000 ,1620000000000 ,1616812497430 -1616812497457 ,112.5681847,26.87472254,58.34513474,197.4694649,200.0192601,12.584015,0.115086648,1620000000000 ,1620000000000 ,1620000000000 ,1616812497440 -1616812497471 ,112.5681843,26.87472146,58.34552383,197.455504,199.9985088,12.5825405,0.115029636,1620000000000 ,1620000000000 ,1620000000000 ,1616812497450 -1616812497480 ,112.5681839,26.87472038,58.34580231,197.4415157,199.9702138,12.58119,0.114970538,1620000000000 ,1620000000000 ,1620000000000 ,1616812497460 -1616812497488 ,112.5681835,26.8747193,58.34607697,197.4289755,199.9564258,12.5808735,0.114959543,1620000000000 ,1620000000000 ,1620000000000 ,1616812497470 -1616812497500 ,112.5681831,26.87471822,58.34632492,197.4162167,199.9455186,12.582567,0.114965173,1620000000000 ,1620000000000 ,1620000000000 ,1616812497480 -1616812497508 ,112.5681827,26.87471714,58.34654617,197.4047693,199.9312091,12.583224,0.114974284,1620000000000 ,1620000000000 ,1620000000000 ,1616812497490 -1616812497517 ,112.5681823,26.87471606,58.34677505,197.3930487,199.9110091,12.583829,0.114974293,1620000000000 ,1620000000000 ,1620000000000 ,1616812497500 -1616812497530 ,112.5681819,26.87471497,58.34706497,197.3829127,199.8917922,12.583867,0.114976503,1620000000000 ,1620000000000 ,1620000000000 ,1616812497510 -1616812497538 ,112.5681815,26.87471389,58.34740829,197.3727494,199.8785291,12.583966,0.114972358,1620000000000 ,1620000000000 ,1620000000000 ,1616812497520 -1616812497548 ,112.5681811,26.87471281,58.34777069,197.3629686,199.8634374,12.583589,0.114970812,1620000000000 ,1620000000000 ,1620000000000 ,1616812497530 -1616812497558 ,112.5681807,26.87471173,58.3481369,197.351931,199.85265,12.582794,0.114962571,1620000000000 ,1620000000000 ,1620000000000 ,1616812497540 -1616812497568 ,112.5681804,26.87471065,58.34854507,197.3414125,199.8294857,12.582276,0.114957459,1620000000000 ,1620000000000 ,1620000000000 ,1616812497550 -1616812497578 ,112.56818,26.87470957,58.34900284,197.330976,199.8180736,12.5822,0.114952314,1620000000000 ,1620000000000 ,1620000000000 ,1616812497560 -1616812497589 ,112.5681796,26.87470849,58.3494873,197.3195559,199.7997495,12.5819025,0.114945763,1620000000000 ,1620000000000 ,1620000000000 ,1616812497570 -1616812497600 ,112.5681792,26.8747074,58.34997559,197.3114963,199.7851949,12.58255,0.114950726,1620000000000 ,1620000000000 ,1620000000000 ,1616812497580 -1616812497611 ,112.5681788,26.87470632,58.3504982,197.3011963,199.7792936,12.582823,0.114952837,1620000000000 ,1620000000000 ,1620000000000 ,1616812497590 -1616812497619 ,112.5681784,26.87470524,58.3510704,197.2925083,199.7692457,12.583688,0.114957254,1620000000000 ,1620000000000 ,1620000000000 ,1616812497600 -1616812497631 ,112.568178,26.87470416,58.3516655,197.282263,199.761929,12.581958,0.114947056,1620000000000 ,1620000000000 ,1620000000000 ,1616812497610 -1616812497641 ,112.5681776,26.87470308,58.35227585,197.2738209,199.7573991,12.582751,0.114949597,1620000000000 ,1620000000000 ,1620000000000 ,1616812497620 -1616812497654 ,112.5681772,26.874702,58.35291672,197.2654608,199.7447094,12.581966,0.114946522,1620000000000 ,1620000000000 ,1620000000000 ,1616812497630 -1616812497664 ,112.5681769,26.87470091,58.35361481,197.257128,199.7305205,12.579598,0.114925164,1620000000000 ,1620000000000 ,1620000000000 ,1616812497640 -1616812497672 ,112.5681765,26.87469983,58.35435104,197.24844,199.7196401,12.5779,0.114909494,1620000000000 ,1620000000000 ,1620000000000 ,1616812497650 -1616812497684 ,112.5681761,26.87469875,58.35509109,197.241883,199.7128093,12.578707,0.114908204,1620000000000 ,1620000000000 ,1620000000000 ,1616812497660 -1616812497692 ,112.5681757,26.87469767,58.35581589,197.23243,199.714042,12.580618,0.114920849,1620000000000 ,1620000000000 ,1620000000000 ,1616812497670 -1616812497700 ,112.5681753,26.87469659,58.35655212,197.2232502,199.703288,12.581708,0.114932045,1620000000000 ,1620000000000 ,1620000000000 ,1616812497680 -1616812497711 ,112.5681749,26.8746955,58.35733795,197.2139338,199.6927674,12.583031,0.114946777,1620000000000 ,1620000000000 ,1620000000000 ,1616812497690 -1616812497722 ,112.5681745,26.87469442,58.35820389,197.2026777,199.6799973,12.581806,0.114936667,1620000000000 ,1620000000000 ,1620000000000 ,1616812497700 -1616812497735 ,112.5681741,26.87469334,58.35911179,197.1943175,199.6769799,12.581379,0.114931584,1620000000000 ,1620000000000 ,1620000000000 ,1616812497710 -1616812497742 ,112.5681738,26.87469226,58.3599968,197.186777,199.6740132,12.581774,0.114933928,1620000000000 ,1620000000000 ,1620000000000 ,1616812497720 -1616812497753 ,112.5681734,26.87469118,58.36081314,197.1789359,199.6636241,12.5840025,0.114942621,1620000000000 ,1620000000000 ,1620000000000 ,1616812497730 -1616812497763 ,112.568173,26.87469009,58.36158752,197.1710129,199.6446394,12.583546,0.11494514,1620000000000 ,1620000000000 ,1620000000000 ,1616812497740 -1616812497772 ,112.5681726,26.87468901,58.36238098,197.1629806,199.6291765,12.584872,0.114948278,1620000000000 ,1620000000000 ,1620000000000 ,1616812497750 -1616812497781 ,112.5681722,26.87468793,58.36321259,197.154156,199.619359,12.583346,0.114942703,1620000000000 ,1620000000000 ,1620000000000 ,1616812497760 -1616812497793 ,112.5681718,26.87468684,58.364048,197.1465609,199.6201663,12.583208,0.114931922,1620000000000 ,1620000000000 ,1620000000000 ,1616812497770 -1616812497801 ,112.5681714,26.87468576,58.36487579,197.1392662,199.619121,12.583356,0.114935967,1620000000000 ,1620000000000 ,1620000000000 ,1616812497780 -1616812497816 ,112.568171,26.87468468,58.3657074,197.1310153,199.6028138,12.583759,0.114934726,1620000000000 ,1620000000000 ,1620000000000 ,1616812497790 -1616812497821 ,112.5681707,26.8746836,58.36657333,197.1224093,199.589396,12.584764,0.114941306,1620000000000 ,1620000000000 ,1620000000000 ,1616812497800 -1616812497832 ,112.5681703,26.87468251,58.36746216,197.1139945,199.5850829,12.583786,0.11493817,1620000000000 ,1620000000000 ,1620000000000 ,1616812497810 -1616812497842 ,112.5681699,26.87468143,58.3683815,197.1048967,199.5807958,12.581614,0.114919423,1620000000000 ,1620000000000 ,1620000000000 ,1616812497820 -1616812497854 ,112.5681695,26.87468035,58.36937714,197.0962087,199.5878768,12.581778,0.114916049,1620000000000 ,1620000000000 ,1620000000000 ,1616812497830 -1616812497876 ,112.5681691,26.87467927,58.37044907,197.0887228,199.5787618,12.580877,0.114913417,1620000000000 ,1620000000000 ,1620000000000 ,1616812497840 -1616812497887 ,112.5681687,26.87467818,58.37156677,197.0805812,199.556981,12.582372,0.114917834,1620000000000 ,1620000000000 ,1620000000000 ,1616812497850 -1616812497899 ,112.5681684,26.8746771,58.37275314,197.073833,199.5461888,12.582359,0.114924013,1620000000000 ,1620000000000 ,1620000000000 ,1616812497860 -1616812497902 ,112.568168,26.87467602,58.37401962,197.0688606,199.5343811,12.581384,0.114916186,1620000000000 ,1620000000000 ,1620000000000 ,1616812497870 -1616812497905 ,112.5681676,26.87467493,58.37540054,197.0624676,199.5289903,12.5785,0.114895965,1620000000000 ,1620000000000 ,1620000000000 ,1616812497880 -1616812497912 ,112.5681672,26.87467385,58.37686539,197.057987,199.5170511,12.578108,0.114886794,1620000000000 ,1620000000000 ,1620000000000 ,1616812497890 -1616812497923 ,112.5681668,26.87467277,58.3783493,197.0524682,199.5076015,12.578983,0.114891074,1620000000000 ,1620000000000 ,1620000000000 ,1616812497900 -1616812497935 ,112.5681664,26.87467168,58.37977982,197.0496541,199.4991756,12.579893,0.114893812,1620000000000 ,1620000000000 ,1620000000000 ,1616812497910 -1616812497942 ,112.5681661,26.8746706,58.38112259,197.0480968,199.4954884,12.581056,0.114905384,1620000000000 ,1620000000000 ,1620000000000 ,1616812497920 -1616812497953 ,112.5681657,26.87466952,58.38238525,197.0444905,199.491709,12.581779,0.114907305,1620000000000 ,1620000000000 ,1620000000000 ,1616812497930 -1616812497963 ,112.5681653,26.87466844,58.38360596,197.0410481,199.487686,12.583137,0.114915514,1620000000000 ,1620000000000 ,1620000000000 ,1616812497940 -1616812497972 ,112.5681649,26.87466735,58.38482666,197.0394088,199.4748531,12.581264,0.114907018,1620000000000 ,1620000000000 ,1620000000000 ,1616812497950 -1616812497988 ,112.5681645,26.87466627,58.38603973,197.0386985,199.4609344,12.582326,0.114905626,1620000000000 ,1620000000000 ,1620000000000 ,1616812497960 -1616812497996 ,112.5681641,26.87466519,58.38722229,197.0365128,199.4594392,12.583473,0.114913661,1620000000000 ,1620000000000 ,1620000000000 ,1616812497980 -1616812498003 ,112.5681638,26.8746641,58.38834763,197.0351195,199.4565906,12.585635,0.114929253,1620000000000 ,1620000000000 ,1620000000000 ,1616812497980 -1616812498017 ,112.5681634,26.87466302,58.38945389,197.036868,199.4575197,12.586176,0.114941482,1620000000000 ,1620000000000 ,1620000000000 ,1616812498000 -1616812498024 ,112.568163,26.87466193,58.39061737,197.0382614,199.4571842,12.584731,0.114932483,1620000000000 ,1620000000000 ,1620000000000 ,1616812498010 -1616812498037 ,112.5681626,26.87466085,58.39189529,197.040447,199.4403871,12.584168,0.114926886,1620000000000 ,1620000000000 ,1620000000000 ,1616812498020 -1616812498043 ,112.5681618,26.87465868,58.39468765,197.0477144,199.4369903,12.583709,0.229834331,1620000000000 ,1620000000000 ,1620000000000 ,1616812498030 -1616812498053 ,112.5681618,26.87465868,58.39468765,197.0477144,-400,12.583709,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812498040 -1616812498063 ,112.5681611,26.87465652,58.3976059,197.0500366,199.446952,12.5850115,0.229878436,1620000000000 ,1620000000000 ,1620000000000 ,1616812498050 -1616812498073 ,112.5681607,26.87465543,58.39916992,197.0535064,199.4320637,12.5833025,0.114934203,1620000000000 ,1620000000000 ,1620000000000 ,1616812498060 -1616812498083 ,112.5681603,26.87465435,58.40074539,197.0559106,199.4409928,12.5849085,0.114942803,1620000000000 ,1620000000000 ,1620000000000 ,1616812498070 -1616812498094 ,112.5681599,26.87465326,58.40227127,197.0616206,199.4625247,12.583624,0.114947475,1620000000000 ,1620000000000 ,1620000000000 ,1616812498080 -1616812498113 ,112.5681599,26.87465326,58.40227127,197.0616206,-400,12.583624,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812498090 -1616812498118 ,112.5681592,26.8746511,58.40525436,197.0640795,199.4870573,12.579669,0.229830576,1620000000000 ,1620000000000 ,1620000000000 ,1616812498100 -1616812498127 ,112.5681588,26.87465001,58.40674973,197.0636424,199.4836699,12.580222,0.114913675,1620000000000 ,1620000000000 ,1620000000000 ,1616812498110 -1616812498135 ,112.5681584,26.87464893,58.40818024,197.0633965,199.5110562,12.58439,0.114946052,1620000000000 ,1620000000000 ,1620000000000 ,1616812498120 -1616812498143 ,112.568158,26.87464785,58.40950775,197.0624676,199.5322278,12.586773,0.114976165,1620000000000 ,1620000000000 ,1620000000000 ,1616812498130 -1616812498153 ,112.5681576,26.87464676,58.41081238,197.0607464,199.542628,12.588301,0.114998198,1620000000000 ,1620000000000 ,1620000000000 ,1616812498140 -1616812498169 ,112.5681572,26.87464568,58.41218948,197.0592984,199.5470155,12.588287,0.115006979,1620000000000 ,1620000000000 ,1620000000000 ,1616812498150 -1616812498174 ,112.5681569,26.8746446,58.4135704,197.0574405,199.5414429,12.588638,0.115005452,1620000000000 ,1620000000000 ,1620000000000 ,1616812498160 -1616812498186 ,112.5681565,26.87464351,58.41485977,197.0548177,199.5394857,12.586376,0.114993947,1620000000000 ,1620000000000 ,1620000000000 ,1616812498170 -1616812498197 ,112.5681561,26.87464243,58.41601563,197.0513207,199.5448082,12.586493,0.114988174,1620000000000 ,1620000000000 ,1620000000000 ,1616812498180 -1616812498207 ,112.5681557,26.87464134,58.41708374,197.0468674,199.5419411,12.58576,0.11498163,1620000000000 ,1620000000000 ,1620000000000 ,1616812498190 -1616812498220 ,112.5681553,26.87464026,58.4180603,197.0362396,199.4399144,12.599185,0.115212827,1620000000000 ,1620000000000 ,1620000000000 ,1616812498200 -1616812498227 ,112.5681549,26.87463917,58.41897583,197.033371,199.2498794,12.602619,0.115579281,1620000000000 ,1620000000000 ,1620000000000 ,1616812498210 -1616812498235 ,112.5681546,26.87463808,58.41981506,197.0283713,199.2518058,12.606339,0.115607099,1620000000000 ,1620000000000 ,1620000000000 ,1616812498220 -1616812498247 ,112.5681542,26.87463698,58.42050934,197.0241365,199.255872,12.606613,0.11561672,1620000000000 ,1620000000000 ,1620000000000 ,1616812498230 -1616812498256 ,112.5681538,26.87463589,58.42106628,197.0167599,199.2518853,12.606726,0.115617057,1620000000000 ,1620000000000 ,1620000000000 ,1616812498240 -1616812498266 ,112.5681534,26.8746348,58.42156601,197.0088642,199.2425835,12.604907,0.115599369,1620000000000 ,1620000000000 ,1620000000000 ,1616812498250 -1616812498298 ,112.568153,26.87463371,58.42200089,197.0046568,199.2444456,12.604521,0.115591889,1620000000000 ,1620000000000 ,1620000000000 ,1616812498260 -1616812498307 ,112.5681526,26.87463262,58.4222641,197.0027171,199.2440818,12.605922,0.115594871,1620000000000 ,1620000000000 ,1620000000000 ,1616812498270 -1616812498310 ,112.5681523,26.87463153,58.42233658,196.9982638,199.238678,12.609851,0.115620921,1620000000000 ,1620000000000 ,1620000000000 ,1616812498280 -1616812498312 ,112.5681519,26.87463043,58.42232132,196.9900129,199.2263803,12.609416,0.115619947,1620000000000 ,1620000000000 ,1620000000000 ,1616812498290 -1616812498315 ,112.5681515,26.87462934,58.42230225,196.9839204,199.2006943,12.61346,0.11563847,1620000000000 ,1620000000000 ,1620000000000 ,1616812498300 -1616812498326 ,112.5681511,26.87462825,58.42225647,196.9794398,199.2050777,12.615949,0.115671341,1620000000000 ,1620000000000 ,1620000000000 ,1616812498310 -1616812498337 ,112.5681507,26.87462716,58.4222374,196.976052,199.1992918,12.611652,0.115647147,1620000000000 ,1620000000000 ,1620000000000 ,1616812498320 -1616812498349 ,112.5681504,26.87462607,58.42232895,196.9747679,199.1712599,12.605293,0.115588674,1620000000000 ,1620000000000 ,1620000000000 ,1616812498330 -1616812498360 ,112.56815,26.87462497,58.4224968,196.9726642,199.1417278,12.604722,0.115566605,1620000000000 ,1620000000000 ,1620000000000 ,1616812498340 -1616812498368 ,112.5681496,26.87462388,58.42255783,196.9718993,199.1116943,12.610041,0.115594851,1620000000000 ,1620000000000 ,1620000000000 ,1616812498350 -1616812498377 ,112.5681492,26.87462279,58.42240906,196.9659433,199.1324658,12.617076,0.115649305,1620000000000 ,1620000000000 ,1620000000000 ,1616812498360 -1616812498388 ,112.5681489,26.8746217,58.42210388,196.9576378,199.157433,12.618908,0.115677807,1620000000000 ,1620000000000 ,1620000000000 ,1616812498370 -1616812498397 ,112.5681485,26.8746206,58.42177963,196.9517092,199.1504219,12.617374,0.115668295,1620000000000 ,1620000000000 ,1620000000000 ,1616812498380 -1616812498406 ,112.5681481,26.87461951,58.42157364,196.947174,199.1236424,12.612664,0.115633656,1620000000000 ,1620000000000 ,1620000000000 ,1616812498390 -1616812498416 ,112.5681477,26.87461842,58.42152023,196.9441414,199.0909087,12.611265,0.115605203,1620000000000 ,1620000000000 ,1620000000000 ,1616812498400 -1616812498428 ,112.5681473,26.87461733,58.42152023,196.9425841,199.0688028,12.612609,0.115609315,1620000000000 ,1620000000000 ,1620000000000 ,1616812498410 -1616812498438 ,112.568147,26.87461623,58.42145538,196.9428026,199.0610779,12.615728,0.11563151,1620000000000 ,1620000000000 ,1620000000000 ,1616812498420 -1616812498449 ,112.5681466,26.87461514,58.42131042,196.9429393,199.0663612,12.618661,0.115654604,1620000000000 ,1620000000000 ,1620000000000 ,1616812498430 -1616812498463 ,112.5681462,26.87461405,58.42120743,196.9390597,199.0424175,12.618034,0.115653506,1620000000000 ,1620000000000 ,1620000000000 ,1616812498440 -1616812498471 ,112.5681458,26.87461296,58.42129135,196.9349889,199.1067574,12.616348,0.115407403,1620000000000 ,1620000000000 ,1620000000000 ,1616812498450 -1616812498480 ,112.5681454,26.87461187,58.42154694,196.9331584,199.1909004,12.616292,0.115172688,1620000000000 ,1620000000000 ,1620000000000 ,1616812498460 -1616812498488 ,112.5681451,26.87461078,58.42185974,196.9294155,199.1922786,12.616453,0.115173785,1620000000000 ,1620000000000 ,1620000000000 ,1616812498470 -1616812498497 ,112.5681447,26.87460969,58.42221069,196.9291423,199.1932636,12.6157255,0.115166995,1620000000000 ,1620000000000 ,1620000000000 ,1616812498480 -1616812498507 ,112.5681443,26.87460861,58.42266083,196.9232956,199.1777282,12.614046,0.115157748,1620000000000 ,1620000000000 ,1620000000000 ,1616812498490 -1616812498518 ,112.5681439,26.87460752,58.42321396,196.9202357,199.1607968,12.613426,0.115147507,1620000000000 ,1620000000000 ,1620000000000 ,1616812498500 -1616812498529 ,112.5681436,26.87460643,58.42383575,196.9153453,199.1569809,12.6159315,0.115164477,1620000000000 ,1620000000000 ,1620000000000 ,1616812498510 -1616812498542 ,112.5681432,26.87460534,58.4244957,196.9132143,199.1627793,12.618037,0.115184517,1620000000000 ,1620000000000 ,1620000000000 ,1616812498520 -1616812498549 ,112.5681428,26.87460425,58.42527771,196.9096079,199.1611809,12.617747,0.115195262,1620000000000 ,1620000000000 ,1620000000000 ,1616812498530 -1616812498559 ,112.5681424,26.87460317,58.42622375,196.9078321,199.1455867,12.615214,0.11517976,1620000000000 ,1620000000000 ,1620000000000 ,1616812498540 -1616812498568 ,112.568142,26.87460208,58.42730331,196.9051,199.1340347,12.613445,0.115162635,1620000000000 ,1620000000000 ,1620000000000 ,1616812498550 -1616812498578 ,112.5681417,26.87460099,58.42843628,196.9022586,199.1274948,12.612121,0.115151407,1620000000000 ,1620000000000 ,1620000000000 ,1616812498560 -1616812498588 ,112.5681413,26.8745999,58.42962265,196.8975868,199.1336344,12.612916,0.115159509,1620000000000 ,1620000000000 ,1620000000000 ,1616812498570 -1616812498601 ,112.5681409,26.87459881,58.43089294,196.8951826,199.1302639,12.612983,0.115165561,1620000000000 ,1620000000000 ,1620000000000 ,1616812498580 -1616812498609 ,112.5681405,26.87459773,58.43225861,196.8923685,199.1232632,12.612427,0.115163333,1620000000000 ,1620000000000 ,1620000000000 ,1616812498590 -1616812498619 ,112.5681402,26.87459664,58.43368912,196.8872049,199.1130205,12.612147,0.115166042,1620000000000 ,1620000000000 ,1620000000000 ,1616812498600 -1616812498632 ,112.5681398,26.87459555,58.4351387,196.8832434,199.1123401,12.611762,0.115165206,1620000000000 ,1620000000000 ,1620000000000 ,1616812498610 -1616812498640 ,112.5681394,26.87459446,58.43663025,196.8782437,199.113958,12.610773,0.115159941,1620000000000 ,1620000000000 ,1620000000000 ,1616812498620 -1616812498649 ,112.568139,26.87459337,58.4381218,196.8741183,199.1119124,12.610414,0.115158368,1620000000000 ,1620000000000 ,1620000000000 ,1616812498630 -1616812498659 ,112.5681386,26.87459229,58.43959808,196.8716321,199.117261,12.611043,0.115164601,1620000000000 ,1620000000000 ,1620000000000 ,1616812498640 -1616812498673 ,112.5681383,26.8745912,58.44102097,196.8680257,199.1093405,12.611724,0.115167267,1620000000000 ,1620000000000 ,1620000000000 ,1616812498650 -1616812498688 ,112.5681379,26.87459011,58.44235992,196.8651844,199.0970875,12.612514,0.115173404,1620000000000 ,1620000000000 ,1620000000000 ,1616812498660 -1616812498692 ,112.5681375,26.87458902,58.4435997,196.864556,199.0919581,12.615036,0.115193039,1620000000000 ,1620000000000 ,1620000000000 ,1616812498670 -1616812498699 ,112.5681371,26.87458793,58.44474792,196.861578,199.0878902,12.615687,0.115198591,1620000000000 ,1620000000000 ,1620000000000 ,1616812498680 -1616812498710 ,112.5681368,26.87458684,58.44586945,196.8574526,199.0998332,12.615592,0.115206197,1620000000000 ,1620000000000 ,1620000000000 ,1616812498690 -1616812498719 ,112.5681364,26.87458575,58.44696426,196.8525895,199.1010658,12.616419,0.115212016,1620000000000 ,1620000000000 ,1620000000000 ,1616812498700 -1616812498731 ,112.568136,26.87458467,58.44796753,196.8507044,199.0903677,12.618299,0.115221657,1620000000000 ,1620000000000 ,1620000000000 ,1616812498710 -1616812498741 ,112.5681356,26.87458358,58.44882202,196.8492017,199.0912001,12.618647,0.115226193,1620000000000 ,1620000000000 ,1620000000000 ,1616812498720 -1616812498751 ,112.5681353,26.87458249,58.44951248,196.845814,199.0975397,12.620562,0.11523795,1620000000000 ,1620000000000 ,1620000000000 ,1616812498730 -1616812498760 ,112.5681349,26.8745814,58.4500618,196.8432185,199.1019203,12.621991,0.115247657,1620000000000 ,1620000000000 ,1620000000000 ,1616812498740 -1616812498769 ,112.5681345,26.87458031,58.45048904,196.8397761,199.1106291,12.624014,0.115262117,1620000000000 ,1620000000000 ,1620000000000 ,1616812498750 -1616812498780 ,112.5681341,26.87457922,58.45082474,196.835596,199.1131462,12.625501,0.115276857,1620000000000 ,1620000000000 ,1620000000000 ,1616812498760 -1616812498790 ,112.5681337,26.87457813,58.45109177,196.8315252,199.120289,12.626058,0.115284518,1620000000000 ,1620000000000 ,1620000000000 ,1616812498770 -1616812498801 ,112.5681334,26.87457704,58.45129395,196.8266348,199.1171116,12.627826,0.115292883,1620000000000 ,1620000000000 ,1620000000000 ,1616812498780 -1616812498810 ,112.568133,26.87457595,58.45140076,196.8227826,199.1136406,12.627429,0.115293451,1620000000000 ,1620000000000 ,1620000000000 ,1616812498790 -1616812498820 ,112.5681326,26.87457486,58.4514389,196.8177555,199.1215785,12.6289425,0.11530437,1620000000000 ,1620000000000 ,1620000000000 ,1616812498800 -1616812498840 ,112.5681322,26.87457377,58.4514389,196.8121821,199.1265438,12.630239,0.11531443,1620000000000 ,1620000000000 ,1620000000000 ,1616812498810 -1616812498842 ,112.5681319,26.87457268,58.45140076,196.8097506,199.1287404,12.632486,0.115331013,1620000000000 ,1620000000000 ,1620000000000 ,1616812498820 -1616812498850 ,112.5681315,26.87457159,58.45133591,196.8042044,199.1241808,12.633057,0.115339614,1620000000000 ,1620000000000 ,1620000000000 ,1616812498830 -1616812498860 ,112.5681311,26.8745705,58.45124435,196.8009806,199.1113521,12.633569,0.11534436,1620000000000 ,1620000000000 ,1620000000000 ,1616812498840 -1616812498871 ,112.5681307,26.87456941,58.4511528,196.7975928,199.1081448,12.635243,0.115355152,1620000000000 ,1620000000000 ,1620000000000 ,1616812498850 -1616812498883 ,112.5681303,26.87456832,58.4510498,196.7936313,199.1035087,12.635177,0.115357416,1620000000000 ,1620000000000 ,1620000000000 ,1616812498860 -1616812498900 ,112.56813,26.87456723,58.45092392,196.7902435,199.1037462,12.635709,0.115360131,1620000000000 ,1620000000000 ,1620000000000 ,1616812498870 -1616812498907 ,112.5681296,26.87456614,58.45077133,196.7869651,199.0970338,12.636831,0.115369259,1620000000000 ,1620000000000 ,1620000000000 ,1616812498880 -1616812498911 ,112.5681292,26.87456505,58.45056152,196.7825391,199.0901674,12.640388,0.115392201,1620000000000 ,1620000000000 ,1620000000000 ,1616812498890 -1616812498922 ,112.5681288,26.87456396,58.45027542,196.7789327,199.0811139,12.642816,0.11541159,1620000000000 ,1620000000000 ,1620000000000 ,1616812498900 -1616812498931 ,112.5681285,26.87456287,58.44988251,196.7751898,199.0795758,12.644421,0.115423483,1620000000000 ,1620000000000 ,1620000000000 ,1616812498910 -1616812498943 ,112.5681281,26.87456178,58.44942474,196.7705726,199.0807978,12.644788,0.115430881,1620000000000 ,1620000000000 ,1620000000000 ,1616812498920 -1616812498951 ,112.5681277,26.87456069,58.44893646,196.7674854,199.074034,12.645706,0.115430443,1620000000000 ,1620000000000 ,1620000000000 ,1616812498930 -1616812498961 ,112.5681273,26.8745596,58.44844055,196.7645894,199.0681005,12.647503,0.11544643,1620000000000 ,1620000000000 ,1620000000000 ,1616812498940 -1616812498973 ,112.568127,26.87455851,58.44791794,196.763114,199.0625883,12.650051,0.11546185,1620000000000 ,1620000000000 ,1620000000000 ,1616812498950 -1616812498985 ,112.5681266,26.87455742,58.44736099,196.7620758,199.0593502,12.65193,0.11548471,1620000000000 ,1620000000000 ,1620000000000 ,1616812498960 -1616812498993 ,112.5681262,26.87455632,58.44679642,196.7585788,199.0599872,12.653148,0.11549374,1620000000000 ,1620000000000 ,1620000000000 ,1616812498970 -1616812499003 ,112.5681258,26.87455523,58.44626999,196.7568576,199.0562689,12.653649,0.115499739,1620000000000 ,1620000000000 ,1620000000000 ,1616812498980 -1616812499014 ,112.5681254,26.87455414,58.44579697,196.7541528,199.0455136,12.653916,0.115502365,1620000000000 ,1620000000000 ,1620000000000 ,1616812498990 -1616812499022 ,112.5681251,26.87455305,58.44536209,196.7522404,199.045823,12.655631,0.115517973,1620000000000 ,1620000000000 ,1620000000000 ,1616812499000 -1616812499032 ,112.5681247,26.87455196,58.44495773,196.7488799,199.0458437,12.656444,0.115526849,1620000000000 ,1620000000000 ,1620000000000 ,1616812499010 -1616812499041 ,112.5681243,26.87455087,58.44459915,196.7466943,199.0397601,12.656105,0.115527343,1620000000000 ,1620000000000 ,1620000000000 ,1616812499020 -1616812499053 ,112.5681239,26.87454977,58.44430542,196.7443174,199.042853,12.657181,0.115538823,1620000000000 ,1620000000000 ,1620000000000 ,1616812499030 -1616812499063 ,112.5681236,26.87454868,58.44404221,196.7419404,199.0418081,12.658671,0.115548939,1620000000000 ,1620000000000 ,1620000000000 ,1616812499040 -1616812499073 ,112.5681232,26.87454759,58.44379425,196.7398641,199.049055,12.660644,0.115569028,1620000000000 ,1620000000000 ,1620000000000 ,1616812499060 -1616812499085 ,112.5681228,26.8745465,58.44359207,196.7374598,199.0520067,12.662213,0.115586946,1620000000000 ,1620000000000 ,1620000000000 ,1616812499070 -1616812499094 ,112.5681224,26.8745454,58.44346619,196.7334164,199.0538046,12.662281,0.11559807,1620000000000 ,1620000000000 ,1620000000000 ,1616812499080 -1616812499104 ,112.5681221,26.87454431,58.4434166,196.7290177,199.0454481,12.662018,0.11559707,1620000000000 ,1620000000000 ,1620000000000 ,1616812499080 -1616812499112 ,112.5681213,26.87454213,58.44345856,196.724783,199.0391545,12.656555,0.231129394,1620000000000 ,1620000000000 ,1620000000000 ,1616812499100 -1616812499122 ,112.5681213,26.87454213,58.44345856,196.724783,-400,12.656555,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812499110 -1616812499134 ,112.5681205,26.87453994,58.44356155,196.7160404,199.0177321,12.661792,0.231137562,1620000000000 ,1620000000000 ,1620000000000 ,1616812499120 -1616812499155 ,112.5681202,26.87453885,58.44360352,196.7106582,199.0033429,12.664514,0.115610022,1620000000000 ,1620000000000 ,1620000000000 ,1616812499130 -1616812499160 ,112.5681198,26.87453775,58.44366837,196.7070792,198.997843,12.666117,0.115632345,1620000000000 ,1620000000000 ,1620000000000 ,1616812499140 -1616812499181 ,112.5681194,26.87453666,58.44377899,196.7035275,199.0018913,12.666078,0.11563987,1620000000000 ,1620000000000 ,1620000000000 ,1616812499150 -1616812499184 ,112.568119,26.87453557,58.44390869,196.7003309,198.9900134,12.665038,0.115629768,1620000000000 ,1620000000000 ,1620000000000 ,1616812499160 -1616812499186 ,112.5681187,26.87453447,58.44400787,196.696588,198.9713065,12.6617565,0.115600733,1620000000000 ,1620000000000 ,1620000000000 ,1616812499170 -1616812499201 ,112.5681183,26.87453338,58.4440155,196.6948668,198.9633059,12.662019,0.115587243,1620000000000 ,1620000000000 ,1620000000000 ,1616812499180 -1616812499205 ,112.5681183,26.87453338,58.4440155,196.6948668,-400,12.662019,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812499180 -1616812499216 ,112.5681175,26.87453119,58.44358444,196.7022434,199.0811529,12.669869,0.231384698,1620000000000 ,1620000000000 ,1620000000000 ,1616812499200 -1616812499226 ,112.5681171,26.8745301,58.44292831,196.7006315,199.5196465,12.67265,0.116063974,1620000000000 ,1620000000000 ,1620000000000 ,1616812499210 -1616812499237 ,112.5681168,26.87452901,58.44227219,196.6965333,199.5069029,12.676219,0.116094502,1620000000000 ,1620000000000 ,1620000000000 ,1616812499220 -1616812499246 ,112.5681164,26.87452791,58.44153214,196.693692,199.5128274,12.678893,0.116113229,1620000000000 ,1620000000000 ,1620000000000 ,1616812499230 -1616812499255 ,112.568116,26.87452682,58.44067383,196.6884464,199.5110396,12.680435,0.116125449,1620000000000 ,1620000000000 ,1620000000000 ,1616812499240 -1616812499264 ,112.5681156,26.87452572,58.4397583,196.6826271,199.5092624,12.679229,0.11611388,1620000000000 ,1620000000000 ,1620000000000 ,1616812499250 -1616812499274 ,112.5681152,26.87452463,58.43884659,196.6779552,199.5063999,12.67737,0.116097817,1620000000000 ,1620000000000 ,1620000000000 ,1616812499260 -1616812499284 ,112.5681148,26.87452353,58.43791962,196.6753598,199.4913002,12.677069,0.116084497,1620000000000 ,1620000000000 ,1620000000000 ,1616812499270 -1616812499295 ,112.5681144,26.87452244,58.43694305,196.6738298,199.4805501,12.679297,0.116092456,1620000000000 ,1620000000000 ,1620000000000 ,1616812499280 -1616812499308 ,112.568114,26.87452134,58.43590546,196.6724638,199.4786541,12.682719,0.116114913,1620000000000 ,1620000000000 ,1620000000000 ,1616812499290 -1616812499318 ,112.5681137,26.87452025,58.4348526,196.6696497,199.4714369,12.688186,0.116157867,1620000000000 ,1620000000000 ,1620000000000 ,1616812499300 -1616812499327 ,112.5681133,26.87451915,58.43387604,196.6655516,199.455633,12.689171,0.116176787,1620000000000 ,1620000000000 ,1620000000000 ,1616812499310 -1616812499342 ,112.5681129,26.87451806,58.43305206,196.6626283,199.4472864,12.6881,0.116172415,1620000000000 ,1620000000000 ,1620000000000 ,1616812499320 -1616812499349 ,112.5681125,26.87451696,58.43239594,196.6617813,199.4394299,12.682419,0.116131177,1620000000000 ,1620000000000 ,1620000000000 ,1616812499330 -1616812499358 ,112.5681121,26.87451587,58.43178558,196.6633933,199.4204547,12.682333,0.116110823,1620000000000 ,1620000000000 ,1620000000000 ,1616812499340 -1616812499372 ,112.5681117,26.87451477,58.43115616,196.6604153,199.417291,12.68297,0.11611275,1620000000000 ,1620000000000 ,1620000000000 ,1616812499350 -1616812499376 ,112.5681113,26.87451368,58.43058395,196.653913,199.4254305,12.686746,0.116143276,1620000000000 ,1620000000000 ,1620000000000 ,1616812499360 -1616812499387 ,112.5681109,26.87451258,58.43009186,196.6476838,199.4398455,12.690658,0.1161792,1620000000000 ,1620000000000 ,1620000000000 ,1616812499370 -1616812499397 ,112.5681106,26.87451149,58.42964172,196.6460446,199.4517355,12.691481,0.11620213,1620000000000 ,1620000000000 ,1620000000000 ,1616812499380 -1616812499410 ,112.5681102,26.87451039,58.42937088,196.6417006,199.4502075,12.6863985,0.116171232,1620000000000 ,1620000000000 ,1620000000000 ,1616812499390 -1616812499420 ,112.5681098,26.8745093,58.42945099,196.6373839,199.4229811,12.679794,0.116116944,1620000000000 ,1620000000000 ,1620000000000 ,1616812499400 -1616812499429 ,112.5681094,26.8745082,58.42982864,196.6348704,199.4121951,12.678957,0.116096938,1620000000000 ,1620000000000 ,1620000000000 ,1616812499410 -1616812499439 ,112.568109,26.87450711,58.43027115,196.6325208,199.4191397,12.682518,0.116125614,1620000000000 ,1620000000000 ,1620000000000 ,1616812499420 -1616812499452 ,112.5681086,26.87450601,58.43064499,196.6316465,199.4301678,12.683538,0.116145508,1620000000000 ,1620000000000 ,1620000000000 ,1616812499430 -1616812499460 ,112.5681082,26.87450492,58.43109512,196.6239694,199.4661626,12.683374,0.116148789,1620000000000 ,1620000000000 ,1620000000000 ,1616812499440 -1616812499470 ,112.5681079,26.87450382,58.43195343,196.6170846,199.2381519,12.681761,0.115957684,1620000000000 ,1620000000000 ,1620000000000 ,1616812499450 -1616812499479 ,112.5681075,26.87450273,58.4331398,196.6102271,199.0098002,12.680844,0.115754003,1620000000000 ,1620000000000 ,1620000000000 ,1616812499460 -1616812499489 ,112.5681071,26.87450163,58.43445587,196.6046536,199.0163526,12.679072,0.115748809,1620000000000 ,1620000000000 ,1620000000000 ,1616812499470 -1616812499500 ,112.5681067,26.87450054,58.43585205,196.60102,199.0170781,12.676148,0.115728023,1620000000000 ,1620000000000 ,1620000000000 ,1616812499480 -1616812499515 ,112.5681064,26.87449944,58.43736649,196.5970312,199.010608,12.674187,0.115710971,1620000000000 ,1620000000000 ,1620000000000 ,1616812499490 -1616812499520 ,112.568106,26.87449835,58.43892288,196.5959656,198.9993134,12.675775,0.115719445,1620000000000 ,1620000000000 ,1620000000000 ,1616812499500 -1616812499529 ,112.5681056,26.87449726,58.44047546,196.5914031,198.9881403,12.676004,0.115722868,1620000000000 ,1620000000000 ,1620000000000 ,1616812499510 -1616812499539 ,112.5681052,26.87449616,58.44202423,196.5857204,198.9821957,12.674783,0.115723066,1620000000000 ,1620000000000 ,1620000000000 ,1616812499520 -1616812499549 ,112.5681048,26.87449507,58.44360352,196.581349,198.9789687,12.674523,0.115713663,1620000000000 ,1620000000000 ,1620000000000 ,1616812499530 -1616812499561 ,112.5681045,26.87449397,58.4451828,196.5777973,198.9701453,12.673332,0.115709545,1620000000000 ,1620000000000 ,1620000000000 ,1616812499540 -1616812499577 ,112.5681041,26.87449288,58.44671631,196.5751745,198.962459,12.672171,0.115696194,1620000000000 ,1620000000000 ,1620000000000 ,1616812499550 -1616812499580 ,112.5681037,26.87449178,58.44817352,196.568399,198.9603992,12.671911,0.115692568,1620000000000 ,1620000000000 ,1620000000000 ,1616812499560 -1616812499589 ,112.5681033,26.87449069,58.44952393,196.5638911,198.9416125,12.671731,0.115684658,1620000000000 ,1620000000000 ,1620000000000 ,1616812499570 -1616812499600 ,112.568103,26.8744896,58.45074081,196.5594378,198.929328,12.671514,0.115678969,1620000000000 ,1620000000000 ,1620000000000 ,1616812499580 -1616812499612 ,112.5681026,26.8744885,58.45182419,196.5547659,198.9269119,12.672499,0.115683994,1620000000000 ,1620000000000 ,1620000000000 ,1616812499590 -1616812499619 ,112.5681022,26.87448741,58.45281219,196.5486188,198.9224667,12.672386,0.115679399,1620000000000 ,1620000000000 ,1620000000000 ,1616812499600 -1616812499629 ,112.5681018,26.87448631,58.45375824,196.5444933,198.9217895,12.673121,0.115681564,1620000000000 ,1620000000000 ,1620000000000 ,1616812499610 -1616812499638 ,112.5681015,26.87448522,58.45465088,196.5403679,198.9102341,12.673048,0.115684698,1620000000000 ,1620000000000 ,1620000000000 ,1616812499620 -1616812499651 ,112.5681011,26.87448412,58.45543671,196.5371167,198.9043511,12.674066,0.115684802,1620000000000 ,1620000000000 ,1620000000000 ,1616812499630 -1616812499660 ,112.5681007,26.87448303,58.45613861,196.532882,198.8991662,12.674406,0.1156853,1620000000000 ,1620000000000 ,1620000000000 ,1616812499640 -1616812499675 ,112.5681003,26.87448194,58.45681,196.5294123,198.8834926,12.674285,0.115681834,1620000000000 ,1620000000000 ,1620000000000 ,1616812499650 -1616812499679 ,112.5681,26.87448084,58.45743942,196.5259699,198.8755105,12.675926,0.115693442,1620000000000 ,1620000000000 ,1620000000000 ,1616812499660 -1616812499692 ,112.5680996,26.87447975,58.45798492,196.5206696,198.8747861,12.6776,0.11570767,1620000000000 ,1620000000000 ,1620000000000 ,1616812499670 -1616812499700 ,112.5680992,26.87447865,58.45847321,196.5174458,198.8778069,12.675436,0.115695543,1620000000000 ,1620000000000 ,1620000000000 ,1616812499680 -1616812499711 ,112.5680988,26.87447756,58.45892715,196.5131291,198.8642298,12.674632,0.115687439,1620000000000 ,1620000000000 ,1620000000000 ,1616812499690 -1616812499720 ,112.5680985,26.87447646,58.45933914,196.5089764,198.8520228,12.673073,0.11566969,1620000000000 ,1620000000000 ,1620000000000 ,1616812499700 -1616812499730 ,112.5680981,26.87447537,58.45970917,196.5038674,198.8574606,12.67221,0.11565826,1620000000000 ,1620000000000 ,1620000000000 ,1616812499710 -1616812499740 ,112.5680977,26.87447427,58.46006012,196.4998512,198.8681357,12.672173,0.115660456,1620000000000 ,1620000000000 ,1620000000000 ,1616812499720 -1616812499750 ,112.5680974,26.87447318,58.46040726,196.4961356,198.8708118,12.672599,0.115666154,1620000000000 ,1620000000000 ,1620000000000 ,1616812499730 -1616812499761 ,112.568097,26.87447208,58.4607811,196.4924746,198.8741019,12.671285,0.115659527,1620000000000 ,1620000000000 ,1620000000000 ,1616812499740 -1616812499772 ,112.5680966,26.87447099,58.46119308,196.488076,198.8684022,12.667268,0.115632222,1620000000000 ,1620000000000 ,1620000000000 ,1616812499750 -1616812499782 ,112.5680962,26.8744699,58.46165085,196.4829943,198.8598308,12.665779,0.115617318,1620000000000 ,1620000000000 ,1620000000000 ,1616812499760 -1616812499792 ,112.5680959,26.8744688,58.46213531,196.47794,198.8632865,12.665611,0.115611558,1620000000000 ,1620000000000 ,1620000000000 ,1616812499770 -1616812499801 ,112.5680955,26.87446771,58.46262741,196.4723119,198.8710152,12.664753,0.115609584,1620000000000 ,1620000000000 ,1620000000000 ,1616812499780 -1616812499810 ,112.5680951,26.87446661,58.46313095,196.466957,198.8701941,12.663663,0.115600907,1620000000000 ,1620000000000 ,1620000000000 ,1616812499790 -1616812499820 ,112.5680947,26.87446552,58.46366882,196.4610011,198.8624761,12.66169,0.115591171,1620000000000 ,1620000000000 ,1620000000000 ,1616812499800 -1616812499831 ,112.5680944,26.87446443,58.4642067,196.4570942,198.8437183,12.659743,0.115567152,1620000000000 ,1620000000000 ,1620000000000 ,1616812499810 -1616812499841 ,112.568094,26.87446333,58.46474075,196.4529688,198.8381331,12.6568575,0.115549471,1620000000000 ,1620000000000 ,1620000000000 ,1616812499820 -1616812499852 ,112.5680936,26.87446224,58.46525574,196.4492259,198.8355212,12.655191,0.115527433,1620000000000 ,1620000000000 ,1620000000000 ,1616812499830 -1616812499868 ,112.5680932,26.87446115,58.46575546,196.4458927,198.8344052,12.654775,0.11552321,1620000000000 ,1620000000000 ,1620000000000 ,1616812499840 -1616812499872 ,112.5680929,26.87446005,58.46618652,196.4429148,198.827357,12.6546,0.115517154,1620000000000 ,1620000000000 ,1620000000000 ,1616812499850 -1616812499882 ,112.5680925,26.87445896,58.46647644,196.4404559,198.8127717,12.654936,0.115515623,1620000000000 ,1620000000000 ,1620000000000 ,1616812499860 -1616812499892 ,112.5680921,26.87445787,58.46657181,196.4380517,198.7974177,12.656101,0.115514438,1620000000000 ,1620000000000 ,1620000000000 ,1616812499870 -1616812499903 ,112.5680918,26.87445677,58.46646881,196.43297,198.7936527,12.657139,0.115511375,1620000000000 ,1620000000000 ,1620000000000 ,1616812499880 -1616812499912 ,112.5680914,26.87445568,58.46615601,196.4292544,198.7936737,12.658436,0.115517373,1620000000000 ,1620000000000 ,1620000000000 ,1616812499890 -1616812499923 ,112.568091,26.87445458,58.46569824,196.4251563,198.8020103,12.657915,0.115514562,1620000000000 ,1620000000000 ,1620000000000 ,1616812499900 -1616812499934 ,112.5680906,26.87445349,58.46517563,196.4194736,198.7994569,12.654847,0.115486746,1620000000000 ,1620000000000 ,1620000000000 ,1616812499910 -1616812499943 ,112.5680903,26.8744524,58.46464539,196.4135723,198.7945953,12.653392,0.115469608,1620000000000 ,1620000000000 ,1620000000000 ,1616812499920 -1616812499955 ,112.5680899,26.87445131,58.46409225,196.4104577,198.7863891,12.653656,0.115458892,1620000000000 ,1620000000000 ,1620000000000 ,1616812499930 -1616812499962 ,112.5680895,26.87445021,58.4634552,196.4080535,198.7849914,12.654664,0.115468474,1620000000000 ,1620000000000 ,1620000000000 ,1616812499950 -1616812499973 ,112.5680891,26.87444912,58.46277618,196.4049389,198.7957727,12.655263,0.115472124,1620000000000 ,1620000000000 ,1620000000000 ,1616812499960 -1616812499983 ,112.5680888,26.87444803,58.46214294,196.3994201,198.7915765,12.654276,0.115465563,1620000000000 ,1620000000000 ,1620000000000 ,1616812499970 -1616812499993 ,112.5680884,26.87444693,58.46160126,196.3940652,198.7914777,12.652177,0.115449723,1620000000000 ,1620000000000 ,1620000000000 ,1616812499980 -1616812500003 ,112.568088,26.87444584,58.46115494,196.3898852,198.7887192,12.648258,0.11542456,1620000000000 ,1620000000000 ,1620000000000 ,1616812499980 -1616812500013 ,112.5680873,26.87444366,58.46038055,196.3783012,198.7944408,12.643981,0.230777458,1620000000000 ,1620000000000 ,1620000000000 ,1616812500000 -1616812500036 ,112.5680873,26.87444366,58.46038055,196.3783012,-400,12.643981,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812500010 -1616812500041 ,112.5680865,26.87444147,58.45973587,196.3676461,198.7791319,12.642942,0.230730603,1620000000000 ,1620000000000 ,1620000000000 ,1616812500020 -1616812500046 ,112.5680862,26.87444038,58.4594574,196.3625371,198.7683352,12.6439,0.115371952,1620000000000 ,1620000000000 ,1620000000000 ,1616812500030 -1616812500056 ,112.5680858,26.87443929,58.45923615,196.3579745,198.7679977,12.641913,0.115359571,1620000000000 ,1620000000000 ,1620000000000 ,1616812500040 -1616812500065 ,112.5680854,26.87443819,58.45911789,196.3527016,198.7674176,12.638959,0.115333215,1620000000000 ,1620000000000 ,1620000000000 ,1616812500050 -1616812500075 ,112.5680851,26.8744371,58.45913315,196.3481664,198.7505406,12.634995,0.115304475,1620000000000 ,1620000000000 ,1620000000000 ,1616812500060 -1616812500086 ,112.5680847,26.87443601,58.45927048,196.3414182,198.7469016,12.632812,0.115282362,1620000000000 ,1620000000000 ,1620000000000 ,1616812500070 -1616812500099 ,112.5680843,26.87443492,58.4594841,196.336719,198.7429676,12.631845,0.11527175,1620000000000 ,1620000000000 ,1620000000000 ,1616812500080 -1616812500113 ,112.568084,26.87443383,58.45969391,196.3325662,198.7372949,12.63233,0.115268743,1620000000000 ,1620000000000 ,1620000000000 ,1616812500090 -1616812500118 ,112.5680836,26.87443274,58.45991135,196.3277305,198.7271588,12.630817,0.115257568,1620000000000 ,1620000000000 ,1620000000000 ,1616812500100 -1616812500130 ,112.5680832,26.87443164,58.460186,196.3208183,198.7161381,12.629471,0.115249079,1620000000000 ,1620000000000 ,1620000000000 ,1616812500110 -1616812500137 ,112.5680828,26.87443055,58.4605484,196.3151083,198.7086405,12.626114,0.11522326,1620000000000 ,1620000000000 ,1620000000000 ,1616812500120 -1616812500148 ,112.5680825,26.87442946,58.46095657,196.3115566,198.7047443,12.624743,0.115207012,1620000000000 ,1620000000000 ,1620000000000 ,1616812500130 -1616812500156 ,112.5680821,26.87442837,58.46139908,196.3057919,198.7051179,12.62252,0.115188026,1620000000000 ,1620000000000 ,1620000000000 ,1616812500140 -1616812500167 ,112.5680817,26.87442728,58.46190262,196.2996447,198.6988158,12.621106,0.115173078,1620000000000 ,1620000000000 ,1620000000000 ,1616812500150 -1616812500175 ,112.5680814,26.87442619,58.46245575,196.2940986,198.6838424,12.62091,0.115169246,1620000000000 ,1620000000000 ,1620000000000 ,1616812500160 -1616812500189 ,112.568081,26.8744251,58.4630127,196.2897273,198.6756898,12.619902,0.115158098,1620000000000 ,1620000000000 ,1620000000000 ,1616812500170 -1616812500199 ,112.5680806,26.87442401,58.4635849,196.2850828,198.6745018,12.618115,0.115148315,1620000000000 ,1620000000000 ,1620000000000 ,1616812500180 -1616812500207 ,112.5680803,26.87442292,58.46424103,196.2796186,198.6706261,12.614356,0.115120959,1620000000000 ,1620000000000 ,1620000000000 ,1616812500190 -1616812500224 ,112.5680799,26.87442183,58.4651947,196.2760123,198.7133978,12.609884,0.115186539,1620000000000 ,1620000000000 ,1620000000000 ,1616812500200 -1616812500228 ,112.5680795,26.87442073,58.46639252,196.2710945,198.783598,12.609314,0.115244741,1620000000000 ,1620000000000 ,1620000000000 ,1616812500210 -1616812500237 ,112.5680791,26.87441964,58.46756744,196.2666139,198.7751485,12.60704,0.115227455,1620000000000 ,1620000000000 ,1620000000000 ,1616812500220 -1616812500248 ,112.5680788,26.87441855,58.46872711,196.2601662,198.7761214,12.605003,0.115209579,1620000000000 ,1620000000000 ,1620000000000 ,1616812500230 -1616812500257 ,112.5680784,26.87441746,58.46993256,196.2539098,198.7715942,12.603309,0.115192931,1620000000000 ,1620000000000 ,1620000000000 ,1616812500240 -1616812500267 ,112.568078,26.87441637,58.47118759,196.2482544,198.7636639,12.601794,0.115180702,1620000000000 ,1620000000000 ,1620000000000 ,1616812500250 -1616812500277 ,112.5680777,26.87441528,58.47244644,196.2440743,198.758042,12.602601,0.115186346,1620000000000 ,1620000000000 ,1620000000000 ,1616812500260 -1616812500289 ,112.5680773,26.87441419,58.47367096,196.2390746,198.7559614,12.601882,0.115176778,1620000000000 ,1620000000000 ,1620000000000 ,1616812500270 -1616812500299 ,112.5680769,26.8744131,58.47485352,196.2325996,198.7450013,12.600575,0.115167288,1620000000000 ,1620000000000 ,1620000000000 ,1616812500280 -1616812500311 ,112.5680766,26.87441201,58.47598648,196.2266983,198.7292524,12.599758,0.11515569,1620000000000 ,1620000000000 ,1620000000000 ,1616812500290 -1616812500325 ,112.5680762,26.87441092,58.47708893,196.2188299,198.7276217,12.599055,0.115147214,1620000000000 ,1620000000000 ,1620000000000 ,1616812500300 -1616812500329 ,112.5680758,26.87440983,58.47817612,196.2144859,198.7174704,12.597934,0.115136699,1620000000000 ,1620000000000 ,1620000000000 ,1616812500310 -1616812500346 ,112.5680754,26.87440874,58.4792366,196.209896,198.7051614,12.595692,0.11511689,1620000000000 ,1620000000000 ,1620000000000 ,1616812500320 -1616812500353 ,112.5680751,26.87440765,58.48028564,196.2047051,198.7026131,12.594613,0.115107418,1620000000000 ,1620000000000 ,1620000000000 ,1616812500330 -1616812500358 ,112.5680747,26.87440656,58.48130417,196.1998693,198.6911081,12.594202,0.115100662,1620000000000 ,1620000000000 ,1620000000000 ,1616812500340 -1616812500378 ,112.5680743,26.87440547,58.48228073,196.1947057,198.6875907,12.593594,0.11509286,1620000000000 ,1620000000000 ,1620000000000 ,1616812500350 -1616812500382 ,112.568074,26.87440438,58.48321533,196.1890503,198.6919065,12.592231,0.115085345,1620000000000 ,1620000000000 ,1620000000000 ,1616812500360 -1616812500390 ,112.5680736,26.87440329,58.48413849,196.1822474,198.6910539,12.588857,0.1150638,1620000000000 ,1620000000000 ,1620000000000 ,1616812500370 -1616812500400 ,112.5680732,26.8744022,58.48506546,196.1757997,198.687037,12.587584,0.115044685,1620000000000 ,1620000000000 ,1620000000000 ,1616812500380 -1616812500412 ,112.5680729,26.87440111,58.48598862,196.1693247,198.6847685,12.587091,0.115036152,1620000000000 ,1620000000000 ,1620000000000 ,1616812500390 -1616812500421 ,112.5680725,26.87440002,58.486866,196.159981,198.6848469,12.585593,0.115028451,1620000000000 ,1620000000000 ,1620000000000 ,1616812500400 -1616812500430 ,112.5680721,26.87439893,58.48770142,196.1519214,198.6779736,12.583802,0.115012053,1620000000000 ,1620000000000 ,1620000000000 ,1616812500410 -1616812500440 ,112.5680718,26.87439784,58.48855591,196.1421952,198.6812778,12.582554,0.115002331,1620000000000 ,1620000000000 ,1620000000000 ,1616812500420 -1616812500451 ,112.5680714,26.87439675,58.48943329,196.1326329,198.6771961,12.580704,0.114984675,1620000000000 ,1620000000000 ,1620000000000 ,1616812500430 -1616812500461 ,112.568071,26.87439566,58.49028778,196.1232619,198.6671867,12.579174,0.114976871,1620000000000 ,1620000000000 ,1620000000000 ,1616812500440 -1616812500471 ,112.568071,26.87439566,58.49028778,196.1161312,-400,12.577904,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812500450 -1616812500480 ,112.5680703,26.87439348,58.49134827,196.105722,198.5609571,12.575968,0.229647208,1620000000000 ,1620000000000 ,1620000000000 ,1616812500460 -1616812500491 ,112.5680699,26.87439239,58.4916954,196.0977716,198.5199678,12.575728,0.114759244,1620000000000 ,1620000000000 ,1620000000000 ,1616812500470 -1616812500503 ,112.5680696,26.87439131,58.49193954,196.0915972,198.501012,12.575471,0.114756363,1620000000000 ,1620000000000 ,1620000000000 ,1616812500480 -1616812500514 ,112.5680692,26.87439022,58.49207687,196.0859691,198.4846185,12.575054,0.114744557,1620000000000 ,1620000000000 ,1620000000000 ,1616812500490 -1616812500520 ,112.5680688,26.87438913,58.49213409,196.0780734,198.4696552,12.57355,0.11472665,1620000000000 ,1620000000000 ,1620000000000 ,1616812500500 -1616812500532 ,112.5680685,26.87438804,58.49208832,196.0686477,198.4603782,12.573154,0.114719809,1620000000000 ,1620000000000 ,1620000000000 ,1616812500510 -1616812500541 ,112.5680681,26.87438695,58.4919281,196.0612711,198.4587913,12.573736,0.11471944,1620000000000 ,1620000000000 ,1620000000000 ,1616812500520 -1616812500553 ,112.5680677,26.87438587,58.49165344,196.0525558,198.4513088,12.573227,0.114708971,1620000000000 ,1620000000000 ,1620000000000 ,1616812500530 -1616812500562 ,112.5680674,26.87438478,58.49130249,196.0435673,198.4485381,12.572428,0.114699615,1620000000000 ,1620000000000 ,1620000000000 ,1616812500540 -1616812500571 ,112.568067,26.87438369,58.49089813,196.0350432,198.4394972,12.570957,0.114686252,1620000000000 ,1620000000000 ,1620000000000 ,1616812500550 -1616812500582 ,112.5680667,26.8743826,58.49039078,196.0272568,198.4265783,12.571326,0.114676767,1620000000000 ,1620000000000 ,1620000000000 ,1616812500560 -1616812500601 ,112.5680663,26.87438151,58.48980331,196.0193884,198.4263223,12.570828,0.114670995,1620000000000 ,1620000000000 ,1620000000000 ,1616812500570 -1616812500603 ,112.5680659,26.87438043,58.48918533,196.0117386,198.4193355,12.570423,0.11466345,1620000000000 ,1620000000000 ,1620000000000 ,1616812500580 -1616812500612 ,112.5680656,26.87437934,58.48856735,196.0029686,198.4081626,12.570357,0.114659151,1620000000000 ,1620000000000 ,1620000000000 ,1616812500590 -1616812500625 ,112.5680652,26.87437825,58.4879837,195.9946358,198.4009468,12.569032,0.114650398,1620000000000 ,1620000000000 ,1620000000000 ,1616812500600 -1616812500640 ,112.5680648,26.87437716,58.48742294,195.9859478,198.3902823,12.566075,0.11462936,1620000000000 ,1620000000000 ,1620000000000 ,1616812500610 -1616812500648 ,112.5680645,26.87437607,58.48688889,195.9780248,198.3834804,12.565024,0.114609772,1620000000000 ,1620000000000 ,1620000000000 ,1616812500620 -1616812500652 ,112.5680641,26.87437499,58.48635864,195.9682439,198.380302,12.564853,0.114606526,1620000000000 ,1620000000000 ,1620000000000 ,1616812500630 -1616812500662 ,112.5680638,26.8743739,58.48583603,195.9589002,198.3663442,12.563339,0.114593112,1620000000000 ,1620000000000 ,1620000000000 ,1616812500640 -1616812500673 ,112.5680634,26.87437281,58.4853363,195.9509226,198.3511797,12.562199,0.114581567,1620000000000 ,1620000000000 ,1620000000000 ,1616812500650 -1616812500685 ,112.568063,26.87437172,58.48487854,195.9415789,198.342176,12.560713,0.114567687,1620000000000 ,1620000000000 ,1620000000000 ,1616812500660 -1616812500693 ,112.5680627,26.87437064,58.48445129,195.9337378,198.3240738,12.558136,0.114544528,1620000000000 ,1620000000000 ,1620000000000 ,1616812500670 -1616812500706 ,112.5680623,26.87436955,58.48406219,195.9263339,198.3190613,12.556751,0.114525499,1620000000000 ,1620000000000 ,1620000000000 ,1616812500680 -1616812500713 ,112.568062,26.87436846,58.48372269,195.9187114,198.3095812,12.55564,0.114518138,1620000000000 ,1620000000000 ,1620000000000 ,1616812500690 -1616812500735 ,112.5680616,26.87436738,58.48342133,195.9110889,198.2990848,12.555159,0.114509842,1620000000000 ,1620000000000 ,1620000000000 ,1616812500700 -1616812500738 ,112.5680612,26.87436629,58.483181,195.9051876,198.2885612,12.554088,0.114501283,1620000000000 ,1620000000000 ,1620000000000 ,1616812500710 -1616812500742 ,112.5680609,26.8743652,58.48301315,195.8963084,198.2627719,12.551472,0.114480334,1620000000000 ,1620000000000 ,1620000000000 ,1616812500720 -1616812500755 ,112.5680605,26.87436411,58.48292923,195.8896694,198.2473327,12.54939,0.114459866,1620000000000 ,1620000000000 ,1620000000000 ,1616812500730 -1616812500763 ,112.5680602,26.87436303,58.4828949,195.8836316,198.2413181,12.54833,0.114446251,1620000000000 ,1620000000000 ,1620000000000 ,1616812500740 -1616812500772 ,112.5680598,26.87436194,58.48289871,195.8761457,198.2316824,12.547708,0.114437832,1620000000000 ,1620000000000 ,1620000000000 ,1616812500750 -1616812500783 ,112.5680595,26.87436085,58.48296356,195.8671845,198.2213571,12.547083,0.114434551,1620000000000 ,1620000000000 ,1620000000000 ,1616812500760 -1616812500794 ,112.5680591,26.87435977,58.48309326,195.8577315,198.2102657,12.546573,0.11442633,1620000000000 ,1620000000000 ,1620000000000 ,1616812500770 -1616812500803 ,112.5680587,26.87435868,58.48324203,195.8497811,198.2116385,12.545619,0.114425049,1620000000000 ,1620000000000 ,1620000000000 ,1616812500780 -1616812500813 ,112.5680584,26.87435759,58.48343277,195.8407106,198.2076837,12.543598,0.114406132,1620000000000 ,1620000000000 ,1620000000000 ,1616812500790 -1616812500827 ,112.568058,26.87435651,58.48369217,195.8322139,198.2013182,12.5415745,0.114389987,1620000000000 ,1620000000000 ,1620000000000 ,1616812500800 -1616812500836 ,112.5680577,26.87435542,58.48400497,195.8238811,198.1907898,12.539777,0.114371131,1620000000000 ,1620000000000 ,1620000000000 ,1616812500820 -1616812500847 ,112.5680573,26.87435433,58.48430252,195.8142642,198.1815275,12.538695,0.114362635,1620000000000 ,1620000000000 ,1620000000000 ,1616812500830 -1616812500855 ,112.5680566,26.87435216,58.48490143,195.7938829,198.1796887,12.537044,0.228704458,1620000000000 ,1620000000000 ,1620000000000 ,1616812500840 -1616812500865 ,112.5680562,26.87435107,58.48524857,195.7850583,198.1563573,12.534643,0.114325812,1620000000000 ,1620000000000 ,1620000000000 ,1616812500850 -1616812500875 ,112.5680559,26.87434999,58.48566055,195.7717257,198.146097,12.533165,0.114310164,1620000000000 ,1620000000000 ,1620000000000 ,1616812500860 -1616812500884 ,112.5680555,26.8743489,58.48612213,195.7614258,198.1420672,12.531965,0.114297719,1620000000000 ,1620000000000 ,1620000000000 ,1616812500870 -1616812500894 ,112.5680552,26.87434782,58.48660278,195.7515084,198.1331233,12.531065,0.114289063,1620000000000 ,1620000000000 ,1620000000000 ,1616812500880 -1616812500903 ,112.5680552,26.87434782,58.48660278,195.7515084,-400,12.531065,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812500890 -1616812500913 ,112.5680545,26.87434564,58.48775101,195.7320014,198.11547,12.5264435,0.228537073,1620000000000 ,1620000000000 ,1620000000000 ,1616812500900 -1616812500924 ,112.5680541,26.87434456,58.48847198,195.7215102,198.088328,12.523655,0.114229499,1620000000000 ,1620000000000 ,1620000000000 ,1616812500910 -1616812500936 ,112.5680538,26.87434347,58.48923874,195.7142702,198.0743612,12.522509,0.114217859,1620000000000 ,1620000000000 ,1620000000000 ,1616812500920 -1616812500945 ,112.5680534,26.87434239,58.48997498,195.7062106,198.0627642,12.522469,0.114212405,1620000000000 ,1620000000000 ,1620000000000 ,1616812500930 -1616812500956 ,112.568053,26.8743413,58.49070358,195.6956101,198.0577993,12.522115,0.114211773,1620000000000 ,1620000000000 ,1620000000000 ,1616812500940 -1616812500966 ,112.5680527,26.87434021,58.49145889,195.6867309,198.0393307,12.52038,0.114197663,1620000000000 ,1620000000000 ,1620000000000 ,1616812500950 -1616812500977 ,112.5680523,26.87433913,58.49221802,195.6771686,198.0248448,12.520247,0.114191785,1620000000000 ,1620000000000 ,1620000000000 ,1616812500960 -1616812500984 ,112.568052,26.87433804,58.49292374,195.6684533,198.0194951,12.518515,0.114177097,1620000000000 ,1620000000000 ,1620000000000 ,1616812500970 -1616812500994 ,112.5680516,26.87433696,58.49352646,195.6597926,198.0147337,12.517882,0.114169159,1620000000000 ,1620000000000 ,1620000000000 ,1616812500980 -1616812501004 ,112.5680516,26.87433696,58.49352646,195.6597926,-400,12.517882,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812500990 -1616812501015 ,112.5680509,26.87433479,58.49443817,195.6397118,198.0002453,12.517116,0.228307564,1620000000000 ,1620000000000 ,1620000000000 ,1616812501000 -1616812501025 ,112.5680506,26.8743337,58.49477768,195.6317342,197.9818425,12.51728,0.114149028,1620000000000 ,1620000000000 ,1620000000000 ,1616812501010 -1616812501038 ,112.5680502,26.87433261,58.49502182,195.6231008,197.9707424,12.519452,0.114159654,1620000000000 ,1620000000000 ,1620000000000 ,1616812501020 -1616812501047 ,112.5680499,26.87433153,58.49517822,195.6155056,197.9737572,12.517755,0.114152361,1620000000000 ,1620000000000 ,1620000000000 ,1616812501030 -1616812501055 ,112.5680495,26.87433044,58.49530411,195.6041949,197.9536417,12.516894,0.114136966,1620000000000 ,1620000000000 ,1620000000000 ,1616812501040 -1616812501067 ,112.5680492,26.87432936,58.49544907,195.5937856,197.9351096,12.513917,0.114110313,1620000000000 ,1620000000000 ,1620000000000 ,1616812501050 -1616812501075 ,112.5680488,26.87432827,58.49559402,195.5852889,197.9330135,12.51427,0.114108231,1620000000000 ,1620000000000 ,1620000000000 ,1616812501060 -1616812501085 ,112.5680485,26.87432718,58.49570465,195.5747977,197.9248858,12.515437,0.114117051,1620000000000 ,1620000000000 ,1620000000000 ,1616812501070 -1616812501095 ,112.5680481,26.8743261,58.49579239,195.5656453,197.9202275,12.514819,0.114112927,1620000000000 ,1620000000000 ,1620000000000 ,1616812501080 -1616812501108 ,112.5680478,26.87432501,58.49591827,195.5544438,197.9066218,12.513572,0.114100448,1620000000000 ,1620000000000 ,1620000000000 ,1616812501090 -1616812501120 ,112.5680474,26.87432393,58.49610901,195.5443897,197.8864809,12.512135,0.114092608,1620000000000 ,1620000000000 ,1620000000000 ,1616812501100 -1616812501126 ,112.5680471,26.87432284,58.49630356,195.534363,197.8786391,12.512471,0.114087435,1620000000000 ,1620000000000 ,1620000000000 ,1616812501110 -1616812501136 ,112.5680467,26.87432176,58.49644852,195.5248007,197.8816112,12.512522,0.114088766,1620000000000 ,1620000000000 ,1620000000000 ,1616812501120 -1616812501146 ,112.5680464,26.87432067,58.4965477,195.5151292,197.8737794,12.511403,0.114078654,1620000000000 ,1620000000000 ,1620000000000 ,1616812501130 -1616812501157 ,112.568046,26.87431958,58.4966774,195.5054576,197.8556124,12.50934,0.114060088,1620000000000 ,1620000000000 ,1620000000000 ,1616812501140 -1616812501168 ,112.5680457,26.8743185,58.49682236,195.4957861,197.8438875,12.508684,0.114050039,1620000000000 ,1620000000000 ,1620000000000 ,1616812501150 -1616812501177 ,112.5680453,26.87431741,58.49692154,195.4881636,197.8341162,12.5086,0.114046651,1620000000000 ,1620000000000 ,1620000000000 ,1616812501160 -1616812501186 ,112.568045,26.87431633,58.49694061,195.4795029,197.8321023,12.50955,0.114046741,1620000000000 ,1620000000000 ,1620000000000 ,1616812501170 -1616812501196 ,112.5680446,26.87431524,58.49690247,195.4700499,197.8263571,12.51007,0.114051553,1620000000000 ,1620000000000 ,1620000000000 ,1616812501180 -1616812501206 ,112.5680443,26.87431416,58.49683762,195.4604604,197.811958,12.5098715,0.114045471,1620000000000 ,1620000000000 ,1620000000000 ,1616812501190 -1616812501218 ,112.5680439,26.87431307,58.49713898,195.4546137,197.8322089,12.533268,0.114424738,1620000000000 ,1620000000000 ,1620000000000 ,1616812501200 -1616812501227 ,112.5680436,26.87431197,58.49795151,195.443822,197.8827652,12.532971,0.115045563,1620000000000 ,1620000000000 ,1620000000000 ,1616812501210 -1616812501236 ,112.5680432,26.87431088,58.49874115,195.434369,197.878103,12.531656,0.115034506,1620000000000 ,1620000000000 ,1620000000000 ,1616812501220 -1616812501253 ,112.5680429,26.87430978,58.49949265,195.425763,197.8639309,12.533554,0.115040961,1620000000000 ,1620000000000 ,1620000000000 ,1616812501230 -1616812501261 ,112.5680425,26.87430869,58.50019073,195.4151625,197.8459773,12.531291,0.115018711,1620000000000 ,1620000000000 ,1620000000000 ,1616812501240 -1616812501267 ,112.5680421,26.87430759,58.50088882,195.4047807,197.8458251,12.533689,0.115038682,1620000000000 ,1620000000000 ,1620000000000 ,1616812501250 -1616812501277 ,112.5680418,26.8743065,58.50160217,195.3958468,197.8288823,12.533165,0.115030217,1620000000000 ,1620000000000 ,1620000000000 ,1616812501260 -1616812501287 ,112.5680414,26.8743054,58.50234985,195.3866123,197.824422,12.533462,0.115033503,1620000000000 ,1620000000000 ,1620000000000 ,1616812501270 -1616812501297 ,112.5680411,26.87430431,58.50320053,195.3765037,197.8161449,12.528873,0.11500609,1620000000000 ,1620000000000 ,1620000000000 ,1616812501280 -1616812501310 ,112.5680407,26.87430321,58.50414276,195.3652475,197.8014509,12.525345,0.114970117,1620000000000 ,1620000000000 ,1620000000000 ,1616812501290 -1616812501320 ,112.5680404,26.87430212,58.5051384,195.3556579,197.7949968,12.527172,0.114971499,1620000000000 ,1620000000000 ,1620000000000 ,1616812501300 -1616812501334 ,112.56804,26.87430102,58.50608444,195.3451941,197.7852128,12.529425,0.114986968,1620000000000 ,1620000000000 ,1620000000000 ,1616812501310 -1616812501345 ,112.5680397,26.87429993,58.50698471,195.3345117,197.7845854,12.530195,0.114998542,1620000000000 ,1620000000000 ,1620000000000 ,1616812501320 -1616812501348 ,112.5680393,26.87429883,58.50794601,195.3218075,197.777435,12.528394,0.114987886,1620000000000 ,1620000000000 ,1620000000000 ,1616812501330 -1616812501357 ,112.568039,26.87429774,58.50902939,195.3099776,197.7581704,12.52579,0.114967304,1620000000000 ,1620000000000 ,1620000000000 ,1616812501340 -1616812501368 ,112.5680386,26.87429664,58.51021576,195.3003334,197.7492605,12.524795,0.114954133,1620000000000 ,1620000000000 ,1620000000000 ,1616812501350 -1616812501378 ,112.5680383,26.87429555,58.51145172,195.2904979,197.7423089,12.524017,0.114947079,1620000000000 ,1620000000000 ,1620000000000 ,1616812501360 -1616812501396 ,112.5680379,26.87429445,58.51272583,195.2799794,197.7345349,12.525115,0.114952524,1620000000000 ,1620000000000 ,1620000000000 ,1616812501370 -1616812501401 ,112.5680376,26.87429336,58.5140686,195.2703625,197.7173078,12.523505,0.114946489,1620000000000 ,1620000000000 ,1620000000000 ,1616812501380 -1616812501408 ,112.5680372,26.87429226,58.51550293,195.2607456,197.7075562,12.523057,0.114940911,1620000000000 ,1620000000000 ,1620000000000 ,1616812501390 -1616812501419 ,112.5680369,26.87429117,58.51703644,195.2517298,197.697404,12.521943,0.114933814,1620000000000 ,1620000000000 ,1620000000000 ,1616812501400 -1616812501429 ,112.5680365,26.87429007,58.51862335,195.2427686,197.6865506,12.521119,0.114925273,1620000000000 ,1620000000000 ,1620000000000 ,1616812501410 -1616812501440 ,112.5680362,26.87428898,58.52029419,195.2341625,197.6926213,12.522945,0.114942613,1620000000000 ,1620000000000 ,1620000000000 ,1616812501420 -1616812501450 ,112.5680358,26.87428788,58.52204895,195.2239719,197.689966,12.521723,0.114941618,1620000000000 ,1620000000000 ,1620000000000 ,1616812501430 -1616812501459 ,112.5680355,26.87428679,58.52386093,195.2130436,197.6749993,12.5197735,0.114927988,1620000000000 ,1620000000000 ,1620000000000 ,1616812501440 -1616812501470 ,112.5680351,26.8742857,58.52531815,195.2020333,197.6255847,12.517138,0.114512533,1620000000000 ,1620000000000 ,1620000000000 ,1616812501450 -1616812501479 ,112.5680348,26.87428461,58.52640533,195.1941649,197.5799339,12.5166,0.114108119,1620000000000 ,1620000000000 ,1620000000000 ,1616812501460 -1616812501490 ,112.5680345,26.87428352,58.5275116,195.1842748,197.5692282,12.516249,0.114108543,1620000000000 ,1620000000000 ,1620000000000 ,1616812501470 -1616812501500 ,112.5680341,26.87428243,58.52862167,195.1752043,197.5460532,12.518186,0.114116582,1620000000000 ,1620000000000 ,1620000000000 ,1616812501480 -1616812501512 ,112.5680338,26.87428135,58.52972031,195.1640301,197.5245199,12.520189,0.114134759,1620000000000 ,1620000000000 ,1620000000000 ,1616812501490 -1616812501523 ,112.5680334,26.87428026,58.53078461,195.154304,197.508421,12.523176,0.114161534,1620000000000 ,1620000000000 ,1620000000000 ,1616812501500 -1616812501533 ,112.5680331,26.87427917,58.53181839,195.147064,197.4909725,12.524866,0.114177667,1620000000000 ,1620000000000 ,1620000000000 ,1616812501510 -1616812501544 ,112.5680327,26.87427808,58.53281021,195.1391683,197.4719283,12.524483,0.114174255,1620000000000 ,1620000000000 ,1620000000000 ,1616812501520 -1616812501555 ,112.5680324,26.87427699,58.53375626,195.1299885,197.4562365,12.523615,0.114169051,1620000000000 ,1620000000000 ,1620000000000 ,1616812501530 -1616812501563 ,112.5680321,26.8742759,58.53466797,195.123814,197.4437509,12.52364,0.114166261,1620000000000 ,1620000000000 ,1620000000000 ,1616812501540 -1616812501569 ,112.5680317,26.87427481,58.53554153,195.116656,197.4375867,12.524378,0.114168357,1620000000000 ,1620000000000 ,1620000000000 ,1616812501550 -1616812501579 ,112.5680314,26.87427372,58.53631973,195.1111918,197.4266347,12.52772,0.114188501,1620000000000 ,1620000000000 ,1620000000000 ,1616812501560 -1616812501591 ,112.568031,26.87427263,58.53697968,195.1047714,197.4160276,12.529842,0.114206317,1620000000000 ,1620000000000 ,1620000000000 ,1616812501570 -1616812501603 ,112.5680307,26.87427154,58.53754044,195.0981052,197.40201,12.531807,0.114221727,1620000000000 ,1620000000000 ,1620000000000 ,1616812501580 -1616812501611 ,112.5680303,26.87427045,58.53801727,195.0899089,197.3859174,12.532484,0.114222558,1620000000000 ,1620000000000 ,1620000000000 ,1616812501590 -1616812501621 ,112.56803,26.87426936,58.53842545,195.0794724,197.3824308,12.534855,0.11424001,1620000000000 ,1620000000000 ,1620000000000 ,1616812501600 -1616812501632 ,112.5680297,26.87426827,58.53873444,195.0723417,197.381097,12.536284,0.11425137,1620000000000 ,1620000000000 ,1620000000000 ,1616812501610 -1616812501640 ,112.5680293,26.87426718,58.53894424,195.0652929,197.3797377,12.536447,0.114250576,1620000000000 ,1620000000000 ,1620000000000 ,1616812501620 -1616812501651 ,112.568029,26.87426609,58.53904724,195.0559219,197.3607547,12.539618,0.114265992,1620000000000 ,1620000000000 ,1620000000000 ,1616812501630 -1616812501661 ,112.5680286,26.874265,58.53902817,195.0502392,197.3526409,12.540372,0.11426789,1620000000000 ,1620000000000 ,1620000000000 ,1616812501640 -1616812501671 ,112.5680283,26.87426391,58.53885269,195.0452395,197.345489,12.545726,0.114301644,1620000000000 ,1620000000000 ,1620000000000 ,1616812501650 -1616812501682 ,112.568028,26.87426282,58.53854752,195.0403218,197.340167,12.549342,0.114329706,1620000000000 ,1620000000000 ,1620000000000 ,1616812501660 -1616812501694 ,112.5680276,26.87426173,58.5382576,195.0339833,197.3201977,12.552776,0.11436313,1620000000000 ,1620000000000 ,1620000000000 ,1616812501670 -1616812501702 ,112.5680273,26.87426063,58.53807068,195.0268526,197.2952295,12.550895,0.114357842,1620000000000 ,1620000000000 ,1620000000000 ,1616812501680 -1616812501711 ,112.5680269,26.87425954,58.53796768,195.0211153,197.2891128,12.547846,0.114330073,1620000000000 ,1620000000000 ,1620000000000 ,1616812501690 -1616812501724 ,112.5680266,26.87425845,58.53787231,195.0158424,197.2849951,12.546705,0.114311204,1620000000000 ,1620000000000 ,1620000000000 ,1616812501700 -1616812501735 ,112.5680263,26.87425736,58.53770447,195.0083291,197.2792858,12.54978,0.11432221,1620000000000 ,1620000000000 ,1620000000000 ,1616812501710 -1616812501744 ,112.5680259,26.87425627,58.53744507,195.0031382,197.2694825,12.555806,0.11436756,1620000000000 ,1620000000000 ,1620000000000 ,1616812501720 -1616812501751 ,112.5680256,26.87425517,58.53707886,194.9995865,197.2586009,12.562173,0.114417815,1620000000000 ,1620000000000 ,1620000000000 ,1616812501730 -1616812501761 ,112.5680252,26.87425408,58.53673553,194.9932754,197.2446716,12.562289,0.114432956,1620000000000 ,1620000000000 ,1620000000000 ,1616812501740 -1616812501771 ,112.5680249,26.87425299,58.53651428,194.9877566,197.241749,12.559736,0.114417986,1620000000000 ,1620000000000 ,1620000000000 ,1616812501750 -1616812501784 ,112.5680246,26.8742519,58.5364418,194.9857349,197.2429961,12.5564575,0.114391146,1620000000000 ,1620000000000 ,1620000000000 ,1616812501760 -1616812501793 ,112.5680242,26.8742508,58.53643799,194.9827296,197.2255568,12.557167,0.114383975,1620000000000 ,1620000000000 ,1620000000000 ,1616812501770 -1616812501803 ,112.5680239,26.87424971,58.53644562,194.9811177,197.2180103,12.559276,0.114397826,1620000000000 ,1620000000000 ,1620000000000 ,1616812501780 -1616812501815 ,112.5680235,26.87424862,58.53646851,194.9783856,197.2102314,12.56266,0.114427488,1620000000000 ,1620000000000 ,1620000000000 ,1616812501790 -1616812501822 ,112.5680232,26.87424752,58.53657913,194.9735498,197.2029211,12.565046,0.114448821,1620000000000 ,1620000000000 ,1620000000000 ,1616812501800 -1616812501850 ,112.5680229,26.87424643,58.53686142,194.9719652,197.2036223,12.565953,0.114468253,1620000000000 ,1620000000000 ,1620000000000 ,1616812501810 -1616812501852 ,112.5680225,26.87424534,58.53730011,194.9707904,197.2086186,12.56385,0.11445689,1620000000000 ,1620000000000 ,1620000000000 ,1616812501830 -1616812501859 ,112.5680222,26.87424424,58.53789902,194.9691512,197.2220372,12.56271,0.114449245,1620000000000 ,1620000000000 ,1620000000000 ,1616812501840 -1616812501864 ,112.5680215,26.87424206,58.53952408,194.9606271,197.2243051,12.562228,0.228884656,1620000000000 ,1620000000000 ,1620000000000 ,1616812501850 -1616812501874 ,112.5680212,26.87424096,58.54047775,194.9563377,197.231116,12.563755,0.114464112,1620000000000 ,1620000000000 ,1620000000000 ,1616812501860 -1616812501888 ,112.5680208,26.87423987,58.54144287,194.9540428,197.2381002,12.566397,0.114484787,1620000000000 ,1620000000000 ,1620000000000 ,1616812501870 -1616812501893 ,112.5680205,26.87423878,58.54244614,194.9527041,197.2409373,12.5673685,0.114498648,1620000000000 ,1620000000000 ,1620000000000 ,1616812501880 -1616812501905 ,112.5680205,26.87423878,58.54244614,194.9527041,-400,12.5673685,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812501880 -1616812501914 ,112.5680198,26.87423659,58.54474258,194.9425134,197.2286778,12.569691,0.229034933,1620000000000 ,1620000000000 ,1620000000000 ,1616812501900 -1616812501928 ,112.5680195,26.8742355,58.5459938,194.9365575,197.2313401,12.57047,0.11453397,1620000000000 ,1620000000000 ,1620000000000 ,1616812501910 -1616812501935 ,112.5680191,26.8742344,58.5473175,194.9307928,197.2335753,12.571031,0.114540776,1620000000000 ,1620000000000 ,1620000000000 ,1616812501920 -1616812501945 ,112.5680188,26.87423331,58.54872513,194.9263396,197.225554,12.569473,0.114537286,1620000000000 ,1620000000000 ,1620000000000 ,1616812501930 -1616812501953 ,112.5680188,26.87423331,58.54872513,194.9263396,-400,12.569473,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812501940 -1616812501964 ,112.5680181,26.87423112,58.55163193,194.9198099,197.191705,12.573364,0.229101362,1620000000000 ,1620000000000 ,1620000000000 ,1616812501950 -1616812501975 ,112.5680178,26.87423002,58.55302811,194.9173237,197.1791038,12.57674,0.114586842,1620000000000 ,1620000000000 ,1620000000000 ,1616812501960 -1616812501984 ,112.5680174,26.87422893,58.5544014,194.9142638,197.1821445,12.578858,0.114611408,1620000000000 ,1620000000000 ,1620000000000 ,1616812501970 -1616812501993 ,112.5680171,26.87422784,58.55581665,194.9113131,197.1827456,12.578265,0.114615712,1620000000000 ,1620000000000 ,1620000000000 ,1616812501980 -1616812502008 ,112.5680171,26.87422784,58.55581665,194.9113131,-400,12.578265,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812501980 -1616812502024 ,112.5680168,26.87422674,58.55734253,194.9061222,197.1714031,12.577593,0.114615309,1620000000000 ,1620000000000 ,1620000000000 ,1616812502000 -1616812502026 ,112.5680161,26.87422455,58.56052399,194.8973522,197.1616827,12.578308,0.229233711,1620000000000 ,1620000000000 ,1620000000000 ,1616812502010 -1616812502035 ,112.5680158,26.87422345,58.56201935,194.8948387,197.1685186,12.580696,0.114642878,1620000000000 ,1620000000000 ,1620000000000 ,1616812502020 -1616812502046 ,112.5680154,26.87422236,58.56344223,194.8918881,197.1804031,12.582659,0.114662962,1620000000000 ,1620000000000 ,1620000000000 ,1616812502030 -1616812502056 ,112.5680151,26.87422126,58.56483078,194.8885003,197.1781482,12.582979,0.114668514,1620000000000 ,1620000000000 ,1620000000000 ,1616812502040 -1616812502072 ,112.5680147,26.87422017,58.56623459,194.8851945,197.1782283,12.583089,0.114673288,1620000000000 ,1620000000000 ,1620000000000 ,1616812502050 -1616812502076 ,112.5680144,26.87421907,58.56765366,194.8801128,197.1892582,12.584762,0.11469098,1620000000000 ,1620000000000 ,1620000000000 ,1616812502060 -1616812502087 ,112.5680141,26.87421798,58.56904602,194.8753863,197.1945243,12.586458,0.114706991,1620000000000 ,1620000000000 ,1620000000000 ,1616812502070 -1616812502095 ,112.5680137,26.87421688,58.57043076,194.8714248,197.199569,12.58555,0.114709484,1620000000000 ,1620000000000 ,1620000000000 ,1616812502080 -1616812502108 ,112.5680134,26.87421578,58.57180023,194.8669989,197.1869831,12.585922,0.114709657,1620000000000 ,1620000000000 ,1620000000000 ,1616812502090 -1616812502122 ,112.568013,26.87421469,58.57310867,194.8619719,197.1756531,12.587513,0.114717543,1620000000000 ,1620000000000 ,1620000000000 ,1616812502100 -1616812502127 ,112.5680127,26.87421359,58.5742836,194.8606331,197.16522,12.590475,0.114736208,1620000000000 ,1620000000000 ,1620000000000 ,1616812502110 -1616812502136 ,112.5680124,26.8742125,58.57527161,194.858748,197.1567846,12.592744,0.114757797,1620000000000 ,1620000000000 ,1620000000000 ,1616812502120 -1616812502145 ,112.568012,26.8742114,58.57609558,194.8562618,197.1428703,12.59459,0.114766456,1620000000000 ,1620000000000 ,1620000000000 ,1616812502130 -1616812502156 ,112.5680117,26.8742103,58.57678223,194.8531746,197.1141062,12.595897,0.114771153,1620000000000 ,1620000000000 ,1620000000000 ,1616812502140 -1616812502167 ,112.5680114,26.87420921,58.5773468,194.8491311,197.1004695,12.598695,0.114786581,1620000000000 ,1620000000000 ,1620000000000 ,1616812502150 -1616812502177 ,112.568011,26.87420811,58.5777626,194.8482295,197.1033207,12.602584,0.114815043,1620000000000 ,1620000000000 ,1620000000000 ,1616812502160 -1616812502188 ,112.5680107,26.87420701,58.57800293,194.846399,197.097199,12.60577,0.114838461,1620000000000 ,1620000000000 ,1620000000000 ,1616812502170 -1616812502196 ,112.5680103,26.87420591,58.57811356,194.8438309,197.0819409,12.606369,0.11484357,1620000000000 ,1620000000000 ,1620000000000 ,1616812502180 -1616812502207 ,112.56801,26.87420481,58.57814789,194.8423829,197.0626989,12.606714,0.11484067,1620000000000 ,1620000000000 ,1620000000000 ,1616812502190 -1616812502215 ,112.5680097,26.87420372,58.57844162,194.8418911,196.9875824,12.609554,0.114858973,1620000000000 ,1620000000000 ,1620000000000 ,1616812502200 -1616812502226 ,112.5680093,26.87420262,58.57912445,194.8414813,196.901816,12.614088,0.114902977,1620000000000 ,1620000000000 ,1620000000000 ,1616812502210 -1616812502237 ,112.568009,26.87420152,58.57966614,194.8400333,196.9073632,12.616986,0.11492612,1620000000000 ,1620000000000 ,1620000000000 ,1616812502220 -1616812502250 ,112.5680087,26.87420042,58.58018494,194.8371646,196.9181189,12.617935,0.114940478,1620000000000 ,1620000000000 ,1620000000000 ,1616812502230 -1616812502257 ,112.5680083,26.87419932,58.58076859,194.8324654,196.9139378,12.619293,0.114950623,1620000000000 ,1620000000000 ,1620000000000 ,1616812502240 -1616812502278 ,112.568008,26.87419822,58.58135986,194.8315912,196.9192018,12.619834,0.114956477,1620000000000 ,1620000000000 ,1620000000000 ,1616812502250 -1616812502284 ,112.5680077,26.87419712,58.5819397,194.8300066,196.928736,12.620041,0.114957136,1620000000000 ,1620000000000 ,1620000000000 ,1616812502260 -1616812502290 ,112.5680073,26.87419602,58.58256531,194.8254167,196.9335259,12.6202135,0.114959426,1620000000000 ,1620000000000 ,1620000000000 ,1616812502270 -1616812502299 ,112.568007,26.87419492,58.58330154,194.8220836,196.9293219,12.621443,0.114967388,1620000000000 ,1620000000000 ,1620000000000 ,1616812502280 -1616812502309 ,112.5680067,26.87419382,58.58410263,194.8176303,196.9262568,12.624706,0.114994426,1620000000000 ,1620000000000 ,1620000000000 ,1616812502290 -1616812502320 ,112.5680063,26.87419272,58.58493805,194.81539,196.9205436,12.62615,0.115010883,1620000000000 ,1620000000000 ,1620000000000 ,1616812502300 -1616812502328 ,112.568006,26.87419162,58.58581924,194.8099258,196.9207363,12.626699,0.115015607,1620000000000 ,1620000000000 ,1620000000000 ,1616812502310 -1616812502337 ,112.5680057,26.87419052,58.58678436,194.8068112,196.9180395,12.626826,0.115021275,1620000000000 ,1620000000000 ,1620000000000 ,1616812502320 -1616812502348 ,112.5680053,26.87418942,58.58784485,194.8019482,196.9101183,12.626622,0.115017805,1620000000000 ,1620000000000 ,1620000000000 ,1616812502330 -1616812502358 ,112.568005,26.87418832,58.58904648,194.7993254,196.9054144,12.625758,0.11501554,1620000000000 ,1620000000000 ,1620000000000 ,1616812502340 -1616812502368 ,112.5680046,26.87418722,58.59039688,194.7965386,196.8999054,12.625343,0.115012567,1620000000000 ,1620000000000 ,1620000000000 ,1616812502350 -1616812502380 ,112.5680043,26.87418612,58.5918808,194.7926591,196.8931936,12.626002,0.115016877,1620000000000 ,1620000000000 ,1620000000000 ,1616812502360 -1616812502388 ,112.568004,26.87418501,58.59344482,194.7893806,196.8798429,12.626537,0.115021923,1620000000000 ,1620000000000 ,1620000000000 ,1616812502370 -1616812502397 ,112.5680036,26.87418391,58.59508133,194.7842443,196.8710293,12.628806,0.115039901,1620000000000 ,1620000000000 ,1620000000000 ,1616812502380 -1616812502407 ,112.5680033,26.87418281,58.59679794,194.7816488,196.8590292,12.630593,0.115056956,1620000000000 ,1620000000000 ,1620000000000 ,1616812502390 -1616812502423 ,112.568003,26.87418171,58.59860992,194.7789714,196.8507085,12.630492,0.115062759,1620000000000 ,1620000000000 ,1620000000000 ,1616812502400 -1616812502435 ,112.5680026,26.87418061,58.60055923,194.7766765,196.8493852,12.629819,0.115056811,1620000000000 ,1620000000000 ,1620000000000 ,1616812502410 -1616812502441 ,112.5680023,26.87417951,58.60260391,194.7745181,196.8514228,12.629289,0.115063175,1620000000000 ,1620000000000 ,1620000000000 ,1616812502420 -1616812502453 ,112.568002,26.87417841,58.60467529,194.7721685,196.8310192,12.629604,0.115050405,1620000000000 ,1620000000000 ,1620000000000 ,1616812502430 -1616812502460 ,112.5680016,26.87417731,58.60678482,194.7662399,196.8404082,12.630857,0.115070477,1620000000000 ,1620000000000 ,1620000000000 ,1616812502440 -1616812502476 ,112.5680013,26.87417621,58.60864639,194.7620052,196.908983,12.632414,0.115076101,1620000000000 ,1620000000000 ,1620000000000 ,1616812502450 -1616812502487 ,112.568001,26.8741751,58.61021805,194.7575792,196.9763761,12.634644,0.115093879,1620000000000 ,1620000000000 ,1620000000000 ,1616812502460 -1616812502491 ,112.5680006,26.874174,58.61185074,194.7523063,196.9744446,12.63357,0.115090955,1620000000000 ,1620000000000 ,1620000000000 ,1616812502470 -1616812502501 ,112.5680003,26.8741729,58.61356354,194.7477984,196.9581739,12.6315775,0.115073166,1620000000000 ,1620000000000 ,1620000000000 ,1616812502480 -1616812502510 ,112.568,26.8741718,58.6153183,194.7434544,196.9479285,12.633029,0.115080832,1620000000000 ,1620000000000 ,1620000000000 ,1616812502490 -1616812502522 ,112.5679996,26.8741707,58.61703873,194.7376624,196.9453511,12.637465,0.115113648,1620000000000 ,1620000000000 ,1620000000000 ,1616812502500 -1616812502534 ,112.5679993,26.8741696,58.61869049,194.7295208,196.9577035,12.639524,0.115140559,1620000000000 ,1620000000000 ,1620000000000 ,1616812502510 -1616812502542 ,112.567999,26.8741685,58.62037659,194.7215978,196.967026,12.639841,0.115150987,1620000000000 ,1620000000000 ,1620000000000 ,1616812502520 -1616812502552 ,112.5679986,26.8741674,58.62218475,194.7139207,196.9606053,12.637938,0.115144154,1620000000000 ,1620000000000 ,1620000000000 ,1616812502530 -1616812502564 ,112.5679983,26.8741663,58.62410355,194.7060796,196.9424882,12.63753,0.115135983,1620000000000 ,1620000000000 ,1620000000000 ,1616812502540 -1616812502578 ,112.567998,26.87416519,58.62606049,194.6997412,196.9303411,12.637912,0.115139461,1620000000000 ,1620000000000 ,1620000000000 ,1616812502550 -1616812502580 ,112.5679976,26.87416409,58.62797165,194.6928564,196.9323295,12.640267,0.115155719,1620000000000 ,1620000000000 ,1620000000000 ,1616812502560 -1616812502591 ,112.5679973,26.87416299,58.62982941,194.6848514,196.9328301,12.642127,0.115177938,1620000000000 ,1620000000000 ,1620000000000 ,1616812502570 -1616812502600 ,112.5679969,26.87416189,58.63166428,194.6763546,196.9236301,12.643309,0.115189846,1620000000000 ,1620000000000 ,1620000000000 ,1616812502580 -1616812502614 ,112.5679966,26.87416079,58.63350296,194.6681857,196.9117282,12.643789,0.11519502,1620000000000 ,1620000000000 ,1620000000000 ,1616812502590 -1616812502628 ,112.5679963,26.87415968,58.63529968,194.6585415,196.901912,12.646173,0.11520908,1620000000000 ,1620000000000 ,1620000000000 ,1616812502600 -1616812502635 ,112.5679959,26.87415858,58.63700867,194.6497715,196.9025343,12.648109,0.115233991,1620000000000 ,1620000000000 ,1620000000000 ,1616812502610 -1616812502641 ,112.5679956,26.87415748,58.63862228,194.6424223,196.899012,12.648044,0.115236189,1620000000000 ,1620000000000 ,1620000000000 ,1616812502620 -1616812502652 ,112.5679953,26.87415638,58.64018631,194.6341714,196.8954569,12.648047,0.115233668,1620000000000 ,1620000000000 ,1620000000000 ,1616812502630 -1616812502662 ,112.5679949,26.87415527,58.6416893,194.6251009,196.8875783,12.648695,0.115238845,1620000000000 ,1620000000000 ,1620000000000 ,1616812502640 -1616812502671 ,112.5679946,26.87415417,58.64308548,194.616932,196.8717319,12.648282,0.115235768,1620000000000 ,1620000000000 ,1620000000000 ,1616812502650 -1616812502682 ,112.5679943,26.87415307,58.64437866,194.6085445,196.8667082,12.650044,0.115243129,1620000000000 ,1620000000000 ,1620000000000 ,1616812502660 -1616812502691 ,112.5679939,26.87415197,58.64558411,194.5992008,196.8619457,12.652006,0.115258796,1620000000000 ,1620000000000 ,1620000000000 ,1616812502670 -1616812502703 ,112.5679936,26.87415086,58.64675522,194.5934088,196.8486809,12.654294,0.115275846,1620000000000 ,1620000000000 ,1620000000000 ,1616812502680 -1616812502713 ,112.5679933,26.87414976,58.64791107,194.58218,196.8334071,12.6557665,0.115293487,1620000000000 ,1620000000000 ,1620000000000 ,1616812502690 -1616812502724 ,112.5679929,26.87414865,58.64905548,194.5718254,196.8193956,12.656911,0.115301506,1620000000000 ,1620000000000 ,1620000000000 ,1616812502700 -1616812502738 ,112.5679926,26.87414755,58.65015411,194.564039,196.8040737,12.657293,0.115305492,1620000000000 ,1620000000000 ,1620000000000 ,1616812502710 -1616812502745 ,112.5679923,26.87414645,58.65116501,194.559777,196.7895871,12.658423,0.11530863,1620000000000 ,1620000000000 ,1620000000000 ,1616812502730 -1616812502754 ,112.5679919,26.87414534,58.65207672,194.5504059,196.7811965,12.658278,0.11530808,1620000000000 ,1620000000000 ,1620000000000 ,1616812502740 -1616812502763 ,112.5679916,26.87414424,58.6529274,194.5443134,196.763863,12.658379,0.115304133,1620000000000 ,1620000000000 ,1620000000000 ,1616812502740 -1616812502773 ,112.5679913,26.87414313,58.65373993,194.5376745,196.7514791,12.660188,0.115313751,1620000000000 ,1620000000000 ,1620000000000 ,1616812502760 -1616812502784 ,112.5679909,26.87414203,58.6544838,194.530653,196.7379098,12.663042,0.115331828,1620000000000 ,1620000000000 ,1620000000000 ,1616812502770 -1616812502793 ,112.5679906,26.87414093,58.65512085,194.5246971,196.7283023,12.666659,0.115359918,1620000000000 ,1620000000000 ,1620000000000 ,1616812502770 -1616812502805 ,112.5679903,26.87413982,58.65565872,194.5186592,196.7273065,12.669924,0.115387149,1620000000000 ,1620000000000 ,1620000000000 ,1616812502780 -1616812502814 ,112.5679896,26.87413761,58.65652466,194.5037421,196.7130298,12.67028,0.230792041,1620000000000 ,1620000000000 ,1620000000000 ,1616812502800 -1616812502825 ,112.5679893,26.8741365,58.65687943,194.4979774,196.6957851,12.67117,0.11539251,1620000000000 ,1620000000000 ,1620000000000 ,1616812502810 -1616812502837 ,112.5679889,26.8741354,58.6571312,194.4912019,196.6946512,12.671774,0.115395187,1620000000000 ,1620000000000 ,1620000000000 ,1616812502820 -1616812502844 ,112.5679886,26.87413429,58.65725708,194.4827598,196.6782532,12.673946,0.11540326,1620000000000 ,1620000000000 ,1620000000000 ,1616812502830 -1616812502855 ,112.5679883,26.87413319,58.65730286,194.4741264,196.6771194,12.676795,0.11542357,1620000000000 ,1620000000000 ,1620000000000 ,1616812502840 -1616812502864 ,112.567988,26.87413208,58.65735245,194.4655204,196.6799442,12.679146,0.115444899,1620000000000 ,1620000000000 ,1620000000000 ,1616812502850 -1616812502874 ,112.5679876,26.87413098,58.65739059,194.4588268,196.6698936,12.681586,0.115466355,1620000000000 ,1620000000000 ,1620000000000 ,1616812502860 -1616812502883 ,112.5679873,26.87412987,58.65746689,194.4520512,196.6557523,12.681532,0.115471511,1620000000000 ,1620000000000 ,1620000000000 ,1616812502870 -1616812502894 ,112.5679873,26.87412987,58.65746689,194.4520512,-400,12.681532,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812502880 -1616812502908 ,112.5679866,26.87412766,58.65792084,194.4389373,196.6362451,12.679634,0.230910569,1620000000000 ,1620000000000 ,1620000000000 ,1616812502890 -1616812502915 ,112.5679863,26.87412655,58.65823746,194.433801,196.6308493,12.679836,0.115453996,1620000000000 ,1620000000000 ,1620000000000 ,1616812502900 -1616812502924 ,112.567986,26.87412544,58.65858078,194.4265063,196.6334413,12.681875,0.11546901,1620000000000 ,1620000000000 ,1620000000000 ,1616812502910 -1616812502937 ,112.5679856,26.87412434,58.65899277,194.4185013,196.6303897,12.681758,0.115474595,1620000000000 ,1620000000000 ,1620000000000 ,1616812502920 -1616812502945 ,112.5679853,26.87412323,58.65949631,194.4100046,196.6134994,12.682937,0.11548298,1620000000000 ,1620000000000 ,1620000000000 ,1616812502930 -1616812502954 ,112.567985,26.87412212,58.66008377,194.402546,196.5943227,12.684296,0.115496602,1620000000000 ,1620000000000 ,1620000000000 ,1616812502940 -1616812502963 ,112.5679846,26.87412102,58.66077042,194.3955246,196.5901258,12.684561,0.115501149,1620000000000 ,1620000000000 ,1620000000000 ,1616812502950 -1616812502974 ,112.5679843,26.87411991,58.66155243,194.3888856,196.5780202,12.683616,0.115497438,1620000000000 ,1620000000000 ,1620000000000 ,1616812502960 -1616812502985 ,112.567984,26.8741188,58.66241837,194.3822194,196.5741263,12.68139,0.115482652,1620000000000 ,1620000000000 ,1620000000000 ,1616812502970 -1616812503001 ,112.5679837,26.8741177,58.66334534,194.3762634,196.5656176,12.681584,0.115475439,1620000000000 ,1620000000000 ,1620000000000 ,1616812502980 -1616812503005 ,112.5679837,26.8741177,58.66334534,194.3762634,-400,12.681584,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812502990 -1616812503015 ,112.567983,26.87411548,58.66520309,194.3609365,196.5437422,12.684745,0.230980786,1620000000000 ,1620000000000 ,1620000000000 ,1616812503000 -1616812503029 ,112.5679827,26.87411438,58.66606522,194.3544342,196.5434489,12.68781,0.115523426,1620000000000 ,1620000000000 ,1620000000000 ,1616812503010 -1616812503037 ,112.5679823,26.87411327,58.66691971,194.3478772,196.5426086,12.687542,0.115528147,1620000000000 ,1620000000000 ,1620000000000 ,1616812503020 -1616812503045 ,112.567982,26.87411216,58.66785812,194.3435332,196.5312708,12.685215,0.115515943,1620000000000 ,1620000000000 ,1620000000000 ,1616812503030 -1616812503062 ,112.5679817,26.87411105,58.66891861,194.3359653,196.5175245,12.683022,0.115495804,1620000000000 ,1620000000000 ,1620000000000 ,1616812503040 -1616812503068 ,112.5679814,26.87410995,58.67003632,194.3290532,196.503508,12.682544,0.115486981,1620000000000 ,1620000000000 ,1620000000000 ,1616812503050 -1616812503076 ,112.567981,26.87410884,58.67112732,194.3233705,196.5088473,12.683484,0.115494093,1620000000000 ,1620000000000 ,1620000000000 ,1616812503060 -1616812503087 ,112.5679807,26.87410773,58.67218399,194.3168681,196.5159679,12.684059,0.115503411,1620000000000 ,1620000000000 ,1620000000000 ,1616812503070 -1616812503097 ,112.5679804,26.87410662,58.67329788,194.3083714,196.5080976,12.682625,0.11549375,1620000000000 ,1620000000000 ,1620000000000 ,1616812503080 -1616812503107 ,112.56798,26.87410552,58.67453003,194.3016231,196.4927068,12.680137,0.115476956,1620000000000 ,1620000000000 ,1620000000000 ,1616812503090 -1616812503116 ,112.5679797,26.87410441,58.67583466,194.2965961,196.4842894,12.678825,0.115466104,1620000000000 ,1620000000000 ,1620000000000 ,1616812503100 -1616812503125 ,112.5679794,26.8741033,58.67715073,194.2911593,196.4912104,12.679637,0.115469067,1620000000000 ,1620000000000 ,1620000000000 ,1616812503110 -1616812503135 ,112.5679791,26.8741022,58.67845154,194.2854219,196.4905069,12.680758,0.115478527,1620000000000 ,1620000000000 ,1620000000000 ,1616812503120 -1616812503146 ,112.5679787,26.87410109,58.67975998,194.2778541,196.484308,12.679629,0.115474962,1620000000000 ,1620000000000 ,1620000000000 ,1616812503130 -1616812503157 ,112.5679784,26.87409998,58.68109131,194.2687289,196.4754524,12.67921,0.115471541,1620000000000 ,1620000000000 ,1620000000000 ,1616812503140 -1616812503166 ,112.5679781,26.87409887,58.68241882,194.2615982,196.4649491,12.678682,0.115461992,1620000000000 ,1620000000000 ,1620000000000 ,1616812503150 -1616812503176 ,112.5679778,26.87409777,58.6836853,194.2555603,196.4644126,12.6782,0.115458816,1620000000000 ,1620000000000 ,1620000000000 ,1616812503160 -1616812503190 ,112.5679774,26.87409666,58.68486786,194.2463532,196.4614796,12.678805,0.11546112,1620000000000 ,1620000000000 ,1620000000000 ,1616812503170 -1616812503197 ,112.5679771,26.87409555,58.68597412,194.2400422,196.4536907,12.6789255,0.115461434,1620000000000 ,1620000000000 ,1620000000000 ,1616812503180 -1616812503208 ,112.5679768,26.87409444,58.6870575,194.2331573,196.4388085,12.679044,0.115455606,1620000000000 ,1620000000000 ,1620000000000 ,1616812503190 -1616812503218 ,112.5679764,26.87409333,58.6877327,194.2294417,196.4288195,12.707274,0.115755766,1620000000000 ,1620000000000 ,1620000000000 ,1616812503200 -1616812503227 ,112.5679761,26.87409222,58.68785477,194.2235131,196.4359896,12.707589,0.116308857,1620000000000 ,1620000000000 ,1620000000000 ,1616812503210 -1616812503236 ,112.5679758,26.8740911,58.68789291,194.2167922,196.4288071,12.708382,0.116308213,1620000000000 ,1620000000000 ,1620000000000 ,1616812503220 -1616812503246 ,112.5679755,26.87408999,58.6878624,194.2086506,196.41804,12.707456,0.116302349,1620000000000 ,1620000000000 ,1620000000000 ,1616812503230 -1616812503257 ,112.5679751,26.87408887,58.68779755,194.2002905,196.4051004,12.707997,0.116299953,1620000000000 ,1620000000000 ,1620000000000 ,1616812503240 -1616812503268 ,112.5679748,26.87408776,58.68766022,194.1923674,196.3994832,12.70893,0.116305871,1620000000000 ,1620000000000 ,1620000000000 ,1616812503250 -1616812503278 ,112.5679745,26.87408664,58.68744659,194.1882966,196.40384,12.708953,0.116306233,1620000000000 ,1620000000000 ,1620000000000 ,1616812503260 -1616812503287 ,112.5679741,26.87408552,58.68721008,194.1831877,196.3978009,12.708068,0.116298856,1620000000000 ,1620000000000 ,1620000000000 ,1616812503270 -1616812503297 ,112.5679738,26.87408441,58.68703079,194.175975,196.3773265,12.7063055,0.116281415,1620000000000 ,1620000000000 ,1620000000000 ,1616812503280 -1616812503307 ,112.5679735,26.87408329,58.68688965,194.1698551,196.3637974,12.707593,0.116283941,1620000000000 ,1620000000000 ,1620000000000 ,1616812503290 -1616812503316 ,112.5679732,26.87408218,58.6867218,194.1638992,196.3582981,12.709053,0.116297141,1620000000000 ,1620000000000 ,1620000000000 ,1616812503300 -1616812503326 ,112.5679728,26.87408106,58.68654633,194.1587083,196.3661288,12.709563,0.116302956,1620000000000 ,1620000000000 ,1620000000000 ,1616812503310 -1616812503340 ,112.5679725,26.87407995,58.68643951,194.1514409,196.3671958,12.706577,0.116287619,1620000000000 ,1620000000000 ,1620000000000 ,1616812503320 -1616812503351 ,112.5679722,26.87407883,58.68642807,194.1452664,196.3487463,12.70548,0.116274377,1620000000000 ,1620000000000 ,1620000000000 ,1616812503330 -1616812503375 ,112.5679719,26.87407771,58.68643951,194.1384363,196.3272051,12.704969,0.116263117,1620000000000 ,1620000000000 ,1620000000000 ,1616812503340 -1616812503379 ,112.5679715,26.8740766,58.68641281,194.131688,196.3350236,12.706557,0.116271694,1620000000000 ,1620000000000 ,1620000000000 ,1616812503350 -1616812503384 ,112.5679712,26.87407548,58.68633652,194.1242021,196.3406241,12.707795,0.116286959,1620000000000 ,1620000000000 ,1620000000000 ,1616812503360 -1616812503391 ,112.5679709,26.87407437,58.68623734,194.117372,196.3349303,12.707383,0.116284127,1620000000000 ,1620000000000 ,1620000000000 ,1616812503370 -1616812503400 ,112.5679705,26.87407325,58.68616486,194.1093123,196.3204622,12.707441,0.116283816,1620000000000 ,1620000000000 ,1620000000000 ,1616812503380 -1616812503410 ,112.5679702,26.87407213,58.68611908,194.1022909,196.3062199,12.706607,0.116276292,1620000000000 ,1620000000000 ,1620000000000 ,1616812503390 -1616812503419 ,112.5679699,26.87407102,58.68606567,194.0957339,196.3004195,12.708251,0.116283341,1620000000000 ,1620000000000 ,1620000000000 ,1616812503400 -1616812503429 ,112.5679696,26.8740699,58.68597412,194.0908162,196.2874044,12.710063,0.116297229,1620000000000 ,1620000000000 ,1620000000000 ,1616812503410 -1616812503438 ,112.5679692,26.87406879,58.68587112,194.0853793,196.2808406,12.709486,0.116297514,1620000000000 ,1620000000000 ,1620000000000 ,1616812503420 -1616812503455 ,112.5679689,26.87406767,58.68582153,194.0771831,196.2771424,12.708785,0.116293795,1620000000000 ,1620000000000 ,1620000000000 ,1616812503430 -1616812503459 ,112.5679686,26.87406655,58.68582153,194.0704622,196.2633293,12.708799,0.116293058,1620000000000 ,1620000000000 ,1620000000000 ,1616812503440 -1616812503470 ,112.5679683,26.87406544,58.68622971,194.063632,196.2528077,12.708549,0.115993035,1620000000000 ,1620000000000 ,1620000000000 ,1616812503450 -1616812503480 ,112.5679679,26.87406433,58.68702698,194.0572116,196.2485399,12.708174,0.115689441,1620000000000 ,1620000000000 ,1620000000000 ,1616812503460 -1616812503489 ,112.5679676,26.87406322,58.68787003,194.049234,196.2438051,12.708504,0.115694485,1620000000000 ,1620000000000 ,1620000000000 ,1616812503470 -1616812503503 ,112.5679673,26.87406211,58.68876266,194.0432781,196.2352235,12.709575,0.115702548,1620000000000 ,1620000000000 ,1620000000000 ,1616812503480 -1616812503514 ,112.567967,26.874061,58.68965149,194.0360654,196.2274297,12.71168,0.11571765,1620000000000 ,1620000000000 ,1620000000000 ,1616812503490 -1616812503519 ,112.5679666,26.87405988,58.69052887,194.0288254,196.2192496,12.712215,0.11572736,1620000000000 ,1620000000000 ,1620000000000 ,1616812503500 -1616812503529 ,112.5679663,26.87405877,58.69141006,194.0207931,196.198481,12.711429,0.115721943,1620000000000 ,1620000000000 ,1620000000000 ,1616812503510 -1616812503542 ,112.567966,26.87405766,58.6923027,194.0125969,196.1873212,12.711567,0.115717614,1620000000000 ,1620000000000 ,1620000000000 ,1616812503520 -1616812503552 ,112.5679657,26.87405655,58.6931839,194.0083895,196.1799321,12.711614,0.115720068,1620000000000 ,1620000000000 ,1620000000000 ,1616812503530 -1616812503560 ,112.5679654,26.87405544,58.69401932,194.002051,196.1705581,12.713559,0.115729576,1620000000000 ,1620000000000 ,1620000000000 ,1616812503540 -1616812503572 ,112.567965,26.87405433,58.69482422,193.9938002,196.1649601,12.714068,0.115733481,1620000000000 ,1620000000000 ,1620000000000 ,1616812503550 -1616812503580 ,112.5679647,26.87405322,58.69560242,193.9887458,196.1587584,12.715781,0.115746072,1620000000000 ,1620000000000 ,1620000000000 ,1616812503560 -1616812503590 ,112.5679644,26.8740521,58.69634628,193.9812873,196.1485645,12.716021,0.115753123,1620000000000 ,1620000000000 ,1620000000000 ,1616812503570 -1616812503600 ,112.5679641,26.87405099,58.69703293,193.9749488,196.1397928,12.716882,0.115751362,1620000000000 ,1620000000000 ,1620000000000 ,1616812503580 -1616812503610 ,112.5679637,26.87404988,58.69768524,193.9703863,196.1356133,12.718171,0.115760758,1620000000000 ,1620000000000 ,1620000000000 ,1616812503590 -1616812503620 ,112.5679634,26.87404877,58.69829941,193.9636381,196.1256509,12.717591,0.115757587,1620000000000 ,1620000000000 ,1620000000000 ,1616812503600 -1616812503634 ,112.5679631,26.87404766,58.69890976,193.9565347,196.1205354,12.718087,0.115756864,1620000000000 ,1620000000000 ,1620000000000 ,1616812503610 -1616812503642 ,112.5679628,26.87404654,58.69948578,193.9510705,196.1203288,12.719821,0.115769163,1620000000000 ,1620000000000 ,1620000000000 ,1616812503620 -1616812503653 ,112.5679625,26.87404543,58.70002365,193.9419454,196.1060283,12.720054,0.115772674,1620000000000 ,1620000000000 ,1620000000000 ,1616812503630 -1616812503662 ,112.5679621,26.87404432,58.70055389,193.9335579,196.0969659,12.720475,0.115770343,1620000000000 ,1620000000000 ,1620000000000 ,1616812503640 -1616812503672 ,112.5679618,26.87404321,58.70112228,193.9256622,196.0997777,12.721932,0.11578261,1620000000000 ,1620000000000 ,1620000000000 ,1616812503650 -1616812503681 ,112.5679615,26.87404209,58.70170212,193.9203893,196.0953701,12.723098,0.115793727,1620000000000 ,1620000000000 ,1620000000000 ,1616812503660 -1616812503696 ,112.5679612,26.87404098,58.70229721,193.9143241,196.0823392,12.724036,0.115799713,1620000000000 ,1620000000000 ,1620000000000 ,1616812503670 -1616812503705 ,112.5679609,26.87403987,58.70297241,193.9065104,196.0711359,12.721283,0.115785716,1620000000000 ,1620000000000 ,1620000000000 ,1616812503680 -1616812503714 ,112.5679605,26.87403876,58.70372391,193.8995709,196.0548439,12.721156,0.115774167,1620000000000 ,1620000000000 ,1620000000000 ,1616812503690 -1616812503726 ,112.5679602,26.87403764,58.7044754,193.8938882,196.0435197,12.723112,0.115786016,1620000000000 ,1620000000000 ,1620000000000 ,1616812503700 -1616812503734 ,112.5679599,26.87403653,58.70520401,193.8876317,196.0443232,12.723988,0.115795671,1620000000000 ,1620000000000 ,1620000000000 ,1616812503710 -1616812503742 ,112.5679596,26.87403542,58.70594788,193.8798453,196.0386429,12.723754,0.115801574,1620000000000 ,1620000000000 ,1620000000000 ,1616812503720 -1616812503760 ,112.5679593,26.87403431,58.70676422,193.8725233,196.0312639,12.723893,0.115798067,1620000000000 ,1620000000000 ,1620000000000 ,1616812503730 -1616812503762 ,112.5679589,26.87403319,58.70763016,193.8665947,196.0206385,12.723776,0.115795034,1620000000000 ,1620000000000 ,1620000000000 ,1616812503740 -1616812503772 ,112.5679586,26.87403208,58.70851898,193.8607754,196.013771,12.723647,0.115796114,1620000000000 ,1620000000000 ,1620000000000 ,1616812503750 -1616812503781 ,112.5679583,26.87403097,58.70941544,193.8544097,196.012084,12.723926,0.115798592,1620000000000 ,1620000000000 ,1620000000000 ,1616812503760 -1616812503793 ,112.567958,26.87402985,58.71034241,193.8483445,196.0076369,12.724953,0.115807061,1620000000000 ,1620000000000 ,1620000000000 ,1616812503770 -1616812503806 ,112.5679577,26.87402874,58.71131897,193.8412137,195.9967607,12.725051,0.115808736,1620000000000 ,1620000000000 ,1620000000000 ,1616812503780 -1616812503816 ,112.5679573,26.87402763,58.71234512,193.8350119,195.9943086,12.725577,0.115815321,1620000000000 ,1620000000000 ,1620000000000 ,1616812503790 -1616812503825 ,112.567957,26.87402651,58.71341705,193.8284003,195.9901771,12.726572,0.115824602,1620000000000 ,1620000000000 ,1620000000000 ,1616812503800 -1616812503833 ,112.5679567,26.8740254,58.71453476,193.8209691,195.984047,12.72498,0.115819152,1620000000000 ,1620000000000 ,1620000000000 ,1616812503820 -1616812503844 ,112.5679564,26.87402429,58.7157402,193.8125816,195.973707,12.7240925,0.115809505,1620000000000 ,1620000000000 ,1620000000000 ,1616812503830 -1616812503853 ,112.5679561,26.87402317,58.71702957,193.8047952,195.9677589,12.723943,0.115808135,1620000000000 ,1620000000000 ,1620000000000 ,1616812503840 -1616812503862 ,112.5679557,26.87402206,58.71834183,193.7981016,195.9625546,12.72415,0.115810055,1620000000000 ,1620000000000 ,1620000000000 ,1616812503850 -1616812503873 ,112.5679554,26.87402095,58.71960068,193.7906703,195.9548941,12.726353,0.115825332,1620000000000 ,1620000000000 ,1620000000000 ,1616812503860 -1616812503883 ,112.5679551,26.87401983,58.72082138,193.7826927,195.9539913,12.727057,0.115835939,1620000000000 ,1620000000000 ,1620000000000 ,1616812503870 -1616812503894 ,112.5679545,26.8740176,58.72322464,193.7659724,195.9314083,12.728088,0.231676948,1620000000000 ,1620000000000 ,1620000000000 ,1616812503880 -1616812503906 ,112.5679545,26.8740176,58.72322464,193.7659724,-400,12.728088,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812503880 -1616812503913 ,112.5679538,26.87401538,58.72546387,193.7500717,195.9228375,12.729427,0.231693363,1620000000000 ,1620000000000 ,1620000000000 ,1616812503900 -1616812503924 ,112.5679538,26.87401538,58.72546387,193.7500717,-400,12.729427,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812503910 -1616812503934 ,112.5679532,26.87401315,58.72756577,193.7358376,195.9074139,12.73032,0.231706241,1620000000000 ,1620000000000 ,1620000000000 ,1616812503920 -1616812503946 ,112.5679529,26.87401203,58.72853851,193.7293352,195.890672,12.730739,0.115860606,1620000000000 ,1620000000000 ,1620000000000 ,1616812503930 -1616812503956 ,112.5679526,26.87401092,58.72943497,193.721904,195.8883674,12.732677,0.115873003,1620000000000 ,1620000000000 ,1620000000000 ,1616812503940 -1616812503963 ,112.5679522,26.8740098,58.73032761,193.7139537,195.8847252,12.734127,0.115883799,1620000000000 ,1620000000000 ,1620000000000 ,1616812503950 -1616812503973 ,112.5679519,26.87400869,58.73123169,193.7084895,195.8707507,12.734217,0.115888924,1620000000000 ,1620000000000 ,1620000000000 ,1616812503960 -1616812503985 ,112.5679516,26.87400757,58.73214722,193.7014954,195.8672452,12.735057,0.115900168,1620000000000 ,1620000000000 ,1620000000000 ,1616812503970 -1616812503993 ,112.5679513,26.87400646,58.73304749,193.6952663,195.8632357,12.735551,0.115901301,1620000000000 ,1620000000000 ,1620000000000 ,1616812503980 -1616812504007 ,112.5679513,26.87400646,58.73304749,193.6952663,-400,12.735551,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812503980 -1616812504016 ,112.5679507,26.87400423,58.73479462,193.6842014,195.8565036,12.734832,0.231800813,1620000000000 ,1620000000000 ,1620000000000 ,1616812504000 -1616812504024 ,112.5679503,26.87400312,58.73565292,193.6789285,195.839672,12.7357,0.115898039,1620000000000 ,1620000000000 ,1620000000000 ,1616812504010 -1616812504035 ,112.56795,26.874002,58.7364769,193.6765515,195.8347907,12.737271,0.115909384,1620000000000 ,1620000000000 ,1620000000000 ,1616812504020 -1616812504046 ,112.5679497,26.87400088,58.73724365,193.672672,195.8301277,12.739029,0.115920951,1620000000000 ,1620000000000 ,1620000000000 ,1616812504030 -1616812504056 ,112.5679494,26.87399977,58.7379837,193.6680001,195.8211824,12.739421,0.11592992,1620000000000 ,1620000000000 ,1620000000000 ,1616812504040 -1616812504064 ,112.5679491,26.87399865,58.73871994,193.6638747,195.8059313,12.739087,0.115925943,1620000000000 ,1620000000000 ,1620000000000 ,1616812504050 -1616812504074 ,112.5679488,26.87399754,58.73945618,193.6629458,195.7934776,12.739319,0.115925098,1620000000000 ,1620000000000 ,1620000000000 ,1616812504060 -1616812504087 ,112.5679485,26.87399642,58.74016953,193.6616891,195.7888072,12.739437,0.115923441,1620000000000 ,1620000000000 ,1620000000000 ,1616812504070 -1616812504096 ,112.5679481,26.87399531,58.74082947,193.6613066,195.7828347,12.739975,0.115925335,1620000000000 ,1620000000000 ,1620000000000 ,1616812504080 -1616812504107 ,112.5679478,26.87399419,58.74144363,193.6604596,195.7743634,12.740183,0.115925861,1620000000000 ,1620000000000 ,1620000000000 ,1616812504090 -1616812504115 ,112.5679475,26.87399308,58.74203873,193.6602137,195.7664964,12.741298,0.115931865,1620000000000 ,1620000000000 ,1620000000000 ,1616812504100 -1616812504126 ,112.5679472,26.87399196,58.74261856,193.6614705,195.7607365,12.742815,0.115945321,1620000000000 ,1620000000000 ,1620000000000 ,1616812504110 -1616812504135 ,112.5679469,26.87399084,58.74315262,193.662454,195.7536488,12.743492,0.115946674,1620000000000 ,1620000000000 ,1620000000000 ,1616812504120 -1616812504146 ,112.5679466,26.87398973,58.74368668,193.6615524,195.7533242,12.744386,0.115956477,1620000000000 ,1620000000000 ,1620000000000 ,1616812504130 -1616812504155 ,112.5679462,26.87398861,58.74424744,193.6613612,195.7477919,12.744809,0.115959372,1620000000000 ,1620000000000 ,1620000000000 ,1616812504140 -1616812504166 ,112.5679459,26.8739875,58.74481964,193.6633283,195.7474921,12.746133,0.115968944,1620000000000 ,1620000000000 ,1620000000000 ,1616812504150 -1616812504176 ,112.5679456,26.87398638,58.74538422,193.6669346,195.7470233,12.747325,0.115980954,1620000000000 ,1620000000000 ,1620000000000 ,1616812504160 -1616812504187 ,112.5679453,26.87398526,58.74594879,193.6652134,195.7561661,12.746649,0.115976535,1620000000000 ,1620000000000 ,1620000000000 ,1616812504170 -1616812504195 ,112.567945,26.87398415,58.74654007,193.668328,195.7520292,12.74747,0.115984038,1620000000000 ,1620000000000 ,1620000000000 ,1616812504180 -1616812504206 ,112.5679447,26.87398303,58.74711609,193.6708415,195.7544978,12.7494545,0.115997795,1620000000000 ,1620000000000 ,1620000000000 ,1616812504190 -1616812504217 ,112.5679444,26.87398192,58.74680328,193.6765789,195.686119,12.710922,0.115382086,1620000000000 ,1620000000000 ,1620000000000 ,1616812504200 -1616812504227 ,112.5679441,26.87398082,58.74542618,193.6782181,195.5533994,12.710511,0.114368054,1620000000000 ,1620000000000 ,1620000000000 ,1616812504210 -1616812504239 ,112.5679437,26.87397972,58.74409485,193.6793929,195.5583837,12.7104225,0.114372411,1620000000000 ,1620000000000 ,1620000000000 ,1616812504220 -1616812504247 ,112.5679434,26.87397861,58.7428093,193.6803491,195.5612048,12.710131,0.114369744,1620000000000 ,1620000000000 ,1620000000000 ,1616812504230 -1616812504257 ,112.5679431,26.87397751,58.741539,193.6801579,195.5627021,12.710624,0.114371348,1620000000000 ,1620000000000 ,1620000000000 ,1616812504240 -1616812504271 ,112.5679428,26.87397641,58.7402916,193.679912,195.5704652,12.710442,0.114374336,1620000000000 ,1620000000000 ,1620000000000 ,1616812504250 -1616812504279 ,112.5679425,26.87397531,58.73907471,193.6803218,195.5758613,12.710991,0.114379498,1620000000000 ,1620000000000 ,1620000000000 ,1616812504260 -1616812504289 ,112.5679422,26.87397421,58.73791122,193.6792017,195.5756212,12.71174,0.114388076,1620000000000 ,1620000000000 ,1620000000000 ,1616812504270 -1616812504299 ,112.5679419,26.87397311,58.73678589,193.678464,195.583284,12.711345,0.11438712,1620000000000 ,1620000000000 ,1620000000000 ,1616812504280 -1616812504309 ,112.5679416,26.873972,58.73569489,193.677781,195.5818247,12.711975,0.11439544,1620000000000 ,1620000000000 ,1620000000000 ,1616812504290 -1616812504317 ,112.5679413,26.8739709,58.73463058,193.6777537,195.5774414,12.711781,0.114394325,1620000000000 ,1620000000000 ,1620000000000 ,1616812504300 -1616812504329 ,112.567941,26.8739698,58.73360825,193.6786826,195.5787804,12.713778,0.114412056,1620000000000 ,1620000000000 ,1620000000000 ,1616812504310 -1616812504337 ,112.5679407,26.8739687,58.73259735,193.677699,195.5752278,12.711651,0.114403126,1620000000000 ,1620000000000 ,1620000000000 ,1616812504320 -1616812504346 ,112.5679404,26.8739676,58.73157501,193.677781,195.5642665,12.711301,0.114395457,1620000000000 ,1620000000000 ,1620000000000 ,1616812504330 -1616812504357 ,112.5679401,26.87396649,58.73054123,193.6758412,195.5658258,12.711156,0.114394533,1620000000000 ,1620000000000 ,1620000000000 ,1616812504340 -1616812504375 ,112.5679398,26.87396539,58.729496,193.6753221,195.5682795,12.711045,0.114391473,1620000000000 ,1620000000000 ,1620000000000 ,1616812504350 -1616812504378 ,112.5679395,26.87396429,58.72846222,193.6739014,195.5555326,12.710015,0.114385887,1620000000000 ,1620000000000 ,1620000000000 ,1616812504360 -1616812504390 ,112.5679391,26.87396319,58.72740555,193.67412,195.5444041,12.710197,0.114385318,1620000000000 ,1620000000000 ,1620000000000 ,1616812504370 -1616812504400 ,112.5679388,26.87396209,58.7262764,193.6752675,195.548685,12.713307,0.114399764,1620000000000 ,1620000000000 ,1620000000000 ,1616812504380 -1616812504408 ,112.5679385,26.87396098,58.72505951,193.6755953,195.5529351,12.716072,0.114424596,1620000000000 ,1620000000000 ,1620000000000 ,1616812504390 -1616812504418 ,112.5679382,26.87395988,58.72376251,193.6761964,195.5536714,12.715941,0.114425837,1620000000000 ,1620000000000 ,1620000000000 ,1616812504400 -1616812504428 ,112.5679379,26.87395878,58.72240448,193.6751309,195.5581683,12.716832,0.114437513,1620000000000 ,1620000000000 ,1620000000000 ,1616812504410 -1616812504438 ,112.5679376,26.87395768,58.72097397,193.6754587,195.5587227,12.716524,0.114430251,1620000000000 ,1620000000000 ,1620000000000 ,1616812504420 -1616812504450 ,112.5679373,26.87395657,58.71948624,193.6750216,195.570741,12.71665,0.114425772,1620000000000 ,1620000000000 ,1620000000000 ,1616812504430 -1616812504460 ,112.567937,26.87395547,58.71796036,193.6743112,195.5751278,12.719246,0.114443632,1620000000000 ,1620000000000 ,1620000000000 ,1616812504440 -1616812504478 ,112.5679367,26.87395436,58.71728897,193.6733277,195.6550623,12.720375,0.115093114,1620000000000 ,1620000000000 ,1620000000000 ,1616812504450 -1616812504482 ,112.5679364,26.87395325,58.71750641,193.6723988,195.7275829,12.721029,0.115730743,1620000000000 ,1620000000000 ,1620000000000 ,1616812504460 -1616812504489 ,112.5679361,26.87395214,58.71773911,193.6695301,195.724505,12.720044,0.115725163,1620000000000 ,1620000000000 ,1620000000000 ,1616812504470 -1616812504499 ,112.5679357,26.87395102,58.71799469,193.6692569,195.7225948,12.721308,0.115729801,1620000000000 ,1620000000000 ,1620000000000 ,1616812504480 -1616812504508 ,112.5679354,26.87394991,58.71823502,193.6678909,195.7230104,12.72214,0.115738163,1620000000000 ,1620000000000 ,1620000000000 ,1616812504490 -1616812504519 ,112.5679351,26.87394879,58.71847534,193.6662789,195.71891,12.722309,0.115742918,1620000000000 ,1620000000000 ,1620000000000 ,1616812504500 -1616812504528 ,112.5679348,26.87394768,58.71871948,193.6652134,195.7118138,12.724469,0.115754674,1620000000000 ,1620000000000 ,1620000000000 ,1616812504510 -1616812504539 ,112.5679345,26.87394656,58.71892929,193.6641206,195.7120787,12.724325,0.115753202,1620000000000 ,1620000000000 ,1620000000000 ,1616812504520 -1616812504550 ,112.5679342,26.87394545,58.71909332,193.6656779,195.7197498,12.725395,0.115760215,1620000000000 ,1620000000000 ,1620000000000 ,1616812504530 -1616812504561 ,112.5679339,26.87394434,58.71927261,193.668328,195.7057332,12.726778,0.115775629,1620000000000 ,1620000000000 ,1620000000000 ,1616812504540 -1616812504574 ,112.5679335,26.87394322,58.71955109,193.6671805,195.6796125,12.726154,0.115767148,1620000000000 ,1620000000000 ,1620000000000 ,1616812504550 -1616812504579 ,112.5679332,26.87394211,58.719944,193.6683826,195.6801559,12.724144,0.115756023,1620000000000 ,1620000000000 ,1620000000000 ,1616812504560 -1616812504589 ,112.5679329,26.87394099,58.72039032,193.6701585,195.6824349,12.723012,0.115747967,1620000000000 ,1620000000000 ,1620000000000 ,1616812504570 -1616812504601 ,112.5679326,26.87393988,58.72086716,193.6703224,195.6881232,12.724351,0.115752364,1620000000000 ,1620000000000 ,1620000000000 ,1616812504580 -1616812504609 ,112.5679323,26.87393876,58.72140884,193.6696667,195.6923824,12.726551,0.115775076,1620000000000 ,1620000000000 ,1620000000000 ,1616812504590 -1616812504624 ,112.567932,26.87393765,58.72200775,193.6675903,195.6883282,12.7260475,0.11577713,1620000000000 ,1620000000000 ,1620000000000 ,1616812504600 -1616812504631 ,112.5679317,26.87393653,58.72265244,193.6666888,195.6960838,12.725287,0.115772665,1620000000000 ,1620000000000 ,1620000000000 ,1616812504610 -1616812504640 ,112.5679314,26.87393542,58.72336197,193.6654047,195.7017419,12.723458,0.115760257,1620000000000 ,1620000000000 ,1620000000000 ,1616812504620 -1616812504650 ,112.567931,26.87393431,58.72416687,193.6631097,195.7029218,12.721094,0.115744794,1620000000000 ,1620000000000 ,1620000000000 ,1616812504630 -1616812504661 ,112.5679307,26.87393319,58.72504807,193.6595854,195.7058496,12.722367,0.115749096,1620000000000 ,1620000000000 ,1620000000000 ,1616812504640 -1616812504672 ,112.5679304,26.87393208,58.72592926,193.6575636,195.7024624,12.722889,0.115753803,1620000000000 ,1620000000000 ,1620000000000 ,1616812504650 -1616812504683 ,112.5679301,26.87393096,58.72677612,193.6543398,195.6985487,12.723235,0.115759068,1620000000000 ,1620000000000 ,1620000000000 ,1616812504660 -1616812504690 ,112.5679298,26.87392985,58.72761917,193.650187,195.6989686,12.724133,0.115767157,1620000000000 ,1620000000000 ,1620000000000 ,1616812504670 -1616812504701 ,112.5679295,26.87392873,58.72851944,193.6438486,195.7008288,12.724287,0.11577215,1620000000000 ,1620000000000 ,1620000000000 ,1616812504680 -1616812504712 ,112.5679292,26.87392762,58.72948074,193.6388216,195.6976564,12.7234,0.115768334,1620000000000 ,1620000000000 ,1620000000000 ,1616812504690 -1616812504722 ,112.5679289,26.8739265,58.73047256,193.6319914,195.7054905,12.721534,0.115756941,1620000000000 ,1620000000000 ,1620000000000 ,1616812504700 -1616812504734 ,112.5679285,26.87392539,58.73148346,193.6253524,195.7129505,12.721276,0.115755117,1620000000000 ,1620000000000 ,1620000000000 ,1616812504710 -1616812504743 ,112.5679282,26.87392428,58.73249435,193.619096,195.7183081,12.720298,0.115747658,1620000000000 ,1620000000000 ,1620000000000 ,1616812504720 -1616812504753 ,112.5679279,26.87392316,58.73351669,193.6100528,195.7194228,12.720959,0.115749812,1620000000000 ,1620000000000 ,1620000000000 ,1616812504730 -1616812504767 ,112.5679276,26.87392205,58.73451996,193.6007364,195.7149427,12.721635,0.115757251,1620000000000 ,1620000000000 ,1620000000000 ,1616812504740 -1616812504771 ,112.5679273,26.87392093,58.73547745,193.5899174,195.7146577,12.7214775,0.115756657,1620000000000 ,1620000000000 ,1620000000000 ,1616812504750 -1616812504780 ,112.567927,26.87391982,58.73640823,193.5807377,195.7154505,12.722564,0.115764685,1620000000000 ,1620000000000 ,1620000000000 ,1616812504760 -1616812504791 ,112.5679267,26.8739187,58.73731613,193.571995,195.7065445,12.722338,0.11576392,1620000000000 ,1620000000000 ,1620000000000 ,1616812504770 -1616812504800 ,112.5679263,26.87391759,58.73818207,193.560329,195.69558,12.722897,0.115764222,1620000000000 ,1620000000000 ,1620000000000 ,1616812504780 -1616812504815 ,112.567926,26.87391648,58.73899841,193.5498106,195.683943,12.723943,0.115769409,1620000000000 ,1620000000000 ,1620000000000 ,1616812504790 -1616812504822 ,112.5679257,26.87391536,58.73974991,193.5379533,195.670604,12.722414,0.115757236,1620000000000 ,1620000000000 ,1620000000000 ,1616812504800 -1616812504833 ,112.5679254,26.87391425,58.74045181,193.5253858,195.6609551,12.723038,0.115758059,1620000000000 ,1620000000000 ,1620000000000 ,1616812504810 -1616812504842 ,112.5679251,26.87391313,58.74110413,193.5145668,195.6501778,12.7230625,0.115756345,1620000000000 ,1620000000000 ,1620000000000 ,1616812504820 -1616812504852 ,112.5679248,26.87391202,58.74172974,193.5050865,195.6338722,12.723914,0.115759007,1620000000000 ,1620000000000 ,1620000000000 ,1616812504830 -1616812504864 ,112.5679245,26.8739109,58.74232101,193.4937484,195.6167918,12.724026,0.115758637,1620000000000 ,1620000000000 ,1620000000000 ,1616812504840 -1616812504871 ,112.5679242,26.87390979,58.74286652,193.482984,195.6007798,12.726169,0.115770315,1620000000000 ,1620000000000 ,1620000000000 ,1616812504850 -1616812504882 ,112.5679238,26.87390867,58.74337387,193.4722469,195.5833021,12.725734,0.115769771,1620000000000 ,1620000000000 ,1620000000000 ,1616812504860 -1616812504892 ,112.5679235,26.87390756,58.74386215,193.4623022,195.5678431,12.725069,0.115762316,1620000000000 ,1620000000000 ,1620000000000 ,1616812504870 -1616812504902 ,112.5679232,26.87390644,58.74436188,193.4521388,195.5540088,12.72478,0.115757266,1620000000000 ,1620000000000 ,1620000000000 ,1616812504880 -1616812504913 ,112.5679229,26.87390533,58.74487305,193.4418116,195.5435416,12.723711,0.115747644,1620000000000 ,1620000000000 ,1620000000000 ,1616812504890 -1616812504923 ,112.5679226,26.87390421,58.74541092,193.4318122,195.5264266,12.7224865,0.115736704,1620000000000 ,1620000000000 ,1620000000000 ,1616812504900 -1616812504933 ,112.5679223,26.8739031,58.74596786,193.4215942,195.5038397,12.722317,0.115730021,1620000000000 ,1620000000000 ,1620000000000 ,1616812504910 -1616812504942 ,112.567922,26.87390198,58.74652481,193.4130702,195.488457,12.723066,0.115731247,1620000000000 ,1620000000000 ,1620000000000 ,1616812504920 -1616812504952 ,112.5679217,26.87390087,58.7470665,193.4042729,195.4785947,12.724034,0.115740301,1620000000000 ,1620000000000 ,1620000000000 ,1616812504930 -1616812504963 ,112.5679214,26.87389975,58.74759293,193.3962133,195.4693534,12.723987,0.115739646,1620000000000 ,1620000000000 ,1620000000000 ,1616812504940 -1616812504975 ,112.5679211,26.87389863,58.7481842,193.387416,195.4579771,12.722546,0.11573169,1620000000000 ,1620000000000 ,1620000000000 ,1616812504950 -1616812504983 ,112.5679208,26.87389752,58.74884415,193.3785367,195.4336163,12.720808,0.115717872,1620000000000 ,1620000000000 ,1620000000000 ,1616812504970 -1616812504994 ,112.5679204,26.8738964,58.74954605,193.3704498,195.4224693,12.720758,0.115715293,1620000000000 ,1620000000000 ,1620000000000 ,1616812504980 -1616812505010 ,112.5679201,26.87389529,58.75020981,193.3627727,195.4097029,12.719589,0.115700022,1620000000000 ,1620000000000 ,1620000000000 ,1616812504980 -1616812505018 ,112.5679198,26.87389417,58.75081635,193.3548496,195.4049924,12.720569,0.115706324,1620000000000 ,1620000000000 ,1620000000000 ,1616812505000 -1616812505025 ,112.5679195,26.87389306,58.75141144,193.347473,195.4001676,12.721983,0.115717706,1620000000000 ,1620000000000 ,1620000000000 ,1616812505010 -1616812505033 ,112.5679189,26.87389083,58.75254822,193.3287583,195.3859887,12.720093,0.231437081,1620000000000 ,1620000000000 ,1620000000000 ,1616812505020 -1616812505044 ,112.5679189,26.87389083,58.75254822,193.3287583,-400,12.720093,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812505030 -1616812505054 ,112.5679183,26.87388859,58.75365448,193.312885,195.3541643,12.71639,0.231341267,1620000000000 ,1620000000000 ,1620000000000 ,1616812505040 -1616812505062 ,112.567918,26.87388748,58.75418472,193.3042516,195.3478161,12.717925,0.1156721,1620000000000 ,1620000000000 ,1620000000000 ,1616812505050 -1616812505073 ,112.5679177,26.87388636,58.75468445,193.2952084,195.3391805,12.719332,0.115685626,1620000000000 ,1620000000000 ,1620000000000 ,1616812505060 -1616812505083 ,112.5679174,26.87388525,58.75517654,193.2872308,195.3259901,12.719089,0.115684438,1620000000000 ,1620000000000 ,1620000000000 ,1616812505070 -1616812505095 ,112.5679171,26.87388413,58.75568008,193.277969,195.3067727,12.718241,0.115678889,1620000000000 ,1620000000000 ,1620000000000 ,1616812505080 -1616812505106 ,112.5679171,26.87388413,58.75568008,193.277969,-400,12.718241,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812505090 -1616812505117 ,112.5679165,26.8738819,58.75669861,193.2621776,195.2896022,12.714347,0.23129356,1620000000000 ,1620000000000 ,1620000000000 ,1616812505100 -1616812505124 ,112.5679162,26.87388079,58.7571907,193.254118,195.2988629,12.713456,0.115632497,1620000000000 ,1620000000000 ,1620000000000 ,1616812505110 -1616812505135 ,112.5679159,26.87387967,58.75766754,193.2458671,195.2914458,12.712753,0.115623786,1620000000000 ,1620000000000 ,1620000000000 ,1616812505120 -1616812505147 ,112.5679159,26.87387967,58.75766754,193.2458671,-400,12.712753,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812505130 -1616812505157 ,112.5679152,26.87387744,58.75862885,193.2269065,195.2851743,12.712643,0.231227412,1620000000000 ,1620000000000 ,1620000000000 ,1616812505140 -1616812505167 ,112.5679149,26.87387632,58.75906754,193.2181366,195.282823,12.713147,0.115620651,1620000000000 ,1620000000000 ,1620000000000 ,1616812505150 -1616812505179 ,112.5679146,26.87387521,58.75947571,193.2089295,195.2929015,12.7141285,0.115625429,1620000000000 ,1620000000000 ,1620000000000 ,1616812505160 -1616812505186 ,112.5679143,26.87387409,58.75988007,193.1980012,195.2935078,12.713551,0.115626488,1620000000000 ,1620000000000 ,1620000000000 ,1616812505170 -1616812505195 ,112.567914,26.87387298,58.76028061,193.1898323,195.2905347,12.712621,0.115611445,1620000000000 ,1620000000000 ,1620000000000 ,1616812505180 -1616812505205 ,112.5679137,26.87387186,58.76066971,193.1784395,195.2764132,12.709691,0.115589704,1620000000000 ,1620000000000 ,1620000000000 ,1616812505190 -1616812505215 ,112.5679134,26.87387075,58.76086426,193.1758714,195.2639911,12.703829,0.115541761,1620000000000 ,1620000000000 ,1620000000000 ,1616812505200 -1616812505225 ,112.5679131,26.87386964,58.76070786,193.1664184,195.217199,12.70487,0.11543344,1620000000000 ,1620000000000 ,1620000000000 ,1616812505210 -1616812505234 ,112.5679128,26.87386852,58.7604866,193.1548617,195.2037783,12.704737,0.115435056,1620000000000 ,1620000000000 ,1620000000000 ,1616812505220 -1616812505244 ,112.5679125,26.87386741,58.76023483,193.1464196,195.2109049,12.705395,0.115437256,1620000000000 ,1620000000000 ,1620000000000 ,1616812505230 -1616812505256 ,112.5679122,26.87386629,58.76002884,193.1364202,195.1944012,12.707689,0.115449507,1620000000000 ,1620000000000 ,1620000000000 ,1616812505240 -1616812505268 ,112.5679119,26.87386518,58.75992584,193.1276502,195.1647253,12.706731,0.115447289,1620000000000 ,1620000000000 ,1620000000000 ,1616812505250 -1616812505275 ,112.5679116,26.87386406,58.75996017,193.1183885,195.1487307,12.702083,0.115416176,1620000000000 ,1620000000000 ,1620000000000 ,1616812505260 -1616812505285 ,112.5679113,26.87386295,58.76006699,193.1076514,195.1423912,12.698184,0.115377905,1620000000000 ,1620000000000 ,1620000000000 ,1616812505270 -1616812505295 ,112.567911,26.87386184,58.76020813,193.0982804,195.1494174,12.697908,0.115362774,1620000000000 ,1620000000000 ,1620000000000 ,1616812505280 -1616812505306 ,112.5679107,26.87386072,58.76036453,193.0915595,195.1520802,12.702418,0.115392967,1620000000000 ,1620000000000 ,1620000000000 ,1616812505290 -1616812505315 ,112.5679104,26.87385961,58.76055145,193.0827349,195.1152691,12.706102,0.115431737,1620000000000 ,1620000000000 ,1620000000000 ,1616812505300 -1616812505325 ,112.5679101,26.87385849,58.76085663,193.0727628,195.0853569,12.705508,0.115433802,1620000000000 ,1620000000000 ,1620000000000 ,1616812505310 -1616812505346 ,112.5679098,26.87385738,58.76133347,193.0612061,195.0828639,12.698927,0.115387576,1620000000000 ,1620000000000 ,1620000000000 ,1616812505320 -1616812505348 ,112.5679095,26.87385627,58.76195145,193.051999,195.0923577,12.693206,0.115341264,1620000000000 ,1620000000000 ,1620000000000 ,1616812505330 -1616812505358 ,112.5679092,26.87385515,58.76268768,193.0429559,195.0985229,12.691108,0.115315698,1620000000000 ,1620000000000 ,1620000000000 ,1616812505340 -1616812505366 ,112.5679089,26.87385404,58.7635231,193.0358525,195.0822571,12.693135,0.115326322,1620000000000 ,1620000000000 ,1620000000000 ,1616812505350 -1616812505377 ,112.5679086,26.87385293,58.76443481,193.0257984,195.0611458,12.694102,0.115338471,1620000000000 ,1620000000000 ,1620000000000 ,1616812505360 -1616812505387 ,112.5679083,26.87385181,58.76536942,193.0192688,195.0350189,12.694767,0.115343625,1620000000000 ,1620000000000 ,1620000000000 ,1616812505370 -1616812505398 ,112.567908,26.8738507,58.76630783,193.0116736,195.0337932,12.693987,0.115341998,1620000000000 ,1620000000000 ,1620000000000 ,1616812505380 -1616812505406 ,112.5679077,26.87384958,58.76730347,193.0029583,195.0444123,12.693489,0.115340729,1620000000000 ,1620000000000 ,1620000000000 ,1616812505390 -1616812505416 ,112.5679074,26.87384847,58.76839447,192.9947074,195.0389758,12.692321,0.115331793,1620000000000 ,1620000000000 ,1620000000000 ,1616812505400 -1616812505426 ,112.5679071,26.87384736,58.7695694,192.9838884,195.024433,12.692131,0.115333485,1620000000000 ,1620000000000 ,1620000000000 ,1616812505410 -1616812505437 ,112.5679068,26.87384624,58.77075577,192.9754736,195.0093943,12.691467,0.115329351,1620000000000 ,1620000000000 ,1620000000000 ,1616812505420 -1616812505448 ,112.5679065,26.87384513,58.77195358,192.9661299,195.0028041,12.689593,0.11531812,1620000000000 ,1620000000000 ,1620000000000 ,1616812505430 -1616812505459 ,112.5679062,26.87384402,58.77318954,192.9592997,194.9900576,12.690045,0.115320345,1620000000000 ,1620000000000 ,1620000000000 ,1616812505440 -1616812505471 ,112.5679059,26.8738429,58.77462387,192.9511035,194.9802364,12.689865,0.115359142,1620000000000 ,1620000000000 ,1620000000000 ,1616812505450 -1616812505479 ,112.5679056,26.87384179,58.77622604,192.9429892,194.9727304,12.68987,0.115404358,1620000000000 ,1620000000000 ,1620000000000 ,1616812505460 -1616812505488 ,112.5679053,26.87384067,58.77780151,192.9370606,194.9605284,12.689576,0.115403476,1620000000000 ,1620000000000 ,1620000000000 ,1616812505470 -1616812505499 ,112.567905,26.87383956,58.77930069,192.9289737,194.9516777,12.68937,0.115398863,1620000000000 ,1620000000000 ,1620000000000 ,1616812505480 -1616812505509 ,112.5679047,26.87383844,58.7807045,192.9217883,194.9425427,12.690756,0.115408265,1620000000000 ,1620000000000 ,1620000000000 ,1616812505490 -1616812505520 ,112.5679044,26.87383733,58.78199768,192.9148762,194.9346327,12.691402,0.115413348,1620000000000 ,1620000000000 ,1620000000000 ,1616812505500 -1616812505527 ,112.5679041,26.87383621,58.78318787,192.9082372,194.9274812,12.691357,0.115411791,1620000000000 ,1620000000000 ,1620000000000 ,1616812505510 -1616812505538 ,112.5679038,26.8738351,58.78427887,192.9004508,194.9241333,12.691905,0.11541645,1620000000000 ,1620000000000 ,1620000000000 ,1616812505520 -1616812505550 ,112.5679035,26.87383398,58.78525162,192.8914076,194.9208968,12.693818,0.115427582,1620000000000 ,1620000000000 ,1620000000000 ,1616812505530 -1616812505560 ,112.5679032,26.87383286,58.78608704,192.8842496,194.9102299,12.694341,0.115430694,1620000000000 ,1620000000000 ,1620000000000 ,1616812505540 -1616812505570 ,112.5679029,26.87383175,58.78678131,192.8765725,194.9018844,12.695351,0.115434441,1620000000000 ,1620000000000 ,1620000000000 ,1616812505550 -1616812505579 ,112.5679026,26.87383063,58.78739548,192.8679664,194.8964651,12.69594,0.11543869,1620000000000 ,1620000000000 ,1620000000000 ,1616812505560 -1616812505589 ,112.5679023,26.87382952,58.78794098,192.8605079,194.881711,12.697062,0.115443304,1620000000000 ,1620000000000 ,1620000000000 ,1616812505570 -1616812505597 ,112.567902,26.8738284,58.78841782,192.8516559,194.8762998,12.698409,0.115453566,1620000000000 ,1620000000000 ,1620000000000 ,1616812505580 -1616812505607 ,112.5679017,26.87382729,58.78879929,192.8438422,194.8712113,12.699189,0.115459184,1620000000000 ,1620000000000 ,1620000000000 ,1616812505590 -1616812505618 ,112.5679014,26.87382617,58.78908539,192.8360011,194.8618344,12.699249,0.115458373,1620000000000 ,1620000000000 ,1620000000000 ,1616812505600 -1616812505629 ,112.5679012,26.87382505,58.78932953,192.8281601,194.8523684,12.699677,0.115452913,1620000000000 ,1620000000000 ,1620000000000 ,1616812505610 -1616812505638 ,112.5679009,26.87382394,58.78951645,192.8199639,194.8340289,12.700056,0.115455854,1620000000000 ,1620000000000 ,1620000000000 ,1616812505620 -1616812505649 ,112.5679006,26.87382282,58.78962326,192.814609,194.8252045,12.7002735,0.115454949,1620000000000 ,1620000000000 ,1620000000000 ,1616812505630 -1616812505659 ,112.5679003,26.87382171,58.78958511,192.8073963,194.818607,12.702827,0.115466278,1620000000000 ,1620000000000 ,1620000000000 ,1616812505640 -1616812505669 ,112.5679,26.87382059,58.78940582,192.7990362,194.8098399,12.70466,0.115477783,1620000000000 ,1620000000000 ,1620000000000 ,1616812505650 -1616812505679 ,112.5678997,26.87381947,58.78915405,192.7914956,194.7873702,12.707672,0.115494814,1620000000000 ,1620000000000 ,1620000000000 ,1616812505660 -1616812505688 ,112.5678994,26.87381836,58.78886414,192.7837912,194.7764659,12.706711,0.115498187,1620000000000 ,1620000000000 ,1620000000000 ,1616812505670 -1616812505700 ,112.5678991,26.87381724,58.78855133,192.7749119,194.780639,12.704863,0.115479479,1620000000000 ,1620000000000 ,1620000000000 ,1616812505680 -1616812505716 ,112.5678988,26.87381612,58.78824234,192.7655409,194.7805193,12.703858,0.115463431,1620000000000 ,1620000000000 ,1620000000000 ,1616812505690 -1616812505721 ,112.5678985,26.87381501,58.7879715,192.7577272,194.772518,12.704344,0.115464074,1620000000000 ,1620000000000 ,1620000000000 ,1616812505700 -1616812505731 ,112.5678982,26.87381389,58.78770065,192.7499134,194.7566863,12.707096,0.11548227,1620000000000 ,1620000000000 ,1620000000000 ,1616812505710 -1616812505740 ,112.5678979,26.87381277,58.78739929,192.7428374,194.7497438,12.709408,0.115504312,1620000000000 ,1620000000000 ,1620000000000 ,1616812505720 -1616812505754 ,112.5678976,26.87381166,58.78712463,192.7344772,194.7520155,12.709354,0.115508228,1620000000000 ,1620000000000 ,1620000000000 ,1616812505730 -1616812505764 ,112.5678973,26.87381054,58.78694534,192.7247783,194.7431924,12.70773,0.115493086,1620000000000 ,1620000000000 ,1620000000000 ,1616812505740 -1616812505771 ,112.567897,26.87380942,58.78686905,192.7178662,194.7308369,12.707476,0.115492863,1620000000000 ,1620000000000 ,1620000000000 ,1616812505750 -1616812505781 ,112.5678967,26.8738083,58.78683472,192.709506,194.7221283,12.708951,0.115502765,1620000000000 ,1620000000000 ,1620000000000 ,1616812505760 -1616812505790 ,112.5678964,26.87380719,58.7868309,192.7010093,194.7220295,12.710119,0.115514316,1620000000000 ,1620000000000 ,1620000000000 ,1616812505770 -1616812505800 ,112.5678961,26.87380607,58.78687286,192.6926765,194.7153437,12.709652,0.115513957,1620000000000 ,1620000000000 ,1620000000000 ,1616812505780 -1616812505811 ,112.5678959,26.87380495,58.78700638,192.6832508,194.7058587,12.709085,0.115511876,1620000000000 ,1620000000000 ,1620000000000 ,1616812505790 -1616812505822 ,112.5678956,26.87380384,58.78726578,192.6752185,194.6891012,12.708686,0.115510204,1620000000000 ,1620000000000 ,1620000000000 ,1616812505800 -1616812505832 ,112.5678953,26.87380272,58.78764343,192.6681697,194.675054,12.7086735,0.115507138,1620000000000 ,1620000000000 ,1620000000000 ,1616812505810 -1616812505841 ,112.567895,26.8738016,58.78812408,192.6621318,194.669399,12.708095,0.115510117,1620000000000 ,1620000000000 ,1620000000000 ,1616812505820 -1616812505854 ,112.5678947,26.87380048,58.78870773,192.6535531,194.6597189,12.707395,0.11550438,1620000000000 ,1620000000000 ,1620000000000 ,1616812505830 -1616812505861 ,112.5678944,26.87379937,58.78937149,192.6463131,194.6528607,12.707522,0.115507781,1620000000000 ,1620000000000 ,1620000000000 ,1616812505840 -1616812505873 ,112.5678941,26.87379825,58.79007339,192.6387999,194.6401523,12.707285,0.115505856,1620000000000 ,1620000000000 ,1620000000000 ,1616812505850 -1616812505885 ,112.5678938,26.87379713,58.79077148,192.6318605,194.6340358,12.708663,0.115516787,1620000000000 ,1620000000000 ,1620000000000 ,1616812505860 -1616812505894 ,112.5678935,26.87379601,58.79150772,192.6238281,194.6285912,12.7072735,0.115513118,1620000000000 ,1620000000000 ,1620000000000 ,1616812505870 -1616812505901 ,112.5678932,26.8737949,58.79230881,192.6152221,194.6258706,12.706132,0.115503981,1620000000000 ,1620000000000 ,1620000000000 ,1616812505880 -1616812505919 ,112.5678929,26.87379378,58.79319,192.6077909,194.6194302,12.704892,0.115497508,1620000000000 ,1620000000000 ,1620000000000 ,1616812505890 -1616812505924 ,112.5678926,26.87379266,58.79413605,192.6012066,194.6169486,12.703906,0.115487255,1620000000000 ,1620000000000 ,1620000000000 ,1616812505900 -1616812505933 ,112.5678924,26.87379154,58.79513168,192.5946223,194.6072158,12.703311,0.115483819,1620000000000 ,1620000000000 ,1620000000000 ,1616812505910 -1616812505942 ,112.5678921,26.87379042,58.79613113,192.5866719,194.5884524,12.70405,0.115486412,1620000000000 ,1620000000000 ,1620000000000 ,1616812505920 -1616812505954 ,112.5678918,26.87378931,58.79709625,192.579951,194.5801243,12.706141,0.115503329,1620000000000 ,1620000000000 ,1620000000000 ,1616812505930 -1616812505963 ,112.5678915,26.87378819,58.79798508,192.571263,194.5695917,12.70736,0.115515082,1620000000000 ,1620000000000 ,1620000000000 ,1616812505940 -1616812505973 ,112.5678912,26.87378707,58.79879761,192.561974,194.5677832,12.707529,0.115516897,1620000000000 ,1620000000000 ,1620000000000 ,1616812505950 -1616812505983 ,112.5678909,26.87378595,58.79954147,192.5558541,194.5586798,12.707416,0.115516051,1620000000000 ,1620000000000 ,1620000000000 ,1616812505960 -1616812505993 ,112.5678906,26.87378483,58.80022812,192.5487507,194.5405459,12.706692,0.115505082,1620000000000 ,1620000000000 ,1620000000000 ,1616812505970 -1616812506003 ,112.5678903,26.87378372,58.80086136,192.538806,194.5242205,12.706107,0.115498447,1620000000000 ,1620000000000 ,1620000000000 ,1616812505980 -1616812506012 ,112.56789,26.8737826,58.80141449,192.5321943,194.5162771,12.706942,0.115497863,1620000000000 ,1620000000000 ,1620000000000 ,1616812505990 -1616812506022 ,112.5678897,26.87378148,58.80183792,192.5251729,194.5146725,12.708662,0.11550894,1620000000000 ,1620000000000 ,1620000000000 ,1616812506000 -1616812506032 ,112.5678895,26.87378036,58.80211258,192.5165669,194.5073739,12.711098,0.115521583,1620000000000 ,1620000000000 ,1620000000000 ,1616812506020 -1616812506042 ,112.5678892,26.87377924,58.80229568,192.5087804,194.4981268,12.711568,0.115528655,1620000000000 ,1620000000000 ,1620000000000 ,1616812506030 -1616812506054 ,112.5678889,26.87377813,58.8024559,192.4990543,194.4807274,12.710692,0.115519928,1620000000000 ,1620000000000 ,1620000000000 ,1616812506040 -1616812506063 ,112.5678886,26.87377701,58.80260849,192.4908853,194.4754339,12.709556,0.115509353,1620000000000 ,1620000000000 ,1620000000000 ,1616812506050 -1616812506073 ,112.5678883,26.87377589,58.80273056,192.4826618,194.4739486,12.7084675,0.115498687,1620000000000 ,1620000000000 ,1620000000000 ,1616812506060 -1616812506085 ,112.567888,26.87377477,58.80282211,192.4740831,194.4693966,12.708483,0.115491978,1620000000000 ,1620000000000 ,1620000000000 ,1616812506070 -1616812506094 ,112.5678877,26.87377365,58.80290604,192.4651492,194.4630921,12.708939,0.115495118,1620000000000 ,1620000000000 ,1620000000000 ,1616812506080 -1616812506104 ,112.5678874,26.87377253,58.8029747,192.4552318,194.4552602,12.709474,0.115495183,1620000000000 ,1620000000000 ,1620000000000 ,1616812506090 -1616812506115 ,112.5678869,26.8737703,58.80306625,192.4405332,194.4400399,12.709705,0.230992997,1620000000000 ,1620000000000 ,1620000000000 ,1616812506100 -1616812506124 ,112.5678866,26.87376918,58.80314255,192.4325009,194.4276622,12.7099085,0.115496672,1620000000000 ,1620000000000 ,1620000000000 ,1616812506110 -1616812506133 ,112.5678863,26.87376806,58.8032341,192.4244413,194.4088821,12.710389,0.115498148,1620000000000 ,1620000000000 ,1620000000000 ,1616812506120 -1616812506144 ,112.567886,26.87376694,58.80332947,192.4147697,194.3982381,12.711537,0.115503463,1620000000000 ,1620000000000 ,1620000000000 ,1616812506130 -1616812506154 ,112.5678857,26.87376582,58.80341339,192.4084859,194.3904324,12.711381,0.115501486,1620000000000 ,1620000000000 ,1620000000000 ,1616812506140 -1616812506165 ,112.5678854,26.8737647,58.80347443,192.4005902,194.3774699,12.71223,0.11550509,1620000000000 ,1620000000000 ,1620000000000 ,1616812506150 -1616812506175 ,112.5678851,26.87376358,58.80353928,192.3921755,194.367163,12.714352,0.11551901,1620000000000 ,1620000000000 ,1620000000000 ,1616812506160 -1616812506194 ,112.5678848,26.87376246,58.80360031,192.3833508,194.3487991,12.716549,0.115532751,1620000000000 ,1620000000000 ,1620000000000 ,1616812506170 -1616812506196 ,112.5678846,26.87376134,58.80367661,192.3755098,194.3379708,12.718513,0.115551119,1620000000000 ,1620000000000 ,1620000000000 ,1616812506180 -1616812506207 ,112.5678846,26.87376134,58.80367661,192.3755098,-400,12.718513,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812506190 -1616812506215 ,112.567884,26.8737591,58.80440903,192.3703188,194.4194138,12.755261,0.231699191,1620000000000 ,1620000000000 ,1620000000000 ,1616812506200 -1616812506224 ,112.5678837,26.87375797,58.80604553,192.3642536,194.7824136,12.757996,0.116959198,1620000000000 ,1620000000000 ,1620000000000 ,1616812506210 -1616812506234 ,112.5678834,26.87375684,58.807724,192.3571776,194.7684777,12.759701,0.116977719,1620000000000 ,1620000000000 ,1620000000000 ,1616812506220 -1616812506243 ,112.5678831,26.87375571,58.80944824,192.3494458,194.751598,12.761527,0.116992897,1620000000000 ,1620000000000 ,1620000000000 ,1616812506230 -1616812506254 ,112.5678828,26.87375458,58.81121826,192.3414135,194.7477991,12.76485,0.117018261,1620000000000 ,1620000000000 ,1620000000000 ,1616812506240 -1616812506273 ,112.5678825,26.87375344,58.81305313,192.3337637,194.7447215,12.7669115,0.117038068,1620000000000 ,1620000000000 ,1620000000000 ,1616812506250 -1616812506275 ,112.5678822,26.87375231,58.814991,192.3244746,194.7335164,12.768084,0.117053521,1620000000000 ,1620000000000 ,1620000000000 ,1616812506260 -1616812506287 ,112.5678819,26.87375118,58.81702805,192.3185187,194.7183517,12.769525,0.117066138,1620000000000 ,1620000000000 ,1620000000000 ,1616812506270 -1616812506296 ,112.5678816,26.87375005,58.8191185,192.3104044,194.708963,12.7724695,0.117088688,1620000000000 ,1620000000000 ,1620000000000 ,1616812506280 -1616812506307 ,112.5678813,26.87374891,58.82125473,192.3021809,194.6971273,12.774509,0.117107654,1620000000000 ,1620000000000 ,1620000000000 ,1616812506290 -1616812506315 ,112.567881,26.87374778,58.82343674,192.2957605,194.6822491,12.775873,0.117121275,1620000000000 ,1620000000000 ,1620000000000 ,1616812506300 -1616812506327 ,112.5678807,26.87374665,58.82571411,192.2884932,194.6776209,12.777352,0.117136184,1620000000000 ,1620000000000 ,1620000000000 ,1616812506310 -1616812506338 ,112.5678804,26.87374552,58.82808304,192.282264,194.669217,12.778554,0.117147338,1620000000000 ,1620000000000 ,1620000000000 ,1616812506320 -1616812506353 ,112.5678801,26.87374438,58.83053207,192.2760349,194.661473,12.781322,0.117168718,1620000000000 ,1620000000000 ,1620000000000 ,1616812506330 -1616812506356 ,112.5678798,26.87374325,58.83305359,192.2677021,194.6523745,12.783153,0.117187317,1620000000000 ,1620000000000 ,1620000000000 ,1616812506340 -1616812506367 ,112.5678795,26.87374211,58.83562088,192.2603801,194.6425153,12.784887,0.117204614,1620000000000 ,1620000000000 ,1620000000000 ,1616812506350 -1616812506376 ,112.5678792,26.87374098,58.83824158,192.2508179,194.6312477,12.786899,0.117221841,1620000000000 ,1620000000000 ,1620000000000 ,1616812506360 -1616812506385 ,112.5678789,26.87373985,58.84092331,192.2417474,194.6256281,12.789542,0.117246515,1620000000000 ,1620000000000 ,1620000000000 ,1616812506370 -1616812506396 ,112.5678786,26.87373871,58.84364319,192.2338517,194.6159158,12.791236,0.117261651,1620000000000 ,1620000000000 ,1620000000000 ,1616812506380 -1616812506405 ,112.5678783,26.87373758,58.84635925,192.2263385,194.6065074,12.793178,0.117281134,1620000000000 ,1620000000000 ,1620000000000 ,1616812506390 -1616812506416 ,112.567878,26.87373644,58.84907913,192.218552,194.6023971,12.796409,0.11730756,1620000000000 ,1620000000000 ,1620000000000 ,1616812506400 -1616812506427 ,112.5678777,26.8737353,58.85180283,192.2101919,194.5875505,12.799282,0.117332279,1620000000000 ,1620000000000 ,1620000000000 ,1616812506410 -1616812506436 ,112.5678775,26.87373417,58.85453796,192.203471,194.5854532,12.802681,0.117361831,1620000000000 ,1620000000000 ,1620000000000 ,1616812506420 -1616812506446 ,112.5678772,26.87373303,58.85727692,192.1937448,194.5844892,12.805109,0.117389257,1620000000000 ,1620000000000 ,1620000000000 ,1616812506430 -1616812506456 ,112.5678769,26.8737319,58.86001587,192.1864502,194.5794445,12.807308,0.117410895,1620000000000 ,1620000000000 ,1620000000000 ,1616812506440 -1616812506467 ,112.5678766,26.87373076,58.8621254,192.1768059,194.3997769,12.8103075,0.116916249,1620000000000 ,1620000000000 ,1620000000000 ,1616812506450 -1616812506478 ,112.5678763,26.87372964,58.86357498,192.1679267,194.2169453,12.8137455,0.116430306,1620000000000 ,1620000000000 ,1620000000000 ,1616812506460 -1616812506486 ,112.567876,26.87372851,58.86497116,192.159348,194.2189096,12.817994,0.116469019,1620000000000 ,1620000000000 ,1620000000000 ,1616812506470 -1616812506497 ,112.5678757,26.87372738,58.86634064,192.1491573,194.2207386,12.822561,0.116512062,1620000000000 ,1620000000000 ,1620000000000 ,1616812506480 -1616812506507 ,112.5678754,26.87372625,58.86774063,192.1376826,194.2193347,12.824684,0.11654209,1620000000000 ,1620000000000 ,1620000000000 ,1616812506490 -1616812506517 ,112.5678751,26.87372512,58.86920166,192.1284755,194.2190267,12.825412,0.11655235,1620000000000 ,1620000000000 ,1620000000000 ,1616812506500 -1616812506527 ,112.5678749,26.87372399,58.87071228,192.1198968,194.2219723,12.828256,0.116579332,1620000000000 ,1620000000000 ,1620000000000 ,1616812506510 -1616812506546 ,112.5678746,26.87372286,58.87226105,192.1093783,194.2139446,12.830085,0.116602013,1620000000000 ,1620000000000 ,1620000000000 ,1616812506520 -1616812506551 ,112.5678743,26.87372173,58.8738327,192.0972752,194.2029574,12.831547,0.11661691,1620000000000 ,1620000000000 ,1620000000000 ,1616812506530 -1616812506558 ,112.567874,26.8737206,58.87539291,192.0871392,194.1945427,12.834221,0.116637743,1620000000000 ,1620000000000 ,1620000000000 ,1616812506540 -1616812506568 ,112.5678737,26.87371946,58.87691498,192.0770852,194.1954969,12.838255,0.116675362,1620000000000 ,1620000000000 ,1620000000000 ,1616812506550 -1616812506577 ,112.5678734,26.87371833,58.8783989,192.065064,194.1862411,12.842822,0.116719515,1620000000000 ,1620000000000 ,1620000000000 ,1616812506560 -1616812506587 ,112.5678731,26.8737172,58.87983704,192.0534254,194.1695644,12.846983,0.11675631,1620000000000 ,1620000000000 ,1620000000000 ,1616812506570 -1616812506597 ,112.5678728,26.87371607,58.88121033,192.0399563,194.1568464,12.849496,0.116782983,1620000000000 ,1620000000000 ,1620000000000 ,1616812506580 -1616812506608 ,112.5678726,26.87371494,58.88249207,192.0285089,194.1419085,12.851306,0.116800906,1620000000000 ,1620000000000 ,1620000000000 ,1616812506590 -1616812506619 ,112.5678723,26.8737138,58.88366699,192.017963,194.1328728,12.853689,0.116818082,1620000000000 ,1620000000000 ,1620000000000 ,1616812506600 -1616812506629 ,112.567872,26.87371267,58.88472748,192.007226,194.1133457,12.85629,0.116834954,1620000000000 ,1620000000000 ,1620000000000 ,1616812506610 -1616812506641 ,112.5678717,26.87371154,58.88564682,191.9968441,194.0960359,12.859749,0.116859709,1620000000000 ,1620000000000 ,1620000000000 ,1616812506620 -1616812506648 ,112.5678714,26.8737104,58.8864212,191.9850689,194.0825657,12.864918,0.116897212,1620000000000 ,1620000000000 ,1620000000000 ,1616812506630 -1616812506658 ,112.5678711,26.87370927,58.88701248,191.9735395,194.0651111,12.871127,0.116944876,1620000000000 ,1620000000000 ,1620000000000 ,1616812506640 -1616812506675 ,112.5678709,26.87370813,58.88744354,191.9633489,194.0519116,12.876924,0.116991069,1620000000000 ,1620000000000 ,1620000000000 ,1616812506650 -1616812506679 ,112.5678706,26.873707,58.88772964,191.9509999,194.0408665,12.881837,0.117033262,1620000000000 ,1620000000000 ,1620000000000 ,1616812506660 -1616812506690 ,112.5678703,26.87370586,58.88788605,191.9381591,194.0246292,12.885683,0.117064943,1620000000000 ,1620000000000 ,1620000000000 ,1616812506670 -1616812506701 ,112.56787,26.87370473,58.88789749,191.9273128,194.0097058,12.888912,0.117085772,1620000000000 ,1620000000000 ,1620000000000 ,1616812506680 -1616812506710 ,112.5678697,26.87370359,58.88780594,191.9153463,194.0029201,12.892276,0.117115246,1620000000000 ,1620000000000 ,1620000000000 ,1616812506690 -1616812506722 ,112.5678694,26.87370245,58.88765335,191.9029153,193.9880163,12.8958645,0.117138697,1620000000000 ,1620000000000 ,1620000000000 ,1616812506700 -1616812506729 ,112.5678692,26.87370132,58.88744736,191.8912767,193.9731008,12.90134,0.11718081,1620000000000 ,1620000000000 ,1620000000000 ,1616812506710 -1616812506741 ,112.5678689,26.87370018,58.88718796,191.8784086,193.9606722,12.906732,0.117223858,1620000000000 ,1620000000000 ,1620000000000 ,1616812506720 -1616812506749 ,112.5678686,26.87369904,58.88687515,191.8663055,193.9541329,12.91218,0.117272073,1620000000000 ,1620000000000 ,1620000000000 ,1616812506730 -1616812506759 ,112.5678683,26.8736979,58.88652039,191.8546396,193.942798,12.917239,0.117314243,1620000000000 ,1620000000000 ,1620000000000 ,1616812506740 -1616812506769 ,112.567868,26.87369676,58.88615036,191.8422359,193.9215154,12.921407,0.117352796,1620000000000 ,1620000000000 ,1620000000000 ,1616812506750 -1616812506779 ,112.5678677,26.87369562,58.8858223,191.8279745,193.9024641,12.923367,0.117373491,1620000000000 ,1620000000000 ,1620000000000 ,1616812506760 -1616812506789 ,112.5678675,26.87369448,58.88554382,191.8156255,193.8822296,12.924529,0.117381728,1620000000000 ,1620000000000 ,1620000000000 ,1616812506770 -1616812506802 ,112.5678672,26.87369334,58.8853035,191.8032219,193.8770911,12.927354,0.117406481,1620000000000 ,1620000000000 ,1620000000000 ,1616812506780 -1616812506810 ,112.5678669,26.8736922,58.88508606,191.7915833,193.8552998,12.931341,0.117432682,1620000000000 ,1620000000000 ,1620000000000 ,1616812506790 -1616812506821 ,112.5678666,26.87369106,58.88491821,191.7806276,193.84166,12.935499,0.117471645,1620000000000 ,1620000000000 ,1620000000000 ,1616812506800 -1616812506830 ,112.5678663,26.87368992,58.88483429,191.7687431,193.8230573,12.939125,0.117503558,1620000000000 ,1620000000000 ,1620000000000 ,1616812506810 -1616812506840 ,112.5678661,26.87368878,58.88481903,191.7568313,193.7956739,12.942332,0.117533063,1620000000000 ,1620000000000 ,1620000000000 ,1616812506820 -1616812506850 ,112.5678658,26.87368764,58.88487625,191.746586,193.778946,12.946068,0.117563325,1620000000000 ,1620000000000 ,1620000000000 ,1616812506830 -1616812506863 ,112.5678655,26.8736865,58.88505936,191.7365593,193.7529373,12.9497385,0.117597216,1620000000000 ,1620000000000 ,1620000000000 ,1616812506840 -1616812506870 ,112.5678652,26.87368535,58.8853569,191.7263413,193.7261747,12.95246,0.117627364,1620000000000 ,1620000000000 ,1620000000000 ,1616812506850 -1616812506880 ,112.5678649,26.87368421,58.88572693,191.7137737,193.7136536,12.955491,0.117651453,1620000000000 ,1620000000000 ,1620000000000 ,1616812506860 -1616812506890 ,112.5678647,26.87368307,58.88615799,191.7051131,193.7036008,12.958502,0.117679868,1620000000000 ,1620000000000 ,1620000000000 ,1616812506870 -1616812506902 ,112.5678644,26.87368192,58.88668823,191.6962065,193.6740078,12.960601,0.117700873,1620000000000 ,1620000000000 ,1620000000000 ,1616812506880 -1616812506912 ,112.5678641,26.87368078,58.88736343,191.6851143,193.6514539,12.962491,0.117721053,1620000000000 ,1620000000000 ,1620000000000 ,1616812506890 -1616812506921 ,112.5678638,26.87367964,58.88814926,191.6766995,193.6276442,12.965572,0.117742334,1620000000000 ,1620000000000 ,1620000000000 ,1616812506900 -1616812506930 ,112.5678636,26.87367849,58.88899994,191.6699239,193.6144652,12.968672,0.117773588,1620000000000 ,1620000000000 ,1620000000000 ,1616812506910 -1616812506940 ,112.5678633,26.87367735,58.88989639,191.661072,193.6085537,12.972658,0.117809365,1620000000000 ,1620000000000 ,1620000000000 ,1616812506920 -1616812506953 ,112.567863,26.8736762,58.89083862,191.6520015,193.5938087,12.976089,0.117842451,1620000000000 ,1620000000000 ,1620000000000 ,1616812506930 -1616812506961 ,112.5678627,26.87367506,58.89184189,191.6421387,193.5826742,12.97818,0.117863762,1620000000000 ,1620000000000 ,1620000000000 ,1616812506940 -1616812506972 ,112.5678624,26.87367391,58.89287949,191.63203,193.5661247,12.980781,0.117885416,1620000000000 ,1620000000000 ,1620000000000 ,1616812506950 -1616812506981 ,112.5678622,26.87367276,58.89393234,191.6232054,193.5612041,12.984108,0.11791623,1620000000000 ,1620000000000 ,1620000000000 ,1616812506960 -1616812506994 ,112.5678619,26.87367162,58.8949585,191.6156103,193.5601359,12.988589,0.117951365,1620000000000 ,1620000000000 ,1620000000000 ,1616812506970 -1616812507003 ,112.5678616,26.87367047,58.89596558,191.6055016,193.5530843,12.994444,0.118000026,1620000000000 ,1620000000000 ,1620000000000 ,1616812506980 -1616812507014 ,112.5678613,26.87366932,58.89697647,191.5974966,193.5359666,12.998581,0.11804278,1620000000000 ,1620000000000 ,1620000000000 ,1616812506990 -1616812507021 ,112.5678611,26.87366817,58.89803314,191.5888632,193.527509,13.002017,0.118076092,1620000000000 ,1620000000000 ,1620000000000 ,1616812507000 -1616812507031 ,112.5678608,26.87366703,58.89915848,191.5804485,193.5227874,13.004461,0.118104761,1620000000000 ,1620000000000 ,1620000000000 ,1616812507010 -1616812507041 ,112.5678605,26.87366588,58.90034103,191.5703944,193.5190383,13.006784,0.118123311,1620000000000 ,1620000000000 ,1620000000000 ,1616812507020 -1616812507052 ,112.5678602,26.87366473,58.90153503,191.5615425,193.5035381,13.009042,0.118145071,1620000000000 ,1620000000000 ,1620000000000 ,1616812507030 -1616812507062 ,112.56786,26.87366358,58.90267181,191.5532097,193.4967151,13.014122,0.118184641,1620000000000 ,1620000000000 ,1620000000000 ,1616812507040 -1616812507075 ,112.5678597,26.87366243,58.90373611,191.5452866,193.4960595,13.019912,0.118232961,1620000000000 ,1620000000000 ,1620000000000 ,1616812507050 -1616812507083 ,112.5678594,26.87366128,58.90470886,191.5343583,193.4833205,13.023986,0.118272095,1620000000000 ,1620000000000 ,1620000000000 ,1616812507060 -1616812507093 ,112.5678591,26.87366013,58.90565491,191.5237306,193.4782652,13.0264,0.118296001,1620000000000 ,1620000000000 ,1620000000000 ,1616812507070 -1616812507108 ,112.5678589,26.87365898,58.90660095,191.5137858,193.4699934,13.029243,0.118321314,1620000000000 ,1620000000000 ,1620000000000 ,1616812507080 -1616812507112 ,112.5678586,26.87365783,58.90753937,191.5050432,193.4669074,13.032178,0.118343716,1620000000000 ,1620000000000 ,1620000000000 ,1616812507100 -1616812507123 ,112.5678583,26.87365668,58.90843582,191.4942241,193.4502431,13.037325,0.118383456,1620000000000 ,1620000000000 ,1620000000000 ,1616812507100 -1616812507134 ,112.567858,26.87365552,58.90929794,191.4847165,193.4356164,13.042451,0.118429625,1620000000000 ,1620000000000 ,1620000000000 ,1616812507120 -1616812507150 ,112.5678578,26.87365437,58.91017151,191.4738155,193.4289123,13.046435,0.118468331,1620000000000 ,1620000000000 ,1620000000000 ,1616812507130 -1616812507157 ,112.5678575,26.87365322,58.91104126,191.465592,193.4233109,13.0505295,0.118505858,1620000000000 ,1620000000000 ,1620000000000 ,1616812507140 -1616812507164 ,112.5678572,26.87365207,58.91191483,191.4567674,193.4167132,13.053127,0.118531988,1620000000000 ,1620000000000 ,1620000000000 ,1616812507150 -1616812507174 ,112.5678569,26.87365091,58.91281891,191.4485165,193.4036044,13.054317,0.118545506,1620000000000 ,1620000000000 ,1620000000000 ,1616812507160 -1616812507184 ,112.5678564,26.87364861,58.91477966,191.4348561,193.3859941,13.060691,0.237166992,1620000000000 ,1620000000000 ,1620000000000 ,1616812507170 -1616812507195 ,112.5678561,26.87364745,58.91571045,191.4267146,193.3814594,13.066416,0.118643929,1620000000000 ,1620000000000 ,1620000000000 ,1616812507180 -1616812507204 ,112.5678561,26.87364745,58.91571045,191.4267146,-400,13.066416,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812507180 -1616812507214 ,112.5678556,26.87364514,58.91802597,191.4120979,193.3270959,13.089923,0.237631748,1620000000000 ,1620000000000 ,1620000000000 ,1616812507200 -1616812507225 ,112.5678553,26.87364398,58.92065048,191.4007872,193.1106692,13.0960245,0.119370742,1620000000000 ,1620000000000 ,1620000000000 ,1616812507210 -1616812507235 ,112.567855,26.87364281,58.92316818,191.392509,193.1011041,13.099619,0.119406045,1620000000000 ,1620000000000 ,1620000000000 ,1616812507220 -1616812507246 ,112.5678547,26.87364165,58.92562485,191.3859793,193.0943371,13.102491,0.11943112,1620000000000 ,1620000000000 ,1620000000000 ,1616812507230 -1616812507255 ,112.5678545,26.87364049,58.92808151,191.3774552,193.0830459,13.105147,0.119454969,1620000000000 ,1620000000000 ,1620000000000 ,1616812507240 -1616812507263 ,112.5678542,26.87363932,58.9305687,191.369341,193.0653615,13.108515,0.119479304,1620000000000 ,1620000000000 ,1620000000000 ,1616812507250 -1616812507273 ,112.5678539,26.87363816,58.93301773,191.3646691,193.0463529,13.114466,0.11952812,1620000000000 ,1620000000000 ,1620000000000 ,1616812507260 -1616812507283 ,112.5678537,26.87363699,58.93540192,191.3592596,193.0410455,13.120345,0.119574788,1620000000000 ,1620000000000 ,1620000000000 ,1616812507270 -1616812507294 ,112.5678534,26.87363583,58.93777466,191.353331,193.0343425,13.124134,0.119614794,1620000000000 ,1620000000000 ,1620000000000 ,1616812507280 -1616812507304 ,112.5678531,26.87363466,58.94021988,191.3456812,193.0236953,13.127364,0.11964636,1620000000000 ,1620000000000 ,1620000000000 ,1616812507290 -1616812507316 ,112.5678529,26.8736335,58.94279099,191.3393155,193.0071938,13.127922,0.119657253,1620000000000 ,1620000000000 ,1620000000000 ,1616812507300 -1616812507325 ,112.5678526,26.87363233,58.94543839,191.3357638,192.9949609,13.130725,0.119676538,1620000000000 ,1620000000000 ,1620000000000 ,1616812507310 -1616812507335 ,112.5678523,26.87363116,58.94808578,191.3327858,192.9864448,13.135082,0.119712279,1620000000000 ,1620000000000 ,1620000000000 ,1616812507320 -1616812507347 ,112.567852,26.87363,58.95066071,191.3297805,192.9862444,13.141491,0.11976277,1620000000000 ,1620000000000 ,1620000000000 ,1616812507330 -1616812507360 ,112.5678518,26.87362883,58.95317078,191.325737,192.9771376,13.14751,0.119815324,1620000000000 ,1620000000000 ,1620000000000 ,1616812507340 -1616812507365 ,112.5678515,26.87362766,58.95563889,191.3226498,192.970099,13.150837,0.119847958,1620000000000 ,1620000000000 ,1620000000000 ,1616812507350 -1616812507377 ,112.5678512,26.87362649,58.95810699,191.3191254,192.9703123,13.155776,0.119892798,1620000000000 ,1620000000000 ,1620000000000 ,1616812507360 -1616812507384 ,112.567851,26.87362532,58.96059036,191.3155464,192.963026,13.158503,0.119919996,1620000000000 ,1620000000000 ,1620000000000 ,1616812507370 -1616812507395 ,112.5678507,26.87362416,58.96309662,191.3147814,192.9562094,13.162615,0.119951719,1620000000000 ,1620000000000 ,1620000000000 ,1616812507380 -1616812507404 ,112.5678504,26.87362299,58.96562576,191.3129509,192.9472128,13.166943,0.119989164,1620000000000 ,1620000000000 ,1620000000000 ,1616812507390 -1616812507415 ,112.5678502,26.87362182,58.96818924,191.312022,192.9444255,13.172199,0.120039167,1620000000000 ,1620000000000 ,1620000000000 ,1616812507400 -1616812507427 ,112.5678499,26.87362065,58.97082138,191.3089894,192.9343018,13.1754,0.120073065,1620000000000 ,1620000000000 ,1620000000000 ,1616812507410 -1616812507435 ,112.5678496,26.87361948,58.97354889,191.3060934,192.9270002,13.176906,0.120089884,1620000000000 ,1620000000000 ,1620000000000 ,1616812507420 -1616812507445 ,112.5678494,26.87361831,58.97638702,191.3050006,192.920211,13.179652,0.120111664,1620000000000 ,1620000000000 ,1620000000000 ,1616812507430 -1616812507458 ,112.5678491,26.87361713,58.97929382,191.3051372,192.9118032,13.184325,0.120153657,1620000000000 ,1620000000000 ,1620000000000 ,1616812507440 -1616812507467 ,112.5678488,26.87361596,58.98143005,191.3026783,192.9996263,13.1911335,0.119976015,1620000000000 ,1620000000000 ,1620000000000 ,1616812507450 -1616812507476 ,112.5678485,26.8736148,58.9827652,191.3017221,193.0858795,13.196223,0.119796331,1620000000000 ,1620000000000 ,1620000000000 ,1616812507460 -1616812507487 ,112.5678483,26.87361363,58.98414612,191.2997277,193.0881094,13.199349,0.119832549,1620000000000 ,1620000000000 ,1620000000000 ,1616812507470 -1616812507498 ,112.567848,26.87361246,58.98559952,191.2987168,193.0862413,13.200563,0.119849401,1620000000000 ,1620000000000 ,1620000000000 ,1616812507480 -1616812507520 ,112.5678477,26.8736113,58.98711395,191.2960121,193.0847018,13.204594,0.119879218,1620000000000 ,1620000000000 ,1620000000000 ,1616812507490 -1616812507525 ,112.5678475,26.87361013,58.98861313,191.2960667,193.0814561,13.207912,0.119910861,1620000000000 ,1620000000000 ,1620000000000 ,1616812507500 -1616812507532 ,112.5678472,26.87360896,58.99006271,191.2943455,193.084494,13.213302,0.119956058,1620000000000 ,1620000000000 ,1620000000000 ,1616812507510 -1616812507540 ,112.5678469,26.87360779,58.9914856,191.2933073,193.0842085,13.218805,0.120005415,1620000000000 ,1620000000000 ,1620000000000 ,1616812507520 -1616812507547 ,112.5678466,26.87360662,58.99287033,191.2914222,193.0895717,13.224494,0.120055065,1620000000000 ,1620000000000 ,1620000000000 ,1616812507530 -1616812507556 ,112.5678464,26.87360545,58.99421692,191.2898922,193.0918461,13.229493,0.120106232,1620000000000 ,1620000000000 ,1620000000000 ,1616812507540 -1616812507567 ,112.5678461,26.87360428,58.99554443,191.2864771,193.0910544,13.233083,0.120138986,1620000000000 ,1620000000000 ,1620000000000 ,1616812507550 -1616812507577 ,112.5678458,26.87360311,58.99689865,191.2826249,193.0919308,13.238118,0.120180728,1620000000000 ,1620000000000 ,1620000000000 ,1616812507560 -1616812507588 ,112.5678456,26.87360194,58.99828339,191.2803299,193.093247,13.241834,0.120221476,1620000000000 ,1620000000000 ,1620000000000 ,1616812507570 -1616812507602 ,112.5678453,26.87360077,58.99967194,191.2780896,193.0865415,13.245474,0.120257349,1620000000000 ,1620000000000 ,1620000000000 ,1616812507580 -1616812507608 ,112.567845,26.8735996,59.00106812,191.2760406,193.0894928,13.248875,0.12028774,1620000000000 ,1620000000000 ,1620000000000 ,1616812507590 -1616812507617 ,112.5678447,26.87359842,59.00247192,191.2741281,193.0939759,13.253915,0.12033175,1620000000000 ,1620000000000 ,1620000000000 ,1616812507600 -1616812507628 ,112.5678445,26.87359725,59.00382233,191.2713141,193.089711,13.25943,0.12037893,1620000000000 ,1620000000000 ,1620000000000 ,1616812507610 -1616812507640 ,112.5678442,26.87359608,59.00511169,191.268664,193.0910007,13.264298,0.120425597,1620000000000 ,1620000000000 ,1620000000000 ,1616812507620 -1616812507646 ,112.5678439,26.87359491,59.00636673,191.2666696,193.0904022,13.269615,0.120470962,1620000000000 ,1620000000000 ,1620000000000 ,1616812507630 -1616812507657 ,112.5678437,26.87359373,59.00762939,191.2623529,193.0930611,13.2732,0.120509644,1620000000000 ,1620000000000 ,1620000000000 ,1616812507640 -1616812507668 ,112.5678434,26.87359256,59.00888824,191.2599213,193.0900715,13.278033,0.120548055,1620000000000 ,1620000000000 ,1620000000000 ,1616812507650 -1616812507677 ,112.5678431,26.87359138,59.01009369,191.2594842,193.0821634,13.281244,0.120581532,1620000000000 ,1620000000000 ,1620000000000 ,1616812507660 -1616812507692 ,112.5678428,26.87359021,59.01121521,191.2569161,193.0831338,13.284979,0.120612596,1620000000000 ,1620000000000 ,1620000000000 ,1616812507670 -1616812507699 ,112.5678426,26.87358903,59.01225281,191.2534463,193.0821715,13.2895775,0.120649359,1620000000000 ,1620000000000 ,1620000000000 ,1616812507680 -1616812507709 ,112.5678423,26.87358786,59.013237,191.2510421,193.0721943,13.294181,0.120687085,1620000000000 ,1620000000000 ,1620000000000 ,1616812507690 -1616812507719 ,112.567842,26.87358668,59.01421356,191.247627,193.0695773,13.298204,0.120725862,1620000000000 ,1620000000000 ,1620000000000 ,1616812507700 -1616812507729 ,112.5678417,26.87358551,59.01520538,191.2460151,193.0637054,13.303522,0.120770758,1620000000000 ,1620000000000 ,1620000000000 ,1616812507710 -1616812507739 ,112.5678415,26.87358433,59.01619339,191.2435016,193.0626224,13.307783,0.120812619,1620000000000 ,1620000000000 ,1620000000000 ,1616812507720 -1616812507750 ,112.5678412,26.87358315,59.01716614,191.2412066,193.0632121,13.312576,0.12085229,1620000000000 ,1620000000000 ,1620000000000 ,1616812507730 -1616812507760 ,112.5678409,26.87358197,59.018116,191.2387477,193.0564694,13.316216,0.120885705,1620000000000 ,1620000000000 ,1620000000000 ,1616812507740 -1616812507771 ,112.5678406,26.8735808,59.01908493,191.2370539,193.049888,13.317566,0.120904591,1620000000000 ,1620000000000 ,1620000000000 ,1616812507750 -1616812507782 ,112.5678404,26.87357962,59.02009583,191.2356332,193.0440744,13.32004,0.12092453,1620000000000 ,1620000000000 ,1620000000000 ,1616812507760 -1616812507796 ,112.5678401,26.87357844,59.02113342,191.2347043,193.0446467,13.324872,0.120965504,1620000000000 ,1620000000000 ,1620000000000 ,1616812507770 -1616812507800 ,112.5678398,26.87357726,59.02213287,191.2322181,193.0349629,13.330545,0.121009255,1620000000000 ,1620000000000 ,1620000000000 ,1616812507780 -1616812507810 ,112.5678396,26.87357608,59.02307129,191.2299505,193.034376,13.335739,0.121054406,1620000000000 ,1620000000000 ,1620000000000 ,1616812507790 -1616812507821 ,112.5678393,26.8735749,59.02396011,191.227273,193.0302763,13.340516,0.121098352,1620000000000 ,1620000000000 ,1620000000000 ,1616812507800 -1616812507830 ,112.567839,26.87357372,59.02482224,191.2230383,193.0223955,13.345009,0.121136856,1620000000000 ,1620000000000 ,1620000000000 ,1616812507810 -1616812507842 ,112.5678387,26.87357254,59.02568054,191.2214537,193.0266204,13.348543,0.121170876,1620000000000 ,1620000000000 ,1620000000000 ,1616812507820 -1616812507851 ,112.5678385,26.87357136,59.02654266,191.2198964,193.0237951,13.352505,0.121201607,1620000000000 ,1620000000000 ,1620000000000 ,1616812507830 -1616812507860 ,112.5678382,26.87357018,59.02740479,191.2177108,193.0179412,13.356852,0.121240241,1620000000000 ,1620000000000 ,1620000000000 ,1616812507840 -1616812507873 ,112.5678379,26.873569,59.0282402,191.216372,193.0150648,13.362365,0.121285068,1620000000000 ,1620000000000 ,1620000000000 ,1616812507850 -1616812507881 ,112.5678376,26.87356781,59.02905273,191.2146782,193.0092061,13.366124,0.121324359,1620000000000 ,1620000000000 ,1620000000000 ,1616812507860 -1616812507893 ,112.5678374,26.87356663,59.02985382,191.2126564,193.0051791,13.370898,0.121360307,1620000000000 ,1620000000000 ,1620000000000 ,1616812507870 -1616812507902 ,112.5678371,26.87356545,59.03068924,191.2102522,193.0077239,13.375689,0.121403463,1620000000000 ,1620000000000 ,1620000000000 ,1616812507880 -1616812507911 ,112.5678368,26.87356427,59.03155899,191.2085583,193.0022131,13.379979,0.121446495,1620000000000 ,1620000000000 ,1620000000000 ,1616812507890 -1616812507922 ,112.5678366,26.87356308,59.03246689,191.2050613,193.002992,13.383828,0.121481713,1620000000000 ,1620000000000 ,1620000000000 ,1616812507900 -1616812507931 ,112.5678363,26.8735619,59.03341675,191.2025477,193.0025588,13.388062,0.121518407,1620000000000 ,1620000000000 ,1620000000000 ,1616812507910 -1616812507941 ,112.567836,26.87356071,59.03442383,191.2021926,192.9992317,13.392548,0.121557553,1620000000000 ,1620000000000 ,1620000000000 ,1616812507920 -1616812507953 ,112.5678357,26.87355953,59.03549194,191.2013183,192.9936394,13.395723,0.121590014,1620000000000 ,1620000000000 ,1620000000000 ,1616812507930 -1616812507962 ,112.5678355,26.87355834,59.03664017,191.1993785,192.9930444,13.398869,0.121618817,1620000000000 ,1620000000000 ,1620000000000 ,1616812507940 -1616812507973 ,112.5678352,26.87355716,59.03786087,191.1972475,192.9935419,13.403253,0.12165756,1620000000000 ,1620000000000 ,1620000000000 ,1616812507950 -1616812507983 ,112.5678349,26.87355597,59.03912354,191.1927396,192.9894634,13.4086895,0.121705471,1620000000000 ,1620000000000 ,1620000000000 ,1616812507960 -1616812507999 ,112.5678346,26.87355479,59.04043579,191.1901714,192.9975239,13.414316,0.121760138,1620000000000 ,1620000000000 ,1620000000000 ,1616812507970 -1616812508001 ,112.5678344,26.8735536,59.0418129,191.1888327,192.9924526,13.417962,0.121798585,1620000000000 ,1620000000000 ,1620000000000 ,1616812507980 -1616812508013 ,112.5678341,26.87355241,59.04328537,191.1878765,192.9940155,13.420622,0.121831494,1620000000000 ,1620000000000 ,1620000000000 ,1616812507990 -1616812508022 ,112.5678338,26.87355122,59.04484558,191.1863739,192.9887092,13.422925,0.121853507,1620000000000 ,1620000000000 ,1620000000000 ,1616812508000 -1616812508033 ,112.5678335,26.87355004,59.04647827,191.1856908,192.9893609,13.425346,0.121877037,1620000000000 ,1620000000000 ,1620000000000 ,1616812508010 -1616812508044 ,112.5678333,26.87354885,59.04815292,191.1849259,192.9905246,13.428509,0.121907259,1620000000000 ,1620000000000 ,1620000000000 ,1616812508020 -1616812508053 ,112.567833,26.87354766,59.04983521,191.1817566,192.9863847,13.43435,0.121955484,1620000000000 ,1620000000000 ,1620000000000 ,1616812508040 -1616812508064 ,112.5678327,26.87354647,59.05149841,191.1806092,192.9834878,13.439051,0.122002385,1620000000000 ,1620000000000 ,1620000000000 ,1616812508050 -1616812508073 ,112.5678322,26.87354409,59.05470276,191.1748445,192.9865794,13.450256,0.244167955,1620000000000 ,1620000000000 ,1620000000000 ,1616812508060 -1616812508083 ,112.5678319,26.8735429,59.05628967,191.1709923,192.9882999,13.454072,0.122145719,1620000000000 ,1620000000000 ,1620000000000 ,1616812508070 -1616812508093 ,112.5678316,26.87354171,59.05793381,191.1662658,192.9879886,13.458602,0.122187743,1620000000000 ,1620000000000 ,1620000000000 ,1616812508080 -1616812508105 ,112.5678316,26.87354171,59.05793381,191.1662658,-400,13.458602,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812508090 -1616812508113 ,112.5678311,26.87353933,59.0612793,191.1594356,192.9824994,13.4656725,0.244482767,1620000000000 ,1620000000000 ,1620000000000 ,1616812508100 -1616812508123 ,112.5678308,26.87353814,59.06293869,191.1539168,192.9765751,13.470571,0.122303181,1620000000000 ,1620000000000 ,1620000000000 ,1616812508110 -1616812508135 ,112.5678305,26.87353695,59.06455994,191.1500646,192.9788,13.476291,0.122357764,1620000000000 ,1620000000000 ,1620000000000 ,1616812508120 -1616812508145 ,112.5678302,26.87353575,59.06613159,191.1465129,192.9806397,13.480659,0.122398198,1620000000000 ,1620000000000 ,1620000000000 ,1616812508130 -1616812508155 ,112.56783,26.87353456,59.0676651,191.1416225,192.9826893,13.484436,0.122439369,1620000000000 ,1620000000000 ,1620000000000 ,1616812508140 -1616812508164 ,112.5678297,26.87353337,59.06919098,191.13818,192.9758874,13.486946,0.122467899,1620000000000 ,1620000000000 ,1620000000000 ,1616812508150 -1616812508175 ,112.5678294,26.87353217,59.07068634,191.1312132,192.9668505,13.492505,0.122511185,1620000000000 ,1620000000000 ,1620000000000 ,1616812508160 -1616812508183 ,112.5678291,26.87353098,59.07208252,191.1254486,192.9703924,13.497548,0.122554623,1620000000000 ,1620000000000 ,1620000000000 ,1616812508170 -1616812508194 ,112.5678289,26.87352978,59.07331467,191.1179627,192.9713934,13.503544,0.122606289,1620000000000 ,1620000000000 ,1620000000000 ,1616812508180 -1616812508204 ,112.5678289,26.87352978,59.07331467,191.1179627,-400,13.503544,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812508190 -1616812508222 ,112.5678283,26.8735274,59.07466507,191.1123073,192.9780973,13.498074,0.245089926,1620000000000 ,1620000000000 ,1620000000000 ,1616812508200 -1616812508224 ,112.567828,26.87352621,59.07387924,191.1047668,193.0141717,13.503528,0.122095173,1620000000000 ,1620000000000 ,1620000000000 ,1616812508210 -1616812508234 ,112.5678278,26.87352502,59.07298279,191.0990021,193.0043348,13.509377,0.122142299,1620000000000 ,1620000000000 ,1620000000000 ,1616812508220 -1616812508246 ,112.5678275,26.87352382,59.07194901,191.0899589,192.9969196,13.515107,0.122192334,1620000000000 ,1620000000000 ,1620000000000 ,1616812508230 -1616812508255 ,112.5678272,26.87352263,59.07077026,191.0828282,192.9922041,13.5210905,0.122239327,1620000000000 ,1620000000000 ,1620000000000 ,1616812508240 -1616812508265 ,112.5678269,26.87352144,59.06948471,191.0739763,192.9836683,13.525847,0.122282742,1620000000000 ,1620000000000 ,1620000000000 ,1616812508250 -1616812508275 ,112.5678267,26.87352025,59.06810379,191.0669821,192.966006,13.531719,0.122328241,1620000000000 ,1620000000000 ,1620000000000 ,1616812508260 -1616812508285 ,112.5678264,26.87351906,59.06664276,191.0602612,192.9565715,13.536555,0.122370156,1620000000000 ,1620000000000 ,1620000000000 ,1616812508270 -1616812508294 ,112.5678261,26.87351786,59.06510544,191.0518465,192.9483301,13.542043,0.122413396,1620000000000 ,1620000000000 ,1620000000000 ,1616812508280 -1616812508306 ,112.5678259,26.87351667,59.06350708,191.0456173,192.9361502,13.547508,0.122459442,1620000000000 ,1620000000000 ,1620000000000 ,1616812508290 -1616812508322 ,112.5678256,26.87351548,59.06181335,191.0380221,192.9242455,13.552296,0.122498318,1620000000000 ,1620000000000 ,1620000000000 ,1616812508300 -1616812508332 ,112.5678253,26.87351428,59.06002808,191.0303997,192.9138802,13.558756,0.12254841,1620000000000 ,1620000000000 ,1620000000000 ,1616812508310 -1616812508336 ,112.567825,26.87351309,59.05817032,191.0223127,192.9023142,13.563747,0.122590192,1620000000000 ,1620000000000 ,1620000000000 ,1616812508320 -1616812508346 ,112.5678248,26.87351189,59.05628967,191.0141165,192.8924056,13.569917,0.122641974,1620000000000 ,1620000000000 ,1620000000000 ,1616812508330 -1616812508355 ,112.5678245,26.8735107,59.05438232,191.0074775,192.8798548,13.575636,0.122691359,1620000000000 ,1620000000000 ,1620000000000 ,1616812508340 -1616812508365 ,112.5678242,26.8735095,59.0524559,191.0005927,192.8672272,13.580534,0.122733347,1620000000000 ,1620000000000 ,1620000000000 ,1616812508350 -1616812508376 ,112.5678239,26.8735083,59.05054855,190.9939538,192.8564966,13.582912,0.122759073,1620000000000 ,1620000000000 ,1620000000000 ,1616812508360 -1616812508387 ,112.5678237,26.87350711,59.0486908,190.9889267,192.8400715,13.586759,0.122787279,1620000000000 ,1620000000000 ,1620000000000 ,1616812508370 -1616812508397 ,112.5678234,26.87350591,59.04688644,190.9845827,192.8256859,13.591864,0.122828013,1620000000000 ,1620000000000 ,1620000000000 ,1616812508380 -1616812508408 ,112.5678231,26.87350471,59.04510498,190.9804027,192.8147858,13.596829,0.122874165,1620000000000 ,1620000000000 ,1620000000000 ,1616812508390 -1616812508418 ,112.5678228,26.87350351,59.04335403,190.9742009,192.8057703,13.601581,0.12291644,1620000000000 ,1620000000000 ,1620000000000 ,1616812508400 -1616812508428 ,112.5678226,26.87350231,59.04165268,190.968081,192.7957363,13.605854,0.122951898,1620000000000 ,1620000000000 ,1620000000000 ,1616812508410 -1616812508439 ,112.5678223,26.87350111,59.04001999,190.9632452,192.785018,13.611257,0.122999473,1620000000000 ,1620000000000 ,1620000000000 ,1616812508420 -1616812508447 ,112.567822,26.87349991,59.03845215,190.9580816,192.7725706,13.616198,0.123044094,1620000000000 ,1620000000000 ,1620000000000 ,1616812508430 -1616812508456 ,112.5678218,26.87349871,59.03696442,190.951388,192.761289,13.6207,0.123086022,1620000000000 ,1620000000000 ,1620000000000 ,1616812508440 -1616812508468 ,112.5678215,26.87349751,59.03623962,190.9444759,192.7220312,13.623915,0.123360768,1620000000000 ,1620000000000 ,1620000000000 ,1616812508450 -1616812508476 ,112.5678212,26.8734963,59.03628922,190.939203,192.6877396,13.6271515,0.123643263,1620000000000 ,1620000000000 ,1620000000000 ,1616812508460 -1616812508488 ,112.5678209,26.8734951,59.03642273,190.9334656,192.6815528,13.630424,0.12367074,1620000000000 ,1620000000000 ,1620000000000 ,1616812508470 -1616812508498 ,112.5678207,26.87349389,59.03665161,190.9277556,192.6789531,13.635726,0.123713934,1620000000000 ,1620000000000 ,1620000000000 ,1616812508480 -1616812508509 ,112.5678204,26.87349268,59.03700638,190.922428,192.6738729,13.639093,0.123752374,1620000000000 ,1620000000000 ,1620000000000 ,1616812508490 -1616812508520 ,112.5678201,26.87349147,59.03751373,190.9162535,192.6646143,13.643754,0.123793458,1620000000000 ,1620000000000 ,1620000000000 ,1616812508500 -1616812508528 ,112.5678199,26.87349027,59.03816223,190.9099151,192.6591973,13.646733,0.123826779,1620000000000 ,1620000000000 ,1620000000000 ,1616812508510 -1616812508537 ,112.5678196,26.87348906,59.03891373,190.9044236,192.6575291,13.649632,0.123852172,1620000000000 ,1620000000000 ,1620000000000 ,1616812508520 -1616812508548 ,112.5678193,26.87348785,59.0397644,190.8967465,192.6581426,13.653026,0.12388427,1620000000000 ,1620000000000 ,1620000000000 ,1616812508530 -1616812508557 ,112.567819,26.87348664,59.04070282,190.891419,192.6499224,13.657141,0.123922057,1620000000000 ,1620000000000 ,1620000000000 ,1616812508540 -1616812508567 ,112.5678188,26.87348543,59.04173279,190.8853264,192.6430429,13.66101,0.123957854,1620000000000 ,1620000000000 ,1620000000000 ,1616812508550 -1616812508577 ,112.5678185,26.87348422,59.04283524,190.8787148,192.6398151,13.665488,0.123999722,1620000000000 ,1620000000000 ,1620000000000 ,1616812508560 -1616812508590 ,112.5678182,26.87348301,59.04399109,190.8702181,192.63568,13.669464,0.124035698,1620000000000 ,1620000000000 ,1620000000000 ,1616812508570 -1616812508602 ,112.567818,26.8734818,59.04521179,190.8621584,192.6333016,13.672836,0.124069592,1620000000000 ,1620000000000 ,1620000000000 ,1616812508580 -1616812508609 ,112.5678177,26.87348059,59.0465126,190.8562025,192.6254709,13.677316,0.124109177,1620000000000 ,1620000000000 ,1620000000000 ,1616812508590 -1616812508618 ,112.5678174,26.87347938,59.04787064,190.8484434,192.616011,13.681684,0.12414973,1620000000000 ,1620000000000 ,1620000000000 ,1616812508600 -1616812508631 ,112.5678171,26.87347816,59.049263,190.8418318,192.6072666,13.686695,0.124193819,1620000000000 ,1620000000000 ,1620000000000 ,1616812508610 -1616812508637 ,112.5678169,26.87347695,59.05067825,190.8357119,192.5988861,13.690623,0.124232679,1620000000000 ,1620000000000 ,1620000000000 ,1616812508620 -1616812508648 ,112.5678166,26.87347574,59.05212784,190.8285266,192.5952734,13.694654,0.124271712,1620000000000 ,1620000000000 ,1620000000000 ,1616812508630 -1616812508658 ,112.5678163,26.87347453,59.05360794,190.8224887,192.5859171,13.697933,0.124301403,1620000000000 ,1620000000000 ,1620000000000 ,1616812508640 -1616812508671 ,112.5678161,26.87347331,59.05511856,190.8188004,192.5876626,13.702734,0.124344123,1620000000000 ,1620000000000 ,1620000000000 ,1616812508650 -1616812508682 ,112.5678158,26.8734721,59.0566597,190.8140466,192.5800856,13.706159,0.124378098,1620000000000 ,1620000000000 ,1620000000000 ,1616812508660 -1616812508690 ,112.5678155,26.87347088,59.05823517,190.8093747,192.5744894,13.710369,0.124417299,1620000000000 ,1620000000000 ,1620000000000 ,1616812508670 -1616812508700 ,112.5678152,26.87346967,59.05982208,190.8045663,192.5656937,13.714424,0.124455492,1620000000000 ,1620000000000 ,1620000000000 ,1616812508680 -1616812508710 ,112.567815,26.87346845,59.06137085,190.800113,192.5633114,13.719328,0.124495085,1620000000000 ,1620000000000 ,1620000000000 ,1616812508690 -1616812508720 ,112.5678147,26.87346724,59.06289291,190.7956051,192.5588638,13.723136,0.124532131,1620000000000 ,1620000000000 ,1620000000000 ,1616812508700 -1616812508729 ,112.5678144,26.87346602,59.06440353,190.7901409,192.5515366,13.727621,0.1245736,1620000000000 ,1620000000000 ,1620000000000 ,1616812508710 -1616812508740 ,112.5678142,26.87346481,59.06590652,190.788611,192.543675,13.733149,0.124621699,1620000000000 ,1620000000000 ,1620000000000 ,1616812508720 -1616812508750 ,112.5678139,26.87346359,59.06738281,190.7860428,192.5341695,13.736796,0.124656703,1620000000000 ,1620000000000 ,1620000000000 ,1616812508730 -1616812508762 ,112.5678136,26.87346237,59.06884766,190.7837479,192.5303719,13.740347,0.1246893,1620000000000 ,1620000000000 ,1620000000000 ,1616812508740 -1616812508776 ,112.5678134,26.87346116,59.07030106,190.781207,192.5275268,13.744284,0.124726828,1620000000000 ,1620000000000 ,1620000000000 ,1616812508750 -1616812508784 ,112.5678131,26.87345994,59.07172394,190.7809885,192.5212794,13.748675,0.124764469,1620000000000 ,1620000000000 ,1620000000000 ,1616812508760 -1616812508793 ,112.5678128,26.87345872,59.07310486,190.7796224,192.5147888,13.75258,0.124798198,1620000000000 ,1620000000000 ,1620000000000 ,1616812508770 -1616812508800 ,112.5678125,26.8734575,59.07444,190.7789941,192.507988,13.757538,0.124839873,1620000000000 ,1620000000000 ,1620000000000 ,1616812508780 -1616812508809 ,112.5678123,26.87345628,59.07570648,190.776863,192.4996276,13.763857,0.124894018,1620000000000 ,1620000000000 ,1620000000000 ,1616812508790 -1616812508820 ,112.567812,26.87345506,59.07687759,190.7770543,192.5001102,13.769254,0.124943348,1620000000000 ,1620000000000 ,1620000000000 ,1616812508800 -1616812508830 ,112.5678117,26.87345384,59.07793427,190.7772728,192.4967707,13.775018,0.124989701,1620000000000 ,1620000000000 ,1620000000000 ,1616812508810 -1616812508841 ,112.5678115,26.87345262,59.07890701,190.7776007,192.4963322,13.778691,0.125026068,1620000000000 ,1620000000000 ,1620000000000 ,1616812508820 -1616812508850 ,112.5678112,26.8734514,59.07981873,190.7773275,192.4881271,13.782668,0.12505913,1620000000000 ,1620000000000 ,1620000000000 ,1616812508830 -1616812508860 ,112.5678109,26.87345018,59.08068085,190.7772182,192.4877492,13.787051,0.125100204,1620000000000 ,1620000000000 ,1620000000000 ,1616812508840 -1616812508871 ,112.5678106,26.87344896,59.08146286,190.7776553,192.4879256,13.792626,0.125139467,1620000000000 ,1620000000000 ,1620000000000 ,1616812508850 -1616812508880 ,112.5678104,26.87344773,59.08216095,190.7780105,192.4910556,13.797646,0.125186231,1620000000000 ,1620000000000 ,1620000000000 ,1616812508860 -1616812508891 ,112.5678101,26.87344651,59.08280182,190.7782018,192.4863483,13.803047,0.125228652,1620000000000 ,1620000000000 ,1620000000000 ,1616812508870 -1616812508902 ,112.5678098,26.87344529,59.08341599,190.7790487,192.4825049,13.809398,0.125286165,1620000000000 ,1620000000000 ,1620000000000 ,1616812508880 -1616812508911 ,112.5678096,26.87344406,59.08398438,190.7780378,192.4820762,13.815241,0.125337687,1620000000000 ,1620000000000 ,1620000000000 ,1616812508890 -1616812508921 ,112.5678093,26.87344284,59.08449173,190.7778739,192.4830476,13.819656,0.125379593,1620000000000 ,1620000000000 ,1620000000000 ,1616812508900 -1616812508932 ,112.567809,26.87344162,59.08496475,190.7773821,192.487381,13.823559,0.125413578,1620000000000 ,1620000000000 ,1620000000000 ,1616812508910 -1616812508946 ,112.5678088,26.87344039,59.08547211,190.7775187,192.4941505,13.82735,0.125447649,1620000000000 ,1620000000000 ,1620000000000 ,1616812508920 -1616812508961 ,112.5678085,26.87343917,59.08602905,190.7776553,192.4836976,13.831743,0.125489249,1620000000000 ,1620000000000 ,1620000000000 ,1616812508930 -1616812508963 ,112.5678082,26.87343794,59.08660507,190.7775734,192.4814153,13.836337,0.125528039,1620000000000 ,1620000000000 ,1620000000000 ,1616812508940 -1616812508981 ,112.5678079,26.87343671,59.08716965,190.7773548,192.4856008,13.841559,0.125574754,1620000000000 ,1620000000000 ,1620000000000 ,1616812508950 -1616812508983 ,112.5678077,26.87343549,59.08773041,190.7757156,192.4858611,13.847425,0.125626109,1620000000000 ,1620000000000 ,1620000000000 ,1616812508960 -1616812508993 ,112.5678074,26.87343426,59.08831024,190.7738031,192.4895404,13.851132,0.125662596,1620000000000 ,1620000000000 ,1620000000000 ,1616812508970 -1616812509002 ,112.5678071,26.87343303,59.08890533,190.7735572,192.486396,13.856733,0.125710353,1620000000000 ,1620000000000 ,1620000000000 ,1616812508980 -1616812509013 ,112.5678068,26.8734318,59.08953094,190.7713169,192.48478,13.8603115,0.125747402,1620000000000 ,1620000000000 ,1620000000000 ,1616812508990 -1616812509022 ,112.5678066,26.87343058,59.09017944,190.7690493,192.490142,13.865777,0.125792597,1620000000000 ,1620000000000 ,1620000000000 ,1616812509000 -1616812509033 ,112.5678063,26.87342935,59.09086227,190.7653337,192.4938767,13.8704405,0.125837597,1620000000000 ,1620000000000 ,1620000000000 ,1616812509020 -1616812509044 ,112.567806,26.87342812,59.09157944,190.7631753,192.4898716,13.874645,0.125876165,1620000000000 ,1620000000000 ,1620000000000 ,1616812509030 -1616812509054 ,112.5678055,26.87342566,59.09313202,190.7577931,192.490164,13.885463,0.251886691,1620000000000 ,1620000000000 ,1620000000000 ,1616812509040 -1616812509064 ,112.5678052,26.87342443,59.09393311,190.7549518,192.4944668,13.890795,0.126024202,1620000000000 ,1620000000000 ,1620000000000 ,1616812509050 -1616812509073 ,112.5678049,26.8734232,59.09474564,190.7491325,192.4934071,13.895125,0.126063343,1620000000000 ,1620000000000 ,1620000000000 ,1616812509060 -1616812509086 ,112.5678047,26.87342197,59.09559631,190.7423023,192.4849087,13.900438,0.126115922,1620000000000 ,1620000000000 ,1620000000000 ,1616812509070 -1616812509095 ,112.5678044,26.87342074,59.09645081,190.7349257,192.4895865,13.905149,0.126152825,1620000000000 ,1620000000000 ,1620000000000 ,1616812509080 -1616812509106 ,112.5678044,26.87342074,59.09645081,190.7349257,-400,13.905149,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812509090 -1616812509120 ,112.5678039,26.87341827,59.09824371,190.7192709,192.4940956,13.91352,0.252452654,1620000000000 ,1620000000000 ,1620000000000 ,1616812509100 -1616812509124 ,112.5678036,26.87341704,59.09928131,190.7097086,192.4781987,13.917846,0.126278622,1620000000000 ,1620000000000 ,1620000000000 ,1616812509110 -1616812509133 ,112.5678033,26.8734158,59.10040665,190.7010479,192.4725302,13.92226,0.126320679,1620000000000 ,1620000000000 ,1620000000000 ,1616812509120 -1616812509144 ,112.567803,26.87341457,59.10157013,190.6914583,192.475077,13.926282,0.126362487,1620000000000 ,1620000000000 ,1620000000000 ,1616812509130 -1616812509154 ,112.5678028,26.87341334,59.10276031,190.6817595,192.4802712,13.931166,0.126408409,1620000000000 ,1620000000000 ,1620000000000 ,1616812509140 -1616812509165 ,112.5678025,26.8734121,59.10403824,190.6688914,192.4849169,13.935987,0.126458151,1620000000000 ,1620000000000 ,1620000000000 ,1616812509150 -1616812509175 ,112.5678022,26.87341087,59.10542297,190.6570615,192.480664,13.940678,0.126505195,1620000000000 ,1620000000000 ,1620000000000 ,1616812509160 -1616812509183 ,112.5678019,26.87340963,59.10685349,190.644494,192.4795825,13.945869,0.126557315,1620000000000 ,1620000000000 ,1620000000000 ,1616812509170 -1616812509195 ,112.5678017,26.8734084,59.108284,190.6318991,192.4761271,13.9496355,0.126594107,1620000000000 ,1620000000000 ,1620000000000 ,1616812509180 -1616812509207 ,112.5678017,26.8734084,59.108284,190.6318991,-400,13.9496355,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812509190 -1616812509220 ,112.5678011,26.87340592,59.11099243,190.6175284,192.5177852,13.955957,0.253294995,1620000000000 ,1620000000000 ,1620000000000 ,1616812509200 -1616812509228 ,112.5678008,26.87340469,59.11198044,190.6070919,192.7137381,13.962818,0.126732374,1620000000000 ,1620000000000 ,1620000000000 ,1616812509210 -1616812509236 ,112.5678006,26.87340345,59.11286163,190.5966826,192.6988456,13.971378,0.126800363,1620000000000 ,1620000000000 ,1620000000000 ,1616812509220 -1616812509245 ,112.5678003,26.87340221,59.11359787,190.5805088,192.6894549,13.979887,0.126879844,1620000000000 ,1620000000000 ,1620000000000 ,1616812509230 -1616812509255 ,112.5678,26.87340097,59.11419678,190.5625044,192.6758311,13.9852085,0.126932948,1620000000000 ,1620000000000 ,1620000000000 ,1616812509240 -1616812509266 ,112.5677997,26.87339973,59.11459732,190.5470682,192.6523252,13.990286,0.12697061,1620000000000 ,1620000000000 ,1620000000000 ,1616812509250 -1616812509275 ,112.5677994,26.8733985,59.11481094,190.5327794,192.6226364,13.98797,0.126961521,1620000000000 ,1620000000000 ,1620000000000 ,1616812509260 -1616812509286 ,112.5677992,26.87339726,59.11489868,190.5209768,192.5720719,13.986623,0.126934082,1620000000000 ,1620000000000 ,1620000000000 ,1616812509270 -1616812509296 ,112.5677989,26.87339602,59.11493683,190.508218,192.5298446,13.989959,0.126945019,1620000000000 ,1620000000000 ,1620000000000 ,1616812509280 -1616812509309 ,112.5677986,26.87339478,59.11491013,190.4965794,192.4933199,13.999295,0.127010134,1620000000000 ,1620000000000 ,1620000000000 ,1616812509290 -1616812509317 ,112.5677983,26.87339354,59.11473846,190.4878367,192.467002,14.012268,0.127115098,1620000000000 ,1620000000000 ,1620000000000 ,1616812509300 -1616812509326 ,112.5677981,26.87339229,59.11444092,190.4786843,192.4642329,14.024408,0.12722364,1620000000000 ,1620000000000 ,1620000000000 ,1616812509310 -1616812509336 ,112.5677978,26.87339105,59.11414337,190.4684937,192.4663526,14.031087,0.12729913,1620000000000 ,1620000000000 ,1620000000000 ,1616812509320 -1616812509345 ,112.5677975,26.87338981,59.11392975,190.4583303,192.4367577,14.032018,0.127321899,1620000000000 ,1620000000000 ,1620000000000 ,1616812509330 -1616812509355 ,112.5677972,26.87338856,59.11372375,190.4489866,192.4229449,14.030825,0.127313624,1620000000000 ,1620000000000 ,1620000000000 ,1616812509340 -1616812509365 ,112.567797,26.87338732,59.11341858,190.4436318,192.4366598,14.031263,0.127308178,1620000000000 ,1620000000000 ,1620000000000 ,1616812509350 -1616812509375 ,112.5677967,26.87338608,59.11301422,190.4353809,192.45945,14.036356,0.127349252,1620000000000 ,1620000000000 ,1620000000000 ,1616812509360 -1616812509388 ,112.5677964,26.87338483,59.11257553,190.4242067,192.4402668,14.041476,0.12738225,1620000000000 ,1620000000000 ,1620000000000 ,1616812509370 -1616812509397 ,112.5677962,26.87338359,59.11212921,190.4146991,192.415122,14.05114,0.127460138,1620000000000 ,1620000000000 ,1620000000000 ,1616812509380 -1616812509408 ,112.5677959,26.87338234,59.11157608,190.4081694,192.39122,14.061644,0.127545405,1620000000000 ,1620000000000 ,1620000000000 ,1616812509390 -1616812509416 ,112.5677956,26.8733811,59.11088562,190.3979241,192.3843127,14.067965,0.127608884,1620000000000 ,1620000000000 ,1620000000000 ,1616812509400 -1616812509427 ,112.5677953,26.87337985,59.11008453,190.3873783,192.3753676,14.068578,0.12761486,1620000000000 ,1620000000000 ,1620000000000 ,1616812509410 -1616812509436 ,112.5677951,26.8733786,59.10913849,190.3789635,192.3577522,14.073549,0.127640865,1620000000000 ,1620000000000 ,1620000000000 ,1616812509420 -1616812509451 ,112.5677948,26.87337736,59.10795975,190.3753026,192.3483927,14.081666,0.127688415,1620000000000 ,1620000000000 ,1620000000000 ,1616812509430 -1616812509457 ,112.5677945,26.87337611,59.10656738,190.3711498,192.3030751,14.094637,0.127801251,1620000000000 ,1620000000000 ,1620000000000 ,1616812509440 -1616812509470 ,112.5677942,26.87337486,59.10530472,190.3650026,192.153827,14.107243,0.127894576,1620000000000 ,1620000000000 ,1620000000000 ,1616812509450 -1616812509477 ,112.567794,26.87337361,59.10453415,190.3589921,192.042227,14.111854,0.127960493,1620000000000 ,1620000000000 ,1620000000000 ,1616812509460 -1616812509487 ,112.5677937,26.87337235,59.10415649,190.3522165,192.0446229,14.10367,0.127921196,1620000000000 ,1620000000000 ,1620000000000 ,1616812509470 -1616812509497 ,112.5677934,26.8733711,59.10422516,190.3441569,192.0548101,14.094326,0.127845447,1620000000000 ,1620000000000 ,1620000000000 ,1616812509480 -1616812509508 ,112.5677932,26.87336985,59.10450363,190.3359333,192.0404328,14.093189,0.127817715,1620000000000 ,1620000000000 ,1620000000000 ,1616812509490 -1616812509518 ,112.5677929,26.8733686,59.10472107,190.3318625,192.0135582,14.102368,0.127861911,1620000000000 ,1620000000000 ,1620000000000 ,1616812509500 -1616812509527 ,112.5677926,26.87336735,59.10466766,190.3348405,191.990418,14.12262,0.128014739,1620000000000 ,1620000000000 ,1620000000000 ,1616812509510 -1616812509538 ,112.5677924,26.8733661,59.10439682,190.3379551,191.9685334,14.136752,0.128157793,1620000000000 ,1620000000000 ,1620000000000 ,1616812509520 -1616812509548 ,112.5677921,26.87336484,59.10422897,190.3345673,191.956383,14.135936,0.12818404,1620000000000 ,1620000000000 ,1620000000000 ,1616812509530 -1616812509559 ,112.5677918,26.87336359,59.10460663,190.3287753,191.9705338,14.12663,0.128136956,1620000000000 ,1620000000000 ,1620000000000 ,1616812509540 -1616812509571 ,112.5677916,26.87336234,59.10548401,190.3237483,192.000925,14.123965,0.1280961,1620000000000 ,1620000000000 ,1620000000000 ,1616812509550 -1616812509577 ,112.5677913,26.87336108,59.10655594,190.3191584,192.006883,14.131048,0.128150384,1620000000000 ,1620000000000 ,1620000000000 ,1616812509560 -1616812509589 ,112.567791,26.87335983,59.10762787,190.3152515,192.0014348,14.142624,0.128244693,1620000000000 ,1620000000000 ,1620000000000 ,1616812509570 -1616812509598 ,112.5677908,26.87335857,59.10866547,190.3113447,192.0011158,14.151423,0.128334807,1620000000000 ,1620000000000 ,1620000000000 ,1616812509580 -1616812509615 ,112.5677905,26.87335732,59.10975266,190.3100333,191.9800303,14.156288,0.128390524,1620000000000 ,1620000000000 ,1620000000000 ,1616812509590 -1616812509618 ,112.5677902,26.87335606,59.11089706,190.3060991,191.9828435,14.157483,0.128407291,1620000000000 ,1620000000000 ,1620000000000 ,1616812509600 -1616812509633 ,112.56779,26.87335481,59.1122818,190.2993782,192.0045254,14.156639,0.128411403,1620000000000 ,1620000000000 ,1620000000000 ,1616812509610 -1616812509641 ,112.5677897,26.87335355,59.11391068,190.2934222,192.0281079,14.158439,0.12843484,1620000000000 ,1620000000000 ,1620000000000 ,1616812509620 -1616812509657 ,112.5677894,26.87335229,59.11569214,190.2900072,192.0301083,14.1639385,0.12847885,1620000000000 ,1620000000000 ,1620000000000 ,1616812509630 -1616812509663 ,112.5677892,26.87335104,59.11747742,190.2906355,192.0003664,14.169426,0.128527689,1620000000000 ,1620000000000 ,1620000000000 ,1616812509640 -1616812509682 ,112.5677889,26.87334978,59.1192131,190.2857998,191.9809506,14.174509,0.128577107,1620000000000 ,1620000000000 ,1620000000000 ,1616812509650 -1616812509684 ,112.5677886,26.87334852,59.12092972,190.2788876,191.9788314,14.181961,0.128636653,1620000000000 ,1620000000000 ,1620000000000 ,1616812509660 -1616812509692 ,112.5677884,26.87334726,59.12258911,190.2699264,191.9981386,14.188785,0.128705522,1620000000000 ,1620000000000 ,1620000000000 ,1616812509670 -1616812509701 ,112.5677881,26.873346,59.12411499,190.2674129,192.0274483,14.191993,0.128740979,1620000000000 ,1620000000000 ,1620000000000 ,1616812509680 -1616812509710 ,112.5677878,26.87334474,59.12557602,190.264954,192.0318471,14.19735,0.128791328,1620000000000 ,1620000000000 ,1620000000000 ,1616812509690 -1616812509720 ,112.5677876,26.87334348,59.12710953,190.2583697,191.9988911,14.203082,0.128838404,1620000000000 ,1620000000000 ,1620000000000 ,1616812509700 -1616812509730 ,112.5677873,26.87334222,59.12874985,190.2521679,191.9714999,14.209851,0.128895751,1620000000000 ,1620000000000 ,1620000000000 ,1616812509710 -1616812509738 ,112.567787,26.87334096,59.13027573,190.2458295,191.9632599,14.215295,0.128951104,1620000000000 ,1620000000000 ,1620000000000 ,1616812509720 -1616812509751 ,112.5677868,26.8733397,59.13160706,190.2409937,191.986641,14.219516,0.128987283,1620000000000 ,1620000000000 ,1620000000000 ,1616812509730 -1616812509760 ,112.5677865,26.87333844,59.1328392,190.2383982,192.0007303,14.22307,0.129019777,1620000000000 ,1620000000000 ,1620000000000 ,1616812509740 -1616812509773 ,112.5677862,26.87333717,59.13411713,190.2339176,191.9782115,14.226613,0.129051174,1620000000000 ,1620000000000 ,1620000000000 ,1616812509750 -1616812509780 ,112.567786,26.87333591,59.13538742,190.2312129,191.9365019,14.234863,0.129115065,1620000000000 ,1620000000000 ,1620000000000 ,1616812509760 -1616812509790 ,112.5677857,26.87333465,59.13653564,190.2263498,191.9279185,14.241898,0.129173591,1620000000000 ,1620000000000 ,1620000000000 ,1616812509770 -1616812509799 ,112.5677854,26.87333338,59.13749695,190.2219511,191.9479446,14.249894,0.129244751,1620000000000 ,1620000000000 ,1620000000000 ,1616812509780 -1616812509810 ,112.5677852,26.87333212,59.13831329,190.2166509,191.9687947,14.256653,0.129307074,1620000000000 ,1620000000000 ,1620000000000 ,1616812509790 -1616812509820 ,112.5677849,26.87333085,59.13909912,190.2110775,191.9599256,14.260025,0.129345005,1620000000000 ,1620000000000 ,1620000000000 ,1616812509800 -1616812509832 ,112.5677846,26.87332959,59.13993073,190.2068154,191.9417038,14.262991,0.129372258,1620000000000 ,1620000000000 ,1620000000000 ,1616812509810 -1616812509841 ,112.5677844,26.87332832,59.14074707,190.2042746,191.9370325,14.267411,0.129406232,1620000000000 ,1620000000000 ,1620000000000 ,1616812509820 -1616812509854 ,112.5677841,26.87332705,59.14146423,190.2025807,191.9453922,14.273507,0.129455578,1620000000000 ,1620000000000 ,1620000000000 ,1616812509830 -1616812509867 ,112.5677838,26.87332579,59.14208221,190.1995754,191.9571974,14.277797,0.129498657,1620000000000 ,1620000000000 ,1620000000000 ,1616812509840 -1616812509874 ,112.5677836,26.87332452,59.14269638,190.1951768,191.9549059,14.279988,0.129524317,1620000000000 ,1620000000000 ,1620000000000 ,1616812509850 -1616812509880 ,112.5677833,26.87332325,59.14334106,190.1902317,191.9357587,14.284885,0.129559562,1620000000000 ,1620000000000 ,1620000000000 ,1616812509860 -1616812509892 ,112.567783,26.87332198,59.14399338,190.1874177,191.9231398,14.290854,0.129611809,1620000000000 ,1620000000000 ,1620000000000 ,1616812509870 -1616812509902 ,112.5677828,26.87332071,59.14461136,190.1843578,191.9133468,14.2962055,0.129655825,1620000000000 ,1620000000000 ,1620000000000 ,1616812509880 -1616812509914 ,112.5677825,26.87331945,59.14520264,190.1825819,191.9112945,14.30024,0.129696197,1620000000000 ,1620000000000 ,1620000000000 ,1616812509890 -1616812509923 ,112.5677822,26.87331818,59.14576721,190.1812705,191.8976744,14.304558,0.129733203,1620000000000 ,1620000000000 ,1620000000000 ,1616812509900 -1616812509932 ,112.5677819,26.87331691,59.14630508,190.1811613,191.8848342,14.309638,0.129773051,1620000000000 ,1620000000000 ,1620000000000 ,1616812509910 -1616812509943 ,112.5677817,26.87331564,59.14678574,190.1770358,191.8776989,14.31373,0.129807502,1620000000000 ,1620000000000 ,1620000000000 ,1616812509920 -1616812509953 ,112.5677814,26.87331437,59.14719009,190.172364,191.8810753,14.317867,0.129842735,1620000000000 ,1620000000000 ,1620000000000 ,1616812509930 -1616812509961 ,112.5677811,26.87331309,59.14753342,190.169468,191.8873466,14.324906,0.129894357,1620000000000 ,1620000000000 ,1620000000000 ,1616812509940 -1616812509970 ,112.5677809,26.87331182,59.14786911,190.1677741,191.8863468,14.330465,0.129957527,1620000000000 ,1620000000000 ,1620000000000 ,1616812509950 -1616812509981 ,112.5677806,26.87331055,59.14822388,190.1667905,191.8805803,14.331001,0.129965938,1620000000000 ,1620000000000 ,1620000000000 ,1616812509960 -1616812509994 ,112.5677803,26.87330928,59.14865875,190.1666266,191.8730233,14.336552,0.130009165,1620000000000 ,1620000000000 ,1620000000000 ,1616812509970 -1616812510001 ,112.5677801,26.87330801,59.14915085,190.1642497,191.8687629,14.338774,0.130035527,1620000000000 ,1620000000000 ,1620000000000 ,1616812509980 -1616812510013 ,112.5677798,26.87330673,59.14963913,190.1612717,191.8750185,14.342757,0.130069132,1620000000000 ,1620000000000 ,1620000000000 ,1616812509990 -1616812510023 ,112.5677795,26.87330546,59.15011978,190.1556983,191.8818296,14.344285,0.130086322,1620000000000 ,1620000000000 ,1620000000000 ,1616812510000 -1616812510037 ,112.5677793,26.87330419,59.15062714,190.1525018,191.8806657,14.34788,0.130110251,1620000000000 ,1620000000000 ,1620000000000 ,1616812510010 -1616812510044 ,112.567779,26.87330291,59.15114975,190.1505347,191.8700763,14.353483,0.130156266,1620000000000 ,1620000000000 ,1620000000000 ,1616812510020 -1616812510053 ,112.5677787,26.87330164,59.15161896,190.1494419,191.8675535,14.360611,0.130216949,1620000000000 ,1620000000000 ,1620000000000 ,1616812510030 -1616812510062 ,112.5677785,26.87330036,59.15208817,190.1452618,191.8640631,14.365417,0.130260674,1620000000000 ,1620000000000 ,1620000000000 ,1616812510040 -1616812510073 ,112.5677782,26.87329909,59.15267563,190.13906,191.8647007,14.365816,0.130279949,1620000000000 ,1620000000000 ,1620000000000 ,1616812510050 -1616812510082 ,112.5677779,26.87329781,59.15343475,190.1351804,191.8703432,14.367306,0.13029467,1620000000000 ,1620000000000 ,1620000000000 ,1616812510060 -1616812510092 ,112.5677777,26.87329654,59.15431213,190.1321478,191.864559,14.369566,0.130314453,1620000000000 ,1620000000000 ,1620000000000 ,1616812510080 -1616812510104 ,112.5677774,26.87329526,59.15523529,190.1290879,191.8547965,14.372086,0.130332184,1620000000000 ,1620000000000 ,1620000000000 ,1616812510080 -1616812510114 ,112.5677771,26.87329399,59.15614319,190.127394,191.8454149,14.376976,0.130370066,1620000000000 ,1620000000000 ,1620000000000 ,1616812510100 -1616812510125 ,112.5677766,26.87329143,59.15769196,190.1241428,191.8294351,14.388482,0.260883991,1620000000000 ,1620000000000 ,1620000000000 ,1616812510110 -1616812510134 ,112.5677763,26.87329016,59.1584549,190.1185967,191.8326668,14.390104,0.130483255,1620000000000 ,1620000000000 ,1620000000000 ,1616812510120 -1616812510143 ,112.5677761,26.87328888,59.15932846,190.1145533,191.8338762,14.395711,0.13053238,1620000000000 ,1620000000000 ,1620000000000 ,1616812510130 -1616812510153 ,112.5677758,26.8732876,59.16028214,190.1090071,191.8250929,14.394169,0.130520161,1620000000000 ,1620000000000 ,1620000000000 ,1616812510140 -1616812510162 ,112.5677755,26.87328632,59.16130447,190.1046358,191.822711,14.400683,0.130570796,1620000000000 ,1620000000000 ,1620000000000 ,1616812510150 -1616812510173 ,112.5677753,26.87328505,59.16242599,190.1004557,191.8173267,14.40311,0.130600698,1620000000000 ,1620000000000 ,1620000000000 ,1616812510160 -1616812510183 ,112.567775,26.87328377,59.16360474,190.0980515,191.8045004,14.409353,0.130645669,1620000000000 ,1620000000000 ,1620000000000 ,1616812510170 -1616812510194 ,112.5677747,26.87328249,59.16485596,190.0936256,191.8013287,14.409434,0.130661258,1620000000000 ,1620000000000 ,1620000000000 ,1616812510180 -1616812510205 ,112.5677747,26.87328249,59.16485596,190.0936256,-400,14.409434,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812510190 -1616812510214 ,112.5677742,26.87327993,59.16816711,190.091194,191.7815248,14.420608,0.261534751,1620000000000 ,1620000000000 ,1620000000000 ,1616812510200 -1616812510224 ,112.5677739,26.87327864,59.17076111,190.0844458,191.7011911,14.425904,0.131187619,1620000000000 ,1620000000000 ,1620000000000 ,1616812510210 -1616812510233 ,112.5677737,26.87327736,59.17343521,190.0780254,191.6966193,14.430317,0.131229796,1620000000000 ,1620000000000 ,1620000000000 ,1616812510220 -1616812510246 ,112.5677734,26.87327607,59.17625809,190.0720148,191.6831763,14.42923,0.13123887,1620000000000 ,1620000000000 ,1620000000000 ,1616812510230 -1616812510254 ,112.5677731,26.87327479,59.17930984,190.0658403,191.6635094,14.430097,0.131243587,1620000000000 ,1620000000000 ,1620000000000 ,1616812510240 -1616812510270 ,112.5677729,26.8732735,59.18257523,190.0592834,191.6632093,14.432795,0.131271282,1620000000000 ,1620000000000 ,1620000000000 ,1616812510250 -1616812510275 ,112.5677726,26.87327222,59.18592834,190.054994,191.6595715,14.438418,0.131312199,1620000000000 ,1620000000000 ,1620000000000 ,1616812510260 -1616812510287 ,112.5677723,26.87327093,59.18928146,190.047836,191.6603733,14.444913,0.131375942,1620000000000 ,1620000000000 ,1620000000000 ,1616812510270 -1616812510296 ,112.5677721,26.87326964,59.19264603,190.038383,191.6679103,14.4471,0.131411349,1620000000000 ,1620000000000 ,1620000000000 ,1616812510280 -1616812510312 ,112.5677718,26.87326835,59.1961174,190.0287114,191.6587229,14.449945,0.131436763,1620000000000 ,1620000000000 ,1620000000000 ,1616812510290 -1616812510315 ,112.5677715,26.87326707,59.19970703,190.0205698,191.6432681,14.454269,0.131475731,1620000000000 ,1620000000000 ,1620000000000 ,1616812510300 -1616812510325 ,112.5677713,26.87326578,59.20336151,190.0157068,191.6454203,14.452755,0.131487124,1620000000000 ,1620000000000 ,1620000000000 ,1616812510310 -1616812510334 ,112.567771,26.87326449,59.20700455,190.0111715,191.6477026,14.452471,0.131485042,1620000000000 ,1620000000000 ,1620000000000 ,1616812510320 -1616812510345 ,112.5677707,26.8732632,59.21059418,190.0048604,191.6523356,14.4562845,0.131511627,1620000000000 ,1620000000000 ,1620000000000 ,1616812510330 -1616812510356 ,112.5677705,26.87326191,59.21409988,189.9952981,191.6402308,14.460324,0.131545639,1620000000000 ,1620000000000 ,1620000000000 ,1616812510340 -1616812510368 ,112.5677702,26.87326063,59.21745682,189.9863643,191.6213085,14.469594,0.131615332,1620000000000 ,1620000000000 ,1620000000000 ,1616812510350 -1616812510377 ,112.5677699,26.87325934,59.22068024,189.9737694,191.6300029,14.477432,0.131695527,1620000000000 ,1620000000000 ,1620000000000 ,1616812510360 -1616812510386 ,112.5677697,26.87325804,59.22387695,189.9599178,191.6327595,14.485622,0.131778471,1620000000000 ,1620000000000 ,1620000000000 ,1616812510370 -1616812510397 ,112.5677694,26.87325675,59.22715759,189.9451099,191.6090474,14.487275,0.131813917,1620000000000 ,1620000000000 ,1620000000000 ,1616812510380 -1616812510406 ,112.5677691,26.87325546,59.23048782,189.9340177,191.5811147,14.488311,0.131832735,1620000000000 ,1620000000000 ,1620000000000 ,1616812510390 -1616812510417 ,112.5677689,26.87325417,59.23381424,189.9213682,191.5467438,14.492615,0.131875396,1620000000000 ,1620000000000 ,1620000000000 ,1616812510400 -1616812510430 ,112.5677686,26.87325288,59.23701096,189.9097842,191.5076623,14.495466,0.131902541,1620000000000 ,1620000000000 ,1620000000000 ,1616812510410 -1616812510436 ,112.5677684,26.87325158,59.24004745,189.9007137,191.4915395,14.498882,0.131938693,1620000000000 ,1620000000000 ,1620000000000 ,1616812510420 -1616812510454 ,112.5677681,26.87325029,59.24288177,189.89137,191.4814663,14.503334,0.131981772,1620000000000 ,1620000000000 ,1620000000000 ,1616812510430 -1616812510459 ,112.5677678,26.873249,59.24552536,189.8832284,191.4683647,14.508296,0.132026754,1620000000000 ,1620000000000 ,1620000000000 ,1616812510440 -1616812510467 ,112.5677676,26.87324771,59.24766541,189.8743765,191.4797508,14.510606,0.131862842,1620000000000 ,1620000000000 ,1620000000000 ,1616812510450 -1616812510479 ,112.5677673,26.87324641,59.24928284,189.8627925,191.4809512,14.510996,0.131680538,1620000000000 ,1620000000000 ,1620000000000 ,1616812510460 -1616812510488 ,112.567767,26.87324512,59.25064087,189.851427,191.4826364,14.509063,0.131663578,1620000000000 ,1620000000000 ,1620000000000 ,1616812510470 -1616812510498 ,112.5677668,26.87324383,59.2517128,189.8419467,191.4774066,14.51788,0.131709298,1620000000000 ,1620000000000 ,1620000000000 ,1616812510480 -1616812510514 ,112.5677665,26.87324254,59.25241852,189.8294338,191.4582736,14.527499,0.131790518,1620000000000 ,1620000000000 ,1620000000000 ,1616812510490 -1616812510518 ,112.5677663,26.87324125,59.25275803,189.8147353,191.423142,14.544108,0.131915794,1620000000000 ,1620000000000 ,1620000000000 ,1616812510500 -1616812510527 ,112.567766,26.87323995,59.25287628,189.7983975,191.4057382,14.558115,0.132045883,1620000000000 ,1620000000000 ,1620000000000 ,1616812510510 -1616812510538 ,112.5677657,26.87323866,59.25286865,189.7868135,191.399206,14.560613,0.132090976,1620000000000 ,1620000000000 ,1620000000000 ,1616812510520 -1616812510549 ,112.5677655,26.87323736,59.25273514,189.7811307,191.382819,14.558939,0.132098154,1620000000000 ,1620000000000 ,1620000000000 ,1616812510530 -1616812510566 ,112.5677652,26.87323607,59.25250244,189.7748743,191.3580013,14.544229,0.131981153,1620000000000 ,1620000000000 ,1620000000000 ,1616812510540 -1616812510572 ,112.567765,26.87323478,59.25202942,189.7733443,191.318819,14.540994,0.131904424,1620000000000 ,1620000000000 ,1620000000000 ,1616812510550 -1616812510579 ,112.5677647,26.87323348,59.25100708,189.7760491,191.2955974,14.549967,0.13192928,1620000000000 ,1620000000000 ,1620000000000 ,1616812510560 -1616812510589 ,112.5677644,26.87323219,59.2491951,189.7722515,191.3028347,14.571829,0.132053786,1620000000000 ,1620000000000 ,1620000000000 ,1616812510570 -1616812510598 ,112.5677642,26.87323089,59.24661636,189.7643558,191.3185906,14.5996,0.132262372,1620000000000 ,1620000000000 ,1620000000000 ,1616812510580 -1616812510609 ,112.5677639,26.87322959,59.24341202,189.7534002,191.3451365,14.615013,0.132408098,1620000000000 ,1620000000000 ,1620000000000 ,1616812510590 -1616812510621 ,112.5677637,26.87322829,59.23987579,189.7378547,191.3417854,14.624207,0.132486414,1620000000000 ,1620000000000 ,1620000000000 ,1616812510600 -1616812510630 ,112.5677634,26.873227,59.23626709,189.7274181,191.3137895,14.620884,0.132472921,1620000000000 ,1620000000000 ,1620000000000 ,1616812510610 -1616812510641 ,112.5677631,26.8732257,59.23264313,189.720424,191.3088295,14.619749,0.13244279,1620000000000 ,1620000000000 ,1620000000000 ,1616812510620 -1616812510651 ,112.5677629,26.8732244,59.22895432,189.7165171,191.3236778,14.627055,0.132473607,1620000000000 ,1620000000000 ,1620000000000 ,1616812510630 -1616812510660 ,112.5677626,26.8732231,59.22509766,189.7135938,191.3422928,14.645828,0.132629711,1620000000000 ,1620000000000 ,1620000000000 ,1616812510640 -1616812510670 ,112.5677624,26.8732218,59.22115326,189.7104246,191.3194535,14.649258,0.132687431,1620000000000 ,1620000000000 ,1620000000000 ,1616812510650 -1616812510679 ,112.5677621,26.8732205,59.21737289,189.7056162,191.2972009,14.640846,0.132631611,1620000000000 ,1620000000000 ,1620000000000 ,1616812510660 -1616812510689 ,112.5677618,26.8732192,59.21400452,189.7023104,191.307658,14.633907,0.132573634,1620000000000 ,1620000000000 ,1620000000000 ,1616812510670 -1616812510701 ,112.5677616,26.8732179,59.21103287,189.6960266,191.3290553,14.638645,0.132590749,1620000000000 ,1620000000000 ,1620000000000 ,1616812510680 -1616812510712 ,112.5677613,26.87321659,59.20823669,189.6882128,191.3462374,14.654023,0.132722871,1620000000000 ,1620000000000 ,1620000000000 ,1616812510690 -1616812510721 ,112.5677611,26.87321529,59.20555496,189.67835,191.3492535,14.665859,0.132832864,1620000000000 ,1620000000000 ,1620000000000 ,1616812510700 -1616812510732 ,112.5677608,26.87321399,59.20305252,189.6667934,191.3456858,14.678916,0.132960921,1620000000000 ,1620000000000 ,1620000000000 ,1616812510710 -1616812510741 ,112.5677605,26.87321268,59.20090103,189.6556465,191.3458827,14.671965,0.132948791,1620000000000 ,1620000000000 ,1620000000000 ,1616812510720 -1616812510754 ,112.5677603,26.87321138,59.19928741,189.6429423,191.3663717,14.660753,0.132862054,1620000000000 ,1620000000000 ,1620000000000 ,1616812510730 -1616812510763 ,112.56776,26.87321008,59.1984787,189.6293639,191.3610079,14.650105,0.132786444,1620000000000 ,1620000000000 ,1620000000000 ,1616812510740 -1616812510770 ,112.5677597,26.87320878,59.19842911,189.619146,191.347773,14.6532135,0.132769128,1620000000000 ,1620000000000 ,1620000000000 ,1616812510750 -1616812510781 ,112.5677595,26.87320748,59.19882584,189.6142282,191.3500582,14.667228,0.132903331,1620000000000 ,1620000000000 ,1620000000000 ,1616812510760 -1616812510791 ,112.5677592,26.87320617,59.19937515,189.6129715,191.3287586,14.680452,0.133022256,1620000000000 ,1620000000000 ,1620000000000 ,1616812510770 -1616812510804 ,112.567759,26.87320487,59.20012665,189.6072341,191.3022867,14.68728,0.133100258,1620000000000 ,1620000000000 ,1620000000000 ,1616812510780 -1616812510813 ,112.5677587,26.87320356,59.20137787,189.5944753,191.282459,14.67934,0.133067969,1620000000000 ,1620000000000 ,1620000000000 ,1616812510790 -1616812510829 ,112.5677584,26.87320226,59.20320129,189.5807057,191.3027152,14.672797,0.133004158,1620000000000 ,1620000000000 ,1620000000000 ,1616812510800 -1616812510833 ,112.5677582,26.87320095,59.20549011,189.5684113,191.3239271,14.669676,0.132982001,1620000000000 ,1620000000000 ,1620000000000 ,1616812510810 -1616812510850 ,112.5677579,26.87319965,59.20819473,189.5587398,191.3282089,14.670102,0.132984026,1620000000000 ,1620000000000 ,1620000000000 ,1616812510820 -1616812510856 ,112.5677577,26.87319834,59.21138382,189.5474563,191.3050994,14.673761,0.133023752,1620000000000 ,1620000000000 ,1620000000000 ,1616812510830 -1616812510862 ,112.5677574,26.87319704,59.21504211,189.5358177,191.269274,14.675157,0.133049733,1620000000000 ,1620000000000 ,1620000000000 ,1616812510840 -1616812510872 ,112.5677571,26.87319573,59.21899796,189.5248894,191.2610554,14.678382,0.133080756,1620000000000 ,1620000000000 ,1620000000000 ,1616812510850 -1616812510882 ,112.5677569,26.87319443,59.22304535,189.5135512,191.2710826,14.681902,0.133119872,1620000000000 ,1620000000000 ,1620000000000 ,1616812510860 -1616812510892 ,112.5677566,26.87319312,59.22713852,189.503224,191.280775,14.684361,0.133157848,1620000000000 ,1620000000000 ,1620000000000 ,1616812510870 -1616812510904 ,112.5677564,26.87319182,59.23140335,189.4939076,191.261564,14.6840725,0.133171533,1620000000000 ,1620000000000 ,1620000000000 ,1616812510880 -1616812510915 ,112.5677561,26.87319051,59.23592758,189.4824602,191.2190165,14.682685,0.133170682,1620000000000 ,1620000000000 ,1620000000000 ,1616812510890 -1616812510924 ,112.5677558,26.8731892,59.24060059,189.4733078,191.1777342,14.683078,0.133174949,1620000000000 ,1620000000000 ,1620000000000 ,1616812510900 -1616812510932 ,112.5677556,26.8731879,59.24522018,189.4659858,191.1593425,14.683906,0.133188973,1620000000000 ,1620000000000 ,1620000000000 ,1616812510910 -1616812510945 ,112.5677553,26.87318659,59.24969101,189.4582267,191.1565296,14.685601,0.133211758,1620000000000 ,1620000000000 ,1620000000000 ,1616812510920 -1616812510952 ,112.5677551,26.87318528,59.25407028,189.4463695,191.1418209,14.685438,0.133223761,1620000000000 ,1620000000000 ,1620000000000 ,1616812510940 -1616812510963 ,112.5677548,26.87318398,59.25836182,189.4367253,191.1042034,14.689619,0.133255061,1620000000000 ,1620000000000 ,1620000000000 ,1616812510950 -1616812510992 ,112.5677546,26.87318267,59.26251602,189.4278187,191.0740722,14.694955,0.133309498,1620000000000 ,1620000000000 ,1620000000000 ,1616812510960 -1616812510994 ,112.5677543,26.87318136,59.26646805,189.4190214,191.0635021,14.700538,0.133366853,1620000000000 ,1620000000000 ,1620000000000 ,1616812510970 -1616812510996 ,112.5677538,26.87317874,59.2735939,189.4020279,191.0383466,14.71007,0.26688473,1620000000000 ,1620000000000 ,1620000000000 ,1616812510980 -1616812511004 ,112.5677538,26.87317874,59.2735939,189.4020279,-400,14.71007,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812510980 -1616812511015 ,112.5677533,26.87317612,59.27956772,189.389433,190.9882571,14.714235,0.266985267,1620000000000 ,1620000000000 ,1620000000000 ,1616812511000 -1616812511028 ,112.567753,26.87317481,59.28207779,189.3840782,190.9647256,14.715613,0.133511031,1620000000000 ,1620000000000 ,1620000000000 ,1616812511010 -1616812511033 ,112.5677528,26.8731735,59.28424835,189.3770841,190.9507239,14.718723,0.133533649,1620000000000 ,1620000000000 ,1620000000000 ,1616812511020 -1616812511045 ,112.5677528,26.8731735,59.28424835,189.3770841,-400,14.718723,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812511030 -1616812511054 ,112.5677523,26.87317087,59.28763962,189.3642706,190.9268937,14.722361,0.267113753,1620000000000 ,1620000000000 ,1620000000000 ,1616812511040 -1616812511065 ,112.567752,26.87316956,59.2888298,189.3585333,190.8936562,14.727613,0.1335845,1620000000000 ,1620000000000 ,1620000000000 ,1616812511050 -1616812511077 ,112.5677518,26.87316825,59.28961945,189.3514845,190.8845341,14.731209,0.133618424,1620000000000 ,1620000000000 ,1620000000000 ,1616812511060 -1616812511084 ,112.5677515,26.87316694,59.2899971,189.3445997,190.882612,14.735825,0.133633835,1620000000000 ,1620000000000 ,1620000000000 ,1616812511070 -1616812511093 ,112.5677513,26.87316563,59.28998566,189.3392448,190.8688388,14.741163,0.133676206,1620000000000 ,1620000000000 ,1620000000000 ,1616812511080 -1616812511104 ,112.567751,26.87316431,59.28959274,189.3334255,190.8547467,14.744269,0.133688223,1620000000000 ,1620000000000 ,1620000000000 ,1616812511090 -1616812511116 ,112.5677508,26.873163,59.2888031,189.3278521,190.8387466,14.748061,0.133702645,1620000000000 ,1620000000000 ,1620000000000 ,1616812511100 -1616812511124 ,112.5677505,26.87316169,59.28767014,189.3210492,190.8243171,14.749901,0.133706198,1620000000000 ,1620000000000 ,1620000000000 ,1616812511110 -1616812511134 ,112.5677503,26.87316037,59.28622437,189.3152845,190.8191353,14.752551,0.133709036,1620000000000 ,1620000000000 ,1620000000000 ,1616812511120 -1616812511145 ,112.56775,26.87315906,59.28451157,189.3087549,190.8061961,14.756313,0.133731313,1620000000000 ,1620000000000 ,1620000000000 ,1616812511130 -1616812511155 ,112.5677497,26.87315774,59.282547,189.3034273,190.7882618,14.761203,0.133754284,1620000000000 ,1620000000000 ,1620000000000 ,1616812511140 -1616812511167 ,112.5677495,26.87315643,59.28036499,189.2975807,190.7737352,14.765341,0.133777798,1620000000000 ,1620000000000 ,1620000000000 ,1616812511150 -1616812511176 ,112.5677493,26.87315512,59.27797699,189.2923897,190.7546638,14.770235,0.133809297,1620000000000 ,1620000000000 ,1620000000000 ,1616812511160 -1616812511188 ,112.567749,26.8731538,59.27539444,189.2877452,190.7459427,14.774598,0.133837083,1620000000000 ,1620000000000 ,1620000000000 ,1616812511170 -1616812511196 ,112.5677488,26.87315249,59.27266693,189.2822264,190.7401372,14.776877,0.133851568,1620000000000 ,1620000000000 ,1620000000000 ,1616812511180 -1616812511205 ,112.5677485,26.87315117,59.26985168,189.276571,190.7384134,14.775979,0.133842736,1620000000000 ,1620000000000 ,1620000000000 ,1616812511190 -1616812511215 ,112.5677482,26.87314985,59.26688766,189.2833739,190.8982074,14.791027,0.134061188,1620000000000 ,1620000000000 ,1620000000000 ,1616812511200 -1616812511226 ,112.567748,26.87314854,59.26377869,189.2794124,191.1467193,14.794284,0.134439384,1620000000000 ,1620000000000 ,1620000000000 ,1616812511210 -1616812511236 ,112.5677477,26.87314722,59.26057434,189.2727188,191.1483882,14.79779,0.134460922,1620000000000 ,1620000000000 ,1620000000000 ,1616812511220 -1616812511245 ,112.5677475,26.8731459,59.25738144,189.2653968,191.1218808,14.80819,0.134532974,1620000000000 ,1620000000000 ,1620000000000 ,1616812511230 -1616812511256 ,112.5677472,26.87314458,59.25429153,189.2578563,191.1227717,14.799069,0.134505192,1620000000000 ,1620000000000 ,1620000000000 ,1616812511240 -1616812511266 ,112.5677469,26.87314326,59.25146866,189.247611,191.131163,14.80151,0.134508164,1620000000000 ,1620000000000 ,1620000000000 ,1616812511250 -1616812511276 ,112.5677467,26.87314194,59.24894333,189.2409447,191.136528,14.7907715,0.134433757,1620000000000 ,1620000000000 ,1620000000000 ,1616812511260 -1616812511285 ,112.5677464,26.87314062,59.2466774,189.2346063,191.1326791,14.790492,0.13440791,1620000000000 ,1620000000000 ,1620000000000 ,1616812511270 -1616812511295 ,112.5677462,26.8731393,59.2446022,189.2319835,191.1053996,14.795784,0.134453618,1620000000000 ,1620000000000 ,1620000000000 ,1616812511280 -1616812511307 ,112.5677459,26.87313798,59.24269867,189.2285411,191.0883777,14.804544,0.13451862,1620000000000 ,1620000000000 ,1620000000000 ,1616812511290 -1616812511317 ,112.5677457,26.87313666,59.24105835,189.2212465,191.0855739,14.80888,0.13457385,1620000000000 ,1620000000000 ,1620000000000 ,1616812511300 -1616812511327 ,112.5677454,26.87313534,59.23971176,189.2131595,191.0978976,14.804685,0.134564363,1620000000000 ,1620000000000 ,1620000000000 ,1616812511310 -1616812511339 ,112.5677451,26.87313402,59.23878098,189.2053185,191.1243921,14.797915,0.134517305,1620000000000 ,1620000000000 ,1620000000000 ,1616812511320 -1616812511347 ,112.5677449,26.8731327,59.23833084,189.1946634,191.1324641,14.790226,0.134457453,1620000000000 ,1620000000000 ,1620000000000 ,1616812511330 -1616812511356 ,112.5677446,26.87313138,59.23837662,189.1876966,191.1167504,14.7895,0.134436906,1620000000000 ,1620000000000 ,1620000000000 ,1616812511340 -1616812511366 ,112.5677444,26.87313006,59.23881149,189.1797462,191.0966257,14.79506,0.134477574,1620000000000 ,1620000000000 ,1620000000000 ,1616812511350 -1616812511377 ,112.5677441,26.87312874,59.23951721,189.1748012,191.0899113,14.799871,0.13452927,1620000000000 ,1620000000000 ,1620000000000 ,1616812511360 -1616812511387 ,112.5677438,26.87312742,59.2405014,189.1687906,191.0973438,14.801936,0.134559122,1620000000000 ,1620000000000 ,1620000000000 ,1616812511370 -1616812511398 ,112.5677436,26.8731261,59.2419014,189.1598567,191.1034646,14.80099,0.134569615,1620000000000 ,1620000000000 ,1620000000000 ,1616812511380 -1616812511407 ,112.5677433,26.87312478,59.2437973,189.1503218,191.1077811,14.797312,0.134547859,1620000000000 ,1620000000000 ,1620000000000 ,1616812511390 -1616812511417 ,112.5677431,26.87312346,59.24611664,189.1416611,191.1159325,14.793596,0.134522536,1620000000000 ,1620000000000 ,1620000000000 ,1616812511400 -1616812511428 ,112.5677428,26.87312214,59.24874115,189.1334922,191.1144697,14.788832,0.134488238,1620000000000 ,1620000000000 ,1620000000000 ,1616812511410 -1616812511441 ,112.5677425,26.87312082,59.25163269,189.1250774,191.1099697,14.785811,0.13446476,1620000000000 ,1620000000000 ,1620000000000 ,1616812511420 -1616812511452 ,112.5677423,26.8731195,59.254776,189.1172637,191.1028879,14.789571,0.134489195,1620000000000 ,1620000000000 ,1620000000000 ,1616812511430 -1616812511460 ,112.567742,26.87311818,59.25808334,189.1087669,191.0889155,14.790352,0.13450501,1620000000000 ,1620000000000 ,1620000000000 ,1616812511440 -1616812511471 ,112.5677418,26.87311686,59.26159286,189.1004068,190.9244469,14.794128,0.134317188,1620000000000 ,1620000000000 ,1620000000000 ,1616812511450 -1616812511479 ,112.5677415,26.87311554,59.26533508,189.0895604,190.7571032,14.790256,0.134083336,1620000000000 ,1620000000000 ,1620000000000 ,1616812511460 -1616812511488 ,112.5677413,26.87311423,59.26926422,189.0809544,190.7542689,14.787363,0.134063082,1620000000000 ,1620000000000 ,1620000000000 ,1616812511470 -1616812511498 ,112.567741,26.87311291,59.27337646,189.0733865,190.7531445,14.784626,0.134049363,1620000000000 ,1620000000000 ,1620000000000 ,1616812511480 -1616812511511 ,112.5677408,26.87311159,59.27754593,189.067212,190.7382568,14.782923,0.134036325,1620000000000 ,1620000000000 ,1620000000000 ,1616812511490 -1616812511520 ,112.5677405,26.87311028,59.28168488,189.0624036,190.7247501,14.78194,0.134030626,1620000000000 ,1620000000000 ,1620000000000 ,1616812511500 -1616812511528 ,112.5677403,26.87310896,59.28575516,189.0567755,190.7147751,14.781379,0.134025034,1620000000000 ,1620000000000 ,1620000000000 ,1616812511510 -1616812511540 ,112.56774,26.87310764,59.28974152,189.0510382,190.7064764,14.781824,0.134034008,1620000000000 ,1620000000000 ,1620000000000 ,1616812511520 -1616812511551 ,112.5677398,26.87310633,59.29362869,189.0449729,190.7086641,14.781316,0.134033407,1620000000000 ,1620000000000 ,1620000000000 ,1616812511530 -1616812511558 ,112.5677395,26.87310501,59.2973938,189.0373231,190.7239277,14.782499,0.134045672,1620000000000 ,1620000000000 ,1620000000000 ,1616812511540 -1616812511568 ,112.5677393,26.87310369,59.30101013,189.0324054,190.7205468,14.781183,0.134038933,1620000000000 ,1620000000000 ,1620000000000 ,1616812511550 -1616812511578 ,112.567739,26.87310237,59.30444336,189.0262582,190.7078021,14.781241,0.134033523,1620000000000 ,1620000000000 ,1620000000000 ,1616812511560 -1616812511591 ,112.5677388,26.87310106,59.30766296,189.0204116,190.696274,14.780984,0.134031173,1620000000000 ,1620000000000 ,1620000000000 ,1616812511570 -1616812511599 ,112.5677385,26.87309974,59.31062317,189.0153026,190.6864834,14.781559,0.134027041,1620000000000 ,1620000000000 ,1620000000000 ,1616812511580 -1616812511609 ,112.5677383,26.87309842,59.31333542,189.0083358,190.6803879,14.781152,0.134025098,1620000000000 ,1620000000000 ,1620000000000 ,1616812511590 -1616812511619 ,112.567738,26.87309711,59.31583023,188.9998937,190.6682288,14.776741,0.133988375,1620000000000 ,1620000000000 ,1620000000000 ,1616812511600 -1616812511630 ,112.5677378,26.87309579,59.31813049,188.9932821,190.6526188,14.782622,0.134015109,1620000000000 ,1620000000000 ,1620000000000 ,1616812511610 -1616812511641 ,112.5677375,26.87309447,59.32019424,188.988337,190.6654512,14.780079,0.133983314,1620000000000 ,1620000000000 ,1620000000000 ,1616812511620 -1616812511648 ,112.5677373,26.87309316,59.32202148,188.9855503,190.6598354,14.785196,0.134038516,1620000000000 ,1620000000000 ,1620000000000 ,1616812511630 -1616812511660 ,112.567737,26.87309184,59.32365799,188.9830641,190.6335655,14.785203,0.13402706,1620000000000 ,1620000000000 ,1620000000000 ,1616812511640 -1616812511674 ,112.5677368,26.87309052,59.3251915,188.9759334,190.6133683,14.784347,0.134016661,1620000000000 ,1620000000000 ,1620000000000 ,1616812511650 -1616812511682 ,112.5677365,26.8730892,59.32668304,188.9690486,190.6095551,14.779973,0.133984954,1620000000000 ,1620000000000 ,1620000000000 ,1616812511660 -1616812511690 ,112.5677363,26.87308789,59.32810593,188.963038,190.6140087,14.778206,0.133961552,1620000000000 ,1620000000000 ,1620000000000 ,1616812511670 -1616812511700 ,112.5677361,26.87308657,59.32938766,188.9583661,190.6157953,14.780504,0.13396486,1620000000000 ,1620000000000 ,1620000000000 ,1616812511680 -1616812511710 ,112.5677358,26.87308525,59.33055115,188.9524922,190.617744,14.779675,0.133961201,1620000000000 ,1620000000000 ,1620000000000 ,1616812511690 -1616812511720 ,112.5677356,26.87308394,59.33169937,188.9464543,190.5932602,14.777043,0.133946532,1620000000000 ,1620000000000 ,1620000000000 ,1616812511700 -1616812511729 ,112.5677353,26.87308262,59.33286285,188.9411268,190.5677601,14.775106,0.133915828,1620000000000 ,1620000000000 ,1620000000000 ,1616812511710 -1616812511740 ,112.5677351,26.8730813,59.33397675,188.9386406,190.5694351,14.774138,0.133905043,1620000000000 ,1620000000000 ,1620000000000 ,1616812511720 -1616812511750 ,112.5677348,26.87307999,59.33496094,188.9347337,190.5756362,14.773899,0.133896927,1620000000000 ,1620000000000 ,1620000000000 ,1616812511730 -1616812511761 ,112.5677346,26.87307867,59.33587646,188.928286,190.5741373,14.771434,0.133879465,1620000000000 ,1620000000000 ,1620000000000 ,1616812511740 -1616812511771 ,112.5677343,26.87307736,59.33676529,188.9218929,190.5467622,14.76876,0.133849306,1620000000000 ,1620000000000 ,1620000000000 ,1616812511750 -1616812511781 ,112.5677341,26.87307604,59.33761215,188.916784,190.5295188,14.769073,0.133841476,1620000000000 ,1620000000000 ,1620000000000 ,1616812511760 -1616812511792 ,112.5677338,26.87307472,59.33841324,188.913724,190.5363124,14.769312,0.133841569,1620000000000 ,1620000000000 ,1620000000000 ,1616812511770 -1616812511801 ,112.5677336,26.87307341,59.33919525,188.9093254,190.537687,14.768378,0.133837191,1620000000000 ,1620000000000 ,1620000000000 ,1616812511780 -1616812511811 ,112.5677334,26.87307209,59.34003448,188.9045443,190.5271538,14.765953,0.133821488,1620000000000 ,1620000000000 ,1620000000000 ,1616812511790 -1616812511821 ,112.5677331,26.87307078,59.34093857,188.9024679,190.5128673,14.762812,0.133790176,1620000000000 ,1620000000000 ,1620000000000 ,1616812511800 -1616812511836 ,112.5677329,26.87306946,59.3418541,188.8992167,190.5082714,14.759356,0.13375756,1620000000000 ,1620000000000 ,1620000000000 ,1616812511810 -1616812511847 ,112.5677326,26.87306815,59.34275818,188.8942443,190.510908,14.758385,0.13374668,1620000000000 ,1620000000000 ,1620000000000 ,1616812511820 -1616812511855 ,112.5677324,26.87306683,59.34366226,188.8896818,190.5059296,14.757051,0.13373137,1620000000000 ,1620000000000 ,1620000000000 ,1616812511830 -1616812511863 ,112.5677321,26.87306552,59.34461212,188.8864033,190.5007118,14.756969,0.133730024,1620000000000 ,1620000000000 ,1620000000000 ,1616812511840 -1616812511873 ,112.5677319,26.8730642,59.34561157,188.881868,190.4894533,14.753772,0.133709985,1620000000000 ,1620000000000 ,1620000000000 ,1616812511850 -1616812511882 ,112.5677316,26.87306289,59.34669495,188.8779338,190.4859229,14.74894,0.133672814,1620000000000 ,1620000000000 ,1620000000000 ,1616812511860 -1616812511894 ,112.5677314,26.87306157,59.34790802,188.8734259,190.4864464,14.743072,0.133625185,1620000000000 ,1620000000000 ,1620000000000 ,1616812511870 -1616812511902 ,112.5677312,26.87306026,59.34923172,188.8709397,190.4818705,14.738267,0.133581233,1620000000000 ,1620000000000 ,1620000000000 ,1616812511880 -1616812511912 ,112.5677309,26.87305895,59.35057831,188.8671421,190.4722288,14.735796,0.133554442,1620000000000 ,1620000000000 ,1620000000000 ,1616812511890 -1616812511922 ,112.5677307,26.87305764,59.35189819,188.8630167,190.4712993,14.7334175,0.133535013,1620000000000 ,1620000000000 ,1620000000000 ,1616812511900 -1616812511933 ,112.5677304,26.87305632,59.35321808,188.8568969,190.4680128,14.731913,0.133518464,1620000000000 ,1620000000000 ,1620000000000 ,1616812511910 -1616812511943 ,112.5677302,26.87305501,59.354599,188.8512141,190.4644517,14.727889,0.133492467,1620000000000 ,1620000000000 ,1620000000000 ,1616812511920 -1616812511954 ,112.56773,26.8730537,59.3560791,188.8452855,190.4607495,14.722587,0.13345283,1620000000000 ,1620000000000 ,1620000000000 ,1616812511930 -1616812511963 ,112.5677297,26.87305239,59.35768127,188.8404224,190.4557109,14.717142,0.133407391,1620000000000 ,1620000000000 ,1620000000000 ,1616812511940 -1616812511983 ,112.5677295,26.87305107,59.35940933,188.8355593,190.4505856,14.711825,0.133364013,1620000000000 ,1620000000000 ,1620000000000 ,1616812511950 -1616812511988 ,112.5677292,26.87304976,59.36117172,188.8321169,190.4423318,14.7102585,0.133342765,1620000000000 ,1620000000000 ,1620000000000 ,1616812511970 -1616812511993 ,112.567729,26.87304845,59.36287689,188.8285379,190.4402054,14.710455,0.1333411,1620000000000 ,1620000000000 ,1620000000000 ,1616812511980 -1616812512005 ,112.5677287,26.87304714,59.36450577,188.823265,190.4437805,14.708657,0.133332509,1620000000000 ,1620000000000 ,1620000000000 ,1616812511980 -1616812512012 ,112.5677283,26.87304452,59.36780548,188.8122001,190.4362035,14.703572,0.266601298,1620000000000 ,1620000000000 ,1620000000000 ,1616812512000 -1616812512026 ,112.5677283,26.87304452,59.36780548,188.8122001,-400,14.703572,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812512010 -1616812512035 ,112.567728,26.87304321,59.36947632,188.8064627,190.4327252,14.699925,0.133259101,1620000000000 ,1620000000000 ,1620000000000 ,1616812512020 -1616812512044 ,112.5677275,26.87304059,59.37268066,188.7980479,190.434359,14.691963,0.266417471,1620000000000 ,1620000000000 ,1620000000000 ,1616812512030 -1616812512053 ,112.5677275,26.87304059,59.37268066,188.7980479,-400,14.691963,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812512040 -1616812512063 ,112.5677271,26.87303797,59.37556839,188.7866552,190.4198351,14.688712,0.26632921,1620000000000 ,1620000000000 ,1620000000000 ,1616812512050 -1616812512074 ,112.5677268,26.87303666,59.37687683,188.7794972,190.4127069,14.685033,0.133123393,1620000000000 ,1620000000000 ,1620000000000 ,1616812512060 -1616812512084 ,112.5677266,26.87303535,59.37812042,188.7756449,190.4104403,14.681745,0.133090533,1620000000000 ,1620000000000 ,1620000000000 ,1616812512070 -1616812512096 ,112.5677263,26.87303404,59.37934113,188.7703993,190.4032505,14.678586,0.133061769,1620000000000 ,1620000000000 ,1620000000000 ,1616812512080 -1616812512105 ,112.5677261,26.87303273,59.38054657,188.7629954,190.3974471,14.675368,0.133032132,1620000000000 ,1620000000000 ,1620000000000 ,1616812512090 -1616812512120 ,112.5677259,26.87303142,59.38173676,188.7568482,190.3887264,14.6716585,0.132998131,1620000000000 ,1620000000000 ,1620000000000 ,1616812512100 -1616812512126 ,112.5677256,26.87303012,59.38288498,188.7511382,190.3791146,14.667958,0.132964459,1620000000000 ,1620000000000 ,1620000000000 ,1616812512110 -1616812512134 ,112.5677254,26.87302881,59.3840065,188.7447998,190.3764507,14.664063,0.13292808,1620000000000 ,1620000000000 ,1620000000000 ,1616812512120 -1616812512146 ,112.5677251,26.8730275,59.38509369,188.7386799,190.371912,14.660059,0.132892999,1620000000000 ,1620000000000 ,1620000000000 ,1616812512130 -1616812512155 ,112.5677249,26.87302619,59.38612747,188.733571,190.3617152,14.656661,0.1328575,1620000000000 ,1620000000000 ,1620000000000 ,1616812512140 -1616812512164 ,112.5677247,26.87302489,59.38707733,188.7296095,190.3550141,14.65306,0.13281903,1620000000000 ,1620000000000 ,1620000000000 ,1616812512150 -1616812512178 ,112.5677244,26.87302358,59.3879509,188.7231344,190.3554065,14.650332,0.132790556,1620000000000 ,1620000000000 ,1620000000000 ,1616812512160 -1616812512187 ,112.5677242,26.87302228,59.38879013,188.716878,190.3531891,14.647546,0.132762962,1620000000000 ,1620000000000 ,1620000000000 ,1616812512170 -1616812512195 ,112.5677239,26.87302097,59.38962173,188.7100751,190.3453928,14.645488,0.132741276,1620000000000 ,1620000000000 ,1620000000000 ,1616812512180 -1616812512204 ,112.5677237,26.87301966,59.39042664,188.7028078,190.336558,14.6445055,0.132728875,1620000000000 ,1620000000000 ,1620000000000 ,1616812512190 -1616812512215 ,112.5677235,26.87301836,59.39119339,188.6940105,190.3324216,14.642602,0.132710917,1620000000000 ,1620000000000 ,1620000000000 ,1616812512200 -1616812512231 ,112.5677232,26.87301706,59.39144897,188.6977535,190.4115274,14.628571,0.132400647,1620000000000 ,1620000000000 ,1620000000000 ,1616812512210 -1616812512240 ,112.567723,26.87301575,59.39165115,188.690814,190.4120828,14.627397,0.132331047,1620000000000 ,1620000000000 ,1620000000000 ,1616812512220 -1616812512246 ,112.5677227,26.87301445,59.39184952,188.6853771,190.4008056,14.625372,0.132313704,1620000000000 ,1620000000000 ,1620000000000 ,1616812512230 -1616812512257 ,112.5677225,26.87301315,59.39208603,188.6775361,190.3943364,14.621095,0.132282168,1620000000000 ,1620000000000 ,1620000000000 ,1616812512240 -1616812512265 ,112.5677223,26.87301185,59.3923645,188.6702141,190.3861454,14.615464,0.132232982,1620000000000 ,1620000000000 ,1620000000000 ,1616812512250 -1616812512275 ,112.567722,26.87301055,59.39267731,188.6634932,190.3830944,14.610631,0.132187042,1620000000000 ,1620000000000 ,1620000000000 ,1616812512260 -1616812512294 ,112.5677218,26.87300925,59.39302063,188.6554336,190.3775026,14.605615,0.132141788,1620000000000 ,1620000000000 ,1620000000000 ,1616812512270 -1616812512302 ,112.5677216,26.87300795,59.39337921,188.6479204,190.3713695,14.602209,0.132104678,1620000000000 ,1620000000000 ,1620000000000 ,1616812512280 -1616812512313 ,112.5677213,26.87300665,59.3937645,188.6387133,190.3614314,14.59863,0.132075009,1620000000000 ,1620000000000 ,1620000000000 ,1616812512290 -1616812512320 ,112.5677211,26.87300535,59.39417267,188.6287412,190.3498615,14.595277,0.13204465,1620000000000 ,1620000000000 ,1620000000000 ,1616812512300 -1616812512335 ,112.5677208,26.87300406,59.39461517,188.6187965,190.345656,14.59282,0.132020548,1620000000000 ,1620000000000 ,1620000000000 ,1616812512310 -1616812512341 ,112.5677206,26.87300276,59.39509583,188.6109554,190.3468879,14.589623,0.131994122,1620000000000 ,1620000000000 ,1620000000000 ,1616812512320 -1616812512346 ,112.5677204,26.87300146,59.39560699,188.602322,190.3415717,14.586959,0.131972623,1620000000000 ,1620000000000 ,1620000000000 ,1616812512330 -1616812512356 ,112.5677201,26.87300016,59.39614487,188.5935521,190.3263963,14.584009,0.131947404,1620000000000 ,1620000000000 ,1620000000000 ,1616812512340 -1616812512367 ,112.5677199,26.87299886,59.39669418,188.5831156,190.3165402,14.581122,0.131919151,1620000000000 ,1620000000000 ,1620000000000 ,1616812512350 -1616812512376 ,112.5677197,26.87299756,59.39725494,188.5716408,190.3124956,14.577344,0.131887511,1620000000000 ,1620000000000 ,1620000000000 ,1616812512360 -1616812512388 ,112.5677194,26.87299627,59.39784241,188.5595104,190.3062255,14.571786,0.131845344,1620000000000 ,1620000000000 ,1620000000000 ,1616812512370 -1616812512399 ,112.5677192,26.87299497,59.39846802,188.5469156,190.2912265,14.566117,0.131792743,1620000000000 ,1620000000000 ,1620000000000 ,1616812512380 -1616812512408 ,112.567719,26.87299367,59.3991127,188.5352769,190.2754812,14.561635,0.131749927,1620000000000 ,1620000000000 ,1620000000000 ,1616812512390 -1616812512417 ,112.5677187,26.87299238,59.39974213,188.5219717,190.2621377,14.557962,0.131717009,1620000000000 ,1620000000000 ,1620000000000 ,1616812512400 -1616812512428 ,112.5677185,26.87299108,59.40030289,188.5092129,190.2552234,14.55492,0.131682339,1620000000000 ,1620000000000 ,1620000000000 ,1616812512410 -1616812512437 ,112.5677183,26.87298979,59.40081406,188.4988583,190.2524019,14.550299,0.131646004,1620000000000 ,1620000000000 ,1620000000000 ,1616812512420 -1616812512447 ,112.567718,26.87298849,59.40132904,188.4862088,190.2332335,14.545834,0.131603954,1620000000000 ,1620000000000 ,1620000000000 ,1616812512430 -1616812512458 ,112.5677178,26.8729872,59.4018898,188.4713463,190.2183006,14.542663,0.13157308,1620000000000 ,1620000000000 ,1620000000000 ,1616812512440 -1616812512468 ,112.5677176,26.8729859,59.40243149,188.4578772,190.2033961,14.540514,0.131547411,1620000000000 ,1620000000000 ,1620000000000 ,1616812512450 -1616812512479 ,112.5677173,26.87298461,59.40333557,188.4450365,190.1222493,14.5396595,0.13177158,1620000000000 ,1620000000000 ,1620000000000 ,1616812512460 -1616812512491 ,112.5677171,26.87298331,59.40414047,188.4322503,190.1160175,14.53727,0.131748509,1620000000000 ,1620000000000 ,1620000000000 ,1616812512470 -1616812512502 ,112.5677169,26.87298201,59.40491104,188.4198467,190.0969437,14.533251,0.131716055,1620000000000 ,1620000000000 ,1620000000000 ,1616812512480 -1616812512508 ,112.5677166,26.87298072,59.40568924,188.4060771,190.0785095,14.527425,0.131665584,1620000000000 ,1620000000000 ,1620000000000 ,1616812512490 -1616812512518 ,112.5677164,26.87297942,59.40648651,188.3928265,190.0605486,14.520357,0.131602242,1620000000000 ,1620000000000 ,1620000000000 ,1616812512500 -1616812512532 ,112.5677162,26.87297812,59.40726471,188.3791115,190.0524715,14.514051,0.131538198,1620000000000 ,1620000000000 ,1620000000000 ,1616812512510 -1616812512538 ,112.5677159,26.87297683,59.40797806,188.3675275,190.0439625,14.510096,0.131495546,1620000000000 ,1620000000000 ,1620000000000 ,1616812512520 -1616812512548 ,112.5677157,26.87297553,59.40858078,188.355397,190.0237979,14.509278,0.131474166,1620000000000 ,1620000000000 ,1620000000000 ,1616812512530 -1616812512559 ,112.5677155,26.87297424,59.40909576,188.3406438,190.0016881,14.509728,0.131467279,1620000000000 ,1620000000000 ,1620000000000 ,1616812512540 -1616812512568 ,112.5677153,26.87297295,59.40958023,188.3271474,189.9781813,14.507847,0.131450659,1620000000000 ,1620000000000 ,1620000000000 ,1616812512550 -1616812512577 ,112.567715,26.87297165,59.41008377,188.314252,189.9723098,14.505348,0.131431981,1620000000000 ,1620000000000 ,1620000000000 ,1616812512560 -1616812512588 ,112.5677148,26.87297036,59.41062927,188.3007829,189.9664482,14.501332,0.131396435,1620000000000 ,1620000000000 ,1620000000000 ,1616812512570 -1616812512598 ,112.5677146,26.87296906,59.41122437,188.2886251,189.9512417,14.494367,0.131342308,1620000000000 ,1620000000000 ,1620000000000 ,1616812512580 -1616812512610 ,112.5677143,26.87296777,59.41184616,188.275839,189.9247646,14.490204,0.131291926,1620000000000 ,1620000000000 ,1620000000000 ,1616812512590 -1616812512618 ,112.5677141,26.87296648,59.4124527,188.2622879,189.9082602,14.48694,0.131256434,1620000000000 ,1620000000000 ,1620000000000 ,1616812512600 -1616812512628 ,112.5677139,26.87296518,59.41305923,188.249857,189.894396,14.48345,0.131222847,1620000000000 ,1620000000000 ,1620000000000 ,1616812512610 -1616812512640 ,112.5677137,26.87296389,59.41370392,188.2359234,189.8758017,14.480374,0.131197613,1620000000000 ,1620000000000 ,1620000000000 ,1616812512620 -1616812512649 ,112.5677134,26.8729626,59.41444778,188.2235744,189.8661829,14.4756775,0.13115644,1620000000000 ,1620000000000 ,1620000000000 ,1616812512630 -1616812512661 ,112.5677132,26.87296131,59.41531372,188.2098867,189.85254,14.470091,0.131109173,1620000000000 ,1620000000000 ,1620000000000 ,1616812512640 -1616812512670 ,112.567713,26.87296002,59.41627121,188.196281,189.8365992,14.4635315,0.131053736,1620000000000 ,1620000000000 ,1620000000000 ,1616812512650 -1616812512685 ,112.5677128,26.87295873,59.4172821,188.1837954,189.8249832,14.459083,0.131009532,1620000000000 ,1620000000000 ,1620000000000 ,1616812512660 -1616812512706 ,112.5677125,26.87295743,59.41834259,188.1702989,189.8125191,14.456424,0.130981491,1620000000000 ,1620000000000 ,1620000000000 ,1616812512670 -1616812512709 ,112.5677123,26.87295614,59.41947174,188.1561741,189.7960905,14.453032,0.130955826,1620000000000 ,1620000000000 ,1620000000000 ,1616812512680 -1616812512712 ,112.5677121,26.87295485,59.42069626,188.142541,189.7787798,14.44972,0.130927826,1620000000000 ,1620000000000 ,1620000000000 ,1616812512690 -1616812512725 ,112.5677119,26.87295356,59.42200851,188.1292631,189.7690262,14.444216,0.13088447,1620000000000 ,1620000000000 ,1620000000000 ,1616812512700 -1616812512739 ,112.5677117,26.87295227,59.42338943,188.1156847,189.7660484,14.438703,0.130837624,1620000000000 ,1620000000000 ,1620000000000 ,1616812512710 -1616812512741 ,112.5677114,26.87295099,59.42483139,188.101314,189.7581869,14.432739,0.130786863,1620000000000 ,1620000000000 ,1620000000000 ,1616812512720 -1616812512753 ,112.5677112,26.8729497,59.42630768,188.0876536,189.7345468,14.428416,0.130742709,1620000000000 ,1620000000000 ,1620000000000 ,1616812512730 -1616812512762 ,112.567711,26.87294841,59.42781067,188.0748402,189.7135689,14.424064,0.130704303,1620000000000 ,1620000000000 ,1620000000000 ,1616812512740 -1616812512772 ,112.5677108,26.87294712,59.42930984,188.0614803,189.696067,14.4218855,0.130681295,1620000000000 ,1620000000000 ,1620000000000 ,1616812512750 -1616812512782 ,112.5677106,26.87294583,59.43079758,188.04782,189.6914758,14.417908,0.130649044,1620000000000 ,1620000000000 ,1620000000000 ,1616812512760 -1616812512792 ,112.5677103,26.87294455,59.43228149,188.034706,189.6827837,14.413541,0.130613418,1620000000000 ,1620000000000 ,1620000000000 ,1616812512770 -1616812512805 ,112.5677101,26.87294326,59.43376923,188.0237231,189.6691379,14.409325,0.130574332,1620000000000 ,1620000000000 ,1620000000000 ,1616812512780 -1616812512812 ,112.5677099,26.87294197,59.43523788,188.0103086,189.6520166,14.406698,0.130546113,1620000000000 ,1620000000000 ,1620000000000 ,1616812512790 -1616812512822 ,112.5677097,26.87294068,59.4366188,187.9976591,189.6301369,14.404447,0.130521331,1620000000000 ,1620000000000 ,1620000000000 ,1616812512800 -1616812512833 ,112.5677095,26.8729394,59.4379158,187.9835069,189.6276993,14.399583,0.130481755,1620000000000 ,1620000000000 ,1620000000000 ,1616812512810 -1616812512843 ,112.5677092,26.87293811,59.43917847,187.9689996,189.6136911,14.39444,0.130438221,1620000000000 ,1620000000000 ,1620000000000 ,1616812512820 -1616812512852 ,112.567709,26.87293683,59.44043732,187.9540278,189.6028644,14.388594,0.130384076,1620000000000 ,1620000000000 ,1620000000000 ,1616812512830 -1616812512864 ,112.5677088,26.87293554,59.44165421,187.9409685,189.5881677,14.386747,0.13035518,1620000000000 ,1620000000000 ,1620000000000 ,1616812512840 -1616812512873 ,112.5677086,26.87293426,59.44277191,187.9250132,189.5671441,14.384147,0.13032994,1620000000000 ,1620000000000 ,1620000000000 ,1616812512850 -1616812512883 ,112.5677084,26.87293297,59.44380188,187.9096316,189.5553183,14.381815,0.130304799,1620000000000 ,1620000000000 ,1620000000000 ,1616812512860 -1616812512893 ,112.5677082,26.87293169,59.44480896,187.8935123,189.5429825,14.377467,0.13027204,1620000000000 ,1620000000000 ,1620000000000 ,1616812512870 -1616812512903 ,112.5677079,26.8729304,59.44583511,187.8787318,189.526143,14.372135,0.130227383,1620000000000 ,1620000000000 ,1620000000000 ,1616812512880 -1616812512914 ,112.5677077,26.87292912,59.44688416,187.8651807,189.5110864,14.366867,0.130173065,1620000000000 ,1620000000000 ,1620000000000 ,1616812512900 -1616812512926 ,112.5677073,26.87292655,59.44885254,187.8386249,189.4907048,14.35897,0.260223902,1620000000000 ,1620000000000 ,1620000000000 ,1616812512910 -1616812512935 ,112.5677071,26.87292527,59.44971085,187.8263033,189.4751242,14.356982,0.130071666,1620000000000 ,1620000000000 ,1620000000000 ,1616812512920 -1616812512945 ,112.5677069,26.87292399,59.45049286,187.811714,189.4611683,14.35369,0.130038303,1620000000000 ,1620000000000 ,1620000000000 ,1616812512930 -1616812512955 ,112.5677067,26.8729227,59.45125961,187.7984634,189.4430258,14.350148,0.130007231,1620000000000 ,1620000000000 ,1620000000000 ,1616812512940 -1616812512964 ,112.5677064,26.87292142,59.45203018,187.7834916,189.4206602,14.345747,0.129970119,1620000000000 ,1620000000000 ,1620000000000 ,1616812512950 -1616812512974 ,112.5677062,26.87292014,59.45277023,187.7685199,189.4026611,14.3409395,0.129917696,1620000000000 ,1620000000000 ,1620000000000 ,1616812512960 -1616812512983 ,112.567706,26.87291886,59.45341492,187.7561436,189.3911011,14.337043,0.129877589,1620000000000 ,1620000000000 ,1620000000000 ,1616812512970 -1616812512998 ,112.567706,26.87291886,59.45341492,187.7561436,-400,14.337043,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812512980 -1616812513005 ,112.5677058,26.87291758,59.45392609,187.7431116,189.3813364,14.335663,0.129855665,1620000000000 ,1620000000000 ,1620000000000 ,1616812512980 -1616812513016 ,112.5677054,26.87291502,59.45468903,187.7147799,189.3550146,14.33002,0.259623107,1620000000000 ,1620000000000 ,1620000000000 ,1616812513000 -1616812513024 ,112.5677052,26.87291373,59.45509338,187.7015021,189.3222409,14.3271,0.12976873,1620000000000 ,1620000000000 ,1620000000000 ,1616812513010 -1616812513034 ,112.567705,26.87291245,59.455513,187.6873226,189.3129726,14.325227,0.129748029,1620000000000 ,1620000000000 ,1620000000000 ,1616812513020 -1616812513045 ,112.5677048,26.87291117,59.4559021,187.6735256,189.3064843,14.320537,0.129710744,1620000000000 ,1620000000000 ,1620000000000 ,1616812513030 -1616812513059 ,112.5677045,26.87290989,59.45627594,187.6588817,189.2980027,14.315773,0.1296628,1620000000000 ,1620000000000 ,1620000000000 ,1616812513040 -1616812513064 ,112.5677043,26.87290862,59.456707,187.6454945,189.2761111,14.310792,0.129618841,1620000000000 ,1620000000000 ,1620000000000 ,1616812513050 -1616812513076 ,112.5677041,26.87290734,59.4571991,187.6318068,189.2498241,14.3073225,0.129580627,1620000000000 ,1620000000000 ,1620000000000 ,1616812513060 -1616812513084 ,112.5677039,26.87290606,59.45775986,187.6171902,189.2354282,14.304003,0.129550115,1620000000000 ,1620000000000 ,1620000000000 ,1616812513070 -1616812513105 ,112.5677037,26.87290478,59.45839691,187.60312,189.2226269,14.299249,0.129513234,1620000000000 ,1620000000000 ,1620000000000 ,1616812513080 -1616812513109 ,112.5677035,26.8729035,59.45913315,187.5890498,189.2093783,14.292663,0.129455886,1620000000000 ,1620000000000 ,1620000000000 ,1616812513090 -1616812513117 ,112.5677033,26.87290222,59.45995712,187.5748977,189.1952607,14.288008,0.129413612,1620000000000 ,1620000000000 ,1620000000000 ,1616812513100 -1616812513125 ,112.5677031,26.87290095,59.46080399,187.5638601,189.1625191,14.283803,0.129369227,1620000000000 ,1620000000000 ,1620000000000 ,1616812513110 -1616812513135 ,112.5677029,26.87289967,59.46166611,187.5486697,189.1461228,14.279995,0.129333347,1620000000000 ,1620000000000 ,1620000000000 ,1616812513120 -1616812513145 ,112.5677027,26.87289839,59.46258163,187.5324959,189.133262,14.277597,0.129310627,1620000000000 ,1620000000000 ,1620000000000 ,1616812513130 -1616812513156 ,112.5677025,26.87289712,59.46355438,187.5188628,189.1163463,14.272551,0.129269975,1620000000000 ,1620000000000 ,1620000000000 ,1616812513140 -1616812513165 ,112.5677023,26.87289584,59.46459961,187.5081804,189.1069198,14.267831,0.129229142,1620000000000 ,1620000000000 ,1620000000000 ,1616812513150 -1616812513175 ,112.5677021,26.87289457,59.4656868,187.4948752,189.0937897,14.262956,0.129182136,1620000000000 ,1620000000000 ,1620000000000 ,1616812513160 -1616812513188 ,112.5677019,26.87289329,59.46678925,187.4831819,189.0808272,14.259933,0.129152377,1620000000000 ,1620000000000 ,1620000000000 ,1616812513170 -1616812513197 ,112.5677017,26.87289201,59.46787643,187.471434,189.0606762,14.257137,0.129123309,1620000000000 ,1620000000000 ,1620000000000 ,1616812513180 -1616812513207 ,112.5677015,26.87289074,59.46894455,187.4582927,189.0471314,14.253074,0.129089098,1620000000000 ,1620000000000 ,1620000000000 ,1616812513190 -1616812513216 ,112.5677013,26.87288946,59.46936798,187.4517084,188.9152293,14.251921,0.129186725,1620000000000 ,1620000000000 ,1620000000000 ,1616812513200 -1616812513226 ,112.5677011,26.87288819,59.46875381,187.4387037,188.6723616,14.245957,0.129295877,1620000000000 ,1620000000000 ,1620000000000 ,1616812513210 -1616812513237 ,112.5677009,26.87288691,59.46822357,187.4254805,188.6583201,14.241268,0.129249291,1620000000000 ,1620000000000 ,1620000000000 ,1616812513220 -1616812513248 ,112.5677007,26.87288563,59.46776199,187.4128583,188.6438519,14.238805,0.129224115,1620000000000 ,1620000000000 ,1620000000000 ,1616812513230 -1616812513256 ,112.5677005,26.87288435,59.46733093,187.4000722,188.6310543,14.234838,0.129194663,1620000000000 ,1620000000000 ,1620000000000 ,1616812513240 -1616812513271 ,112.5677003,26.87288308,59.46689987,187.3899635,188.6141825,14.23006,0.129153545,1620000000000 ,1620000000000 ,1620000000000 ,1616812513250 -1616812513278 ,112.5677001,26.8728818,59.466465,187.3780243,188.603123,14.226016,0.12911587,1620000000000 ,1620000000000 ,1620000000000 ,1616812513260 -1616812513288 ,112.5676999,26.87288052,59.46608734,187.3630525,188.5911026,14.220638,0.129067394,1620000000000 ,1620000000000 ,1620000000000 ,1616812513270 -1616812513300 ,112.5676997,26.87287925,59.46578598,187.3508675,188.5775551,14.2171955,0.129039299,1620000000000 ,1620000000000 ,1620000000000 ,1616812513280 -1616812513307 ,112.5676995,26.87287797,59.46551895,187.3383819,188.5655914,14.212462,0.129000327,1620000000000 ,1620000000000 ,1620000000000 ,1616812513290 -1616812513317 ,112.5676993,26.8728767,59.46522522,187.3268252,188.5560494,14.207407,0.128955934,1620000000000 ,1620000000000 ,1620000000000 ,1616812513300 -1616812513327 ,112.5676991,26.87287542,59.46492386,187.3136566,188.5458809,14.20207,0.128906951,1620000000000 ,1620000000000 ,1620000000000 ,1616812513310 -1616812513339 ,112.5676989,26.87287415,59.46459961,187.2999962,188.5312243,14.198451,0.12886845,1620000000000 ,1620000000000 ,1620000000000 ,1616812513320 -1616812513348 ,112.5676988,26.87287287,59.46420288,187.2894777,188.5166901,14.197619,0.128856557,1620000000000 ,1620000000000 ,1620000000000 ,1616812513330 -1616812513359 ,112.5676986,26.8728716,59.4636879,187.2767736,188.5074484,14.195898,0.128839761,1620000000000 ,1620000000000 ,1620000000000 ,1616812513340 -1616812513367 ,112.5676984,26.87287032,59.46310425,187.2614466,188.4952118,14.19166,0.128804495,1620000000000 ,1620000000000 ,1620000000000 ,1616812513350 -1616812513379 ,112.5676982,26.87286905,59.46252441,187.2466661,188.4864012,14.186309,0.128757465,1620000000000 ,1620000000000 ,1620000000000 ,1616812513360 -1616812513389 ,112.567698,26.87286778,59.46194077,187.2355192,188.4748586,14.180788,0.128709729,1620000000000 ,1620000000000 ,1620000000000 ,1616812513370 -1616812513397 ,112.5676978,26.87286651,59.46133423,187.2236074,188.4629368,14.177516,0.128671317,1620000000000 ,1620000000000 ,1620000000000 ,1616812513380 -1616812513412 ,112.5676976,26.87286523,59.46070099,187.2102749,188.4502363,14.173854,0.128641478,1620000000000 ,1620000000000 ,1620000000000 ,1616812513390 -1616812513417 ,112.5676974,26.87286396,59.46004868,187.1977346,188.4363813,14.169473,0.128603698,1620000000000 ,1620000000000 ,1620000000000 ,1616812513400 -1616812513429 ,112.5676972,26.87286269,59.45936966,187.184648,188.4345843,14.165844,0.128570096,1620000000000 ,1620000000000 ,1620000000000 ,1616812513410 -1616812513439 ,112.5676971,26.87286142,59.45863342,187.1718619,188.4240562,14.162395,0.128534184,1620000000000 ,1620000000000 ,1620000000000 ,1616812513420 -1616812513447 ,112.5676969,26.87286015,59.45783234,187.1607696,188.4194398,14.159903,0.12850989,1620000000000 ,1620000000000 ,1620000000000 ,1616812513430 -1616812513459 ,112.5676967,26.87285888,59.45700836,187.1471093,188.4056671,14.155945,0.128475472,1620000000000 ,1620000000000 ,1620000000000 ,1616812513440 -1616812513470 ,112.5676965,26.87285761,59.45685196,187.1344051,188.5060149,14.150751,0.128283824,1620000000000 ,1620000000000 ,1620000000000 ,1616812513450 -1616812513478 ,112.5676963,26.87285634,59.45736313,187.1209633,188.620106,14.145619,0.128090687,1620000000000 ,1620000000000 ,1620000000000 ,1616812513460 -1616812513489 ,112.5676961,26.87285507,59.45780563,187.108505,188.6112202,14.142486,0.128058134,1620000000000 ,1620000000000 ,1620000000000 ,1616812513470 -1616812513499 ,112.5676959,26.87285381,59.45814514,187.0957189,188.6022464,14.14037,0.128029657,1620000000000 ,1620000000000 ,1620000000000 ,1616812513480 -1616812513510 ,112.5676957,26.87285254,59.45840836,187.0838071,188.5860535,14.137693,0.12800215,1620000000000 ,1620000000000 ,1620000000000 ,1616812513490 -1616812513519 ,112.5676955,26.87285128,59.45861053,187.0708844,188.5599789,14.134909,0.127975649,1620000000000 ,1620000000000 ,1620000000000 ,1616812513500 -1616812513528 ,112.5676953,26.87285001,59.45876694,187.0583441,188.5431324,14.132381,0.127948683,1620000000000 ,1620000000000 ,1620000000000 ,1616812513510 -1616812513545 ,112.5676951,26.87284875,59.45888519,187.0473612,188.5385384,14.127992,0.127907642,1620000000000 ,1620000000000 ,1620000000000 ,1616812513520 -1616812513568 ,112.567695,26.87284748,59.458992,187.0358591,188.5284423,14.123063,0.127865783,1620000000000 ,1620000000000 ,1620000000000 ,1616812513530 -1616812513574 ,112.5676948,26.87284622,59.45911789,187.0249582,188.5061772,14.119415,0.127827781,1620000000000 ,1620000000000 ,1620000000000 ,1616812513540 -1616812513576 ,112.5676946,26.87284495,59.45923996,187.0135381,188.4934341,14.116512,0.12779781,1620000000000 ,1620000000000 ,1620000000000 ,1616812513550 -1616812513580 ,112.5676944,26.87284369,59.45932388,187.0048228,188.4866618,14.114706,0.127774519,1620000000000 ,1620000000000 ,1620000000000 ,1616812513560 -1616812513589 ,112.5676942,26.87284243,59.4593811,186.994113,188.4839483,14.109961,0.127740523,1620000000000 ,1620000000000 ,1620000000000 ,1616812513570 -1616812513599 ,112.567694,26.87284116,59.45944977,186.9827476,188.4700909,14.1053705,0.12769564,1620000000000 ,1620000000000 ,1620000000000 ,1616812513580 -1616812513608 ,112.5676938,26.8728399,59.45956039,186.9722018,188.4556082,14.100986,0.127654866,1620000000000 ,1620000000000 ,1620000000000 ,1616812513590 -1616812513624 ,112.5676936,26.87283864,59.45968628,186.9618199,188.4473571,14.095816,0.127611543,1620000000000 ,1620000000000 ,1620000000000 ,1616812513600 -1616812513631 ,112.5676935,26.87283738,59.45982361,186.9497714,188.4312353,14.091186,0.127566532,1620000000000 ,1620000000000 ,1620000000000 ,1616812513610 -1616812513641 ,112.5676933,26.87283612,59.45998764,186.9388431,188.4186555,14.086885,0.12752439,1620000000000 ,1620000000000 ,1620000000000 ,1616812513620 -1616812513650 ,112.5676931,26.87283485,59.46019363,186.9274777,188.4093913,14.081218,0.127478492,1620000000000 ,1620000000000 ,1620000000000 ,1616812513630 -1616812513660 ,112.5676929,26.87283359,59.46042633,186.9175603,188.3948802,14.077012,0.12743704,1620000000000 ,1620000000000 ,1620000000000 ,1616812513640 -1616812513669 ,112.5676927,26.87283233,59.46068192,186.9066593,188.3750625,14.074041,0.127403036,1620000000000 ,1620000000000 ,1620000000000 ,1616812513650 -1616812513680 ,112.5676925,26.87283107,59.46095657,186.8963047,188.3562205,14.070632,0.127371587,1620000000000 ,1620000000000 ,1620000000000 ,1616812513660 -1616812513691 ,112.5676923,26.87282981,59.46125412,186.8869337,188.3413593,14.067716,0.127340656,1620000000000 ,1620000000000 ,1620000000000 ,1616812513670 -1616812513699 ,112.5676922,26.87282855,59.46156311,186.8770709,188.3316968,14.064409,0.127316168,1620000000000 ,1620000000000 ,1620000000000 ,1616812513680 -1616812513713 ,112.567692,26.87282729,59.46190262,186.8663612,188.3216798,14.06047,0.127276923,1620000000000 ,1620000000000 ,1620000000000 ,1616812513690 -1616812513724 ,112.5676918,26.87282604,59.46229553,186.8560886,188.3011306,14.054494,0.1272279,1620000000000 ,1620000000000 ,1620000000000 ,1616812513700 -1616812513732 ,112.5676916,26.87282478,59.46272659,186.8435483,188.286961,14.050419,0.12718679,1620000000000 ,1620000000000 ,1620000000000 ,1616812513710 -1616812513742 ,112.5676914,26.87282352,59.4631424,186.8325381,188.2791828,14.048008,0.127159821,1620000000000 ,1620000000000 ,1620000000000 ,1616812513720 -1616812513751 ,112.5676912,26.87282226,59.46350479,186.8210634,188.2724701,14.045068,0.127131793,1620000000000 ,1620000000000 ,1620000000000 ,1616812513730 -1616812513762 ,112.5676911,26.872821,59.46385193,186.8103536,188.2620046,14.041224,0.127096251,1620000000000 ,1620000000000 ,1620000000000 ,1616812513740 -1616812513771 ,112.5676909,26.87281975,59.46422958,186.798633,188.2446609,14.036002,0.127053789,1620000000000 ,1620000000000 ,1620000000000 ,1616812513750 -1616812513781 ,112.5676907,26.87281849,59.4646492,186.7878686,188.2365179,14.032106,0.127012537,1620000000000 ,1620000000000 ,1620000000000 ,1616812513760 -1616812513793 ,112.5676905,26.87281723,59.46509933,186.7768037,188.2258994,14.028136,0.126977898,1620000000000 ,1620000000000 ,1620000000000 ,1616812513770 -1616812513804 ,112.5676903,26.87281597,59.46559143,186.7670775,188.2182911,14.025021,0.126945968,1620000000000 ,1620000000000 ,1620000000000 ,1616812513780 -1616812513812 ,112.5676901,26.87281472,59.46619034,186.753144,188.2088665,14.020124,0.126908777,1620000000000 ,1620000000000 ,1620000000000 ,1616812513790 -1616812513822 ,112.56769,26.87281346,59.46687317,186.7402759,188.1934199,14.015869,0.126873663,1620000000000 ,1620000000000 ,1620000000000 ,1616812513800 -1616812513834 ,112.5676898,26.87281221,59.46760941,186.7280362,188.1878405,14.010003,0.126824583,1620000000000 ,1620000000000 ,1620000000000 ,1616812513810 -1616812513842 ,112.5676896,26.87281095,59.4683876,186.7150042,188.1844895,14.006533,0.126785247,1620000000000 ,1620000000000 ,1620000000000 ,1616812513820 -1616812513852 ,112.5676894,26.8728097,59.46925735,186.7024366,188.1755207,14.003455,0.126764147,1620000000000 ,1620000000000 ,1620000000000 ,1616812513830 -1616812513861 ,112.5676892,26.87280844,59.47025299,186.6906614,188.1644237,13.997053,0.126718859,1620000000000 ,1620000000000 ,1620000000000 ,1616812513840 -1616812513872 ,112.5676891,26.87280719,59.47134018,186.6781758,188.1471803,13.991026,0.126662281,1620000000000 ,1620000000000 ,1620000000000 ,1616812513850 -1616812513882 ,112.5676889,26.87280594,59.47248077,186.6678212,188.136584,13.986202,0.126617909,1620000000000 ,1620000000000 ,1620000000000 ,1616812513860 -1616812513893 ,112.5676887,26.87280468,59.47365952,186.655964,188.1302224,13.983841,0.126593373,1620000000000 ,1620000000000 ,1620000000000 ,1616812513870 -1616812513905 ,112.5676885,26.87280343,59.47480774,186.6433418,188.1174582,13.98291,0.126579941,1620000000000 ,1620000000000 ,1620000000000 ,1616812513880 -1616812513917 ,112.5676883,26.87280218,59.47586441,186.6299,188.1049971,13.980342,0.126560531,1620000000000 ,1620000000000 ,1620000000000 ,1616812513900 -1616812513929 ,112.5676882,26.87280092,59.4768486,186.6163489,188.0907732,13.973059,0.126502854,1620000000000 ,1620000000000 ,1620000000000 ,1616812513900 -1616812513933 ,112.567688,26.87279967,59.47781372,186.6024153,188.0744773,13.967345,0.126445599,1620000000000 ,1620000000000 ,1620000000000 ,1616812513920 -1616812513942 ,112.5676878,26.87279842,59.47875977,186.5891648,188.0579301,13.963735,0.126407704,1620000000000 ,1620000000000 ,1620000000000 ,1616812513930 -1616812513954 ,112.5676876,26.87279717,59.47964859,186.5762147,188.0425668,13.960008,0.126372929,1620000000000 ,1620000000000 ,1620000000000 ,1616812513940 -1616812513962 ,112.5676875,26.87279592,59.48052216,186.5620079,188.0342853,13.955811,0.126336623,1620000000000 ,1620000000000 ,1620000000000 ,1616812513940 -1616812513973 ,112.5676871,26.87279342,59.48239899,186.5376378,188.0101144,13.947816,0.252577986,1620000000000 ,1620000000000 ,1620000000000 ,1616812513960 -1616812513982 ,112.5676869,26.87279217,59.48330688,186.5246605,187.985775,13.943833,0.126223157,1620000000000 ,1620000000000 ,1620000000000 ,1616812513970 -1616812514005 ,112.5676868,26.87279092,59.4840889,186.5133497,187.9794192,13.941033,0.126192982,1620000000000 ,1620000000000 ,1620000000000 ,1616812513980 -1616812514007 ,112.5676868,26.87279092,59.4840889,186.5133497,-400,13.941033,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812513980 -1616812514014 ,112.5676864,26.87278842,59.48532486,186.4868212,187.9661068,13.9334545,0.252290538,1620000000000 ,1620000000000 ,1620000000000 ,1616812514000 -1616812514025 ,112.5676862,26.87278717,59.48594284,186.4705107,187.9290166,13.926635,0.126065131,1620000000000 ,1620000000000 ,1620000000000 ,1616812514010 -1616812514033 ,112.5676862,26.87278717,59.48594284,186.4705107,-400,13.926635,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812514020 -1616812514043 ,112.5676859,26.87278468,59.48720169,186.4433539,187.910361,13.916457,0.251970362,1620000000000 ,1620000000000 ,1620000000000 ,1616812514030 -1616812514055 ,112.5676857,26.87278343,59.48777008,186.4291471,187.8869285,13.914686,0.125938565,1620000000000 ,1620000000000 ,1620000000000 ,1616812514040 -1616812514064 ,112.5676855,26.87278218,59.48827362,186.4161424,187.8601927,13.9146805,0.125928395,1620000000000 ,1620000000000 ,1620000000000 ,1616812514050 -1616812514075 ,112.5676854,26.87278093,59.48867416,186.4022635,187.837787,13.913007,0.125916884,1620000000000 ,1620000000000 ,1620000000000 ,1616812514060 -1616812514084 ,112.5676852,26.87277969,59.48898697,186.3915537,187.8259213,13.909099,0.125874393,1620000000000 ,1620000000000 ,1620000000000 ,1616812514070 -1616812514095 ,112.567685,26.87277844,59.48928452,186.3802156,187.8129377,13.905236,0.125844562,1620000000000 ,1620000000000 ,1620000000000 ,1616812514080 -1616812514105 ,112.567685,26.87277844,59.48928452,186.3802156,-400,13.905236,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812514080 -1616812514116 ,112.5676847,26.87277595,59.49000168,186.3596977,187.7842413,13.89522,0.251543877,1620000000000 ,1620000000000 ,1620000000000 ,1616812514100 -1616812514125 ,112.5676845,26.8727747,59.49035263,186.3496164,187.7596758,13.891764,0.125712508,1620000000000 ,1620000000000 ,1620000000000 ,1616812514110 -1616812514138 ,112.5676844,26.87277346,59.49064255,186.3413928,187.7517478,13.887275,0.125666367,1620000000000 ,1620000000000 ,1620000000000 ,1616812514120 -1616812514146 ,112.5676842,26.87277221,59.49092484,186.3296449,187.7445508,13.885317,0.12564662,1620000000000 ,1620000000000 ,1620000000000 ,1616812514130 -1616812514156 ,112.567684,26.87277097,59.49122238,186.3191537,187.7301344,13.884162,0.125625322,1620000000000 ,1620000000000 ,1620000000000 ,1616812514140 -1616812514164 ,112.5676838,26.87276972,59.49154663,186.3097008,187.7238221,13.882266,0.125614892,1620000000000 ,1620000000000 ,1620000000000 ,1616812514150 -1616812514175 ,112.5676837,26.87276848,59.49187469,186.3019963,187.7160481,13.878032,0.125578574,1620000000000 ,1620000000000 ,1620000000000 ,1616812514160 -1616812514187 ,112.5676835,26.87276723,59.49223328,186.2900844,187.6995267,13.872408,0.125537335,1620000000000 ,1620000000000 ,1620000000000 ,1616812514170 -1616812514201 ,112.5676833,26.87276599,59.49267578,186.2807407,187.6919377,13.865909,0.125475684,1620000000000 ,1620000000000 ,1620000000000 ,1616812514180 -1616812514206 ,112.5676832,26.87276475,59.49320221,186.274375,187.6761544,13.860285,0.1254244,1620000000000 ,1620000000000 ,1620000000000 ,1616812514190 -1616812514216 ,112.567683,26.8727635,59.49457169,186.2626544,187.5711723,13.885095,0.12582681,1620000000000 ,1620000000000 ,1620000000000 ,1616812514200 -1616812514226 ,112.5676828,26.87276224,59.49720764,186.2558789,187.4046545,13.879014,0.126530856,1620000000000 ,1620000000000 ,1620000000000 ,1616812514210 -1616812514236 ,112.5676827,26.87276099,59.50002289,186.2496224,187.3944881,13.873886,0.126484647,1620000000000 ,1620000000000 ,1620000000000 ,1616812514220 -1616812514246 ,112.5676825,26.87275974,59.50292969,186.2439943,187.393545,13.872812,0.126465409,1620000000000 ,1620000000000 ,1620000000000 ,1616812514230 -1616812514256 ,112.5676824,26.87275848,59.50582886,186.2398416,187.3882319,13.871808,0.126462732,1620000000000 ,1620000000000 ,1620000000000 ,1616812514240 -1616812514267 ,112.5676822,26.87275723,59.50873184,186.2327928,187.3803338,13.868211,0.126440367,1620000000000 ,1620000000000 ,1620000000000 ,1616812514250 -1616812514276 ,112.567682,26.87275597,59.51171875,186.2239136,187.35962,13.860855,0.126381789,1620000000000 ,1620000000000 ,1620000000000 ,1616812514260 -1616812514286 ,112.5676819,26.87275472,59.51478958,186.2164277,187.3358602,13.854578,0.126322352,1620000000000 ,1620000000000 ,1620000000000 ,1616812514270 -1616812514296 ,112.5676817,26.87275347,59.51786423,186.2122476,187.3267095,13.847073,0.126262966,1620000000000 ,1620000000000 ,1620000000000 ,1616812514280 -1616812514306 ,112.5676815,26.87275222,59.52087021,186.2089418,187.3249688,13.842075,0.126209424,1620000000000 ,1620000000000 ,1620000000000 ,1616812514290 -1616812514316 ,112.5676814,26.87275097,59.5238533,186.2044066,187.3269023,13.837305,0.126166371,1620000000000 ,1620000000000 ,1620000000000 ,1616812514300 -1616812514326 ,112.5676812,26.87274971,59.52684021,186.2033684,187.3106986,13.835092,0.126137957,1620000000000 ,1620000000000 ,1620000000000 ,1616812514310 -1616812514336 ,112.5676811,26.87274846,59.52976227,186.2035869,187.2835763,13.835742,0.126136703,1620000000000 ,1620000000000 ,1620000000000 ,1616812514320 -1616812514346 ,112.5676809,26.87274721,59.53260422,186.2005816,187.2830241,13.833604,0.126121821,1620000000000 ,1620000000000 ,1620000000000 ,1616812514330 -1616812514358 ,112.5676807,26.87274596,59.53533554,186.1971119,187.2780011,13.828822,0.126085441,1620000000000 ,1620000000000 ,1620000000000 ,1616812514340 -1616812514366 ,112.5676806,26.87274471,59.53794098,186.1931777,187.2775704,13.824997,0.126043569,1620000000000 ,1620000000000 ,1620000000000 ,1616812514350 -1616812514377 ,112.5676804,26.87274346,59.5404892,186.1895987,187.2928403,13.82325,0.126015422,1620000000000 ,1620000000000 ,1620000000000 ,1616812514360 -1616812514387 ,112.5676803,26.87274221,59.54303741,186.1875496,187.2878657,13.81581,0.125970544,1620000000000 ,1620000000000 ,1620000000000 ,1616812514370 -1616812514396 ,112.5676801,26.87274096,59.54563522,186.1842985,187.2634002,13.808697,0.125908413,1620000000000 ,1620000000000 ,1620000000000 ,1616812514380 -1616812514406 ,112.5676799,26.87273971,59.54827499,186.1831783,187.2605594,13.803878,0.125857485,1620000000000 ,1620000000000 ,1620000000000 ,1616812514390 -1616812514416 ,112.5676798,26.87273847,59.55089951,186.1835335,187.2703055,13.80082,0.125822774,1620000000000 ,1620000000000 ,1620000000000 ,1616812514400 -1616812514431 ,112.5676796,26.87273722,59.55345535,186.1854186,187.2691404,13.802059,0.125825088,1620000000000 ,1620000000000 ,1620000000000 ,1616812514410 -1616812514442 ,112.5676795,26.87273597,59.55596542,186.1873311,187.262922,13.8005085,0.125821517,1620000000000 ,1620000000000 ,1620000000000 ,1616812514420 -1616812514450 ,112.5676793,26.87273472,59.55847549,186.1867847,187.2533425,13.794933,0.12577729,1620000000000 ,1620000000000 ,1620000000000 ,1616812514430 -1616812514459 ,112.5676792,26.87273348,59.56097412,186.1882053,187.2471534,13.789287,0.125722668,1620000000000 ,1620000000000 ,1620000000000 ,1616812514440 -1616812514468 ,112.567679,26.87273223,59.56261826,186.1911287,187.3420624,13.783539,0.125208086,1620000000000 ,1620000000000 ,1620000000000 ,1616812514450 -1616812514478 ,112.5676788,26.872731,59.56335449,186.1929592,187.456077,13.780982,0.124714261,1620000000000 ,1620000000000 ,1620000000000 ,1616812514460 -1616812514490 ,112.5676787,26.87272976,59.56399918,186.1914019,187.4710554,13.777696,0.12468462,1620000000000 ,1620000000000 ,1620000000000 ,1616812514470 -1616812514501 ,112.5676785,26.87272853,59.56466675,186.1895987,187.4635683,13.771972,0.124636944,1620000000000 ,1620000000000 ,1620000000000 ,1616812514480 -1616812514510 ,112.5676783,26.87272729,59.56539154,186.1879321,187.4581073,13.766819,0.124592731,1620000000000 ,1620000000000 ,1620000000000 ,1616812514490 -1616812514523 ,112.5676783,26.87272729,59.56539154,186.1865661,-400,13.763167,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812514500 -1616812514529 ,112.567678,26.87272482,59.56694412,186.187495,187.4712476,13.762453,0.249098217,1620000000000 ,1620000000000 ,1620000000000 ,1616812514510 -1616812514542 ,112.5676779,26.87272359,59.56767273,186.1884239,187.485266,13.757301,0.124504562,1620000000000 ,1620000000000 ,1620000000000 ,1616812514520 -1616812514552 ,112.5676777,26.87272235,59.56838989,186.1898719,187.4783116,13.752561,0.124460609,1620000000000 ,1620000000000 ,1620000000000 ,1616812514530 -1616812514562 ,112.5676775,26.87272112,59.5691185,186.1902271,187.4571503,13.746973,0.124410334,1620000000000 ,1620000000000 ,1620000000000 ,1616812514540 -1616812514570 ,112.5676774,26.87271988,59.56987762,186.189025,187.4532404,13.7425,0.12436308,1620000000000 ,1620000000000 ,1620000000000 ,1616812514550 -1616812514580 ,112.5676772,26.87271865,59.57056427,186.1895987,187.4752941,13.73865,0.124335248,1620000000000 ,1620000000000 ,1620000000000 ,1616812514560 -1616812514589 ,112.5676771,26.87271742,59.57113647,186.1896533,187.5042412,13.736391,0.124294612,1620000000000 ,1620000000000 ,1620000000000 ,1616812514570 -1616812514599 ,112.5676769,26.87271619,59.57168579,186.1885878,187.4968639,13.73241,0.124267671,1620000000000 ,1620000000000 ,1620000000000 ,1616812514580 -1616812514609 ,112.5676767,26.87271496,59.57230377,186.1856099,187.4805901,13.727638,0.124224091,1620000000000 ,1620000000000 ,1620000000000 ,1616812514590 -1616812514619 ,112.5676766,26.87271372,59.57297897,186.1812659,187.4836028,13.72508,0.124200737,1620000000000 ,1620000000000 ,1620000000000 ,1616812514600 -1616812514630 ,112.5676764,26.87271249,59.57360077,186.1785065,187.492117,13.720775,0.124155652,1620000000000 ,1620000000000 ,1620000000000 ,1616812514610 -1616812514639 ,112.5676762,26.87271126,59.57414627,186.1762115,187.5068957,13.717568,0.124121808,1620000000000 ,1620000000000 ,1620000000000 ,1616812514620 -1616812514649 ,112.5676761,26.87271003,59.574646,186.1751733,187.5141611,13.715089,0.124099222,1620000000000 ,1620000000000 ,1620000000000 ,1616812514630 -1616812514659 ,112.5676759,26.8727088,59.57515335,186.1741352,187.5076704,13.71322,0.124084113,1620000000000 ,1620000000000 ,1620000000000 ,1616812514640 -1616812514670 ,112.5676758,26.87270757,59.57569885,186.1711299,187.4942341,13.70812,0.124033406,1620000000000 ,1620000000000 ,1620000000000 ,1616812514650 -1616812514679 ,112.5676756,26.87270634,59.57632828,186.1674962,187.496909,13.702592,0.123990112,1620000000000 ,1620000000000 ,1620000000000 ,1616812514660 -1616812514689 ,112.5676754,26.87270511,59.57708359,186.1674416,187.5106651,13.696718,0.123942195,1620000000000 ,1620000000000 ,1620000000000 ,1616812514670 -1616812514699 ,112.5676753,26.87270389,59.57792664,186.1672776,187.510115,13.691814,0.123895976,1620000000000 ,1620000000000 ,1620000000000 ,1616812514680 -1616812514714 ,112.5676751,26.87270266,59.57888412,186.1642997,187.5053079,13.687514,0.123857419,1620000000000 ,1620000000000 ,1620000000000 ,1616812514690 -1616812514720 ,112.5676749,26.87270143,59.5799675,186.1613217,187.4899882,13.683132,0.123820851,1620000000000 ,1620000000000 ,1620000000000 ,1616812514700 -1616812514729 ,112.5676748,26.8727002,59.58113098,186.157169,187.4881127,13.679504,0.123791024,1620000000000 ,1620000000000 ,1620000000000 ,1616812514710 -1616812514742 ,112.5676746,26.87269898,59.58235931,186.1555844,187.5061995,13.674392,0.123751531,1620000000000 ,1620000000000 ,1620000000000 ,1616812514720 -1616812514752 ,112.5676745,26.87269775,59.58363724,186.1544369,187.5139043,13.670609,0.123712388,1620000000000 ,1620000000000 ,1620000000000 ,1616812514730 -1616812514761 ,112.5676743,26.87269652,59.58506393,186.1525244,187.4977685,13.664139,0.123665979,1620000000000 ,1620000000000 ,1620000000000 ,1616812514740 -1616812514774 ,112.5676741,26.8726953,59.58668137,186.1500656,187.479032,13.657209,0.123609684,1620000000000 ,1620000000000 ,1620000000000 ,1616812514750 -1616812514782 ,112.567674,26.87269407,59.58840179,186.1472789,187.4691485,13.652849,0.123567574,1620000000000 ,1620000000000 ,1620000000000 ,1616812514760 -1616812514795 ,112.5676738,26.87269285,59.5901413,186.1481531,187.4691543,13.647266,0.123520963,1620000000000 ,1620000000000 ,1620000000000 ,1616812514770 -1616812514805 ,112.5676737,26.87269162,59.5918808,186.1485902,187.4601279,13.643848,0.123482921,1620000000000 ,1620000000000 ,1620000000000 ,1616812514780 -1616812514815 ,112.5676735,26.8726904,59.59365845,186.1485629,187.4587682,13.640359,0.123457849,1620000000000 ,1620000000000 ,1620000000000 ,1616812514790 -1616812514825 ,112.5676733,26.87268918,59.59542084,186.1475794,187.451127,13.637343,0.123427506,1620000000000 ,1620000000000 ,1620000000000 ,1616812514800 -1616812514834 ,112.5676732,26.87268795,59.59708405,186.1487815,187.4382016,13.634193,0.123396467,1620000000000 ,1620000000000 ,1620000000000 ,1616812514820 -1616812514844 ,112.567673,26.87268673,59.59864044,186.1503934,187.4386432,13.629292,0.123353782,1620000000000 ,1620000000000 ,1620000000000 ,1616812514830 -1616812514852 ,112.5676729,26.87268551,59.60015106,186.1502568,187.4402423,13.626042,0.123321537,1620000000000 ,1620000000000 ,1620000000000 ,1616812514840 -1616812514862 ,112.5676727,26.87268428,59.60163116,186.1494918,187.4328536,13.622091,0.123287844,1620000000000 ,1620000000000 ,1620000000000 ,1616812514850 -1616812514873 ,112.5676724,26.87268184,59.60463333,186.1514316,187.4347655,13.611631,0.246438987,1620000000000 ,1620000000000 ,1620000000000 ,1616812514860 -1616812514883 ,112.5676724,26.87268184,59.60463333,186.1514316,-400,13.611631,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812514870 -1616812514895 ,112.5676721,26.8726794,59.60764313,186.1532621,187.4334688,13.6054945,0.246299967,1620000000000 ,1620000000000 ,1620000000000 ,1616812514880 -1616812514903 ,112.5676721,26.8726794,59.60764313,186.1532621,-400,13.6054945,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812514880 -1616812514914 ,112.5676717,26.87267696,59.61035156,186.1553385,187.4546917,13.600189,0.24621561,1620000000000 ,1620000000000 ,1620000000000 ,1616812514900 -1616812514925 ,112.5676716,26.87267574,59.61168289,186.1542456,187.4536037,13.594233,0.123046515,1620000000000 ,1620000000000 ,1620000000000 ,1616812514910 -1616812514935 ,112.5676714,26.87267452,59.61306381,186.154956,187.4544535,13.588625,0.122992817,1620000000000 ,1620000000000 ,1620000000000 ,1616812514920 -1616812514947 ,112.5676713,26.8726733,59.61444092,186.156322,187.4496087,13.583564,0.122953167,1620000000000 ,1620000000000 ,1620000000000 ,1616812514930 -1616812514958 ,112.5676711,26.87267208,59.6157074,186.1566226,187.446776,13.580238,0.122915585,1620000000000 ,1620000000000 ,1620000000000 ,1616812514940 -1616812514964 ,112.5676709,26.87267086,59.61685944,186.1553385,187.462019,13.578797,0.122892195,1620000000000 ,1620000000000 ,1620000000000 ,1616812514950 -1616812514976 ,112.5676708,26.87266964,59.61794662,186.1545735,187.4640422,13.575463,0.12286893,1620000000000 ,1620000000000 ,1620000000000 ,1616812514960 -1616812514984 ,112.5676706,26.87266842,59.61898804,186.154956,187.4639963,13.572935,0.122848633,1620000000000 ,1620000000000 ,1620000000000 ,1616812514970 -1616812514994 ,112.5676705,26.87266721,59.61999893,186.1573056,187.4602224,13.568555,0.122811911,1620000000000 ,1620000000000 ,1620000000000 ,1616812514980 -1616812515005 ,112.5676705,26.87266721,59.61999893,186.1573056,-400,13.568555,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812514980 -1616812515014 ,112.5676701,26.87266477,59.62190247,186.1577427,187.4507201,13.55837,0.2454708,1620000000000 ,1620000000000 ,1620000000000 ,1616812515000 -1616812515025 ,112.56767,26.87266356,59.62277222,186.1603928,187.4647116,13.557834,0.122700579,1620000000000 ,1620000000000 ,1620000000000 ,1616812515010 -1616812515034 ,112.5676698,26.87266234,59.6235466,186.1609119,187.4672268,13.554754,0.122678653,1620000000000 ,1620000000000 ,1620000000000 ,1616812515020 -1616812515044 ,112.5676697,26.87266112,59.62427521,186.1592727,187.4686943,13.551246,0.122646311,1620000000000 ,1620000000000 ,1620000000000 ,1616812515030 -1616812515054 ,112.5676695,26.87265991,59.62499619,186.1573056,187.4668148,13.546589,0.122605413,1620000000000 ,1620000000000 ,1620000000000 ,1616812515040 -1616812515065 ,112.5676693,26.87265869,59.6257019,186.1560215,187.4758739,13.543392,0.122574444,1620000000000 ,1620000000000 ,1620000000000 ,1616812515050 -1616812515075 ,112.5676692,26.87265748,59.62633133,186.1549013,187.4853689,13.540799,0.122547781,1620000000000 ,1620000000000 ,1620000000000 ,1616812515060 -1616812515085 ,112.567669,26.87265626,59.62685394,186.152825,187.5045922,13.537913,0.122523347,1620000000000 ,1620000000000 ,1620000000000 ,1616812515070 -1616812515095 ,112.5676689,26.87265505,59.62733078,186.1496558,187.5083722,13.534123,0.122490085,1620000000000 ,1620000000000 ,1620000000000 ,1616812515080 -1616812515105 ,112.5676687,26.87265383,59.62779617,186.1448473,187.5045926,13.531622,0.122463703,1620000000000 ,1620000000000 ,1620000000000 ,1616812515090 -1616812515115 ,112.5676686,26.87265262,59.62824631,186.1415142,187.507321,13.528773,0.122434537,1620000000000 ,1620000000000 ,1620000000000 ,1616812515100 -1616812515125 ,112.5676684,26.87265141,59.62864685,186.1369243,187.5133056,13.525705,0.122406597,1620000000000 ,1620000000000 ,1620000000000 ,1616812515110 -1616812515136 ,112.5676682,26.87265019,59.62902069,186.1311323,187.5184641,13.522843,0.122384619,1620000000000 ,1620000000000 ,1620000000000 ,1616812515120 -1616812515152 ,112.5676681,26.87264898,59.62939072,186.1246299,187.5045576,13.519325,0.122349218,1620000000000 ,1620000000000 ,1620000000000 ,1616812515130 -1616812515156 ,112.5676679,26.87264777,59.62969971,186.1191931,187.4942334,13.519816,0.122339401,1620000000000 ,1620000000000 ,1620000000000 ,1616812515140 -1616812515166 ,112.5676678,26.87264655,59.62989807,186.1118438,187.4919793,13.518751,0.1223308,1620000000000 ,1620000000000 ,1620000000000 ,1616812515150 -1616812515176 ,112.5676676,26.87264534,59.62996292,186.1031285,187.4913473,13.517905,0.122317833,1620000000000 ,1620000000000 ,1620000000000 ,1616812515160 -1616812515186 ,112.5676674,26.87264413,59.62997818,186.0934023,187.5013507,13.515526,0.122297018,1620000000000 ,1620000000000 ,1620000000000 ,1616812515170 -1616812515196 ,112.5676673,26.87264292,59.6300087,186.0837308,187.5061559,13.512775,0.122272598,1620000000000 ,1620000000000 ,1620000000000 ,1616812515180 -1616812515206 ,112.5676671,26.8726417,59.63006592,186.0728844,187.4952238,13.509746,0.122246141,1620000000000 ,1620000000000 ,1620000000000 ,1616812515190 -1616812515217 ,112.567667,26.87264049,59.63065338,186.0552079,187.3070778,13.517797,0.122288433,1620000000000 ,1620000000000 ,1620000000000 ,1616812515200 -1616812515226 ,112.5676668,26.87263928,59.63193893,186.0443889,187.0132371,13.517247,0.122455088,1620000000000 ,1620000000000 ,1620000000000 ,1616812515210 -1616812515236 ,112.5676667,26.87263806,59.63319778,186.0310837,187.0052778,13.517908,0.122455041,1620000000000 ,1620000000000 ,1620000000000 ,1616812515220 -1616812515247 ,112.5676665,26.87263685,59.63442612,186.018844,186.9946522,13.515588,0.122442685,1620000000000 ,1620000000000 ,1620000000000 ,1616812515230 -1616812515258 ,112.5676664,26.87263563,59.63569641,186.0045552,186.9864257,13.515726,0.122434111,1620000000000 ,1620000000000 ,1620000000000 ,1616812515240 -1616812515267 ,112.5676662,26.87263442,59.63703918,185.9899113,186.9810592,13.514433,0.122429173,1620000000000 ,1620000000000 ,1620000000000 ,1616812515250 -1616812515277 ,112.5676661,26.8726332,59.6384201,185.9757045,186.9609623,13.512691,0.122410493,1620000000000 ,1620000000000 ,1620000000000 ,1616812515260 -1616812515286 ,112.5676659,26.87263199,59.63985062,185.96229,186.9429986,13.50932,0.122385855,1620000000000 ,1620000000000 ,1620000000000 ,1616812515270 -1616812515296 ,112.5676658,26.87263077,59.64136124,185.948493,186.9191415,13.506016,0.122354176,1620000000000 ,1620000000000 ,1620000000000 ,1616812515280 -1616812515307 ,112.5676656,26.87262956,59.64294052,185.9360621,186.8881114,13.506386,0.122349548,1620000000000 ,1620000000000 ,1620000000000 ,1616812515290 -1616812515317 ,112.5676655,26.87262834,59.64452362,185.9237951,186.8598456,13.509111,0.122361462,1620000000000 ,1620000000000 ,1620000000000 ,1616812515300 -1616812515326 ,112.5676653,26.87262713,59.64611053,185.9095336,186.8542067,13.511148,0.122382438,1620000000000 ,1620000000000 ,1620000000000 ,1616812515310 -1616812515337 ,112.5676652,26.87262591,59.64773941,185.8973212,186.8444734,13.513307,0.122405217,1620000000000 ,1620000000000 ,1620000000000 ,1616812515320 -1616812515353 ,112.567665,26.8726247,59.64940643,185.8849996,186.8152103,13.514462,0.122416632,1620000000000 ,1620000000000 ,1620000000000 ,1616812515330 -1616812515367 ,112.5676649,26.87262348,59.65112305,185.872432,186.7950321,13.514415,0.122417291,1620000000000 ,1620000000000 ,1620000000000 ,1616812515340 -1616812515372 ,112.5676647,26.87262226,59.65290451,185.8606568,186.7675185,13.513203,0.122407353,1620000000000 ,1620000000000 ,1620000000000 ,1616812515350 -1616812515379 ,112.5676646,26.87262105,59.65476608,185.8506847,186.7488498,13.513876,0.122411535,1620000000000 ,1620000000000 ,1620000000000 ,1616812515360 -1616812515396 ,112.5676645,26.87261983,59.65673065,185.8400843,186.7357885,13.512423,0.122404578,1620000000000 ,1620000000000 ,1620000000000 ,1616812515370 -1616812515401 ,112.5676643,26.87261862,59.65881348,185.8290467,186.7248017,13.509963,0.122390804,1620000000000 ,1620000000000 ,1620000000000 ,1616812515380 -1616812515408 ,112.5676642,26.8726174,59.66103745,185.818255,186.7101845,13.504711,0.122351571,1620000000000 ,1620000000000 ,1620000000000 ,1616812515390 -1616812515418 ,112.567664,26.87261619,59.66336441,185.8085561,186.684377,13.503521,0.122329668,1620000000000 ,1620000000000 ,1620000000000 ,1616812515400 -1616812515428 ,112.5676639,26.87261497,59.66571808,185.8003872,186.6684151,13.505361,0.122343468,1620000000000 ,1620000000000 ,1620000000000 ,1616812515410 -1616812515441 ,112.5676637,26.87261376,59.66806412,185.7944586,186.6521851,13.506636,0.122357604,1620000000000 ,1620000000000 ,1620000000000 ,1616812515420 -1616812515448 ,112.5676636,26.87261254,59.67045975,185.7870274,186.6345686,13.50491,0.122351104,1620000000000 ,1620000000000 ,1620000000000 ,1616812515430 -1616812515459 ,112.5676635,26.87261133,59.67295456,185.7800059,186.6191724,13.502179,0.122330724,1620000000000 ,1620000000000 ,1620000000000 ,1616812515440 -1616812515468 ,112.5676633,26.87261011,59.67505646,185.7749516,186.7841276,13.499222,0.122225662,1620000000000 ,1620000000000 ,1620000000000 ,1616812515450 -1616812515479 ,112.5676632,26.8726089,59.67670822,185.7694328,186.9486315,13.499603,0.122144127,1620000000000 ,1620000000000 ,1620000000000 ,1616812515460 -1616812515488 ,112.567663,26.87260769,59.67832184,185.763914,186.9354736,13.501477,0.12216098,1620000000000 ,1620000000000 ,1620000000000 ,1616812515470 -1616812515500 ,112.5676629,26.87260647,59.6798439,185.7588597,186.9261207,13.502698,0.122172469,1620000000000 ,1620000000000 ,1620000000000 ,1616812515480 -1616812515509 ,112.5676627,26.87260526,59.6812706,185.755308,186.9066329,13.503614,0.122178263,1620000000000 ,1620000000000 ,1620000000000 ,1616812515490 -1616812515519 ,112.5676626,26.87260405,59.68267441,185.7508547,186.8930051,13.503386,0.122179365,1620000000000 ,1620000000000 ,1620000000000 ,1616812515500 -1616812515530 ,112.5676624,26.87260284,59.68413162,185.7461282,186.8806879,13.502827,0.122176796,1620000000000 ,1620000000000 ,1620000000000 ,1616812515510 -1616812515541 ,112.5676623,26.87260162,59.6856308,185.7430956,186.8676047,13.503434,0.122180822,1620000000000 ,1620000000000 ,1620000000000 ,1616812515520 -1616812515552 ,112.5676621,26.87260041,59.68706131,185.7416203,186.8630801,13.502668,0.122170022,1620000000000 ,1620000000000 ,1620000000000 ,1616812515530 -1616812515560 ,112.567662,26.8725992,59.68832779,185.7406367,186.8662986,13.504958,0.122182911,1620000000000 ,1620000000000 ,1620000000000 ,1616812515540 -1616812515572 ,112.5676619,26.87259798,59.68943024,185.7397898,186.8642829,13.506697,0.122196503,1620000000000 ,1620000000000 ,1620000000000 ,1616812515550 -1616812515580 ,112.5676617,26.87259677,59.69045258,185.7384237,186.861489,13.50827,0.122204698,1620000000000 ,1620000000000 ,1620000000000 ,1616812515560 -1616812515590 ,112.5676616,26.87259556,59.69142151,185.7357736,186.855183,13.509316,0.122218031,1620000000000 ,1620000000000 ,1620000000000 ,1616812515570 -1616812515599 ,112.5676614,26.87259434,59.69235611,185.7347627,186.8593009,13.509681,0.122220483,1620000000000 ,1620000000000 ,1620000000000 ,1616812515580 -1616812515613 ,112.5676613,26.87259313,59.69327164,185.7336426,186.8711342,13.51034,0.12222409,1620000000000 ,1620000000000 ,1620000000000 ,1616812515590 -1616812515620 ,112.5676611,26.87259192,59.6941452,185.7296538,186.8745941,13.512588,0.122241254,1620000000000 ,1620000000000 ,1620000000000 ,1616812515600 -1616812515642 ,112.567661,26.8725907,59.69493103,185.7279326,186.8677756,13.513897,0.122250253,1620000000000 ,1620000000000 ,1620000000000 ,1616812515610 -1616812515645 ,112.5676608,26.87258949,59.6955986,185.725419,186.8740148,13.516933,0.122268414,1620000000000 ,1620000000000 ,1620000000000 ,1616812515620 -1616812515660 ,112.5676607,26.87258827,59.69619751,185.7240257,186.882452,13.517533,0.122278735,1620000000000 ,1620000000000 ,1620000000000 ,1616812515630 -1616812515665 ,112.5676605,26.87258706,59.69680023,185.7222772,186.8764918,13.517429,0.122280664,1620000000000 ,1620000000000 ,1620000000000 ,1616812515640 -1616812515671 ,112.5676604,26.87258585,59.69742203,185.7194631,186.8638476,13.516965,0.122274717,1620000000000 ,1620000000000 ,1620000000000 ,1616812515650 -1616812515681 ,112.5676602,26.87258463,59.69803238,185.7161846,186.8626316,13.519268,0.122285849,1620000000000 ,1620000000000 ,1620000000000 ,1616812515660 -1616812515692 ,112.5676601,26.87258342,59.69856644,185.716212,186.8763918,13.521168,0.122302908,1620000000000 ,1620000000000 ,1620000000000 ,1616812515670 -1616812515702 ,112.56766,26.8725822,59.69901276,185.7136438,186.8891296,13.525426,0.122332392,1620000000000 ,1620000000000 ,1620000000000 ,1616812515680 -1616812515712 ,112.5676598,26.87258099,59.69947433,185.7094364,186.8908531,13.5262375,0.122348894,1620000000000 ,1620000000000 ,1620000000000 ,1616812515690 -1616812515722 ,112.5676597,26.87257977,59.70001602,185.705994,186.8889812,13.525044,0.122344706,1620000000000 ,1620000000000 ,1620000000000 ,1616812515700 -1616812515733 ,112.5676595,26.87257856,59.7006073,185.7035898,186.885708,13.525456,0.122344029,1620000000000 ,1620000000000 ,1620000000000 ,1616812515710 -1616812515742 ,112.5676594,26.87257735,59.70119858,185.7005025,186.8947552,13.523823,0.122334014,1620000000000 ,1620000000000 ,1620000000000 ,1616812515720 -1616812515752 ,112.5676592,26.87257613,59.70178604,185.6974972,186.9027228,13.525753,0.122342121,1620000000000 ,1620000000000 ,1620000000000 ,1616812515730 -1616812515761 ,112.5676591,26.87257492,59.70241165,185.6939182,186.9036629,13.52644,0.122353514,1620000000000 ,1620000000000 ,1620000000000 ,1616812515740 -1616812515771 ,112.5676589,26.8725737,59.70308685,185.691432,186.8974186,13.527974,0.122362831,1620000000000 ,1620000000000 ,1620000000000 ,1616812515750 -1616812515781 ,112.5676588,26.87257249,59.70381927,185.6885087,186.8938336,13.5289,0.122374073,1620000000000 ,1620000000000 ,1620000000000 ,1616812515760 -1616812515791 ,112.5676586,26.87257127,59.70462799,185.6844379,186.9008297,13.52714,0.122370126,1620000000000 ,1620000000000 ,1620000000000 ,1616812515770 -1616812515802 ,112.5676585,26.87257006,59.70552444,185.6825528,186.9006003,13.526391,0.122359508,1620000000000 ,1620000000000 ,1620000000000 ,1616812515780 -1616812515812 ,112.5676583,26.87256884,59.70647812,185.6810501,186.8971094,13.527043,0.122363403,1620000000000 ,1620000000000 ,1620000000000 ,1616812515790 -1616812515823 ,112.5676582,26.87256763,59.70745468,185.6808316,186.8978901,13.528343,0.122372137,1620000000000 ,1620000000000 ,1620000000000 ,1616812515800 -1616812515833 ,112.567658,26.87256641,59.70845413,185.6801759,186.8933901,13.529173,0.122384147,1620000000000 ,1620000000000 ,1620000000000 ,1616812515810 -1616812515844 ,112.5676579,26.8725652,59.70947266,185.6787825,186.8859089,13.52848,0.122380042,1620000000000 ,1620000000000 ,1620000000000 ,1616812515820 -1616812515852 ,112.5676578,26.87256398,59.71050262,185.6777443,186.8839239,13.528589,0.122377564,1620000000000 ,1620000000000 ,1620000000000 ,1616812515840 -1616812515865 ,112.5676576,26.87256277,59.71153259,185.6771979,186.8864928,13.530446,0.122393738,1620000000000 ,1620000000000 ,1620000000000 ,1616812515840 -1616812515873 ,112.5676575,26.87256155,59.71257401,185.675668,186.8814227,13.530639,0.122394931,1620000000000 ,1620000000000 ,1620000000000 ,1616812515860 -1616812515882 ,112.5676573,26.87256034,59.71365738,185.6739741,186.8757385,13.53079,0.122399548,1620000000000 ,1620000000000 ,1620000000000 ,1616812515870 -1616812515893 ,112.5676572,26.87255912,59.71479416,185.6724441,186.8721257,13.530187,0.122394025,1620000000000 ,1620000000000 ,1620000000000 ,1616812515880 -1616812515902 ,112.567657,26.87255791,59.7159729,185.6726627,186.872047,13.53238,0.122411288,1620000000000 ,1620000000000 ,1620000000000 ,1616812515880 -1616812515912 ,112.5676569,26.87255669,59.71718216,185.6750396,186.871219,13.532718,0.122418984,1620000000000 ,1620000000000 ,1620000000000 ,1616812515900 -1616812515924 ,112.5676567,26.87255548,59.71841049,185.6791104,186.8646783,13.533943,0.122428025,1620000000000 ,1620000000000 ,1620000000000 ,1616812515910 -1616812515933 ,112.5676564,26.87255304,59.72091675,185.6831538,186.8560248,13.53222,0.244840737,1620000000000 ,1620000000000 ,1620000000000 ,1616812515920 -1616812515943 ,112.5676563,26.87255183,59.72223282,185.6860225,186.8570128,13.531431,0.122414377,1620000000000 ,1620000000000 ,1620000000000 ,1616812515930 -1616812515953 ,112.5676561,26.87255061,59.72358704,185.6907217,186.8639282,13.531965,0.122412588,1620000000000 ,1620000000000 ,1620000000000 ,1616812515940 -1616812515966 ,112.567656,26.8725494,59.72499466,185.6949291,186.8625942,13.5320425,0.122419739,1620000000000 ,1620000000000 ,1620000000000 ,1616812515950 -1616812515975 ,112.5676558,26.87254818,59.72642899,185.7014314,186.8478822,13.532909,0.122425049,1620000000000 ,1620000000000 ,1620000000000 ,1616812515960 -1616812515985 ,112.5676557,26.87254697,59.72789001,185.7050651,186.8453246,13.533783,0.122433706,1620000000000 ,1620000000000 ,1620000000000 ,1616812515970 -1616812515995 ,112.5676556,26.87254575,59.72935867,185.709491,186.8557269,13.534221,0.122439063,1620000000000 ,1620000000000 ,1620000000000 ,1616812515980 -1616812516006 ,112.5676556,26.87254575,59.72935867,185.709491,-400,13.534221,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812515990 -1616812516014 ,112.5676553,26.87254332,59.73222733,185.7197363,186.862488,13.534134,0.244877344,1620000000000 ,1620000000000 ,1620000000000 ,1616812516000 -1616812516025 ,112.5676551,26.87254211,59.73360443,185.7249,186.862926,13.534001,0.122439951,1620000000000 ,1620000000000 ,1620000000000 ,1616812516010 -1616812516034 ,112.567655,26.87254089,59.73496628,185.7323039,186.8536599,13.53467,0.122441921,1620000000000 ,1620000000000 ,1620000000000 ,1616812516020 -1616812516044 ,112.5676548,26.87253967,59.73634338,185.738615,186.8539366,13.535218,0.122449837,1620000000000 ,1620000000000 ,1620000000000 ,1616812516030 -1616812516055 ,112.5676547,26.87253846,59.73776245,185.7434234,186.86968,13.535257,0.122452979,1620000000000 ,1620000000000 ,1620000000000 ,1616812516040 -1616812516065 ,112.5676545,26.87253724,59.73922729,185.7519475,186.8741418,13.534449,0.122448584,1620000000000 ,1620000000000 ,1620000000000 ,1616812516050 -1616812516075 ,112.5676544,26.87253603,59.74071121,185.7602257,186.869038,13.533815,0.122442375,1620000000000 ,1620000000000 ,1620000000000 ,1616812516060 -1616812516085 ,112.5676542,26.87253481,59.74217987,185.7659357,186.8618815,13.536098,0.122457251,1620000000000 ,1620000000000 ,1620000000000 ,1616812516070 -1616812516095 ,112.5676541,26.87253359,59.74357224,185.7734763,186.8650539,13.53786,0.122474275,1620000000000 ,1620000000000 ,1620000000000 ,1616812516080 -1616812516113 ,112.5676539,26.87253238,59.74482346,185.7792683,186.8798799,13.540136,0.122490554,1620000000000 ,1620000000000 ,1620000000000 ,1616812516090 -1616812516116 ,112.5676538,26.87253116,59.74597931,185.7860711,186.9019853,13.540422,0.122494221,1620000000000 ,1620000000000 ,1620000000000 ,1616812516100 -1616812516125 ,112.5676537,26.87252995,59.74715805,185.7896775,186.9121089,13.5394945,0.122488379,1620000000000 ,1620000000000 ,1620000000000 ,1616812516110 -1616812516135 ,112.5676535,26.87252873,59.74839401,185.7947865,186.9188586,13.539292,0.122488342,1620000000000 ,1620000000000 ,1620000000000 ,1616812516120 -1616812516145 ,112.5676534,26.87252751,59.74961472,185.8013708,186.9210996,13.540021,0.12249186,1620000000000 ,1620000000000 ,1620000000000 ,1616812516130 -1616812516159 ,112.5676532,26.8725263,59.75076675,185.8069988,186.9324031,13.542701,0.122511735,1620000000000 ,1620000000000 ,1620000000000 ,1616812516140 -1616812516165 ,112.5676531,26.87252508,59.75184631,185.8113428,186.9584286,13.54333,0.122517156,1620000000000 ,1620000000000 ,1620000000000 ,1616812516150 -1616812516176 ,112.5676529,26.87252387,59.75286102,185.8155229,186.9622399,13.544859,0.122527982,1620000000000 ,1620000000000 ,1620000000000 ,1616812516160 -1616812516186 ,112.5676528,26.87252265,59.75384521,185.8176266,186.9641428,13.54561,0.122538842,1620000000000 ,1620000000000 ,1620000000000 ,1616812516170 -1616812516200 ,112.5676526,26.87252143,59.75482941,185.820386,186.9766625,13.548152,0.122555295,1620000000000 ,1620000000000 ,1620000000000 ,1616812516180 -1616812516210 ,112.5676525,26.87252022,59.75580215,185.8223804,186.9882164,13.550678,0.122577256,1620000000000 ,1620000000000 ,1620000000000 ,1616812516190 -1616812516217 ,112.5676523,26.87251901,59.75639725,185.8231727,186.8810028,13.517731,0.122031315,1620000000000 ,1620000000000 ,1620000000000 ,1616812516200 -1616812516226 ,112.5676522,26.8725178,59.75653076,185.8259048,186.6861349,13.519456,0.121171404,1620000000000 ,1620000000000 ,1620000000000 ,1616812516210 -1616812516236 ,112.567652,26.8725166,59.75674438,185.8280085,186.6830344,13.519515,0.121181221,1620000000000 ,1620000000000 ,1620000000000 ,1616812516220 -1616812516247 ,112.5676519,26.87251539,59.75702667,185.8307132,186.6779115,13.517801,0.121164168,1620000000000 ,1620000000000 ,1620000000000 ,1616812516230 -1616812516261 ,112.5676518,26.87251419,59.75733566,185.8330628,186.6914609,13.52072,0.121186428,1620000000000 ,1620000000000 ,1620000000000 ,1616812516240 -1616812516271 ,112.5676516,26.87251299,59.75760651,185.836997,186.7009555,13.522756,0.12120718,1620000000000 ,1620000000000 ,1620000000000 ,1616812516250 -1616812516280 ,112.5676515,26.87251178,59.7578392,185.8403848,186.7139447,13.526216,0.121231967,1620000000000 ,1620000000000 ,1620000000000 ,1616812516260 -1616812516288 ,112.5676513,26.87251058,59.75809097,185.8426797,186.7164579,13.527826,0.121251441,1620000000000 ,1620000000000 ,1620000000000 ,1616812516270 -1616812516297 ,112.5676512,26.87250937,59.75836563,185.8462041,186.7147095,13.528463,0.121264322,1620000000000 ,1620000000000 ,1620000000000 ,1616812516280 -1616812516307 ,112.567651,26.87250817,59.75865555,185.8481439,186.7181001,13.5289545,0.121266495,1620000000000 ,1620000000000 ,1620000000000 ,1616812516290 -1616812516316 ,112.5676509,26.87250697,59.75894165,185.8520781,186.7290007,13.531101,0.121281713,1620000000000 ,1620000000000 ,1620000000000 ,1616812516300 -1616812516330 ,112.5676508,26.87250576,59.75922775,185.8536627,186.7389682,13.53283,0.121299509,1620000000000 ,1620000000000 ,1620000000000 ,1616812516310 -1616812516337 ,112.5676506,26.87250456,59.7595253,185.855138,186.7384021,13.533996,0.121314702,1620000000000 ,1620000000000 ,1620000000000 ,1616812516320 -1616812516348 ,112.5676505,26.87250335,59.7598381,185.8575422,186.7360906,13.535099,0.121324895,1620000000000 ,1620000000000 ,1620000000000 ,1616812516330 -1616812516359 ,112.5676503,26.87250215,59.76013184,185.8605475,186.7398341,13.537466,0.121341053,1620000000000 ,1620000000000 ,1620000000000 ,1616812516340 -1616812516370 ,112.5676502,26.87250094,59.76038742,185.8647549,186.7528964,13.541141,0.121372747,1620000000000 ,1620000000000 ,1620000000000 ,1616812516350 -1616812516377 ,112.56765,26.87249974,59.76066589,185.8686891,186.7556193,13.544372,0.121405692,1620000000000 ,1620000000000 ,1620000000000 ,1616812516360 -1616812516387 ,112.5676499,26.87249853,59.76104355,185.8723501,186.7500991,13.544998,0.121422871,1620000000000 ,1620000000000 ,1620000000000 ,1616812516370 -1616812516398 ,112.5676498,26.87249732,59.76151657,185.8758745,186.7468329,13.543872,0.121416581,1620000000000 ,1620000000000 ,1620000000000 ,1616812516380 -1616812516411 ,112.5676496,26.87249612,59.76198959,185.8818304,186.7451278,13.543817,0.121412855,1620000000000 ,1620000000000 ,1620000000000 ,1616812516390 -1616812516424 ,112.5676495,26.87249491,59.76238632,185.8894529,186.7511966,13.5474415,0.121437917,1620000000000 ,1620000000000 ,1620000000000 ,1616812516400 -1616812516428 ,112.5676493,26.87249371,59.7626915,185.8933051,186.761451,13.553018,0.121479622,1620000000000 ,1620000000000 ,1620000000000 ,1616812516410 -1616812516438 ,112.5676492,26.8724925,59.76295853,185.8955181,186.7646897,13.555301,0.121509089,1620000000000 ,1620000000000 ,1620000000000 ,1616812516420 -1616812516448 ,112.567649,26.87249129,59.7632103,185.8998621,186.768974,13.556821,0.121525584,1620000000000 ,1620000000000 ,1620000000000 ,1616812516430 -1616812516459 ,112.5676489,26.87249009,59.76345825,185.9052716,186.7854002,13.558247,0.121539662,1620000000000 ,1620000000000 ,1620000000000 ,1616812516440 -1616812516468 ,112.5676488,26.87248887,59.76402283,185.9099708,186.8986768,13.5594635,0.122106743,1620000000000 ,1620000000000 ,1620000000000 ,1616812516450 -1616812516479 ,112.5676486,26.87248766,59.76490402,185.9132766,187.0256816,13.561758,0.122681649,1620000000000 ,1620000000000 ,1620000000000 ,1616812516460 -1616812516489 ,112.5676485,26.87248644,59.7657547,185.9195603,187.0313419,13.566399,0.122719257,1620000000000 ,1620000000000 ,1620000000000 ,1616812516470 -1616812516500 ,112.5676483,26.87248522,59.76652908,185.9268823,187.0349094,13.569835,0.122751717,1620000000000 ,1620000000000 ,1620000000000 ,1616812516480 -1616812516515 ,112.5676482,26.872484,59.76726913,185.9336032,187.0468154,13.570566,0.122764586,1620000000000 ,1620000000000 ,1620000000000 ,1616812516490 -1616812516526 ,112.567648,26.87248278,59.76799774,185.9402695,187.0422987,13.570246,0.122761961,1620000000000 ,1620000000000 ,1620000000000 ,1616812516500 -1616812516530 ,112.5676479,26.87248156,59.76874161,185.9464166,187.0472311,13.574495,0.122788862,1620000000000 ,1620000000000 ,1620000000000 ,1616812516510 -1616812516541 ,112.5676477,26.87248035,59.7694664,185.9502689,187.0573049,13.579412,0.12283048,1620000000000 ,1620000000000 ,1620000000000 ,1616812516520 -1616812516550 ,112.5676476,26.87247913,59.77015305,185.9568805,187.0726577,13.584306,0.122877838,1620000000000 ,1620000000000 ,1620000000000 ,1616812516530 -1616812516559 ,112.5676474,26.87247791,59.77087021,185.960924,187.0766742,13.584973,0.122896141,1620000000000 ,1620000000000 ,1620000000000 ,1616812516540 -1616812516569 ,112.5676473,26.87247669,59.77164841,185.9656231,187.0732837,13.584468,0.122889823,1620000000000 ,1620000000000 ,1620000000000 ,1616812516550 -1616812516579 ,112.5676471,26.87247547,59.77248764,185.9707594,187.078454,13.587842,0.122913347,1620000000000 ,1620000000000 ,1620000000000 ,1616812516560 -1616812516590 ,112.5676469,26.87247425,59.77328873,185.977617,187.0826813,13.591922,0.122947591,1620000000000 ,1620000000000 ,1620000000000 ,1616812516570 -1616812516604 ,112.5676468,26.87247303,59.77402496,185.9852941,187.0984289,13.597228,0.122993751,1620000000000 ,1620000000000 ,1620000000000 ,1616812516580 -1616812516611 ,112.5676466,26.87247181,59.77472687,185.9924794,187.0994127,13.599103,0.12301712,1620000000000 ,1620000000000 ,1620000000000 ,1616812516590 -1616812516621 ,112.5676465,26.87247058,59.77545929,185.9984627,187.0965181,13.600124,0.123028757,1620000000000 ,1620000000000 ,1620000000000 ,1616812516600 -1616812516630 ,112.5676463,26.87246936,59.77624512,186.0040361,187.1030724,13.602281,0.12304591,1620000000000 ,1620000000000 ,1620000000000 ,1616812516610 -1616812516640 ,112.5676462,26.87246814,59.77702713,186.0093364,187.106803,13.606776,0.123082225,1620000000000 ,1620000000000 ,1620000000000 ,1616812516620 -1616812516650 ,112.567646,26.87246692,59.77776718,186.0161665,187.1228884,13.608585,0.123104625,1620000000000 ,1620000000000 ,1620000000000 ,1616812516630 -1616812516659 ,112.5676459,26.8724657,59.77850342,186.0230514,187.1266899,13.611649,0.123128633,1620000000000 ,1620000000000 ,1620000000000 ,1616812516640 -1616812516670 ,112.5676457,26.87246448,59.77929306,186.0284882,187.1261142,13.61179,0.123137187,1620000000000 ,1620000000000 ,1620000000000 ,1616812516650 -1616812516681 ,112.5676456,26.87246326,59.78013992,186.0337611,187.1316053,13.613344,0.123150864,1620000000000 ,1620000000000 ,1620000000000 ,1616812516660 -1616812516696 ,112.5676454,26.87246203,59.7809639,186.0389247,187.1352379,13.616017,0.123172171,1620000000000 ,1620000000000 ,1620000000000 ,1616812516670 -1616812516700 ,112.5676453,26.87246081,59.78174591,186.0460554,187.1627361,13.619169,0.123196882,1620000000000 ,1620000000000 ,1620000000000 ,1616812516680 -1616812516715 ,112.5676451,26.87245959,59.78255081,186.0498804,187.1720413,13.622278,0.123225448,1620000000000 ,1620000000000 ,1620000000000 ,1616812516690 -1616812516725 ,112.567645,26.87245837,59.78344345,186.0564373,187.1632584,13.624521,0.123253258,1620000000000 ,1620000000000 ,1620000000000 ,1616812516700 -1616812516730 ,112.5676448,26.87245714,59.7844162,186.0614097,187.1699009,13.625099,0.123265355,1620000000000 ,1620000000000 ,1620000000000 ,1616812516710 -1616812516741 ,112.5676447,26.87245592,59.78539276,186.0658903,187.1730469,13.626596,0.123273623,1620000000000 ,1620000000000 ,1620000000000 ,1616812516720 -1616812516750 ,112.5676445,26.8724547,59.78635788,186.0722561,187.1854994,13.629555,0.123298249,1620000000000 ,1620000000000 ,1620000000000 ,1616812516730 -1616812516764 ,112.5676443,26.87245347,59.78734207,186.0756711,187.1848864,13.633062,0.123329734,1620000000000 ,1620000000000 ,1620000000000 ,1616812516740 -1616812516776 ,112.5676442,26.87245225,59.78836441,186.0798785,187.191564,13.638121,0.123375095,1620000000000 ,1620000000000 ,1620000000000 ,1616812516750 -1616812516783 ,112.567644,26.87245102,59.78937149,186.0861896,187.1968303,13.643747,0.123422227,1620000000000 ,1620000000000 ,1620000000000 ,1616812516760 -1616812516795 ,112.5676439,26.8724498,59.79029846,186.0930198,187.2036568,13.648634,0.123464327,1620000000000 ,1620000000000 ,1620000000000 ,1616812516770 -1616812516801 ,112.5676437,26.87244857,59.79116058,186.0982108,187.2096024,13.652032,0.123501079,1620000000000 ,1620000000000 ,1620000000000 ,1616812516780 -1616812516812 ,112.5676436,26.87244735,59.79203415,186.1027733,187.2087258,13.655005,0.123525326,1620000000000 ,1620000000000 ,1620000000000 ,1616812516790 -1616812516822 ,112.5676434,26.87244612,59.79292679,186.1080189,187.2182691,13.657535,0.123549467,1620000000000 ,1620000000000 ,1620000000000 ,1616812516800 -1616812516831 ,112.5676433,26.8724449,59.79380035,186.1141388,187.232983,13.661842,0.123584768,1620000000000 ,1620000000000 ,1620000000000 ,1616812516810 -1616812516841 ,112.5676431,26.87244367,59.79463959,186.1200674,187.2476691,13.664226,0.123610189,1620000000000 ,1620000000000 ,1620000000000 ,1616812516820 -1616812516851 ,112.5676429,26.87244244,59.79549408,186.1240562,187.2468787,13.667852,0.12363723,1620000000000 ,1620000000000 ,1620000000000 ,1616812516830 -1616812516863 ,112.5676428,26.87244122,59.79637146,186.1275533,187.2402009,13.671397,0.12367063,1620000000000 ,1620000000000 ,1620000000000 ,1616812516840 -1616812516877 ,112.5676426,26.87243999,59.79722977,186.1300668,187.252418,13.679809,0.123737427,1620000000000 ,1620000000000 ,1620000000000 ,1616812516850 -1616812516882 ,112.5676425,26.87243876,59.798069,186.1333179,187.2636093,13.683947,0.123783643,1620000000000 ,1620000000000 ,1620000000000 ,1616812516860 -1616812516893 ,112.5676423,26.87243753,59.7989502,186.1372248,187.2712615,13.684885,0.123798678,1620000000000 ,1620000000000 ,1620000000000 ,1616812516870 -1616812516902 ,112.5676422,26.87243631,59.79994965,186.1405853,187.2674633,13.685605,0.123808234,1620000000000 ,1620000000000 ,1620000000000 ,1616812516880 -1616812516913 ,112.567642,26.87243508,59.8010025,186.1447927,187.2674772,13.68944,0.123837699,1620000000000 ,1620000000000 ,1620000000000 ,1616812516890 -1616812516921 ,112.5676419,26.87243385,59.80205917,186.1493006,187.2791984,13.694977,0.123885449,1620000000000 ,1620000000000 ,1620000000000 ,1616812516900 -1616812516932 ,112.5676417,26.87243262,59.8030777,186.1538632,187.2920122,13.700833,0.123935215,1620000000000 ,1620000000000 ,1620000000000 ,1616812516910 -1616812516943 ,112.5676415,26.87243139,59.80411911,186.1568411,187.292214,13.706818,0.123991197,1620000000000 ,1620000000000 ,1620000000000 ,1616812516930 -1616812516952 ,112.5676414,26.87243016,59.80522156,186.1584804,187.2890203,13.710746,0.124033122,1620000000000 ,1620000000000 ,1620000000000 ,1616812516940 -1616812516972 ,112.5676412,26.87242893,59.80635834,186.1589995,187.2886499,13.714972,0.124075258,1620000000000 ,1620000000000 ,1620000000000 ,1616812516950 -1616812516976 ,112.5676411,26.8724277,59.80747604,186.1604475,187.2996353,13.717968,0.124101771,1620000000000 ,1620000000000 ,1620000000000 ,1616812516960 -1616812516982 ,112.5676408,26.87242523,59.80970001,186.1600376,187.3191843,13.7253,0.248298312,1620000000000 ,1620000000000 ,1620000000000 ,1616812516970 -1616812516995 ,112.5676406,26.872424,59.81087112,186.1620867,187.322613,13.727725,0.124199827,1620000000000 ,1620000000000 ,1620000000000 ,1616812516980 -1616812517004 ,112.5676406,26.872424,59.81087112,186.1620867,-400,13.727725,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812516980 -1616812517014 ,112.5676403,26.87242154,59.81325912,186.1617862,187.3252743,13.735401,0.248499978,1620000000000 ,1620000000000 ,1620000000000 ,1616812517000 -1616812517023 ,112.5676401,26.8724203,59.81440735,186.161349,187.3333928,13.739863,0.124301529,1620000000000 ,1620000000000 ,1620000000000 ,1616812517010 -1616812517033 ,112.56764,26.87241907,59.81554413,186.1595186,187.342361,13.745116,0.12435306,1620000000000 ,1620000000000 ,1620000000000 ,1616812517020 -1616812517044 ,112.5676398,26.87241784,59.8167038,186.1573056,187.3355487,13.747995,0.124385581,1620000000000 ,1620000000000 ,1620000000000 ,1616812517030 -1616812517056 ,112.5676396,26.8724166,59.81789398,186.1536446,187.3357817,13.750992,0.124411981,1620000000000 ,1620000000000 ,1620000000000 ,1616812517040 -1616812517068 ,112.5676395,26.87241537,59.81906128,186.1505027,187.333995,13.754721,0.124441043,1620000000000 ,1620000000000 ,1620000000000 ,1616812517050 -1616812517077 ,112.5676393,26.87241413,59.82017899,186.1451752,187.3372379,13.760525,0.124488072,1620000000000 ,1620000000000 ,1620000000000 ,1616812517060 -1616812517084 ,112.5676392,26.8724129,59.82123947,186.1417874,187.3350723,13.765742,0.124538704,1620000000000 ,1620000000000 ,1620000000000 ,1616812517070 -1616812517094 ,112.567639,26.87241166,59.82225037,186.1357768,187.3303982,13.772544,0.124594849,1620000000000 ,1620000000000 ,1620000000000 ,1616812517080 -1616812517104 ,112.567639,26.87241166,59.82225037,186.1357768,-400,13.772544,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812517090 -1616812517113 ,112.5676387,26.87240919,59.82413864,186.1219525,187.3273031,13.779326,0.249290526,1620000000000 ,1620000000000 ,1620000000000 ,1616812517100 -1616812517124 ,112.5676385,26.87240795,59.82500839,186.1132372,187.3309496,13.78341,0.124692131,1620000000000 ,1620000000000 ,1620000000000 ,1616812517110 -1616812517134 ,112.5676384,26.87240672,59.82585907,186.1050136,187.3255981,13.788142,0.12473422,1620000000000 ,1620000000000 ,1620000000000 ,1616812517120 -1616812517145 ,112.5676382,26.87240548,59.82668686,186.0976097,187.3203857,13.792071,0.124768115,1620000000000 ,1620000000000 ,1620000000000 ,1616812517130 -1616812517155 ,112.5676381,26.87240424,59.82744217,186.0889217,187.3078238,13.796644,0.124802398,1620000000000 ,1620000000000 ,1620000000000 ,1616812517140 -1616812517164 ,112.5676379,26.872403,59.828125,186.0815178,187.3080786,13.803721,0.124862106,1620000000000 ,1620000000000 ,1620000000000 ,1616812517150 -1616812517177 ,112.5676377,26.87240176,59.82876587,186.0708354,187.2999466,13.80956,0.124912013,1620000000000 ,1620000000000 ,1620000000000 ,1616812517160 -1616812517184 ,112.5676376,26.87240053,59.82939911,186.0606721,187.3011728,13.813102,0.12495056,1620000000000 ,1620000000000 ,1620000000000 ,1616812517170 -1616812517195 ,112.5676374,26.87239929,59.83002853,186.0500716,187.3004258,13.816909,0.124981381,1620000000000 ,1620000000000 ,1620000000000 ,1616812517180 -1616812517204 ,112.5676373,26.87239805,59.83067322,186.0396351,187.2852093,13.822017,0.125022106,1620000000000 ,1620000000000 ,1620000000000 ,1616812517190 -1616812517214 ,112.5676371,26.8723968,59.83100891,186.0376133,187.3775639,13.833796,0.125081467,1620000000000 ,1620000000000 ,1620000000000 ,1616812517200 -1616812517225 ,112.5676369,26.87239556,59.83089828,186.0256195,187.5550694,13.838545,0.125213996,1620000000000 ,1620000000000 ,1620000000000 ,1616812517210 -1616812517237 ,112.5676368,26.87239432,59.83082199,186.0160846,187.5404119,13.8413105,0.125243643,1620000000000 ,1620000000000 ,1620000000000 ,1616812517220 -1616812517246 ,112.5676368,26.87239432,59.83082199,186.0160846,-400,13.8413105,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812517220 -1616812517255 ,112.5676364,26.87239184,59.83083344,185.9952388,187.5197625,13.851355,0.25061025,1620000000000 ,1620000000000 ,1620000000000 ,1616812517240 -1616812517265 ,112.5676363,26.87239059,59.83096695,185.9842559,187.4929558,13.855017,0.125366509,1620000000000 ,1620000000000 ,1620000000000 ,1616812517250 -1616812517275 ,112.5676361,26.87238935,59.83120346,185.9707594,187.4739369,13.856822,0.125387006,1620000000000 ,1620000000000 ,1620000000000 ,1616812517260 -1616812517285 ,112.5676359,26.87238811,59.8314743,185.9592301,187.4653221,13.86038,0.125416045,1620000000000 ,1620000000000 ,1620000000000 ,1616812517270 -1616812517296 ,112.5676358,26.87238686,59.83178329,185.9486023,187.4602577,13.86439,0.125452784,1620000000000 ,1620000000000 ,1620000000000 ,1616812517280 -1616812517307 ,112.5676356,26.87238562,59.83213806,185.9376467,187.4383623,13.868934,0.125494211,1620000000000 ,1620000000000 ,1620000000000 ,1616812517290 -1616812517315 ,112.5676355,26.87238437,59.83258438,185.9264725,187.4109533,13.873438,0.125538255,1620000000000 ,1620000000000 ,1620000000000 ,1616812517300 -1616812517326 ,112.5676353,26.87238313,59.83310318,185.9155169,187.3914722,13.87784,0.125579801,1620000000000 ,1620000000000 ,1620000000000 ,1616812517310 -1616812517335 ,112.5676351,26.87238188,59.83363342,185.9055448,187.3893707,13.88156,0.125615351,1620000000000 ,1620000000000 ,1620000000000 ,1616812517320 -1616812517346 ,112.567635,26.87238064,59.83414078,185.8934963,187.3805539,13.884666,0.125644483,1620000000000 ,1620000000000 ,1620000000000 ,1616812517330 -1616812517357 ,112.5676348,26.87237939,59.83465576,185.8818031,187.3603977,13.88721,0.125669613,1620000000000 ,1620000000000 ,1620000000000 ,1616812517340 -1616812517366 ,112.5676347,26.87237814,59.83516312,185.8698639,187.3404626,13.893401,0.125714534,1620000000000 ,1620000000000 ,1620000000000 ,1616812517350 -1616812517377 ,112.5676345,26.8723769,59.83561325,185.8592908,187.3173324,13.89806,0.125759039,1620000000000 ,1620000000000 ,1620000000000 ,1616812517360 -1616812517387 ,112.5676343,26.87237565,59.83599091,185.8510399,187.3122625,13.904542,0.125813727,1620000000000 ,1620000000000 ,1620000000000 ,1616812517370 -1616812517397 ,112.5676342,26.8723744,59.83634949,185.842106,187.2998521,13.908771,0.125853362,1620000000000 ,1620000000000 ,1620000000000 ,1616812517380 -1616812517415 ,112.567634,26.87237315,59.83670044,185.8313689,187.2674134,13.913222,0.125894809,1620000000000 ,1620000000000 ,1620000000000 ,1616812517390 -1616812517419 ,112.5676339,26.8723719,59.83704376,185.8224897,187.2570789,13.9179125,0.125933227,1620000000000 ,1620000000000 ,1620000000000 ,1616812517400 -1616812517427 ,112.5676337,26.87237065,59.83732605,185.8142115,187.2559643,13.923619,0.125982454,1620000000000 ,1620000000000 ,1620000000000 ,1616812517410 -1616812517437 ,112.5676335,26.8723694,59.83752441,185.8036111,187.2508819,13.928874,0.12603009,1620000000000 ,1620000000000 ,1620000000000 ,1616812517420 -1616812517446 ,112.5676334,26.87236815,59.83769226,185.7939668,187.2320564,13.931424,0.126056142,1620000000000 ,1620000000000 ,1620000000000 ,1616812517430 -1616812517456 ,112.5676332,26.8723669,59.83786392,185.7837489,187.2172381,13.935326,0.126086924,1620000000000 ,1620000000000 ,1620000000000 ,1616812517440 -1616812517470 ,112.5676331,26.87236565,59.83835602,185.7744871,187.0836666,13.939974,0.126106554,1620000000000 ,1620000000000 ,1620000000000 ,1616812517450 -1616812517482 ,112.5676329,26.8723644,59.83911133,185.76528,186.9614281,13.946889,0.126146963,1620000000000 ,1620000000000 ,1620000000000 ,1616812517460 -1616812517489 ,112.5676328,26.87236314,59.83977127,185.7562369,186.9666175,13.953799,0.126204693,1620000000000 ,1620000000000 ,1620000000000 ,1616812517470 -1616812517500 ,112.5676326,26.87236189,59.84037781,185.7455818,186.9614947,13.959844,0.126261931,1620000000000 ,1620000000000 ,1620000000000 ,1616812517480 -1616812517508 ,112.5676325,26.87236064,59.84099197,185.7337519,186.9454816,13.963319,0.126297692,1620000000000 ,1620000000000 ,1620000000000 ,1616812517490 -1616812517519 ,112.5676323,26.87235938,59.84163284,185.7222772,186.9286515,13.966701,0.126325833,1620000000000 ,1620000000000 ,1620000000000 ,1616812517500 -1616812517528 ,112.5676322,26.87235813,59.84224701,185.7141902,186.9220884,13.971636,0.126364242,1620000000000 ,1620000000000 ,1620000000000 ,1616812517510 -1616812517539 ,112.567632,26.87235687,59.8427887,185.7058301,186.9194442,13.977564,0.126414265,1620000000000 ,1620000000000 ,1620000000000 ,1616812517520 -1616812517548 ,112.5676318,26.87235562,59.84324265,185.6952843,186.902921,13.98338,0.1264657,1620000000000 ,1620000000000 ,1620000000000 ,1616812517530 -1616812517557 ,112.5676317,26.87235436,59.84366989,185.6841101,186.8955508,13.988487,0.126510875,1620000000000 ,1620000000000 ,1620000000000 ,1616812517540 -1616812517568 ,112.5676315,26.87235311,59.8441391,185.6722255,186.8841371,13.994172,0.126560744,1620000000000 ,1620000000000 ,1620000000000 ,1616812517550 -1616812517578 ,112.5676314,26.87235185,59.84464645,185.6609967,186.8730781,13.999556,0.126609599,1620000000000 ,1620000000000 ,1620000000000 ,1616812517560 -1616812517591 ,112.5676312,26.87235059,59.84519196,185.6497679,186.8686198,14.003039,0.126644615,1620000000000 ,1620000000000 ,1620000000000 ,1616812517570 -1616812517598 ,112.5676311,26.87234933,59.84576035,185.6381292,186.85166,14.007138,0.126680821,1620000000000 ,1620000000000 ,1620000000000 ,1616812517580 -1616812517609 ,112.5676309,26.87234808,59.84638214,185.6269277,186.8363803,14.01059,0.126714816,1620000000000 ,1620000000000 ,1620000000000 ,1616812517590 -1616812517619 ,112.5676308,26.87234682,59.84703064,185.6149339,186.818746,14.015833,0.126754985,1620000000000 ,1620000000000 ,1620000000000 ,1616812517600 -1616812517629 ,112.5676306,26.87234556,59.84767151,185.6052897,186.8056237,14.021615,0.126808111,1620000000000 ,1620000000000 ,1620000000000 ,1616812517610 -1616812517638 ,112.5676305,26.8723443,59.84830475,185.5953996,186.7935792,14.026083,0.126849525,1620000000000 ,1620000000000 ,1620000000000 ,1616812517620 -1616812517648 ,112.5676303,26.87234304,59.84900665,185.5851816,186.7826306,14.032359,0.126902487,1620000000000 ,1620000000000 ,1620000000000 ,1616812517630 -1616812517665 ,112.5676302,26.87234178,59.84977341,185.5740894,186.7678107,14.0370655,0.126949837,1620000000000 ,1620000000000 ,1620000000000 ,1616812517640 -1616812517669 ,112.56763,26.87234052,59.85057449,185.5645271,186.7598666,14.041654,0.126995254,1620000000000 ,1620000000000 ,1620000000000 ,1616812517650 -1616812517680 ,112.5676299,26.87233926,59.85136414,185.5528611,186.7513043,14.043377,0.127014414,1620000000000 ,1620000000000 ,1620000000000 ,1616812517660 -1616812517690 ,112.5676297,26.87233799,59.85213852,185.5406761,186.7382776,14.047052,0.127039403,1620000000000 ,1620000000000 ,1620000000000 ,1616812517670 -1616812517704 ,112.5676296,26.87233673,59.85288239,185.5298298,186.7256967,14.054427,0.127097308,1620000000000 ,1620000000000 ,1620000000000 ,1616812517680 -1616812517710 ,112.5676294,26.87233547,59.85356522,185.5193659,186.7162873,14.064187,0.12717902,1620000000000 ,1620000000000 ,1620000000000 ,1616812517690 -1616812517722 ,112.5676293,26.87233421,59.85417175,185.5081644,186.7020033,14.067796,0.127223799,1620000000000 ,1620000000000 ,1620000000000 ,1616812517700 -1616812517730 ,112.5676291,26.87233294,59.8547821,185.4960067,186.6937483,14.071735,0.127256711,1620000000000 ,1620000000000 ,1620000000000 ,1616812517710 -1616812517740 ,112.567629,26.87233168,59.85548401,185.4845046,186.674272,14.076825,0.12730002,1620000000000 ,1620000000000 ,1620000000000 ,1616812517720 -1616812517750 ,112.5676288,26.87233041,59.85628128,185.4751063,186.6570545,14.082946,0.127357413,1620000000000 ,1620000000000 ,1620000000000 ,1616812517730 -1616812517760 ,112.5676287,26.87232915,59.85708618,185.4652981,186.6386138,14.088051,0.127402788,1620000000000 ,1620000000000 ,1620000000000 ,1616812517740 -1616812517773 ,112.5676286,26.87232788,59.85785675,185.4568287,186.6299085,14.091621,0.127437352,1620000000000 ,1620000000000 ,1620000000000 ,1616812517750 -1616812517780 ,112.5676284,26.87232661,59.85863113,185.4469113,186.620464,14.096229,0.127474125,1620000000000 ,1620000000000 ,1620000000000 ,1616812517760 -1616812517793 ,112.5676283,26.87232535,59.85945129,185.4410646,186.5992182,14.101481,0.127524763,1620000000000 ,1620000000000 ,1620000000000 ,1616812517770 -1616812517801 ,112.5676281,26.87232408,59.86032486,185.4319395,186.5784384,14.1061125,0.127563361,1620000000000 ,1620000000000 ,1620000000000 ,1616812517780 -1616812517810 ,112.567628,26.87232281,59.8612442,185.4226777,186.5678239,14.111681,0.127614368,1620000000000 ,1620000000000 ,1620000000000 ,1616812517790 -1616812517821 ,112.567628,26.87232281,59.8612442,185.4129516,-400,14.115674,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812517800 -1616812517830 ,112.5676277,26.87232028,59.86304855,185.4023784,186.553894,14.122008,0.255360602,1620000000000 ,1620000000000 ,1620000000000 ,1616812517810 -1616812517841 ,112.5676275,26.87231901,59.86389542,185.3926522,186.5422649,14.12696,0.127748601,1620000000000 ,1620000000000 ,1620000000000 ,1616812517820 -1616812517851 ,112.5676274,26.87231774,59.86471939,185.3841282,186.5323704,14.132962,0.12779958,1620000000000 ,1620000000000 ,1620000000000 ,1616812517830 -1616812517864 ,112.5676272,26.87231647,59.86551666,185.3757134,186.5175347,14.138713,0.127852039,1620000000000 ,1620000000000 ,1620000000000 ,1616812517840 -1616812517876 ,112.5676271,26.8723152,59.86629486,185.3665882,186.5039508,14.144741,0.127906882,1620000000000 ,1620000000000 ,1620000000000 ,1616812517850 -1616812517887 ,112.567627,26.87231392,59.86710358,185.3555506,186.4915673,14.149673,0.127951987,1620000000000 ,1620000000000 ,1620000000000 ,1616812517860 -1616812517896 ,112.5676268,26.87231265,59.867939,185.3435568,186.482965,14.154998,0.127997884,1620000000000 ,1620000000000 ,1620000000000 ,1616812517870 -1616812517902 ,112.5676267,26.87231138,59.86878586,185.3350328,186.4780779,14.161318,0.128055895,1620000000000 ,1620000000000 ,1620000000000 ,1616812517880 -1616812517913 ,112.5676265,26.87231011,59.86964417,185.3248694,186.4718642,14.166637,0.128107286,1620000000000 ,1620000000000 ,1620000000000 ,1616812517890 -1616812517924 ,112.5676264,26.87230883,59.87057877,185.3138865,186.456234,14.170434,0.128143529,1620000000000 ,1620000000000 ,1620000000000 ,1616812517900 -1616812517932 ,112.5676262,26.87230756,59.87160492,185.3038871,186.4396533,14.17475,0.128186265,1620000000000 ,1620000000000 ,1620000000000 ,1616812517910 -1616812517943 ,112.5676261,26.87230629,59.87265778,185.294598,186.4335864,14.17977,0.128232419,1620000000000 ,1620000000000 ,1620000000000 ,1616812517920 -1616812517953 ,112.5676259,26.87230501,59.87368011,185.2857734,186.432082,14.185632,0.128285386,1620000000000 ,1620000000000 ,1620000000000 ,1616812517930 -1616812517961 ,112.5676258,26.87230374,59.87471008,185.2749544,186.4270157,14.18989,0.128325897,1620000000000 ,1620000000000 ,1620000000000 ,1616812517940 -1616812517973 ,112.5676257,26.87230246,59.87578964,185.2636983,186.4169284,14.194783,0.128370989,1620000000000 ,1620000000000 ,1620000000000 ,1616812517950 -1616812517984 ,112.5676255,26.87230118,59.87688065,185.254901,186.4051767,14.198958,0.128412478,1620000000000 ,1620000000000 ,1620000000000 ,1616812517970 -1616812517995 ,112.5676254,26.87229991,59.87790298,185.2452021,186.3979619,14.204702,0.128458142,1620000000000 ,1620000000000 ,1620000000000 ,1616812517980 -1616812518005 ,112.5676252,26.87229863,59.87886047,185.2346836,186.393408,14.211709,0.128521516,1620000000000 ,1620000000000 ,1620000000000 ,1616812517980 -1616812518013 ,112.5676251,26.87229735,59.87976456,185.2251214,186.3830552,14.217969,0.128575904,1620000000000 ,1620000000000 ,1620000000000 ,1616812518000 -1616812518023 ,112.5676248,26.8722948,59.8815155,185.2053138,186.3610603,14.228406,0.257297738,1620000000000 ,1620000000000 ,1620000000000 ,1616812518010 -1616812518035 ,112.5676247,26.87229352,59.88238907,185.1951778,186.3452473,14.232654,0.128715668,1620000000000 ,1620000000000 ,1620000000000 ,1616812518020 -1616812518044 ,112.5676245,26.87229224,59.88322449,185.1842222,186.3326349,14.237297,0.1287544,1620000000000 ,1620000000000 ,1620000000000 ,1616812518030 -1616812518053 ,112.5676244,26.87229096,59.8840065,185.1753429,186.3218011,14.242343,0.128795896,1620000000000 ,1620000000000 ,1620000000000 ,1616812518040 -1616812518064 ,112.5676242,26.87228968,59.88471985,185.1666549,186.3181815,14.249881,0.128858354,1620000000000 ,1620000000000 ,1620000000000 ,1616812518050 -1616812518074 ,112.5676241,26.87228839,59.88537216,185.1576937,186.3126888,14.255445,0.128914563,1620000000000 ,1620000000000 ,1620000000000 ,1616812518060 -1616812518083 ,112.5676239,26.87228711,59.88596725,185.1471479,186.3008083,14.260554,0.128955756,1620000000000 ,1620000000000 ,1620000000000 ,1616812518070 -1616812518093 ,112.5676238,26.87228583,59.88653946,185.1365475,186.2898731,14.265035,0.128997492,1620000000000 ,1620000000000 ,1620000000000 ,1616812518080 -1616812518104 ,112.5676238,26.87228583,59.88653946,185.1365475,-400,14.265035,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812518090 -1616812518114 ,112.5676235,26.87228326,59.88749695,185.1150733,186.2697874,14.276947,0.258153095,1620000000000 ,1620000000000 ,1620000000000 ,1616812518100 -1616812518125 ,112.5676234,26.87228198,59.88784027,185.1061941,186.2549888,14.282946,0.129145629,1620000000000 ,1620000000000 ,1620000000000 ,1616812518110 -1616812518140 ,112.5676232,26.8722807,59.88813782,185.0951838,186.2432024,14.288543,0.129194915,1620000000000 ,1620000000000 ,1620000000000 ,1616812518120 -1616812518148 ,112.5676231,26.87227941,59.88837051,185.0874794,186.2285976,14.295906,0.12925342,1620000000000 ,1620000000000 ,1620000000000 ,1616812518130 -1616812518155 ,112.567623,26.87227813,59.8885498,185.0782176,186.2155163,14.303059,0.129316639,1620000000000 ,1620000000000 ,1620000000000 ,1616812518140 -1616812518164 ,112.5676228,26.87227684,59.88866806,185.0678084,186.2026883,14.30719,0.129356311,1620000000000 ,1620000000000 ,1620000000000 ,1616812518150 -1616812518174 ,112.5676227,26.87227555,59.88879776,185.0576178,186.1919808,14.312984,0.129400852,1620000000000 ,1620000000000 ,1620000000000 ,1616812518160 -1616812518184 ,112.5676225,26.87227427,59.88895416,185.0485473,186.1749324,14.319453,0.129457658,1620000000000 ,1620000000000 ,1620000000000 ,1616812518170 -1616812518194 ,112.5676224,26.87227298,59.88909912,185.039067,186.1603822,14.3260145,0.129513491,1620000000000 ,1620000000000 ,1620000000000 ,1616812518180 -1616812518205 ,112.5676223,26.87227169,59.88915634,185.029013,186.1464432,14.333372,0.129572677,1620000000000 ,1620000000000 ,1620000000000 ,1616812518190 -1616812518214 ,112.5676221,26.8722704,59.88936996,185.0263628,186.158924,14.339292,0.129562847,1620000000000 ,1620000000000 ,1620000000000 ,1616812518200 -1616812518227 ,112.567622,26.87226911,59.88999557,185.0138226,186.1876068,14.34929,0.129581611,1620000000000 ,1620000000000 ,1620000000000 ,1616812518210 -1616812518235 ,112.5676218,26.87226783,59.89067459,185.0039871,186.1868025,14.354483,0.129636909,1620000000000 ,1620000000000 ,1620000000000 ,1616812518220 -1616812518247 ,112.5676217,26.87226654,59.89143753,184.9934413,186.1747282,14.35633,0.129666972,1620000000000 ,1620000000000 ,1620000000000 ,1616812518230 -1616812518254 ,112.5676216,26.87226525,59.89235306,184.9830594,186.1535598,14.355207,0.129664284,1620000000000 ,1620000000000 ,1620000000000 ,1616812518240 -1616812518265 ,112.5676214,26.87226396,59.89339066,184.9747539,186.1346096,14.35885,0.129679479,1620000000000 ,1620000000000 ,1620000000000 ,1616812518250 -1616812518275 ,112.5676213,26.87226267,59.89446259,184.9674047,186.1233281,14.366292,0.129739419,1620000000000 ,1620000000000 ,1620000000000 ,1616812518260 -1616812518285 ,112.5676212,26.87226138,59.89552307,184.9577877,186.1169923,14.376043,0.129820756,1620000000000 ,1620000000000 ,1620000000000 ,1616812518270 -1616812518295 ,112.567621,26.87226009,59.89664459,184.9462311,186.1018852,14.383006,0.129893446,1620000000000 ,1620000000000 ,1620000000000 ,1616812518280 -1616812518308 ,112.5676209,26.87225879,59.89787292,184.9359311,186.0844396,14.388128,0.1299436,1620000000000 ,1620000000000 ,1620000000000 ,1616812518290 -1616812518322 ,112.5676207,26.8722575,59.89925003,184.9255493,186.0717847,14.392129,0.129985164,1620000000000 ,1620000000000 ,1620000000000 ,1616812518300 -1616812518327 ,112.5676206,26.87225621,59.90073776,184.9154679,186.0572457,14.395432,0.130014801,1620000000000 ,1620000000000 ,1620000000000 ,1616812518310 -1616812518335 ,112.5676205,26.87225491,59.90234756,184.9062608,186.0440706,14.398668,0.130047542,1620000000000 ,1620000000000 ,1620000000000 ,1616812518320 -1616812518346 ,112.5676203,26.87225362,59.90402985,184.8960155,186.0268627,14.404175,0.130093683,1620000000000 ,1620000000000 ,1620000000000 ,1616812518330 -1616812518355 ,112.5676202,26.87225233,59.90574265,184.88618,186.0104957,14.409372,0.130140119,1620000000000 ,1620000000000 ,1620000000000 ,1616812518340 -1616812518365 ,112.5676201,26.87225103,59.90746307,184.8775467,185.9952882,14.416517,0.130199309,1620000000000 ,1620000000000 ,1620000000000 ,1616812518350 -1616812518376 ,112.5676199,26.87224974,59.90921402,184.8687767,185.9808894,14.424063,0.130268538,1620000000000 ,1620000000000 ,1620000000000 ,1616812518360 -1616812518387 ,112.5676198,26.87224844,59.91100311,184.8586954,185.9748206,14.432547,0.130340783,1620000000000 ,1620000000000 ,1620000000000 ,1616812518370 -1616812518397 ,112.5676197,26.87224714,59.91285706,184.848532,185.9632654,14.437655,0.130397704,1620000000000 ,1620000000000 ,1620000000000 ,1616812518380 -1616812518408 ,112.5676195,26.87224585,59.91477203,184.8370846,185.9498027,14.441499,0.130436956,1620000000000 ,1620000000000 ,1620000000000 ,1616812518390 -1616812518417 ,112.5676194,26.87224455,59.91676331,184.8262383,185.9422032,14.445414,0.130473205,1620000000000 ,1620000000000 ,1620000000000 ,1616812518400 -1616812518428 ,112.5676192,26.87224325,59.91878891,184.8155559,185.9335075,14.4510145,0.130521888,1620000000000 ,1620000000000 ,1620000000000 ,1616812518410 -1616812518436 ,112.5676191,26.87224195,59.92084503,184.8073597,185.9251215,14.455516,0.130567911,1620000000000 ,1620000000000 ,1620000000000 ,1616812518420 -1616812518446 ,112.567619,26.87224065,59.92293167,184.7988629,185.9125492,14.460403,0.1306118,1620000000000 ,1620000000000 ,1620000000000 ,1616812518430 -1616812518456 ,112.5676188,26.87223935,59.92509842,184.7875794,185.89959,14.465007,0.130657507,1620000000000 ,1620000000000 ,1620000000000 ,1616812518440 -1616812518470 ,112.5676187,26.87223805,59.92710114,184.7773342,185.8677296,14.471347,0.130776868,1620000000000 ,1620000000000 ,1620000000000 ,1616812518450 -1616812518478 ,112.5676186,26.87223675,59.92890549,184.7683183,185.8401237,14.478617,0.130910245,1620000000000 ,1620000000000 ,1620000000000 ,1616812518460 -1616812518489 ,112.5676184,26.87223545,59.93064117,184.7600401,185.8329649,14.485454,0.130971355,1620000000000 ,1620000000000 ,1620000000000 ,1616812518470 -1616812518497 ,112.5676183,26.87223414,59.93232727,184.7485381,185.821297,14.491779,0.131031622,1620000000000 ,1620000000000 ,1620000000000 ,1616812518480 -1616812518508 ,112.5676182,26.87223284,59.93398285,184.7386206,185.8008374,14.497228,0.131081172,1620000000000 ,1620000000000 ,1620000000000 ,1616812518490 -1616812518519 ,112.567618,26.87223153,59.93563461,184.7297414,185.7883881,14.50204,0.131125792,1620000000000 ,1620000000000 ,1620000000000 ,1616812518500 -1616812518527 ,112.5676179,26.87223023,59.93725204,184.718376,185.7759482,14.507329,0.131173744,1620000000000 ,1620000000000 ,1620000000000 ,1616812518510 -1616812518537 ,112.5676178,26.87222892,59.93883514,184.7090596,185.7691083,14.51341,0.131227385,1620000000000 ,1620000000000 ,1620000000000 ,1616812518520 -1616812518547 ,112.5676176,26.87222762,59.94039154,184.6991148,185.763869,14.521885,0.131296727,1620000000000 ,1620000000000 ,1620000000000 ,1616812518530 -1616812518557 ,112.5676175,26.87222631,59.94192123,184.6888695,185.7446308,14.530075,0.131372742,1620000000000 ,1620000000000 ,1620000000000 ,1616812518540 -1616812518568 ,112.5676174,26.872225,59.94336319,184.6787062,185.721626,14.536634,0.131434121,1620000000000 ,1620000000000 ,1620000000000 ,1616812518550 -1616812518580 ,112.5676173,26.87222369,59.94472122,184.6685975,185.715968,14.542144,0.1314843,1620000000000 ,1620000000000 ,1620000000000 ,1616812518560 -1616812518591 ,112.5676171,26.87222238,59.9459877,184.6601008,185.711772,14.548236,0.131536822,1620000000000 ,1620000000000 ,1620000000000 ,1616812518570 -1616812518599 ,112.567617,26.87222107,59.94720078,184.6528608,185.700264,14.552645,0.131576596,1620000000000 ,1620000000000 ,1620000000000 ,1616812518580 -1616812518612 ,112.5676169,26.87221977,59.9483757,184.6452656,185.6854824,14.558339,0.131624019,1620000000000 ,1620000000000 ,1620000000000 ,1616812518590 -1616812518619 ,112.5676167,26.87221845,59.94952011,184.6397741,185.6755877,14.565111,0.131684225,1620000000000 ,1620000000000 ,1620000000000 ,1616812518600 -1616812518628 ,112.5676166,26.87221714,59.95057297,184.633545,185.6623387,14.574986,0.131760602,1620000000000 ,1620000000000 ,1620000000000 ,1616812518610 -1616812518639 ,112.5676165,26.87221583,59.95150375,184.6276984,185.6548698,14.584469,0.131848121,1620000000000 ,1620000000000 ,1620000000000 ,1616812518620 -1616812518648 ,112.5676163,26.87221452,59.95230865,184.6199666,185.6534518,14.592833,0.131921722,1620000000000 ,1620000000000 ,1620000000000 ,1616812518630 -1616812518662 ,112.5676162,26.87221321,59.95306396,184.6138194,185.6468855,14.598101,0.131975188,1620000000000 ,1620000000000 ,1620000000000 ,1616812518640 -1616812518668 ,112.5676161,26.87221189,59.95378494,184.6084372,185.6315004,14.604423,0.132027565,1620000000000 ,1620000000000 ,1620000000000 ,1616812518650 -1616812518680 ,112.567616,26.87221058,59.95446777,184.6034375,185.6268788,14.612075,0.132090927,1620000000000 ,1620000000000 ,1620000000000 ,1616812518660 -1616812518689 ,112.5676158,26.87220926,59.95507813,184.5985744,185.6244767,14.618284,0.132149016,1620000000000 ,1620000000000 ,1620000000000 ,1616812518670 -1616812518699 ,112.5676157,26.87220795,59.95565033,184.5953779,185.6211012,14.624915,0.132209358,1620000000000 ,1620000000000 ,1620000000000 ,1616812518680 -1616812518713 ,112.5676156,26.87220663,59.95623016,184.5932742,185.6108952,14.6329365,0.132276602,1620000000000 ,1620000000000 ,1620000000000 ,1616812518690 -1616812518724 ,112.5676154,26.87220531,59.95682526,184.5902416,185.5992246,14.640226,0.132342479,1620000000000 ,1620000000000 ,1620000000000 ,1616812518700 -1616812518734 ,112.5676153,26.87220399,59.95742798,184.58934,185.5895465,14.646996,0.132407008,1620000000000 ,1620000000000 ,1620000000000 ,1616812518710 -1616812518740 ,112.5676152,26.87220268,59.95803452,184.5907061,185.590958,14.651754,0.13245566,1620000000000 ,1620000000000 ,1620000000000 ,1616812518720 -1616812518749 ,112.5676151,26.87220136,59.95864487,184.59087,185.5903439,14.658457,0.132509626,1620000000000 ,1620000000000 ,1620000000000 ,1616812518730 -1616812518761 ,112.5676149,26.87220004,59.95929718,184.5913618,185.5817533,14.663181,0.132557508,1620000000000 ,1620000000000 ,1620000000000 ,1616812518740 -1616812518772 ,112.5676148,26.87219872,59.9599762,184.5942304,185.5702719,14.669818,0.132617058,1620000000000 ,1620000000000 ,1620000000000 ,1616812518750 -1616812518781 ,112.5676147,26.8721974,59.96065521,184.597263,185.5687918,14.676857,0.132680883,1620000000000 ,1620000000000 ,1620000000000 ,1616812518760 -1616812518790 ,112.5676145,26.87219608,59.96128082,184.6005689,185.5676602,14.684131,0.13274018,1620000000000 ,1620000000000 ,1620000000000 ,1616812518770 -1616812518800 ,112.5676144,26.87219476,59.9618721,184.6035195,185.5627068,14.688917,0.132787976,1620000000000 ,1620000000000 ,1620000000000 ,1616812518780 -1616812518809 ,112.5676143,26.87219343,59.96244431,184.6073171,185.5571517,14.695029,0.132840789,1620000000000 ,1620000000000 ,1620000000000 ,1616812518790 -1616812518819 ,112.5676141,26.87219211,59.96298981,184.611825,185.5495161,14.702694,0.132905772,1620000000000 ,1620000000000 ,1620000000000 ,1616812518800 -1616812518832 ,112.567614,26.87219079,59.96347809,184.6156772,185.5520231,14.710542,0.132971002,1620000000000 ,1620000000000 ,1620000000000 ,1616812518810 -1616812518841 ,112.5676139,26.87218946,59.96392059,184.6211687,185.5600965,14.716245,0.133027767,1620000000000 ,1620000000000 ,1620000000000 ,1616812518820 -1616812518850 ,112.5676138,26.87218814,59.9643364,184.6253488,185.5639449,14.723494,0.133090222,1620000000000 ,1620000000000 ,1620000000000 ,1616812518830 -1616812518861 ,112.5676136,26.87218681,59.96475601,184.6306217,185.5682143,14.7303705,0.133149189,1620000000000 ,1620000000000 ,1620000000000 ,1616812518840 -1616812518872 ,112.5676135,26.87218549,59.96517944,184.6336543,185.5708848,14.739228,0.133226636,1620000000000 ,1620000000000 ,1620000000000 ,1616812518850 -1616812518883 ,112.5676134,26.87218416,59.96560287,184.637971,185.5744035,14.746823,0.133297644,1620000000000 ,1620000000000 ,1620000000000 ,1616812518860 -1616812518892 ,112.5676132,26.87218283,59.96602631,184.6413861,185.5909579,14.753207,0.133360352,1620000000000 ,1620000000000 ,1620000000000 ,1616812518870 -1616812518903 ,112.5676131,26.87218151,59.96648026,184.6439542,185.6048059,14.757661,0.133401991,1620000000000 ,1620000000000 ,1620000000000 ,1616812518880 -1616812518911 ,112.567613,26.87218018,59.96698761,184.6462218,185.6147176,14.761099,0.133443218,1620000000000 ,1620000000000 ,1620000000000 ,1616812518890 -1616812518921 ,112.5676129,26.87217885,59.96754837,184.6468775,185.6172274,14.765548,0.133474498,1620000000000 ,1620000000000 ,1620000000000 ,1616812518900 -1616812518931 ,112.5676127,26.87217752,59.9681282,184.648872,185.6299601,14.774254,0.133546459,1620000000000 ,1620000000000 ,1620000000000 ,1616812518910 -1616812518942 ,112.5676126,26.87217619,59.96870804,184.6500467,185.6404031,14.782694,0.133621884,1620000000000 ,1620000000000 ,1620000000000 ,1616812518920 -1616812518952 ,112.5676125,26.87217486,59.96931076,184.6506478,185.6499797,14.791771,0.133711076,1620000000000 ,1620000000000 ,1620000000000 ,1616812518930 -1616812518962 ,112.5676123,26.87217353,59.96997452,184.6490905,185.6542444,14.796147,0.133759215,1620000000000 ,1620000000000 ,1620000000000 ,1616812518940 -1616812518972 ,112.5676122,26.8721722,59.9706955,184.6462218,185.6547097,14.800145,0.133794598,1620000000000 ,1620000000000 ,1620000000000 ,1616812518950 -1616812518981 ,112.5676121,26.87217087,59.97145844,184.6446099,185.6591755,14.804859,0.133838587,1620000000000 ,1620000000000 ,1620000000000 ,1616812518960 -1616812518997 ,112.5676119,26.87216953,59.97226715,184.6415773,185.6707552,14.810413,0.13389007,1620000000000 ,1620000000000 ,1620000000000 ,1616812518970 -1616812519001 ,112.5676118,26.8721682,59.97312546,184.6376431,185.6736366,14.815465,0.133938283,1620000000000 ,1620000000000 ,1620000000000 ,1616812518980 -1616812519013 ,112.5676117,26.87216687,59.97406006,184.6343646,185.6756717,14.821065,0.133990798,1620000000000 ,1620000000000 ,1620000000000 ,1616812518990 -1616812519024 ,112.5676115,26.87216553,59.97508621,184.6303212,185.672636,14.827967,0.134053498,1620000000000 ,1620000000000 ,1620000000000 ,1616812519000 -1616812519034 ,112.5676114,26.8721642,59.97617722,184.6269334,185.6770322,14.835755,0.134128296,1620000000000 ,1620000000000 ,1620000000000 ,1616812519010 -1616812519044 ,112.5676113,26.87216286,59.97729492,184.6223708,185.6802772,14.842588,0.134190158,1620000000000 ,1620000000000 ,1620000000000 ,1616812519020 -1616812519053 ,112.5676111,26.87216153,59.97842407,184.6162783,185.688388,14.846826,0.134239444,1620000000000 ,1620000000000 ,1620000000000 ,1616812519030 -1616812519063 ,112.567611,26.87216019,59.9795723,184.6116611,185.6862224,14.850919,0.134278954,1620000000000 ,1620000000000 ,1620000000000 ,1616812519050 -1616812519074 ,112.5676109,26.87215885,59.98075104,184.6044484,185.6855297,14.8561125,0.134325856,1620000000000 ,1620000000000 ,1620000000000 ,1616812519060 -1616812519088 ,112.5676106,26.87215618,59.98308945,184.5943397,185.6845262,14.869307,0.268824965,1620000000000 ,1620000000000 ,1620000000000 ,1616812519070 -1616812519094 ,112.5676105,26.87215484,59.98423004,184.5889302,185.6785018,14.87615,0.134507356,1620000000000 ,1620000000000 ,1620000000000 ,1616812519080 -1616812519104 ,112.5676105,26.87215484,59.98423004,184.5889302,-400,14.87615,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812519090 -1616812519118 ,112.5676102,26.87215216,59.98646545,184.5741224,185.6697616,14.8877735,0.269171397,1620000000000 ,1620000000000 ,1620000000000 ,1616812519100 -1616812519127 ,112.5676101,26.87215082,59.98747635,184.5667184,185.6574305,14.896203,0.134680112,1620000000000 ,1620000000000 ,1620000000000 ,1616812519110 -1616812519135 ,112.5676099,26.87214948,59.98835373,184.5591779,185.6490256,14.904693,0.134753652,1620000000000 ,1620000000000 ,1620000000000 ,1616812519120 -1616812519144 ,112.5676098,26.87214814,59.98912811,184.5534679,185.6415124,14.912095,0.134822898,1620000000000 ,1620000000000 ,1620000000000 ,1616812519130 -1616812519154 ,112.5676097,26.8721468,59.98987579,184.5462825,185.6295584,14.917945,0.134880646,1620000000000 ,1620000000000 ,1620000000000 ,1616812519140 -1616812519163 ,112.5676095,26.87214545,59.99066925,184.5398621,185.6239358,14.9226265,0.134925647,1620000000000 ,1620000000000 ,1620000000000 ,1616812519150 -1616812519175 ,112.5676094,26.87214411,59.99144745,184.5328407,185.6141749,14.927519,0.134966193,1620000000000 ,1620000000000 ,1620000000000 ,1616812519160 -1616812519192 ,112.5676093,26.87214277,59.99215698,184.5269394,185.6055418,14.934742,0.135023102,1620000000000 ,1620000000000 ,1620000000000 ,1616812519170 -1616812519197 ,112.5676091,26.87214142,59.99272537,184.5196721,185.6047792,14.943562,0.135097145,1620000000000 ,1620000000000 ,1620000000000 ,1616812519180 -1616812519207 ,112.5676091,26.87214142,59.99272537,184.5196721,-400,14.943562,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812519190 -1616812519215 ,112.5676089,26.87213873,59.99296951,184.5179509,185.6267514,14.944003,0.270131768,1620000000000 ,1620000000000 ,1620000000000 ,1616812519200 -1616812519225 ,112.5676087,26.87213739,59.99200058,184.5106562,185.7561638,14.948871,0.134677507,1620000000000 ,1620000000000 ,1620000000000 ,1616812519210 -1616812519235 ,112.5676086,26.87213605,59.9910202,184.5048642,185.7469343,14.9554205,0.13473415,1620000000000 ,1620000000000 ,1620000000000 ,1616812519220 -1616812519245 ,112.5676085,26.87213471,59.99002075,184.4983619,185.7427585,14.962867,0.134795762,1620000000000 ,1620000000000 ,1620000000000 ,1616812519230 -1616812519256 ,112.5676083,26.87213337,59.98897171,184.4904116,185.7335361,14.971533,0.134874031,1620000000000 ,1620000000000 ,1620000000000 ,1616812519240 -1616812519264 ,112.5676082,26.87213203,59.98788452,184.4853026,185.7139913,14.979568,0.134938149,1620000000000 ,1620000000000 ,1620000000000 ,1616812519250 -1616812519275 ,112.5676081,26.87213068,59.98678589,184.4784724,185.6943967,14.986953,0.135003582,1620000000000 ,1620000000000 ,1620000000000 ,1616812519260 -1616812519286 ,112.5676079,26.87212934,59.98567963,184.4739098,185.6795754,14.994346,0.135068096,1620000000000 ,1620000000000 ,1620000000000 ,1616812519270 -1616812519295 ,112.5676078,26.872128,59.98457718,184.4708499,185.6750961,14.999075,0.135119544,1620000000000 ,1620000000000 ,1620000000000 ,1616812519280 -1616812519306 ,112.5676077,26.87212665,59.98350906,184.4688828,185.6616373,15.003264,0.135152655,1620000000000 ,1620000000000 ,1620000000000 ,1616812519290 -1616812519316 ,112.5676075,26.87212531,59.98248672,184.4671343,185.6489491,15.006774,0.135183891,1620000000000 ,1620000000000 ,1620000000000 ,1616812519300 -1616812519326 ,112.5676074,26.87212396,59.98148727,184.4655497,185.6453162,15.0144205,0.135240266,1620000000000 ,1620000000000 ,1620000000000 ,1616812519310 -1616812519334 ,112.5676073,26.87212261,59.98044968,184.4636099,185.6421522,15.0229435,0.13531729,1620000000000 ,1620000000000 ,1620000000000 ,1616812519320 -1616812519345 ,112.5676071,26.87212127,59.97938538,184.4622712,185.6419477,15.031821,0.135388717,1620000000000 ,1620000000000 ,1620000000000 ,1616812519330 -1616812519359 ,112.567607,26.87211992,59.97836304,184.4606319,185.6402153,15.036363,0.135438134,1620000000000 ,1620000000000 ,1620000000000 ,1616812519340 -1616812519367 ,112.5676069,26.87211857,59.9774704,184.4580365,185.6208997,15.042121,0.135490492,1620000000000 ,1620000000000 ,1620000000000 ,1616812519350 -1616812519378 ,112.5676067,26.87211722,59.97672653,184.4571076,185.6126642,15.045913,0.135532694,1620000000000 ,1620000000000 ,1620000000000 ,1616812519360 -1616812519385 ,112.5676066,26.87211587,59.97607422,184.458337,185.6053948,15.051547,0.135575473,1620000000000 ,1620000000000 ,1620000000000 ,1616812519370 -1616812519396 ,112.5676065,26.87211452,59.9755249,184.4608778,185.6009902,15.056629,0.135627935,1620000000000 ,1620000000000 ,1620000000000 ,1616812519380 -1616812519406 ,112.5676063,26.87211317,59.97513199,184.4649759,185.5886579,15.062596,0.135684005,1620000000000 ,1620000000000 ,1620000000000 ,1616812519390 -1616812519417 ,112.5676062,26.87211182,59.97492981,184.4694839,185.5774666,15.065745,0.135722725,1620000000000 ,1620000000000 ,1620000000000 ,1616812519400 -1616812519428 ,112.5676061,26.87211047,59.9748764,184.4768331,185.5670016,15.0690365,0.135752648,1620000000000 ,1620000000000 ,1620000000000 ,1616812519410 -1616812519436 ,112.5676059,26.87210912,59.97490311,184.483035,185.5597652,15.074354,0.135798428,1620000000000 ,1620000000000 ,1620000000000 ,1616812519420 -1616812519447 ,112.5676058,26.87210777,59.97489929,184.4901384,185.5675932,15.08231,0.135865772,1620000000000 ,1620000000000 ,1620000000000 ,1616812519430 -1616812519459 ,112.5676057,26.87210641,59.97485733,184.4968046,185.5713564,15.090096,0.135934688,1620000000000 ,1620000000000 ,1620000000000 ,1616812519440 -1616812519467 ,112.5676056,26.87210506,59.97535706,184.4992908,185.5065783,15.096131,0.136222375,1620000000000 ,1620000000000 ,1620000000000 ,1616812519450 -1616812519477 ,112.5676054,26.8721037,59.97651291,184.5006568,185.4519886,15.100222,0.136495433,1620000000000 ,1620000000000 ,1620000000000 ,1616812519460 -1616812519491 ,112.5676053,26.87210234,59.97781754,184.5049462,185.4642265,15.106632,0.136555106,1620000000000 ,1620000000000 ,1620000000000 ,1616812519470 -1616812519497 ,112.5676052,26.87210098,59.97923279,184.511148,185.4753196,15.111897,0.136609427,1620000000000 ,1620000000000 ,1620000000000 ,1616812519480 -1616812519508 ,112.567605,26.87209962,59.98072052,184.5160384,185.4866673,15.117005,0.136660983,1620000000000 ,1620000000000 ,1620000000000 ,1616812519490 -1616812519517 ,112.5676049,26.87209826,59.98224258,184.5210381,185.4912037,15.123439,0.136716746,1620000000000 ,1620000000000 ,1620000000000 ,1616812519500 -1616812519526 ,112.5676048,26.8720969,59.98373413,184.5244805,185.4990188,15.128329,0.136767372,1620000000000 ,1620000000000 ,1620000000000 ,1616812519510 -1616812519537 ,112.5676046,26.87209553,59.9852066,184.5278683,185.5117053,15.1327095,0.136807281,1620000000000 ,1620000000000 ,1620000000000 ,1616812519520 -1616812519547 ,112.5676045,26.87209417,59.98672104,184.5316386,185.5252993,15.136347,0.136848828,1620000000000 ,1620000000000 ,1620000000000 ,1616812519530 -1616812519557 ,112.5676044,26.87209281,59.98829269,184.5353269,185.5305099,15.141491,0.136890544,1620000000000 ,1620000000000 ,1620000000000 ,1616812519540 -1616812519568 ,112.5676042,26.87209145,59.98984909,184.5376765,185.5355679,15.146788,0.136944328,1620000000000 ,1620000000000 ,1620000000000 ,1616812519550 -1616812519577 ,112.5676041,26.87209008,59.99130249,184.5401627,185.54669,15.154484,0.137002932,1620000000000 ,1620000000000 ,1620000000000 ,1616812519560 -1616812519590 ,112.567604,26.87208872,59.99262238,184.5391245,185.559473,15.161127,0.137066197,1620000000000 ,1620000000000 ,1620000000000 ,1616812519570 -1616812519597 ,112.5676038,26.87208735,59.99381256,184.5387966,185.5695212,15.16778,0.137121158,1620000000000 ,1620000000000 ,1620000000000 ,1616812519580 -1616812519607 ,112.5676037,26.87208599,59.99490738,184.5406818,185.5804516,15.173858,0.137179315,1620000000000 ,1620000000000 ,1620000000000 ,1616812519590 -1616812519621 ,112.5676036,26.87208462,59.99592209,184.5411735,185.5801005,15.182559,0.137248584,1620000000000 ,1620000000000 ,1620000000000 ,1616812519600 -1616812519628 ,112.5676034,26.87208326,59.9969101,184.5392338,185.5860093,15.189999,0.137319785,1620000000000 ,1620000000000 ,1620000000000 ,1616812519610 -1616812519638 ,112.5676033,26.87208189,59.99788666,184.5386327,185.5809397,15.195344,0.137375041,1620000000000 ,1620000000000 ,1620000000000 ,1616812519620 -1616812519649 ,112.5676032,26.87208052,59.99884033,184.5384961,185.583962,15.19961,0.137414297,1620000000000 ,1620000000000 ,1620000000000 ,1616812519630 -1616812519659 ,112.567603,26.87207915,59.99974823,184.5365836,185.5876845,15.205781,0.137466306,1620000000000 ,1620000000000 ,1620000000000 ,1616812519640 -1616812519668 ,112.5676029,26.87207778,60.00060272,184.5344799,185.5920937,15.211175,0.13751369,1620000000000 ,1620000000000 ,1620000000000 ,1616812519650 -1616812519681 ,112.5676028,26.87207642,60.00143051,184.5322396,185.5948619,15.218077,0.137572944,1620000000000 ,1620000000000 ,1620000000000 ,1616812519660 -1616812519688 ,112.5676026,26.87207505,60.00225067,184.5284694,185.5858215,15.224269,0.137628878,1620000000000 ,1620000000000 ,1620000000000 ,1616812519670 -1616812519698 ,112.5676025,26.87207368,60.00304031,184.525628,185.5821455,15.231517,0.137693848,1620000000000 ,1620000000000 ,1620000000000 ,1616812519680 -1616812519709 ,112.5676024,26.8720723,60.00377655,184.5237702,185.5832148,15.237984,0.137750363,1620000000000 ,1620000000000 ,1620000000000 ,1616812519690 -1616812519718 ,112.5676022,26.87207093,60.00442505,184.5196721,185.5878596,15.2444725,0.13781181,1620000000000 ,1620000000000 ,1620000000000 ,1616812519700 -1616812519728 ,112.5676021,26.87206956,60.0050087,184.5156559,185.5794123,15.250618,0.137858257,1620000000000 ,1620000000000 ,1620000000000 ,1616812519710 -1616812519742 ,112.567602,26.87206819,60.00553894,184.5086345,185.5702503,15.257375,0.137920948,1620000000000 ,1620000000000 ,1620000000000 ,1616812519720 -1616812519751 ,112.5676018,26.87206681,60.00602722,184.501777,185.5663566,15.264366,0.137978339,1620000000000 ,1620000000000 ,1620000000000 ,1616812519730 -1616812519759 ,112.5676017,26.87206544,60.00648499,184.4946463,185.5680384,15.271407,0.138043609,1620000000000 ,1620000000000 ,1620000000000 ,1616812519740 -1616812519770 ,112.5676016,26.87206407,60.00691986,184.4906301,185.5675534,15.275537,0.138084145,1620000000000 ,1620000000000 ,1620000000000 ,1616812519750 -1616812519780 ,112.5676014,26.87206269,60.00738144,184.4841824,185.560945,15.27929,0.13812222,1620000000000 ,1620000000000 ,1620000000000 ,1616812519760 -1616812519789 ,112.5676013,26.87206132,60.00788498,184.4778167,185.5443352,15.285431,0.138168908,1620000000000 ,1620000000000 ,1620000000000 ,1616812519770 -1616812519799 ,112.5676012,26.87205994,60.00838089,184.472134,185.5379484,15.292565,0.138232073,1620000000000 ,1620000000000 ,1620000000000 ,1616812519780 -1616812519809 ,112.567601,26.87205856,60.00880814,184.463446,185.5398641,15.299943,0.138295604,1620000000000 ,1620000000000 ,1620000000000 ,1616812519790 -1616812519819 ,112.5676009,26.87205719,60.00919342,184.4564245,185.5440187,15.304519,0.138340651,1620000000000 ,1620000000000 ,1620000000000 ,1616812519800 -1616812519830 ,112.5676008,26.87205581,60.00963593,184.4459607,185.5321323,15.309326,0.138382593,1620000000000 ,1620000000000 ,1620000000000 ,1616812519810 -1616812519840 ,112.5676006,26.87205443,60.01016617,184.4357701,185.5233298,15.314139,0.138430338,1620000000000 ,1620000000000 ,1620000000000 ,1616812519820 -1616812519853 ,112.5676005,26.87205305,60.01071548,184.4268362,185.5119554,15.320603,0.138484276,1620000000000 ,1620000000000 ,1620000000000 ,1616812519830 -1616812519861 ,112.5676004,26.87205167,60.01124954,184.4160445,185.5106119,15.325637,0.138529655,1620000000000 ,1620000000000 ,1620000000000 ,1616812519840 -1616812519872 ,112.5676002,26.8720503,60.01177597,184.4047337,185.5034249,15.332631,0.138587136,1620000000000 ,1620000000000 ,1620000000000 ,1616812519850 -1616812519879 ,112.5676001,26.87204891,60.01232147,184.3923027,185.4854127,15.338883,0.1386461,1620000000000 ,1620000000000 ,1620000000000 ,1616812519860 -1616812519890 ,112.5676,26.87204753,60.01287079,184.3813471,185.4716551,15.344317,0.138701415,1620000000000 ,1620000000000 ,1620000000000 ,1616812519870 -1616812519899 ,112.5675998,26.87204615,60.01345444,184.3689981,185.4649454,15.349855,0.138743238,1620000000000 ,1620000000000 ,1620000000000 ,1616812519880 -1616812519911 ,112.5675997,26.87204477,60.01408768,184.356294,185.4536748,15.354441,0.138792385,1620000000000 ,1620000000000 ,1620000000000 ,1616812519890 -1616812519921 ,112.5675996,26.87204339,60.01478577,184.343945,185.4341583,15.361178,0.138844363,1620000000000 ,1620000000000 ,1620000000000 ,1616812519900 -1616812519932 ,112.5675994,26.87204201,60.01552963,184.3317873,185.4242249,15.367337,0.138908598,1620000000000 ,1620000000000 ,1620000000000 ,1616812519910 -1616812519941 ,112.5675993,26.87204062,60.01630402,184.3177171,185.4032392,15.375597,0.138975235,1620000000000 ,1620000000000 ,1620000000000 ,1616812519920 -1616812519951 ,112.5675992,26.87203924,60.01713943,184.3035103,185.39244,15.381174,0.1390377,1620000000000 ,1620000000000 ,1620000000000 ,1616812519930 -1616812519960 ,112.5675991,26.87203785,60.01803207,184.2895767,185.3818949,15.386148,0.139084282,1620000000000 ,1620000000000 ,1620000000000 ,1616812519940 -1616812519976 ,112.5675989,26.87203647,60.01897812,184.2753426,185.3729476,15.389467,0.139120999,1620000000000 ,1620000000000 ,1620000000000 ,1616812519950 -1616812519993 ,112.5675988,26.87203508,60.01998901,184.2626657,185.3561612,15.394396,0.139161496,1620000000000 ,1620000000000 ,1620000000000 ,1616812519960 -1616812519995 ,112.5675987,26.8720337,60.02104568,184.24906,185.3404872,15.399935,0.13920952,1620000000000 ,1620000000000 ,1620000000000 ,1616812519970 -1616812520000 ,112.5675985,26.87203231,60.0220871,184.2371481,185.3234396,15.408547,0.139284569,1620000000000 ,1620000000000 ,1620000000000 ,1616812519980 -1616812520011 ,112.5675984,26.87203092,60.0230751,184.2243347,185.3129719,15.415104,0.139346455,1620000000000 ,1620000000000 ,1620000000000 ,1616812519990 -1616812520023 ,112.5675983,26.87202953,60.02403641,184.2108929,185.301809,15.422071,0.13941047,1620000000000 ,1620000000000 ,1620000000000 ,1616812520000 -1616812520031 ,112.5675981,26.87202815,60.02500153,184.1975057,185.2852372,15.426537,0.139451725,1620000000000 ,1620000000000 ,1620000000000 ,1616812520010 -1616812520042 ,112.567598,26.87202676,60.0259285,184.1822061,185.2636474,15.433513,0.139509803,1620000000000 ,1620000000000 ,1620000000000 ,1616812520020 -1616812520052 ,112.5675979,26.87202537,60.02679062,184.1678081,185.2532863,15.439503,0.139563537,1620000000000 ,1620000000000 ,1620000000000 ,1616812520030 -1616812520065 ,112.5675978,26.87202398,60.02758408,184.1551312,185.239044,15.446055,0.139621606,1620000000000 ,1620000000000 ,1620000000000 ,1616812520040 -1616812520071 ,112.5675976,26.87202259,60.02834702,184.1401321,185.2202012,15.453422,0.139682206,1620000000000 ,1620000000000 ,1620000000000 ,1616812520050 -1616812520087 ,112.5675975,26.87202119,60.02909851,184.1242861,185.2023505,15.459549,0.139742465,1620000000000 ,1620000000000 ,1620000000000 ,1616812520060 -1616812520092 ,112.5675974,26.8720198,60.02981186,184.1102159,185.1818314,15.468553,0.139809394,1620000000000 ,1620000000000 ,1620000000000 ,1616812520070 -1616812520102 ,112.5675973,26.87201841,60.03048325,184.0963916,185.1706213,15.474191,0.139875421,1620000000000 ,1620000000000 ,1620000000000 ,1616812520080 -1616812520122 ,112.5675971,26.87201702,60.03110123,184.0840426,185.1571304,15.481795,0.139931086,1620000000000 ,1620000000000 ,1620000000000 ,1616812520100 -1616812520126 ,112.567597,26.87201562,60.03167725,184.070956,185.1485954,15.484416,0.139965829,1620000000000 ,1620000000000 ,1620000000000 ,1616812520110 -1616812520133 ,112.5675969,26.87201423,60.03223038,184.0591807,185.1261299,15.490655,0.140012182,1620000000000 ,1620000000000 ,1620000000000 ,1616812520120 -1616812520144 ,112.5675968,26.87201283,60.03278732,184.0447007,185.1084418,15.497397,0.140071471,1620000000000 ,1620000000000 ,1620000000000 ,1616812520130 -1616812520154 ,112.5675966,26.87201144,60.03330994,184.0315595,185.0952091,15.507258,0.140150599,1620000000000 ,1620000000000 ,1620000000000 ,1616812520140 -1616812520165 ,112.5675964,26.87200864,60.03429794,184.0033098,185.0798252,15.51957,0.280481667,1620000000000 ,1620000000000 ,1620000000000 ,1616812520150 -1616812520173 ,112.5675963,26.87200724,60.03483582,183.9905237,185.0480753,15.525645,0.14032218,1620000000000 ,1620000000000 ,1620000000000 ,1616812520160 -1616812520185 ,112.5675963,26.87200724,60.03483582,183.9905237,-400,15.525645,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812520170 -1616812520195 ,112.567596,26.87200445,60.03591156,183.962356,185.0231635,15.539069,0.280831737,1620000000000 ,1620000000000 ,1620000000000 ,1616812520180 -1616812520211 ,112.567596,26.87200445,60.03591156,183.962356,-400,15.539069,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812520180 -1616812520215 ,112.5675959,26.87200305,60.03642273,183.9490234,185.0012425,15.544116,0.140488336,1620000000000 ,1620000000000 ,1620000000000 ,1616812520200 -1616812520224 ,112.5675957,26.87200025,60.0376091,183.9292432,184.9214084,15.547673,0.280731335,1620000000000 ,1620000000000 ,1620000000000 ,1616812520210 -1616812520235 ,112.5675955,26.87199885,60.03830719,183.9182056,184.8700331,15.555248,0.14036216,1620000000000 ,1620000000000 ,1620000000000 ,1616812520220 -1616812520244 ,112.5675954,26.87199745,60.03900528,183.9040262,184.8536708,15.561703,0.140426455,1620000000000 ,1620000000000 ,1620000000000 ,1616812520230 -1616812520254 ,112.5675953,26.87199605,60.03965759,183.8903385,184.8421788,15.567685,0.140479958,1620000000000 ,1620000000000 ,1620000000000 ,1616812520240 -1616812520264 ,112.5675952,26.87199465,60.04029465,183.8770059,184.8313311,15.572414,0.140524658,1620000000000 ,1620000000000 ,1620000000000 ,1616812520250 -1616812520275 ,112.5675951,26.87199325,60.04095459,183.8633182,184.8160311,15.578159,0.140569418,1620000000000 ,1620000000000 ,1620000000000 ,1616812520260 -1616812520286 ,112.5675949,26.87199185,60.04167938,183.8497398,184.8021164,15.584614,0.14062946,1620000000000 ,1620000000000 ,1620000000000 ,1616812520270 -1616812520295 ,112.5675948,26.87199045,60.04243469,183.8367625,184.7874912,15.589901,0.140683092,1620000000000 ,1620000000000 ,1620000000000 ,1616812520280 -1616812520305 ,112.5675947,26.87198905,60.04322433,183.8245774,184.779036,15.592802,0.140716442,1620000000000 ,1620000000000 ,1620000000000 ,1616812520290 -1616812520314 ,112.5675946,26.87198764,60.0440712,183.8100154,184.7623373,15.59525,0.140737465,1620000000000 ,1620000000000 ,1620000000000 ,1616812520300 -1616812520324 ,112.5675945,26.87198624,60.04493332,183.7982948,184.7408581,15.599587,0.140768948,1620000000000 ,1620000000000 ,1620000000000 ,1616812520310 -1616812520336 ,112.5675944,26.87198484,60.04572296,183.7860005,184.7279353,15.605275,0.140815665,1620000000000 ,1620000000000 ,1620000000000 ,1616812520320 -1616812520346 ,112.5675942,26.87198343,60.04643631,183.7706462,184.7183793,15.611198,0.14086726,1620000000000 ,1620000000000 ,1620000000000 ,1616812520330 -1616812520361 ,112.5675941,26.87198203,60.04714966,183.7558384,184.7054542,15.614314,0.140901214,1620000000000 ,1620000000000 ,1620000000000 ,1616812520340 -1616812520367 ,112.567594,26.87198062,60.04793167,183.7402929,184.6863766,15.618176,0.140934816,1620000000000 ,1620000000000 ,1620000000000 ,1616812520350 -1616812520388 ,112.5675939,26.87197922,60.04881287,183.7264959,184.6728881,15.621885,0.14097242,1620000000000 ,1620000000000 ,1620000000000 ,1616812520360 -1616812520392 ,112.5675938,26.87197781,60.04976273,183.7135458,184.6578045,15.626365,0.141014872,1620000000000 ,1620000000000 ,1620000000000 ,1616812520370 -1616812520397 ,112.5675937,26.87197641,60.05073166,183.6988746,184.6433631,15.62837,0.141035807,1620000000000 ,1620000000000 ,1620000000000 ,1616812520380 -1616812520406 ,112.5675936,26.871975,60.0516777,183.6854055,184.6282985,15.631288,0.141061448,1620000000000 ,1620000000000 ,1620000000000 ,1616812520390 -1616812520416 ,112.5675934,26.8719736,60.05264282,183.6706249,184.6152085,15.632083,0.141072331,1620000000000 ,1620000000000 ,1620000000000 ,1616812520400 -1616812520426 ,112.5675933,26.87197219,60.05367279,183.6573744,184.5982951,15.636721,0.141108697,1620000000000 ,1620000000000 ,1620000000000 ,1616812520410 -1616812520438 ,112.5675932,26.87197078,60.05473709,183.6449707,184.5822592,15.643062,0.141163909,1620000000000 ,1620000000000 ,1620000000000 ,1616812520420 -1616812520446 ,112.5675931,26.87196937,60.0557785,183.6324032,184.5673957,15.64839,0.14121379,1620000000000 ,1620000000000 ,1620000000000 ,1616812520430 -1616812520457 ,112.567593,26.87196797,60.05681992,183.6186335,184.5561983,15.650961,0.141242371,1620000000000 ,1620000000000 ,1620000000000 ,1616812520440 -1616812520467 ,112.5675929,26.87196656,60.05789566,183.6050551,184.5711396,15.650809,0.141359088,1620000000000 ,1620000000000 ,1620000000000 ,1616812520450 -1616812520478 ,112.5675928,26.87196515,60.05899811,183.5904112,184.5842469,15.65253,0.141478085,1620000000000 ,1620000000000 ,1620000000000 ,1616812520460 -1616812520487 ,112.5675927,26.87196374,60.06007385,183.5763683,184.5745543,15.654693,0.141498235,1620000000000 ,1620000000000 ,1620000000000 ,1616812520470 -1616812520502 ,112.5675925,26.87196233,60.06111908,183.5621069,184.5596345,15.658495,0.141525798,1620000000000 ,1620000000000 ,1620000000000 ,1616812520480 -1616812520508 ,112.5675924,26.87196091,60.06217194,183.5475176,184.5443071,15.661586,0.141557628,1620000000000 ,1620000000000 ,1620000000000 ,1616812520490 -1616812520520 ,112.5675923,26.8719595,60.06324005,183.5328464,184.5275563,15.667165,0.141604416,1620000000000 ,1620000000000 ,1620000000000 ,1616812520500 -1616812520528 ,112.5675922,26.87195809,60.06429291,183.5196778,184.5111719,15.671447,0.141644242,1620000000000 ,1620000000000 ,1620000000000 ,1616812520510 -1616812520545 ,112.5675921,26.87195668,60.06528091,183.5080118,184.4908216,15.67413,0.14167331,1620000000000 ,1620000000000 ,1620000000000 ,1616812520520 -1616812520549 ,112.567592,26.87195527,60.06620407,183.49457,184.4780125,15.67344,0.141667823,1620000000000 ,1620000000000 ,1620000000000 ,1616812520530 -1616812520560 ,112.5675919,26.87195385,60.06708908,183.4817019,184.4681811,15.6728525,0.141663948,1620000000000 ,1620000000000 ,1620000000000 ,1616812520540 -1616812520570 ,112.5675918,26.87195244,60.06798553,183.4692163,184.4570146,15.673227,0.141661505,1620000000000 ,1620000000000 ,1620000000000 ,1616812520550 -1616812520578 ,112.5675917,26.87195103,60.06887436,183.4568127,184.4390031,15.677121,0.14168972,1620000000000 ,1620000000000 ,1620000000000 ,1616812520560 -1616812520591 ,112.5675915,26.87194962,60.06971741,183.4423327,184.4247545,15.6823845,0.141732108,1620000000000 ,1620000000000 ,1620000000000 ,1616812520570 -1616812520598 ,112.5675914,26.8719482,60.07049942,183.4297925,184.4132517,15.686395,0.14177136,1620000000000 ,1620000000000 ,1620000000000 ,1616812520580 -1616812520607 ,112.5675913,26.87194679,60.0712471,183.41493,184.3993785,15.688797,0.141794691,1620000000000 ,1620000000000 ,1620000000000 ,1616812520590 -1616812520618 ,112.5675912,26.87194537,60.07200241,183.4009417,184.3831412,15.68947,0.141803817,1620000000000 ,1620000000000 ,1620000000000 ,1616812520600 -1616812520628 ,112.5675911,26.87194396,60.07276535,183.3877185,184.3626184,15.690444,0.141812827,1620000000000 ,1620000000000 ,1620000000000 ,1616812520610 -1616812520652 ,112.567591,26.87194255,60.0735321,183.3755061,184.3512076,15.689685,0.141806564,1620000000000 ,1620000000000 ,1620000000000 ,1616812520620 -1616812520656 ,112.5675909,26.87194113,60.07427979,183.3625834,184.3367553,15.690911,0.141812489,1620000000000 ,1620000000000 ,1620000000000 ,1616812520630 -1616812520661 ,112.5675908,26.87193972,60.07502747,183.3503437,184.323615,15.692631,0.141823082,1620000000000 ,1620000000000 ,1620000000000 ,1616812520640 -1616812520668 ,112.5675907,26.8719383,60.07580948,183.3382133,184.3007192,15.6954775,0.141850625,1620000000000 ,1620000000000 ,1620000000000 ,1616812520650 -1616812520679 ,112.5675906,26.87193689,60.07661819,183.3256457,184.2838358,15.698485,0.141874179,1620000000000 ,1620000000000 ,1620000000000 ,1616812520660 -1616812520688 ,112.5675905,26.87193547,60.07744217,183.3125591,184.2752638,15.701072,0.141900329,1620000000000 ,1620000000000 ,1620000000000 ,1616812520670 -1616812520699 ,112.5675904,26.87193406,60.07826996,183.3008658,184.2672062,15.701245,0.141907233,1620000000000 ,1620000000000 ,1620000000000 ,1616812520680 -1616812520709 ,112.5675903,26.87193264,60.07913208,183.2869869,184.2534653,15.701664,0.141911032,1620000000000 ,1620000000000 ,1620000000000 ,1616812520690 -1616812520719 ,112.5675902,26.87193123,60.08004379,183.2737363,184.2397467,15.7016535,0.141913233,1620000000000 ,1620000000000 ,1620000000000 ,1616812520700 -1616812520730 ,112.56759,26.87192981,60.08097839,183.2624255,184.2258466,15.703368,0.141923684,1620000000000 ,1620000000000 ,1620000000000 ,1616812520710 -1616812520742 ,112.5675899,26.8719284,60.08190536,183.2510601,184.2132456,15.70488,0.141941068,1620000000000 ,1620000000000 ,1620000000000 ,1616812520720 -1616812520753 ,112.5675898,26.87192698,60.08282471,183.238875,184.1976745,15.705031,0.14194564,1620000000000 ,1620000000000 ,1620000000000 ,1616812520730 -1616812520771 ,112.5675897,26.87192557,60.08378983,183.2271271,184.1823724,15.704891,0.141945607,1620000000000 ,1620000000000 ,1620000000000 ,1616812520740 -1616812520786 ,112.5675896,26.87192415,60.08477783,183.2188489,184.1681049,15.706976,0.141956866,1620000000000 ,1620000000000 ,1620000000000 ,1616812520750 -1616812520790 ,112.5675895,26.87192273,60.08574677,183.209232,184.1543702,15.709056,0.141977168,1620000000000 ,1620000000000 ,1620000000000 ,1616812520760 -1616812520793 ,112.5675894,26.87192132,60.08667374,183.1987408,184.1400859,15.7104025,0.141989325,1620000000000 ,1620000000000 ,1620000000000 ,1616812520770 -1616812520799 ,112.5675893,26.8719199,60.08760452,183.1882223,184.1218197,15.710294,0.141993022,1620000000000 ,1620000000000 ,1620000000000 ,1616812520780 -1616812520810 ,112.5675892,26.87191849,60.0885849,183.1785235,184.109502,15.709387,0.141985755,1620000000000 ,1620000000000 ,1620000000000 ,1616812520790 -1616812520820 ,112.5675891,26.87191707,60.08960342,183.1684148,184.0959751,15.709526,0.14198677,1620000000000 ,1620000000000 ,1620000000000 ,1616812520800 -1616812520841 ,112.567589,26.87191565,60.09062958,183.1616119,184.0855393,15.70963,0.141987605,1620000000000 ,1620000000000 ,1620000000000 ,1616812520810 -1616812520842 ,112.5675889,26.87191424,60.09164047,183.1539075,184.0749963,15.709225,0.141984063,1620000000000 ,1620000000000 ,1620000000000 ,1616812520820 -1616812520850 ,112.5675888,26.87191282,60.09262848,183.1467494,184.0623593,15.709203,0.141982697,1620000000000 ,1620000000000 ,1620000000000 ,1616812520830 -1616812520860 ,112.5675887,26.8719114,60.0935936,183.1389084,184.0563193,15.709222,0.141982577,1620000000000 ,1620000000000 ,1620000000000 ,1616812520840 -1616812520870 ,112.5675886,26.87190999,60.09453583,183.1313405,184.0467933,15.70984,0.141987242,1620000000000 ,1620000000000 ,1620000000000 ,1616812520850 -1616812520881 ,112.5675885,26.87190857,60.09544373,183.125166,184.0368827,15.710359,0.141990705,1620000000000 ,1620000000000 ,1620000000000 ,1616812520860 -1616812520891 ,112.5675884,26.87190716,60.09630203,183.1176801,184.0283448,15.710303,0.14198808,1620000000000 ,1620000000000 ,1620000000000 ,1616812520870 -1616812520903 ,112.5675883,26.87190574,60.09712219,183.1103582,184.0211211,15.71014,0.141985203,1620000000000 ,1620000000000 ,1620000000000 ,1616812520880 -1616812520911 ,112.5675882,26.87190432,60.09791565,183.1039105,184.0135909,15.709591,0.141981792,1620000000000 ,1620000000000 ,1620000000000 ,1616812520890 -1616812520921 ,112.5675881,26.87190291,60.09869766,183.0971076,184.002716,15.710861,0.14198694,1620000000000 ,1620000000000 ,1620000000000 ,1616812520900 -1616812520932 ,112.567588,26.87190149,60.09948349,183.0898403,183.9937986,15.710775,0.141991605,1620000000000 ,1620000000000 ,1620000000000 ,1616812520910 -1616812520941 ,112.5675879,26.87190007,60.10029602,183.0827369,183.9821052,15.710556,0.141989756,1620000000000 ,1620000000000 ,1620000000000 ,1616812520920 -1616812520953 ,112.5675878,26.87189866,60.10113907,183.0780924,183.9783379,15.709395,0.141982298,1620000000000 ,1620000000000 ,1620000000000 ,1616812520930 -1616812520960 ,112.5675877,26.87189724,60.10199738,183.0721091,183.9744746,15.708358,0.141974249,1620000000000 ,1620000000000 ,1620000000000 ,1616812520940 -1616812520975 ,112.5675876,26.87189582,60.10286713,183.0676285,183.9634635,15.708004,0.141968162,1620000000000 ,1620000000000 ,1620000000000 ,1616812520950 -1616812520986 ,112.5675875,26.87189441,60.10375977,183.061618,183.9487609,15.70841,0.141971368,1620000000000 ,1620000000000 ,1620000000000 ,1616812520960 -1616812520994 ,112.5675874,26.87189299,60.10466003,183.0550883,183.9430677,15.708644,0.141975467,1620000000000 ,1620000000000 ,1620000000000 ,1616812520970 -1616812521001 ,112.5675873,26.87189158,60.10555267,183.0496241,183.9448691,15.709203,0.14197969,1620000000000 ,1620000000000 ,1620000000000 ,1616812520980 -1616812521016 ,112.5675872,26.87189016,60.10646057,183.0421656,183.9433091,15.708616,0.14197605,1620000000000 ,1620000000000 ,1620000000000 ,1616812520990 -1616812521022 ,112.5675871,26.87188874,60.1074028,183.0354173,183.9391207,15.707806,0.141973009,1620000000000 ,1620000000000 ,1620000000000 ,1616812521000 -1616812521032 ,112.567587,26.87188733,60.1083374,183.0296527,183.9251934,15.708204,0.141972372,1620000000000 ,1620000000000 ,1620000000000 ,1616812521010 -1616812521042 ,112.5675869,26.87188591,60.10921097,183.0235055,183.916075,15.708998,0.141977892,1620000000000 ,1620000000000 ,1620000000000 ,1616812521020 -1616812521052 ,112.5675868,26.87188449,60.11001968,183.0190249,183.9139007,15.710633,0.141990434,1620000000000 ,1620000000000 ,1620000000000 ,1616812521040 -1616812521062 ,112.5675867,26.87188166,60.11153412,183.0076048,183.90575,15.712129,0.284000596,1620000000000 ,1620000000000 ,1620000000000 ,1616812521050 -1616812521072 ,112.5675867,26.87188166,60.11153412,183.0076048,-400,15.712129,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812521060 -1616812521082 ,112.5675866,26.87188024,60.11224747,183.0017309,183.8933051,15.713058,0.142010523,1620000000000 ,1620000000000 ,1620000000000 ,1616812521070 -1616812521095 ,112.5675864,26.87187741,60.11351395,182.9904747,183.8886614,15.7155,0.284044395,1620000000000 ,1620000000000 ,1620000000000 ,1616812521080 -1616812521104 ,112.5675864,26.87187741,60.11351395,182.9904747,-400,15.7155,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812521080 -1616812521116 ,112.5675862,26.87187457,60.11468887,182.9733992,183.8770727,15.718191,0.284086339,1620000000000 ,1620000000000 ,1620000000000 ,1616812521100 -1616812521124 ,112.5675862,26.87187457,60.11468887,182.9733992,-400,15.718191,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812521110 -1616812521135 ,112.567586,26.87187174,60.11590195,182.9607497,183.8725195,15.718058,0.284104917,1620000000000 ,1620000000000 ,1620000000000 ,1616812521120 -1616812521143 ,112.5675859,26.87187032,60.11649323,182.9546572,183.8678331,15.716575,0.142038764,1620000000000 ,1620000000000 ,1620000000000 ,1616812521130 -1616812521154 ,112.5675858,26.87186891,60.11705017,182.95004,183.8541068,15.715737,0.142029501,1620000000000 ,1620000000000 ,1620000000000 ,1616812521140 -1616812521165 ,112.5675857,26.87186749,60.11758041,182.9439201,183.8400197,15.7158785,0.142024316,1620000000000 ,1620000000000 ,1620000000000 ,1616812521150 -1616812521174 ,112.5675856,26.87186607,60.11807632,182.9371992,183.8344586,15.717333,0.142031464,1620000000000 ,1620000000000 ,1620000000000 ,1616812521160 -1616812521187 ,112.5675855,26.87186465,60.11854553,182.9306422,183.8301598,15.718415,0.142038995,1620000000000 ,1620000000000 ,1620000000000 ,1616812521170 -1616812521200 ,112.5675854,26.87186324,60.11899948,182.9242219,183.8207427,15.71805,0.142039109,1620000000000 ,1620000000000 ,1620000000000 ,1616812521180 -1616812521207 ,112.5675854,26.87186324,60.11899948,182.9242219,-400,15.71805,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812521190 -1616812521215 ,112.5675852,26.8718604,60.12014771,182.9080207,183.8117123,15.726517,0.284171758,1620000000000 ,1620000000000 ,1620000000000 ,1616812521200 -1616812521225 ,112.5675851,26.87185898,60.12122726,182.9011358,183.8151806,15.72795,0.142242248,1620000000000 ,1620000000000 ,1620000000000 ,1616812521210 -1616812521236 ,112.567585,26.87185756,60.1223259,182.8937319,183.8129262,15.728204,0.142247112,1620000000000 ,1620000000000 ,1620000000000 ,1616812521220 -1616812521245 ,112.5675849,26.87185614,60.12351227,182.8872022,183.8071323,15.7277355,0.142246378,1620000000000 ,1620000000000 ,1620000000000 ,1616812521230 -1616812521255 ,112.5675848,26.87185472,60.1248436,182.8795251,183.7951623,15.726163,0.142236799,1620000000000 ,1620000000000 ,1620000000000 ,1616812521240 -1616812521264 ,112.5675848,26.87185331,60.12630081,182.8736785,183.7916811,15.726423,0.142238583,1620000000000 ,1620000000000 ,1620000000000 ,1616812521250 -1616812521276 ,112.5675847,26.87185189,60.12781906,182.8660013,183.784168,15.72585,0.142236088,1620000000000 ,1620000000000 ,1620000000000 ,1616812521260 -1616812521285 ,112.5675846,26.87185047,60.12936401,182.8604825,183.7793788,15.7265215,0.142239259,1620000000000 ,1620000000000 ,1620000000000 ,1616812521270 -1616812521295 ,112.5675845,26.87184905,60.13096619,182.8540622,183.7741115,15.727885,0.142250649,1620000000000 ,1620000000000 ,1620000000000 ,1616812521280 -1616812521307 ,112.5675844,26.87184763,60.13263321,182.8473686,183.76274,15.729202,0.142264833,1620000000000 ,1620000000000 ,1620000000000 ,1616812521290 -1616812521316 ,112.5675843,26.87184621,60.13436508,182.8425055,183.7575075,15.729414,0.14227027,1620000000000 ,1620000000000 ,1620000000000 ,1616812521300 -1616812521326 ,112.5675842,26.87184479,60.13615417,182.8351016,183.7543669,15.728227,0.142268486,1620000000000 ,1620000000000 ,1620000000000 ,1616812521310 -1616812521335 ,112.5675841,26.87184337,60.13801956,182.8285719,183.74834,15.726178,0.14225432,1620000000000 ,1620000000000 ,1620000000000 ,1616812521320 -1616812521349 ,112.567584,26.87184195,60.13996887,182.821851,183.7383762,15.725261,0.142245554,1620000000000 ,1620000000000 ,1620000000000 ,1616812521330 -1616812521366 ,112.5675839,26.87184053,60.14193726,182.8155399,183.7268339,15.727718,0.142260459,1620000000000 ,1620000000000 ,1620000000000 ,1616812521340 -1616812521369 ,112.5675838,26.87183911,60.14386368,182.8098572,183.7242425,15.730884,0.142289713,1620000000000 ,1620000000000 ,1620000000000 ,1616812521350 -1616812521377 ,112.5675837,26.87183769,60.14574432,182.8046389,183.7119083,15.732871,0.142309802,1620000000000 ,1620000000000 ,1620000000000 ,1616812521360 -1616812521386 ,112.5675836,26.87183627,60.14762115,182.7974809,183.7003176,15.731646,0.142307928,1620000000000 ,1620000000000 ,1620000000000 ,1616812521370 -1616812521398 ,112.5675835,26.87183485,60.14952469,182.7928637,183.6910131,15.73101,0.142299549,1620000000000 ,1620000000000 ,1620000000000 ,1616812521380 -1616812521406 ,112.5675835,26.87183343,60.15142822,182.7885743,183.6831019,15.732174,0.142305756,1620000000000 ,1620000000000 ,1620000000000 ,1616812521390 -1616812521417 ,112.5675834,26.87183201,60.15328217,182.7850499,183.6789006,15.733647,0.142317201,1620000000000 ,1620000000000 ,1620000000000 ,1616812521400 -1616812521427 ,112.5675833,26.87183059,60.15506744,182.7796677,183.6734632,15.735056,0.142330917,1620000000000 ,1620000000000 ,1620000000000 ,1616812521410 -1616812521436 ,112.5675832,26.87182917,60.15680313,182.7745314,183.6649035,15.735269,0.142332832,1620000000000 ,1620000000000 ,1620000000000 ,1616812521420 -1616812521447 ,112.5675831,26.87182775,60.15850449,182.7678652,183.6593426,15.735854,0.142337755,1620000000000 ,1620000000000 ,1620000000000 ,1616812521430 -1616812521458 ,112.567583,26.87182633,60.16014862,182.7628108,183.6566559,15.737782,0.14234988,1620000000000 ,1620000000000 ,1620000000000 ,1616812521440 -1616812521466 ,112.5675829,26.87182491,60.16146851,182.7556801,183.649016,15.739511,0.142304546,1620000000000 ,1620000000000 ,1620000000000 ,1616812521450 -1616812521478 ,112.5675828,26.87182349,60.16247177,182.7518825,183.6432356,15.74082,0.142254365,1620000000000 ,1620000000000 ,1620000000000 ,1616812521460 -1616812521493 ,112.5675827,26.87182207,60.16343689,182.7452709,183.6325522,15.741952,0.142264225,1620000000000 ,1620000000000 ,1620000000000 ,1616812521470 -1616812521496 ,112.5675826,26.87182065,60.16436768,182.737785,183.6257144,15.742601,0.142268323,1620000000000 ,1620000000000 ,1620000000000 ,1616812521480 -1616812521506 ,112.5675825,26.87181923,60.16526031,182.7318837,183.6181533,15.744407,0.142282488,1620000000000 ,1620000000000 ,1620000000000 ,1616812521490 -1616812521516 ,112.5675825,26.87181781,60.16611099,182.7262283,183.6122575,15.745772,0.142289373,1620000000000 ,1620000000000 ,1620000000000 ,1616812521500 -1616812521526 ,112.5675824,26.87181639,60.1669693,182.7199172,183.607682,15.746338,0.142301025,1620000000000 ,1620000000000 ,1620000000000 ,1616812521510 -1616812521538 ,112.5675823,26.87181497,60.16785049,182.7143985,183.598621,15.747305,0.142309143,1620000000000 ,1620000000000 ,1620000000000 ,1616812521520 -1616812521547 ,112.5675822,26.87181355,60.1687851,182.7098905,183.5894669,15.74738,0.142313456,1620000000000 ,1620000000000 ,1620000000000 ,1616812521530 -1616812521558 ,112.5675821,26.87181213,60.16975784,182.7037707,183.5795055,15.747612,0.142314616,1620000000000 ,1620000000000 ,1620000000000 ,1616812521540 -1616812521567 ,112.567582,26.87181071,60.17072678,182.6993447,183.5722898,15.748949,0.142326553,1620000000000 ,1620000000000 ,1620000000000 ,1616812521550 -1616812521577 ,112.5675819,26.87180929,60.17166901,182.6929517,183.5667779,15.749662,0.142333915,1620000000000 ,1620000000000 ,1620000000000 ,1616812521560 -1616812521587 ,112.5675818,26.87180786,60.17260361,182.6884711,183.5663203,15.750773,0.142339495,1620000000000 ,1620000000000 ,1620000000000 ,1616812521570 -1616812521597 ,112.5675817,26.87180644,60.17355728,182.6810945,183.5633803,15.75193,0.142352796,1620000000000 ,1620000000000 ,1620000000000 ,1616812521580 -1616812521612 ,112.5675817,26.87180502,60.17450333,182.6760128,183.5557972,15.753049,0.142363064,1620000000000 ,1620000000000 ,1620000000000 ,1616812521590 -1616812521618 ,112.5675816,26.8718036,60.17544556,182.6699749,183.5519343,15.752725,0.14236557,1620000000000 ,1620000000000 ,1620000000000 ,1616812521600 -1616812521630 ,112.5675815,26.87180218,60.1763916,182.6630081,183.5477606,15.752462,0.142361999,1620000000000 ,1620000000000 ,1620000000000 ,1616812521610 -1616812521638 ,112.5675814,26.87180076,60.17733002,182.6592378,183.5367245,15.753232,0.142367829,1620000000000 ,1620000000000 ,1620000000000 ,1616812521620 -1616812521649 ,112.5675813,26.87179934,60.17823029,182.652435,183.5325737,15.755123,0.142380352,1620000000000 ,1620000000000 ,1620000000000 ,1616812521630 -1616812521660 ,112.5675812,26.87179792,60.17907715,182.6466703,183.5288307,15.757385,0.142397459,1620000000000 ,1620000000000 ,1620000000000 ,1616812521640 -1616812521670 ,112.5675811,26.8717965,60.17988205,182.6416706,183.5236277,15.758768,0.142412584,1620000000000 ,1620000000000 ,1620000000000 ,1616812521650 -1616812521679 ,112.567581,26.87179508,60.18069077,182.6353322,183.5103934,15.759065,0.142416807,1620000000000 ,1620000000000 ,1620000000000 ,1616812521660 -1616812521691 ,112.567581,26.87179365,60.18153381,182.6306057,183.4969102,15.75945,0.142419246,1620000000000 ,1620000000000 ,1620000000000 ,1616812521670 -1616812521701 ,112.5675809,26.87179223,60.18243027,182.6262617,183.4883533,15.759863,0.142424651,1620000000000 ,1620000000000 ,1620000000000 ,1616812521680 -1616812521713 ,112.5675808,26.87179081,60.18331909,182.6202511,183.4843863,15.761502,0.142438546,1620000000000 ,1620000000000 ,1620000000000 ,1616812521690 -1616812521722 ,112.5675807,26.87178939,60.18415451,182.6145684,183.4845253,15.763051,0.142449147,1620000000000 ,1620000000000 ,1620000000000 ,1616812521700 -1616812521732 ,112.5675806,26.87178797,60.1849556,182.6075743,183.4813006,15.762955,0.142449619,1620000000000 ,1620000000000 ,1620000000000 ,1616812521710 -1616812521743 ,112.5675805,26.87178654,60.18577576,182.6015091,183.4737271,15.763483,0.142452518,1620000000000 ,1620000000000 ,1620000000000 ,1616812521720 -1616812521753 ,112.5675804,26.87178512,60.18661118,182.5952253,183.4682613,15.765147,0.142465206,1620000000000 ,1620000000000 ,1620000000000 ,1616812521730 -1616812521761 ,112.5675804,26.8717837,60.18743515,182.587958,183.46214,15.767653,0.142486996,1620000000000 ,1620000000000 ,1620000000000 ,1616812521740 -1616812521771 ,112.5675803,26.87178228,60.18822098,182.5814557,183.4554167,15.770383,0.142505083,1620000000000 ,1620000000000 ,1620000000000 ,1616812521750 -1616812521781 ,112.5675802,26.87178086,60.18897629,182.5745435,183.4508149,15.771868,0.142518671,1620000000000 ,1620000000000 ,1620000000000 ,1616812521760 -1616812521791 ,112.5675801,26.87177943,60.18970108,182.5664566,183.4412249,15.772694,0.142527823,1620000000000 ,1620000000000 ,1620000000000 ,1616812521770 -1616812521802 ,112.56758,26.87177801,60.19042587,182.5591892,183.4296454,15.774908,0.142541892,1620000000000 ,1620000000000 ,1620000000000 ,1616812521780 -1616812521812 ,112.5675799,26.87177659,60.19116592,182.5526323,183.415661,15.776078,0.142554274,1620000000000 ,1620000000000 ,1620000000000 ,1616812521790 -1616812521824 ,112.5675798,26.87177516,60.1919136,182.5464578,183.3997149,15.777054,0.142558617,1620000000000 ,1620000000000 ,1620000000000 ,1616812521800 -1616812521833 ,112.5675798,26.87177374,60.19272614,182.537879,183.3952693,15.777849,0.142571137,1620000000000 ,1620000000000 ,1620000000000 ,1616812521810 -1616812521842 ,112.5675797,26.87177232,60.19360352,182.5315953,183.389217,15.779664,0.142581334,1620000000000 ,1620000000000 ,1620000000000 ,1616812521820 -1616812521851 ,112.5675796,26.87177089,60.19453812,182.5266229,183.3854984,15.781427,0.142599437,1620000000000 ,1620000000000 ,1620000000000 ,1616812521830 -1616812521862 ,112.5675795,26.87176947,60.19548035,182.5211041,183.3755182,15.781159,0.142599501,1620000000000 ,1620000000000 ,1620000000000 ,1616812521840 -1616812521872 ,112.5675794,26.87176805,60.19642639,182.5139734,183.3679541,15.780909,0.142595301,1620000000000 ,1620000000000 ,1620000000000 ,1616812521850 -1616812521882 ,112.5675793,26.87176662,60.19741058,182.5067061,183.3635737,15.78059,0.142589714,1620000000000 ,1620000000000 ,1620000000000 ,1616812521860 -1616812521893 ,112.5675793,26.8717652,60.19844055,182.5009687,183.3601601,15.783495,0.142606484,1620000000000 ,1620000000000 ,1620000000000 ,1616812521870 -1616812521902 ,112.5675792,26.87176378,60.19950104,182.4940292,183.3581177,15.78597,0.142632637,1620000000000 ,1620000000000 ,1620000000000 ,1616812521880 -1616812521913 ,112.5675791,26.87176235,60.20062637,182.4879367,183.3479007,15.78526,0.1426342,1620000000000 ,1620000000000 ,1620000000000 ,1616812521890 -1616812521923 ,112.567579,26.87176093,60.20187378,182.4800956,183.3372506,15.783781,0.142624556,1620000000000 ,1620000000000 ,1620000000000 ,1616812521910 -1616812521932 ,112.5675789,26.8717595,60.203228,182.4733201,183.3245771,15.783994,0.142621521,1620000000000 ,1620000000000 ,1620000000000 ,1616812521910 -1616812521942 ,112.5675788,26.87175808,60.20461273,182.4668178,183.3189263,15.786864,0.142640458,1620000000000 ,1620000000000 ,1620000000000 ,1616812521930 -1616812521952 ,112.5675787,26.87175523,60.20745468,182.4506712,183.3164341,15.790575,0.285349658,1620000000000 ,1620000000000 ,1620000000000 ,1616812521940 -1616812521962 ,112.5675787,26.87175523,60.20745468,182.4506712,-400,15.790575,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812521950 -1616812521975 ,112.5675786,26.87175381,60.20902252,182.4452344,183.3003877,15.790462,0.142683775,1620000000000 ,1620000000000 ,1620000000000 ,1616812521960 -1616812521988 ,112.5675784,26.87175096,60.2125473,182.4326122,183.2956219,15.787571,0.285336838,1620000000000 ,1620000000000 ,1620000000000 ,1616812521970 -1616812521996 ,112.5675783,26.87174953,60.21443558,182.4260005,183.2882975,15.788573,0.142671382,1620000000000 ,1620000000000 ,1620000000000 ,1616812521980 -1616812522004 ,112.5675783,26.87174953,60.21443558,182.4260005,-400,15.788573,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812521980 -1616812522014 ,112.5675782,26.87174668,60.21821976,182.4108102,183.2868861,15.791817,0.285398808,1620000000000 ,1620000000000 ,1620000000000 ,1616812522000 -1616812522024 ,112.5675781,26.87174526,60.22013474,182.4033516,183.2914711,15.792773,0.142718615,1620000000000 ,1620000000000 ,1620000000000 ,1616812522010 -1616812522033 ,112.567578,26.87174383,60.22211838,182.3962209,183.2827615,15.7931185,0.142725272,1620000000000 ,1620000000000 ,1620000000000 ,1616812522020 -1616812522043 ,112.5675779,26.87174241,60.22418594,182.3887897,183.2722459,15.792395,0.142723993,1620000000000 ,1620000000000 ,1620000000000 ,1616812522030 -1616812522054 ,112.5675779,26.87174098,60.2263031,182.3828338,183.2680874,15.791342,0.142719273,1620000000000 ,1620000000000 ,1620000000000 ,1616812522040 -1616812522066 ,112.5675778,26.87173956,60.2284317,182.3770691,183.2645484,15.791936,0.142725491,1620000000000 ,1620000000000 ,1620000000000 ,1616812522050 -1616812522080 ,112.5675777,26.87173813,60.23051071,182.3716049,183.260404,15.794652,0.142743277,1620000000000 ,1620000000000 ,1620000000000 ,1616812522060 -1616812522083 ,112.5675776,26.87173671,60.23252869,182.3640917,183.2565395,15.797498,0.142769522,1620000000000 ,1620000000000 ,1620000000000 ,1616812522070 -1616812522094 ,112.5675775,26.87173528,60.23448944,182.3563599,183.2449246,15.799273,0.142788612,1620000000000 ,1620000000000 ,1620000000000 ,1616812522080 -1616812522104 ,112.5675774,26.87173386,60.23640442,182.3496117,183.2397355,15.800384,0.142804915,1620000000000 ,1620000000000 ,1620000000000 ,1616812522090 -1616812522113 ,112.5675774,26.87173243,60.23826599,182.3421258,183.2396999,15.8002615,0.142806811,1620000000000 ,1620000000000 ,1620000000000 ,1616812522100 -1616812522123 ,112.5675773,26.87173101,60.24004364,182.3359787,183.2341678,15.7996,0.142799538,1620000000000 ,1620000000000 ,1620000000000 ,1616812522110 -1616812522133 ,112.5675772,26.87172958,60.24172592,182.3305145,183.2329444,15.802054,0.142814334,1620000000000 ,1620000000000 ,1620000000000 ,1616812522120 -1616812522144 ,112.5675771,26.87172815,60.24330521,182.3260612,183.2238924,15.805302,0.142839227,1620000000000 ,1620000000000 ,1620000000000 ,1616812522130 -1616812522154 ,112.567577,26.87172673,60.24475479,182.3195862,183.2230424,15.807973,0.142862674,1620000000000 ,1620000000000 ,1620000000000 ,1616812522140 -1616812522164 ,112.567577,26.8717253,60.24610138,182.3128926,183.2233483,15.809495,0.142879788,1620000000000 ,1620000000000 ,1620000000000 ,1616812522150 -1616812522175 ,112.5675769,26.87172388,60.24736786,182.3082754,183.2172724,15.810264,0.142883995,1620000000000 ,1620000000000 ,1620000000000 ,1616812522160 -1616812522185 ,112.5675768,26.87172245,60.2485733,182.3030025,183.2117021,15.811146,0.142891421,1620000000000 ,1620000000000 ,1620000000000 ,1616812522170 -1616812522195 ,112.5675767,26.87172102,60.24967575,182.2990956,183.2006971,15.814714,0.142917049,1620000000000 ,1620000000000 ,1620000000000 ,1616812522180 -1616812522204 ,112.5675766,26.87171959,60.2506752,182.2933856,183.1995049,15.8164215,0.14293618,1620000000000 ,1620000000000 ,1620000000000 ,1616812522190 -1616812522214 ,112.5675766,26.87171817,60.25146484,182.2796159,183.1385331,15.795684,0.14269731,1620000000000 ,1620000000000 ,1620000000000 ,1616812522200 -1616812522229 ,112.5675765,26.87171675,60.25204468,182.2761735,183.050736,15.795663,0.142264875,1620000000000 ,1620000000000 ,1620000000000 ,1616812522210 -1616812522238 ,112.5675764,26.87171533,60.25258636,182.2734141,183.0424193,15.797807,0.14227957,1620000000000 ,1620000000000 ,1620000000000 ,1616812522220 -1616812522245 ,112.5675763,26.87171391,60.25300598,182.2715836,183.0342485,15.802488,0.142311086,1620000000000 ,1620000000000 ,1620000000000 ,1616812522230 -1616812522256 ,112.5675763,26.87171249,60.25328827,182.2712285,183.0316178,15.805021,0.142336171,1620000000000 ,1620000000000 ,1620000000000 ,1616812522240 -1616812522266 ,112.5675762,26.87171106,60.25347519,182.2698897,183.0213298,15.806067,0.142347321,1620000000000 ,1620000000000 ,1620000000000 ,1616812522250 -1616812522276 ,112.5675761,26.87170964,60.25367737,182.267868,183.012966,15.806309,0.142350103,1620000000000 ,1620000000000 ,1620000000000 ,1616812522260 -1616812522285 ,112.567576,26.87170822,60.25390625,182.2676768,183.0050359,15.807145,0.142358645,1620000000000 ,1620000000000 ,1620000000000 ,1616812522270 -1616812522296 ,112.567576,26.8717068,60.25412369,182.2694526,183.0009614,15.809057,0.142371186,1620000000000 ,1620000000000 ,1620000000000 ,1616812522280 -1616812522305 ,112.5675759,26.87170538,60.25428009,182.2709553,183.0012969,15.810906,0.14238552,1620000000000 ,1620000000000 ,1620000000000 ,1616812522290 -1616812522315 ,112.5675758,26.87170396,60.25437164,182.2730316,183.0003915,15.814189,0.142409714,1620000000000 ,1620000000000 ,1620000000000 ,1616812522300 -1616812522331 ,112.5675757,26.87170253,60.25443268,182.274507,182.9910579,15.816636,0.142434426,1620000000000 ,1620000000000 ,1620000000000 ,1616812522310 -1616812522337 ,112.5675757,26.87170111,60.25447083,182.2761735,182.9791127,15.819195,0.142455969,1620000000000 ,1620000000000 ,1620000000000 ,1616812522320 -1616812522349 ,112.5675756,26.87169969,60.25446701,182.2798618,182.9777417,15.820085,0.142467224,1620000000000 ,1620000000000 ,1620000000000 ,1616812522330 -1616812522356 ,112.5675755,26.87169826,60.25443268,182.2831676,182.9805324,15.820989,0.142473306,1620000000000 ,1620000000000 ,1620000000000 ,1616812522340 -1616812522366 ,112.5675754,26.87169684,60.25440979,182.2840692,182.9770113,15.821036,0.142475164,1620000000000 ,1620000000000 ,1620000000000 ,1616812522350 -1616812522379 ,112.5675754,26.87169542,60.25438309,182.2870199,182.9714304,15.823202,0.142487131,1620000000000 ,1620000000000 ,1620000000000 ,1616812522360 -1616812522411 ,112.5675753,26.871694,60.25432587,182.2890143,182.9715748,15.82759,0.1425252,1620000000000 ,1620000000000 ,1620000000000 ,1616812522370 -1616812522413 ,112.5675752,26.87169257,60.25422668,182.2912273,182.9727626,15.830808,0.142554316,1620000000000 ,1620000000000 ,1620000000000 ,1616812522380 -1616812522415 ,112.5675752,26.87169115,60.25413513,182.2918556,182.9762762,15.8310795,0.142560572,1620000000000 ,1620000000000 ,1620000000000 ,1616812522390 -1616812522417 ,112.5675751,26.87168972,60.25411224,182.2940959,182.9781043,15.83194,0.142571965,1620000000000 ,1620000000000 ,1620000000000 ,1616812522400 -1616812522429 ,112.567575,26.8716883,60.25414276,182.2960084,182.9800867,15.833592,0.142586985,1620000000000 ,1620000000000 ,1620000000000 ,1616812522410 -1616812522438 ,112.5675749,26.87168688,60.25418091,182.2980301,182.9811536,15.836011,0.142605245,1620000000000 ,1620000000000 ,1620000000000 ,1616812522420 -1616812522448 ,112.5675749,26.87168545,60.25419235,182.3014999,182.9857845,15.838053,0.142623424,1620000000000 ,1620000000000 ,1620000000000 ,1616812522430 -1616812522458 ,112.5675748,26.87168403,60.25422287,182.302702,182.9857409,15.839285,0.142638025,1620000000000 ,1620000000000 ,1620000000000 ,1616812522440 -1616812522467 ,112.5675747,26.8716826,60.25445557,182.3051335,183.0368559,15.841174,0.142892979,1620000000000 ,1620000000000 ,1620000000000 ,1616812522450 -1616812522478 ,112.5675746,26.87168117,60.25486755,182.3070733,183.0918469,15.842958,0.143150387,1620000000000 ,1620000000000 ,1620000000000 ,1616812522460 -1616812522487 ,112.5675746,26.87167974,60.25521851,182.3104064,183.0931668,15.84548,0.143168317,1620000000000 ,1620000000000 ,1620000000000 ,1616812522470 -1616812522500 ,112.5675745,26.87167831,60.25545883,182.3137396,183.1005732,15.849025,0.143192438,1620000000000 ,1620000000000 ,1620000000000 ,1616812522480 -1616812522520 ,112.5675744,26.87167688,60.25562286,182.314887,183.0940762,15.852855,0.143222906,1620000000000 ,1620000000000 ,1620000000000 ,1616812522490 -1616812522525 ,112.5675743,26.87167545,60.2557869,182.315734,183.0912042,15.857526,0.143263316,1620000000000 ,1620000000000 ,1620000000000 ,1616812522500 -1616812522529 ,112.5675742,26.87167402,60.25601578,182.3157067,183.0989055,15.860685,0.143296577,1620000000000 ,1620000000000 ,1620000000000 ,1616812522510 -1616812522550 ,112.5675742,26.87167259,60.25630188,182.3173732,183.1043315,15.860888,0.143301972,1620000000000 ,1620000000000 ,1620000000000 ,1616812522520 -1616812522553 ,112.5675741,26.87167116,60.2566452,182.3188212,183.1066355,15.861806,0.143311463,1620000000000 ,1620000000000 ,1620000000000 ,1616812522530 -1616812522561 ,112.567574,26.87166973,60.25704956,182.3202419,183.1043101,15.864384,0.143333086,1620000000000 ,1620000000000 ,1620000000000 ,1616812522540 -1616812522572 ,112.5675739,26.8716683,60.25750351,182.321526,183.1028974,15.868319,0.143363887,1620000000000 ,1620000000000 ,1620000000000 ,1616812522550 -1616812522580 ,112.5675739,26.87166686,60.25798798,182.3243673,183.1001871,15.872604,0.143402517,1620000000000 ,1620000000000 ,1620000000000 ,1616812522560 -1616812522592 ,112.5675738,26.87166543,60.25853348,182.3249411,183.1037731,15.873729,0.143420823,1620000000000 ,1620000000000 ,1620000000000 ,1616812522570 -1616812522600 ,112.5675737,26.871664,60.25920868,182.3233565,183.1090643,15.873168,0.143423249,1620000000000 ,1620000000000 ,1620000000000 ,1616812522580 -1616812522610 ,112.5675736,26.87166257,60.26000977,182.3240122,183.1086096,15.874276,0.143431158,1620000000000 ,1620000000000 ,1620000000000 ,1616812522590 -1616812522618 ,112.5675735,26.87166113,60.26088333,182.3263071,183.1085954,15.877982,0.143461028,1620000000000 ,1620000000000 ,1620000000000 ,1616812522600 -1616812522629 ,112.5675735,26.8716597,60.26177597,182.3282196,183.1052012,15.882127,0.143498427,1620000000000 ,1620000000000 ,1620000000000 ,1616812522610 -1616812522639 ,112.5675734,26.87165827,60.26271439,182.3282469,183.1071525,15.884302,0.143526642,1620000000000 ,1620000000000 ,1620000000000 ,1616812522620 -1616812522648 ,112.5675733,26.87165684,60.26374817,182.3288753,183.1113489,15.884079,0.143535301,1620000000000 ,1620000000000 ,1620000000000 ,1616812522630 -1616812522659 ,112.5675732,26.8716554,60.26490402,182.3290119,183.1209407,15.885471,0.143546002,1620000000000 ,1620000000000 ,1620000000000 ,1616812522640 -1616812522668 ,112.5675732,26.87165397,60.26613235,182.3304325,183.1258383,15.888232,0.143571425,1620000000000 ,1620000000000 ,1620000000000 ,1616812522650 -1616812522680 ,112.5675731,26.87165253,60.2673645,182.3290938,183.1242414,15.892459,0.143605205,1620000000000 ,1620000000000 ,1620000000000 ,1616812522660 -1616812522694 ,112.567573,26.8716511,60.26858139,182.330132,183.1261355,15.895184,0.14363539,1620000000000 ,1620000000000 ,1620000000000 ,1616812522670 -1616812522699 ,112.5675729,26.87164967,60.26980972,182.3285747,183.1300768,15.896457,0.143651126,1620000000000 ,1620000000000 ,1620000000000 ,1616812522680 -1616812522712 ,112.5675728,26.87164823,60.27109909,182.3305691,183.1324988,15.899469,0.143680887,1620000000000 ,1620000000000 ,1620000000000 ,1616812522690 -1616812522720 ,112.5675728,26.8716468,60.27241898,182.3293124,183.1327648,15.901222,0.143699094,1620000000000 ,1620000000000 ,1620000000000 ,1616812522700 -1616812522730 ,112.5675727,26.87164536,60.27371597,182.329367,183.1347793,15.903397,0.143719962,1620000000000 ,1620000000000 ,1620000000000 ,1616812522710 -1616812522740 ,112.5675726,26.87164393,60.27492905,182.3278097,183.1337808,15.905828,0.143738676,1620000000000 ,1620000000000 ,1620000000000 ,1616812522720 -1616812522750 ,112.5675725,26.87164249,60.2760582,182.3283562,183.1380076,15.910301,0.143772356,1620000000000 ,1620000000000 ,1620000000000 ,1616812522730 -1616812522764 ,112.5675724,26.87164105,60.27711487,182.3266623,183.1402367,15.914381,0.143810407,1620000000000 ,1620000000000 ,1620000000000 ,1616812522740 -1616812522771 ,112.5675724,26.87163962,60.27809525,182.3238482,183.1433363,15.917498,0.143840073,1620000000000 ,1620000000000 ,1620000000000 ,1616812522750 -1616812522782 ,112.5675723,26.87163818,60.27901459,182.3226734,183.1447183,15.918255,0.143852667,1620000000000 ,1620000000000 ,1620000000000 ,1616812522760 -1616812522792 ,112.5675722,26.87163675,60.27984619,182.3210888,183.1469592,15.920648,0.143865323,1620000000000 ,1620000000000 ,1620000000000 ,1616812522770 -1616812522800 ,112.5675721,26.87163531,60.2805748,182.320679,183.1528383,15.924092,0.143891418,1620000000000 ,1620000000000 ,1620000000000 ,1616812522780 -1616812522811 ,112.5675721,26.87163387,60.28116226,182.3182475,183.1578951,15.928565,0.143926477,1620000000000 ,1620000000000 ,1620000000000 ,1616812522790 -1616812522820 ,112.567572,26.87163243,60.28165436,182.3139035,183.1639658,15.932687,0.143962919,1620000000000 ,1620000000000 ,1620000000000 ,1616812522800 -1616812522830 ,112.5675719,26.871631,60.28212357,182.3065815,183.1576773,15.936587,0.143994828,1620000000000 ,1620000000000 ,1620000000000 ,1616812522810 -1616812522841 ,112.5675718,26.87162956,60.28262711,182.3009534,183.1576346,15.939296,0.144023216,1620000000000 ,1620000000000 ,1620000000000 ,1616812522820 -1616812522851 ,112.5675717,26.87162812,60.28317261,182.2952434,183.1562665,15.941287,0.144047843,1620000000000 ,1620000000000 ,1620000000000 ,1616812522830 -1616812522863 ,112.5675717,26.87162668,60.28373337,182.2903257,183.1456812,15.943386,0.14406617,1620000000000 ,1620000000000 ,1620000000000 ,1616812522840 -1616812522871 ,112.5675716,26.87162524,60.28429031,182.284479,183.1380407,15.945204,0.144080981,1620000000000 ,1620000000000 ,1620000000000 ,1616812522850 -1616812522881 ,112.5675715,26.8716238,60.28481674,182.2784958,183.1362571,15.948201,0.144105227,1620000000000 ,1620000000000 ,1620000000000 ,1616812522860 -1616812522892 ,112.5675714,26.87162237,60.28530121,182.2732775,183.1396243,15.9513645,0.144134096,1620000000000 ,1620000000000 ,1620000000000 ,1616812522870 -1616812522903 ,112.5675713,26.87162093,60.28575897,182.2665293,183.1444624,15.954903,0.144164053,1620000000000 ,1620000000000 ,1620000000000 ,1616812522880 -1616812522911 ,112.5675713,26.87161949,60.2861824,182.2617208,183.1406692,15.958216,0.144194661,1620000000000 ,1620000000000 ,1620000000000 ,1616812522890 -1616812522922 ,112.5675712,26.87161805,60.28650665,182.2545901,183.1297019,15.961258,0.144215861,1620000000000 ,1620000000000 ,1620000000000 ,1616812522900 -1616812522934 ,112.5675711,26.87161661,60.28672028,182.2471042,183.1264668,15.964409,0.14423956,1620000000000 ,1620000000000 ,1620000000000 ,1616812522910 -1616812522949 ,112.567571,26.87161517,60.28684998,182.2363125,183.1270184,15.966618,0.144260641,1620000000000 ,1620000000000 ,1620000000000 ,1616812522920 -1616812522955 ,112.5675709,26.87161372,60.28699112,182.2266137,183.1276941,15.970468,0.144289099,1620000000000 ,1620000000000 ,1620000000000 ,1616812522930 -1616812522963 ,112.5675709,26.87161228,60.2871666,182.2180076,183.1230266,15.973847,0.144323169,1620000000000 ,1620000000000 ,1620000000000 ,1616812522940 -1616812522974 ,112.5675708,26.87161084,60.28738403,182.2083907,183.1145433,15.976622,0.144350385,1620000000000 ,1620000000000 ,1620000000000 ,1616812522950 -1616812522982 ,112.5675707,26.8716094,60.28765488,182.2005223,183.1050195,15.97727,0.144361,1620000000000 ,1620000000000 ,1620000000000 ,1616812522960 -1616812522992 ,112.5675706,26.87160796,60.28793335,182.1930911,183.0967309,15.979885,0.144379389,1620000000000 ,1620000000000 ,1620000000000 ,1616812522970 -1616812523002 ,112.5675706,26.87160652,60.28822327,182.1849768,183.0848987,15.9828825,0.144406916,1620000000000 ,1620000000000 ,1620000000000 ,1616812522980 -1616812523012 ,112.5675705,26.87160507,60.28850937,182.1749501,183.0730732,15.985358,0.144427883,1620000000000 ,1620000000000 ,1620000000000 ,1616812523000 -1616812523023 ,112.5675704,26.87160363,60.2888031,182.1649234,183.0669983,15.987785,0.144447146,1620000000000 ,1620000000000 ,1620000000000 ,1616812523010 -1616812523039 ,112.5675703,26.87160219,60.28907394,182.1564266,183.0574965,15.989752,0.144463788,1620000000000 ,1620000000000 ,1620000000000 ,1616812523020 -1616812523044 ,112.5675702,26.87160075,60.2893219,182.1476294,183.052829,15.993287,0.144492091,1620000000000 ,1620000000000 ,1620000000000 ,1616812523030 -1616812523053 ,112.5675701,26.87159786,60.2898674,182.1289146,183.0288455,15.998659,0.289057615,1620000000000 ,1620000000000 ,1620000000000 ,1616812523040 -1616812523063 ,112.56757,26.87159642,60.29022217,182.1208277,183.0028735,15.999741,0.144552351,1620000000000 ,1620000000000 ,1620000000000 ,1616812523050 -1616812523074 ,112.5675699,26.87159497,60.29060364,182.1130686,182.9930196,16.003284,0.144579622,1620000000000 ,1620000000000 ,1620000000000 ,1616812523060 -1616812523083 ,112.5675699,26.87159353,60.29100037,182.1049817,182.983495,16.006897,0.144607764,1620000000000 ,1620000000000 ,1620000000000 ,1616812523070 -1616812523094 ,112.5675698,26.87159208,60.29143524,182.0953921,182.9650526,16.010302,0.144636943,1620000000000 ,1620000000000 ,1620000000000 ,1616812523080 -1616812523103 ,112.5675698,26.87159208,60.29143524,182.0953921,-400,16.010302,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812523090 -1616812523114 ,112.5675696,26.87158919,60.29251862,182.0779887,182.9357945,16.016233,0.289370533,1620000000000 ,1620000000000 ,1620000000000 ,1616812523100 -1616812523124 ,112.5675696,26.87158775,60.29318619,182.0711586,182.9173162,16.016506,0.144703238,1620000000000 ,1620000000000 ,1620000000000 ,1616812523110 -1616812523133 ,112.5675695,26.8715863,60.29397583,182.0649294,182.9085427,16.016916,0.14470974,1620000000000 ,1620000000000 ,1620000000000 ,1616812523120 -1616812523145 ,112.5675694,26.87158486,60.29489136,182.0581812,182.8910072,16.018713,0.144723249,1620000000000 ,1620000000000 ,1620000000000 ,1616812523130 -1616812523154 ,112.5675693,26.87158341,60.29590225,182.0509412,182.8810576,16.021118,0.144745795,1620000000000 ,1620000000000 ,1620000000000 ,1616812523140 -1616812523163 ,112.5675693,26.87158197,60.29695129,182.0441657,182.8767049,16.024761,0.144775076,1620000000000 ,1620000000000 ,1620000000000 ,1616812523150 -1616812523173 ,112.5675692,26.87158052,60.29806137,182.0371442,182.8726301,16.028418,0.144810129,1620000000000 ,1620000000000 ,1620000000000 ,1616812523160 -1616812523185 ,112.5675691,26.87157907,60.29924011,182.0292758,182.8647865,16.032421,0.144845627,1620000000000 ,1620000000000 ,1620000000000 ,1616812523170 -1616812523196 ,112.5675691,26.87157763,60.30047989,182.0208337,182.8553344,16.035042,0.14487338,1620000000000 ,1620000000000 ,1620000000000 ,1616812523180 -1616812523208 ,112.567569,26.87157618,60.30174637,182.0131566,182.8402094,16.03602,0.14488799,1620000000000 ,1620000000000 ,1620000000000 ,1616812523190 -1616812523216 ,112.5675689,26.87157473,60.30298615,181.9939774,182.7521164,16.045279,0.1450175,1620000000000 ,1620000000000 ,1620000000000 ,1616812523200 -1616812523228 ,112.5675689,26.87157328,60.30411911,181.9864369,182.6088762,16.046146,0.145224732,1620000000000 ,1620000000000 ,1620000000000 ,1616812523210 -1616812523235 ,112.5675688,26.87157183,60.3053093,181.9785412,182.5980177,16.04902,0.14524772,1620000000000 ,1620000000000 ,1620000000000 ,1616812523220 -1616812523245 ,112.5675687,26.87157038,60.30654907,181.9710826,182.5859083,16.052752,0.145280057,1620000000000 ,1620000000000 ,1620000000000 ,1616812523230 -1616812523254 ,112.5675687,26.87156893,60.30781555,181.9632416,182.5790348,16.056562,0.145313271,1620000000000 ,1620000000000 ,1620000000000 ,1616812523240 -1616812523265 ,112.5675686,26.87156747,60.30909729,181.9561928,182.5701087,16.059391,0.145344146,1620000000000 ,1620000000000 ,1620000000000 ,1616812523250 -1616812523274 ,112.5675685,26.87156602,60.31036758,181.9500183,182.5598814,16.061293,0.145362317,1620000000000 ,1620000000000 ,1620000000000 ,1616812523260 -1616812523285 ,112.5675685,26.87156457,60.31167603,181.9417948,182.548255,16.063965,0.145388396,1620000000000 ,1620000000000 ,1620000000000 ,1616812523270 -1616812523296 ,112.5675684,26.87156312,60.31304932,181.9328336,182.5350887,16.066376,0.145410879,1620000000000 ,1620000000000 ,1620000000000 ,1616812523280 -1616812523306 ,112.5675683,26.87156166,60.31448364,181.9223424,182.5344485,16.069122,0.145436115,1620000000000 ,1620000000000 ,1620000000000 ,1616812523290 -1616812523315 ,112.5675683,26.87156021,60.31592941,181.9140915,182.5322129,16.071037,0.145457674,1620000000000 ,1620000000000 ,1620000000000 ,1616812523300 -1616812523326 ,112.5675682,26.87155876,60.31738281,181.9066876,182.5304886,16.07211,0.145471042,1620000000000 ,1620000000000 ,1620000000000 ,1616812523310 -1616812523338 ,112.5675681,26.8715573,60.31883621,181.8987373,182.5106115,16.074465,0.145491339,1620000000000 ,1620000000000 ,1620000000000 ,1616812523320 -1616812523348 ,112.5675681,26.87155585,60.32020569,181.8916885,182.4897961,16.079418,0.145524288,1620000000000 ,1620000000000 ,1620000000000 ,1616812523330 -1616812523356 ,112.567568,26.8715544,60.32144928,181.8835469,182.4861009,16.084646,0.145568518,1620000000000 ,1620000000000 ,1620000000000 ,1616812523340 -1616812523367 ,112.567568,26.87155294,60.32256699,181.8757878,182.4853382,16.08885,0.145607985,1620000000000 ,1620000000000 ,1620000000000 ,1616812523350 -1616812523376 ,112.5675679,26.87155149,60.32363892,181.8671545,182.4812991,16.090258,0.145626638,1620000000000 ,1620000000000 ,1620000000000 ,1616812523360 -1616812523385 ,112.5675678,26.87155003,60.32471466,181.8598871,182.4648523,16.092358,0.145645252,1620000000000 ,1620000000000 ,1620000000000 ,1616812523370 -1616812523398 ,112.5675678,26.87154858,60.32578278,181.8521281,182.4525478,16.094545,0.145662676,1620000000000 ,1620000000000 ,1620000000000 ,1616812523380 -1616812523406 ,112.5675677,26.87154712,60.32678604,181.8459536,182.4441293,16.098228,0.145693259,1620000000000 ,1620000000000 ,1620000000000 ,1616812523390 -1616812523416 ,112.5675676,26.87154566,60.32772827,181.8392327,182.4392778,16.101536,0.145723118,1620000000000 ,1620000000000 ,1620000000000 ,1616812523400 -1616812523426 ,112.5675676,26.87154421,60.3286705,181.8312823,182.4349072,16.103075,0.145743453,1620000000000 ,1620000000000 ,1620000000000 ,1616812523410 -1616812523436 ,112.5675675,26.87154275,60.32965851,181.8236052,182.4279605,16.106453,0.145771575,1620000000000 ,1620000000000 ,1620000000000 ,1616812523420 -1616812523447 ,112.5675675,26.8715413,60.33065414,181.8176219,182.4194288,16.109814,0.145802369,1620000000000 ,1620000000000 ,1620000000000 ,1616812523430 -1616812523456 ,112.5675674,26.87153984,60.33158875,181.8130867,182.4172891,16.113039,0.145831755,1620000000000 ,1620000000000 ,1620000000000 ,1616812523440 -1616812523465 ,112.5675673,26.87153838,60.3325119,181.8080324,182.4969741,16.115822,0.145733469,1620000000000 ,1620000000000 ,1620000000000 ,1616812523450 -1616812523476 ,112.5675673,26.87153693,60.33345413,181.8033605,182.5736063,16.117655,0.145622519,1620000000000 ,1620000000000 ,1620000000000 ,1616812523460 -1616812523486 ,112.5675672,26.87153547,60.33440018,181.7989892,182.563042,16.12034,0.145643749,1620000000000 ,1620000000000 ,1620000000000 ,1616812523470 -1616812523497 ,112.5675671,26.87153402,60.33532715,181.7924868,182.5585202,16.123493,0.145672822,1620000000000 ,1620000000000 ,1620000000000 ,1616812523480 -1616812523512 ,112.5675671,26.87153256,60.33620834,181.7870773,182.5557996,16.12647,0.145699578,1620000000000 ,1620000000000 ,1620000000000 ,1616812523490 -1616812523518 ,112.567567,26.87153111,60.33698654,181.7825421,182.544244,16.130142,0.14572735,1620000000000 ,1620000000000 ,1620000000000 ,1616812523500 -1616812523527 ,112.5675669,26.87152965,60.33763504,181.7791543,182.5377734,16.134405,0.145759816,1620000000000 ,1620000000000 ,1620000000000 ,1616812523510 -1616812523537 ,112.5675669,26.87152819,60.3381424,181.7751382,182.5281545,16.139744,0.145801105,1620000000000 ,1620000000000 ,1620000000000 ,1616812523520 -1616812523547 ,112.5675668,26.87152674,60.33852005,181.7698926,182.5214567,16.143948,0.145837415,1620000000000 ,1620000000000 ,1620000000000 ,1616812523530 -1616812523556 ,112.5675667,26.87152528,60.33884811,181.7664228,182.5208732,16.145746,0.145857159,1620000000000 ,1620000000000 ,1620000000000 ,1616812523540 -1616812523566 ,112.5675667,26.87152382,60.33921432,181.7621608,182.5155229,16.147722,0.145874906,1620000000000 ,1620000000000 ,1620000000000 ,1616812523550 -1616812523578 ,112.5675666,26.87152236,60.33966827,181.760385,182.5087549,16.14986,0.145895059,1620000000000 ,1620000000000 ,1620000000000 ,1616812523560 -1616812523589 ,112.5675666,26.87152091,60.34016037,181.7600571,182.5039615,16.152975,0.14591792,1620000000000 ,1620000000000 ,1620000000000 ,1616812523570 -1616812523599 ,112.5675665,26.87151945,60.34062195,181.7592375,182.5061223,16.156693,0.145952478,1620000000000 ,1620000000000 ,1620000000000 ,1616812523580 -1616812523615 ,112.5675664,26.87151799,60.34102631,181.757407,182.5041597,16.160593,0.145983562,1620000000000 ,1620000000000 ,1620000000000 ,1616812523590 -1616812523617 ,112.5675664,26.87151653,60.34142303,181.7539099,182.5045274,16.16477,0.146022496,1620000000000 ,1620000000000 ,1620000000000 ,1616812523600 -1616812523627 ,112.5675663,26.87151507,60.34183121,181.7512871,182.4997477,16.167358,0.146046079,1620000000000 ,1620000000000 ,1620000000000 ,1616812523610 -1616812523637 ,112.5675662,26.87151361,60.34228134,181.7492108,182.4958093,16.169827,0.146068908,1620000000000 ,1620000000000 ,1620000000000 ,1616812523620 -1616812523648 ,112.5675662,26.87151215,60.34277725,181.745905,182.4943408,16.171711,0.146088465,1620000000000 ,1620000000000 ,1620000000000 ,1616812523630 -1616812523658 ,112.5675661,26.87151069,60.34328461,181.7433095,182.4930245,16.174107,0.146108834,1620000000000 ,1620000000000 ,1620000000000 ,1616812523640 -1616812523671 ,112.567566,26.87150923,60.34377289,181.7415063,182.4937601,16.177956,0.146137227,1620000000000 ,1620000000000 ,1620000000000 ,1616812523650 -1616812523679 ,112.567566,26.87150777,60.3442421,181.7382551,182.4899562,16.182373,0.146177291,1620000000000 ,1620000000000 ,1620000000000 ,1616812523660 -1616812523688 ,112.5675659,26.87150631,60.34473801,181.7363427,182.4841383,16.188314,0.146228994,1620000000000 ,1620000000000 ,1620000000000 ,1616812523670 -1616812523698 ,112.5675659,26.87150485,60.34526443,181.7315342,182.4784204,16.191822,0.146262037,1620000000000 ,1620000000000 ,1620000000000 ,1616812523680 -1616812523716 ,112.5675658,26.87150339,60.34585571,181.7285836,182.4747904,16.193644,0.14628414,1620000000000 ,1620000000000 ,1620000000000 ,1616812523690 -1616812523719 ,112.5675657,26.87150193,60.34654236,181.7247587,182.4716358,16.193546,0.146294531,1620000000000 ,1620000000000 ,1620000000000 ,1616812523700 -1616812523731 ,112.5675657,26.87150047,60.34733582,181.7220813,182.4688049,16.194448,0.146300784,1620000000000 ,1620000000000 ,1620000000000 ,1616812523710 -1616812523738 ,112.5675656,26.871499,60.34820175,181.719759,182.4648577,16.197266,0.146319482,1620000000000 ,1620000000000 ,1620000000000 ,1616812523720 -1616812523748 ,112.5675655,26.87149754,60.34909058,181.717464,182.463696,16.199537,0.146346778,1620000000000 ,1620000000000 ,1620000000000 ,1616812523730 -1616812523760 ,112.5675655,26.87149608,60.3499794,181.7149232,182.4590286,16.203217,0.146376934,1620000000000 ,1620000000000 ,1620000000000 ,1616812523740 -1616812523769 ,112.5675654,26.87149462,60.35086441,181.710989,182.4611206,16.206558,0.14640306,1620000000000 ,1620000000000 ,1620000000000 ,1616812523750 -1616812523780 ,112.5675654,26.87149315,60.35178375,181.7070275,182.4564006,16.208237,0.146424322,1620000000000 ,1620000000000 ,1620000000000 ,1616812523760 -1616812523791 ,112.5675653,26.87149169,60.35276794,181.7027108,182.4501404,16.20882,0.146436739,1620000000000 ,1620000000000 ,1620000000000 ,1616812523770 -1616812523799 ,112.5675652,26.87149023,60.3538208,181.6980663,182.4448134,16.210941,0.146453521,1620000000000 ,1620000000000 ,1620000000000 ,1616812523780 -1616812523809 ,112.5675652,26.87148876,60.35489273,181.6930393,182.4443457,16.216244,0.146491459,1620000000000 ,1620000000000 ,1620000000000 ,1616812523790 -1616812523820 ,112.5675651,26.8714873,60.35594559,181.688504,182.4422742,16.222063,0.146543733,1620000000000 ,1620000000000 ,1620000000000 ,1616812523800 -1616812523829 ,112.567565,26.87148584,60.35696411,181.6829852,182.431554,16.223707,0.146566975,1620000000000 ,1620000000000 ,1620000000000 ,1616812523810 -1616812523839 ,112.567565,26.87148437,60.35800171,181.6776031,182.4230501,16.224083,0.146577594,1620000000000 ,1620000000000 ,1620000000000 ,1616812523820 -1616812523850 ,112.5675649,26.87148291,60.35908508,181.6720023,182.4102312,16.225327,0.146584091,1620000000000 ,1620000000000 ,1620000000000 ,1616812523830 -1616812523859 ,112.5675649,26.87148144,60.36021042,181.6679862,182.4081512,16.228033,0.146603787,1620000000000 ,1620000000000 ,1620000000000 ,1616812523840 -1616812523871 ,112.5675648,26.87147998,60.36132813,181.6638061,182.4067774,16.23118,0.146631447,1620000000000 ,1620000000000 ,1620000000000 ,1616812523850 -1616812523881 ,112.5675647,26.87147851,60.36240387,181.6616751,182.4055198,16.235468,0.146668516,1620000000000 ,1620000000000 ,1620000000000 ,1616812523860 -1616812523890 ,112.5675647,26.87147705,60.36348724,181.6546809,182.398069,16.238256,0.146699744,1620000000000 ,1620000000000 ,1620000000000 ,1616812523870 -1616812523900 ,112.5675646,26.87147558,60.36462021,181.6492988,182.3914832,16.240675,0.146722133,1620000000000 ,1620000000000 ,1620000000000 ,1616812523880 -1616812523910 ,112.5675645,26.87147411,60.36582565,181.6430696,182.3911007,16.24106,0.146734553,1620000000000 ,1620000000000 ,1620000000000 ,1616812523890 -1616812523920 ,112.5675645,26.87147265,60.36705399,181.6366219,182.3855056,16.242125,0.146741908,1620000000000 ,1620000000000 ,1620000000000 ,1616812523900 -1616812523932 ,112.5675644,26.87147118,60.36833954,181.629901,182.3851981,16.24314,0.146754159,1620000000000 ,1620000000000 ,1620000000000 ,1616812523910 -1616812523941 ,112.5675644,26.87146972,60.3697052,181.6242729,182.3746711,16.244286,0.146767339,1620000000000 ,1620000000000 ,1620000000000 ,1616812523920 -1616812523951 ,112.5675643,26.87146825,60.37112045,181.6180985,182.3680527,16.246653,0.146784633,1620000000000 ,1620000000000 ,1620000000000 ,1616812523930 -1616812523961 ,112.5675642,26.87146678,60.37254715,181.6122791,182.3651754,16.24936,0.146812132,1620000000000 ,1620000000000 ,1620000000000 ,1616812523940 -1616812523984 ,112.5675642,26.87146531,60.37391281,181.6081264,182.3590017,16.254513,0.146851541,1620000000000 ,1620000000000 ,1620000000000 ,1616812523950 -1616812523987 ,112.5675641,26.87146385,60.37519836,181.6042468,182.3566426,16.257465,0.146878678,1620000000000 ,1620000000000 ,1620000000000 ,1616812523960 -1616812523991 ,112.5675641,26.87146238,60.37638855,181.601023,182.3475142,16.260645,0.14690515,1620000000000 ,1620000000000 ,1620000000000 ,1616812523970 -1616812524001 ,112.567564,26.87146091,60.37755585,181.5938923,182.3336461,16.26232,0.146925614,1620000000000 ,1620000000000 ,1620000000000 ,1616812523980 -1616812524012 ,112.5675639,26.87145944,60.37874222,181.5868708,182.3209285,16.264624,0.146942036,1620000000000 ,1620000000000 ,1620000000000 ,1616812523990 -1616812524022 ,112.5675639,26.87145797,60.37992859,181.5799314,182.3225532,16.267727,0.146967362,1620000000000 ,1620000000000 ,1620000000000 ,1616812524000 -1616812524043 ,112.5675638,26.87145651,60.38103867,181.5765163,182.3218208,16.271622,0.146998262,1620000000000 ,1620000000000 ,1620000000000 ,1616812524010 -1616812524045 ,112.5675638,26.87145504,60.38205719,181.5717351,182.3199835,16.275946,0.147037277,1620000000000 ,1620000000000 ,1620000000000 ,1616812524020 -1616812524053 ,112.5675637,26.87145357,60.38300323,181.5655333,182.3084893,16.281132,0.147081342,1620000000000 ,1620000000000 ,1620000000000 ,1616812524030 -1616812524061 ,112.5675636,26.8714521,60.38388062,181.5589763,182.2952125,16.285858,0.14711902,1620000000000 ,1620000000000 ,1620000000000 ,1616812524040 -1616812524072 ,112.5675636,26.87145063,60.38472366,181.5526652,182.2973316,16.287415,0.147143883,1620000000000 ,1620000000000 ,1620000000000 ,1616812524050 -1616812524081 ,112.5675635,26.87144916,60.38559341,181.5444963,182.2970424,16.288746,0.147159028,1620000000000 ,1620000000000 ,1620000000000 ,1616812524060 -1616812524092 ,112.5675635,26.87144769,60.38653946,181.5378027,182.2881018,16.28961,0.147167887,1620000000000 ,1620000000000 ,1620000000000 ,1616812524070 -1616812524105 ,112.5675634,26.87144622,60.38754654,181.5305081,182.285139,16.291534,0.147187025,1620000000000 ,1620000000000 ,1620000000000 ,1616812524080 -1616812524116 ,112.5675634,26.87144474,60.38855743,181.5240877,182.2756557,16.295181,0.147218175,1620000000000 ,1620000000000 ,1620000000000 ,1616812524090 -1616812524122 ,112.5675633,26.87144327,60.3895607,181.5165745,182.2676549,16.297527,0.147246216,1620000000000 ,1620000000000 ,1620000000000 ,1616812524100 -1616812524133 ,112.5675632,26.8714418,60.39063644,181.5103181,182.2676764,16.298975,0.147269024,1620000000000 ,1620000000000 ,1620000000000 ,1616812524110 -1616812524144 ,112.5675632,26.87144033,60.39181137,181.5024224,182.259845,16.298416,0.147272364,1620000000000 ,1620000000000 ,1620000000000 ,1616812524120 -1616812524156 ,112.5675631,26.87143886,60.39305115,181.4964391,182.2617105,16.299545,0.147282358,1620000000000 ,1620000000000 ,1620000000000 ,1616812524130 -1616812524163 ,112.5675631,26.87143739,60.39427185,181.4916307,182.253249,16.301573,0.147302264,1620000000000 ,1620000000000 ,1620000000000 ,1616812524150 -1616812524172 ,112.567563,26.87143591,60.39539719,181.485019,182.2441308,16.303612,0.14732169,1620000000000 ,1620000000000 ,1620000000000 ,1616812524150 -1616812524184 ,112.5675629,26.87143297,60.39728165,181.4702932,182.2376407,16.309916,0.294710342,1620000000000 ,1620000000000 ,1620000000000 ,1616812524170 -1616812524195 ,112.5675628,26.8714315,60.39801407,181.4641733,182.2203061,16.312355,0.147388693,1620000000000 ,1620000000000 ,1620000000000 ,1616812524180 -1616812524205 ,112.5675628,26.8714315,60.39801407,181.4641733,-400,16.312355,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812524180 -1616812524218 ,112.5675627,26.87142855,60.39934158,181.4593102,182.1745876,16.315607,0.294764965,1620000000000 ,1620000000000 ,1620000000000 ,1616812524200 -1616812524225 ,112.5675627,26.87142708,60.40047073,181.4529718,182.0323501,16.320269,0.147210836,1620000000000 ,1620000000000 ,1620000000000 ,1616812524210 -1616812524233 ,112.5675626,26.87142561,60.40133286,181.4458411,182.0279168,16.32608,0.147252895,1620000000000 ,1620000000000 ,1620000000000 ,1616812524220 -1616812524244 ,112.5675626,26.87142414,60.40192795,181.4411419,182.0259183,16.333271,0.147302137,1620000000000 ,1620000000000 ,1620000000000 ,1616812524230 -1616812524253 ,112.5675625,26.87142266,60.40233994,181.4328637,182.0224986,16.338541,0.147349282,1620000000000 ,1620000000000 ,1620000000000 ,1616812524240 -1616812524263 ,112.5675625,26.87142266,60.40233994,181.4328637,-400,16.338541,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812524250 -1616812524273 ,112.5675624,26.87141972,60.40312195,181.4177007,182.0027073,16.344454,0.294777909,1620000000000 ,1620000000000 ,1620000000000 ,1616812524260 -1616812524284 ,112.5675624,26.87141824,60.40354538,181.4130015,181.9950813,16.346016,0.147419876,1620000000000 ,1620000000000 ,1620000000000 ,1616812524270 -1616812524294 ,112.5675623,26.87141677,60.40393829,181.4069636,182.002634,16.347599,0.147430805,1620000000000 ,1620000000000 ,1620000000000 ,1616812524280 -1616812524303 ,112.5675623,26.8714153,60.40433884,181.4010897,181.9980752,16.348005,0.147433147,1620000000000 ,1620000000000 ,1620000000000 ,1616812524290 -1616812524313 ,112.5675622,26.87141382,60.40482712,181.3942595,181.9885287,16.350336,0.147450091,1620000000000 ,1620000000000 ,1620000000000 ,1616812524300 -1616812524324 ,112.5675622,26.87141235,60.40546799,181.3879757,181.9850131,16.352484,0.147473912,1620000000000 ,1620000000000 ,1620000000000 ,1616812524310 -1616812524335 ,112.5675621,26.87141088,60.4062767,181.3813368,181.981619,16.352999,0.147490633,1620000000000 ,1620000000000 ,1620000000000 ,1616812524320 -1616812524352 ,112.567562,26.8714094,60.40731049,181.375053,181.9873653,16.35167,0.147484946,1620000000000 ,1620000000000 ,1620000000000 ,1616812524330 -1616812524358 ,112.567562,26.87140793,60.40856171,181.3664196,181.9814381,16.350206,0.147479304,1620000000000 ,1620000000000 ,1620000000000 ,1616812524340 -1616812524368 ,112.5675619,26.87140645,60.40998077,181.3580595,181.9744032,16.349735,0.147472736,1620000000000 ,1620000000000 ,1620000000000 ,1616812524350 -1616812524376 ,112.5675619,26.87140498,60.41147614,181.3506829,181.9611697,16.353313,0.147500289,1620000000000 ,1620000000000 ,1620000000000 ,1616812524360 -1616812524386 ,112.5675618,26.87140351,60.41293716,181.3454646,181.9504195,16.358164,0.147537161,1620000000000 ,1620000000000 ,1620000000000 ,1616812524370 -1616812524400 ,112.5675618,26.87140203,60.41437149,181.3426506,181.9464936,16.360044,0.147561622,1620000000000 ,1620000000000 ,1620000000000 ,1616812524380 -1616812524404 ,112.5675617,26.87140056,60.41585922,181.3372138,181.9238082,16.362122,0.147576115,1620000000000 ,1620000000000 ,1620000000000 ,1616812524390 -1616812524415 ,112.5675617,26.87139908,60.41742325,181.333061,181.9044213,16.363981,0.147594152,1620000000000 ,1620000000000 ,1620000000000 ,1616812524400 -1616812524425 ,112.5675616,26.87139761,60.41894913,181.3279247,181.8988639,16.36749,0.147614754,1620000000000 ,1620000000000 ,1620000000000 ,1616812524410 -1616812524434 ,112.5675616,26.87139613,60.42034149,181.3238812,181.9025429,16.372051,0.147651088,1620000000000 ,1620000000000 ,1620000000000 ,1616812524420 -1616812524445 ,112.5675616,26.87139465,60.42164993,181.3154391,181.9020256,16.377195,0.147687884,1620000000000 ,1620000000000 ,1620000000000 ,1616812524430 -1616812524455 ,112.5675615,26.87139318,60.42301178,181.3076254,181.8878521,16.381142,0.147728376,1620000000000 ,1620000000000 ,1620000000000 ,1616812524440 -1616812524466 ,112.5675615,26.8713917,60.42414474,181.3003581,181.9449227,16.381865,0.147857542,1620000000000 ,1620000000000 ,1620000000000 ,1616812524450 -1616812524476 ,112.5675614,26.87139022,60.42509842,181.2938011,182.0049855,16.382229,0.147979054,1620000000000 ,1620000000000 ,1620000000000 ,1616812524460 -1616812524485 ,112.5675613,26.87138874,60.42621994,181.2862879,182.0038436,16.382063,0.147981826,1620000000000 ,1620000000000 ,1620000000000 ,1616812524470 -1616812524496 ,112.5675613,26.87138726,60.4274826,181.2801407,182.0055449,16.383917,0.147996642,1620000000000 ,1620000000000 ,1620000000000 ,1616812524480 -1616812524508 ,112.5675612,26.87138578,60.42883301,181.2735564,181.9934165,16.38686,0.148019421,1620000000000 ,1620000000000 ,1620000000000 ,1616812524490 -1616812524520 ,112.5675612,26.8713843,60.43031311,181.2641854,181.9886063,16.388418,0.148041755,1620000000000 ,1620000000000 ,1620000000000 ,1616812524500 -1616812524526 ,112.5675611,26.87138282,60.43198776,181.2550056,181.9809379,16.38911,0.148056077,1620000000000 ,1620000000000 ,1620000000000 ,1616812524510 -1616812524554 ,112.5675611,26.87138134,60.43389511,181.2464815,181.9732328,16.38894,0.148065251,1620000000000 ,1620000000000 ,1620000000000 ,1616812524520 -1616812524556 ,112.567561,26.87137986,60.43608093,181.2385039,181.9693749,16.387226,0.148059643,1620000000000 ,1620000000000 ,1620000000000 ,1616812524530 -1616812524566 ,112.567561,26.87137838,60.43852615,181.2311273,181.9572011,16.385668,0.148053743,1620000000000 ,1620000000000 ,1620000000000 ,1616812524540 -1616812524569 ,112.5675609,26.87137691,60.44116592,181.2230676,181.946248,16.385344,0.148056539,1620000000000 ,1620000000000 ,1620000000000 ,1616812524550 -1616812524578 ,112.5675609,26.87137543,60.44390106,181.2182045,181.9346787,16.386307,0.148066908,1620000000000 ,1620000000000 ,1620000000000 ,1616812524560 -1616812524587 ,112.5675608,26.87137395,60.44663239,181.2104181,181.937327,16.38876,0.148092672,1620000000000 ,1620000000000 ,1620000000000 ,1616812524570 -1616812524596 ,112.5675608,26.87137247,60.44932556,181.2040797,181.9311496,16.391424,0.148115918,1620000000000 ,1620000000000 ,1620000000000 ,1616812524580 -1616812524606 ,112.5675607,26.87137098,60.45195007,181.1991893,181.9255552,16.391537,0.148123696,1620000000000 ,1620000000000 ,1620000000000 ,1616812524590 -1616812524617 ,112.5675607,26.8713695,60.45450592,181.1950092,181.9162467,16.392136,0.148129164,1620000000000 ,1620000000000 ,1620000000000 ,1616812524600 -1616812524627 ,112.5675606,26.87136802,60.45697784,181.1908838,181.9030966,16.394053,0.148143809,1620000000000 ,1620000000000 ,1620000000000 ,1616812524610 -1616812524636 ,112.5675606,26.87136654,60.45933151,181.1860753,181.8928273,16.396616,0.148160045,1620000000000 ,1620000000000 ,1620000000000 ,1616812524620 -1616812524646 ,112.5675605,26.87136506,60.46149063,181.1818679,181.8828881,16.401897,0.14819711,1620000000000 ,1620000000000 ,1620000000000 ,1616812524630 -1616812524658 ,112.5675605,26.87136358,60.46340942,181.1775239,181.8835042,16.407625,0.148244376,1620000000000 ,1620000000000 ,1620000000000 ,1616812524640 -1616812524669 ,112.5675604,26.8713621,60.46508408,181.1726608,181.8757459,16.41203,0.14828115,1620000000000 ,1620000000000 ,1620000000000 ,1616812524650 -1616812524679 ,112.5675604,26.87136062,60.46660233,181.1677158,181.8642951,16.41367,0.148298591,1620000000000 ,1620000000000 ,1620000000000 ,1616812524660 -1616812524688 ,112.5675604,26.87135913,60.46803284,181.1612408,181.8525786,16.415504,0.148309087,1620000000000 ,1620000000000 ,1620000000000 ,1616812524670 -1616812524697 ,112.5675603,26.87135765,60.46941757,181.1570607,181.8424911,16.416346,0.148318175,1620000000000 ,1620000000000 ,1620000000000 ,1616812524680 -1616812524708 ,112.5675603,26.87135617,60.47071075,181.1545199,181.8400761,16.418272,0.14833043,1620000000000 ,1620000000000 ,1620000000000 ,1616812524690 -1616812524718 ,112.5675602,26.87135469,60.4718895,181.1513233,181.8359487,16.421995,0.148356959,1620000000000 ,1620000000000 ,1620000000000 ,1616812524700 -1616812524727 ,112.5675602,26.8713532,60.47293854,181.1479629,181.8325748,16.425598,0.148381595,1620000000000 ,1620000000000 ,1620000000000 ,1616812524710 -1616812524737 ,112.5675601,26.87135172,60.47392654,181.145586,181.8333094,16.42832,0.148407449,1620000000000 ,1620000000000 ,1620000000000 ,1616812524720 -1616812524753 ,112.5675601,26.87135024,60.47492599,181.1426353,181.8275909,16.430687,0.148429311,1620000000000 ,1620000000000 ,1620000000000 ,1616812524730 -1616812524760 ,112.56756,26.87134875,60.47599411,181.1406955,181.8279102,16.43155,0.148441931,1620000000000 ,1620000000000 ,1620000000000 ,1616812524740 -1616812524776 ,112.56756,26.87134727,60.47716522,181.1384552,181.8268567,16.430794,0.148443298,1620000000000 ,1620000000000 ,1620000000000 ,1616812524750 -1616812524779 ,112.5675599,26.87134578,60.47840881,181.1349309,181.8275822,16.43134,0.148445613,1620000000000 ,1620000000000 ,1620000000000 ,1616812524760 -1616812524788 ,112.5675599,26.8713443,60.47964096,181.131106,181.8297253,16.432095,0.148449563,1620000000000 ,1620000000000 ,1620000000000 ,1616812524770 -1616812524797 ,112.5675598,26.87134282,60.48078156,181.1281826,181.8306288,16.436865,0.148483131,1620000000000 ,1620000000000 ,1620000000000 ,1616812524780 -1616812524808 ,112.5675598,26.87134133,60.48180389,181.1251774,181.8356167,16.441187,0.148520739,1620000000000 ,1620000000000 ,1620000000000 ,1616812524790 -1616812524818 ,112.5675597,26.87133985,60.48274612,181.1201777,181.8338061,16.44451,0.148548494,1620000000000 ,1620000000000 ,1620000000000 ,1616812524800 -1616812524830 ,112.5675597,26.87133836,60.48364639,181.1152599,181.8315153,16.445133,0.148559977,1620000000000 ,1620000000000 ,1620000000000 ,1616812524810 -1616812524839 ,112.5675596,26.87133688,60.48455048,181.1125005,181.8281155,16.445293,0.148560374,1620000000000 ,1620000000000 ,1620000000000 ,1616812524820 -1616812524849 ,112.5675596,26.87133539,60.48549652,181.1070637,181.826343,16.446072,0.148565969,1620000000000 ,1620000000000 ,1620000000000 ,1616812524830 -1616812524859 ,112.5675595,26.87133391,60.4864769,181.1049327,181.8140579,16.44745,0.148574924,1620000000000 ,1620000000000 ,1620000000000 ,1616812524840 -1616812524871 ,112.5675595,26.87133242,60.4874382,181.1031022,181.8099177,16.451935,0.148608221,1620000000000 ,1620000000000 ,1620000000000 ,1616812524850 -1616812524879 ,112.5675595,26.87133094,60.48834991,181.0985123,181.810876,16.45557,0.148642844,1620000000000 ,1620000000000 ,1620000000000 ,1616812524860 -1616812524888 ,112.5675594,26.87132945,60.48921585,181.096272,181.8111219,16.45798,0.148666776,1620000000000 ,1620000000000 ,1620000000000 ,1616812524870 -1616812524899 ,112.5675594,26.87132797,60.49011993,181.0921192,181.8002852,16.458685,0.148676173,1620000000000 ,1620000000000 ,1620000000000 ,1616812524880 -1616812524910 ,112.5675593,26.87132648,60.4910965,181.0897697,181.8013691,16.45809,0.148675117,1620000000000 ,1620000000000 ,1620000000000 ,1616812524890 -1616812524921 ,112.5675593,26.87132499,60.49214935,181.0890047,181.8013294,16.45797,0.148673466,1620000000000 ,1620000000000 ,1620000000000 ,1616812524900 -1616812524930 ,112.5675592,26.87132351,60.49325943,181.0869283,181.8021517,16.456532,0.14866367,1620000000000 ,1620000000000 ,1620000000000 ,1616812524910 -1616812524940 ,112.5675592,26.87132202,60.49441528,181.0850705,181.8008137,16.458467,0.148675918,1620000000000 ,1620000000000 ,1620000000000 ,1616812524920 -1616812524950 ,112.5675591,26.87132053,60.49559021,181.0823931,181.7953008,16.462257,0.148703383,1620000000000 ,1620000000000 ,1620000000000 ,1616812524930 -1616812524960 ,112.5675591,26.87131905,60.4967804,181.0808904,181.7987001,16.466166,0.14874064,1620000000000 ,1620000000000 ,1620000000000 ,1616812524940 -1616812524969 ,112.567559,26.87131756,60.49801636,181.0791965,181.7935142,16.467026,0.148754842,1620000000000 ,1620000000000 ,1620000000000 ,1616812524950 -1616812524980 ,112.567559,26.87131607,60.49936676,181.0748252,181.7936026,16.466711,0.148760909,1620000000000 ,1620000000000 ,1620000000000 ,1616812524960 -1616812524991 ,112.5675589,26.87131459,60.50082779,181.0726942,181.7901621,16.466654,0.148759125,1620000000000 ,1620000000000 ,1620000000000 ,1616812524970 -1616812525000 ,112.5675589,26.8713131,60.50234222,181.070891,181.7875761,16.466318,0.148757185,1620000000000 ,1620000000000 ,1620000000000 ,1616812524980 -1616812525013 ,112.5675588,26.87131161,60.50386429,181.0703992,181.7867598,16.467226,0.148762957,1620000000000 ,1620000000000 ,1620000000000 ,1616812524990 -1616812525022 ,112.5675588,26.87131013,60.50537109,181.0722571,181.786558,16.47172,0.148796393,1620000000000 ,1620000000000 ,1620000000000 ,1616812525000 -1616812525032 ,112.5675588,26.87130864,60.5068779,181.0730767,181.7890529,16.474915,0.148828566,1620000000000 ,1620000000000 ,1620000000000 ,1616812525010 -1616812525041 ,112.5675587,26.87130715,60.5083847,181.0741149,181.7903652,16.477997,0.148856472,1620000000000 ,1620000000000 ,1620000000000 ,1616812525020 -1616812525051 ,112.5675587,26.87130566,60.50989914,181.0735958,181.7909795,16.47952,0.148878177,1620000000000 ,1620000000000 ,1620000000000 ,1616812525030 -1616812525060 ,112.5675586,26.87130418,60.51142883,181.0732406,181.7929535,16.48011,0.148885054,1620000000000 ,1620000000000 ,1620000000000 ,1616812525040 -1616812525071 ,112.5675586,26.87130269,60.5130043,181.0729947,181.7926395,16.479805,0.148884644,1620000000000 ,1620000000000 ,1620000000000 ,1616812525050 -1616812525081 ,112.5675585,26.8713012,60.51464844,181.0731586,181.7863823,16.48034,0.148890384,1620000000000 ,1620000000000 ,1620000000000 ,1616812525060 -1616812525091 ,112.5675585,26.87129971,60.5163765,181.0735958,181.7908312,16.481583,0.148908738,1620000000000 ,1620000000000 ,1620000000000 ,1616812525070 -1616812525101 ,112.5675584,26.87129822,60.51815033,181.0752897,181.7901763,16.482561,0.148921984,1620000000000 ,1620000000000 ,1620000000000 ,1616812525080 -1616812525115 ,112.5675584,26.87129673,60.51994705,181.0781583,181.7942142,16.482199,0.148920358,1620000000000 ,1620000000000 ,1620000000000 ,1616812525090 -1616812525122 ,112.5675583,26.87129524,60.52175903,181.0805079,181.7899253,16.484465,0.148940362,1620000000000 ,1620000000000 ,1620000000000 ,1616812525100 -1616812525137 ,112.5675583,26.87129376,60.52357864,181.0809724,181.7897599,16.485437,0.148954712,1620000000000 ,1620000000000 ,1620000000000 ,1616812525110 -1616812525143 ,112.5675582,26.87129227,60.52541733,181.0807811,181.7931944,16.487324,0.14897296,1620000000000 ,1620000000000 ,1620000000000 ,1616812525120 -1616812525152 ,112.5675582,26.87129078,60.52724075,181.0819832,181.8040386,16.48761,0.148979863,1620000000000 ,1620000000000 ,1620000000000 ,1616812525130 -1616812525162 ,112.5675581,26.87128929,60.52906418,181.0833766,181.8140004,16.485992,0.148974916,1620000000000 ,1620000000000 ,1620000000000 ,1616812525140 -1616812525172 ,112.5675581,26.8712878,60.53092575,181.0857808,181.8122186,16.484556,0.148964416,1620000000000 ,1620000000000 ,1620000000000 ,1616812525150 -1616812525182 ,112.5675581,26.87128631,60.53277969,181.0874201,181.8058891,16.486183,0.148971875,1620000000000 ,1620000000000 ,1620000000000 ,1616812525160 -1616812525193 ,112.567558,26.87128482,60.53450775,181.089114,181.8006403,16.490005,0.148996499,1620000000000 ,1620000000000 ,1620000000000 ,1616812525170 -1616812525202 ,112.567558,26.87128333,60.53599167,181.0925017,181.811107,16.494642,0.149035404,1620000000000 ,1620000000000 ,1620000000000 ,1616812525180 -1616812525214 ,112.5675579,26.87128184,60.53721237,181.094141,181.8213549,16.497177,0.149054215,1620000000000 ,1620000000000 ,1620000000000 ,1616812525190 -1616812525223 ,112.5675579,26.87128035,60.53826141,181.1002608,181.6927929,16.489683,0.148874447,1620000000000 ,1620000000000 ,1620000000000 ,1616812525200 -1616812525232 ,112.5675578,26.87127887,60.53923035,181.1012444,181.4816303,16.491957,0.148616896,1620000000000 ,1620000000000 ,1620000000000 ,1616812525220 -1616812525242 ,112.5675578,26.87127738,60.54010773,181.1040038,181.477476,16.492998,0.148622688,1620000000000 ,1620000000000 ,1620000000000 ,1616812525230 -1616812525254 ,112.5675577,26.87127441,60.54165649,181.112118,181.4810093,16.49202,0.297241273,1620000000000 ,1620000000000 ,1620000000000 ,1616812525240 -1616812525264 ,112.5675577,26.87127441,60.54165649,181.112118,-400,16.49202,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812525250 -1616812525274 ,112.5675577,26.87127293,60.54245758,181.114413,181.486548,16.49111,0.148610538,1620000000000 ,1620000000000 ,1620000000000 ,1616812525260 -1616812525283 ,112.5675576,26.87126995,60.54411316,181.1200957,181.4925285,16.49326,0.297225782,1620000000000 ,1620000000000 ,1620000000000 ,1616812525270 -1616812525293 ,112.5675576,26.87126847,60.54487991,181.1232922,181.5099895,16.494978,0.148638819,1620000000000 ,1620000000000 ,1620000000000 ,1616812525280 -1616812525303 ,112.5675576,26.87126847,60.54487991,181.1232922,-400,16.494978,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812525280 -1616812525313 ,112.5675575,26.8712655,60.54656219,181.1301771,181.5073528,16.49184,0.29725736,1620000000000 ,1620000000000 ,1620000000000 ,1616812525300 -1616812525324 ,112.5675574,26.87126401,60.54753113,181.1345211,181.5069335,16.489973,0.148609797,1620000000000 ,1620000000000 ,1620000000000 ,1616812525310 -1616812525333 ,112.5675574,26.87126253,60.54853821,181.1392475,181.5176288,16.489084,0.148599502,1620000000000 ,1620000000000 ,1620000000000 ,1616812525320 -1616812525351 ,112.5675574,26.87126104,60.54953384,181.1428266,181.5281958,16.488989,0.148600435,1620000000000 ,1620000000000 ,1620000000000 ,1616812525330 -1616812525355 ,112.5675573,26.87125956,60.55050278,181.1438101,181.529063,16.489199,0.148602551,1620000000000 ,1620000000000 ,1620000000000 ,1616812525340 -1616812525365 ,112.5675573,26.87125807,60.5514679,181.1435915,181.5262624,16.488619,0.148600985,1620000000000 ,1620000000000 ,1620000000000 ,1616812525350 -1616812525379 ,112.5675572,26.87125658,60.55243683,181.1431271,181.5223359,16.487633,0.148596789,1620000000000 ,1620000000000 ,1620000000000 ,1616812525360 -1616812525387 ,112.5675572,26.8712551,60.55339813,181.1444112,181.5255254,16.485796,0.148582655,1620000000000 ,1620000000000 ,1620000000000 ,1616812525370 -1616812525395 ,112.5675572,26.87125361,60.55434799,181.1485366,181.5345279,16.483881,0.148567036,1620000000000 ,1620000000000 ,1620000000000 ,1616812525380 -1616812525404 ,112.5675571,26.87125213,60.55529022,181.1533177,181.5299415,16.482525,0.148558178,1620000000000 ,1620000000000 ,1620000000000 ,1616812525390 -1616812525414 ,112.5675571,26.87125064,60.55619812,181.1567602,181.5237008,16.48226,0.148547985,1620000000000 ,1620000000000 ,1620000000000 ,1616812525400 -1616812525424 ,112.567557,26.87124916,60.55700302,181.1605577,181.5276605,16.48292,0.148547263,1620000000000 ,1620000000000 ,1620000000000 ,1616812525410 -1616812525434 ,112.567557,26.87124767,60.5576973,181.1618418,181.5422006,16.483007,0.148555686,1620000000000 ,1620000000000 ,1620000000000 ,1616812525420 -1616812525444 ,112.567557,26.87124619,60.55834579,181.162962,181.5487351,16.47964,0.148528927,1620000000000 ,1620000000000 ,1620000000000 ,1616812525430 -1616812525454 ,112.5675569,26.8712447,60.55903244,181.1654755,181.5457336,16.477648,0.148506343,1620000000000 ,1620000000000 ,1620000000000 ,1616812525440 -1616812525464 ,112.5675569,26.87124322,60.55975342,181.167142,181.6748685,16.474766,0.148674437,1620000000000 ,1620000000000 ,1620000000000 ,1616812525450 -1616812525474 ,112.5675568,26.87124173,60.56041336,181.1667596,181.7972141,16.475126,0.148861363,1620000000000 ,1620000000000 ,1620000000000 ,1616812525460 -1616812525485 ,112.5675568,26.87124024,60.5609436,181.1689725,181.8003357,16.473965,0.148848459,1620000000000 ,1620000000000 ,1620000000000 ,1616812525470 -1616812525496 ,112.5675567,26.87123875,60.56134033,181.1707211,181.8009644,16.476164,0.148854484,1620000000000 ,1620000000000 ,1620000000000 ,1616812525480 -1616812525509 ,112.5675567,26.87123727,60.56167984,181.1745733,181.7935054,16.474997,0.14884702,1620000000000 ,1620000000000 ,1620000000000 ,1616812525490 -1616812525516 ,112.5675566,26.87123578,60.56196594,181.1775239,181.7819969,16.474344,0.148839265,1620000000000 ,1620000000000 ,1620000000000 ,1616812525500 -1616812525528 ,112.5675566,26.87123429,60.56218719,181.1838623,181.7813053,16.47293,0.148823572,1620000000000 ,1620000000000 ,1620000000000 ,1616812525510 -1616812525537 ,112.5675566,26.8712328,60.56235886,181.1894631,181.7838371,16.471737,0.148808033,1620000000000 ,1620000000000 ,1620000000000 ,1616812525520 -1616812525547 ,112.5675565,26.87123132,60.56251526,181.1920313,181.7747422,16.469566,0.148787606,1620000000000 ,1620000000000 ,1620000000000 ,1616812525530 -1616812525558 ,112.5675565,26.87122983,60.56268311,181.1950912,181.7738429,16.468426,0.148772617,1620000000000 ,1620000000000 ,1620000000000 ,1616812525540 -1616812525572 ,112.5675564,26.87122834,60.56287384,181.1984243,181.7846813,16.467602,0.148760983,1620000000000 ,1620000000000 ,1620000000000 ,1616812525550 -1616812525577 ,112.5675564,26.87122686,60.56308746,181.2021399,181.7945031,16.465828,0.148747092,1620000000000 ,1620000000000 ,1620000000000 ,1616812525560 -1616812525588 ,112.5675563,26.87122537,60.56337738,181.205637,181.7984927,16.463724,0.148729483,1620000000000 ,1620000000000 ,1620000000000 ,1616812525570 -1616812525597 ,112.5675563,26.87122388,60.56377029,181.2091614,181.7956173,16.460451,0.148704527,1620000000000 ,1620000000000 ,1620000000000 ,1616812525580 -1616812525606 ,112.5675562,26.8712224,60.56428146,181.2137786,181.799999,16.458342,0.148682247,1620000000000 ,1620000000000 ,1620000000000 ,1616812525590 -1616812525617 ,112.5675562,26.87122091,60.56489182,181.2198438,181.8105085,16.45487,0.14865771,1620000000000 ,1620000000000 ,1620000000000 ,1616812525600 -1616812525630 ,112.5675561,26.87121943,60.56561279,181.2239146,181.818298,16.450272,0.148619475,1620000000000 ,1620000000000 ,1620000000000 ,1616812525610 -1616812525644 ,112.5675561,26.87121794,60.56647873,181.2277668,181.8288999,16.447449,0.148595934,1620000000000 ,1620000000000 ,1620000000000 ,1616812525620 -1616812525649 ,112.567556,26.87121646,60.56748581,181.230335,181.8346189,16.444841,0.148573036,1620000000000 ,1620000000000 ,1620000000000 ,1616812525630 -1616812525660 ,112.567556,26.87121497,60.56860352,181.2357991,181.8388031,16.442669,0.148557043,1620000000000 ,1620000000000 ,1620000000000 ,1616812525640 -1616812525668 ,112.5675559,26.87121349,60.5698204,181.2393781,181.8404591,16.439072,0.148533156,1620000000000 ,1620000000000 ,1620000000000 ,1616812525650 -1616812525678 ,112.5675559,26.871212,60.57116699,181.2428205,181.8521735,16.434387,0.148495878,1620000000000 ,1620000000000 ,1620000000000 ,1616812525660 -1616812525687 ,112.5675558,26.87121052,60.57266617,181.2441046,181.8595191,16.429848,0.148460379,1620000000000 ,1620000000000 ,1620000000000 ,1616812525670 -1616812525698 ,112.5675558,26.87120904,60.57428741,181.2457985,181.8696959,16.42472,0.148417956,1620000000000 ,1620000000000 ,1620000000000 ,1616812525680 -1616812525708 ,112.5675558,26.87120755,60.57598877,181.2478476,181.8772823,16.421078,0.148384978,1620000000000 ,1620000000000 ,1620000000000 ,1616812525690 -1616812525718 ,112.5675557,26.87120607,60.5777359,181.2506889,181.8851838,16.418205,0.148362512,1620000000000 ,1620000000000 ,1620000000000 ,1616812525700 -1616812525729 ,112.5675557,26.87120459,60.57952118,181.2540767,181.8985729,16.416342,0.14834482,1620000000000 ,1620000000000 ,1620000000000 ,1616812525710 -1616812525738 ,112.5675556,26.8712031,60.58132553,181.2558799,181.90072,16.41347,0.148325806,1620000000000 ,1620000000000 ,1620000000000 ,1616812525720 -1616812525751 ,112.5675556,26.87120162,60.5831604,181.2604697,181.9117368,16.410383,0.148301691,1620000000000 ,1620000000000 ,1620000000000 ,1616812525730 -1616812525762 ,112.5675555,26.87120014,60.58502197,181.2643766,181.9186015,16.405855,0.148265643,1620000000000 ,1620000000000 ,1620000000000 ,1616812525740 -1616812525769 ,112.5675555,26.87119866,60.58684158,181.2674365,181.9257702,16.402748,0.148234707,1620000000000 ,1620000000000 ,1620000000000 ,1616812525750 -1616812525779 ,112.5675554,26.87119718,60.58858109,181.2688026,181.9363902,16.401625,0.14822014,1620000000000 ,1620000000000 ,1620000000000 ,1616812525760 -1616812525790 ,112.5675554,26.8711957,60.59022522,181.2703872,181.9454628,16.399248,0.148200035,1620000000000 ,1620000000000 ,1620000000000 ,1616812525770 -1616812525799 ,112.5675553,26.87119422,60.59181976,181.270879,181.9528241,16.396086,0.148173104,1620000000000 ,1620000000000 ,1620000000000 ,1616812525780 -1616812525809 ,112.5675553,26.87119274,60.59339905,181.2724909,181.9551529,16.392347,0.148143882,1620000000000 ,1620000000000 ,1620000000000 ,1616812525790 -1616812525819 ,112.5675552,26.87119126,60.59497833,181.274376,181.9591607,16.38867,0.148111264,1620000000000 ,1620000000000 ,1620000000000 ,1616812525800 -1616812525831 ,112.5675552,26.87118978,60.5965271,181.2762065,181.9660809,16.38587,0.148083142,1620000000000 ,1620000000000 ,1620000000000 ,1616812525810 -1616812525840 ,112.5675551,26.8711883,60.59798813,181.279567,181.9713133,16.383347,0.148056022,1620000000000 ,1620000000000 ,1620000000000 ,1616812525820 -1616812525851 ,112.5675551,26.87118682,60.59933472,181.2820258,181.9844765,16.382298,0.148043075,1620000000000 ,1620000000000 ,1620000000000 ,1616812525830 -1616812525863 ,112.567555,26.87118534,60.60058594,181.286042,181.9926717,16.381456,0.148030789,1620000000000 ,1620000000000 ,1620000000000 ,1616812525840 -1616812525873 ,112.5675549,26.87118386,60.60174561,181.288091,181.9942113,16.379702,0.148014396,1620000000000 ,1620000000000 ,1620000000000 ,1616812525850 -1616812525880 ,112.5675549,26.87118238,60.60283661,181.2892931,181.9906266,16.377584,0.14799376,1620000000000 ,1620000000000 ,1620000000000 ,1616812525860 -1616812525890 ,112.5675548,26.8711809,60.60386276,181.2920252,181.9937168,16.37534,0.147973119,1620000000000 ,1620000000000 ,1620000000000 ,1616812525870 -1616812525906 ,112.5675548,26.87117942,60.60480881,181.2957682,182.0022539,16.373907,0.147952392,1620000000000 ,1620000000000 ,1620000000000 ,1616812525880 -1616812525912 ,112.5675547,26.87117794,60.60564804,181.2981177,182.0033284,16.372154,0.147930798,1620000000000 ,1620000000000 ,1620000000000 ,1616812525890 -1616812525921 ,112.5675547,26.87117646,60.60637283,181.301888,182.0028163,16.371078,0.147917655,1620000000000 ,1620000000000 ,1620000000000 ,1616812525900 -1616812525932 ,112.5675546,26.87117499,60.60700226,181.3030901,182.0051921,16.37252,0.147911752,1620000000000 ,1620000000000 ,1620000000000 ,1616812525910 -1616812525941 ,112.5675546,26.87117351,60.60755539,181.3053851,182.0140691,16.373165,0.147918055,1620000000000 ,1620000000000 ,1620000000000 ,1616812525920 -1616812525951 ,112.5675545,26.87117203,60.60803223,181.3106033,182.0126945,16.372885,0.147914403,1620000000000 ,1620000000000 ,1620000000000 ,1616812525930 -1616812525960 ,112.5675545,26.87117055,60.60850525,181.313472,182.019089,16.37291,0.147913502,1620000000000 ,1620000000000 ,1620000000000 ,1616812525940 -1616812525971 ,112.5675544,26.87116907,60.60903168,181.3158489,182.0154764,16.370722,0.14789381,1620000000000 ,1620000000000 ,1620000000000 ,1616812525950 -1616812525985 ,112.5675544,26.8711676,60.60959625,181.3191001,182.0212601,16.369612,0.147879997,1620000000000 ,1620000000000 ,1620000000000 ,1616812525960 -1616812525991 ,112.5675543,26.87116612,60.61019135,181.3227064,182.0294005,16.36966,0.147879496,1620000000000 ,1620000000000 ,1620000000000 ,1616812525970 -1616812526000 ,112.5675543,26.87116464,60.61082458,181.3244276,182.033558,16.368382,0.1478708,1620000000000 ,1620000000000 ,1620000000000 ,1616812525980 -1616812526012 ,112.5675542,26.87116316,60.61155319,181.326504,182.0310546,16.367022,0.147858267,1620000000000 ,1620000000000 ,1620000000000 ,1616812525990 -1616812526022 ,112.5675542,26.87116168,60.61234283,181.3288263,182.0234844,16.3658,0.147845169,1620000000000 ,1620000000000 ,1620000000000 ,1616812526000 -1616812526032 ,112.5675541,26.87116021,60.61318207,181.331613,182.0310991,16.363894,0.147833101,1620000000000 ,1620000000000 ,1620000000000 ,1616812526010 -1616812526041 ,112.5675541,26.87115873,60.61407089,181.3343997,182.0359439,16.362116,0.147816344,1620000000000 ,1620000000000 ,1620000000000 ,1616812526020 -1616812526052 ,112.567554,26.87115725,60.61505127,181.3354106,182.0386287,16.360264,0.147800605,1620000000000 ,1620000000000 ,1620000000000 ,1616812526030 -1616812526061 ,112.567554,26.87115578,60.61613846,181.3370498,182.039403,16.358791,0.147787604,1620000000000 ,1620000000000 ,1620000000000 ,1616812526040 -1616812526071 ,112.5675539,26.8711543,60.6173172,181.3385798,182.0460996,16.358557,0.147785764,1620000000000 ,1620000000000 ,1620000000000 ,1616812526050 -1616812526081 ,112.5675539,26.87115282,60.61858749,181.341749,182.0525215,16.35636,0.147778084,1620000000000 ,1620000000000 ,1620000000000 ,1616812526060 -1616812526092 ,112.5675538,26.87115135,60.61998749,181.3435795,182.0496836,16.352274,0.147747187,1620000000000 ,1620000000000 ,1620000000000 ,1616812526070 -1616812526102 ,112.5675537,26.87114987,60.62155914,181.3445904,182.0502674,16.346888,0.147709944,1620000000000 ,1620000000000 ,1620000000000 ,1616812526080 -1616812526113 ,112.5675537,26.87114839,60.62322998,181.3465028,182.0526504,16.343454,0.147674258,1620000000000 ,1620000000000 ,1620000000000 ,1616812526090 -1616812526122 ,112.5675536,26.87114692,60.62492752,181.3495354,182.0673528,16.3422,0.147664202,1620000000000 ,1620000000000 ,1620000000000 ,1616812526100 -1616812526133 ,112.5675536,26.87114544,60.62661743,181.3515845,182.0828249,16.342337,0.147666269,1620000000000 ,1620000000000 ,1620000000000 ,1616812526110 -1616812526143 ,112.5675535,26.87114397,60.62833786,181.353333,182.0837828,16.341488,0.147665837,1620000000000 ,1620000000000 ,1620000000000 ,1616812526130 -1616812526153 ,112.5675535,26.87114249,60.63010406,181.3535789,182.0802411,16.339714,0.147653302,1620000000000 ,1620000000000 ,1620000000000 ,1616812526130 -1616812526162 ,112.5675534,26.87114102,60.63188934,181.3549996,182.0830983,16.33745,0.147637826,1620000000000 ,1620000000000 ,1620000000000 ,1616812526150 -1616812526172 ,112.5675534,26.87113954,60.63365173,181.3558465,182.0943084,16.33528,0.147620288,1620000000000 ,1620000000000 ,1620000000000 ,1616812526160 -1616812526183 ,112.5675533,26.87113807,60.63536072,181.3562563,182.0998634,16.33404,0.147607773,1620000000000 ,1620000000000 ,1620000000000 ,1616812526170 -1616812526194 ,112.5675533,26.87113659,60.63700485,181.3553821,182.0976553,16.333412,0.147599131,1620000000000 ,1620000000000 ,1620000000000 ,1616812526180 -1616812526203 ,112.5675532,26.87113512,60.63857651,181.3559831,182.0944154,16.334053,0.147603768,1620000000000 ,1620000000000 ,1620000000000 ,1616812526180 -1616812526214 ,112.5675531,26.87113217,60.64095688,181.3591796,182.0548292,16.308445,0.294819366,1620000000000 ,1620000000000 ,1620000000000 ,1616812526200 -1616812526225 ,112.5675531,26.87113217,60.64095688,181.3591796,-400,16.308445,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812526210 -1616812526233 ,112.567553,26.87112924,60.64097214,181.3616112,181.8720496,16.307999,0.293123418,1620000000000 ,1620000000000 ,1620000000000 ,1616812526220 -1616812526245 ,112.567553,26.87112777,60.64086914,181.3622942,181.8750348,16.308172,0.14656116,1620000000000 ,1620000000000 ,1620000000000 ,1616812526230 -1616812526253 ,112.5675529,26.87112631,60.64066696,181.3624035,181.8781072,16.30755,0.146557802,1620000000000 ,1620000000000 ,1620000000000 ,1616812526240 -1616812526263 ,112.5675529,26.87112484,60.64040756,181.3617751,181.8870735,16.306839,0.146550626,1620000000000 ,1620000000000 ,1620000000000 ,1616812526250 -1616812526273 ,112.5675528,26.87112338,60.64012527,181.3624855,181.8883279,16.306059,0.146540638,1620000000000 ,1620000000000 ,1620000000000 ,1616812526260 -1616812526288 ,112.5675528,26.87112192,60.63982391,181.3618298,181.8909691,16.304861,0.146531557,1620000000000 ,1620000000000 ,1620000000000 ,1616812526270 -1616812526300 ,112.5675527,26.87112045,60.63946152,181.3631958,181.8935862,16.305067,0.146531243,1620000000000 ,1620000000000 ,1620000000000 ,1616812526280 -1616812526311 ,112.5675527,26.87111899,60.63901138,181.3640154,181.9030558,16.305107,0.146527623,1620000000000 ,1620000000000 ,1620000000000 ,1616812526290 -1616812526314 ,112.5675526,26.87111752,60.63849258,181.3631958,181.9032595,16.303955,0.146519691,1620000000000 ,1620000000000 ,1620000000000 ,1616812526300 -1616812526326 ,112.5675526,26.87111606,60.63792038,181.361256,181.9014123,16.30305,0.146507233,1620000000000 ,1620000000000 ,1620000000000 ,1616812526310 -1616812526336 ,112.5675525,26.87111459,60.63731384,181.3594255,181.9033615,16.303751,0.146509061,1620000000000 ,1620000000000 ,1620000000000 ,1616812526320 -1616812526344 ,112.5675525,26.87111313,60.63664246,181.3615565,181.907375,16.305033,0.146515513,1620000000000 ,1620000000000 ,1620000000000 ,1616812526330 -1616812526354 ,112.5675524,26.87111167,60.63591766,181.3613926,181.9097852,16.30501,0.146518983,1620000000000 ,1620000000000 ,1620000000000 ,1616812526340 -1616812526364 ,112.5675524,26.8711102,60.6351738,181.3607369,181.9051778,16.303059,0.14650331,1620000000000 ,1620000000000 ,1620000000000 ,1616812526350 -1616812526375 ,112.5675523,26.87110874,60.63444519,181.3607096,181.9006276,16.301678,0.14648856,1620000000000 ,1620000000000 ,1620000000000 ,1616812526360 -1616812526385 ,112.5675523,26.87110727,60.63371658,181.362021,181.8997149,16.302628,0.14648775,1620000000000 ,1620000000000 ,1620000000000 ,1616812526370 -1616812526397 ,112.5675522,26.87110581,60.63293076,181.3625128,181.9019131,16.304283,0.14650164,1620000000000 ,1620000000000 ,1620000000000 ,1616812526380 -1616812526406 ,112.5675522,26.87110434,60.63209915,181.3647804,181.9049447,16.305662,0.146509687,1620000000000 ,1620000000000 ,1620000000000 ,1616812526390 -1616812526415 ,112.5675521,26.87110288,60.63127518,181.3645072,181.9043302,16.30615,0.146516409,1620000000000 ,1620000000000 ,1620000000000 ,1616812526400 -1616812526424 ,112.5675521,26.87110142,60.63046265,181.3673485,181.8977012,16.307253,0.146522682,1620000000000 ,1620000000000 ,1620000000000 ,1616812526410 -1616812526435 ,112.567552,26.87109995,60.62965012,181.3683594,181.8999285,16.307657,0.146527356,1620000000000 ,1620000000000 ,1620000000000 ,1616812526420 -1616812526445 ,112.567552,26.87109849,60.62883759,181.3688785,181.901759,16.306746,0.146522155,1620000000000 ,1620000000000 ,1620000000000 ,1616812526430 -1616812526454 ,112.5675519,26.87109702,60.62804794,181.3702719,181.9041253,16.305614,0.146508431,1620000000000 ,1620000000000 ,1620000000000 ,1616812526440 -1616812526467 ,112.5675519,26.87109555,60.62773895,181.3705997,182.0069871,16.305859,0.146900884,1620000000000 ,1620000000000 ,1620000000000 ,1616812526450 -1616812526477 ,112.5675518,26.87109408,60.6278801,181.3736323,182.1064791,16.308174,0.147309756,1620000000000 ,1620000000000 ,1620000000000 ,1616812526460 -1616812526502 ,112.5675518,26.87109261,60.62801743,181.3754355,182.1146407,16.309654,0.147324963,1620000000000 ,1620000000000 ,1620000000000 ,1616812526470 -1616812526515 ,112.5675517,26.87109114,60.62817001,181.3759819,182.1118764,16.310213,0.147330915,1620000000000 ,1620000000000 ,1620000000000 ,1616812526480 -1616812526518 ,112.5675517,26.87108967,60.62839127,181.3763917,182.1086334,16.309471,0.147325981,1620000000000 ,1620000000000 ,1620000000000 ,1616812526490 -1616812526521 ,112.5675516,26.87108819,60.62872696,181.3773206,182.111374,16.30767,0.147315392,1620000000000 ,1620000000000 ,1620000000000 ,1616812526500 -1616812526526 ,112.5675516,26.87108672,60.62917328,181.3788779,182.1170828,16.305767,0.14730313,1620000000000 ,1620000000000 ,1620000000000 ,1616812526510 -1616812526536 ,112.5675515,26.87108525,60.62973404,181.3813914,182.117965,16.303736,0.147285099,1620000000000 ,1620000000000 ,1620000000000 ,1616812526520 -1616812526547 ,112.5675515,26.87108378,60.63039017,181.3827848,182.1173764,16.302938,0.147274945,1620000000000 ,1620000000000 ,1620000000000 ,1616812526530 -1616812526557 ,112.5675514,26.87108231,60.63114166,181.3855169,182.1191492,16.302963,0.147279616,1620000000000 ,1620000000000 ,1620000000000 ,1616812526540 -1616812526567 ,112.5675513,26.87108083,60.6319809,181.3868556,182.1166975,16.302975,0.14728187,1620000000000 ,1620000000000 ,1620000000000 ,1616812526550 -1616812526577 ,112.5675513,26.87107936,60.63290405,181.389451,182.1179224,16.302979,0.147283638,1620000000000 ,1620000000000 ,1620000000000 ,1616812526560 -1616812526587 ,112.5675512,26.87107789,60.6338768,181.3913908,182.1206406,16.30211,0.147278662,1620000000000 ,1620000000000 ,1620000000000 ,1616812526570 -1616812526597 ,112.5675512,26.87107642,60.63490295,181.3940409,182.1255535,16.300467,0.147269564,1620000000000 ,1620000000000 ,1620000000000 ,1616812526580 -1616812526606 ,112.5675511,26.87107495,60.63597488,181.3955709,182.1269956,16.29943,0.147257403,1620000000000 ,1620000000000 ,1620000000000 ,1616812526590 -1616812526616 ,112.5675511,26.87107348,60.63709259,181.3985762,182.1303839,16.299324,0.14725783,1620000000000 ,1620000000000 ,1620000000000 ,1616812526600 -1616812526626 ,112.567551,26.871072,60.63825226,181.4009804,182.1275153,16.299131,0.147257355,1620000000000 ,1620000000000 ,1620000000000 ,1616812526610 -1616812526636 ,112.567551,26.87107053,60.63945389,181.403248,182.1306707,16.297926,0.147252733,1620000000000 ,1620000000000 ,1620000000000 ,1616812526620 -1616812526647 ,112.5675509,26.87106906,60.64070129,181.4061167,182.1355726,16.29727,0.147247854,1620000000000 ,1620000000000 ,1620000000000 ,1616812526630 -1616812526659 ,112.5675509,26.87106759,60.64197922,181.4102968,182.1363477,16.296465,0.14724363,1620000000000 ,1620000000000 ,1620000000000 ,1616812526640 -1616812526668 ,112.5675508,26.87106612,60.64328384,181.4111984,182.1381781,16.296675,0.147244136,1620000000000 ,1620000000000 ,1620000000000 ,1616812526650 -1616812526681 ,112.5675507,26.87106465,60.6445961,181.4143402,182.1384966,16.295431,0.147238515,1620000000000 ,1620000000000 ,1620000000000 ,1616812526660 -1616812526687 ,112.5675507,26.87106318,60.64591217,181.4166898,182.1421954,16.294407,0.147232052,1620000000000 ,1620000000000 ,1620000000000 ,1616812526670 -1616812526698 ,112.5675506,26.8710617,60.64720917,181.4208426,182.1456667,16.292793,0.147220754,1620000000000 ,1620000000000 ,1620000000000 ,1616812526680 -1616812526707 ,112.5675506,26.87106023,60.64849091,181.4254052,182.1488808,16.29055,0.147203197,1620000000000 ,1620000000000 ,1620000000000 ,1616812526690 -1616812526718 ,112.5675505,26.87105876,60.6497612,181.4276181,182.1496219,16.28843,0.147182968,1620000000000 ,1620000000000 ,1620000000000 ,1616812526700 -1616812526730 ,112.5675505,26.87105729,60.65099335,181.4318802,182.1509184,16.287739,0.147175962,1620000000000 ,1620000000000 ,1620000000000 ,1616812526710 -1616812526740 ,112.5675504,26.87105582,60.65216064,181.4360329,182.1549397,16.285978,0.147161543,1620000000000 ,1620000000000 ,1620000000000 ,1616812526720 -1616812526750 ,112.5675504,26.87105435,60.65325928,181.4396393,182.1625637,16.28383,0.147143248,1620000000000 ,1620000000000 ,1620000000000 ,1616812526730 -1616812526759 ,112.5675503,26.87105288,60.6543045,181.4429178,182.1668246,16.282137,0.147126198,1620000000000 ,1620000000000 ,1620000000000 ,1616812526740 -1616812526768 ,112.5675502,26.87105141,60.65529251,181.447371,182.1660173,16.28201,0.147118593,1620000000000 ,1620000000000 ,1620000000000 ,1616812526750 -1616812526778 ,112.5675502,26.87104994,60.65618896,181.45248,182.1688177,16.282087,0.147117753,1620000000000 ,1620000000000 ,1620000000000 ,1616812526760 -1616812526789 ,112.5675501,26.87104847,60.65699768,181.4560864,182.174955,16.2797,0.147100261,1620000000000 ,1620000000000 ,1620000000000 ,1616812526770 -1616812526797 ,112.5675501,26.871047,60.65775299,181.4602118,182.1797917,16.276276,0.147071124,1620000000000 ,1620000000000 ,1620000000000 ,1616812526780 -1616812526815 ,112.56755,26.87104553,60.6585083,181.4637089,182.1818784,16.272963,0.147039079,1620000000000 ,1620000000000 ,1620000000000 ,1616812526790 -1616812526819 ,112.56755,26.87104406,60.65922928,181.4682987,182.1831395,16.270327,0.14701346,1620000000000 ,1620000000000 ,1620000000000 ,1616812526800 -1616812526836 ,112.5675499,26.87104259,60.65986252,181.4732438,182.1845695,16.270506,0.147004807,1620000000000 ,1620000000000 ,1620000000000 ,1616812526810 -1616812526839 ,112.5675499,26.87104112,60.66037369,181.4774785,182.1942666,16.270443,0.14700247,1620000000000 ,1620000000000 ,1620000000000 ,1616812526820 -1616812526851 ,112.5675498,26.87103966,60.66078186,181.4827514,182.2025351,16.269632,0.146992697,1620000000000 ,1620000000000 ,1620000000000 ,1616812526830 -1616812526864 ,112.5675497,26.87103819,60.66114426,181.4886527,182.2074849,16.268675,0.146981472,1620000000000 ,1620000000000 ,1620000000000 ,1616812526840 -1616812526878 ,112.5675497,26.87103672,60.66149139,181.4936524,182.2103747,16.266582,0.146965159,1620000000000 ,1620000000000 ,1620000000000 ,1616812526850 -1616812526880 ,112.5675496,26.87103525,60.66182709,181.4970402,182.2142086,16.264076,0.146943572,1620000000000 ,1620000000000 ,1620000000000 ,1616812526860 -1616812526898 ,112.5675496,26.87103378,60.66214752,181.5002367,182.2171986,16.261202,0.146919325,1620000000000 ,1620000000000 ,1620000000000 ,1616812526870 -1616812526902 ,112.5675495,26.87103231,60.66244888,181.5033513,182.222446,16.261047,0.146907327,1620000000000 ,1620000000000 ,1620000000000 ,1616812526880 -1616812526918 ,112.5675495,26.87103085,60.66276169,181.507504,182.2297383,16.259903,0.146901547,1620000000000 ,1620000000000 ,1620000000000 ,1616812526890 -1616812526921 ,112.5675494,26.87102938,60.66309357,181.512531,182.2325418,16.25902,0.146894641,1620000000000 ,1620000000000 ,1620000000000 ,1616812526900 -1616812526930 ,112.5675493,26.87102791,60.66346359,181.5170936,182.2344448,16.256454,0.146878616,1620000000000 ,1620000000000 ,1620000000000 ,1616812526910 -1616812526944 ,112.5675493,26.87102644,60.66386032,181.5214649,182.2364998,16.253937,0.146854104,1620000000000 ,1620000000000 ,1620000000000 ,1616812526920 -1616812526950 ,112.5675492,26.87102498,60.66428757,181.5271203,182.2432811,16.251087,0.146832046,1620000000000 ,1620000000000 ,1620000000000 ,1616812526930 -1616812526960 ,112.5675492,26.87102351,60.66473007,181.53212,182.2514028,16.249098,0.146814652,1620000000000 ,1620000000000 ,1620000000000 ,1616812526940 -1616812526969 ,112.5675491,26.87102204,60.66519165,181.535016,182.2631744,16.24836,0.146806872,1620000000000 ,1620000000000 ,1620000000000 ,1616812526950 -1616812526980 ,112.5675491,26.87102058,60.66565704,181.5391688,182.269331,16.247192,0.146795895,1620000000000 ,1620000000000 ,1620000000000 ,1616812526960 -1616812526989 ,112.567549,26.87101911,60.6661377,181.5435401,182.2774077,16.244368,0.146776153,1620000000000 ,1620000000000 ,1620000000000 ,1616812526970 -1616812527001 ,112.5675489,26.87101764,60.66666031,181.5465727,182.2842478,16.241547,0.146755632,1620000000000 ,1620000000000 ,1620000000000 ,1616812526980 -1616812527009 ,112.5675489,26.87101618,60.66721725,181.5504796,182.2860995,16.239199,0.146733224,1620000000000 ,1620000000000 ,1620000000000 ,1616812526990 -1616812527019 ,112.5675488,26.87101471,60.66777039,181.5541132,182.291777,16.23675,0.146712638,1620000000000 ,1620000000000 ,1620000000000 ,1616812527000 -1616812527033 ,112.5675488,26.87101324,60.66826248,181.556818,182.299443,16.233765,0.146685502,1620000000000 ,1620000000000 ,1620000000000 ,1616812527010 -1616812527043 ,112.5675487,26.87101178,60.66868973,181.5600965,182.3061968,16.232565,0.146669526,1620000000000 ,1620000000000 ,1620000000000 ,1616812527020 -1616812527052 ,112.5675486,26.87101031,60.6690712,181.5653694,182.3086913,16.231106,0.146656938,1620000000000 ,1620000000000 ,1620000000000 ,1616812527030 -1616812527061 ,112.5675486,26.87100885,60.66940308,181.56985,182.3057081,16.230639,0.146648742,1620000000000 ,1620000000000 ,1620000000000 ,1616812527040 -1616812527073 ,112.5675485,26.87100738,60.66970825,181.5735656,182.3075652,16.227663,0.146626393,1620000000000 ,1620000000000 ,1620000000000 ,1616812527050 -1616812527080 ,112.5675485,26.87100592,60.66999054,181.577172,182.311897,16.22483,0.146599427,1620000000000 ,1620000000000 ,1620000000000 ,1616812527060 -1616812527091 ,112.5675484,26.87100445,60.67026138,181.5820077,182.3172563,16.222742,0.146576921,1620000000000 ,1620000000000 ,1620000000000 ,1616812527070 -1616812527100 ,112.5675483,26.87100299,60.67047501,181.5859692,182.3227645,16.221985,0.146566792,1620000000000 ,1620000000000 ,1620000000000 ,1616812527080 -1616812527115 ,112.5675483,26.87100152,60.67060471,181.5921711,182.3267036,16.221241,0.146556157,1620000000000 ,1620000000000 ,1620000000000 ,1616812527090 -1616812527121 ,112.5675482,26.87100006,60.67066956,181.5962965,182.3312091,16.219898,0.146542775,1620000000000 ,1620000000000 ,1620000000000 ,1616812527100 -1616812527133 ,112.5675482,26.8709986,60.67072678,181.599493,182.3365171,16.217154,0.146519761,1620000000000 ,1620000000000 ,1620000000000 ,1616812527110 -1616812527147 ,112.5675481,26.87099713,60.67082596,181.6037004,182.344433,16.214075,0.146493013,1620000000000 ,1620000000000 ,1620000000000 ,1616812527120 -1616812527155 ,112.567548,26.87099567,60.67097473,181.6079078,182.3533919,16.211517,0.146472283,1620000000000 ,1620000000000 ,1620000000000 ,1616812527130 -1616812527164 ,112.567548,26.87099421,60.67115784,181.6121425,182.361005,16.208904,0.146447074,1620000000000 ,1620000000000 ,1620000000000 ,1616812527140 -1616812527172 ,112.5675479,26.87099274,60.67137146,181.6166778,182.3620894,16.20553,0.14641805,1620000000000 ,1620000000000 ,1620000000000 ,1616812527150 -1616812527181 ,112.5675479,26.87099128,60.67161179,181.6208852,182.3661515,16.203648,0.146396277,1620000000000 ,1620000000000 ,1620000000000 ,1616812527160 -1616812527192 ,112.5675478,26.87098982,60.67188263,181.6273602,182.3755296,16.203272,0.146390025,1620000000000 ,1620000000000 ,1620000000000 ,1616812527170 -1616812527201 ,112.5675477,26.87098836,60.67220306,181.6318681,182.3843064,16.201077,0.14637526,1620000000000 ,1620000000000 ,1620000000000 ,1616812527180 -1616812527211 ,112.5675477,26.87098689,60.6725769,181.6367858,182.3848938,16.196857,0.146344692,1620000000000 ,1620000000000 ,1620000000000 ,1616812527190 -1616812527221 ,112.5675476,26.87098543,60.67337036,181.6471677,182.1879027,16.193432,0.14626493,1620000000000 ,1620000000000 ,1620000000000 ,1616812527200 -1616812527234 ,112.5675476,26.87098397,60.67479324,181.6528505,181.8736983,16.1902,0.146201264,1620000000000 ,1620000000000 ,1620000000000 ,1616812527210 -1616812527242 ,112.5675475,26.87098251,60.67626953,181.6590796,181.8836595,16.188482,0.14618532,1620000000000 ,1620000000000 ,1620000000000 ,1616812527220 -1616812527253 ,112.5675475,26.87098105,60.67778397,181.6662376,181.8963134,16.186592,0.146167182,1620000000000 ,1620000000000 ,1620000000000 ,1616812527230 -1616812527262 ,112.5675474,26.87097959,60.67931747,181.6704723,181.9040194,16.184418,0.146149986,1620000000000 ,1620000000000 ,1620000000000 ,1616812527240 -1616812527272 ,112.5675474,26.87097813,60.68088531,181.6757999,181.9123344,16.181362,0.146124187,1620000000000 ,1620000000000 ,1620000000000 ,1616812527250 -1616812527281 ,112.5675473,26.87097667,60.68248367,181.6819471,181.9222129,16.178822,0.146101798,1620000000000 ,1620000000000 ,1620000000000 ,1616812527260 -1616812527292 ,112.5675473,26.87097521,60.68411636,181.6886406,181.9309207,16.176733,0.146080404,1620000000000 ,1620000000000 ,1620000000000 ,1616812527280 -1616812527302 ,112.5675472,26.87097375,60.68580246,181.6945146,181.9381263,16.172974,0.146051396,1620000000000 ,1620000000000 ,1620000000000 ,1616812527280 -1616812527318 ,112.5675472,26.87097229,60.68754578,181.7017,181.9443057,16.170279,0.146028277,1620000000000 ,1620000000000 ,1620000000000 ,1616812527300 -1616812527326 ,112.5675471,26.87097083,60.68932724,181.7075193,181.9507244,16.168283,0.146011448,1620000000000 ,1620000000000 ,1620000000000 ,1616812527310 -1616812527337 ,112.5675471,26.87096937,60.69110107,181.7155789,181.9620569,16.168268,0.14600563,1620000000000 ,1620000000000 ,1620000000000 ,1616812527320 -1616812527344 ,112.567547,26.87096791,60.69287109,181.7203327,181.9753846,16.167048,0.145996066,1620000000000 ,1620000000000 ,1620000000000 ,1616812527330 -1616812527361 ,112.567547,26.87096645,60.69464874,181.7257696,181.9824505,16.164225,0.145977322,1620000000000 ,1620000000000 ,1620000000000 ,1616812527340 -1616812527364 ,112.5675469,26.87096353,60.69832993,181.7376268,181.9931535,16.157522,0.29186552,1620000000000 ,1620000000000 ,1620000000000 ,1616812527350 -1616812527374 ,112.5675469,26.87096353,60.69832993,181.7376268,-400,16.157522,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812527360 -1616812527386 ,112.5675468,26.87096208,60.70020676,181.7442657,182.0087859,16.155436,0.145899498,1620000000000 ,1620000000000 ,1620000000000 ,1616812527370 -1616812527395 ,112.5675467,26.87095916,60.70388031,181.7578168,182.0262719,16.153767,0.291771587,1620000000000 ,1620000000000 ,1620000000000 ,1616812527380 -1616812527403 ,112.5675467,26.87095916,60.70388031,181.7578168,-400,16.153767,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812527390 -1616812527415 ,112.5675466,26.87095625,60.70742035,181.7700292,182.0446322,16.149323,0.29171023,1620000000000 ,1620000000000 ,1620000000000 ,1616812527400 -1616812527425 ,112.5675466,26.87095479,60.70915604,181.7772965,182.0584307,16.146885,0.145822278,1620000000000 ,1620000000000 ,1620000000000 ,1616812527410 -1616812527434 ,112.5675465,26.87095333,60.71087646,181.7849463,182.0677212,16.143543,0.145796481,1620000000000 ,1620000000000 ,1620000000000 ,1616812527420 -1616812527444 ,112.5675465,26.87095187,60.71258926,181.7902465,182.0744946,16.140476,0.145768188,1620000000000 ,1620000000000 ,1620000000000 ,1616812527430 -1616812527454 ,112.5675464,26.87095042,60.71429443,181.7959019,182.0803278,16.137815,0.145741247,1620000000000 ,1620000000000 ,1620000000000 ,1616812527440 -1616812527465 ,112.5675464,26.87094896,60.7156105,181.8046173,182.2969274,16.137955,0.145779847,1620000000000 ,1620000000000 ,1620000000000 ,1616812527450 -1616812527474 ,112.5675463,26.8709475,60.7164917,181.8123764,182.5086958,16.13848,0.14582431,1620000000000 ,1620000000000 ,1620000000000 ,1616812527460 -1616812527484 ,112.5675462,26.87094605,60.7172966,181.8179225,182.5161499,16.137331,0.14581948,1620000000000 ,1620000000000 ,1620000000000 ,1616812527470 -1616812527494 ,112.5675462,26.87094459,60.71808243,181.8230861,182.5213278,16.134941,0.145797119,1620000000000 ,1620000000000 ,1620000000000 ,1616812527480 -1616812527518 ,112.5675461,26.87094313,60.71886826,181.8295884,182.5326838,16.132725,0.145776905,1620000000000 ,1620000000000 ,1620000000000 ,1616812527490 -1616812527533 ,112.567546,26.87094168,60.71963882,181.8383311,182.5480422,16.131096,0.145761642,1620000000000 ,1620000000000 ,1620000000000 ,1616812527500 -1616812527537 ,112.567546,26.87094022,60.72038651,181.8458716,182.5574549,16.129301,0.145745755,1620000000000 ,1620000000000 ,1620000000000 ,1616812527510 -1616812527547 ,112.5675459,26.87093877,60.7211113,181.8539859,182.5629532,16.128033,0.145733482,1620000000000 ,1620000000000 ,1620000000000 ,1616812527520 -1616812527551 ,112.5675458,26.87093731,60.72180176,181.8625373,182.5715454,16.128267,0.145729993,1620000000000 ,1620000000000 ,1620000000000 ,1616812527530 -1616812527555 ,112.5675458,26.87093586,60.72242737,181.8725367,182.5783078,16.127811,0.145724583,1620000000000 ,1620000000000 ,1620000000000 ,1616812527540 -1616812527565 ,112.5675457,26.8709344,60.72297287,181.8827273,182.5869432,16.127201,0.145718402,1620000000000 ,1620000000000 ,1620000000000 ,1616812527550 -1616812527576 ,112.5675456,26.87093294,60.72347641,181.8941747,182.5973227,16.12579,0.145706614,1620000000000 ,1620000000000 ,1620000000000 ,1616812527560 -1616812527585 ,112.5675456,26.87093149,60.72396088,181.9046385,182.6056308,16.123312,0.145683881,1620000000000 ,1620000000000 ,1620000000000 ,1616812527570 -1616812527596 ,112.5675455,26.87093003,60.7244339,181.9149658,182.6092781,16.121035,0.145661682,1620000000000 ,1620000000000 ,1620000000000 ,1616812527580 -1616812527605 ,112.5675454,26.87092858,60.72486877,181.9255936,182.6164878,16.120222,0.145647782,1620000000000 ,1620000000000 ,1620000000000 ,1616812527590 -1616812527616 ,112.5675454,26.87092712,60.72528458,181.9384343,182.6307321,16.118994,0.145638264,1620000000000 ,1620000000000 ,1620000000000 ,1616812527600 -1616812527627 ,112.5675453,26.87092567,60.72572327,181.9524226,182.6370132,16.117437,0.145626495,1620000000000 ,1620000000000 ,1620000000000 ,1616812527610 -1616812527636 ,112.5675452,26.87092421,60.72623062,181.9657004,182.6438437,16.115622,0.145609688,1620000000000 ,1620000000000 ,1620000000000 ,1616812527620 -1616812527645 ,112.5675452,26.87092276,60.7268219,181.9799892,182.6523082,16.112999,0.14559135,1620000000000 ,1620000000000 ,1620000000000 ,1616812527630 -1616812527655 ,112.5675451,26.87092131,60.72746277,181.9969007,182.6626675,16.110577,0.145567378,1620000000000 ,1620000000000 ,1620000000000 ,1616812527640 -1616812527665 ,112.567545,26.87091985,60.72809219,182.0134298,182.6758631,16.109203,0.145553513,1620000000000 ,1620000000000 ,1620000000000 ,1616812527650 -1616812527675 ,112.567545,26.8709184,60.72867584,182.031161,182.6842913,16.10959,0.145549928,1620000000000 ,1620000000000 ,1620000000000 ,1616812527660 -1616812527687 ,112.5675449,26.87091694,60.72922897,182.048455,182.6918182,16.108389,0.145540082,1620000000000 ,1620000000000 ,1620000000000 ,1616812527670 -1616812527697 ,112.5675448,26.87091549,60.72975922,182.0674976,182.7030567,16.106796,0.145524317,1620000000000 ,1620000000000 ,1620000000000 ,1616812527680 -1616812527707 ,112.5675448,26.87091404,60.73028183,182.0865401,182.7161727,16.105268,0.145507082,1620000000000 ,1620000000000 ,1620000000000 ,1616812527690 -1616812527716 ,112.5675447,26.87091258,60.73080444,182.1073586,182.7344739,16.10263,0.145485349,1620000000000 ,1620000000000 ,1620000000000 ,1616812527700 -1616812527728 ,112.5675446,26.87091113,60.73135757,182.1274666,182.7496664,16.100712,0.145463845,1620000000000 ,1620000000000 ,1620000000000 ,1616812527710 -1616812527737 ,112.5675446,26.87090968,60.73194504,182.1479299,182.764048,16.099644,0.145451985,1620000000000 ,1620000000000 ,1620000000000 ,1616812527720 -1616812527747 ,112.5675445,26.87090823,60.7325592,182.1684478,182.7863947,16.100107,0.145452681,1620000000000 ,1620000000000 ,1620000000000 ,1616812527730 -1616812527757 ,112.5675444,26.87090677,60.73319626,182.1895394,182.809118,16.100452,0.145458581,1620000000000 ,1620000000000 ,1620000000000 ,1616812527740 -1616812527766 ,112.5675443,26.87090532,60.73388672,182.2113414,182.8322127,16.099615,0.145453259,1620000000000 ,1620000000000 ,1620000000000 ,1616812527750 -1616812527778 ,112.5675443,26.87090387,60.73468018,182.2335258,182.8537957,16.096548,0.145431918,1620000000000 ,1620000000000 ,1620000000000 ,1616812527760 -1616812527790 ,112.5675442,26.87090242,60.73559189,182.2565026,182.8771088,16.09244,0.14540218,1620000000000 ,1620000000000 ,1620000000000 ,1616812527770 -1616812527799 ,112.5675441,26.87090096,60.73662567,182.2800804,182.899013,16.089844,0.145377578,1620000000000 ,1620000000000 ,1620000000000 ,1616812527780 -1616812527820 ,112.5675441,26.87089951,60.73776245,182.3039041,182.9232186,16.087772,0.145358161,1620000000000 ,1620000000000 ,1620000000000 ,1616812527790 -1616812527824 ,112.567544,26.87089806,60.73897934,182.3278097,182.9514922,16.086166,0.145344862,1620000000000 ,1620000000000 ,1620000000000 ,1616812527800 -1616812527838 ,112.5675439,26.87089661,60.74026871,182.3506499,182.9790854,16.084858,0.145337947,1620000000000 ,1620000000000 ,1620000000000 ,1616812527810 -1616812527841 ,112.5675438,26.87089516,60.74164963,182.3729436,183.0049603,16.083355,0.145326897,1620000000000 ,1620000000000 ,1620000000000 ,1616812527820 -1616812527848 ,112.5675437,26.87089371,60.74316025,182.3951827,183.0316289,16.081074,0.14531173,1620000000000 ,1620000000000 ,1620000000000 ,1616812527830 -1616812527857 ,112.5675437,26.87089226,60.74478149,182.4179409,183.0588169,16.07905,0.145300832,1620000000000 ,1620000000000 ,1620000000000 ,1616812527840 -1616812527870 ,112.5675436,26.8708908,60.74648285,182.4412729,183.0891504,16.075949,0.145277485,1620000000000 ,1620000000000 ,1620000000000 ,1616812527850 -1616812527878 ,112.5675435,26.87088935,60.74824524,182.4643862,183.1140288,16.072777,0.145253126,1620000000000 ,1620000000000 ,1620000000000 ,1616812527860 -1616812527889 ,112.5675434,26.8708879,60.75003052,182.4865707,183.1343275,16.071215,0.145237608,1620000000000 ,1620000000000 ,1620000000000 ,1616812527870 -1616812527901 ,112.5675434,26.87088645,60.75178146,182.5103944,183.160378,16.072092,0.145240761,1620000000000 ,1620000000000 ,1620000000000 ,1616812527880 -1616812527910 ,112.5675433,26.870885,60.75346375,182.5349011,183.1930236,16.072691,0.145246635,1620000000000 ,1620000000000 ,1620000000000 ,1616812527890 -1616812527919 ,112.5675432,26.87088355,60.75510406,182.5586428,183.2205331,16.07076,0.145235924,1620000000000 ,1620000000000 ,1620000000000 ,1616812527900 -1616812527929 ,112.5675431,26.8708821,60.75676346,182.5817015,183.2427024,16.067053,0.145208932,1620000000000 ,1620000000000 ,1620000000000 ,1616812527910 -1616812527938 ,112.567543,26.87088065,60.75843811,182.6067274,183.2654158,16.064236,0.145183336,1620000000000 ,1620000000000 ,1620000000000 ,1616812527920 -1616812527948 ,112.5675429,26.87087921,60.76010132,182.6286386,183.2960027,16.062937,0.145169451,1620000000000 ,1620000000000 ,1620000000000 ,1616812527930 -1616812527958 ,112.5675429,26.87087776,60.76172256,182.651752,183.3255587,16.062885,0.145166654,1620000000000 ,1620000000000 ,1620000000000 ,1616812527940 -1616812527969 ,112.5675428,26.87087631,60.76328659,182.6737452,183.3582312,16.061811,0.145164001,1620000000000 ,1620000000000 ,1620000000000 ,1616812527950 -1616812528001 ,112.5675427,26.87087486,60.76480484,182.6954379,183.3915188,16.06112,0.145155402,1620000000000 ,1620000000000 ,1620000000000 ,1616812527960 -1616812528003 ,112.5675426,26.87087341,60.76631165,182.7161743,183.4204024,16.058626,0.145139031,1620000000000 ,1620000000000 ,1620000000000 ,1616812527970 -1616812528005 ,112.5675425,26.87087196,60.76781845,182.7402166,183.4377089,16.05692,0.145124231,1620000000000 ,1620000000000 ,1620000000000 ,1616812527980 -1616812528012 ,112.5675424,26.87087051,60.76930237,182.7633573,183.4644838,16.055069,0.14510906,1620000000000 ,1620000000000 ,1620000000000 ,1616812527990 -1616812528020 ,112.5675423,26.87086906,60.77069855,182.7866072,183.4965193,16.055096,0.145103288,1620000000000 ,1620000000000 ,1620000000000 ,1616812528000 -1616812528030 ,112.5675423,26.87086762,60.7719841,182.8103763,183.5256329,16.053135,0.145086618,1620000000000 ,1620000000000 ,1620000000000 ,1616812528010 -1616812528039 ,112.5675422,26.87086617,60.77318954,182.8320143,183.5504209,16.052984,0.145083184,1620000000000 ,1620000000000 ,1620000000000 ,1616812528020 -1616812528049 ,112.5675421,26.87086472,60.7743454,182.8546359,183.5738766,16.053085,0.145082522,1620000000000 ,1620000000000 ,1620000000000 ,1616812528030 -1616812528060 ,112.567542,26.87086327,60.77545166,182.8771209,183.5957892,16.052504,0.145076912,1620000000000 ,1620000000000 ,1620000000000 ,1616812528040 -1616812528069 ,112.5675419,26.87086182,60.77650452,182.8998791,183.6170731,16.04999,0.145059494,1620000000000 ,1620000000000 ,1620000000000 ,1616812528050 -1616812528081 ,112.5675418,26.87086038,60.77751541,182.9233749,183.6384267,16.04861,0.145048256,1620000000000 ,1620000000000 ,1620000000000 ,1616812528060 -1616812528090 ,112.5675417,26.87085893,60.77850342,182.9459965,183.673262,16.047073,0.14502946,1620000000000 ,1620000000000 ,1620000000000 ,1616812528070 -1616812528102 ,112.5675416,26.87085748,60.77947235,182.97023,183.7012432,16.04669,0.145026352,1620000000000 ,1620000000000 ,1620000000000 ,1616812528080 -1616812528113 ,112.5675415,26.87085603,60.78040314,182.9937532,183.7233007,16.046227,0.145019862,1620000000000 ,1620000000000 ,1620000000000 ,1616812528090 -1616812528123 ,112.5675414,26.87085459,60.78129578,183.0177135,183.7507568,16.046251,0.145023302,1620000000000 ,1620000000000 ,1620000000000 ,1616812528100 -1616812528130 ,112.5675413,26.87085314,60.78214264,183.038969,183.7811319,16.044104,0.145007246,1620000000000 ,1620000000000 ,1620000000000 ,1616812528110 -1616812528141 ,112.5675412,26.87085169,60.78295898,183.0614267,183.8064012,16.043053,0.144991294,1620000000000 ,1620000000000 ,1620000000000 ,1616812528120 -1616812528151 ,112.5675411,26.87085025,60.78377151,183.083338,183.8333007,16.042017,0.144987116,1620000000000 ,1620000000000 ,1620000000000 ,1616812528130 -1616812528160 ,112.567541,26.8708488,60.78458405,183.1067518,183.8617796,16.040476,0.14497685,1620000000000 ,1620000000000 ,1620000000000 ,1616812528140 -1616812528172 ,112.5675409,26.87084735,60.78538895,183.1301657,183.8862879,16.0384,0.144959957,1620000000000 ,1620000000000 ,1620000000000 ,1616812528150 -1616812528181 ,112.5675408,26.87084591,60.78616714,183.1522136,183.9102773,16.036577,0.144940374,1620000000000 ,1620000000000 ,1620000000000 ,1616812528160 -1616812528192 ,112.5675407,26.87084446,60.78691101,183.178141,183.9323721,16.035656,0.144929764,1620000000000 ,1620000000000 ,1620000000000 ,1616812528170 -1616812528201 ,112.5675406,26.87084302,60.78760147,183.2023745,183.9581728,16.036106,0.144931576,1620000000000 ,1620000000000 ,1620000000000 ,1616812528180 -1616812528212 ,112.5675405,26.87084157,60.78824234,183.2236027,183.9822786,16.034552,0.144922056,1620000000000 ,1620000000000 ,1620000000000 ,1616812528190 -1616812528222 ,112.5675404,26.87084013,60.78886032,183.251224,183.853287,16.005606,0.144563104,1620000000000 ,1620000000000 ,1620000000000 ,1616812528200 -1616812528231 ,112.5675403,26.87083869,60.78941345,183.2755668,183.6937415,16.003109,0.143954617,1620000000000 ,1620000000000 ,1620000000000 ,1616812528210 -1616812528244 ,112.5675403,26.87083726,60.78997421,183.301139,183.716293,16.002935,0.143946662,1620000000000 ,1620000000000 ,1620000000000 ,1616812528220 -1616812528252 ,112.5675402,26.87083582,60.7904892,183.3254818,183.7444586,16.002783,0.143944623,1620000000000 ,1620000000000 ,1620000000000 ,1616812528230 -1616812528261 ,112.5675401,26.87083438,60.79092789,183.3501798,183.7723793,16.001863,0.143935418,1620000000000 ,1620000000000 ,1620000000000 ,1616812528240 -1616812528271 ,112.56754,26.87083295,60.7913475,183.3711348,183.7986891,16.00014,0.143921902,1620000000000 ,1620000000000 ,1620000000000 ,1616812528250 -1616812528282 ,112.5675399,26.87083151,60.7918129,183.3937017,183.8241845,15.998398,0.14390705,1620000000000 ,1620000000000 ,1620000000000 ,1616812528260 -1616812528292 ,112.5675398,26.87083008,60.79230118,183.4164053,183.8495577,15.997646,0.143898426,1620000000000 ,1620000000000 ,1620000000000 ,1616812528270 -1616812528302 ,112.5675397,26.87082864,60.79275894,183.4410759,183.880729,15.9969,0.143886643,1620000000000 ,1620000000000 ,1620000000000 ,1616812528280 -1616812528313 ,112.5675396,26.8708272,60.79316711,183.4637248,183.9043101,15.996223,0.143879326,1620000000000 ,1620000000000 ,1620000000000 ,1616812528290 -1616812528323 ,112.5675395,26.87082577,60.79354858,183.4856634,183.9271168,15.996471,0.143876976,1620000000000 ,1620000000000 ,1620000000000 ,1616812528300 -1616812528332 ,112.5675394,26.87082433,60.79391861,183.5091866,183.953494,15.999047,0.143894466,1620000000000 ,1620000000000 ,1620000000000 ,1616812528310 -1616812528344 ,112.5675393,26.8708229,60.79426193,183.5343217,183.9808524,16.001137,0.143915534,1620000000000 ,1620000000000 ,1620000000000 ,1616812528320 -1616812528357 ,112.5675392,26.87082146,60.79462051,183.5565061,184.0080977,16.002373,0.143924792,1620000000000 ,1620000000000 ,1620000000000 ,1616812528340 -1616812528382 ,112.5675391,26.87082003,60.79504395,183.5784174,184.0344062,16.002314,0.143930482,1620000000000 ,1620000000000 ,1620000000000 ,1616812528350 -1616812528387 ,112.567539,26.87081859,60.79555511,183.6019132,184.0574727,16.002893,0.143936763,1620000000000 ,1620000000000 ,1620000000000 ,1616812528360 -1616812528390 ,112.5675389,26.87081715,60.79613876,183.6242889,184.0880449,16.004549,0.143950748,1620000000000 ,1620000000000 ,1620000000000 ,1616812528370 -1616812528407 ,112.5675387,26.87081428,60.79747772,183.6687944,184.1389759,16.006533,0.287933719,1620000000000 ,1620000000000 ,1620000000000 ,1616812528380 -1616812528414 ,112.5675387,26.87081428,60.79747772,183.6687944,-400,16.006533,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812528380 -1616812528419 ,112.5675385,26.87081141,60.79919052,183.7123984,184.1973488,16.009884,0.288000076,1620000000000 ,1620000000000 ,1620000000000 ,1616812528400 -1616812528425 ,112.5675385,26.87081141,60.79919052,183.7123984,-400,16.009884,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812528410 -1616812528436 ,112.5675382,26.87080854,60.80109406,183.7574776,184.2539019,16.012007,0.288067084,1620000000000 ,1620000000000 ,1620000000000 ,1616812528420 -1616812528445 ,112.5675381,26.8708071,60.8021431,183.7771486,184.3047153,16.010542,0.144035125,1620000000000 ,1620000000000 ,1620000000000 ,1616812528430 -1616812528453 ,112.567538,26.87080567,60.80327988,183.7981036,184.3299018,16.010447,0.144035609,1620000000000 ,1620000000000 ,1620000000000 ,1616812528440 -1616812528466 ,112.5675379,26.87080423,60.80447388,183.818922,184.5127195,16.01266,0.144396614,1620000000000 ,1620000000000 ,1620000000000 ,1616812528450 -1616812528473 ,112.5675378,26.87080278,60.80565262,183.8414343,184.6924714,16.014746,0.144762669,1620000000000 ,1620000000000 ,1620000000000 ,1616812528460 -1616812528483 ,112.5675377,26.87080134,60.80681992,183.8601763,184.7197248,16.015661,0.1447784,1620000000000 ,1620000000000 ,1620000000000 ,1616812528470 -1616812528499 ,112.5675376,26.8707999,60.80800629,183.8805576,184.7391309,16.015884,0.144783595,1620000000000 ,1620000000000 ,1620000000000 ,1616812528480 -1616812528505 ,112.5675374,26.87079845,60.80920792,183.90154,184.7626233,16.017014,0.144793245,1620000000000 ,1620000000000 ,1620000000000 ,1616812528490 -1616812528515 ,112.5675373,26.87079701,60.81039047,183.9230141,184.7834995,16.018686,0.144806633,1620000000000 ,1620000000000 ,1620000000000 ,1616812528500 -1616812528525 ,112.5675372,26.87079557,60.81149292,183.9451166,184.8115244,16.019743,0.144818446,1620000000000 ,1620000000000 ,1620000000000 ,1616812528510 -1616812528534 ,112.5675371,26.87079413,60.81249237,183.9663175,184.8382825,16.021095,0.144830247,1620000000000 ,1620000000000 ,1620000000000 ,1616812528520 -1616812528545 ,112.567537,26.87079268,60.81337738,183.9881468,184.8576082,16.023256,0.144844449,1620000000000 ,1620000000000 ,1620000000000 ,1616812528530 -1616812528554 ,112.5675368,26.87079124,60.81415558,184.0076811,184.8817842,16.026371,0.144867624,1620000000000 ,1620000000000 ,1620000000000 ,1616812528540 -1616812528567 ,112.5675367,26.87078979,60.81483078,184.0280351,184.9053546,16.028772,0.144887051,1620000000000 ,1620000000000 ,1620000000000 ,1616812528550 -1616812528576 ,112.5675366,26.87078835,60.81540298,184.0470503,184.9314799,16.030668,0.144906384,1620000000000 ,1620000000000 ,1620000000000 ,1616812528560 -1616812528585 ,112.5675365,26.87078691,60.8158989,184.067213,184.9572149,16.032652,0.144921514,1620000000000 ,1620000000000 ,1620000000000 ,1616812528570 -1616812528594 ,112.5675363,26.87078546,60.81634903,184.0857912,184.9824191,16.034077,0.144932889,1620000000000 ,1620000000000 ,1620000000000 ,1616812528580 -1616812528606 ,112.5675362,26.87078402,60.81675339,184.1026481,185.0056205,16.036594,0.144949453,1620000000000 ,1620000000000 ,1620000000000 ,1616812528590 -1616812528615 ,112.5675361,26.87078258,60.81710052,184.1214721,185.0339447,16.039461,0.144975092,1620000000000 ,1620000000000 ,1620000000000 ,1616812528600 -1616812528625 ,112.5675359,26.87078113,60.81742096,184.1378645,185.0606561,16.042025,0.145000156,1620000000000 ,1620000000000 ,1620000000000 ,1616812528610 -1616812528637 ,112.5675358,26.87077969,60.81775665,184.1551312,185.0811344,16.043411,0.145014776,1620000000000 ,1620000000000 ,1620000000000 ,1616812528620 -1616812528645 ,112.5675357,26.87077824,60.81815338,184.1699118,185.1040576,16.043797,0.145022898,1620000000000 ,1620000000000 ,1620000000000 ,1616812528630 -1616812528655 ,112.5675356,26.8707768,60.8185997,184.1879981,185.1259349,16.0433,0.145020592,1620000000000 ,1620000000000 ,1620000000000 ,1616812528640 -1616812528666 ,112.5675354,26.87077535,60.81908035,184.2058932,185.1486513,16.043768,0.145024922,1620000000000 ,1620000000000 ,1620000000000 ,1616812528650 -1616812528678 ,112.5675353,26.87077391,60.81959915,184.2217119,185.1721162,16.04484,0.145032063,1620000000000 ,1620000000000 ,1620000000000 ,1616812528660 -1616812528685 ,112.5675352,26.87077246,60.82017136,184.2383229,185.1914228,16.047255,0.145054788,1620000000000 ,1620000000000 ,1620000000000 ,1616812528670 -1616812528696 ,112.567535,26.87077102,60.82079315,184.2529395,185.2068482,16.04953,0.145075935,1620000000000 ,1620000000000 ,1620000000000 ,1616812528680 -1616812528705 ,112.5675349,26.87076957,60.82145309,184.2668458,185.2237706,16.052406,0.145102217,1620000000000 ,1620000000000 ,1620000000000 ,1616812528690 -1616812528715 ,112.5675348,26.87076813,60.82215118,184.2827192,185.2409731,16.054169,0.145123301,1620000000000 ,1620000000000 ,1620000000000 ,1616812528700 -1616812528725 ,112.5675346,26.87076668,60.82288742,184.2973085,185.262488,16.054552,0.145129835,1620000000000 ,1620000000000 ,1620000000000 ,1616812528710 -1616812528736 ,112.5675345,26.87076524,60.82364655,184.3129906,185.2765748,16.054703,0.145133333,1620000000000 ,1620000000000 ,1620000000000 ,1616812528720 -1616812528754 ,112.5675344,26.87076379,60.82440186,184.3281536,185.288265,16.05535,0.145138592,1620000000000 ,1620000000000 ,1620000000000 ,1616812528730 -1616812528756 ,112.5675342,26.87076235,60.82518387,184.3436718,185.3048205,16.057077,0.145156853,1620000000000 ,1620000000000 ,1620000000000 ,1616812528740 -1616812528769 ,112.5675341,26.8707609,60.82599258,184.35919,185.3204065,16.058922,0.145172228,1620000000000 ,1620000000000 ,1620000000000 ,1616812528750 -1616812528775 ,112.567534,26.87075946,60.82685471,184.3724405,185.3353569,16.058928,0.145181707,1620000000000 ,1620000000000 ,1620000000000 ,1616812528760 -1616812528786 ,112.5675338,26.87075801,60.82778549,184.3868386,185.3475316,16.059736,0.145189604,1620000000000 ,1620000000000 ,1620000000000 ,1616812528770 -1616812528796 ,112.5675337,26.87075657,60.82879639,184.4012093,185.3637853,16.060205,0.145197377,1620000000000 ,1620000000000 ,1620000000000 ,1616812528780 -1616812528806 ,112.5675336,26.87075512,60.82985687,184.4156073,185.3794841,16.0614,0.145210775,1620000000000 ,1620000000000 ,1620000000000 ,1616812528790 -1616812528817 ,112.5675334,26.87075367,60.83093643,184.4314534,185.3937181,16.05983,0.145208018,1620000000000 ,1620000000000 ,1620000000000 ,1616812528800 -1616812528831 ,112.5675333,26.87075223,60.83203125,184.4450318,185.409239,16.060707,0.145213792,1620000000000 ,1620000000000 ,1620000000000 ,1616812528810 -1616812528841 ,112.5675331,26.87075078,60.83315277,184.456889,185.4235232,16.060406,0.145216834,1620000000000 ,1620000000000 ,1620000000000 ,1616812528820 -1616812528854 ,112.567533,26.87074934,60.83427811,184.4715602,185.4453962,16.061346,0.145223257,1620000000000 ,1620000000000 ,1620000000000 ,1616812528830 -1616812528867 ,112.5675329,26.87074789,60.83537292,184.4871604,185.4678648,16.06164,0.145229699,1620000000000 ,1620000000000 ,1620000000000 ,1616812528840 -1616812528871 ,112.5675327,26.87074645,60.83640289,184.5021868,185.486123,16.061474,0.145232867,1620000000000 ,1620000000000 ,1620000000000 ,1616812528850 -1616812528878 ,112.5675326,26.870745,60.83738708,184.5169673,185.500734,16.06065,0.145228066,1620000000000 ,1620000000000 ,1620000000000 ,1616812528860 -1616812528889 ,112.5675325,26.87074356,60.8382988,184.5306277,185.5186916,16.061523,0.145228997,1620000000000 ,1620000000000 ,1620000000000 ,1616812528870 -1616812528900 ,112.5675323,26.87074211,60.83911896,184.5455995,185.5471182,16.064312,0.145250372,1620000000000 ,1620000000000 ,1620000000000 ,1616812528880 -1616812528910 ,112.5675322,26.87074066,60.83983231,184.5587954,185.5741052,16.067076,0.145275859,1620000000000 ,1620000000000 ,1620000000000 ,1616812528890 -1616812528919 ,112.567532,26.87073922,60.84048462,184.5721006,185.5888924,16.068165,0.14529168,1620000000000 ,1620000000000 ,1620000000000 ,1616812528900 -1616812528930 ,112.5675319,26.87073777,60.84112549,184.5831655,185.6039289,16.067299,0.145287962,1620000000000 ,1620000000000 ,1620000000000 ,1616812528910 -1616812528940 ,112.5675317,26.87073633,60.84176254,184.5955145,185.6221578,16.066267,0.145280109,1620000000000 ,1620000000000 ,1620000000000 ,1616812528920 -1616812528949 ,112.5675316,26.87073488,60.84235764,184.6094208,185.6413249,16.065994,0.145276722,1620000000000 ,1620000000000 ,1620000000000 ,1616812528930 -1616812528959 ,112.5675315,26.87073343,60.84289169,184.6219064,185.6578072,16.066927,0.145283013,1620000000000 ,1620000000000 ,1620000000000 ,1616812528940 -1616812528969 ,112.5675313,26.87073199,60.84335327,184.6333538,185.6703246,16.06828,0.145291153,1620000000000 ,1620000000000 ,1620000000000 ,1616812528950 -1616812528980 ,112.5675312,26.87073054,60.84374237,184.6471507,185.6856452,16.069687,0.145302382,1620000000000 ,1620000000000 ,1620000000000 ,1616812528960 -1616812528990 ,112.567531,26.8707291,60.84409332,184.6589533,185.7000043,16.070969,0.145309991,1620000000000 ,1620000000000 ,1620000000000 ,1616812528970 -1616812529005 ,112.5675309,26.87072765,60.84439087,184.6712203,185.718831,16.073048,0.145333289,1620000000000 ,1620000000000 ,1620000000000 ,1616812528980 -1616812529008 ,112.5675307,26.8707262,60.84460449,184.6834874,185.7315475,16.07485,0.145342469,1620000000000 ,1620000000000 ,1620000000000 ,1616812528990 -1616812529020 ,112.5675306,26.87072476,60.8447113,184.692148,185.7473186,16.073694,0.145337245,1620000000000 ,1620000000000 ,1620000000000 ,1616812529000 -1616812529030 ,112.5675304,26.87072331,60.84476852,184.6986504,185.7661501,16.072649,0.145327339,1620000000000 ,1620000000000 ,1620000000000 ,1616812529010 -1616812529040 ,112.5675303,26.87072187,60.84481812,184.7070652,185.7849977,16.074,0.145331884,1620000000000 ,1620000000000 ,1620000000000 ,1616812529020 -1616812529051 ,112.5675302,26.87072042,60.84483719,184.7162176,185.8086457,16.076414,0.145352246,1620000000000 ,1620000000000 ,1620000000000 ,1616812529030 -1616812529059 ,112.56753,26.87071897,60.84486008,184.7243046,185.8194351,16.075449,0.145351478,1620000000000 ,1620000000000 ,1620000000000 ,1616812529040 -1616812529069 ,112.5675299,26.87071753,60.84492493,184.7311621,185.825067,16.073498,0.145335713,1620000000000 ,1620000000000 ,1620000000000 ,1616812529050 -1616812529080 ,112.5675297,26.87071608,60.84503937,184.7377191,185.837762,16.074942,0.145341372,1620000000000 ,1620000000000 ,1620000000000 ,1616812529060 -1616812529090 ,112.5675296,26.87071464,60.84514236,184.7471447,185.8545019,16.077385,0.145363053,1620000000000 ,1620000000000 ,1620000000000 ,1616812529070 -1616812529101 ,112.5675294,26.87071319,60.84523392,184.7520351,185.8768287,16.078337,0.145376969,1620000000000 ,1620000000000 ,1620000000000 ,1616812529080 -1616812529114 ,112.5675293,26.87071174,60.84539795,184.7566797,185.8940569,16.07711,0.145373782,1620000000000 ,1620000000000 ,1620000000000 ,1616812529090 -1616812529120 ,112.5675291,26.8707103,60.84566116,184.7623624,185.8995534,16.07456,0.145359379,1620000000000 ,1620000000000 ,1620000000000 ,1616812529100 -1616812529133 ,112.567529,26.87070885,60.84601974,184.7655862,185.9079153,16.07261,0.145343046,1620000000000 ,1620000000000 ,1620000000000 ,1616812529110 -1616812529140 ,112.5675288,26.87070741,60.84643936,184.7709684,185.9141953,16.07117,0.145331895,1620000000000 ,1620000000000 ,1620000000000 ,1616812529120 -1616812529150 ,112.5675287,26.87070596,60.84689713,184.7756403,185.9221366,16.069883,0.14532191,1620000000000 ,1620000000000 ,1620000000000 ,1616812529130 -1616812529162 ,112.5675285,26.87070452,60.84738922,184.7801209,185.9299488,16.069124,0.145314886,1620000000000 ,1620000000000 ,1620000000000 ,1616812529140 -1616812529171 ,112.5675284,26.87070307,60.84786987,184.7853938,185.9343407,16.069054,0.145313369,1620000000000 ,1620000000000 ,1620000000000 ,1616812529150 -1616812529181 ,112.5675282,26.87070163,60.84830856,184.7902022,185.9378865,16.070469,0.145322599,1620000000000 ,1620000000000 ,1620000000000 ,1616812529160 -1616812529191 ,112.5675281,26.87070018,60.84870911,184.7952839,185.9372557,16.072353,0.145336595,1620000000000 ,1620000000000 ,1620000000000 ,1616812529170 -1616812529203 ,112.5675279,26.87069873,60.84910583,184.7989995,185.9372556,16.07199,0.145338123,1620000000000 ,1620000000000 ,1620000000000 ,1616812529180 -1616812529213 ,112.5675278,26.87069729,60.84955215,184.8030703,185.9387435,16.068623,0.145318913,1620000000000 ,1620000000000 ,1620000000000 ,1616812529190 -1616812529222 ,112.5675276,26.87069584,60.85067368,184.7973603,185.6906217,16.06062,0.145214827,1620000000000 ,1620000000000 ,1620000000000 ,1616812529200 -1616812529233 ,112.5675275,26.8706944,60.85279083,184.8039172,185.3071239,16.058083,0.145083107,1620000000000 ,1620000000000 ,1620000000000 ,1616812529210 -1616812529244 ,112.5675274,26.87069295,60.85491562,184.8114031,185.2995574,16.06009,0.145093029,1620000000000 ,1620000000000 ,1620000000000 ,1616812529220 -1616812529252 ,112.5675272,26.87069151,60.85692215,184.8172225,185.3035055,16.06322,0.145115163,1620000000000 ,1620000000000 ,1620000000000 ,1616812529230 -1616812529262 ,112.5675271,26.87069006,60.8587532,184.8236975,185.3154782,16.06507,0.145127958,1620000000000 ,1620000000000 ,1620000000000 ,1616812529240 -1616812529272 ,112.5675269,26.87068862,60.86048889,184.8277683,185.3247954,16.064192,0.145127735,1620000000000 ,1620000000000 ,1620000000000 ,1616812529250 -1616812529282 ,112.5675268,26.87068718,60.86222458,184.8330139,185.3203329,16.063274,0.145116834,1620000000000 ,1620000000000 ,1620000000000 ,1616812529260 -1616812529294 ,112.5675267,26.87068573,60.86397934,184.8394342,185.3177182,16.06311,0.145110117,1620000000000 ,1620000000000 ,1620000000000 ,1616812529270 -1616812529303 ,112.5675265,26.87068429,60.86571503,184.8465103,185.3291136,16.062204,0.145102756,1620000000000 ,1620000000000 ,1620000000000 ,1616812529280 -1616812529313 ,112.5675264,26.87068284,60.86743164,184.851428,185.3314692,16.062103,0.145100634,1620000000000 ,1620000000000 ,1620000000000 ,1616812529290 -1616812529322 ,112.5675263,26.8706814,60.86915588,184.8576025,185.3343124,16.061445,0.145093434,1620000000000 ,1620000000000 ,1620000000000 ,1616812529300 -1616812529333 ,112.5675261,26.87067995,60.87090302,184.8638043,185.3364667,16.061388,0.14509389,1620000000000 ,1620000000000 ,1620000000000 ,1616812529320 -1616812529343 ,112.567526,26.87067851,60.8726387,184.8700062,185.3385934,16.061722,0.145093959,1620000000000 ,1620000000000 ,1620000000000 ,1616812529330 -1616812529352 ,112.5675259,26.87067706,60.87436676,184.875525,185.3486302,16.060934,0.145088597,1620000000000 ,1620000000000 ,1620000000000 ,1616812529340 -1616812529364 ,112.5675257,26.87067562,60.87611771,184.8803061,185.358427,16.060835,0.145086116,1620000000000 ,1620000000000 ,1620000000000 ,1616812529340 -1616812529373 ,112.5675256,26.87067417,60.87792587,184.8865079,185.3658863,16.059156,0.145077886,1620000000000 ,1620000000000 ,1620000000000 ,1616812529360 -1616812529382 ,112.5675253,26.87067128,60.8817215,184.8994033,185.3705925,16.057146,0.290121586,1620000000000 ,1620000000000 ,1620000000000 ,1616812529370 -1616812529395 ,112.5675252,26.87066984,60.88363266,184.9045123,185.3849296,16.057415,0.145059669,1620000000000 ,1620000000000 ,1620000000000 ,1616812529380 -1616812529404 ,112.5675252,26.87066984,60.88363266,184.9045123,-400,16.057415,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812529380 -1616812529415 ,112.5675249,26.87066695,60.88739014,184.9157138,185.3991312,16.05712,0.290109707,1620000000000 ,1620000000000 ,1620000000000 ,1616812529400 -1616812529424 ,112.5675249,26.87066695,60.88739014,184.9157138,-400,16.05712,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812529410 -1616812529434 ,112.5675246,26.87066406,60.89136124,184.9239373,185.4122898,16.054308,0.290081733,1620000000000 ,1620000000000 ,1620000000000 ,1616812529420 -1616812529443 ,112.5675245,26.87066262,60.89342499,184.9295381,185.4272737,16.052692,0.14502157,1620000000000 ,1620000000000 ,1620000000000 ,1616812529430 -1616812529454 ,112.5675244,26.87066118,60.89548111,184.9361224,185.4374806,16.051004,0.145005706,1620000000000 ,1620000000000 ,1620000000000 ,1616812529440 -1616812529463 ,112.5675242,26.87065973,60.89694977,184.9409035,185.6965697,16.05156,0.145078721,1620000000000 ,1620000000000 ,1620000000000 ,1616812529450 -1616812529476 ,112.5675241,26.87065829,60.89782715,184.9474878,185.9538929,16.053076,0.145166273,1620000000000 ,1620000000000 ,1620000000000 ,1616812529460 -1616812529487 ,112.5675239,26.87065685,60.89868164,184.9517772,185.9599304,16.053755,0.145170527,1620000000000 ,1620000000000 ,1620000000000 ,1616812529470 -1616812529495 ,112.5675238,26.8706554,60.89955902,184.9560665,185.9689539,16.052282,0.145162093,1620000000000 ,1620000000000 ,1620000000000 ,1616812529480 -1616812529505 ,112.5675236,26.87065396,60.90052032,184.9594543,185.9798017,16.049004,0.145143299,1620000000000 ,1620000000000 ,1620000000000 ,1616812529490 -1616812529516 ,112.5675235,26.87065252,60.90160751,184.9654649,185.9898548,16.046085,0.145121008,1620000000000 ,1620000000000 ,1620000000000 ,1616812529500 -1616812529526 ,112.5675233,26.87065107,60.90277481,184.9709017,185.9940494,16.045336,0.145109081,1620000000000 ,1620000000000 ,1620000000000 ,1616812529510 -1616812529535 ,112.5675232,26.87064963,60.90392685,184.9759287,186.0015517,16.046137,0.145111972,1620000000000 ,1620000000000 ,1620000000000 ,1616812529520 -1616812529549 ,112.567523,26.87064819,60.90499878,184.9827862,186.0157925,16.04666,0.145116139,1620000000000 ,1620000000000 ,1620000000000 ,1616812529530 -1616812529555 ,112.5675229,26.87064674,60.90602112,184.9868844,186.0305384,16.046427,0.145117302,1620000000000 ,1620000000000 ,1620000000000 ,1616812529540 -1616812529565 ,112.5675227,26.8706453,60.90706635,184.9903814,186.0386059,16.044994,0.145105794,1620000000000 ,1620000000000 ,1620000000000 ,1616812529550 -1616812529576 ,112.5675226,26.87064386,60.90818024,184.9935506,186.0431501,16.043474,0.145095286,1620000000000 ,1620000000000 ,1620000000000 ,1616812529560 -1616812529588 ,112.5675224,26.87064241,60.90932083,184.9982498,186.0522251,16.0406,0.145074291,1620000000000 ,1620000000000 ,1620000000000 ,1616812529570 -1616812529596 ,112.5675223,26.87064097,60.91042328,185.0035773,186.0647049,16.040195,0.145062551,1620000000000 ,1620000000000 ,1620000000000 ,1616812529580 -1616812529605 ,112.5675221,26.87063953,60.91146469,185.0099977,186.0811393,16.040922,0.14506091,1620000000000 ,1620000000000 ,1620000000000 ,1616812529590 -1616812529614 ,112.5675219,26.87063809,60.91247177,185.0138499,186.0892387,16.042004,0.145072598,1620000000000 ,1620000000000 ,1620000000000 ,1616812529600 -1616812529625 ,112.5675218,26.87063664,60.91350555,185.0173197,186.0932838,16.041538,0.145075912,1620000000000 ,1620000000000 ,1620000000000 ,1616812529610 -1616812529638 ,112.5675216,26.8706352,60.91459656,185.0205435,186.0999905,16.039162,0.145061251,1620000000000 ,1620000000000 ,1620000000000 ,1616812529620 -1616812529647 ,112.5675215,26.87063376,60.91574478,185.0258164,186.1178181,16.037624,0.14504206,1620000000000 ,1620000000000 ,1620000000000 ,1616812529630 -1616812529659 ,112.5675213,26.87063232,60.91693497,185.0293135,186.1314659,16.035456,0.145028291,1620000000000 ,1620000000000 ,1620000000000 ,1616812529640 -1616812529666 ,112.5675212,26.87063088,60.91815567,185.0336028,186.1389067,16.034563,0.145018277,1620000000000 ,1620000000000 ,1620000000000 ,1616812529650 -1616812529678 ,112.567521,26.87062943,60.919384,185.0374004,186.1384014,16.03507,0.14501874,1620000000000 ,1620000000000 ,1620000000000 ,1616812529660 -1616812529687 ,112.5675209,26.87062799,60.92056274,185.0388211,186.1391277,16.035748,0.145026765,1620000000000 ,1620000000000 ,1620000000000 ,1616812529670 -1616812529698 ,112.5675207,26.87062655,60.92169571,185.0436022,186.1551243,16.035288,0.145021942,1620000000000 ,1620000000000 ,1620000000000 ,1616812529680 -1616812529705 ,112.5675206,26.87062511,60.92281723,185.0464709,186.1704338,16.034334,0.145013543,1620000000000 ,1620000000000 ,1620000000000 ,1616812529690 -1616812529715 ,112.5675204,26.87062367,60.92399597,185.0508149,186.1767303,16.033007,0.145009367,1620000000000 ,1620000000000 ,1620000000000 ,1616812529700 -1616812529725 ,112.5675202,26.87062223,60.92523193,185.0539568,186.1811653,16.030294,0.144987555,1620000000000 ,1620000000000 ,1620000000000 ,1616812529710 -1616812529735 ,112.5675201,26.87062078,60.92649078,185.0570987,186.1926554,16.028336,0.144965528,1620000000000 ,1620000000000 ,1620000000000 ,1616812529720 -1616812529747 ,112.5675199,26.87061934,60.92774963,185.0596942,186.2068348,16.027102,0.144955096,1620000000000 ,1620000000000 ,1620000000000 ,1616812529730 -1616812529756 ,112.5675198,26.8706179,60.92899704,185.0630273,186.2195728,16.026451,0.144952405,1620000000000 ,1620000000000 ,1620000000000 ,1616812529740 -1616812529775 ,112.5675196,26.87061646,60.93026733,185.0642841,186.2361181,16.02737,0.144958476,1620000000000 ,1620000000000 ,1620000000000 ,1616812529750 -1616812529781 ,112.5675195,26.87061502,60.93157196,185.0664424,186.2430147,16.027178,0.144961775,1620000000000 ,1620000000000 ,1620000000000 ,1616812529760 -1616812529791 ,112.5675193,26.87061358,60.93289948,185.0675352,186.2585372,16.023819,0.144944521,1620000000000 ,1620000000000 ,1620000000000 ,1616812529770 -1616812529800 ,112.5675191,26.87061214,60.93423843,185.0675899,186.2685195,16.019049,0.144904475,1620000000000 ,1620000000000 ,1620000000000 ,1616812529780 -1616812529806 ,112.567519,26.8706107,60.93558884,185.0672074,186.2728722,16.015408,0.144866524,1620000000000 ,1620000000000 ,1620000000000 ,1616812529790 -1616812529817 ,112.5675188,26.87060926,60.93693924,185.0652949,186.2736347,16.01399,0.144850378,1620000000000 ,1620000000000 ,1620000000000 ,1616812529800 -1616812529826 ,112.5675187,26.87060782,60.93827057,185.0622077,186.2741568,16.014645,0.144852714,1620000000000 ,1620000000000 ,1620000000000 ,1616812529810 -1616812529836 ,112.5675185,26.87060638,60.93955994,185.0583281,186.2801719,16.01341,0.144845817,1620000000000 ,1620000000000 ,1620000000000 ,1616812529820 -1616812529849 ,112.5675183,26.87060494,60.94079208,185.053465,186.2794028,16.015114,0.144851313,1620000000000 ,1620000000000 ,1620000000000 ,1616812529830 -1616812529868 ,112.5675182,26.8706035,60.94198227,185.0511701,186.2739292,16.014975,0.144852839,1620000000000 ,1620000000000 ,1620000000000 ,1616812529840 -1616812529871 ,112.567518,26.87060206,60.94312668,185.047072,186.2699833,16.012182,0.144834099,1620000000000 ,1620000000000 ,1620000000000 ,1616812529850 -1616812529878 ,112.5675179,26.87060062,60.94424057,185.0443399,186.2617643,16.010834,0.144813119,1620000000000 ,1620000000000 ,1620000000000 ,1616812529860 -1616812529887 ,112.5675177,26.87059918,60.94523621,185.0433837,186.2584115,16.008747,0.144793818,1620000000000 ,1620000000000 ,1620000000000 ,1616812529870 -1616812529897 ,112.5675176,26.87059774,60.94609833,185.03975,186.2681095,16.009571,0.144789496,1620000000000 ,1620000000000 ,1620000000000 ,1616812529880 -1616812529909 ,112.5675174,26.8705963,60.9468956,185.0328925,186.2899495,16.011206,0.144795566,1620000000000 ,1620000000000 ,1620000000000 ,1616812529890 -1616812529917 ,112.5675172,26.87059486,60.94766998,185.0254339,186.2859445,16.010908,0.144800981,1620000000000 ,1620000000000 ,1620000000000 ,1616812529900 -1616812529928 ,112.5675171,26.87059342,60.94845963,185.0178115,186.2616203,16.00893,0.144782011,1620000000000 ,1620000000000 ,1620000000000 ,1616812529910 -1616812529938 ,112.5675169,26.87059198,60.94924927,185.0087956,186.2580262,16.009537,0.144778879,1620000000000 ,1620000000000 ,1620000000000 ,1616812529920 -1616812529949 ,112.5675168,26.87059055,60.95001984,185.0008726,186.2640605,16.010069,0.144779117,1620000000000 ,1620000000000 ,1620000000000 ,1616812529930 -1616812529958 ,112.5675166,26.87058911,60.95078278,184.9936599,186.2604659,16.007504,0.144768764,1620000000000 ,1620000000000 ,1620000000000 ,1616812529940 -1616812529967 ,112.5675164,26.87058767,60.95165253,184.985409,186.2545063,16.00467,0.144743851,1620000000000 ,1620000000000 ,1620000000000 ,1616812529950 -1616812529981 ,112.5675163,26.87058623,60.95271683,184.9775133,186.2413211,16.001118,0.144719943,1620000000000 ,1620000000000 ,1620000000000 ,1616812529960 -1616812529989 ,112.5675161,26.87058479,60.95393753,184.9708471,186.2341837,15.997446,0.144690591,1620000000000 ,1620000000000 ,1620000000000 ,1616812529970 -1616812529998 ,112.567516,26.87058335,60.95524979,184.9640169,186.2396779,15.995225,0.144671361,1620000000000 ,1620000000000 ,1620000000000 ,1616812529980 -1616812530008 ,112.5675158,26.87058191,60.95660782,184.9540721,186.2451913,15.993337,0.144655082,1620000000000 ,1620000000000 ,1620000000000 ,1616812529990 -1616812530020 ,112.5675157,26.87058048,60.9580307,184.9408489,186.2447216,15.992772,0.144649445,1620000000000 ,1620000000000 ,1620000000000 ,1616812530000 -1616812530032 ,112.5675155,26.87057904,60.95946884,184.931068,186.2351079,15.992055,0.14464264,1620000000000 ,1620000000000 ,1620000000000 ,1616812530010 -1616812530040 ,112.5675153,26.8705776,60.96090317,184.918965,186.2300977,15.992509,0.144647771,1620000000000 ,1620000000000 ,1620000000000 ,1616812530020 -1616812530050 ,112.5675152,26.87057616,60.96240234,184.9070804,186.2129233,15.989079,0.144631053,1620000000000 ,1620000000000 ,1620000000000 ,1616812530030 -1616812530059 ,112.567515,26.87057473,60.96404266,184.8955237,186.1892572,15.983737,0.144586362,1620000000000 ,1620000000000 ,1620000000000 ,1616812530040 -1616812530069 ,112.5675149,26.87057329,60.96577835,184.8845681,186.1759028,15.979538,0.144554676,1620000000000 ,1620000000000 ,1620000000000 ,1616812530050 -1616812530080 ,112.5675147,26.87057185,60.96749878,184.8726016,186.1690652,15.976971,0.144528571,1620000000000 ,1620000000000 ,1620000000000 ,1616812530060 -1616812530089 ,112.5675146,26.87057041,60.96914291,184.8589413,186.1634261,15.976283,0.14451758,1620000000000 ,1620000000000 ,1620000000000 ,1616812530070 -1616812530100 ,112.5675144,26.87056898,60.97072601,184.8441607,186.1480388,15.976249,0.144515349,1620000000000 ,1620000000000 ,1620000000000 ,1616812530080 -1616812530112 ,112.5675143,26.87056754,60.97225189,184.8306096,186.1296628,15.97761,0.144527651,1620000000000 ,1620000000000 ,1620000000000 ,1616812530090 -1616812530121 ,112.5675141,26.8705661,60.97370148,184.8171132,186.1130745,15.976602,0.14452322,1620000000000 ,1620000000000 ,1620000000000 ,1616812530100 -1616812530140 ,112.567514,26.87056467,60.97509384,184.8023873,186.1037471,15.97347,0.144497626,1620000000000 ,1620000000000 ,1620000000000 ,1616812530110 -1616812530142 ,112.5675138,26.87056323,60.9764595,184.7857216,186.0951988,15.970809,0.14447579,1620000000000 ,1620000000000 ,1620000000000 ,1616812530120 -1616812530150 ,112.5675136,26.87056179,60.97778702,184.7707772,186.0779461,15.9681,0.144452472,1620000000000 ,1620000000000 ,1620000000000 ,1616812530130 -1616812530161 ,112.5675135,26.87056036,60.97905731,184.7559147,186.064886,15.965216,0.14442528,1620000000000 ,1620000000000 ,1620000000000 ,1616812530140 -1616812530170 ,112.5675133,26.87055892,60.9802475,184.7395222,186.0510864,15.962074,0.144397748,1620000000000 ,1620000000000 ,1620000000000 ,1616812530150 -1616812530181 ,112.5675132,26.87055749,60.98135376,184.7226107,186.0300654,15.960577,0.144378156,1620000000000 ,1620000000000 ,1620000000000 ,1616812530160 -1616812530193 ,112.567513,26.87055605,60.98235321,184.7055079,186.0124924,15.961275,0.144379845,1620000000000 ,1620000000000 ,1620000000000 ,1616812530170 -1616812530203 ,112.5675129,26.87055461,60.98323822,184.6906454,186.0010847,15.962362,0.144380856,1620000000000 ,1620000000000 ,1620000000000 ,1616812530180 -1616812530212 ,112.5675127,26.87055318,60.98402786,184.6745808,185.9827557,15.962665,0.144391955,1620000000000 ,1620000000000 ,1620000000000 ,1616812530190 -1616812530222 ,112.5675126,26.87055175,60.98436737,184.6438996,185.5869753,15.936226,0.143944183,1620000000000 ,1620000000000 ,1620000000000 ,1616812530200 -1616812530231 ,112.5675125,26.87055032,60.98402786,184.62707,185.0935938,15.93316,0.143279932,1620000000000 ,1620000000000 ,1620000000000 ,1616812530210 -1616812530241 ,112.5675123,26.87054889,60.98363876,184.6117977,185.0770017,15.93124,0.14325773,1620000000000 ,1620000000000 ,1620000000000 ,1616812530220 -1616812530251 ,112.5675122,26.87054747,60.98315048,184.5951867,185.0635515,15.93121,0.143250908,1620000000000 ,1620000000000 ,1620000000000 ,1616812530230 -1616812530261 ,112.5675121,26.87054604,60.98255157,184.5788215,185.0424104,15.929051,0.14323303,1620000000000 ,1620000000000 ,1620000000000 ,1616812530240 -1616812530271 ,112.567512,26.87054461,60.98186493,184.5617734,185.0150815,15.926315,0.1432073,1620000000000 ,1620000000000 ,1620000000000 ,1616812530250 -1616812530281 ,112.5675118,26.87054319,60.98110199,184.5448618,184.9945618,15.925164,0.143188481,1620000000000 ,1620000000000 ,1620000000000 ,1616812530260 -1616812530292 ,112.5675117,26.87054176,60.98022842,184.5289612,184.9794382,15.925972,0.143186868,1620000000000 ,1620000000000 ,1620000000000 ,1616812530270 -1616812530302 ,112.5675116,26.87054033,60.97920227,184.5148363,184.9689603,15.9273405,0.143192591,1620000000000 ,1620000000000 ,1620000000000 ,1616812530280 -1616812530312 ,112.5675115,26.87053891,60.97806931,184.4983073,184.9515458,15.926641,0.143187721,1620000000000 ,1620000000000 ,1620000000000 ,1616812530290 -1616812530322 ,112.5675113,26.87053748,60.97689056,184.4810952,184.919,15.922664,0.14315647,1620000000000 ,1620000000000 ,1620000000000 ,1616812530300 -1616812530333 ,112.5675112,26.87053605,60.97571564,184.4609871,184.8897621,15.918712,0.143115771,1620000000000 ,1620000000000 ,1620000000000 ,1616812530310 -1616812530342 ,112.5675111,26.87053463,60.9745369,184.4440482,184.86938,15.917895,0.143098873,1620000000000 ,1620000000000 ,1620000000000 ,1616812530320 -1616812530352 ,112.567511,26.8705332,60.97331619,184.4291857,184.8557141,15.917742,0.143094665,1620000000000 ,1620000000000 ,1620000000000 ,1616812530330 -1616812530364 ,112.5675109,26.87053178,60.97206116,184.4140774,184.8375645,15.918651,0.143101015,1620000000000 ,1620000000000 ,1620000000000 ,1616812530350 -1616812530375 ,112.5675107,26.87053035,60.97084045,184.4000345,184.8035808,15.912627,0.143059026,1620000000000 ,1620000000000 ,1620000000000 ,1616812530360 -1616812530384 ,112.5675106,26.87052893,60.96968079,184.386538,184.7774578,15.909865,0.143024779,1620000000000 ,1620000000000 ,1620000000000 ,1616812530370 -1616812530394 ,112.5675105,26.8705275,60.96853638,184.3733694,184.7613653,15.910041,0.143019727,1620000000000 ,1620000000000 ,1620000000000 ,1616812530380 -1616812530403 ,112.5675104,26.87052607,60.96734238,184.3588894,184.7408584,15.90826,0.143000091,1620000000000 ,1620000000000 ,1620000000000 ,1616812530380 -1616812530413 ,112.5675103,26.87052465,60.96613312,184.3422511,184.7308941,15.906393,0.142981693,1620000000000 ,1620000000000 ,1620000000000 ,1616812530400 -1616812530423 ,112.5675101,26.87052322,60.96496201,184.3286727,184.7164548,15.905164,0.142968438,1620000000000 ,1620000000000 ,1620000000000 ,1616812530400 -1616812530435 ,112.5675099,26.87052038,60.96287537,184.3013792,184.6870927,15.900938,0.285894484,1620000000000 ,1620000000000 ,1620000000000 ,1616812530420 -1616812530443 ,112.5675099,26.87052038,60.96287537,184.3013792,-400,15.900938,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812530430 -1616812530455 ,112.5675097,26.87051753,60.96122742,184.2742224,184.6536913,15.891592,0.285760288,1620000000000 ,1620000000000 ,1620000000000 ,1616812530440 -1616812530464 ,112.5675096,26.8705161,60.96089935,184.2606986,185.0175394,15.8897915,0.143241562,1620000000000 ,1620000000000 ,1620000000000 ,1616812530450 -1616812530473 ,112.5675094,26.87051467,60.96100616,184.248295,185.3867104,15.890295,0.143650841,1620000000000 ,1620000000000 ,1620000000000 ,1616812530460 -1616812530484 ,112.5675093,26.87051324,60.96116257,184.2359734,185.3737717,15.888679,0.143638622,1620000000000 ,1620000000000 ,1620000000000 ,1616812530470 -1616812530493 ,112.5675092,26.87051181,60.96144485,184.2227774,185.3606777,15.886975,0.143630045,1620000000000 ,1620000000000 ,1620000000000 ,1616812530480 -1616812530503 ,112.5675092,26.87051181,60.96144485,184.2227774,-400,15.886975,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812530480 -1616812530522 ,112.5675089,26.87050895,60.9625206,184.1942546,185.3428381,15.876432,0.287133791,1620000000000 ,1620000000000 ,1620000000000 ,1616812530500 -1616812530525 ,112.5675088,26.87050752,60.9631958,184.1807581,185.3445217,15.870693,0.1435137,1620000000000 ,1620000000000 ,1620000000000 ,1616812530510 -1616812530533 ,112.5675086,26.87050609,60.9638443,184.1632182,185.3200889,15.873538,0.143497185,1620000000000 ,1620000000000 ,1620000000000 ,1616812530520 -1616812530548 ,112.5675085,26.87050466,60.96460724,184.1431647,185.3227877,15.871873,0.143498629,1620000000000 ,1620000000000 ,1620000000000 ,1616812530530 -1616812530557 ,112.5675084,26.87050324,60.96551132,184.125133,185.301253,15.869815,0.14349195,1620000000000 ,1620000000000 ,1620000000000 ,1616812530540 -1616812530567 ,112.5675082,26.87050181,60.96651459,184.109205,185.2915081,15.865784,0.143469796,1620000000000 ,1620000000000 ,1620000000000 ,1616812530550 -1616812530576 ,112.5675081,26.87050038,60.96763229,184.0930858,185.2919803,15.859912,0.143417758,1620000000000 ,1620000000000 ,1620000000000 ,1616812530560 -1616812530585 ,112.567508,26.87049895,60.96886063,184.0781687,185.2804737,15.855265,0.143369652,1620000000000 ,1620000000000 ,1620000000000 ,1616812530570 -1616812530596 ,112.5675078,26.87049752,60.97014999,184.0595632,185.2757381,15.853889,0.143358218,1620000000000 ,1620000000000 ,1620000000000 ,1616812530580 -1616812530605 ,112.5675077,26.8704961,60.97138214,184.039018,185.2652286,15.854042,0.143357591,1620000000000 ,1620000000000 ,1620000000000 ,1616812530590 -1616812530616 ,112.5675076,26.87049467,60.97252274,184.0169702,185.264766,15.852809,0.14334991,1620000000000 ,1620000000000 ,1620000000000 ,1616812530600 -1616812530625 ,112.5675074,26.87049324,60.9736824,183.9945672,185.269453,15.8471985,0.143309835,1620000000000 ,1620000000000 ,1620000000000 ,1616812530610 -1616812530634 ,112.5675073,26.87049182,60.97494507,183.9719456,185.252238,15.843136,0.143273589,1620000000000 ,1620000000000 ,1620000000000 ,1616812530620 -1616812530648 ,112.5675072,26.87049039,60.97626114,183.9506354,185.2300963,15.839348,0.143240202,1620000000000 ,1620000000000 ,1620000000000 ,1616812530630 -1616812530656 ,112.567507,26.87048896,60.97758102,183.9294071,185.2110355,15.837374,0.143218254,1620000000000 ,1620000000000 ,1620000000000 ,1616812530640 -1616812530667 ,112.5675069,26.87048754,60.97887802,183.9081789,185.1931601,15.837723,0.143217196,1620000000000 ,1620000000000 ,1620000000000 ,1616812530650 -1616812530676 ,112.5675068,26.87048611,60.9801712,183.8865682,185.1694835,15.833306,0.143194194,1620000000000 ,1620000000000 ,1620000000000 ,1616812530660 -1616812530685 ,112.5675067,26.87048468,60.98143005,183.8664874,185.1471403,15.8289385,0.143151633,1620000000000 ,1620000000000 ,1620000000000 ,1616812530670 -1616812530695 ,112.5675065,26.87048326,60.98262787,183.8444396,185.119473,15.825495,0.143116341,1620000000000 ,1620000000000 ,1620000000000 ,1616812530680 -1616812530706 ,112.5675065,26.87048326,60.98262787,183.8444396,-400,15.825495,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812530690 -1616812530715 ,112.5675063,26.87048041,60.98472595,183.8017646,185.0692614,15.820187,0.286132792,1620000000000 ,1620000000000 ,1620000000000 ,1616812530700 -1616812530725 ,112.5675061,26.87047898,60.98559952,183.7818751,185.0332881,15.8184595,0.143034309,1620000000000 ,1620000000000 ,1620000000000 ,1616812530710 -1616812530735 ,112.567506,26.87047756,60.9863739,183.7635702,185.0026658,15.815235,0.143004665,1620000000000 ,1620000000000 ,1620000000000 ,1616812530720 -1616812530747 ,112.5675059,26.87047614,60.98707962,183.7435714,184.9747506,15.813696,0.142983422,1620000000000 ,1620000000000 ,1620000000000 ,1616812530730 -1616812530760 ,112.5675058,26.87047471,60.98766708,183.723354,184.9513987,15.812383,0.142962708,1620000000000 ,1620000000000 ,1620000000000 ,1616812530740 -1616812530766 ,112.5675057,26.87047329,60.98810196,183.7048852,184.927476,15.811574,0.142948827,1620000000000 ,1620000000000 ,1620000000000 ,1616812530750 -1616812530777 ,112.5675055,26.87047186,60.98840714,183.6857333,184.9025071,15.810618,0.142936346,1620000000000 ,1620000000000 ,1620000000000 ,1616812530760 -1616812530786 ,112.5675054,26.87047044,60.98867416,183.6658438,184.8705543,15.807208,0.142908597,1620000000000 ,1620000000000 ,1620000000000 ,1616812530770 -1616812530798 ,112.5675053,26.87046901,60.98898697,183.6461729,184.8414384,15.803269,0.142871393,1620000000000 ,1620000000000 ,1620000000000 ,1616812530780 -1616812530805 ,112.5675052,26.87046759,60.98936081,183.6292613,184.823498,15.799542,0.142837444,1620000000000 ,1620000000000 ,1620000000000 ,1616812530790 -1616812530816 ,112.567505,26.87046617,60.98974991,183.6119946,184.8027203,15.797167,0.142813568,1620000000000 ,1620000000000 ,1620000000000 ,1616812530800 -1616812530828 ,112.5675049,26.87046475,60.99008179,183.5962578,184.7794031,15.794199,0.142780057,1620000000000 ,1620000000000 ,1620000000000 ,1616812530810 -1616812530837 ,112.5675048,26.87046332,60.99025726,183.5816686,184.7549236,15.79533,0.142780746,1620000000000 ,1620000000000 ,1620000000000 ,1616812530820 -1616812530846 ,112.5675047,26.8704619,60.99025345,183.5639374,184.7306158,15.792388,0.142744179,1620000000000 ,1620000000000 ,1620000000000 ,1616812530830 -1616812530856 ,112.5675046,26.87046048,60.99022293,183.5406874,184.7087481,15.79059,0.142732406,1620000000000 ,1620000000000 ,1620000000000 ,1616812530840 -1616812530867 ,112.5675045,26.87045906,60.99031448,183.5215356,184.6986041,15.789401,0.142714755,1620000000000 ,1620000000000 ,1620000000000 ,1616812530850 -1616812530878 ,112.5675043,26.87045763,60.99045181,183.5077386,184.682386,15.7862625,0.14269718,1620000000000 ,1620000000000 ,1620000000000 ,1616812530860 -1616812530887 ,112.5675042,26.87045621,60.99067688,183.4921111,184.6600377,15.775337,0.142617324,1620000000000 ,1620000000000 ,1620000000000 ,1616812530870 -1616812530897 ,112.5675041,26.87045479,60.99105835,183.4763197,184.6274365,15.766612,0.142530592,1620000000000 ,1620000000000 ,1620000000000 ,1616812530880 -1616812530908 ,112.567504,26.87045337,60.99150085,183.4603098,184.5940196,15.765791,0.142498626,1620000000000 ,1620000000000 ,1620000000000 ,1616812530890 -1616812530917 ,112.5675039,26.87045195,60.99184418,183.4440539,184.5820906,15.768577,0.142515405,1620000000000 ,1620000000000 ,1620000000000 ,1616812530900 -1616812530930 ,112.5675038,26.87045053,60.9920845,183.4244922,184.5821435,15.769435,0.142528653,1620000000000 ,1620000000000 ,1620000000000 ,1616812530910 -1616812530938 ,112.5675037,26.87044911,60.99238968,183.4053677,184.5714281,15.76548,0.142503431,1620000000000 ,1620000000000 ,1620000000000 ,1616812530920 -1616812530948 ,112.5675035,26.87044769,60.9928894,183.3886474,184.5379151,15.759115,0.142454009,1620000000000 ,1620000000000 ,1620000000000 ,1616812530930 -1616812530960 ,112.5675034,26.87044627,60.9935379,183.3733478,184.4945654,15.753012,0.142395761,1620000000000 ,1620000000000 ,1620000000000 ,1616812530940 -1616812530967 ,112.5675033,26.87044485,60.99422073,183.3551795,184.4701899,15.749632,0.142355975,1620000000000 ,1620000000000 ,1620000000000 ,1616812530950 -1616812530977 ,112.5675032,26.87044343,60.99482727,183.3376669,184.4664078,15.749441,0.142344083,1620000000000 ,1620000000000 ,1620000000000 ,1616812530960 -1616812530989 ,112.5675031,26.87044201,60.99534607,183.3204821,184.4604432,15.750502,0.142351663,1620000000000 ,1620000000000 ,1620000000000 ,1616812530970 -1616812530998 ,112.567503,26.87044059,60.99588776,183.3011117,184.4372428,15.747879,0.142333966,1620000000000 ,1620000000000 ,1620000000000 ,1616812530980 -1616812531008 ,112.5675029,26.87043917,60.99661636,183.2805665,184.4045718,15.742188,0.142294499,1620000000000 ,1620000000000 ,1620000000000 ,1616812530990 -1616812531019 ,112.5675028,26.87043776,60.99756622,183.2601852,184.3808423,15.735668,0.142244476,1620000000000 ,1620000000000 ,1620000000000 ,1616812531000 -1616812531039 ,112.5675027,26.87043634,60.9986496,183.2426726,184.3708436,15.728612,0.142183218,1620000000000 ,1620000000000 ,1620000000000 ,1616812531010 -1616812531044 ,112.5675026,26.87043492,60.9997406,183.2261435,184.3544568,15.72433,0.142138382,1620000000000 ,1620000000000 ,1620000000000 ,1616812531020 -1616812531049 ,112.5675024,26.8704335,61.00081253,183.209232,184.3382082,15.722745,0.142116823,1620000000000 ,1620000000000 ,1620000000000 ,1616812531030 -1616812531058 ,112.5675023,26.87043209,61.00192261,183.1902441,184.3159372,15.72282,0.142116121,1620000000000 ,1620000000000 ,1620000000000 ,1616812531040 -1616812531070 ,112.5675022,26.87043067,61.00310135,183.1719938,184.288349,15.720831,0.142106569,1620000000000 ,1620000000000 ,1620000000000 ,1616812531050 -1616812531080 ,112.5675021,26.87042925,61.00437927,183.155656,184.2665443,15.715798,0.142074877,1620000000000 ,1620000000000 ,1620000000000 ,1616812531060 -1616812531089 ,112.567502,26.87042784,61.0058136,183.1369959,184.2530744,15.707726,0.142012693,1620000000000 ,1620000000000 ,1620000000000 ,1616812531070 -1616812531101 ,112.5675019,26.87042642,61.0074234,183.1190735,184.2363753,15.700775,0.141956556,1620000000000 ,1620000000000 ,1620000000000 ,1616812531080 -1616812531111 ,112.5675018,26.87042501,61.00912857,183.1022166,184.2102759,15.695205,0.141906034,1620000000000 ,1620000000000 ,1620000000000 ,1616812531090 -1616812531122 ,112.5675017,26.87042359,61.01082993,183.0859607,184.194547,15.690444,0.141866345,1620000000000 ,1620000000000 ,1620000000000 ,1616812531100 -1616812531129 ,112.5675016,26.87042218,61.0124855,183.0677924,184.1840791,15.686897,0.141838417,1620000000000 ,1620000000000 ,1620000000000 ,1616812531110 -1616812531139 ,112.5675015,26.87042076,61.01411819,183.0506623,184.1696711,15.68203,0.141799564,1620000000000 ,1620000000000 ,1620000000000 ,1616812531120 -1616812531150 ,112.5675014,26.87041935,61.01572037,183.0347343,184.1532267,15.67816,0.141762226,1620000000000 ,1620000000000 ,1620000000000 ,1616812531130 -1616812531159 ,112.5675013,26.87041793,61.01723862,183.0206915,184.1324191,15.6750145,0.141734122,1620000000000 ,1620000000000 ,1620000000000 ,1616812531140 -1616812531170 ,112.5675012,26.87041652,61.01861954,183.0042717,184.1181675,15.671537,0.141698879,1620000000000 ,1620000000000 ,1620000000000 ,1616812531150 -1616812531180 ,112.5675011,26.87041511,61.01983261,182.9883983,184.1078891,15.668372,0.14166556,1620000000000 ,1620000000000 ,1620000000000 ,1616812531160 -1616812531190 ,112.567501,26.87041369,61.02085495,182.9702027,184.0945986,15.666051,0.141638985,1620000000000 ,1620000000000 ,1620000000000 ,1616812531170 -1616812531200 ,112.5675009,26.87041228,61.02169037,182.9518705,184.0783781,15.664344,0.141613626,1620000000000 ,1620000000000 ,1620000000000 ,1616812531180 -1616812531210 ,112.5675008,26.87041087,61.02236938,182.9335656,184.0625436,15.662175,0.141592154,1620000000000 ,1620000000000 ,1620000000000 ,1616812531190 -1616812531221 ,112.5675007,26.87040946,61.02328873,182.9083758,183.7376786,15.667091,0.141656378,1620000000000 ,1620000000000 ,1620000000000 ,1616812531200 -1616812531231 ,112.5675006,26.87040804,61.02465439,182.8917648,183.3125885,15.663498,0.141806558,1620000000000 ,1620000000000 ,1620000000000 ,1616812531210 -1616812531244 ,112.5675005,26.87040663,61.02587509,182.8728315,183.2946918,15.66088,0.141772814,1620000000000 ,1620000000000 ,1620000000000 ,1616812531220 -1616812531251 ,112.5675005,26.87040521,61.02694702,182.8558107,183.2851433,15.658668,0.141748627,1620000000000 ,1620000000000 ,1620000000000 ,1616812531230 -1616812531262 ,112.5675004,26.8704038,61.0279007,182.8403198,183.2747945,15.659073,0.141733721,1620000000000 ,1620000000000 ,1620000000000 ,1616812531240 -1616812531271 ,112.5675003,26.87040238,61.02873611,182.8250748,183.2743895,15.656265,0.141719685,1620000000000 ,1620000000000 ,1620000000000 ,1616812531250 -1616812531287 ,112.5675002,26.87040097,61.02946854,182.8067699,183.2535584,15.6531725,0.141685175,1620000000000 ,1620000000000 ,1620000000000 ,1616812531260 -1616812531290 ,112.5675001,26.87039955,61.03017807,182.7871536,183.2425958,15.648538,0.141640271,1620000000000 ,1620000000000 ,1620000000000 ,1616812531270 -1616812531300 ,112.5675001,26.87039814,61.03090668,182.7662259,183.2404533,15.644973,0.14160397,1620000000000 ,1620000000000 ,1620000000000 ,1616812531280 -1616812531312 ,112.5675,26.87039672,61.03160858,182.7493144,183.2367391,15.6419115,0.141579738,1620000000000 ,1620000000000 ,1620000000000 ,1616812531290 -1616812531320 ,112.5674999,26.87039531,61.03233719,182.7301625,183.2268112,15.634595,0.141522944,1620000000000 ,1620000000000 ,1620000000000 ,1616812531300 -1616812531330 ,112.5674998,26.8703939,61.0331955,182.7110926,183.1978207,15.627668,0.141456694,1620000000000 ,1620000000000 ,1620000000000 ,1616812531310 -1616812531341 ,112.5674997,26.87039249,61.03417206,182.6916676,183.1648251,15.622914,0.14141017,1620000000000 ,1620000000000 ,1620000000000 ,1616812531320 -1616812531352 ,112.5674997,26.87039108,61.03516006,182.6763406,183.1382702,15.621753,0.141391913,1620000000000 ,1620000000000 ,1620000000000 ,1616812531330 -1616812531362 ,112.5674996,26.87038966,61.03608322,182.6616421,183.1269783,15.621296,0.141382073,1620000000000 ,1620000000000 ,1620000000000 ,1616812531340 -1616812531372 ,112.5674995,26.87038825,61.03699112,182.6449764,183.114851,15.617784,0.141355627,1620000000000 ,1620000000000 ,1620000000000 ,1616812531350 -1616812531382 ,112.5674994,26.87038684,61.03797913,182.6276277,183.0885698,15.611883,0.14130819,1620000000000 ,1620000000000 ,1620000000000 ,1616812531360 -1616812531391 ,112.5674994,26.87038543,61.03904724,182.6120822,183.0661496,15.60604,0.14125405,1620000000000 ,1620000000000 ,1620000000000 ,1616812531370 -1616812531401 ,112.5674993,26.87038402,61.04017639,182.5955532,183.0444612,15.601763,0.14120905,1620000000000 ,1620000000000 ,1620000000000 ,1616812531380 -1616812531412 ,112.5674992,26.87038261,61.04135132,182.5812371,183.0247797,15.5966625,0.141164086,1620000000000 ,1620000000000 ,1620000000000 ,1616812531390 -1616812531422 ,112.5674991,26.8703812,61.04257584,182.5662653,183.0041751,15.592235,0.141121555,1620000000000 ,1620000000000 ,1620000000000 ,1616812531400 -1616812531434 ,112.5674991,26.87037979,61.04386139,182.5506925,182.9826036,15.588914,0.141089348,1620000000000 ,1620000000000 ,1620000000000 ,1616812531420 -1616812531444 ,112.567499,26.87037838,61.04520416,182.5366223,182.9645718,15.586618,0.141065217,1620000000000 ,1620000000000 ,1620000000000 ,1616812531430 -1616812531453 ,112.5674989,26.87037698,61.04660797,182.5232898,182.9449625,15.584325,0.141042293,1620000000000 ,1620000000000 ,1620000000000 ,1616812531430 -1616812531465 ,112.5674988,26.87037416,61.04935837,182.4942478,183.0664863,15.573462,0.281858803,1620000000000 ,1620000000000 ,1620000000000 ,1616812531450 -1616812531474 ,112.5674988,26.87037416,61.04935837,182.4942478,-400,15.573462,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812531460 -1616812531483 ,112.5674986,26.87037135,61.05158997,182.4686756,183.4770192,15.561526,0.281317484,1620000000000 ,1620000000000 ,1620000000000 ,1616812531470 -1616812531493 ,112.5674985,26.87036995,61.05282974,182.4570916,183.4592527,15.559415,0.140608537,1620000000000 ,1620000000000 ,1620000000000 ,1616812531480 -1616812531502 ,112.5674985,26.87036995,61.05282974,182.4570916,-400,15.559415,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812531480 -1616812531514 ,112.5674983,26.87036714,61.05552673,182.4375572,183.4372203,15.552286,0.281136558,1620000000000 ,1620000000000 ,1620000000000 ,1616812531500 -1616812531525 ,112.5674983,26.87036714,61.05552673,182.4375572,-400,15.552286,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812531510 -1616812531535 ,112.5674982,26.87036434,61.05886078,182.4150449,183.3967909,15.538553,0.280940975,1620000000000 ,1620000000000 ,1620000000000 ,1616812531520 -1616812531548 ,112.5674981,26.87036294,61.06077576,182.4045264,183.3850689,15.533447,0.140396578,1620000000000 ,1620000000000 ,1620000000000 ,1616812531530 -1616812531555 ,112.567498,26.87036154,61.0627861,182.3929698,183.3745588,15.529436,0.140362274,1620000000000 ,1620000000000 ,1620000000000 ,1616812531540 -1616812531563 ,112.5674979,26.87036013,61.064888,182.3810852,183.3579086,15.524812,0.140324171,1620000000000 ,1620000000000 ,1620000000000 ,1616812531550 -1616812531575 ,112.5674978,26.87035873,61.0670929,182.3709765,183.3379538,15.520576,0.140289943,1620000000000 ,1620000000000 ,1620000000000 ,1616812531560 -1616812531583 ,112.5674978,26.87035733,61.06936264,182.3608132,183.313323,15.516554,0.140258035,1620000000000 ,1620000000000 ,1620000000000 ,1616812531570 -1616812531593 ,112.5674977,26.87035593,61.07164764,182.3513056,183.2962774,15.513597,0.140226474,1620000000000 ,1620000000000 ,1620000000000 ,1616812531580 -1616812531605 ,112.5674976,26.87035453,61.0739212,182.3427542,183.2884741,15.509231,0.140195525,1620000000000 ,1620000000000 ,1620000000000 ,1616812531590 -1616812531615 ,112.5674975,26.87035314,61.07618713,182.3321811,183.2731405,15.50377,0.140151735,1620000000000 ,1620000000000 ,1620000000000 ,1616812531600 -1616812531624 ,112.5674974,26.87035174,61.07842255,182.324258,183.253011,15.499205,0.140108876,1620000000000 ,1620000000000 ,1620000000000 ,1616812531610 -1616812531634 ,112.5674974,26.87035034,61.08057785,182.3152422,183.2405222,15.4958725,0.140073251,1620000000000 ,1620000000000 ,1620000000000 ,1616812531620 -1616812531644 ,112.5674973,26.87034894,61.0825882,182.3073738,183.2342928,15.494616,0.140055256,1620000000000 ,1620000000000 ,1620000000000 ,1616812531630 -1616812531654 ,112.5674972,26.87034754,61.08446884,182.3008168,183.2305395,15.492422,0.140038231,1620000000000 ,1620000000000 ,1620000000000 ,1616812531640 -1616812531666 ,112.5674971,26.87034614,61.08627701,182.291801,183.2228633,15.488641,0.140007577,1620000000000 ,1620000000000 ,1620000000000 ,1616812531650 -1616812531678 ,112.567497,26.87034475,61.08805466,182.2826759,183.2134317,15.483587,0.139964615,1620000000000 ,1620000000000 ,1620000000000 ,1616812531660 -1616812531685 ,112.567497,26.87034335,61.08980179,182.2739605,183.2046583,15.477565,0.139913361,1620000000000 ,1620000000000 ,1620000000000 ,1616812531670 -1616812531695 ,112.5674969,26.87034195,61.09148788,182.2658736,183.1979604,15.473668,0.139870986,1620000000000 ,1620000000000 ,1620000000000 ,1616812531680 -1616812531705 ,112.5674968,26.87034056,61.0931015,182.2583604,183.190311,15.471348,0.139846729,1620000000000 ,1620000000000 ,1620000000000 ,1616812531690 -1616812531716 ,112.5674967,26.87033916,61.09461212,182.2508745,183.1826694,15.469621,0.139827471,1620000000000 ,1620000000000 ,1620000000000 ,1616812531700 -1616812531725 ,112.5674967,26.87033776,61.09601212,182.2451918,183.1752221,15.467173,0.139804218,1620000000000 ,1620000000000 ,1620000000000 ,1616812531710 -1616812531735 ,112.5674966,26.87033637,61.09732819,182.2383343,183.1656099,15.462767,0.139768299,1620000000000 ,1620000000000 ,1620000000000 ,1616812531720 -1616812531746 ,112.5674965,26.87033497,61.09857559,182.2321598,183.1532608,15.458837,0.139728129,1620000000000 ,1620000000000 ,1620000000000 ,1616812531730 -1616812531755 ,112.5674964,26.87033358,61.09970856,182.2253296,183.1417494,15.454275,0.139686013,1620000000000 ,1620000000000 ,1620000000000 ,1616812531740 -1616812531765 ,112.5674964,26.87033218,61.10069275,182.216423,183.1369652,15.45079,0.139645874,1620000000000 ,1620000000000 ,1620000000000 ,1616812531750 -1616812531775 ,112.5674963,26.87033079,61.10152817,182.2077897,183.1342373,15.4482765,0.139616517,1620000000000 ,1620000000000 ,1620000000000 ,1616812531760 -1616812531786 ,112.5674962,26.8703294,61.1022377,182.1982274,183.1291421,15.445603,0.13958569,1620000000000 ,1620000000000 ,1620000000000 ,1616812531770 -1616812531796 ,112.5674961,26.870328,61.10287094,182.1906049,183.121014,15.443276,0.13956334,1620000000000 ,1620000000000 ,1620000000000 ,1616812531780 -1616812531806 ,112.567496,26.87032661,61.10345078,182.1817803,183.1130963,15.4410925,0.139539957,1620000000000 ,1620000000000 ,1620000000000 ,1616812531790 -1616812531816 ,112.567496,26.87032522,61.10399246,182.1736934,183.1081888,15.437872,0.139508793,1620000000000 ,1620000000000 ,1620000000000 ,1616812531800 -1616812531825 ,112.5674959,26.87032382,61.10448456,182.1647595,183.1001669,15.432264,0.13946574,1620000000000 ,1620000000000 ,1620000000000 ,1616812531810 -1616812531836 ,112.5674958,26.87032243,61.10493088,182.1568091,183.088005,15.427656,0.139412939,1620000000000 ,1620000000000 ,1620000000000 ,1616812531820 -1616812531846 ,112.5674957,26.87032104,61.10536575,182.1478752,183.0877821,15.424359,0.139376849,1620000000000 ,1620000000000 ,1620000000000 ,1616812531830 -1616812531856 ,112.5674957,26.87031965,61.105793,182.1391599,183.0763146,15.423133,0.139360442,1620000000000 ,1620000000000 ,1620000000000 ,1616812531840 -1616812531869 ,112.5674956,26.87031826,61.10620499,182.1286688,183.0634583,15.421628,0.139347786,1620000000000 ,1620000000000 ,1620000000000 ,1616812531850 -1616812531877 ,112.5674955,26.87031687,61.10663986,182.1196256,183.0596552,15.41703,0.139313105,1620000000000 ,1620000000000 ,1620000000000 ,1616812531860 -1616812531887 ,112.5674954,26.87031548,61.10713959,182.1107463,183.0567,15.412366,0.139269615,1620000000000 ,1620000000000 ,1620000000000 ,1616812531870 -1616812531898 ,112.5674954,26.87031408,61.10770035,182.1020857,183.0544988,15.408998,0.139238834,1620000000000 ,1620000000000 ,1620000000000 ,1616812531880 -1616812531908 ,112.5674953,26.87031269,61.10828018,182.0934523,183.0529802,15.406536,0.139213972,1620000000000 ,1620000000000 ,1620000000000 ,1616812531890 -1616812531921 ,112.5674952,26.8703113,61.10884857,182.084737,183.0500795,15.402992,0.139184393,1620000000000 ,1620000000000 ,1620000000000 ,1616812531900 -1616812531927 ,112.5674952,26.87030992,61.10944366,182.0732349,183.0480963,15.397369,0.139140091,1620000000000 ,1620000000000 ,1620000000000 ,1616812531910 -1616812531936 ,112.5674951,26.87030853,61.11009979,182.0620607,183.0465906,15.39233,0.139093389,1620000000000 ,1620000000000 ,1620000000000 ,1616812531920 -1616812531946 ,112.567495,26.87030714,61.11084747,182.0529356,183.0473297,15.387202,0.139051028,1620000000000 ,1620000000000 ,1620000000000 ,1616812531930 -1616812531958 ,112.5674949,26.87030575,61.11170578,182.0449853,183.0426511,15.382866,0.139013804,1620000000000 ,1620000000000 ,1620000000000 ,1616812531940 -1616812531968 ,112.5674949,26.87030436,61.11265945,182.0357235,183.0299243,15.379215,0.13898316,1620000000000 ,1620000000000 ,1620000000000 ,1616812531950 -1616812531978 ,112.5674948,26.87030297,61.11371994,182.0248772,183.0269102,15.374934,0.138949594,1620000000000 ,1620000000000 ,1620000000000 ,1616812531960 -1616812531989 ,112.5674947,26.87030159,61.11487579,182.01455,183.0262384,15.371158,0.138918069,1620000000000 ,1620000000000 ,1620000000000 ,1616812531970 -1616812531997 ,112.5674946,26.8703002,61.11611557,182.0046598,183.0174382,15.365775,0.138879859,1620000000000 ,1620000000000 ,1620000000000 ,1616812531980 -1616812532008 ,112.5674946,26.87029881,61.11741638,181.99283,182.9990676,15.362123,0.138845991,1620000000000 ,1620000000000 ,1620000000000 ,1616812531990 -1616812532020 ,112.5674945,26.87029743,61.11879349,181.9811367,182.984756,15.355674,0.138795903,1620000000000 ,1620000000000 ,1620000000000 ,1616812532000 -1616812532028 ,112.5674944,26.87029604,61.12026978,181.9718476,182.9838866,15.349739,0.138744796,1620000000000 ,1620000000000 ,1620000000000 ,1616812532010 -1616812532041 ,112.5674943,26.87029466,61.12179947,181.9627225,182.9785413,15.344593,0.138700308,1620000000000 ,1620000000000 ,1620000000000 ,1616812532020 -1616812532048 ,112.5674943,26.87029327,61.12329102,181.9566026,182.9587542,15.339692,0.138657565,1620000000000 ,1620000000000 ,1620000000000 ,1616812532030 -1616812532058 ,112.5674942,26.87029189,61.12467575,181.9499637,182.9368283,15.3361435,0.138620179,1620000000000 ,1620000000000 ,1620000000000 ,1616812532040 -1616812532069 ,112.5674941,26.8702905,61.12591171,181.9424778,182.9229896,15.336092,0.138607706,1620000000000 ,1620000000000 ,1620000000000 ,1616812532050 -1616812532081 ,112.5674941,26.87028912,61.1269455,181.9338718,182.9195062,15.336301,0.138603808,1620000000000 ,1620000000000 ,1620000000000 ,1616812532060 -1616812532088 ,112.567494,26.87028774,61.12779617,181.9272875,182.9227557,15.332585,0.138572053,1620000000000 ,1620000000000 ,1620000000000 ,1616812532070 -1616812532099 ,112.5674939,26.87028635,61.12859726,181.9179438,182.9184006,15.327054,0.138526367,1620000000000 ,1620000000000 ,1620000000000 ,1616812532080 -1616812532109 ,112.5674939,26.87028497,61.12945175,181.9111682,182.8920068,15.321426,0.138473079,1620000000000 ,1620000000000 ,1620000000000 ,1616812532090 -1616812532126 ,112.5674938,26.87028359,61.13035202,181.9028354,182.8649737,15.315797,0.138421206,1620000000000 ,1620000000000 ,1620000000000 ,1616812532100 -1616812532130 ,112.5674937,26.8702822,61.13123322,181.8972073,182.8507812,15.313965,0.138393374,1620000000000 ,1620000000000 ,1620000000000 ,1616812532110 -1616812532139 ,112.5674936,26.87028082,61.13204956,181.8948577,182.8496502,15.312301,0.138379449,1620000000000 ,1620000000000 ,1620000000000 ,1616812532120 -1616812532149 ,112.5674936,26.87027944,61.13286591,181.8895302,182.8331424,15.310035,0.138360218,1620000000000 ,1620000000000 ,1620000000000 ,1616812532130 -1616812532161 ,112.5674935,26.87027806,61.13372421,181.8867161,182.8067005,15.307289,0.13833628,1620000000000 ,1620000000000 ,1620000000000 ,1616812532140 -1616812532175 ,112.5674934,26.87027668,61.13455963,181.8860331,182.7882686,15.303583,0.138302434,1620000000000 ,1620000000000 ,1620000000000 ,1616812532150 -1616812532178 ,112.5674934,26.8702753,61.13532639,181.8878363,182.7799254,15.301427,0.138271313,1620000000000 ,1620000000000 ,1620000000000 ,1616812532160 -1616812532188 ,112.5674933,26.87027392,61.13602066,181.8897761,182.7805033,15.295365,0.138231585,1620000000000 ,1620000000000 ,1620000000000 ,1616812532170 -1616812532201 ,112.5674932,26.87027253,61.13673019,181.8893662,182.7599189,15.292398,0.13819335,1620000000000 ,1620000000000 ,1620000000000 ,1616812532180 -1616812532210 ,112.5674932,26.87027115,61.13754272,181.8911148,182.7545338,15.286643,0.13814368,1620000000000 ,1620000000000 ,1620000000000 ,1616812532190 -1616812532220 ,112.5674931,26.87026977,61.13859558,181.891306,182.3994359,15.299531,0.138320931,1620000000000 ,1620000000000 ,1620000000000 ,1616812532200 -1616812532231 ,112.5674931,26.87026839,61.13987732,181.8947211,181.8694382,15.295728,0.138656147,1620000000000 ,1620000000000 ,1620000000000 ,1616812532210 -1616812532240 ,112.567493,26.870267,61.14116669,181.895732,181.8674139,15.290762,0.138612421,1620000000000 ,1620000000000 ,1620000000000 ,1616812532220 -1616812532250 ,112.567493,26.87026562,61.14250946,181.8992837,181.8528416,15.288034,0.138582523,1620000000000 ,1620000000000 ,1620000000000 ,1616812532230 -1616812532262 ,112.5674929,26.87026423,61.14390182,181.9030813,181.8430298,15.284006,0.138541133,1620000000000 ,1620000000000 ,1620000000000 ,1616812532240 -1616812532270 ,112.5674929,26.87026285,61.14533615,181.9063324,181.844117,15.281369,0.138529785,1620000000000 ,1620000000000 ,1620000000000 ,1616812532250 -1616812532281 ,112.5674928,26.87026146,61.14686203,181.9117693,181.8514078,15.273396,0.138472476,1620000000000 ,1620000000000 ,1620000000000 ,1616812532260 -1616812532292 ,112.5674928,26.87026008,61.14849091,181.9193098,181.8506329,15.266735,0.138407044,1620000000000 ,1620000000000 ,1620000000000 ,1616812532270 -1616812532301 ,112.5674928,26.8702587,61.15013885,181.9280798,181.8398134,15.262167,0.138364609,1620000000000 ,1620000000000 ,1620000000000 ,1616812532280 -1616812532314 ,112.5674927,26.87025731,61.15174103,181.9318773,181.8391164,15.260915,0.138345029,1620000000000 ,1620000000000 ,1620000000000 ,1616812532290 -1616812532322 ,112.5674927,26.87025593,61.1532402,181.9358115,181.8463731,15.260306,0.138331283,1620000000000 ,1620000000000 ,1620000000000 ,1616812532300 -1616812532331 ,112.5674926,26.87025455,61.15461731,181.9413576,181.8718645,15.257753,0.138309338,1620000000000 ,1620000000000 ,1620000000000 ,1616812532310 -1616812532341 ,112.5674926,26.87025317,61.15589142,181.9447454,181.8969131,15.253854,0.138275411,1620000000000 ,1620000000000 ,1620000000000 ,1616812532320 -1616812532350 ,112.5674925,26.87025179,61.15716934,181.9473955,181.9084323,15.246247,0.138215806,1620000000000 ,1620000000000 ,1620000000000 ,1616812532330 -1616812532364 ,112.5674925,26.87025041,61.15853882,181.951439,181.9146844,15.240351,0.138156982,1620000000000 ,1620000000000 ,1620000000000 ,1616812532340 -1616812532373 ,112.5674924,26.87024902,61.15991592,181.9530782,181.9172927,15.239878,0.138137643,1620000000000 ,1620000000000 ,1620000000000 ,1616812532350 -1616812532382 ,112.5674924,26.87024764,61.16116714,181.9547448,181.9243738,15.23842,0.138128762,1620000000000 ,1620000000000 ,1620000000000 ,1616812532360 -1616812532395 ,112.5674923,26.87024626,61.16225433,181.9579687,181.9464277,15.236865,0.138106712,1620000000000 ,1620000000000 ,1620000000000 ,1616812532370 -1616812532402 ,112.5674923,26.87024488,61.16328049,181.9607007,181.9837934,15.232335,0.138071383,1620000000000 ,1620000000000 ,1620000000000 ,1616812532380 -1616812532412 ,112.5674923,26.8702435,61.16437531,181.961657,181.9954443,15.226369,0.138023788,1620000000000 ,1620000000000 ,1620000000000 ,1616812532390 -1616812532421 ,112.5674922,26.87024213,61.16551208,181.9643071,181.9851146,15.220754,0.137970622,1620000000000 ,1620000000000 ,1620000000000 ,1616812532400 -1616812532431 ,112.5674922,26.87024075,61.16664505,181.967449,182.0002767,15.216197,0.137921204,1620000000000 ,1620000000000 ,1620000000000 ,1616812532410 -1616812532442 ,112.5674921,26.87023937,61.16775513,181.9692248,182.0380835,15.213083,0.137888789,1620000000000 ,1620000000000 ,1620000000000 ,1616812532420 -1616812532452 ,112.5674921,26.87023799,61.16892624,181.9704816,182.0650121,15.209689,0.137858953,1620000000000 ,1620000000000 ,1620000000000 ,1616812532440 -1616812532464 ,112.567492,26.87023661,61.17020798,181.9721755,182.0809172,15.205694,0.137826277,1620000000000 ,1620000000000 ,1620000000000 ,1616812532450 -1616812532472 ,112.5674919,26.87023524,61.17138672,181.9722574,182.4615209,15.202778,0.137585357,1620000000000 ,1620000000000 ,1620000000000 ,1616812532460 -1616812532485 ,112.5674919,26.87023387,61.17240524,181.9709187,182.8438894,15.200263,0.137352839,1620000000000 ,1620000000000 ,1620000000000 ,1616812532470 -1616812532494 ,112.5674918,26.8702325,61.17341232,181.9715198,182.8699021,15.197504,0.137328919,1620000000000 ,1620000000000 ,1620000000000 ,1616812532480 -1616812532509 ,112.5674917,26.87023113,61.17444992,181.9708367,182.8814442,15.191324,0.137280757,1620000000000 ,1620000000000 ,1620000000000 ,1616812532480 -1616812532519 ,112.5674917,26.87022975,61.17555237,181.9701537,182.8681005,15.184194,0.13721798,1620000000000 ,1620000000000 ,1620000000000 ,1616812532500 -1616812532525 ,112.5674916,26.87022838,61.176754,181.9698532,182.8688025,15.179224,0.137169497,1620000000000 ,1620000000000 ,1620000000000 ,1616812532510 -1616812532535 ,112.5674915,26.87022565,61.1791954,181.9750715,182.8853656,15.175603,0.27426202,1620000000000 ,1620000000000 ,1620000000000 ,1616812532520 -1616812532544 ,112.5674914,26.87022428,61.18022537,181.9808635,182.8999413,15.177796,0.137130673,1620000000000 ,1620000000000 ,1620000000000 ,1616812532530 -1616812532553 ,112.5674913,26.87022291,61.18110275,181.981847,182.9073478,15.17852,0.13712297,1620000000000 ,1620000000000 ,1620000000000 ,1616812532540 -1616812532564 ,112.5674913,26.87022154,61.18202591,181.9739786,182.9005215,15.172384,0.137107561,1620000000000 ,1620000000000 ,1620000000000 ,1616812532550 -1616812532574 ,112.5674912,26.87022017,61.18315125,181.9680227,182.9113556,15.164639,0.137038338,1620000000000 ,1620000000000 ,1620000000000 ,1616812532560 -1616812532586 ,112.5674911,26.8702188,61.18444824,181.9667933,182.9407098,15.15759,0.136975502,1620000000000 ,1620000000000 ,1620000000000 ,1616812532570 -1616812532595 ,112.567491,26.87021743,61.18591309,181.9660283,182.9538811,15.148007,0.136891541,1620000000000 ,1620000000000 ,1620000000000 ,1616812532580 -1616812532604 ,112.567491,26.87021607,61.18764877,181.9657004,182.9487112,15.13894,0.136821604,1620000000000 ,1620000000000 ,1620000000000 ,1616812532590 -1616812532613 ,112.5674909,26.8702147,61.18954468,181.9664927,182.9296685,15.140247,0.136816687,1620000000000 ,1620000000000 ,1620000000000 ,1616812532600 -1616812532623 ,112.5674908,26.87021333,61.19141006,181.9682413,182.9233046,15.145338,0.136850587,1620000000000 ,1620000000000 ,1620000000000 ,1616812532610 -1616812532634 ,112.5674908,26.87021197,61.1931839,181.9661922,182.9362459,15.14793,0.13688397,1620000000000 ,1620000000000 ,1620000000000 ,1616812532620 -1616812532645 ,112.5674907,26.8702106,61.19503403,181.9614657,182.9586379,15.141649,0.136853882,1620000000000 ,1620000000000 ,1620000000000 ,1616812532630 -1616812532655 ,112.5674906,26.87020923,61.19711304,181.9580506,182.955226,15.13587,0.13680843,1620000000000 ,1620000000000 ,1620000000000 ,1616812532640 -1616812532664 ,112.5674906,26.87020787,61.19931793,181.9543623,182.9327469,15.127295,0.136736475,1620000000000 ,1620000000000 ,1620000000000 ,1616812532650 -1616812532675 ,112.5674905,26.8702065,61.20155716,181.954335,182.9344132,15.12373,0.136701811,1620000000000 ,1620000000000 ,1620000000000 ,1616812532660 -1616812532684 ,112.5674904,26.87020514,61.20376205,181.9533241,182.9129981,15.119948,0.1366716,1620000000000 ,1620000000000 ,1620000000000 ,1616812532670 -1616812532694 ,112.5674903,26.87020377,61.20594025,181.9511385,182.8934741,15.120918,0.136668676,1620000000000 ,1620000000000 ,1620000000000 ,1616812532680 -1616812532704 ,112.5674903,26.87020241,61.20811462,181.9494446,182.8943969,15.11915,0.136665186,1620000000000 ,1620000000000 ,1620000000000 ,1616812532690 -1616812532716 ,112.5674902,26.87020104,61.21017838,181.9498544,182.8854732,15.117378,0.136650594,1620000000000 ,1620000000000 ,1620000000000 ,1616812532700 -1616812532724 ,112.5674901,26.87019968,61.21208572,181.949909,182.8757848,15.11694,0.13664197,1620000000000 ,1620000000000 ,1620000000000 ,1616812532710 -1616812532735 ,112.5674901,26.87019831,61.21382904,181.9492807,182.8667127,15.115596,0.136627609,1620000000000 ,1620000000000 ,1620000000000 ,1616812532720 -1616812532746 ,112.56749,26.87019695,61.21545792,181.9502915,182.8559609,15.113984,0.136615063,1620000000000 ,1620000000000 ,1620000000000 ,1616812532730 -1616812532754 ,112.5674899,26.87019559,61.2170105,181.9512478,182.8278384,15.110915,0.136588842,1620000000000 ,1620000000000 ,1620000000000 ,1616812532740 -1616812532767 ,112.5674899,26.87019422,61.21846008,181.9508106,182.8071325,15.109438,0.136569453,1620000000000 ,1620000000000 ,1620000000000 ,1616812532750 -1616812532775 ,112.5674898,26.87019286,61.21983337,181.9520947,182.8109874,15.108427,0.136560063,1620000000000 ,1620000000000 ,1620000000000 ,1616812532760 -1616812532785 ,112.5674897,26.87019149,61.22113419,181.9524226,182.8081302,15.1077175,0.136554128,1620000000000 ,1620000000000 ,1620000000000 ,1616812532770 -1616812532798 ,112.5674897,26.87019013,61.22236633,181.9551273,182.7982398,15.105364,0.13653877,1620000000000 ,1620000000000 ,1620000000000 ,1616812532780 -1616812532807 ,112.5674896,26.87018877,61.22348022,181.9604549,182.7860285,15.103177,0.136516965,1620000000000 ,1620000000000 ,1620000000000 ,1616812532790 -1616812532818 ,112.5674895,26.8701874,61.2244072,181.9649901,182.7772018,15.100368,0.136487103,1620000000000 ,1620000000000 ,1620000000000 ,1616812532800 -1616812532827 ,112.5674895,26.87018604,61.2251358,181.9673124,182.7738897,15.0987625,0.136466006,1620000000000 ,1620000000000 ,1620000000000 ,1616812532810 -1616812532837 ,112.5674894,26.87018468,61.22569656,181.9670392,182.7717456,15.099595,0.136462254,1620000000000 ,1620000000000 ,1620000000000 ,1616812532820 -1616812532846 ,112.5674893,26.87018331,61.22611618,181.9688696,182.7820954,15.101028,0.136471104,1620000000000 ,1620000000000 ,1620000000000 ,1616812532830 -1616812532855 ,112.5674893,26.87018195,61.22644424,181.9720389,182.7823762,15.100389,0.136467765,1620000000000 ,1620000000000 ,1620000000000 ,1616812532840 -1616812532866 ,112.5674892,26.87018059,61.22668076,181.9732683,182.7779565,15.097896,0.136443657,1620000000000 ,1620000000000 ,1620000000000 ,1616812532850 -1616812532875 ,112.5674891,26.87017923,61.22682953,181.9762463,182.7622232,15.094729,0.136420725,1620000000000 ,1620000000000 ,1620000000000 ,1616812532860 -1616812532886 ,112.5674891,26.87017786,61.22682953,181.9792515,182.7586624,15.094031,0.136393804,1620000000000 ,1620000000000 ,1620000000000 ,1616812532870 -1616812532898 ,112.567489,26.8701765,61.22671509,181.9800438,182.7716682,15.093939,0.136392326,1620000000000 ,1620000000000 ,1620000000000 ,1616812532880 -1616812532922 ,112.5674889,26.87017514,61.22653961,181.9821475,182.765637,15.093277,0.136382406,1620000000000 ,1620000000000 ,1620000000000 ,1616812532890 -1616812532936 ,112.5674889,26.87017378,61.22637177,181.9824754,182.7664926,15.089877,0.136362933,1620000000000 ,1620000000000 ,1620000000000 ,1616812532900 -1616812532938 ,112.5674888,26.87017241,61.22622299,181.9832404,182.765841,15.086198,0.136331007,1620000000000 ,1620000000000 ,1620000000000 ,1616812532910 -1616812532939 ,112.5674887,26.87017105,61.22603226,181.986956,182.7677163,15.083332,0.136297568,1620000000000 ,1620000000000 ,1620000000000 ,1616812532920 -1616812532948 ,112.5674887,26.87016969,61.22571945,181.9902618,182.7700906,15.084118,0.136287842,1620000000000 ,1620000000000 ,1620000000000 ,1616812532930 -1616812532956 ,112.5674886,26.87016833,61.22523499,181.9939501,182.7750091,15.086309,0.136298725,1620000000000 ,1620000000000 ,1620000000000 ,1616812532940 -1616812532967 ,112.5674885,26.87016697,61.22462845,181.9958079,182.784337,15.086246,0.136299391,1620000000000 ,1620000000000 ,1620000000000 ,1616812532950 -1616812532976 ,112.5674885,26.87016561,61.22399139,181.9965456,182.7852705,15.084607,0.136283834,1620000000000 ,1620000000000 ,1620000000000 ,1616812532960 -1616812532986 ,112.5674884,26.87016425,61.22338104,181.9974198,182.798372,15.082928,0.136264184,1620000000000 ,1620000000000 ,1620000000000 ,1616812532970 -1616812532999 ,112.5674883,26.87016289,61.22278214,181.9998787,182.8092622,15.080749,0.136247325,1620000000000 ,1620000000000 ,1620000000000 ,1616812532980 -1616812533008 ,112.5674883,26.87016153,61.22219086,182.0011081,182.8132753,15.078219,0.136224649,1620000000000 ,1620000000000 ,1620000000000 ,1616812532990 -1616812533017 ,112.5674882,26.87016017,61.22163773,182.0010535,182.814354,15.075135,0.13619618,1620000000000 ,1620000000000 ,1620000000000 ,1616812533000 -1616812533028 ,112.5674881,26.87015881,61.22110748,182.0017638,182.8167604,15.076116,0.136192263,1620000000000 ,1620000000000 ,1620000000000 ,1616812533010 -1616812533037 ,112.5674881,26.87015744,61.2206192,182.002119,182.829697,15.07515,0.136188543,1620000000000 ,1620000000000 ,1620000000000 ,1616812533020 -1616812533047 ,112.567488,26.87015608,61.22021484,182.0006437,182.8446396,15.074897,0.136186946,1620000000000 ,1620000000000 ,1620000000000 ,1616812533030 -1616812533060 ,112.5674879,26.87015472,61.21992111,182.0004251,182.8532381,15.070403,0.136161591,1620000000000 ,1620000000000 ,1620000000000 ,1616812533040 -1616812533068 ,112.5674879,26.87015337,61.21974564,182.0021463,182.8674367,15.06507,0.136113025,1620000000000 ,1620000000000 ,1620000000000 ,1616812533050 -1616812533081 ,112.5674878,26.87015201,61.21971893,182.0023103,182.8829377,15.058072,0.136056423,1620000000000 ,1620000000000 ,1620000000000 ,1616812533060 -1616812533088 ,112.5674877,26.87015065,61.21982574,182.0002885,182.8883248,15.054063,0.136016393,1620000000000 ,1620000000000 ,1620000000000 ,1616812533070 -1616812533098 ,112.5674877,26.87014929,61.22003555,181.9985673,182.8990586,15.054929,0.136013696,1620000000000 ,1620000000000 ,1620000000000 ,1616812533080 -1616812533107 ,112.5674876,26.87014793,61.22034836,181.9954254,182.9205827,15.057443,0.136037178,1620000000000 ,1620000000000 ,1620000000000 ,1616812533090 -1616812533117 ,112.5674875,26.87014657,61.2208519,181.991382,182.9367156,15.05575,0.136040478,1620000000000 ,1620000000000 ,1620000000000 ,1616812533100 -1616812533130 ,112.5674875,26.87014521,61.22158051,181.9877483,182.945548,15.051964,0.136018361,1620000000000 ,1620000000000 ,1620000000000 ,1616812533110 -1616812533140 ,112.5674874,26.87014386,61.22246552,181.9823388,182.9537132,15.047744,0.135981703,1620000000000 ,1620000000000 ,1620000000000 ,1616812533120 -1616812533152 ,112.5674873,26.8701425,61.22343445,181.9792515,182.9562313,15.043221,0.135944756,1620000000000 ,1620000000000 ,1620000000000 ,1616812533130 -1616812533160 ,112.5674873,26.87014114,61.22445297,181.9751807,182.9560127,15.039811,0.135913052,1620000000000 ,1620000000000 ,1620000000000 ,1616812533140 -1616812533169 ,112.5674872,26.87013978,61.22554016,181.9740879,182.9513818,15.037918,0.135893894,1620000000000 ,1620000000000 ,1620000000000 ,1616812533150 -1616812533179 ,112.5674871,26.87013843,61.22674179,181.9717656,182.9488354,15.0365505,0.135882438,1620000000000 ,1620000000000 ,1620000000000 ,1616812533160 -1616812533189 ,112.567487,26.87013707,61.22809601,181.9696073,182.9456613,15.033535,0.135865435,1620000000000 ,1620000000000 ,1620000000000 ,1616812533170 -1616812533199 ,112.567487,26.87013571,61.22956467,181.9667386,182.9452245,15.033842,0.135857799,1620000000000 ,1620000000000 ,1620000000000 ,1616812533180 -1616812533210 ,112.5674869,26.87013436,61.2310257,181.9681866,182.9511429,15.033839,0.135865469,1620000000000 ,1620000000000 ,1620000000000 ,1616812533190 -1616812533219 ,112.5674868,26.870133,61.23220825,181.954253,182.5202788,15.034035,0.135780149,1620000000000 ,1620000000000 ,1620000000000 ,1616812533200 -1616812533229 ,112.5674868,26.87013164,61.23300552,181.9488709,181.9165252,15.030926,0.135669498,1620000000000 ,1620000000000 ,1620000000000 ,1616812533210 -1616812533240 ,112.5674868,26.87013029,61.23385239,181.9402102,181.9071961,15.02492,0.135615223,1620000000000 ,1620000000000 ,1620000000000 ,1616812533220 -1616812533252 ,112.5674867,26.87012893,61.23493958,181.9322325,181.9063837,15.022767,0.135601015,1620000000000 ,1620000000000 ,1620000000000 ,1616812533230 -1616812533261 ,112.5674867,26.87012758,61.23622513,181.9297463,181.9185606,15.018594,0.135573799,1620000000000 ,1620000000000 ,1620000000000 ,1616812533240 -1616812533270 ,112.5674866,26.87012622,61.23764801,181.9312216,181.9155479,15.012315,0.13552863,1620000000000 ,1620000000000 ,1620000000000 ,1616812533250 -1616812533279 ,112.5674866,26.87012487,61.23915482,181.9340084,181.9006705,15.00789,0.135487449,1620000000000 ,1620000000000 ,1620000000000 ,1616812533260 -1616812533289 ,112.5674865,26.87012352,61.24065399,181.934063,181.878975,15.007381,0.135471237,1620000000000 ,1620000000000 ,1620000000000 ,1616812533270 -1616812533299 ,112.5674865,26.87012216,61.24197388,181.9309484,181.8682103,15.012058,0.13549983,1620000000000 ,1620000000000 ,1620000000000 ,1616812533280 -1616812533309 ,112.5674864,26.87012081,61.24308395,181.9255389,181.8922612,15.017309,0.135546347,1620000000000 ,1620000000000 ,1620000000000 ,1616812533290 -1616812533321 ,112.5674864,26.87011945,61.24409103,181.9205119,181.9166396,15.01667,0.135548845,1620000000000 ,1620000000000 ,1620000000000 ,1616812533300 -1616812533332 ,112.5674863,26.8701181,61.24517441,181.9147199,181.913132,15.007843,0.135497553,1620000000000 ,1620000000000 ,1620000000000 ,1616812533310 -1616812533343 ,112.5674863,26.87011674,61.24647141,181.9109223,181.8840131,14.997288,0.135413231,1620000000000 ,1620000000000 ,1620000000000 ,1616812533320 -1616812533350 ,112.5674863,26.87011539,61.24788666,181.9077258,181.8591679,14.991972,0.135359268,1620000000000 ,1620000000000 ,1620000000000 ,1616812533330 -1616812533360 ,112.5674862,26.87011404,61.24921799,181.9073979,181.8547842,14.996159,0.135367204,1620000000000 ,1620000000000 ,1620000000000 ,1616812533340 -1616812533370 ,112.5674862,26.87011269,61.25027847,181.9075345,181.8710028,15.001889,0.135415838,1620000000000 ,1620000000000 ,1620000000000 ,1616812533350 -1616812533380 ,112.5674861,26.87011133,61.25106049,181.9028354,181.8730948,15.00303,0.135432727,1620000000000 ,1620000000000 ,1620000000000 ,1616812533360 -1616812533392 ,112.5674861,26.87010998,61.25173187,181.8989558,181.8552807,14.998671,0.135405873,1620000000000 ,1620000000000 ,1620000000000 ,1616812533370 -1616812533400 ,112.567486,26.87010863,61.25240326,181.8950763,181.8280933,14.99443,0.135365498,1620000000000 ,1620000000000 ,1620000000000 ,1616812533380 -1616812533410 ,112.567486,26.87010727,61.25303268,181.8927813,181.811249,14.991465,0.135331716,1620000000000 ,1620000000000 ,1620000000000 ,1616812533390 -1616812533421 ,112.567486,26.87010592,61.25352478,181.8926447,181.8024666,14.990245,0.135315315,1620000000000 ,1620000000000 ,1620000000000 ,1616812533400 -1616812533433 ,112.5674859,26.87010457,61.25384521,181.8889564,181.8004203,14.988313,0.135294875,1620000000000 ,1620000000000 ,1620000000000 ,1616812533410 -1616812533447 ,112.5674859,26.87010322,61.25403595,181.8835196,181.7931704,14.987857,0.135282152,1620000000000 ,1620000000000 ,1620000000000 ,1616812533420 -1616812533451 ,112.5674858,26.87010186,61.25411606,181.8778096,181.7756725,14.988652,0.135281626,1620000000000 ,1620000000000 ,1620000000000 ,1616812533430 -1616812533461 ,112.5674858,26.87010051,61.25405121,181.8734929,181.7704808,14.990814,0.135293622,1620000000000 ,1620000000000 ,1620000000000 ,1616812533440 -1616812533472 ,112.5674857,26.87009916,61.25403214,181.8710613,182.2091789,14.99154,0.135372034,1620000000000 ,1620000000000 ,1620000000000 ,1616812533450 -1616812533482 ,112.5674857,26.87009781,61.25413513,181.8678102,182.6350334,14.9886,0.135438254,1620000000000 ,1620000000000 ,1620000000000 ,1616812533460 -1616812533493 ,112.5674856,26.87009645,61.25426483,181.8646956,182.6168768,14.983033,0.135390883,1620000000000 ,1620000000000 ,1620000000000 ,1616812533470 -1616812533502 ,112.5674855,26.8700951,61.25434875,181.8625646,182.6126721,14.980964,0.135359469,1620000000000 ,1620000000000 ,1620000000000 ,1616812533480 -1616812533513 ,112.5674855,26.87009375,61.25431061,181.8603243,182.6199336,14.982093,0.135353119,1620000000000 ,1620000000000 ,1620000000000 ,1616812533500 -1616812533524 ,112.5674854,26.8700924,61.25413132,181.8567726,182.6256481,14.984457,0.135368552,1620000000000 ,1620000000000 ,1620000000000 ,1616812533500 -1616812533532 ,112.5674854,26.87009104,61.2538681,181.8508167,182.6190124,14.984019,0.1353677,1620000000000 ,1620000000000 ,1620000000000 ,1616812533510 -1616812533543 ,112.5674853,26.87008969,61.25355911,181.8419101,182.6063086,14.985201,0.135370376,1620000000000 ,1620000000000 ,1620000000000 ,1616812533530 -1616812533558 ,112.5674852,26.87008834,61.25317383,181.8331401,182.613014,14.982656,0.135348817,1620000000000 ,1620000000000 ,1620000000000 ,1616812533540 -1616812533564 ,112.5674852,26.87008699,61.25270462,181.8254084,182.6207724,14.983558,0.135346163,1620000000000 ,1620000000000 ,1620000000000 ,1616812533550 -1616812533573 ,112.5674851,26.87008428,61.25186157,181.805956,182.6110281,14.982081,0.270695246,1620000000000 ,1620000000000 ,1620000000000 ,1616812533560 -1616812533587 ,112.5674851,26.87008428,61.25186157,181.805956,-400,14.982081,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812533570 -1616812533594 ,112.5674849,26.87008158,61.25153351,181.7874871,182.5971478,14.967943,0.270527639,1620000000000 ,1620000000000 ,1620000000000 ,1616812533580 -1616812533603 ,112.5674849,26.87008158,61.25153351,181.7874871,-400,14.967943,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812533580 -1616812533612 ,112.5674849,26.87008023,61.25156784,181.7787991,182.5967776,14.964559,0.135188412,1620000000000 ,1620000000000 ,1620000000000 ,1616812533600 -1616812533622 ,112.5674847,26.87007753,61.25186157,181.7613412,182.5927937,14.971939,0.270443633,1620000000000 ,1620000000000 ,1620000000000 ,1616812533610 -1616812533634 ,112.5674847,26.87007618,61.25205231,181.7508773,182.5795027,14.973167,0.135261222,1620000000000 ,1620000000000 ,1620000000000 ,1616812533620 -1616812533643 ,112.5674846,26.87007483,61.25234985,181.739348,182.579238,14.968422,0.135236725,1620000000000 ,1620000000000 ,1620000000000 ,1616812533630 -1616812533655 ,112.5674846,26.87007348,61.25283813,181.7274634,182.5830184,14.961766,0.135187294,1620000000000 ,1620000000000 ,1620000000000 ,1616812533640 -1616812533665 ,112.5674845,26.87007213,61.25353241,181.7162619,182.5759645,14.955771,0.135134901,1620000000000 ,1620000000000 ,1620000000000 ,1616812533650 -1616812533675 ,112.5674844,26.87007078,61.25437546,181.7046233,182.5661079,14.951488,0.135096316,1620000000000 ,1620000000000 ,1620000000000 ,1616812533660 -1616812533687 ,112.5674844,26.87006943,61.25531769,181.691564,182.560531,14.950423,0.1350862,1620000000000 ,1620000000000 ,1620000000000 ,1616812533670 -1616812533694 ,112.5674843,26.87006808,61.25632095,181.6769747,182.5503653,14.952249,0.135099194,1620000000000 ,1620000000000 ,1620000000000 ,1616812533680 -1616812533703 ,112.5674843,26.87006673,61.25737762,181.6677129,182.5390252,14.952828,0.135109508,1620000000000 ,1620000000000 ,1620000000000 ,1616812533690 -1616812533714 ,112.5674842,26.87006538,61.25845337,181.6535062,182.5375565,14.953062,0.135113832,1620000000000 ,1620000000000 ,1620000000000 ,1616812533700 -1616812533723 ,112.5674841,26.87006403,61.25953293,181.6418675,182.5267927,14.951182,0.135105295,1620000000000 ,1620000000000 ,1620000000000 ,1616812533710 -1616812533736 ,112.5674841,26.87006268,61.2606163,181.6303655,182.5036721,14.945541,0.135061654,1620000000000 ,1620000000000 ,1620000000000 ,1616812533720 -1616812533746 ,112.567484,26.87006133,61.26172638,181.620612,182.5027873,14.941966,0.135024009,1620000000000 ,1620000000000 ,1620000000000 ,1616812533730 -1616812533755 ,112.567484,26.87005998,61.26283646,181.6097929,182.4971421,14.940555,0.135005768,1620000000000 ,1620000000000 ,1620000000000 ,1616812533740 -1616812533764 ,112.5674839,26.87005863,61.26393509,181.5976625,182.4859299,14.941141,0.135009903,1620000000000 ,1620000000000 ,1620000000000 ,1616812533750 -1616812533777 ,112.5674839,26.87005728,61.2650528,181.5861058,182.4703169,14.941047,0.135010514,1620000000000 ,1620000000000 ,1620000000000 ,1616812533760 -1616812533784 ,112.5674838,26.87005593,61.26621246,181.5727187,182.4490782,14.940103,0.135008835,1620000000000 ,1620000000000 ,1620000000000 ,1616812533770 -1616812533794 ,112.5674837,26.87005459,61.26737976,181.559632,182.4342075,14.936205,0.134981506,1620000000000 ,1620000000000 ,1620000000000 ,1616812533780 -1616812533805 ,112.5674837,26.87005324,61.26850891,181.5469279,182.4310287,14.934474,0.134959866,1620000000000 ,1620000000000 ,1620000000000 ,1616812533790 -1616812533815 ,112.5674836,26.87005189,61.26958466,181.5362728,182.4227657,14.932211,0.134937944,1620000000000 ,1620000000000 ,1620000000000 ,1616812533800 -1616812533826 ,112.5674836,26.87005054,61.27058411,181.5294972,182.4124285,14.932408,0.134932279,1620000000000 ,1620000000000 ,1620000000000 ,1616812533810 -1616812533835 ,112.5674835,26.87004919,61.27155685,181.5202082,182.3923173,14.93224,0.134936665,1620000000000 ,1620000000000 ,1620000000000 ,1616812533820 -1616812533846 ,112.5674835,26.87004785,61.27254105,181.509717,182.3720835,14.929917,0.134916627,1620000000000 ,1620000000000 ,1620000000000 ,1616812533830 -1616812533856 ,112.5674834,26.8700465,61.27360153,181.5006192,182.3620124,14.925317,0.134885235,1620000000000 ,1620000000000 ,1620000000000 ,1616812533840 -1616812533868 ,112.5674833,26.87004515,61.27467728,181.4908657,182.3506291,14.925465,0.134865307,1620000000000 ,1620000000000 ,1620000000000 ,1616812533850 -1616812533878 ,112.5674833,26.8700438,61.27565765,181.4813581,182.3507105,14.922524,0.134855303,1620000000000 ,1620000000000 ,1620000000000 ,1616812533860 -1616812533888 ,112.5674832,26.87004246,61.27645111,181.4717138,182.3353395,14.923665,0.134848292,1620000000000 ,1620000000000 ,1620000000000 ,1616812533870 -1616812533897 ,112.5674832,26.87004111,61.27710342,181.4622609,182.330715,14.923979,0.134842123,1620000000000 ,1620000000000 ,1620000000000 ,1616812533880 -1616812533913 ,112.5674831,26.87003976,61.27774048,181.4493655,182.3176821,14.92331,0.134839871,1620000000000 ,1620000000000 ,1620000000000 ,1616812533890 -1616812533917 ,112.5674831,26.87003841,61.27842331,181.4419889,182.3031564,14.923152,0.134844746,1620000000000 ,1620000000000 ,1620000000000 ,1616812533900 -1616812533925 ,112.567483,26.87003707,61.2792244,181.4333282,182.2949849,14.916489,0.134805284,1620000000000 ,1620000000000 ,1620000000000 ,1616812533910 -1616812533937 ,112.567483,26.87003572,61.28009796,181.4260882,182.2783092,14.911356,0.134744583,1620000000000 ,1620000000000 ,1620000000000 ,1616812533920 -1616812533948 ,112.5674829,26.87003437,61.28091812,181.4194219,182.2573253,14.911221,0.13473245,1620000000000 ,1620000000000 ,1620000000000 ,1616812533930 -1616812533956 ,112.5674829,26.87003303,61.28154373,181.4119087,182.2489999,14.915499,0.134749964,1620000000000 ,1620000000000 ,1620000000000 ,1616812533940 -1616812533966 ,112.5674828,26.87003168,61.2820015,181.4052698,182.2513357,14.91769,0.134775375,1620000000000 ,1620000000000 ,1620000000000 ,1616812533950 -1616812533977 ,112.5674827,26.87003033,61.28242493,181.3967184,182.2303102,14.917167,0.134775712,1620000000000 ,1620000000000 ,1620000000000 ,1616812533960 -1616812533987 ,112.5674827,26.87002899,61.28297806,181.3907078,182.2044678,14.913225,0.134746086,1620000000000 ,1620000000000 ,1620000000000 ,1616812533970 -1616812533998 ,112.5674826,26.87002764,61.28364563,181.3853529,182.1905596,14.908991,0.134710091,1620000000000 ,1620000000000 ,1620000000000 ,1616812533980 -1616812534007 ,112.5674826,26.8700263,61.28432846,181.3792604,182.1820993,14.906193,0.134683183,1620000000000 ,1620000000000 ,1620000000000 ,1616812533990 -1616812534019 ,112.5674825,26.87002495,61.28492737,181.3757907,182.1735881,14.904108,0.134660421,1620000000000 ,1620000000000 ,1620000000000 ,1616812534000 -1616812534027 ,112.5674825,26.8700236,61.2854538,181.3719658,182.1833952,14.906747,0.134665611,1620000000000 ,1620000000000 ,1620000000000 ,1616812534010 -1616812534037 ,112.5674824,26.87002226,61.28604126,181.3677857,182.1743686,14.903927,0.134665967,1620000000000 ,1620000000000 ,1620000000000 ,1616812534020 -1616812534047 ,112.5674824,26.87002091,61.28669739,181.3634144,182.1473222,14.9005995,0.13463774,1620000000000 ,1620000000000 ,1620000000000 ,1616812534030 -1616812534057 ,112.5674823,26.87001957,61.28742981,181.3601632,182.1384442,14.89788,0.134607471,1620000000000 ,1620000000000 ,1620000000000 ,1616812534040 -1616812534067 ,112.5674823,26.87001822,61.2881813,181.3555733,182.1353585,14.894069,0.134582103,1620000000000 ,1620000000000 ,1620000000000 ,1616812534050 -1616812534078 ,112.5674822,26.87001688,61.28894424,181.3517484,182.1300515,14.890415,0.134546458,1620000000000 ,1620000000000 ,1620000000000 ,1616812534060 -1616812534088 ,112.5674822,26.87001553,61.28970337,181.3476503,182.1351993,14.890029,0.134537245,1620000000000 ,1620000000000 ,1620000000000 ,1616812534070 -1616812534099 ,112.5674821,26.87001419,61.29042816,181.3426506,182.1353285,14.8905115,0.134539099,1620000000000 ,1620000000000 ,1620000000000 ,1616812534080 -1616812534109 ,112.5674821,26.87001284,61.29114914,181.3385251,182.1385864,14.891684,0.134542011,1620000000000 ,1620000000000 ,1620000000000 ,1616812534090 -1616812534118 ,112.567482,26.8700115,61.29192734,181.3350281,182.1373167,14.89034,0.134545275,1620000000000 ,1620000000000 ,1620000000000 ,1616812534100 -1616812534135 ,112.567482,26.87001016,61.29276276,181.3330883,182.1279475,14.887676,0.134526879,1620000000000 ,1620000000000 ,1620000000000 ,1616812534110 -1616812534139 ,112.5674819,26.87000881,61.29366684,181.3300284,182.1188785,14.882712,0.134486584,1620000000000 ,1620000000000 ,1620000000000 ,1616812534120 -1616812534149 ,112.5674819,26.87000747,61.29457092,181.3263401,182.114413,14.876746,0.13443311,1620000000000 ,1620000000000 ,1620000000000 ,1616812534130 -1616812534160 ,112.5674818,26.87000613,61.29541397,181.3252473,182.1247411,14.875167,0.134405333,1620000000000 ,1620000000000 ,1620000000000 ,1616812534140 -1616812534168 ,112.5674818,26.87000478,61.29610062,181.3227338,182.135045,14.87809,0.134419065,1620000000000 ,1620000000000 ,1620000000000 ,1616812534150 -1616812534181 ,112.5674817,26.87000344,61.29662704,181.3226791,182.1451234,14.882202,0.13444812,1620000000000 ,1620000000000 ,1620000000000 ,1616812534160 -1616812534190 ,112.5674817,26.87000209,61.29710007,181.3208486,182.1303225,14.881946,0.134454957,1620000000000 ,1620000000000 ,1620000000000 ,1616812534170 -1616812534203 ,112.5674816,26.87000075,61.29756165,181.3163134,182.1062107,14.876653,0.134416803,1620000000000 ,1620000000000 ,1620000000000 ,1616812534180 -1616812534211 ,112.5674816,26.86999941,61.29797363,181.3127344,182.0919852,14.876874,0.134397522,1620000000000 ,1620000000000 ,1620000000000 ,1616812534190 -1616812534219 ,112.5674816,26.86999807,61.29803085,181.2958228,181.667524,14.871943,0.134295148,1620000000000 ,1620000000000 ,1620000000000 ,1616812534200 -1616812534229 ,112.5674815,26.86999672,61.29768372,181.2901947,181.085115,14.871872,0.134279705,1620000000000 ,1620000000000 ,1620000000000 ,1616812534210 -1616812534240 ,112.5674815,26.86999538,61.2973938,181.2874627,181.0543113,14.877974,0.1343143,1620000000000 ,1620000000000 ,1620000000000 ,1616812534220 -1616812534250 ,112.5674815,26.86999404,61.29719162,181.2856322,181.0390761,14.878672,0.134331529,1620000000000 ,1620000000000 ,1620000000000 ,1616812534230 -1616812534262 ,112.5674815,26.8699927,61.29711151,181.2856595,181.0284709,14.868369,0.13427602,1620000000000 ,1620000000000 ,1620000000000 ,1616812534240 -1616812534269 ,112.5674814,26.86999135,61.29725266,181.2872714,181.0253401,14.856297,0.134170574,1620000000000 ,1620000000000 ,1620000000000 ,1616812534250 -1616812534279 ,112.5674814,26.86999001,61.29756927,181.2907138,181.0198899,14.855186,0.134139174,1620000000000 ,1620000000000 ,1620000000000 ,1616812534260 -1616812534290 ,112.5674814,26.86998867,61.29783249,181.2938557,181.0208191,14.861377,0.134174938,1620000000000 ,1620000000000 ,1620000000000 ,1616812534270 -1616812534299 ,112.5674814,26.86998733,61.29792786,181.2944841,181.0370263,14.866761,0.134225627,1620000000000 ,1620000000000 ,1620000000000 ,1616812534280 -1616812534310 ,112.5674813,26.86998599,61.29795456,181.2919979,181.0515691,14.863908,0.134217658,1620000000000 ,1620000000000 ,1620000000000 ,1616812534290 -1616812534319 ,112.5674813,26.86998465,61.29810333,181.2916427,181.0507765,14.857933,0.134170566,1620000000000 ,1620000000000 ,1620000000000 ,1616812534300 -1616812534329 ,112.5674813,26.8699833,61.29845047,181.2913422,181.0498425,14.852056,0.134120748,1620000000000 ,1620000000000 ,1620000000000 ,1616812534310 -1616812534340 ,112.5674813,26.86998196,61.29899597,181.2889653,181.0473718,14.847533,0.134085073,1620000000000 ,1620000000000 ,1620000000000 ,1616812534320 -1616812534353 ,112.5674812,26.86998062,61.2996521,181.2869436,181.0464597,14.842962,0.134049116,1620000000000 ,1620000000000 ,1620000000000 ,1616812534330 -1616812534360 ,112.5674812,26.86997928,61.30028152,181.2856322,181.0517784,14.84449,0.13404548,1620000000000 ,1620000000000 ,1620000000000 ,1616812534340 -1616812534376 ,112.5674812,26.86997794,61.30081177,181.2853863,181.0603575,14.846571,0.134064414,1620000000000 ,1620000000000 ,1620000000000 ,1616812534350 -1616812534384 ,112.5674812,26.8699766,61.30129242,181.2869982,181.05879,14.846924,0.13407276,1620000000000 ,1620000000000 ,1620000000000 ,1616812534360 -1616812534390 ,112.5674811,26.86997526,61.3018837,181.288091,181.045288,14.845748,0.134074722,1620000000000 ,1620000000000 ,1620000000000 ,1616812534370 -1616812534400 ,112.5674811,26.86997392,61.30266571,181.2895117,181.0380857,14.83956,0.134036577,1620000000000 ,1620000000000 ,1620000000000 ,1616812534380 -1616812534410 ,112.5674811,26.86997258,61.30356979,181.2924897,181.0466121,14.832877,0.133981988,1620000000000 ,1620000000000 ,1620000000000 ,1616812534390 -1616812534420 ,112.5674811,26.86997124,61.30450439,181.2960687,181.0530397,14.826487,0.13391912,1620000000000 ,1620000000000 ,1620000000000 ,1616812534400 -1616812534431 ,112.567481,26.8699699,61.3053894,181.2971342,181.0663467,14.825979,0.133902851,1620000000000 ,1620000000000 ,1620000000000 ,1616812534410 -1616812534440 ,112.567481,26.86996857,61.30620575,181.2996477,181.0660255,14.829289,0.133927534,1620000000000 ,1620000000000 ,1620000000000 ,1616812534420 -1616812534451 ,112.567481,26.86996723,61.3069725,181.299074,181.0698335,14.828935,0.133933816,1620000000000 ,1620000000000 ,1620000000000 ,1616812534430 -1616812534460 ,112.567481,26.86996589,61.30774307,181.2985549,181.0851693,14.825327,0.133909521,1620000000000 ,1620000000000 ,1620000000000 ,1616812534440 -1616812534470 ,112.5674809,26.86996455,61.30871964,181.2976806,181.5400656,14.82031,0.133898704,1620000000000 ,1620000000000 ,1620000000000 ,1616812534450 -1616812534482 ,112.5674809,26.86996321,61.30989075,181.2983363,181.9958454,14.815864,0.133896191,1620000000000 ,1620000000000 ,1620000000000 ,1616812534460 -1616812534492 ,112.5674808,26.86996187,61.31101608,181.2993745,181.9980023,14.8133,0.133862938,1620000000000 ,1620000000000 ,1620000000000 ,1616812534470 -1616812534501 ,112.5674808,26.86996054,61.3120079,181.3025437,181.9857536,14.810292,0.133837078,1620000000000 ,1620000000000 ,1620000000000 ,1616812534480 -1616812534513 ,112.5674807,26.8699592,61.31284332,181.3038551,181.9919851,14.810978,0.133829116,1620000000000 ,1620000000000 ,1620000000000 ,1616812534490 -1616812534523 ,112.5674807,26.86995786,61.31353378,181.3086909,181.9929221,14.811296,0.13382768,1620000000000 ,1620000000000 ,1620000000000 ,1616812534500 -1616812534533 ,112.5674806,26.86995652,61.31408691,181.3096198,182.008399,14.810954,0.133826511,1620000000000 ,1620000000000 ,1620000000000 ,1616812534510 -1616812534543 ,112.5674806,26.86995519,61.31454086,181.3135813,182.0220804,14.810575,0.133809476,1620000000000 ,1620000000000 ,1620000000000 ,1616812534520 -1616812534554 ,112.5674806,26.86995385,61.31482697,181.3175974,182.0098161,14.810728,0.133816234,1620000000000 ,1620000000000 ,1620000000000 ,1616812534530 -1616812534562 ,112.5674805,26.86995251,61.3149147,181.3161494,182.0021397,14.810616,0.13379322,1620000000000 ,1620000000000 ,1620000000000 ,1616812534540 -1616812534572 ,112.5674805,26.86995117,61.31490326,181.3137999,182.0116953,14.806334,0.133765969,1620000000000 ,1620000000000 ,1620000000000 ,1616812534550 -1616812534583 ,112.5674804,26.86994984,61.31487656,181.3119147,182.0256737,14.803528,0.133731984,1620000000000 ,1620000000000 ,1620000000000 ,1616812534560 -1616812534592 ,112.5674804,26.8699485,61.31483841,181.3124885,182.0295801,14.802841,0.13372644,1620000000000 ,1620000000000 ,1620000000000 ,1616812534570 -1616812534604 ,112.5674803,26.86994717,61.31478119,181.3143736,182.039032,14.801782,0.133711629,1620000000000 ,1620000000000 ,1620000000000 ,1616812534580 -1616812534612 ,112.5674803,26.86994583,61.31483078,181.3184444,182.0457541,14.798082,0.133682724,1620000000000 ,1620000000000 ,1620000000000 ,1616812534590 -1616812534623 ,112.5674802,26.86994449,61.31493759,181.3210945,182.0273779,14.796975,0.133667698,1620000000000 ,1620000000000 ,1620000000000 ,1616812534600 -1616812534632 ,112.5674802,26.86994316,61.31502533,181.3229796,182.0405087,14.7974415,0.133667989,1620000000000 ,1620000000000 ,1620000000000 ,1616812534610 -1616812534643 ,112.5674801,26.86994182,61.31505966,181.3237719,182.0685604,14.796401,0.133659446,1620000000000 ,1620000000000 ,1620000000000 ,1616812534630 -1616812534654 ,112.5674801,26.86994049,61.31510925,181.3240451,182.0902828,14.790997,0.133622001,1620000000000 ,1620000000000 ,1620000000000 ,1616812534640 -1616812534662 ,112.56748,26.86993915,61.31531143,181.3232528,182.0885051,14.78694,0.133583646,1620000000000 ,1620000000000 ,1620000000000 ,1616812534650 -1616812534672 ,112.56748,26.86993782,61.31566238,181.3239905,182.0783379,14.783865,0.133558236,1620000000000 ,1620000000000 ,1620000000000 ,1616812534660 -1616812534685 ,112.5674799,26.86993648,61.3161087,181.3235534,182.0701995,14.779315,0.133521016,1620000000000 ,1620000000000 ,1620000000000 ,1616812534670 -1616812534693 ,112.5674799,26.86993515,61.31661987,181.3203022,182.0829361,14.775412,0.133485025,1620000000000 ,1620000000000 ,1620000000000 ,1616812534680 -1616812534705 ,112.5674798,26.86993381,61.31718063,181.320111,182.0864946,14.773209,0.133461372,1620000000000 ,1620000000000 ,1620000000000 ,1616812534680 -1616812534717 ,112.5674797,26.86993115,61.31845093,181.3230889,182.0826771,14.774571,0.266950986,1620000000000 ,1620000000000 ,1620000000000 ,1616812534700 -1616812534724 ,112.5674797,26.86992981,61.31918716,181.325739,182.0848139,14.771372,0.133452973,1620000000000 ,1620000000000 ,1620000000000 ,1616812534710 -1616812534733 ,112.5674796,26.86992848,61.32001114,181.3269685,182.076188,14.762523,0.133390594,1620000000000 ,1620000000000 ,1620000000000 ,1616812534720 -1616812534743 ,112.5674796,26.86992715,61.32090378,181.3307934,182.0763372,14.758149,0.133345947,1620000000000 ,1620000000000 ,1620000000000 ,1616812534730 -1616812534753 ,112.5674795,26.86992582,61.32188416,181.3327605,182.0747081,14.753302,0.133303247,1620000000000 ,1620000000000 ,1620000000000 ,1616812534740 -1616812534764 ,112.5674795,26.86992448,61.32292938,181.3341538,182.0688215,14.749343,0.133266019,1620000000000 ,1620000000000 ,1620000000000 ,1616812534750 -1616812534774 ,112.5674794,26.86992315,61.32406998,181.3330883,182.0659179,14.745774,0.133238513,1620000000000 ,1620000000000 ,1620000000000 ,1616812534760 -1616812534790 ,112.5674794,26.86992182,61.32524109,181.333143,182.0635192,14.744247,0.133223539,1620000000000 ,1620000000000 ,1620000000000 ,1616812534770 -1616812534796 ,112.5674794,26.86992049,61.32637787,181.3351101,182.076876,14.743416,0.133210594,1620000000000 ,1620000000000 ,1620000000000 ,1616812534780 -1616812534804 ,112.5674793,26.86991916,61.32743454,181.3356565,182.0804483,14.743115,0.133205992,1620000000000 ,1620000000000 ,1620000000000 ,1616812534790 -1616812534814 ,112.5674793,26.86991783,61.32845688,181.3376236,182.070115,14.739206,0.133182549,1620000000000 ,1620000000000 ,1620000000000 ,1616812534800 -1616812534824 ,112.5674792,26.8699165,61.32953262,181.339536,182.0569934,14.734903,0.133145847,1620000000000 ,1620000000000 ,1620000000000 ,1616812534810 -1616812534833 ,112.5674792,26.86991517,61.33067703,181.3427325,182.0487246,14.727945,0.133091507,1620000000000 ,1620000000000 ,1620000000000 ,1616812534820 -1616812534845 ,112.5674791,26.86991384,61.33187103,181.3471585,182.057344,14.72416,0.133048674,1620000000000 ,1620000000000 ,1620000000000 ,1616812534830 -1616812534853 ,112.5674791,26.86991251,61.33304214,181.3495627,182.0571452,14.723082,0.133035357,1620000000000 ,1620000000000 ,1620000000000 ,1616812534840 -1616812534866 ,112.567479,26.86991118,61.33413315,181.3527319,182.0578345,14.723357,0.133032167,1620000000000 ,1620000000000 ,1620000000000 ,1616812534850 -1616812534874 ,112.567479,26.86990985,61.3351326,181.3557372,182.0637091,14.722207,0.133020841,1620000000000 ,1620000000000 ,1620000000000 ,1616812534860 -1616812534886 ,112.5674789,26.86990852,61.33597183,181.3595348,182.0567282,14.723201,0.133026008,1620000000000 ,1620000000000 ,1620000000000 ,1616812534870 -1616812534897 ,112.5674789,26.86990719,61.3366394,181.3639335,182.0708905,14.722161,0.133005632,1620000000000 ,1620000000000 ,1620000000000 ,1616812534880 -1616812534907 ,112.5674788,26.86990586,61.33720779,181.3638515,182.0894706,14.719318,0.132990656,1620000000000 ,1620000000000 ,1620000000000 ,1616812534890 -1616812534916 ,112.5674788,26.86990453,61.33776855,181.362704,182.1013896,14.715827,0.132958224,1620000000000 ,1620000000000 ,1620000000000 ,1616812534900 -1616812534924 ,112.5674787,26.8699032,61.33835983,181.364917,182.1085113,14.712752,0.132929704,1620000000000 ,1620000000000 ,1620000000000 ,1616812534910 -1616812534934 ,112.5674787,26.86990188,61.33898544,181.3662284,182.1103374,14.707408,0.132887936,1620000000000 ,1620000000000 ,1620000000000 ,1616812534920 -1616812534945 ,112.5674786,26.86990055,61.33972168,181.3692337,182.1121664,14.702607,0.132846519,1620000000000 ,1620000000000 ,1620000000000 ,1616812534930 -1616812534958 ,112.5674786,26.86989922,61.34052658,181.37284,182.1005088,14.702465,0.132841384,1620000000000 ,1620000000000 ,1620000000000 ,1616812534940 -1616812534974 ,112.5674785,26.86989789,61.34126663,181.3740968,182.0986643,14.701778,0.132828972,1620000000000 ,1620000000000 ,1620000000000 ,1616812534950 -1616812534978 ,112.5674785,26.86989657,61.3419075,181.3760912,182.1166911,14.699331,0.132811688,1620000000000 ,1620000000000 ,1620000000000 ,1616812534960 -1616812534994 ,112.5674784,26.86989524,61.34251785,181.3772387,182.1288396,14.694914,0.132778312,1620000000000 ,1620000000000 ,1620000000000 ,1616812534970 -1616812535006 ,112.5674784,26.86989391,61.34318542,181.3801073,182.127024,14.692484,0.132750042,1620000000000 ,1620000000000 ,1620000000000 ,1616812534980 -1616812535009 ,112.5674783,26.86989259,61.34388351,181.3825935,182.117906,14.69091,0.132735117,1620000000000 ,1620000000000 ,1620000000000 ,1616812534990 -1616812535019 ,112.5674783,26.86989126,61.34456635,181.3869649,182.112292,14.687256,0.132707231,1620000000000 ,1620000000000 ,1620000000000 ,1616812535000 -1616812535030 ,112.5674782,26.86988993,61.34525681,181.3891778,182.1147957,14.6823435,0.132669645,1620000000000 ,1620000000000 ,1620000000000 ,1616812535010 -1616812535035 ,112.5674782,26.86988861,61.34599304,181.3943961,182.1147022,14.675803,0.132614392,1620000000000 ,1620000000000 ,1620000000000 ,1616812535020 -1616812535046 ,112.5674781,26.86988728,61.34679031,181.398139,182.1217819,14.675439,0.132604451,1620000000000 ,1620000000000 ,1620000000000 ,1616812535030 -1616812535056 ,112.5674781,26.86988596,61.34757233,181.4051878,182.1211257,14.672439,0.132579417,1620000000000 ,1620000000000 ,1620000000000 ,1616812535040 -1616812535066 ,112.567478,26.86988463,61.34825516,181.4143949,182.1508752,14.669548,0.1325557,1620000000000 ,1620000000000 ,1620000000000 ,1616812535050 -1616812535080 ,112.567478,26.86988331,61.34884644,181.4196405,182.1551599,14.666397,0.132529377,1620000000000 ,1620000000000 ,1620000000000 ,1616812535060 -1616812535086 ,112.5674779,26.86988199,61.34936523,181.4270171,182.1323931,14.660342,0.132477176,1620000000000 ,1620000000000 ,1620000000000 ,1616812535070 -1616812535098 ,112.5674779,26.86988066,61.34986877,181.4355685,182.1411051,14.654623,0.132422821,1620000000000 ,1620000000000 ,1620000000000 ,1616812535080 -1616812535109 ,112.5674778,26.86987934,61.3503952,181.4434369,182.1552319,14.650102,0.132381093,1620000000000 ,1620000000000 ,1620000000000 ,1616812535090 -1616812535118 ,112.5674778,26.86987802,61.35099411,181.4468519,182.1707295,14.646467,0.132345004,1620000000000 ,1620000000000 ,1620000000000 ,1616812535100 -1616812535128 ,112.5674777,26.8698767,61.35161972,181.4515784,182.1816114,14.6450205,0.132331865,1620000000000 ,1620000000000 ,1620000000000 ,1616812535110 -1616812535139 ,112.5674777,26.86987537,61.35215759,181.4578076,182.1881034,14.645304,0.132327007,1620000000000 ,1620000000000 ,1620000000000 ,1616812535120 -1616812535146 ,112.5674776,26.86987405,61.35251999,181.4630805,182.1981351,14.645539,0.132323022,1620000000000 ,1620000000000 ,1620000000000 ,1616812535130 -1616812535158 ,112.5674776,26.86987273,61.35278702,181.4679436,182.2028499,14.642065,0.132298119,1620000000000 ,1620000000000 ,1620000000000 ,1616812535140 -1616812535167 ,112.5674775,26.86987141,61.35301208,181.4728613,182.1809658,14.634574,0.132240245,1620000000000 ,1620000000000 ,1620000000000 ,1616812535150 -1616812535176 ,112.5674775,26.86987009,61.3532486,181.4789538,182.1795803,14.627768,0.132170207,1620000000000 ,1620000000000 ,1620000000000 ,1616812535160 -1616812535187 ,112.5674774,26.86986877,61.35344315,181.4896089,182.2044943,14.625037,0.132133394,1620000000000 ,1620000000000 ,1620000000000 ,1616812535170 -1616812535197 ,112.5674774,26.86986745,61.35356903,181.4987341,182.2372424,14.624954,0.132122896,1620000000000 ,1620000000000 ,1620000000000 ,1616812535180 -1616812535207 ,112.5674773,26.86986613,61.35364532,181.5063566,182.2495378,14.622367,0.132101273,1620000000000 ,1620000000000 ,1620000000000 ,1616812535190 -1616812535217 ,112.5674773,26.86986481,61.35372925,181.49898,181.9134392,14.612738,0.13194591,1620000000000 ,1620000000000 ,1620000000000 ,1616812535200 -1616812535227 ,112.5674773,26.86986349,61.35362625,181.5072855,181.4070814,14.615234,0.131768032,1620000000000 ,1620000000000 ,1620000000000 ,1616812535210 -1616812535239 ,112.5674772,26.86986217,61.35325623,181.5069849,181.4252829,14.612526,0.131725178,1620000000000 ,1620000000000 ,1620000000000 ,1616812535220 -1616812535251 ,112.5674772,26.86986086,61.35279083,181.5010837,181.4872629,14.610774,0.131721557,1620000000000 ,1620000000000 ,1620000000000 ,1616812535230 -1616812535261 ,112.5674772,26.86985954,61.35243988,181.5034879,181.5146732,14.610477,0.131711236,1620000000000 ,1620000000000 ,1620000000000 ,1616812535240 -1616812535268 ,112.5674771,26.86985822,61.35214233,181.5105913,181.5050997,14.608292,0.131696247,1620000000000 ,1620000000000 ,1620000000000 ,1616812535250 -1616812535278 ,112.5674771,26.86985691,61.35207748,181.5156183,181.4870812,14.592993,0.131587444,1620000000000 ,1620000000000 ,1620000000000 ,1616812535260 -1616812535288 ,112.5674771,26.86985559,61.3523941,181.5218747,181.48109,14.577721,0.131453855,1620000000000 ,1620000000000 ,1620000000000 ,1616812535270 -1616812535298 ,112.567477,26.86985428,61.35301208,181.5264646,181.481627,14.574035,0.131396548,1620000000000 ,1620000000000 ,1620000000000 ,1616812535280 -1616812535310 ,112.567477,26.86985297,61.35363007,181.5323659,181.5021429,14.579066,0.131416623,1620000000000 ,1620000000000 ,1620000000000 ,1616812535290 -1616812535318 ,112.5674769,26.86985165,61.35409546,181.5326664,181.554743,14.5862875,0.131480043,1620000000000 ,1620000000000 ,1620000000000 ,1616812535300 -1616812535328 ,112.5674769,26.86985034,61.35455704,181.5310272,181.5885196,14.584686,0.131483952,1620000000000 ,1620000000000 ,1620000000000 ,1616812535310 -1616812535338 ,112.5674769,26.86984902,61.35525513,181.5329943,181.5712908,14.577525,0.131435716,1620000000000 ,1620000000000 ,1620000000000 ,1616812535320 -1616812535349 ,112.5674768,26.86984771,61.35623169,181.535016,181.5227033,14.565644,0.131343776,1620000000000 ,1620000000000 ,1620000000000 ,1616812535330 -1616812535358 ,112.5674768,26.8698464,61.35750961,181.5364914,181.524334,14.556548,0.131256724,1620000000000 ,1620000000000 ,1620000000000 ,1616812535340 -1616812535368 ,112.5674768,26.86984509,61.35904312,181.537147,181.5517268,14.547475,0.131181011,1620000000000 ,1620000000000 ,1620000000000 ,1616812535350 -1616812535378 ,112.5674767,26.86984378,61.36071014,181.5386224,181.5544947,14.542461,0.131124914,1620000000000 ,1620000000000 ,1620000000000 ,1616812535360 -1616812535390 ,112.5674767,26.86984247,61.36242676,181.5391415,181.5612419,14.54086,0.131111776,1620000000000 ,1620000000000 ,1620000000000 ,1616812535370 -1616812535409 ,112.5674767,26.86984116,61.36419296,181.5427478,181.5592602,14.536541,0.131074432,1620000000000 ,1620000000000 ,1620000000000 ,1616812535380 -1616812535415 ,112.5674766,26.86983985,61.36605072,181.5433489,181.5498028,14.533861,0.131053579,1620000000000 ,1620000000000 ,1620000000000 ,1616812535390 -1616812535420 ,112.5674766,26.86983854,61.36804962,181.5452613,181.5401353,14.529757,0.131019141,1620000000000 ,1620000000000 ,1620000000000 ,1616812535400 -1616812535431 ,112.5674766,26.86983723,61.37016296,181.544551,181.5310635,14.52247,0.130958902,1620000000000 ,1620000000000 ,1620000000000 ,1616812535410 -1616812535441 ,112.5674765,26.86983592,61.37242126,181.5441138,181.5441661,14.516239,0.130901712,1620000000000 ,1620000000000 ,1620000000000 ,1616812535420 -1616812535450 ,112.5674765,26.86983461,61.37479401,181.5455345,181.5526363,14.515158,0.130885109,1620000000000 ,1620000000000 ,1620000000000 ,1616812535430 -1616812535458 ,112.5674765,26.8698333,61.3772049,181.5456711,181.5511178,14.514802,0.130877031,1620000000000 ,1620000000000 ,1620000000000 ,1616812535440 -1616812535469 ,112.5674764,26.86983199,61.37957001,181.5436767,181.9002512,14.512546,0.130988958,1620000000000 ,1620000000000 ,1620000000000 ,1616812535450 -1616812535479 ,112.5674764,26.86983068,61.3818779,181.5413544,182.2349897,14.505507,0.131065692,1620000000000 ,1620000000000 ,1620000000000 ,1616812535460 -1616812535490 ,112.5674763,26.86982937,61.38422012,181.5411359,182.2392027,14.498995,0.131004388,1620000000000 ,1620000000000 ,1620000000000 ,1616812535470 -1616812535502 ,112.5674763,26.86982807,61.38661194,181.5419828,182.2520478,14.492532,0.130948646,1620000000000 ,1620000000000 ,1620000000000 ,1616812535480 -1616812535513 ,112.5674762,26.86982676,61.38899994,181.5443871,182.2575252,14.488147,0.130904551,1620000000000 ,1620000000000 ,1620000000000 ,1616812535490 -1616812535523 ,112.5674762,26.86982545,61.39135361,181.5453433,182.2518481,14.485692,0.130883038,1620000000000 ,1620000000000 ,1620000000000 ,1616812535500 -1616812535532 ,112.5674761,26.86982414,61.39364243,181.5448788,182.2655057,14.485401,0.130871711,1620000000000 ,1620000000000 ,1620000000000 ,1616812535510 -1616812535541 ,112.567476,26.86982283,61.39592743,181.5458624,182.2849825,14.484973,0.130874924,1620000000000 ,1620000000000 ,1620000000000 ,1616812535520 -1616812535550 ,112.567476,26.86982153,61.39818573,181.5443324,182.2942944,14.482217,0.130859248,1620000000000 ,1620000000000 ,1620000000000 ,1616812535530 -1616812535564 ,112.5674759,26.86982022,61.40048981,181.5420375,182.3055277,14.476284,0.130810774,1620000000000 ,1620000000000 ,1620000000000 ,1616812535540 -1616812535571 ,112.5674759,26.86981891,61.40279388,181.5382945,182.2925715,14.47059,0.1307905,1620000000000 ,1620000000000 ,1620000000000 ,1616812535550 -1616812535581 ,112.5674758,26.86981761,61.40510178,181.5376935,182.268951,14.46271,0.130681921,1620000000000 ,1620000000000 ,1620000000000 ,1616812535560 -1616812535592 ,112.5674758,26.8698163,61.40752411,181.5364094,182.3052952,14.461278,0.130699885,1620000000000 ,1620000000000 ,1620000000000 ,1616812535570 -1616812535601 ,112.5674757,26.869815,61.41013718,181.542256,182.3054065,14.450694,0.130633415,1620000000000 ,1620000000000 ,1620000000000 ,1616812535580 -1616812535611 ,112.5674757,26.86981369,61.41287231,181.5521735,182.2901285,14.442338,0.130558031,1620000000000 ,1620000000000 ,1620000000000 ,1616812535590 -1616812535620 ,112.5674756,26.86981239,61.41555023,181.5625554,182.2787641,14.433975,0.130484795,1620000000000 ,1620000000000 ,1620000000000 ,1616812535600 -1616812535631 ,112.5674756,26.86981108,61.41807938,181.569085,182.2903654,14.428574,0.130433655,1620000000000 ,1620000000000 ,1620000000000 ,1616812535610 -1616812535641 ,112.5674755,26.86980978,61.42036057,181.572063,182.2951966,14.43543,0.130464985,1620000000000 ,1620000000000 ,1620000000000 ,1616812535620 -1616812535652 ,112.5674755,26.86980848,61.42227554,181.5738388,182.3220208,14.445237,0.130538006,1620000000000 ,1620000000000 ,1620000000000 ,1616812535630 -1616812535663 ,112.5674754,26.86980717,61.42381668,181.5732378,182.3692249,14.445236,0.130565527,1620000000000 ,1620000000000 ,1620000000000 ,1616812535640 -1616812535673 ,112.5674754,26.86980587,61.42518234,181.5706969,182.4007796,14.432666,0.130478642,1620000000000 ,1620000000000 ,1620000000000 ,1616812535650 -1616812535682 ,112.5674753,26.86980457,61.42663956,181.5715985,182.3771523,14.417053,0.130349945,1620000000000 ,1620000000000 ,1620000000000 ,1616812535660 -1616812535692 ,112.5674753,26.86980326,61.42810059,181.5779096,182.3537266,14.410223,0.130266126,1620000000000 ,1620000000000 ,1620000000000 ,1616812535670 -1616812535704 ,112.5674752,26.86980196,61.42932129,181.587909,182.3571293,14.411992,0.130259029,1620000000000 ,1620000000000 ,1620000000000 ,1616812535680 -1616812535712 ,112.5674751,26.86980066,61.43008041,181.5966243,182.3735907,14.417991,0.130291851,1620000000000 ,1620000000000 ,1620000000000 ,1616812535690 -1616812535722 ,112.5674751,26.86979936,61.43042374,181.5997662,182.4015296,14.420627,0.130313859,1620000000000 ,1620000000000 ,1620000000000 ,1616812535700 -1616812535732 ,112.567475,26.86979806,61.43052673,181.6020065,182.4114446,14.418808,0.130303775,1620000000000 ,1620000000000 ,1620000000000 ,1616812535710 -1616812535742 ,112.567475,26.86979676,61.43050003,181.6058588,182.4197808,14.413045,0.130256315,1620000000000 ,1620000000000 ,1620000000000 ,1616812535720 -1616812535752 ,112.5674749,26.86979546,61.43036652,181.6106945,182.4165232,14.405867,0.130191091,1620000000000 ,1620000000000 ,1620000000000 ,1616812535730 -1616812535764 ,112.5674749,26.86979415,61.43001938,181.6165958,182.4058892,14.401719,0.130132163,1620000000000 ,1620000000000 ,1620000000000 ,1616812535740 -1616812535772 ,112.5674748,26.86979286,61.42943573,181.6186449,182.4237336,14.396864,0.130083493,1620000000000 ,1620000000000 ,1620000000000 ,1616812535750 -1616812535782 ,112.5674748,26.86979156,61.42866516,181.6195738,182.4441107,14.395251,0.130052571,1620000000000 ,1620000000000 ,1620000000000 ,1616812535770 -1616812535794 ,112.5674747,26.86979026,61.427742,181.6195191,182.4530256,14.393921,0.130032871,1620000000000 ,1620000000000 ,1620000000000 ,1616812535780 -1616812535802 ,112.5674747,26.86978896,61.4266777,181.6219507,182.4666941,14.397151,0.13004473,1620000000000 ,1620000000000 ,1620000000000 ,1616812535780 -1616812535814 ,112.5674746,26.86978766,61.42549515,181.6236992,182.4678944,14.399678,0.130066899,1620000000000 ,1620000000000 ,1620000000000 ,1616812535800 -1616812535824 ,112.5674745,26.86978636,61.42426682,181.6260488,182.474939,14.396698,0.130050153,1620000000000 ,1620000000000 ,1620000000000 ,1616812535800 -1616812535834 ,112.5674744,26.86978376,61.4218483,181.6315949,182.4717572,14.381142,0.259905921,1620000000000 ,1620000000000 ,1620000000000 ,1616812535820 -1616812535851 ,112.5674744,26.86978246,61.42064667,181.6356657,182.475159,14.374928,0.129851794,1620000000000 ,1620000000000 ,1620000000000 ,1616812535830 -1616812535854 ,112.5674744,26.86978246,61.42064667,181.6356657,-400,14.374928,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812535840 -1616812535865 ,112.5674743,26.86977987,61.41822433,181.6403102,182.4913642,14.369927,0.259598857,1620000000000 ,1620000000000 ,1620000000000 ,1616812535850 -1616812535874 ,112.5674742,26.86977857,61.41704941,181.6389715,182.500033,14.370432,0.129791243,1620000000000 ,1620000000000 ,1620000000000 ,1616812535860 -1616812535884 ,112.5674741,26.86977728,61.415905,181.6375235,182.4949404,14.370425,0.129791673,1620000000000 ,1620000000000 ,1620000000000 ,1616812535870 -1616812535893 ,112.5674741,26.86977598,61.41481781,181.6348461,182.4927567,14.368128,0.129775226,1620000000000 ,1620000000000 ,1620000000000 ,1616812535880 -1616812535903 ,112.5674741,26.86977598,61.41481781,181.6348461,-400,14.368128,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812535890 -1616812535913 ,112.567474,26.86977339,61.41279984,181.6274968,182.4837971,14.358185,0.259429056,1620000000000 ,1620000000000 ,1620000000000 ,1616812535900 -1616812535924 ,112.5674739,26.86977209,61.41185379,181.6296005,182.4797795,14.351256,0.129625991,1620000000000 ,1620000000000 ,1620000000000 ,1616812535910 -1616812535934 ,112.5674739,26.8697708,61.41101837,181.6336713,182.4630552,14.3506155,0.129612822,1620000000000 ,1620000000000 ,1620000000000 ,1616812535920 -1616812535946 ,112.5674738,26.8697695,61.41042328,181.6366219,182.433689,14.345615,0.129585183,1620000000000 ,1620000000000 ,1620000000000 ,1616812535930 -1616812535954 ,112.5674738,26.86976821,61.41016388,181.6366492,182.429426,14.337781,0.129523986,1620000000000 ,1620000000000 ,1620000000000 ,1616812535940 -1616812535965 ,112.5674737,26.86976692,61.41019821,181.6354745,182.4321901,14.328319,0.129451017,1620000000000 ,1620000000000 ,1620000000000 ,1616812535950 -1616812535973 ,112.5674736,26.86976562,61.41039658,181.6346275,182.4456779,14.323615,0.129402377,1620000000000 ,1620000000000 ,1620000000000 ,1616812535960 -1616812535985 ,112.5674736,26.86976433,61.41068268,181.6337806,182.4532592,14.324734,0.129400061,1620000000000 ,1620000000000 ,1620000000000 ,1616812535970 -1616812535994 ,112.5674735,26.86976304,61.41101074,181.6318408,182.442473,14.3261,0.129416477,1620000000000 ,1620000000000 ,1620000000000 ,1616812535980 -1616812536004 ,112.5674735,26.86976304,61.41101074,181.6318408,-400,14.3261,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812535990 -1616812536018 ,112.5674734,26.86976045,61.41209793,181.6288355,182.426091,14.312109,0.25871703,1620000000000 ,1620000000000 ,1620000000000 ,1616812536000 -1616812536025 ,112.5674734,26.86975916,61.41294861,181.6261854,182.4355844,14.303239,0.129249181,1620000000000 ,1620000000000 ,1620000000000 ,1616812536010 -1616812536035 ,112.5674733,26.86975787,61.41402817,181.6235899,182.4382689,14.295313,0.129183693,1620000000000 ,1620000000000 ,1620000000000 ,1616812536020 -1616812536046 ,112.5674733,26.86975658,61.41529083,181.6195465,182.4282986,14.289053,0.129130482,1620000000000 ,1620000000000 ,1620000000000 ,1616812536030 -1616812536056 ,112.5674732,26.86975529,61.41668701,181.6154483,182.4178252,14.285,0.129094986,1620000000000 ,1620000000000 ,1620000000000 ,1616812536040 -1616812536065 ,112.5674732,26.869754,61.41812134,181.6146287,182.4119293,14.281927,0.129065263,1620000000000 ,1620000000000 ,1620000000000 ,1616812536050 -1616812536074 ,112.5674731,26.86975271,61.41954041,181.612525,182.4112799,14.28255,0.129064367,1620000000000 ,1620000000000 ,1620000000000 ,1616812536060 -1616812536087 ,112.567473,26.86975142,61.42089081,181.6130714,182.4122248,14.283807,0.129077113,1620000000000 ,1620000000000 ,1620000000000 ,1616812536070 -1616812536096 ,112.567473,26.86975013,61.42214966,181.6141643,182.4261361,14.281575,0.129060639,1620000000000 ,1620000000000 ,1620000000000 ,1616812536080 -1616812536107 ,112.5674729,26.86974884,61.42337418,181.6124704,182.4286989,14.275675,0.129018434,1620000000000 ,1620000000000 ,1620000000000 ,1616812536090 -1616812536115 ,112.5674729,26.86974756,61.42462158,181.6091372,182.4200048,14.267773,0.128953108,1620000000000 ,1620000000000 ,1620000000000 ,1616812536100 -1616812536124 ,112.5674728,26.86974627,61.42588425,181.6061046,182.4224332,14.25926,0.128876531,1620000000000 ,1620000000000 ,1620000000000 ,1616812536110 -1616812536135 ,112.5674728,26.86974498,61.42707062,181.6034818,182.4384064,14.254583,0.128821553,1620000000000 ,1620000000000 ,1620000000000 ,1616812536120 -1616812536146 ,112.5674727,26.8697437,61.4281044,181.6000941,182.4498967,14.252643,0.128795799,1620000000000 ,1620000000000 ,1620000000000 ,1616812536130 -1616812536156 ,112.5674727,26.86974241,61.42900085,181.5934551,182.4625627,14.251787,0.128779688,1620000000000 ,1620000000000 ,1620000000000 ,1616812536140 -1616812536165 ,112.5674726,26.86974112,61.42983246,181.5861058,182.4568172,14.251564,0.128777795,1620000000000 ,1620000000000 ,1620000000000 ,1616812536150 -1616812536175 ,112.5674726,26.86973984,61.43064499,181.5783194,182.4437351,14.247663,0.128746995,1620000000000 ,1620000000000 ,1620000000000 ,1616812536160 -1616812536187 ,112.5674725,26.86973855,61.43148804,181.5708882,182.4478618,14.24179,0.128700767,1620000000000 ,1620000000000 ,1620000000000 ,1616812536170 -1616812536197 ,112.5674724,26.86973726,61.4323349,181.5667901,182.4613574,14.235858,0.128644369,1620000000000 ,1620000000000 ,1620000000000 ,1616812536180 -1616812536206 ,112.5674724,26.86973598,61.4331131,181.5634569,182.4724144,14.233803,0.128611573,1620000000000 ,1620000000000 ,1620000000000 ,1616812536190 -1616812536217 ,112.5674723,26.8697347,61.43421555,181.5522827,182.1631131,14.216841,0.128430851,1620000000000 ,1620000000000 ,1620000000000 ,1616812536200 -1616812536226 ,112.5674723,26.86973342,61.43592453,181.552556,181.6906916,14.215641,0.1281184,1620000000000 ,1620000000000 ,1620000000000 ,1616812536210 -1616812536236 ,112.5674723,26.86973214,61.43759537,181.5493321,181.709569,14.214341,0.128101932,1620000000000 ,1620000000000 ,1620000000000 ,1616812536220 -1616812536246 ,112.5674722,26.86973086,61.43935776,181.5432396,181.7091843,14.205314,0.128041612,1620000000000 ,1620000000000 ,1620000000000 ,1616812536230 -1616812536256 ,112.5674722,26.86972958,61.4412117,181.5332129,181.7185209,14.195532,0.127950783,1620000000000 ,1620000000000 ,1620000000000 ,1616812536240 -1616812536271 ,112.5674721,26.8697283,61.44303513,181.5252352,181.7394556,14.192359,0.127909547,1620000000000 ,1620000000000 ,1620000000000 ,1616812536250 -1616812536278 ,112.5674721,26.86972702,61.44465637,181.516274,181.7459141,14.19448,0.127899787,1620000000000 ,1620000000000 ,1620000000000 ,1616812536260 -1616812536291 ,112.5674721,26.86972574,61.44606018,181.5077772,181.7679467,14.198051,0.127925166,1620000000000 ,1620000000000 ,1620000000000 ,1616812536270 -1616812536298 ,112.567472,26.86972446,61.44739532,181.5001821,181.7541694,14.199735,0.12794553,1620000000000 ,1620000000000 ,1620000000000 ,1616812536280 -1616812536308 ,112.567472,26.86972318,61.44878769,181.4914667,181.7274684,14.194706,0.127915421,1620000000000 ,1620000000000 ,1620000000000 ,1616812536290 -1616812536317 ,112.567472,26.86972191,61.45037842,181.4854015,181.7246872,14.183185,0.127824871,1620000000000 ,1620000000000 ,1620000000000 ,1616812536300 -1616812536327 ,112.5674719,26.86972063,61.45219803,181.4814127,181.743875,14.173318,0.127740761,1620000000000 ,1620000000000 ,1620000000000 ,1616812536310 -1616812536340 ,112.5674719,26.86971935,61.45410538,181.4788446,181.7236413,14.169704,0.127691273,1620000000000 ,1620000000000 ,1620000000000 ,1616812536320 -1616812536351 ,112.5674718,26.86971808,61.45602036,181.4763037,181.7049949,14.169378,0.127681924,1620000000000 ,1620000000000 ,1620000000000 ,1616812536330 -1616812536358 ,112.5674718,26.8697168,61.45798492,181.4685993,181.6987791,14.166637,0.127666677,1620000000000 ,1620000000000 ,1620000000000 ,1616812536340 -1616812536369 ,112.5674718,26.86971552,61.46009064,181.462015,181.6919727,14.162297,0.127637582,1620000000000 ,1620000000000 ,1620000000000 ,1616812536350 -1616812536378 ,112.5674717,26.86971425,61.46239853,181.4574251,181.6800082,14.155268,0.127582734,1620000000000 ,1620000000000 ,1620000000000 ,1616812536360 -1616812536389 ,112.5674717,26.86971297,61.4648819,181.4558678,181.6876714,14.147929,0.127524038,1620000000000 ,1620000000000 ,1620000000000 ,1616812536370 -1616812536400 ,112.5674716,26.8697117,61.46748352,181.4534089,181.6973527,14.141554,0.127467166,1620000000000 ,1620000000000 ,1620000000000 ,1616812536380 -1616812536410 ,112.5674716,26.86971043,61.4701004,181.4538187,181.6820686,14.137408,0.127425873,1620000000000 ,1620000000000 ,1620000000000 ,1616812536390 -1616812536417 ,112.5674716,26.86970915,61.47266006,181.4538734,181.6687661,14.135676,0.127407109,1620000000000 ,1620000000000 ,1620000000000 ,1616812536400 -1616812536428 ,112.5674715,26.86970788,61.47518539,181.4531904,181.6668929,14.132209,0.127380137,1620000000000 ,1620000000000 ,1620000000000 ,1616812536410 -1616812536438 ,112.5674715,26.86970661,61.4777832,181.4546384,181.6727977,14.127585,0.127350114,1620000000000 ,1620000000000 ,1620000000000 ,1616812536420 -1616812536449 ,112.5674715,26.86970533,61.48052597,181.4555946,181.6495425,14.119942,0.127289863,1620000000000 ,1620000000000 ,1620000000000 ,1616812536430 -1616812536458 ,112.5674714,26.86970406,61.48338699,181.4592556,181.6360569,14.114647,0.127244905,1620000000000 ,1620000000000 ,1620000000000 ,1616812536440 -1616812536469 ,112.5674714,26.86970279,61.48583984,181.46125,181.9465701,14.108031,0.127351305,1620000000000 ,1620000000000 ,1620000000000 ,1616812536450 -1616812536479 ,112.5674713,26.86970152,61.48777771,181.4646378,182.2586316,14.104466,0.127472793,1620000000000 ,1620000000000 ,1620000000000 ,1616812536460 -1616812536489 ,112.5674713,26.86970024,61.48959732,181.471468,182.2464838,14.101009,0.127440951,1620000000000 ,1620000000000 ,1620000000000 ,1616812536470 -1616812536502 ,112.5674712,26.86969897,61.49120331,181.4774239,182.2409007,14.101086,0.127427133,1620000000000 ,1620000000000 ,1620000000000 ,1616812536480 -1616812536518 ,112.5674712,26.8696977,61.49260712,181.4848551,182.2556351,14.099801,0.127415152,1620000000000 ,1620000000000 ,1620000000000 ,1616812536490 -1616812536521 ,112.5674711,26.86969642,61.49387741,181.4903739,182.2426436,14.095902,0.127383501,1620000000000 ,1620000000000 ,1620000000000 ,1616812536500 -1616812536530 ,112.5674711,26.86969515,61.49508286,181.49592,182.2412797,14.090896,0.127341499,1620000000000 ,1620000000000 ,1620000000000 ,1616812536510 -1616812536540 ,112.567471,26.86969388,61.49619293,181.5018213,182.2366903,14.0852165,0.127280623,1620000000000 ,1620000000000 ,1620000000000 ,1616812536520 -1616812536551 ,112.567471,26.86969261,61.49717712,181.5107825,182.2415928,14.082223,0.127246585,1620000000000 ,1620000000000 ,1620000000000 ,1616812536530 -1616812536560 ,112.5674709,26.86969134,61.49806213,181.518323,182.2642495,14.080416,0.127225057,1620000000000 ,1620000000000 ,1620000000000 ,1616812536540 -1616812536571 ,112.5674709,26.86969007,61.49885559,181.5237052,182.2548586,14.080895,0.12721853,1620000000000 ,1620000000000 ,1620000000000 ,1616812536550 -1616812536579 ,112.5674708,26.86968879,61.4995575,181.5286503,182.2458502,14.075076,0.127181118,1620000000000 ,1620000000000 ,1620000000000 ,1616812536560 -1616812536589 ,112.5674708,26.86968752,61.50018311,181.5341144,182.2560533,14.069926,0.127125635,1620000000000 ,1620000000000 ,1620000000000 ,1616812536570 -1616812536599 ,112.5674707,26.86968625,61.50074768,181.5407807,182.265301,14.068196,0.127102832,1620000000000 ,1620000000000 ,1620000000000 ,1616812536580 -1616812536610 ,112.5674707,26.86968498,61.50132751,181.5448515,182.2943256,14.065736,0.127080875,1620000000000 ,1620000000000 ,1620000000000 ,1616812536590 -1616812536620 ,112.5674706,26.86968371,61.50193787,181.5487857,182.3083332,14.06027,0.12704284,1620000000000 ,1620000000000 ,1620000000000 ,1616812536600 -1616812536632 ,112.5674706,26.86968245,61.50252533,181.5522281,182.3033758,14.052734,0.126966174,1620000000000 ,1620000000000 ,1620000000000 ,1616812536610 -1616812536640 ,112.5674705,26.86968118,61.50304031,181.5569819,182.3040419,14.0526,0.12694649,1620000000000 ,1620000000000 ,1620000000000 ,1616812536620 -1616812536652 ,112.5674705,26.86967991,61.50352097,181.5591129,182.3162477,14.052765,0.126949526,1620000000000 ,1620000000000 ,1620000000000 ,1616812536630 -1616812536660 ,112.5674704,26.86967864,61.50404739,181.5610527,182.3233286,14.053808,0.126958527,1620000000000 ,1620000000000 ,1620000000000 ,1616812536640 -1616812536672 ,112.5674704,26.86967737,61.50471497,181.5608068,182.3431788,14.0439005,0.12690076,1620000000000 ,1620000000000 ,1620000000000 ,1616812536650 -1616812536681 ,112.5674703,26.86967611,61.50556564,181.5602604,182.3619774,14.0328,0.126807627,1620000000000 ,1620000000000 ,1620000000000 ,1616812536660 -1616812536690 ,112.5674703,26.86967484,61.50651169,181.5609161,182.3525088,14.025117,0.126731049,1620000000000 ,1620000000000 ,1620000000000 ,1616812536670 -1616812536701 ,112.5674702,26.86967357,61.50741959,181.5642766,182.3595757,14.023457,0.126690967,1620000000000 ,1620000000000 ,1620000000000 ,1616812536680 -1616812536712 ,112.5674702,26.86967231,61.50828552,181.5674458,182.3861425,14.025792,0.126713365,1620000000000 ,1620000000000 ,1620000000000 ,1616812536690 -1616812536722 ,112.5674701,26.86967104,61.50915527,181.5660797,182.3790192,14.0227,0.126693923,1620000000000 ,1620000000000 ,1620000000000 ,1616812536700 -1616812536733 ,112.5674701,26.86966978,61.51021576,181.5636755,182.3948406,14.016627,0.126657605,1620000000000 ,1620000000000 ,1620000000000 ,1616812536710 -1616812536741 ,112.56747,26.86966851,61.51142883,181.5598506,182.383503,14.007744,0.126581096,1620000000000 ,1620000000000 ,1620000000000 ,1616812536720 -1616812536751 ,112.56747,26.86966725,61.51261902,181.5548509,182.4040684,14.002375,0.12651847,1620000000000 ,1620000000000 ,1620000000000 ,1616812536730 -1616812536761 ,112.5674699,26.86966598,61.51371002,181.5529658,182.4411307,14.002074,0.126511525,1620000000000 ,1620000000000 ,1620000000000 ,1616812536740 -1616812536771 ,112.5674698,26.86966472,61.51467133,181.5559437,182.4324031,13.999297,0.126484585,1620000000000 ,1620000000000 ,1620000000000 ,1616812536750 -1616812536781 ,112.5674698,26.86966346,61.51572037,181.5566541,182.4043495,14.003211,0.126505583,1620000000000 ,1620000000000 ,1620000000000 ,1616812536760 -1616812536791 ,112.5674697,26.86966219,61.51697922,181.5551241,182.3524461,13.992915,0.126459976,1620000000000 ,1620000000000 ,1620000000000 ,1616812536770 -1616812536801 ,112.5674697,26.86966093,61.51842117,181.5506708,182.3789022,13.979977,0.126346484,1620000000000 ,1620000000000 ,1620000000000 ,1616812536780 -1616812536814 ,112.5674696,26.86965967,61.5199585,181.5511353,182.4034117,13.969725,0.126251618,1620000000000 ,1620000000000 ,1620000000000 ,1616812536790 -1616812536822 ,112.5674696,26.86965841,61.52142334,181.5534302,182.4011404,13.966744,0.126202697,1620000000000 ,1620000000000 ,1620000000000 ,1616812536800 -1616812536834 ,112.5674695,26.86965715,61.52285767,181.5537307,182.3932342,13.969881,0.126223382,1620000000000 ,1620000000000 ,1620000000000 ,1616812536810 -1616812536842 ,112.5674695,26.86965589,61.52432251,181.5543045,182.3662176,13.969921,0.12623205,1620000000000 ,1620000000000 ,1620000000000 ,1616812536820 -1616812536852 ,112.5674694,26.86965462,61.52581406,181.5508074,182.3374629,13.965569,0.126201214,1620000000000 ,1620000000000 ,1620000000000 ,1616812536830 -1616812536861 ,112.5674694,26.86965336,61.52727509,181.5506162,182.3520466,13.957443,0.126136937,1620000000000 ,1620000000000 ,1620000000000 ,1616812536840 -1616812536872 ,112.5674693,26.8696521,61.52868271,181.5551514,182.3943608,13.9534445,0.126095447,1620000000000 ,1620000000000 ,1620000000000 ,1616812536850 -1616812536882 ,112.5674693,26.86965084,61.53007507,181.5574464,182.3845227,13.947138,0.126035324,1620000000000 ,1620000000000 ,1620000000000 ,1616812536860 -1616812536893 ,112.5674692,26.86964959,61.53158951,181.5566541,182.3612351,13.940429,0.125983599,1620000000000 ,1620000000000 ,1620000000000 ,1616812536870 -1616812536902 ,112.5674692,26.86964833,61.53321457,181.5573098,182.3488766,13.932785,0.125920494,1620000000000 ,1620000000000 ,1620000000000 ,1616812536880 -1616812536917 ,112.5674691,26.86964707,61.53475571,181.558949,182.3692479,13.929411,0.125873199,1620000000000 ,1620000000000 ,1620000000000 ,1616812536900 -1616812536922 ,112.5674691,26.86964581,61.53614807,181.5628559,182.4099172,13.931728,0.125880186,1620000000000 ,1620000000000 ,1620000000000 ,1616812536910 -1616812536932 ,112.567469,26.86964455,61.53735352,181.566271,182.4198281,13.933561,0.125893319,1620000000000 ,1620000000000 ,1620000000000 ,1616812536920 -1616812536943 ,112.567469,26.8696433,61.53852463,181.5682654,182.4069893,13.931434,0.125882709,1620000000000 ,1620000000000 ,1620000000000 ,1616812536930 -1616812536952 ,112.5674689,26.86964204,61.53973389,181.5720083,182.3790438,13.924043,0.125828363,1620000000000 ,1620000000000 ,1620000000000 ,1616812536940 -1616812536962 ,112.5674688,26.86963953,61.54205704,181.5792483,182.3988229,13.914307,0.25144726,1620000000000 ,1620000000000 ,1620000000000 ,1616812536950 -1616812536972 ,112.5674687,26.86963827,61.5429306,181.582117,182.4022691,13.911146,0.125674483,1620000000000 ,1620000000000 ,1620000000000 ,1616812536960 -1616812536982 ,112.5674687,26.86963702,61.54368591,181.5848491,182.4424078,13.913309,0.125691743,1620000000000 ,1620000000000 ,1620000000000 ,1616812536970 -1616812536994 ,112.5674686,26.86963576,61.54453278,181.5876358,182.4547639,13.910407,0.125679438,1620000000000 ,1620000000000 ,1620000000000 ,1616812536980 -1616812537004 ,112.5674686,26.86963576,61.54453278,181.5876358,-400,13.910407,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812536980 -1616812537017 ,112.5674685,26.86963325,61.54650116,181.5937283,182.4318933,13.8946295,0.25122411,1620000000000 ,1620000000000 ,1620000000000 ,1616812537000 -1616812537028 ,112.5674685,26.869632,61.54773712,181.5968702,182.4735074,13.884337,0.125469464,1620000000000 ,1620000000000 ,1620000000000 ,1616812537010 -1616812537034 ,112.5674684,26.86963074,61.54898453,181.6014874,182.4795683,13.881939,0.125421183,1620000000000 ,1620000000000 ,1620000000000 ,1616812537020 -1616812537043 ,112.5674684,26.86962949,61.55015182,181.6057768,182.5059753,13.886773,0.125452015,1620000000000 ,1620000000000 ,1620000000000 ,1616812537030 -1616812537053 ,112.5674683,26.86962824,61.55120087,181.6070882,182.5130465,13.890215,0.125488845,1620000000000 ,1620000000000 ,1620000000000 ,1616812537040 -1616812537064 ,112.5674683,26.86962698,61.55234146,181.6070609,182.5251523,13.88339,0.125458893,1620000000000 ,1620000000000 ,1620000000000 ,1616812537050 -1616812537075 ,112.5674682,26.86962573,61.55374908,181.6082903,182.5252553,13.869627,0.125349375,1620000000000 ,1620000000000 ,1620000000000 ,1616812537060 -1616812537084 ,112.5674681,26.86962448,61.55538559,181.611077,182.5417621,13.858861,0.125251147,1620000000000 ,1620000000000 ,1620000000000 ,1616812537070 -1616812537095 ,112.5674681,26.86962323,61.55708313,181.6145468,182.566279,13.857111,0.125223164,1620000000000 ,1620000000000 ,1620000000000 ,1616812537080 -1616812537106 ,112.567468,26.86962198,61.55867386,181.6201475,182.5908678,13.859683,0.125241144,1620000000000 ,1620000000000 ,1620000000000 ,1616812537090 -1616812537115 ,112.567468,26.86962198,61.55867386,181.6201475,-400,13.859683,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812537100 -1616812537124 ,112.5674679,26.86961948,61.5616951,181.6153391,182.5883701,13.851148,0.250418348,1620000000000 ,1620000000000 ,1620000000000 ,1616812537110 -1616812537135 ,112.5674679,26.86961823,61.56332016,181.6155849,182.5815931,13.845239,0.125132758,1620000000000 ,1620000000000 ,1620000000000 ,1616812537120 -1616812537144 ,112.5674678,26.86961698,61.56502914,181.6170056,182.5980103,13.839726,0.1250879,1620000000000 ,1620000000000 ,1620000000000 ,1616812537130 -1616812537154 ,112.5674678,26.86961573,61.56673813,181.6171695,182.6183355,13.833389,0.125041485,1620000000000 ,1620000000000 ,1620000000000 ,1616812537140 -1616812537165 ,112.5674677,26.86961448,61.56840134,181.617634,182.6178802,13.828536,0.124993149,1620000000000 ,1620000000000 ,1620000000000 ,1616812537150 -1616812537174 ,112.5674676,26.86961323,61.56997681,181.6170056,182.5943611,13.823379,0.124941424,1620000000000 ,1620000000000 ,1620000000000 ,1616812537160 -1616812537185 ,112.5674676,26.86961198,61.57141113,181.6201748,182.6042022,13.824582,0.12493653,1620000000000 ,1620000000000 ,1620000000000 ,1616812537170 -1616812537196 ,112.5674675,26.86961073,61.57269669,181.6196557,182.6240322,13.825487,0.124946211,1620000000000 ,1620000000000 ,1620000000000 ,1616812537180 -1616812537207 ,112.5674675,26.86960949,61.57389832,181.6171149,182.6237731,13.822733,0.124925976,1620000000000 ,1620000000000 ,1620000000000 ,1616812537190 -1616812537214 ,112.5674674,26.86960824,61.57513046,181.6112956,182.2052209,13.82002,0.125094627,1620000000000 ,1620000000000 ,1620000000000 ,1616812537200 -1616812537228 ,112.5674674,26.86960698,61.57629395,181.6120332,181.5880548,13.810026,0.125279156,1620000000000 ,1620000000000 ,1620000000000 ,1616812537210 -1616812537235 ,112.5674673,26.86960573,61.57735443,181.612607,181.5925276,13.80391,0.125206166,1620000000000 ,1620000000000 ,1620000000000 ,1616812537220 -1616812537247 ,112.5674673,26.86960448,61.5782547,181.61176,181.6026929,13.798001,0.12515213,1620000000000 ,1620000000000 ,1620000000000 ,1616812537230 -1616812537255 ,112.5674673,26.86960323,61.57896805,181.6088914,181.6055452,13.79691,0.125121215,1620000000000 ,1620000000000 ,1620000000000 ,1616812537240 -1616812537266 ,112.5674672,26.86960198,61.57957458,181.6077439,181.5849796,13.796123,0.125109234,1620000000000 ,1620000000000 ,1620000000000 ,1616812537250 -1616812537275 ,112.5674672,26.86960073,61.58011246,181.6068696,181.5787687,13.796524,0.125110824,1620000000000 ,1620000000000 ,1620000000000 ,1616812537260 -1616812537286 ,112.5674672,26.86959948,61.58060837,181.6068969,181.5780123,13.796953,0.125108799,1620000000000 ,1620000000000 ,1620000000000 ,1616812537270 -1616812537296 ,112.5674671,26.86959823,61.58102798,181.6087001,181.5864378,13.793489,0.125084969,1620000000000 ,1620000000000 ,1620000000000 ,1616812537280 -1616812537308 ,112.5674671,26.86959698,61.58134079,181.6124977,181.5875365,13.78919,0.125042484,1620000000000 ,1620000000000 ,1620000000000 ,1616812537290 -1616812537319 ,112.5674671,26.86959573,61.58154297,181.6200109,181.588835,13.783688,0.124994753,1620000000000 ,1620000000000 ,1620000000000 ,1616812537300 -1616812537327 ,112.567467,26.86959448,61.58169174,181.6226337,181.5960654,13.777477,0.124925695,1620000000000 ,1620000000000 ,1620000000000 ,1616812537310 -1616812537339 ,112.567467,26.86959323,61.58176422,181.6243003,181.5740324,13.769934,0.124866003,1620000000000 ,1620000000000 ,1620000000000 ,1616812537320 -1616812537349 ,112.567467,26.86959198,61.58180618,181.6253931,181.5706532,13.767853,0.124820761,1620000000000 ,1620000000000 ,1620000000000 ,1616812537330 -1616812537357 ,112.5674669,26.86959074,61.58193207,181.6294912,181.5807184,13.769225,0.124836774,1620000000000 ,1620000000000 ,1620000000000 ,1616812537340 -1616812537366 ,112.5674669,26.86958949,61.58205414,181.6314037,181.5647053,13.767911,0.124828501,1620000000000 ,1620000000000 ,1620000000000 ,1616812537350 -1616812537377 ,112.5674669,26.86958824,61.5821991,181.6328243,181.5534237,13.762275,0.124782339,1620000000000 ,1620000000000 ,1620000000000 ,1616812537360 -1616812537387 ,112.5674668,26.869587,61.58237839,181.6373323,181.5520555,13.752423,0.124698972,1620000000000 ,1620000000000 ,1620000000000 ,1616812537370 -1616812537398 ,112.5674668,26.86958575,61.5825386,181.6489436,181.5512634,13.7513275,0.124667875,1620000000000 ,1620000000000 ,1620000000000 ,1616812537380 -1616812537409 ,112.5674668,26.8695845,61.58264542,181.658861,181.5403146,13.752666,0.124668239,1620000000000 ,1620000000000 ,1620000000000 ,1616812537390 -1616812537424 ,112.5674667,26.86958326,61.58279419,181.6620302,181.5521487,13.7502,0.124656594,1620000000000 ,1620000000000 ,1620000000000 ,1616812537400 -1616812537434 ,112.5674667,26.86958201,61.58316803,181.6651448,181.5656137,13.74032,0.124592561,1620000000000 ,1620000000000 ,1620000000000 ,1616812537410 -1616812537441 ,112.5674667,26.86958077,61.58377838,181.6688058,181.5819275,13.727822,0.124488578,1620000000000 ,1620000000000 ,1620000000000 ,1616812537420 -1616812537449 ,112.5674666,26.86957952,61.58458328,181.6717018,181.6241393,13.72091,0.12441254,1620000000000 ,1620000000000 ,1620000000000 ,1616812537430 -1616812537460 ,112.5674666,26.86957828,61.58555984,181.6751442,181.6409409,13.71592,0.124368758,1620000000000 ,1620000000000 ,1620000000000 ,1616812537440 -1616812537468 ,112.5674665,26.86957704,61.58666992,181.6759092,182.066463,13.715513,0.1241259,1620000000000 ,1620000000000 ,1620000000000 ,1616812537450 -1616812537477 ,112.5674665,26.8695758,61.58782959,181.6788598,182.477071,13.71814,0.123929361,1620000000000 ,1620000000000 ,1620000000000 ,1616812537460 -1616812537486 ,112.5674664,26.86957456,61.58893204,181.6829306,182.4844084,13.718452,0.12393328,1620000000000 ,1620000000000 ,1620000000000 ,1616812537470 -1616812537497 ,112.5674664,26.86957332,61.59003067,181.6850616,182.5196751,13.717511,0.123927187,1620000000000 ,1620000000000 ,1620000000000 ,1616812537480 -1616812537515 ,112.5674663,26.86957209,61.59126282,181.681346,182.5346569,13.706752,0.123857887,1620000000000 ,1620000000000 ,1620000000000 ,1616812537490 -1616812537522 ,112.5674663,26.86957085,61.59274292,181.6804171,182.5232877,13.693322,0.123746935,1620000000000 ,1620000000000 ,1620000000000 ,1616812537500 -1616812537531 ,112.5674662,26.86956962,61.59438324,181.682029,182.5142649,13.685461,0.123669183,1620000000000 ,1620000000000 ,1620000000000 ,1616812537510 -1616812537541 ,112.5674662,26.86956838,61.59608078,181.6825208,182.5283866,13.680157,0.123609615,1620000000000 ,1620000000000 ,1620000000000 ,1616812537520 -1616812537553 ,112.5674661,26.86956715,61.59782028,181.6816739,182.5399226,13.678384,0.123597365,1620000000000 ,1620000000000 ,1620000000000 ,1616812537530 -1616812537558 ,112.5674661,26.86956591,61.5995636,181.6822749,182.5462661,13.682207,0.12361893,1620000000000 ,1620000000000 ,1620000000000 ,1616812537540 -1616812537569 ,112.567466,26.86956468,61.60123444,181.6856627,182.5495634,13.685789,0.12364464,1620000000000 ,1620000000000 ,1620000000000 ,1616812537550 -1616812537579 ,112.5674659,26.86956344,61.60286713,181.6873019,182.5508895,13.687525,0.12366987,1620000000000 ,1620000000000 ,1620000000000 ,1616812537560 -1616812537588 ,112.5674659,26.86956221,61.6045723,181.6852256,182.5452,13.683183,0.123652655,1620000000000 ,1620000000000 ,1620000000000 ,1616812537570 -1616812537598 ,112.5674658,26.86956097,61.60640335,181.6846791,182.5530608,13.675336,0.123589041,1620000000000 ,1620000000000 ,1620000000000 ,1616812537580 -1616812537609 ,112.5674658,26.86955974,61.60827255,181.6881216,182.5739556,13.66862,0.123530499,1620000000000 ,1620000000000 ,1620000000000 ,1616812537590 -1616812537619 ,112.5674657,26.8695585,61.61008072,181.6902799,182.5919501,13.663493,0.123479316,1620000000000 ,1620000000000 ,1620000000000 ,1616812537600 -1616812537641 ,112.5674657,26.86955727,61.61185074,181.6893783,182.5951536,13.6610985,0.123449113,1620000000000 ,1620000000000 ,1620000000000 ,1616812537610 -1616812537644 ,112.5674656,26.86955604,61.61366653,181.6875478,182.5881407,13.65983,0.12344162,1620000000000 ,1620000000000 ,1620000000000 ,1616812537620 -1616812537649 ,112.5674656,26.8695548,61.61552811,181.6861271,182.5792645,13.660006,0.123443267,1620000000000 ,1620000000000 ,1620000000000 ,1616812537630 -1616812537666 ,112.5674655,26.86955357,61.61738968,181.6849797,182.5753448,13.658944,0.123438577,1620000000000 ,1620000000000 ,1620000000000 ,1616812537640 -1616812537669 ,112.5674654,26.86955234,61.61919403,181.6841054,182.5794508,13.658157,0.123428233,1620000000000 ,1620000000000 ,1620000000000 ,1616812537650 -1616812537680 ,112.5674654,26.8695511,61.62092209,181.6850343,182.5781167,13.6564455,0.123416933,1620000000000 ,1620000000000 ,1620000000000 ,1616812537660 -1616812537690 ,112.5674653,26.86954987,61.62253952,181.6857446,182.5727365,13.652528,0.123377261,1620000000000 ,1620000000000 ,1620000000000 ,1616812537670 -1616812537703 ,112.5674653,26.86954864,61.62397385,181.6897335,182.5694072,13.646619,0.123334362,1620000000000 ,1620000000000 ,1620000000000 ,1616812537680 -1616812537711 ,112.5674652,26.86954741,61.62519073,181.6959353,182.5879253,13.647643,0.123311703,1620000000000 ,1620000000000 ,1620000000000 ,1616812537690 -1616812537720 ,112.5674652,26.86954618,61.62629318,181.6997875,182.5667001,13.654166,0.123359986,1620000000000 ,1620000000000 ,1620000000000 ,1616812537700 -1616812537730 ,112.5674651,26.86954494,61.62753296,181.699487,182.567151,13.652884,0.123376913,1620000000000 ,1620000000000 ,1620000000000 ,1616812537710 -1616812537742 ,112.5674651,26.86954371,61.62899399,181.6976019,182.581463,13.647441,0.123343291,1620000000000 ,1620000000000 ,1620000000000 ,1616812537720 -1616812537752 ,112.567465,26.86954248,61.63045883,181.699487,182.6045963,13.640503,0.123291977,1620000000000 ,1620000000000 ,1620000000000 ,1616812537730 -1616812537761 ,112.5674649,26.86954125,61.63179398,181.7021644,182.6281239,13.634353,0.123226271,1620000000000 ,1620000000000 ,1620000000000 ,1616812537740 -1616812537774 ,112.5674649,26.86954002,61.63285828,181.7097049,182.6331606,13.635616,0.123211715,1620000000000 ,1620000000000 ,1620000000000 ,1616812537750 -1616812537782 ,112.5674648,26.86953879,61.6336441,181.7168357,182.6146359,13.640598,0.123242149,1620000000000 ,1620000000000 ,1620000000000 ,1616812537760 -1616812537794 ,112.5674648,26.86953756,61.6342659,181.7198409,182.6049717,13.638007,0.123236671,1620000000000 ,1620000000000 ,1620000000000 ,1616812537770 -1616812537802 ,112.5674647,26.86953632,61.6349144,181.7222179,182.6231646,13.631607,0.12318779,1620000000000 ,1620000000000 ,1620000000000 ,1616812537780 -1616812537812 ,112.5674647,26.86953509,61.63573837,181.7244308,182.6605465,13.625569,0.123136608,1620000000000 ,1620000000000 ,1620000000000 ,1616812537790 -1616812537821 ,112.5674646,26.86953386,61.63664246,181.7259608,182.6823867,13.627246,0.123139139,1620000000000 ,1620000000000 ,1620000000000 ,1616812537800 -1616812537831 ,112.5674645,26.86953263,61.63751984,181.727764,182.6791828,13.629535,0.123164623,1620000000000 ,1620000000000 ,1620000000000 ,1616812537810 -1616812537840 ,112.5674645,26.8695314,61.63829803,181.7263433,182.6620683,13.629241,0.123167263,1620000000000 ,1620000000000 ,1620000000000 ,1616812537820 -1616812537850 ,112.5674644,26.86953017,61.63895035,181.7292939,182.6385938,13.626918,0.123145129,1620000000000 ,1620000000000 ,1620000000000 ,1616812537830 -1616812537860 ,112.5674644,26.86952894,61.63950729,181.7330915,182.6513363,13.626323,0.123131407,1620000000000 ,1620000000000 ,1620000000000 ,1616812537840 -1616812537873 ,112.5674643,26.86952771,61.64000702,181.7359875,182.6683877,13.626287,0.123140984,1620000000000 ,1620000000000 ,1620000000000 ,1616812537850 -1616812537885 ,112.5674643,26.86952648,61.64055252,181.7371623,182.6653303,13.616297,0.123078672,1620000000000 ,1620000000000 ,1620000000000 ,1616812537860 -1616812537892 ,112.5674642,26.86952526,61.64120865,181.7365886,182.6504298,13.608898,0.123002473,1620000000000 ,1620000000000 ,1620000000000 ,1616812537870 -1616812537904 ,112.5674641,26.86952403,61.64195251,181.7360148,182.6651769,13.600078,0.122934898,1620000000000 ,1620000000000 ,1620000000000 ,1616812537880 -1616812537913 ,112.5674641,26.8695228,61.64260101,181.738583,182.6737803,13.59699,0.122884094,1620000000000 ,1620000000000 ,1620000000000 ,1616812537890 -1616812537922 ,112.567464,26.86952157,61.64292908,181.7359056,182.6679706,13.60012,0.122900812,1620000000000 ,1620000000000 ,1620000000000 ,1616812537900 -1616812537932 ,112.567464,26.86952034,61.64283371,181.7319987,182.662589,13.605116,0.122911191,1620000000000 ,1620000000000 ,1620000000000 ,1616812537910 -1616812537941 ,112.5674639,26.86951912,61.64241028,181.72913,182.6577467,13.614126,0.122980265,1620000000000 ,1620000000000 ,1620000000000 ,1616812537920 -1616812537951 ,112.5674639,26.86951789,61.64179611,181.7266711,182.6561824,13.617969,0.123023937,1620000000000 ,1620000000000 ,1620000000000 ,1616812537930 -1616812537961 ,112.5674638,26.86951666,61.64116287,181.7260974,182.6499573,13.612684,0.122998909,1620000000000 ,1620000000000 ,1620000000000 ,1616812537940 -1616812537974 ,112.5674637,26.86951543,61.64070129,181.7294579,182.6617812,13.592424,0.122853268,1620000000000 ,1620000000000 ,1620000000000 ,1616812537950 -1616812537986 ,112.5674637,26.86951421,61.64055634,181.7361241,182.6542774,13.575033,0.122692926,1620000000000 ,1620000000000 ,1620000000000 ,1616812537960 -1616812537993 ,112.5674636,26.86951298,61.64058685,181.7426538,182.647409,13.572865,0.122641661,1620000000000 ,1620000000000 ,1620000000000 ,1616812537970 -1616812538003 ,112.5674636,26.86951175,61.64051437,181.7480906,182.6431515,13.580527,0.122682523,1620000000000 ,1620000000000 ,1620000000000 ,1616812537980 -1616812538012 ,112.5674635,26.86951053,61.64011383,181.7514784,182.6700301,13.59362,0.122779601,1620000000000 ,1620000000000 ,1620000000000 ,1616812537990 -1616812538023 ,112.5674635,26.8695093,61.63941193,181.7521341,182.7021893,13.598187,0.122837574,1620000000000 ,1620000000000 ,1620000000000 ,1616812538010 -1616812538033 ,112.5674634,26.86950807,61.63859558,181.753664,182.7126543,13.594765,0.122813812,1620000000000 ,1620000000000 ,1620000000000 ,1616812538020 -1616812538043 ,112.5674633,26.86950685,61.63782883,181.757325,182.6962534,13.586619,0.122749552,1620000000000 ,1620000000000 ,1620000000000 ,1616812538030 -1616812538054 ,112.5674633,26.86950562,61.63715363,181.760303,182.6640959,13.577167,0.122660476,1620000000000 ,1620000000000 ,1620000000000 ,1616812538040 -1616812538064 ,112.5674632,26.86950317,61.63563156,181.768909,182.6727792,13.564865,0.245146493,1620000000000 ,1620000000000 ,1620000000000 ,1616812538050 -1616812538075 ,112.5674632,26.86950317,61.63563156,181.768909,-400,13.564865,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812538060 -1616812538083 ,112.5674631,26.86950073,61.63349915,181.7824328,182.6838066,13.57633,0.245151739,1620000000000 ,1620000000000 ,1620000000000 ,1616812538070 -1616812538092 ,112.567463,26.8694995,61.63266373,181.7840174,182.6597507,13.577177,0.122624766,1620000000000 ,1620000000000 ,1620000000000 ,1616812538080 -1616812538104 ,112.567463,26.8694995,61.63266373,181.7840174,-400,13.577177,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812538090 -1616812538118 ,112.5674629,26.86949705,61.63181305,181.7934704,182.6677114,13.5528555,0.245015616,1620000000000 ,1620000000000 ,1620000000000 ,1616812538100 -1616812538124 ,112.5674628,26.86949583,61.63164902,181.8004372,182.7076142,13.545627,0.122371286,1620000000000 ,1620000000000 ,1620000000000 ,1616812538110 -1616812538135 ,112.5674628,26.86949461,61.63161087,181.8103819,182.744118,13.547794,0.122357918,1620000000000 ,1620000000000 ,1620000000000 ,1616812538120 -1616812538143 ,112.5674627,26.86949339,61.63173294,181.816775,182.7216766,13.552177,0.122411659,1620000000000 ,1620000000000 ,1620000000000 ,1616812538130 -1616812538155 ,112.5674627,26.86949216,61.63210678,181.8178951,182.7320359,13.548379,0.122405109,1620000000000 ,1620000000000 ,1620000000000 ,1616812538140 -1616812538164 ,112.5674626,26.86949094,61.63285065,181.8116387,182.7839541,13.532918,0.12230065,1620000000000 ,1620000000000 ,1620000000000 ,1616812538150 -1616812538174 ,112.5674625,26.86948972,61.63394547,181.808852,182.8456639,13.517506,0.122165378,1620000000000 ,1620000000000 ,1620000000000 ,1616812538160 -1616812538185 ,112.5674625,26.8694885,61.63527298,181.8050271,182.8719897,13.511796,0.122102699,1620000000000 ,1620000000000 ,1620000000000 ,1616812538170 -1616812538193 ,112.5674624,26.86948728,61.63670731,181.8034698,182.870614,13.5142145,0.122107649,1620000000000 ,1620000000000 ,1620000000000 ,1616812538180 -1616812538204 ,112.5674624,26.86948606,61.63811493,181.8024589,182.8477663,13.517631,0.122138274,1620000000000 ,1620000000000 ,1620000000000 ,1616812538190 -1616812538213 ,112.5674623,26.86948484,61.63955307,181.7903012,182.3072474,13.551805,0.122702436,1620000000000 ,1620000000000 ,1620000000000 ,1616812538200 -1616812538227 ,112.5674623,26.8694836,61.6411438,181.787897,181.5767084,13.549432,0.123580494,1620000000000 ,1620000000000 ,1620000000000 ,1616812538210 -1616812538234 ,112.5674622,26.86948237,61.64292908,181.7835803,181.5960906,13.5433655,0.123544447,1620000000000 ,1620000000000 ,1620000000000 ,1616812538220 -1616812538244 ,112.5674622,26.86948113,61.64488602,181.7806296,181.6039938,13.536333,0.123486416,1620000000000 ,1620000000000 ,1620000000000 ,1616812538230 -1616812538256 ,112.5674622,26.8694799,61.64691925,181.7753021,181.5904668,13.530521,0.123432367,1620000000000 ,1620000000000 ,1620000000000 ,1616812538240 -1616812538265 ,112.5674621,26.86947866,61.64893723,181.7724061,181.5611924,13.5242815,0.123378785,1620000000000 ,1620000000000 ,1620000000000 ,1616812538250 -1616812538274 ,112.5674621,26.86947743,61.65089417,181.7690183,181.5548383,13.52168,0.123346356,1620000000000 ,1620000000000 ,1620000000000 ,1616812538260 -1616812538286 ,112.5674621,26.8694762,61.65280533,181.7666687,181.5586711,13.519406,0.123325558,1620000000000 ,1620000000000 ,1620000000000 ,1616812538270 -1616812538294 ,112.567462,26.86947497,61.65472031,181.7657398,181.5712004,13.515746,0.1232975,1620000000000 ,1620000000000 ,1620000000000 ,1616812538280 -1616812538305 ,112.567462,26.86947373,61.65673447,181.7656579,181.5755931,13.516195,0.123296086,1620000000000 ,1620000000000 ,1620000000000 ,1616812538290 -1616812538314 ,112.567462,26.8694725,61.65885162,181.7638547,181.5725041,13.515409,0.123298305,1620000000000 ,1620000000000 ,1620000000000 ,1616812538300 -1616812538332 ,112.5674619,26.86947127,61.66098022,181.7629258,181.5638303,13.512208,0.123277208,1620000000000 ,1620000000000 ,1620000000000 ,1616812538310 -1616812538337 ,112.5674619,26.86947004,61.66304398,181.7599751,181.5523639,13.504512,0.123218739,1620000000000 ,1620000000000 ,1620000000000 ,1616812538320 -1616812538347 ,112.5674619,26.86946881,61.66503143,181.7599751,181.5589816,13.498919,0.123161326,1620000000000 ,1620000000000 ,1620000000000 ,1616812538330 -1616812538358 ,112.5674618,26.86946758,61.66696548,181.7588823,181.5605703,13.494297,0.123116807,1620000000000 ,1620000000000 ,1620000000000 ,1616812538340 -1616812538366 ,112.5674618,26.86946635,61.66888809,181.7592102,181.5626386,13.489876,0.12308193,1620000000000 ,1620000000000 ,1620000000000 ,1616812538350 -1616812538375 ,112.5674618,26.86946511,61.670784,181.759538,181.5509386,13.490248,0.123069889,1620000000000 ,1620000000000 ,1620000000000 ,1616812538360 -1616812538385 ,112.5674617,26.86946388,61.67261505,181.7614778,181.5242649,13.4911175,0.123082118,1620000000000 ,1620000000000 ,1620000000000 ,1616812538370 -1616812538395 ,112.5674617,26.86946265,61.67433929,181.7612046,181.5222121,13.491589,0.123082016,1620000000000 ,1620000000000 ,1620000000000 ,1616812538380 -1616812538406 ,112.5674617,26.86946142,61.67596817,181.7610133,181.5216672,13.485832,0.123049232,1620000000000 ,1620000000000 ,1620000000000 ,1616812538390 -1616812538417 ,112.5674616,26.86946019,61.67747498,181.7615597,181.5050413,13.479314,0.12298804,1620000000000 ,1620000000000 ,1620000000000 ,1616812538400 -1616812538427 ,112.5674616,26.86945897,61.67875671,181.763882,181.4802067,13.477451,0.122949855,1620000000000 ,1620000000000 ,1620000000000 ,1616812538410 -1616812538436 ,112.5674616,26.86945774,61.6797142,181.7659584,181.4670754,13.47376,0.122909228,1620000000000 ,1620000000000 ,1620000000000 ,1616812538420 -1616812538447 ,112.5674615,26.86945651,61.68035126,181.7688271,181.5173058,13.475295,0.122911182,1620000000000 ,1620000000000 ,1620000000000 ,1616812538430 -1616812538457 ,112.5674615,26.86945528,61.68091202,181.7731984,181.5052404,13.4820595,0.12294944,1620000000000 ,1620000000000 ,1620000000000 ,1616812538440 -1616812538465 ,112.5674615,26.86945406,61.68143082,181.7767228,181.9681015,13.481271,0.122382491,1620000000000 ,1620000000000 ,1620000000000 ,1616812538450 -1616812538476 ,112.5674614,26.86945284,61.68211365,181.7777063,182.4980507,13.469243,0.12173255,1620000000000 ,1620000000000 ,1620000000000 ,1616812538460 -1616812538486 ,112.5674614,26.86945162,61.68307495,181.7777336,182.5222655,13.453088,0.12160586,1620000000000 ,1620000000000 ,1620000000000 ,1616812538470 -1616812538496 ,112.5674613,26.86945041,61.68400955,181.7801379,182.5326579,13.451062,0.121551088,1620000000000 ,1620000000000 ,1620000000000 ,1616812538480 -1616812538508 ,112.5674613,26.8694492,61.68463898,181.7838262,182.5357685,13.458023,0.121578353,1620000000000 ,1620000000000 ,1620000000000 ,1616812538490 -1616812538519 ,112.5674612,26.86944798,61.68477631,181.7887166,182.5401003,13.468748,0.121654197,1620000000000 ,1620000000000 ,1620000000000 ,1616812538500 -1616812538528 ,112.5674611,26.86944676,61.68461609,181.7890717,182.533972,13.470825,0.121692845,1620000000000 ,1620000000000 ,1620000000000 ,1616812538510 -1616812538541 ,112.5674611,26.86944555,61.68450546,181.7890171,182.4988827,13.461217,0.121621516,1620000000000 ,1620000000000 ,1620000000000 ,1616812538520 -1616812538550 ,112.567461,26.86944434,61.68467712,181.7902192,182.5044544,13.448902,0.121525785,1620000000000 ,1620000000000 ,1620000000000 ,1616812538530 -1616812538558 ,112.567461,26.86944312,61.68501282,181.7925961,182.5329326,13.4401245,0.121445982,1620000000000 ,1620000000000 ,1620000000000 ,1616812538540 -1616812538567 ,112.5674609,26.86944191,61.68532944,181.795656,182.557203,13.439155,0.121416644,1620000000000 ,1620000000000 ,1620000000000 ,1616812538550 -1616812538577 ,112.5674609,26.8694407,61.68549347,181.7963664,182.5474001,13.443412,0.121430699,1620000000000 ,1620000000000 ,1620000000000 ,1616812538560 -1616812538587 ,112.5674608,26.86943948,61.68550873,181.7962298,182.5201054,13.447103,0.121460037,1620000000000 ,1620000000000 ,1620000000000 ,1616812538570 -1616812538599 ,112.5674608,26.86943827,61.68534088,181.7991258,182.5231661,13.455038,0.121527721,1620000000000 ,1620000000000 ,1620000000000 ,1616812538580 -1616812538608 ,112.5674607,26.86943705,61.68505859,181.8033605,182.5398413,13.451245,0.121507342,1620000000000 ,1620000000000 ,1620000000000 ,1616812538590 -1616812538619 ,112.5674607,26.86943584,61.68482971,181.8053276,182.5420476,13.445835,0.121462826,1620000000000 ,1620000000000 ,1620000000000 ,1616812538600 -1616812538628 ,112.5674606,26.86943463,61.68485641,181.8065844,182.5320003,13.435038,0.121384676,1620000000000 ,1620000000000 ,1620000000000 ,1616812538610 -1616812538637 ,112.5674606,26.86943342,61.68512726,181.8071308,182.5395499,13.425832,0.121297055,1620000000000 ,1620000000000 ,1620000000000 ,1616812538620 -1616812538647 ,112.5674605,26.86943221,61.68550873,181.8077591,182.5394141,13.420321,0.121243623,1620000000000 ,1620000000000 ,1620000000000 ,1616812538630 -1616812538657 ,112.5674604,26.86943099,61.68583679,181.8098628,182.5405656,13.42204,0.121238078,1620000000000 ,1620000000000 ,1620000000000 ,1616812538640 -1616812538668 ,112.5674604,26.86942978,61.68610001,181.8110923,182.5630949,13.426985,0.121274973,1620000000000 ,1620000000000 ,1620000000000 ,1616812538650 -1616812538678 ,112.5674603,26.86942857,61.68638992,181.8122671,182.5670257,13.429675,0.121310452,1620000000000 ,1620000000000 ,1620000000000 ,1616812538660 -1616812538688 ,112.5674603,26.86942736,61.68682861,181.8145893,182.5676898,13.426102,0.121295431,1620000000000 ,1620000000000 ,1620000000000 ,1616812538670 -1616812538699 ,112.5674602,26.86942615,61.68749619,181.8163105,182.5780521,13.419433,0.121247242,1620000000000 ,1620000000000 ,1620000000000 ,1616812538680 -1616812538710 ,112.5674602,26.86942494,61.68831253,181.8173761,182.5983903,13.412393,0.121189564,1620000000000 ,1620000000000 ,1620000000000 ,1616812538690 -1616812538718 ,112.5674601,26.86942373,61.68922043,181.8201081,182.6166946,13.405345,0.121125347,1620000000000 ,1620000000000 ,1620000000000 ,1616812538700 -1616812538728 ,112.5674601,26.86942252,61.69015884,181.818988,182.6221929,13.4025545,0.12109109,1620000000000 ,1620000000000 ,1620000000000 ,1616812538710 -1616812538738 ,112.56746,26.86942131,61.69114304,181.8198622,182.6257749,13.402044,0.121084464,1620000000000 ,1620000000000 ,1620000000000 ,1616812538720 -1616812538748 ,112.56746,26.8694201,61.69218826,181.8204906,182.6322069,13.403047,0.121095046,1620000000000 ,1620000000000 ,1620000000000 ,1616812538730 -1616812538760 ,112.5674599,26.86941889,61.69331741,181.8216108,182.6382482,13.403026,0.121100312,1620000000000 ,1620000000000 ,1620000000000 ,1616812538740 -1616812538770 ,112.5674598,26.86941768,61.694561,181.8207638,182.6461762,13.400316,0.121085081,1620000000000 ,1620000000000 ,1620000000000 ,1616812538750 -1616812538789 ,112.5674598,26.86941647,61.69592285,181.8223757,182.6584582,13.395412,0.121052777,1620000000000 ,1620000000000 ,1620000000000 ,1616812538760 -1616812538793 ,112.5674597,26.86941526,61.69734955,181.8238784,182.6762578,13.395215,0.121032949,1620000000000 ,1620000000000 ,1620000000000 ,1616812538770 -1616812538801 ,112.5674597,26.86941405,61.69869995,181.8259001,182.6783217,13.393898,0.121040865,1620000000000 ,1620000000000 ,1620000000000 ,1616812538780 -1616812538813 ,112.5674596,26.86941284,61.69985962,181.829124,182.692348,13.395935,0.121030872,1620000000000 ,1620000000000 ,1620000000000 ,1616812538790 -1616812538820 ,112.5674596,26.86941163,61.70098114,181.826228,182.6995958,13.396084,0.121047778,1620000000000 ,1620000000000 ,1620000000000 ,1616812538800 -1616812538832 ,112.5674595,26.86941043,61.70219421,181.8239604,182.6752913,13.391798,0.121020957,1620000000000 ,1620000000000 ,1620000000000 ,1616812538810 -1616812538841 ,112.5674594,26.86940922,61.70355225,181.8221299,182.6807084,13.388383,0.120998204,1620000000000 ,1620000000000 ,1620000000000 ,1616812538820 -1616812538851 ,112.5674594,26.86940801,61.70497131,181.8218567,182.7006417,13.384177,0.120961211,1620000000000 ,1620000000000 ,1620000000000 ,1616812538830 -1616812538860 ,112.5674593,26.8694068,61.7064209,181.8232773,182.7113174,13.382827,0.120941742,1620000000000 ,1620000000000 ,1620000000000 ,1616812538840 -1616812538870 ,112.5674593,26.86940559,61.70785141,181.8239877,182.6986691,13.384777,0.120958714,1620000000000 ,1620000000000 ,1620000000000 ,1616812538850 -1616812538882 ,112.5674592,26.86940438,61.70918274,181.8277033,182.6827204,13.389195,0.120993599,1620000000000 ,1620000000000 ,1620000000000 ,1616812538860 -1616812538890 ,112.5674592,26.86940317,61.71038055,181.8293699,182.6976998,13.388988,0.120998644,1620000000000 ,1620000000000 ,1620000000000 ,1616812538870 -1616812538900 ,112.5674591,26.86940197,61.71154785,181.8319927,182.7191882,13.3843,0.120970469,1620000000000 ,1620000000000 ,1620000000000 ,1616812538880 -1616812538914 ,112.567459,26.86940076,61.71281815,181.8320746,182.7329446,13.380289,0.120939087,1620000000000 ,1620000000000 ,1620000000000 ,1616812538890 -1616812538922 ,112.567459,26.86939955,61.71415329,181.8350799,182.7307333,13.378691,0.120919899,1620000000000 ,1620000000000 ,1620000000000 ,1616812538900 -1616812538931 ,112.5674589,26.86939834,61.71539307,181.8358176,182.738411,13.378831,0.120918526,1620000000000 ,1620000000000 ,1620000000000 ,1616812538910 -1616812538943 ,112.5674589,26.86939713,61.71644592,181.8342056,182.7669784,13.380825,0.120929423,1620000000000 ,1620000000000 ,1620000000000 ,1616812538920 -1616812538954 ,112.5674588,26.86939593,61.71731186,181.8325391,182.7816893,13.382291,0.12093931,1620000000000 ,1620000000000 ,1620000000000 ,1616812538930 -1616812538961 ,112.5674588,26.86939472,61.71805954,181.829725,182.7858223,13.383675,0.12095017,1620000000000 ,1620000000000 ,1620000000000 ,1616812538940 -1616812538975 ,112.5674587,26.86939351,61.71879196,181.8256542,182.777351,13.387237,0.120981817,1620000000000 ,1620000000000 ,1620000000000 ,1616812538950 -1616812538985 ,112.5674586,26.8693923,61.71952438,181.8243428,182.7680764,13.384028,0.120971621,1620000000000 ,1620000000000 ,1620000000000 ,1616812538960 -1616812538995 ,112.5674586,26.86939109,61.72019958,181.8222665,182.776648,13.380763,0.120938468,1620000000000 ,1620000000000 ,1620000000000 ,1616812538970 -1616812539002 ,112.5674585,26.86938989,61.72071838,181.8201628,182.7781074,13.379,0.120918087,1620000000000 ,1620000000000 ,1620000000000 ,1616812538980 -1616812539011 ,112.5674585,26.86938868,61.72100449,181.8212556,182.7659075,13.377623,0.120893101,1620000000000 ,1620000000000 ,1620000000000 ,1616812538990 -1616812539021 ,112.5674584,26.86938747,61.72109222,181.8207911,182.7674816,13.379,0.120892086,1620000000000 ,1620000000000 ,1620000000000 ,1616812539000 -1616812539032 ,112.5674583,26.86938626,61.72108078,181.8190426,182.7622238,13.38192,0.120912712,1620000000000 ,1620000000000 ,1620000000000 ,1616812539010 -1616812539043 ,112.5674583,26.86938506,61.721035,181.8164745,182.7421407,13.384275,0.120935323,1620000000000 ,1620000000000 ,1620000000000 ,1616812539020 -1616812539056 ,112.5674582,26.86938385,61.72097015,181.8142068,182.7393969,13.3861,0.120951252,1620000000000 ,1620000000000 ,1620000000000 ,1616812539030 -1616812539063 ,112.5674582,26.86938264,61.72083664,181.8132506,182.7460836,13.388318,0.120965027,1620000000000 ,1620000000000 ,1620000000000 ,1616812539040 -1616812539073 ,112.5674581,26.86938143,61.7205925,181.8115021,182.7369167,13.3887825,0.12097176,1620000000000 ,1620000000000 ,1620000000000 ,1616812539050 -1616812539082 ,112.5674581,26.86938022,61.72025299,181.8092345,182.7162664,13.387018,0.12095272,1620000000000 ,1620000000000 ,1620000000000 ,1616812539060 -1616812539092 ,112.567458,26.86937901,61.71985245,181.8072674,182.7022126,13.385756,0.120936132,1620000000000 ,1620000000000 ,1620000000000 ,1616812539070 -1616812539102 ,112.5674579,26.86937781,61.71939087,181.8090432,182.6929518,13.385646,0.120927686,1620000000000 ,1620000000000 ,1620000000000 ,1616812539080 -1616812539115 ,112.5674579,26.8693766,61.71884918,181.8099721,182.6972106,13.38756,0.120935745,1620000000000 ,1620000000000 ,1620000000000 ,1616812539100 -1616812539123 ,112.5674578,26.86937539,61.71822739,181.8127315,182.7044598,13.390886,0.12095917,1620000000000 ,1620000000000 ,1620000000000 ,1616812539110 -1616812539135 ,112.5674578,26.86937418,61.71754837,181.8143981,182.6972503,13.395263,0.120989199,1620000000000 ,1620000000000 ,1620000000000 ,1616812539120 -1616812539143 ,112.5674577,26.86937297,61.71684265,181.8152997,182.6869979,13.397808,0.121015561,1620000000000 ,1620000000000 ,1620000000000 ,1616812539130 -1616812539153 ,112.5674576,26.86937056,61.71549225,181.816857,182.6902594,13.393754,0.242003352,1620000000000 ,1620000000000 ,1620000000000 ,1616812539140 -1616812539162 ,112.5674575,26.86936935,61.7147522,181.8198349,182.6658418,13.398476,0.121012549,1620000000000 ,1620000000000 ,1620000000000 ,1616812539150 -1616812539172 ,112.5674575,26.86936814,61.71386337,181.8221025,182.6545757,13.397811,0.120992699,1620000000000 ,1620000000000 ,1620000000000 ,1616812539160 -1616812539184 ,112.5674574,26.86936693,61.71294022,181.8219933,182.6887437,13.405441,0.121059308,1620000000000 ,1620000000000 ,1620000000000 ,1616812539170 -1616812539195 ,112.5674574,26.86936572,61.71211243,181.8246434,182.6908695,13.409325,0.121095505,1620000000000 ,1620000000000 ,1620000000000 ,1616812539180 -1616812539205 ,112.5674574,26.86936572,61.71211243,181.8246434,-400,13.409325,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812539190 -1616812539215 ,112.5674573,26.8693633,61.71121216,181.8193978,182.4653813,13.423032,0.242463509,1620000000000 ,1620000000000 ,1620000000000 ,1616812539200 -1616812539227 ,112.5674572,26.86936208,61.71182632,181.8221845,181.6720454,13.414436,0.121844237,1620000000000 ,1620000000000 ,1620000000000 ,1616812539210 -1616812539236 ,112.5674572,26.86936086,61.71265411,181.8235505,181.6808033,13.418317,0.121853633,1620000000000 ,1620000000000 ,1620000000000 ,1616812539220 -1616812539246 ,112.5674572,26.86935964,61.71348572,181.8256269,181.6970361,13.430562,0.121947398,1620000000000 ,1620000000000 ,1620000000000 ,1616812539230 -1616812539254 ,112.5674571,26.86935842,61.71428299,181.8235505,181.7325469,13.439581,0.122038805,1620000000000 ,1620000000000 ,1620000000000 ,1616812539240 -1616812539265 ,112.5674571,26.8693572,61.71523666,181.8184142,181.7387264,13.436952,0.122047433,1620000000000 ,1620000000000 ,1620000000000 ,1616812539250 -1616812539274 ,112.5674571,26.86935598,61.7164917,181.8148899,181.7332299,13.429898,0.122001063,1620000000000 ,1620000000000 ,1620000000000 ,1616812539260 -1616812539284 ,112.567457,26.86935476,61.71803665,181.8124856,181.7336514,13.425477,0.121959198,1620000000000 ,1620000000000 ,1620000000000 ,1616812539270 -1616812539295 ,112.567457,26.86935354,61.71977615,181.8108191,181.7434349,13.425191,0.121950249,1620000000000 ,1620000000000 ,1620000000000 ,1616812539280 -1616812539313 ,112.5674569,26.86935233,61.72159576,181.8087427,181.7571661,13.42899,0.121982494,1620000000000 ,1620000000000 ,1620000000000 ,1616812539290 -1616812539317 ,112.5674569,26.86935111,61.72348022,181.806639,181.7576769,13.431095,0.122009649,1620000000000 ,1620000000000 ,1620000000000 ,1616812539300 -1616812539327 ,112.5674569,26.86934989,61.72547531,181.8010109,181.7509234,13.431491,0.122019521,1620000000000 ,1620000000000 ,1620000000000 ,1616812539310 -1616812539334 ,112.5674568,26.86934867,61.72757721,181.7962025,181.7478878,13.435024,0.12204491,1620000000000 ,1620000000000 ,1620000000000 ,1616812539320 -1616812539345 ,112.5674568,26.86934745,61.7297554,181.7927054,181.7658825,13.438531,0.122088913,1620000000000 ,1620000000000 ,1620000000000 ,1616812539330 -1616812539356 ,112.5674568,26.86934623,61.73194885,181.7871866,181.7904211,13.43468,0.122072413,1620000000000 ,1620000000000 ,1620000000000 ,1616812539340 -1616812539365 ,112.5674567,26.86934501,61.73413849,181.78134,181.7783359,13.430614,0.122038066,1620000000000 ,1620000000000 ,1620000000000 ,1616812539350 -1616812539375 ,112.5674567,26.86934379,61.73632431,181.776149,181.7540598,13.425062,0.121986647,1620000000000 ,1620000000000 ,1620000000000 ,1616812539360 -1616812539394 ,112.5674566,26.86934257,61.73845673,181.7719143,181.7584608,13.428249,0.121990843,1620000000000 ,1620000000000 ,1620000000000 ,1616812539370 -1616812539399 ,112.5674566,26.86934135,61.7404747,181.7664775,181.7732209,13.43545,0.122051976,1620000000000 ,1620000000000 ,1620000000000 ,1616812539380 -1616812539406 ,112.5674566,26.86934013,61.74237442,181.7608767,181.7789096,13.442397,0.122111106,1620000000000 ,1620000000000 ,1620000000000 ,1616812539390 -1616812539415 ,112.5674565,26.86933891,61.74429321,181.752216,181.7806696,13.447066,0.122165563,1620000000000 ,1620000000000 ,1620000000000 ,1616812539400 -1616812539427 ,112.5674565,26.86933768,61.74631119,181.7449214,181.7557871,13.4489765,0.122191619,1620000000000 ,1620000000000 ,1620000000000 ,1616812539410 -1616812539435 ,112.5674565,26.86933646,61.74834061,181.7389928,181.7300312,13.448787,0.122197384,1620000000000 ,1620000000000 ,1620000000000 ,1616812539420 -1616812539445 ,112.5674564,26.86933524,61.75024796,181.7343483,181.7293849,13.4492,0.122192791,1620000000000 ,1620000000000 ,1620000000000 ,1616812539430 -1616812539456 ,112.5674564,26.86933402,61.75196838,181.732108,181.7438212,13.45104,0.122205305,1620000000000 ,1620000000000 ,1620000000000 ,1616812539440 -1616812539467 ,112.5674563,26.8693328,61.7532692,181.7297037,182.1484248,13.452921,0.121879008,1620000000000 ,1620000000000 ,1620000000000 ,1616812539450 -1616812539476 ,112.5674563,26.86933159,61.75426865,181.7241303,182.5478911,13.455525,0.121576388,1620000000000 ,1620000000000 ,1620000000000 ,1616812539460 -1616812539488 ,112.5674562,26.86933037,61.75531387,181.7210431,182.5363209,13.457205,0.12159213,1620000000000 ,1620000000000 ,1620000000000 ,1616812539470 -1616812539497 ,112.5674562,26.86932916,61.75637817,181.7158794,182.5404436,13.460051,0.121615353,1620000000000 ,1620000000000 ,1620000000000 ,1616812539480 -1616812539506 ,112.5674561,26.86932794,61.75738907,181.7090219,182.5430006,13.463397,0.121641826,1620000000000 ,1620000000000 ,1620000000000 ,1616812539490 -1616812539516 ,112.5674561,26.86932673,61.75831604,181.7045413,182.541847,13.4678545,0.121678444,1620000000000 ,1620000000000 ,1620000000000 ,1616812539500 -1616812539527 ,112.567456,26.86932551,61.75914383,181.6986947,182.5219091,13.468297,0.12168524,1620000000000 ,1620000000000 ,1620000000000 ,1616812539510 -1616812539536 ,112.567456,26.8693243,61.75975418,181.6930939,182.4831524,13.476829,0.121732622,1620000000000 ,1620000000000 ,1620000000000 ,1616812539520 -1616812539547 ,112.5674559,26.86932308,61.7600708,181.6871653,182.4682968,13.474968,0.121738349,1620000000000 ,1620000000000 ,1620000000000 ,1616812539530 -1616812539557 ,112.5674559,26.86932186,61.76020813,181.6815099,182.5054011,13.481279,0.121758429,1620000000000 ,1620000000000 ,1620000000000 ,1616812539540 -1616812539567 ,112.5674558,26.86932065,61.76041412,181.677084,182.4935295,13.486846,0.121823526,1620000000000 ,1620000000000 ,1620000000000 ,1616812539550 -1616812539577 ,112.5674557,26.86931943,61.76074219,181.6723575,182.4477097,13.488109,0.121838156,1620000000000 ,1620000000000 ,1620000000000 ,1616812539560 -1616812539588 ,112.5674557,26.86931821,61.7612648,181.6657459,182.4367429,13.481022,0.121800301,1620000000000 ,1620000000000 ,1620000000000 ,1616812539570 -1616812539597 ,112.5674556,26.869317,61.76192093,181.6621122,182.4325971,13.476926,0.121746568,1620000000000 ,1620000000000 ,1620000000000 ,1616812539580 -1616812539606 ,112.5674556,26.86931578,61.76250839,181.6593255,182.4232129,13.485769,0.12179282,1620000000000 ,1620000000000 ,1620000000000 ,1616812539590 -1616812539616 ,112.5674555,26.86931456,61.76286697,181.6557191,182.4352234,13.501659,0.121915552,1620000000000 ,1620000000000 ,1620000000000 ,1616812539600 -1616812539628 ,112.5674555,26.86931334,61.76301193,181.6484245,182.4454787,13.513256,0.12203037,1620000000000 ,1620000000000 ,1620000000000 ,1616812539610 -1616812539637 ,112.5674554,26.86931212,61.76319122,181.6419768,182.4393158,13.511934,0.122045367,1620000000000 ,1620000000000 ,1620000000000 ,1616812539620 -1616812539647 ,112.5674554,26.8693109,61.76366043,181.6351193,182.4148303,13.503983,0.121992544,1620000000000 ,1620000000000 ,1620000000000 ,1616812539630 -1616812539657 ,112.5674553,26.86930968,61.76442337,181.6307206,182.4047853,13.4989395,0.121942246,1620000000000 ,1620000000000 ,1620000000000 ,1616812539640 -1616812539669 ,112.5674553,26.86930847,61.76531982,181.6282891,182.4140778,13.502685,0.121957136,1620000000000 ,1620000000000 ,1620000000000 ,1616812539650 -1616812539677 ,112.5674552,26.86930725,61.76620865,181.6237265,182.4129717,13.509629,0.12201402,1620000000000 ,1620000000000 ,1620000000000 ,1616812539660 -1616812539688 ,112.5674552,26.86930603,61.76707458,181.6170329,182.3956251,13.515534,0.122070035,1620000000000 ,1620000000000 ,1620000000000 ,1616812539670 -1616812539697 ,112.5674551,26.86930481,61.76800537,181.6099295,182.371814,13.518504,0.122106752,1620000000000 ,1620000000000 ,1620000000000 ,1616812539680 -1616812539714 ,112.5674551,26.86930359,61.76904297,181.6030994,182.3685534,13.522471,0.12213745,1620000000000 ,1620000000000 ,1620000000000 ,1616812539690 -1616812539717 ,112.567455,26.86930237,61.77023315,181.5982636,182.3794945,13.523084,0.122159111,1620000000000 ,1620000000000 ,1620000000000 ,1616812539700 -1616812539728 ,112.567455,26.86930115,61.77155685,181.5919525,182.3665183,13.523132,0.122165021,1620000000000 ,1620000000000 ,1620000000000 ,1616812539710 -1616812539738 ,112.5674549,26.86929993,61.77301025,181.5868435,182.3415463,13.521833,0.122164813,1620000000000 ,1620000000000 ,1620000000000 ,1616812539720 -1616812539751 ,112.5674549,26.86929871,61.77456284,181.5816252,182.3275451,13.521423,0.122156652,1620000000000 ,1620000000000 ,1620000000000 ,1616812539730 -1616812539758 ,112.5674548,26.86929748,61.77622986,181.5750409,182.3262787,13.524652,0.122185481,1620000000000 ,1620000000000 ,1620000000000 ,1616812539740 -1616812539769 ,112.5674548,26.86929626,61.77799606,181.5702052,182.3191687,13.526511,0.122212306,1620000000000 ,1620000000000 ,1620000000000 ,1616812539750 -1616812539778 ,112.5674547,26.86929504,61.77983093,181.5660524,182.3202524,13.530134,0.122243854,1620000000000 ,1620000000000 ,1620000000000 ,1616812539760 -1616812539788 ,112.5674547,26.86929382,61.78173828,181.5594954,182.3156043,13.532829,0.122275463,1620000000000 ,1620000000000 ,1620000000000 ,1616812539770 -1616812539798 ,112.5674546,26.8692926,61.78369522,181.5533483,182.3069594,13.535525,0.122304584,1620000000000 ,1620000000000 ,1620000000000 ,1616812539780 -1616812539808 ,112.5674546,26.86929138,61.78565216,181.5494414,182.3081042,13.537724,0.12232917,1620000000000 ,1620000000000 ,1620000000000 ,1616812539790 -1616812539826 ,112.5674545,26.86929015,61.78756714,181.5430757,182.3136871,13.539946,0.122352689,1620000000000 ,1620000000000 ,1620000000000 ,1616812539800 -1616812539830 ,112.5674545,26.86928893,61.78944016,181.5366826,182.3073625,13.540817,0.122363568,1620000000000 ,1620000000000 ,1620000000000 ,1616812539810 -1616812539839 ,112.5674544,26.86928771,61.79126358,181.5289781,182.2977273,13.544146,0.12239087,1620000000000 ,1620000000000 ,1620000000000 ,1616812539820 -1616812539850 ,112.5674544,26.86928648,61.79302216,181.5238418,182.2903262,13.548562,0.122426933,1620000000000 ,1620000000000 ,1620000000000 ,1616812539830 -1616812539859 ,112.5674543,26.86928526,61.79467773,181.5166292,182.2791732,13.5533085,0.122471435,1620000000000 ,1620000000000 ,1620000000000 ,1616812539840 -1616812539871 ,112.5674543,26.86928404,61.79618835,181.5115475,182.2741216,13.558888,0.12251679,1620000000000 ,1620000000000 ,1620000000000 ,1616812539850 -1616812539878 ,112.5674542,26.86928281,61.79753876,181.5060833,182.2777121,13.563487,0.122554321,1620000000000 ,1620000000000 ,1620000000000 ,1616812539860 -1616812539890 ,112.5674542,26.86928159,61.79873657,181.4993898,182.2696489,13.566629,0.122587368,1620000000000 ,1620000000000 ,1620000000000 ,1616812539870 -1616812539900 ,112.5674541,26.86928036,61.79979324,181.4928874,182.2437101,13.567641,0.122595339,1620000000000 ,1620000000000 ,1620000000000 ,1616812539880 -1616812539914 ,112.5674541,26.86927914,61.80068207,181.4876145,182.233425,13.573623,0.122635313,1620000000000 ,1620000000000 ,1620000000000 ,1616812539890 -1616812539921 ,112.567454,26.86927791,61.8013382,181.4814947,182.2479822,13.577131,0.12265521,1620000000000 ,1620000000000 ,1620000000000 ,1616812539900 -1616812539934 ,112.567454,26.86927668,61.80178452,181.4779976,182.262235,13.585171,0.122725342,1620000000000 ,1620000000000 ,1620000000000 ,1616812539910 -1616812539942 ,112.5674539,26.86927546,61.80209351,181.4723149,182.2454287,13.590343,0.122765166,1620000000000 ,1620000000000 ,1620000000000 ,1616812539920 -1616812539949 ,112.5674539,26.86927423,61.8024025,181.4648563,182.2295717,13.594133,0.122802551,1620000000000 ,1620000000000 ,1620000000000 ,1616812539930 -1616812539963 ,112.5674539,26.869273,61.80271912,181.4565235,182.2267508,13.594125,0.122812508,1620000000000 ,1620000000000 ,1620000000000 ,1616812539940 -1616812539969 ,112.5674538,26.86927178,61.80296326,181.4506495,182.2302727,13.598219,0.122836018,1620000000000 ,1620000000000 ,1620000000000 ,1616812539950 -1616812539980 ,112.5674538,26.86927055,61.80306625,181.4455132,182.2407901,13.605069,0.122885966,1620000000000 ,1620000000000 ,1620000000000 ,1616812539960 -1616812539993 ,112.5674537,26.86926932,61.80303192,181.4406228,182.2335644,13.609931,0.122929467,1620000000000 ,1620000000000 ,1620000000000 ,1616812539970 -1616812540005 ,112.5674537,26.86926809,61.80297852,181.4352133,182.2109437,13.611152,0.122947608,1620000000000 ,1620000000000 ,1620000000000 ,1616812539980 -1616812540010 ,112.5674536,26.86926686,61.80298233,181.4273722,182.1875946,13.613225,0.122962247,1620000000000 ,1620000000000 ,1620000000000 ,1616812539990 -1616812540021 ,112.5674536,26.86926563,61.80303192,181.4213344,182.1900337,13.617534,0.12299457,1620000000000 ,1620000000000 ,1620000000000 ,1616812540000 -1616812540032 ,112.5674535,26.8692644,61.80308533,181.4156516,182.1989125,13.623963,0.123045375,1620000000000 ,1620000000000 ,1620000000000 ,1616812540010 -1616812540040 ,112.5674535,26.86926317,61.80315781,181.4095591,182.1927268,13.62768,0.123089724,1620000000000 ,1620000000000 ,1620000000000 ,1616812540020 -1616812540050 ,112.5674534,26.86926194,61.80327606,181.404778,182.1650449,13.629362,0.123107166,1620000000000 ,1620000000000 ,1620000000000 ,1616812540030 -1616812540061 ,112.5674534,26.86926071,61.80342102,181.3988221,182.1445709,13.631794,0.1231268,1620000000000 ,1620000000000 ,1620000000000 ,1616812540040 -1616812540071 ,112.5674533,26.86925948,61.80356598,181.3942595,182.1475913,13.635819,0.123153831,1620000000000 ,1620000000000 ,1620000000000 ,1616812540050 -1616812540082 ,112.5674533,26.86925825,61.80374146,181.3874839,182.162586,13.643447,0.123216538,1620000000000 ,1620000000000 ,1620000000000 ,1616812540060 -1616812540091 ,112.5674532,26.86925702,61.80398178,181.3830307,182.1691775,13.645511,0.123257168,1620000000000 ,1620000000000 ,1620000000000 ,1616812540070 -1616812540102 ,112.5674532,26.86925579,61.80433273,181.3752169,182.1604444,13.644663,0.123258476,1620000000000 ,1620000000000 ,1620000000000 ,1616812540080 -1616812540112 ,112.5674531,26.86925456,61.80477905,181.3690698,182.1251523,13.643313,0.123245274,1620000000000 ,1620000000000 ,1620000000000 ,1616812540090 -1616812540121 ,112.5674531,26.86925332,61.80528641,181.3637422,182.1210358,13.643554,0.12324288,1620000000000 ,1620000000000 ,1620000000000 ,1616812540100 -1616812540134 ,112.5674531,26.86925209,61.80586243,181.3566661,182.1343554,13.6497135,0.12328737,1620000000000 ,1620000000000 ,1620000000000 ,1616812540110 -1616812540141 ,112.567453,26.86925086,61.8065033,181.3513932,182.1339725,13.656887,0.12335494,1620000000000 ,1620000000000 ,1620000000000 ,1616812540120 -1616812540151 ,112.567453,26.86924963,61.80718994,181.3443991,182.1311368,13.662105,0.123402212,1620000000000 ,1620000000000 ,1620000000000 ,1616812540130 -1616812540170 ,112.5674529,26.86924839,61.80791473,181.338935,182.1206431,13.666435,0.12345015,1620000000000 ,1620000000000 ,1620000000000 ,1616812540140 -1616812540173 ,112.5674529,26.86924716,61.80870819,181.3340172,182.0999147,13.667433,0.123468509,1620000000000 ,1620000000000 ,1620000000000 ,1616812540150 -1616812540185 ,112.5674528,26.86924593,61.80961609,181.3270778,182.1013279,13.667714,0.123475237,1620000000000 ,1620000000000 ,1620000000000 ,1616812540160 -1616812540193 ,112.5674528,26.86924469,61.81066895,181.3239905,182.1015571,13.668555,0.123484405,1620000000000 ,1620000000000 ,1620000000000 ,1616812540170 -1616812540202 ,112.5674527,26.86924346,61.81184006,181.3210672,182.0872032,13.671213,0.123508421,1620000000000 ,1620000000000 ,1620000000000 ,1616812540180 -1616812540212 ,112.5674527,26.86924222,61.81307602,181.3189088,182.0738959,13.675297,0.123542952,1620000000000 ,1620000000000 ,1620000000000 ,1616812540190 -1616812540222 ,112.5674527,26.86924099,61.81428146,181.3049753,181.9588464,13.665514,0.123313795,1620000000000 ,1620000000000 ,1620000000000 ,1616812540200 -1616812540233 ,112.5674526,26.86923976,61.81536484,181.2995657,181.7987745,13.670726,0.122932561,1620000000000 ,1620000000000 ,1620000000000 ,1616812540210 -1616812540242 ,112.5674526,26.86923853,61.81635666,181.2946207,181.8029613,13.674615,0.122962186,1620000000000 ,1620000000000 ,1620000000000 ,1616812540220 -1616812540253 ,112.5674525,26.8692373,61.81731415,181.2897303,181.8072222,13.676978,0.122991003,1620000000000 ,1620000000000 ,1620000000000 ,1616812540230 -1616812540264 ,112.5674525,26.86923607,61.81830597,181.2848399,181.8002394,13.67721,0.122999032,1620000000000 ,1620000000000 ,1620000000000 ,1616812540240 -1616812540273 ,112.5674525,26.86923484,61.81933594,181.278802,181.7723769,13.680131,0.123017526,1620000000000 ,1620000000000 ,1620000000000 ,1616812540260 -1616812540282 ,112.5674524,26.86923361,61.82023621,181.2726002,181.7542598,13.686719,0.123071626,1620000000000 ,1620000000000 ,1620000000000 ,1616812540270 -1616812540292 ,112.5674524,26.86923238,61.82091904,181.2665623,181.7832041,13.695391,0.123121858,1620000000000 ,1620000000000 ,1620000000000 ,1616812540280 -1616812540302 ,112.5674523,26.86923115,61.8215065,181.2629559,181.8117713,13.70428,0.123215017,1620000000000 ,1620000000000 ,1620000000000 ,1616812540280 -1616812540313 ,112.5674523,26.86922869,61.82304764,181.251126,181.7599414,13.703367,0.246509324,1620000000000 ,1620000000000 ,1620000000000 ,1616812540300 -1616812540328 ,112.5674522,26.86922746,61.82417679,181.246782,181.7447184,13.696831,0.12319239,1620000000000 ,1620000000000 ,1620000000000 ,1616812540310 -1616812540336 ,112.5674522,26.86922623,61.82529831,181.2439407,181.7448415,13.699123,0.123190235,1620000000000 ,1620000000000 ,1620000000000 ,1616812540320 -1616812540344 ,112.5674522,26.86922499,61.82621765,181.2386405,181.7637449,13.710954,0.123272927,1620000000000 ,1620000000000 ,1620000000000 ,1616812540330 -1616812540359 ,112.5674521,26.86922376,61.8269043,181.2351707,181.7697758,13.724112,0.123386607,1620000000000 ,1620000000000 ,1620000000000 ,1616812540340 -1616812540367 ,112.5674521,26.86922253,61.82753754,181.2280947,181.764411,13.728626,0.123452651,1620000000000 ,1620000000000 ,1620000000000 ,1616812540350 -1616812540374 ,112.567452,26.86922129,61.82836533,181.2215923,181.7329179,13.725872,0.123444084,1620000000000 ,1620000000000 ,1620000000000 ,1616812540360 -1616812540383 ,112.567452,26.86922006,61.82940292,181.2183411,181.7240928,13.723536,0.123428153,1620000000000 ,1620000000000 ,1620000000000 ,1616812540370 -1616812540400 ,112.567452,26.86921882,61.83047485,181.2159916,181.7361814,13.727285,0.123445003,1620000000000 ,1620000000000 ,1620000000000 ,1616812540380 -1616812540410 ,112.5674519,26.86921759,61.83140945,181.2146255,181.7375493,13.736168,0.123510429,1620000000000 ,1620000000000 ,1620000000000 ,1616812540390 -1616812540420 ,112.5674519,26.86921635,61.83214951,181.2114563,181.7300871,13.743329,0.123576906,1620000000000 ,1620000000000 ,1620000000000 ,1616812540400 -1616812540429 ,112.5674519,26.86921512,61.83275223,181.2089701,181.7111103,13.749002,0.123626721,1620000000000 ,1620000000000 ,1620000000000 ,1616812540410 -1616812540437 ,112.5674518,26.86921388,61.83328629,181.2058829,181.7109379,13.750722,0.123650451,1620000000000 ,1620000000000 ,1620000000000 ,1616812540420 -1616812540449 ,112.5674518,26.86921265,61.83385086,181.204189,181.7104025,13.753333,0.123670009,1620000000000 ,1620000000000 ,1620000000000 ,1616812540430 -1616812540456 ,112.5674517,26.86921141,61.83447266,181.2024951,181.7025277,13.755543,0.123694622,1620000000000 ,1620000000000 ,1620000000000 ,1616812540440 -1616812540467 ,112.5674517,26.86921017,61.83510971,181.2010198,181.8091677,13.760881,0.124016603,1620000000000 ,1620000000000 ,1620000000000 ,1616812540450 -1616812540476 ,112.5674517,26.86920893,61.83572006,181.1991893,181.9170451,13.767656,0.124358256,1620000000000 ,1620000000000 ,1620000000000 ,1616812540460 -1616812540485 ,112.5674516,26.86920768,61.83624268,181.1971949,181.9088488,13.770788,0.124386731,1620000000000 ,1620000000000 ,1620000000000 ,1616812540470 -1616812540495 ,112.5674516,26.86920644,61.83668518,181.1941896,181.894697,13.775579,0.124427584,1620000000000 ,1620000000000 ,1620000000000 ,1616812540480 -1616812540512 ,112.5674515,26.8692052,61.83707809,181.1894631,181.8961618,13.777206,0.124448617,1620000000000 ,1620000000000 ,1620000000000 ,1616812540490 -1616812540517 ,112.5674515,26.86920395,61.83753204,181.1845727,181.9072985,13.780567,0.124475208,1620000000000 ,1620000000000 ,1620000000000 ,1616812540500 -1616812540534 ,112.5674515,26.86920271,61.83808517,181.181622,181.8892288,13.783374,0.124507671,1620000000000 ,1620000000000 ,1620000000000 ,1616812540510 -1616812540544 ,112.5674514,26.86920146,61.83869553,181.1776605,181.8730336,13.788529,0.124547354,1620000000000 ,1620000000000 ,1620000000000 ,1616812540520 -1616812540546 ,112.5674514,26.86920022,61.83930588,181.1751197,181.8646469,13.792766,0.124587482,1620000000000 ,1620000000000 ,1620000000000 ,1616812540530 -1616812540556 ,112.5674513,26.86919897,61.83986664,181.1749831,181.8540819,13.795452,0.124611088,1620000000000 ,1620000000000 ,1620000000000 ,1616812540540 -1616812540568 ,112.5674513,26.86919773,61.84043884,181.1735624,181.8429877,13.797482,0.124635973,1620000000000 ,1620000000000 ,1620000000000 ,1616812540550 -1616812540575 ,112.5674513,26.86919648,61.84102631,181.1700107,181.8415453,13.80113,0.124664793,1620000000000 ,1620000000000 ,1620000000000 ,1616812540560 -1616812540586 ,112.5674512,26.86919524,61.84165955,181.1672786,181.8465774,13.804975,0.124698772,1620000000000 ,1620000000000 ,1620000000000 ,1616812540570 -1616812540600 ,112.5674512,26.86919399,61.84231186,181.166541,181.8411044,13.8088255,0.124733783,1620000000000 ,1620000000000 ,1620000000000 ,1616812540580 -1616812540605 ,112.5674511,26.86919274,61.84295273,181.164328,181.8396644,13.812321,0.124765119,1620000000000 ,1620000000000 ,1620000000000 ,1616812540590 -1616812540616 ,112.5674511,26.86919149,61.84351349,181.1639728,181.8330041,13.817287,0.124802816,1620000000000 ,1620000000000 ,1620000000000 ,1616812540600 -1616812540629 ,112.5674511,26.86919025,61.84399033,181.162197,181.8356904,13.820198,0.124834381,1620000000000 ,1620000000000 ,1620000000000 ,1616812540610 -1616812540640 ,112.567451,26.869189,61.84441376,181.1612408,181.8369651,13.826862,0.124880607,1620000000000 ,1620000000000 ,1620000000000 ,1616812540620 -1616812540646 ,112.567451,26.86918775,61.84481812,181.1604758,181.8412374,13.828269,0.124906201,1620000000000 ,1620000000000 ,1620000000000 ,1616812540630 -1616812540656 ,112.5674509,26.8691865,61.84521484,181.1578257,181.8443246,13.831605,0.124927418,1620000000000 ,1620000000000 ,1620000000000 ,1616812540640 -1616812540667 ,112.5674509,26.86918525,61.84561539,181.1529626,181.8426225,13.83408,0.124954788,1620000000000 ,1620000000000 ,1620000000000 ,1616812540650 -1616812540678 ,112.5674509,26.869184,61.84592819,181.1515965,181.8549072,13.839577,0.124982714,1620000000000 ,1620000000000 ,1620000000000 ,1616812540660 -1616812540688 ,112.5674508,26.86918275,61.84614944,181.1533177,181.871288,13.846243,0.125046855,1620000000000 ,1620000000000 ,1620000000000 ,1616812540670 -1616812540698 ,112.5674508,26.8691815,61.84637451,181.152662,181.8402498,13.848989,0.125077605,1620000000000 ,1620000000000 ,1620000000000 ,1616812540680 -1616812540706 ,112.5674507,26.86918025,61.8467598,181.1518697,181.8181927,13.852212,0.125109896,1620000000000 ,1620000000000 ,1620000000000 ,1616812540690 -1616812540716 ,112.5674507,26.869179,61.84727097,181.1512414,181.8151185,13.85437,0.125129249,1620000000000 ,1620000000000 ,1620000000000 ,1616812540700 -1616812540728 ,112.5674507,26.86917775,61.84776306,181.1532085,181.8239506,13.859628,0.125163843,1620000000000 ,1620000000000 ,1620000000000 ,1616812540710 -1616812540741 ,112.5674506,26.8691765,61.84820175,181.1532631,181.8513571,13.8626585,0.125198234,1620000000000 ,1620000000000 ,1620000000000 ,1616812540720 -1616812540748 ,112.5674506,26.86917525,61.84865189,181.1516512,181.8713482,13.867695,0.125242233,1620000000000 ,1620000000000 ,1620000000000 ,1616812540730 -1616812540764 ,112.5674505,26.869174,61.84921646,181.1506403,181.8572163,13.871769,0.125277878,1620000000000 ,1620000000000 ,1620000000000 ,1616812540740 -1616812540772 ,112.5674505,26.86917274,61.84992218,181.1487825,181.8439485,13.873517,0.125302273,1620000000000 ,1620000000000 ,1620000000000 ,1616812540750 -1616812540778 ,112.5674505,26.86917149,61.85073471,181.1463509,181.8585718,13.876139,0.125326009,1620000000000 ,1620000000000 ,1620000000000 ,1616812540760 -1616812540789 ,112.5674504,26.86917024,61.85156631,181.1452308,181.8802135,13.880764,0.125363109,1620000000000 ,1620000000000 ,1620000000000 ,1616812540770 -1616812540798 ,112.5674504,26.86916898,61.85242844,181.1427719,181.9034373,13.885901,0.125407754,1620000000000 ,1620000000000 ,1620000000000 ,1616812540780 -1616812540807 ,112.5674503,26.86916773,61.85337067,181.1413786,181.9100117,13.89445,0.125484484,1620000000000 ,1620000000000 ,1620000000000 ,1616812540790 -1616812540818 ,112.5674503,26.86916648,61.85443878,181.1362969,181.9083892,13.894186,0.125502672,1620000000000 ,1620000000000 ,1620000000000 ,1616812540800 -1616812540828 ,112.5674502,26.86916522,61.85565567,181.1308874,181.9018643,13.8938055,0.125503946,1620000000000 ,1620000000000 ,1620000000000 ,1616812540810 -1616812540838 ,112.5674502,26.86916397,61.85700607,181.1287564,181.9070141,13.891322,0.12548881,1620000000000 ,1620000000000 ,1620000000000 ,1616812540820 -1616812540849 ,112.5674502,26.86916271,61.8584671,181.1266527,181.9184572,13.894236,0.125505811,1620000000000 ,1620000000000 ,1620000000000 ,1616812540830 -1616812540859 ,112.5674501,26.86916146,61.86005402,181.1255325,181.9317009,13.90059,0.125562406,1620000000000 ,1620000000000 ,1620000000000 ,1616812540840 -1616812540869 ,112.5674501,26.8691602,61.86169434,181.1242758,181.919104,13.9065075,0.125619903,1620000000000 ,1620000000000 ,1620000000000 ,1616812540850 -1616812540880 ,112.56745,26.86915895,61.86338043,181.1194127,181.9119721,13.910342,0.125661861,1620000000000 ,1620000000000 ,1620000000000 ,1616812540860 -1616812540888 ,112.56745,26.86915769,61.86513901,181.1138666,181.9176866,13.91245,0.125689909,1620000000000 ,1620000000000 ,1620000000000 ,1616812540870 -1616812540898 ,112.56745,26.86915643,61.86700058,181.1079653,181.9273211,13.912757,0.125702618,1620000000000 ,1620000000000 ,1620000000000 ,1616812540880 -1616812540909 ,112.5674499,26.86915518,61.86892319,181.101299,181.9456281,13.9145155,0.12571359,1620000000000 ,1620000000000 ,1620000000000 ,1616812540890 -1616812540918 ,112.5674499,26.86915392,61.87085724,181.0975834,181.9569111,13.918352,0.125754478,1620000000000 ,1620000000000 ,1620000000000 ,1616812540900 -1616812540934 ,112.5674498,26.86915266,61.87277603,181.0930755,181.9480651,13.921432,0.125780838,1620000000000 ,1620000000000 ,1620000000000 ,1616812540910 -1616812540951 ,112.5674498,26.86915141,61.87467194,181.0896877,181.9328292,13.925328,0.125819004,1620000000000 ,1620000000000 ,1620000000000 ,1616812540920 -1616812540955 ,112.5674497,26.86915015,61.87644958,181.0861087,181.9298173,13.930559,0.125857094,1620000000000 ,1620000000000 ,1620000000000 ,1616812540930 -1616812540961 ,112.5674497,26.86914889,61.87806702,181.0823931,181.947415,13.936796,0.125912926,1620000000000 ,1620000000000 ,1620000000000 ,1616812540940 -1616812540969 ,112.5674497,26.86914763,61.87954712,181.078978,181.951665,13.941114,0.125951878,1620000000000 ,1620000000000 ,1620000000000 ,1616812540950 -1616812540981 ,112.5674496,26.86914637,61.88095093,181.0735138,181.9430315,13.944955,0.125986394,1620000000000 ,1620000000000 ,1620000000000 ,1616812540960 -1616812540993 ,112.5674496,26.86914511,61.88224792,181.0695523,181.9141385,13.946495,0.126002449,1620000000000 ,1620000000000 ,1620000000000 ,1616812540970 -1616812541005 ,112.5674495,26.86914385,61.88335419,181.0665197,181.9045676,13.956018,0.126065561,1620000000000 ,1620000000000 ,1620000000000 ,1616812540980 -1616812541013 ,112.5674495,26.86914259,61.88422775,181.0606457,181.9080694,13.959425,0.126092546,1620000000000 ,1620000000000 ,1620000000000 ,1616812540990 -1616812541022 ,112.5674494,26.86914133,61.8849678,181.0584328,181.92095,13.9675455,0.126168766,1620000000000 ,1620000000000 ,1620000000000 ,1616812541000 -1616812541031 ,112.5674494,26.86914007,61.88568115,181.0547444,181.8795558,13.972792,0.126214459,1620000000000 ,1620000000000 ,1620000000000 ,1616812541010 -1616812541042 ,112.5674494,26.86913881,61.88646698,181.049253,181.8509729,13.975926,0.126251131,1620000000000 ,1620000000000 ,1620000000000 ,1616812541020 -1616812541052 ,112.5674493,26.86913755,61.88732147,181.0447724,181.8501063,13.974679,0.126248934,1620000000000 ,1620000000000 ,1620000000000 ,1616812541030 -1616812541060 ,112.5674493,26.86913628,61.88815689,181.0414392,181.8469544,13.977323,0.126261968,1620000000000 ,1620000000000 ,1620000000000 ,1616812541040 -1616812541071 ,112.5674492,26.86913502,61.88890076,181.0393082,181.8433717,13.984406,0.126314621,1620000000000 ,1620000000000 ,1620000000000 ,1616812541050 -1616812541082 ,112.5674492,26.86913376,61.88954544,181.0357292,181.8260748,13.9928055,0.126385028,1620000000000 ,1620000000000 ,1620000000000 ,1616812541060 -1616812541091 ,112.5674492,26.8691325,61.89017487,181.0330518,181.8093284,13.998688,0.126443407,1620000000000 ,1620000000000 ,1620000000000 ,1616812541070 -1616812541100 ,112.5674491,26.86913123,61.89088821,181.0280247,181.78716,14.003677,0.126496818,1620000000000 ,1620000000000 ,1620000000000 ,1616812541080 -1616812541111 ,112.5674491,26.86912997,61.89170837,181.0240086,181.7804277,14.002932,0.126509997,1620000000000 ,1620000000000 ,1620000000000 ,1616812541090 -1616812541122 ,112.567449,26.8691287,61.89253616,181.0193367,181.7791583,14.002354,0.126499854,1620000000000 ,1620000000000 ,1620000000000 ,1616812541100 -1616812541134 ,112.567449,26.86912744,61.89331818,181.0172877,181.7624194,14.004984,0.126519887,1620000000000 ,1620000000000 ,1620000000000 ,1616812541110 -1616812541155 ,112.567449,26.86912617,61.89401245,181.0127251,181.7356895,14.008962,0.126546661,1620000000000 ,1620000000000 ,1620000000000 ,1616812541120 -1616812541161 ,112.5674489,26.86912491,61.89466858,181.0086543,181.7184484,14.012484,0.126582725,1620000000000 ,1620000000000 ,1620000000000 ,1616812541130 -1616812541164 ,112.5674489,26.86912364,61.89525986,181.0081352,181.7052314,14.017391,0.126622527,1620000000000 ,1620000000000 ,1620000000000 ,1616812541140 -1616812541172 ,112.5674488,26.86912238,61.89582062,181.009993,181.7060925,14.022458,0.126667039,1620000000000 ,1620000000000 ,1620000000000 ,1616812541150 -1616812541182 ,112.5674488,26.86912111,61.89643478,181.0081079,181.6954809,14.027655,0.126714154,1620000000000 ,1620000000000 ,1620000000000 ,1616812541160 -1616812541191 ,112.5674488,26.86911984,61.89714813,181.0057037,181.6735318,14.02945,0.126748743,1620000000000 ,1620000000000 ,1620000000000 ,1616812541170 -1616812541202 ,112.5674487,26.86911857,61.89784241,181.0034087,181.659048,14.031137,0.126760626,1620000000000 ,1620000000000 ,1620000000000 ,1616812541180 -1616812541212 ,112.5674487,26.86911731,61.89844131,181.0033541,181.6704609,14.034753,0.126786102,1620000000000 ,1620000000000 ,1620000000000 ,1616812541190 -1616812541223 ,112.5674487,26.86911604,61.89888763,180.9931908,181.5248673,14.025392,0.126609125,1620000000000 ,1620000000000 ,1620000000000 ,1616812541200 -1616812541235 ,112.5674486,26.86911478,61.89934921,180.9902128,181.263242,14.029521,0.12630616,1620000000000 ,1620000000000 ,1620000000000 ,1616812541210 -1616812541242 ,112.5674486,26.86911352,61.89984131,180.9881364,181.2536664,14.032265,0.126335943,1620000000000 ,1620000000000 ,1620000000000 ,1616812541220 -1616812541252 ,112.5674486,26.86911225,61.90034103,180.9860874,181.249157,14.034891,0.126360009,1620000000000 ,1620000000000 ,1620000000000 ,1616812541230 -1616812541261 ,112.5674486,26.86911099,61.90077591,180.9855683,181.2478198,14.040153,0.126395365,1620000000000 ,1620000000000 ,1620000000000 ,1616812541240 -1616812541272 ,112.5674485,26.86910973,61.90106964,180.9861967,181.252617,14.04448,0.1264339,1620000000000 ,1620000000000 ,1620000000000 ,1616812541250 -1616812541282 ,112.5674485,26.86910846,61.90118408,180.9846667,181.2435079,14.048244,0.126458815,1620000000000 ,1620000000000 ,1620000000000 ,1616812541270 -1616812541294 ,112.5674485,26.8691072,61.90106583,180.9834919,181.2339714,14.056693,0.12652051,1620000000000 ,1620000000000 ,1620000000000 ,1616812541280 -1616812541303 ,112.5674484,26.86910593,61.90065002,180.9830275,181.2332562,14.060893,0.126551275,1620000000000 ,1620000000000 ,1620000000000 ,1616812541280 -1616812541313 ,112.5674484,26.8691034,61.89935684,180.9794484,181.2530289,14.078095,0.253313029,1620000000000 ,1620000000000 ,1620000000000 ,1616812541300 -1616812541323 ,112.5674484,26.8691034,61.89935684,180.9794484,-400,14.078095,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812541310 -1616812541333 ,112.5674483,26.86910086,61.89858246,180.9742302,181.2546401,14.072637,0.253395222,1620000000000 ,1620000000000 ,1620000000000 ,1616812541320 -1616812541343 ,112.5674483,26.8690996,61.89847565,180.9721811,181.283376,14.068114,0.126635893,1620000000000 ,1620000000000 ,1620000000000 ,1616812541330 -1616812541353 ,112.5674483,26.86909833,61.89842987,180.9704053,181.2932346,14.074948,0.126669383,1620000000000 ,1620000000000 ,1620000000000 ,1616812541340 -1616812541368 ,112.5674482,26.86909707,61.89827728,180.9678371,181.2931901,14.087079,0.126764157,1620000000000 ,1620000000000 ,1620000000000 ,1616812541350 -1616812541374 ,112.5674482,26.86909707,61.89827728,180.9678371,-400,14.087079,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812541350 -1616812541394 ,112.5674482,26.86909453,61.89785004,180.9551603,181.3130727,14.095894,0.253730822,1620000000000 ,1620000000000 ,1620000000000 ,1616812541370 -1616812541403 ,112.5674482,26.86909326,61.8979187,180.9494229,181.3077908,14.093048,0.126854842,1620000000000 ,1620000000000 ,1620000000000 ,1616812541380 -1616812541413 ,112.5674482,26.86909326,61.8979187,180.9494229,-400,14.093048,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812541390 -1616812541417 ,112.5674481,26.86909072,61.89873505,180.9349703,181.3319018,14.09571,0.25373026,1620000000000 ,1620000000000 ,1620000000000 ,1616812541400 -1616812541427 ,112.5674481,26.86908946,61.8993721,180.9301891,181.3362121,14.096744,0.126891325,1620000000000 ,1620000000000 ,1620000000000 ,1616812541410 -1616812541434 ,112.567448,26.86908819,61.90011978,180.9232223,181.3311353,14.099445,0.126913946,1620000000000 ,1620000000000 ,1620000000000 ,1616812541420 -1616812541445 ,112.567448,26.86908692,61.90088272,180.9157638,181.3258227,14.103654,0.126950896,1620000000000 ,1620000000000 ,1620000000000 ,1616812541430 -1616812541454 ,112.567448,26.86908565,61.90164185,180.9087696,181.3327747,14.108883,0.126991746,1620000000000 ,1620000000000 ,1620000000000 ,1616812541440 -1616812541467 ,112.567448,26.86908438,61.90242004,180.9019668,181.4835229,14.114564,0.127254703,1620000000000 ,1620000000000 ,1620000000000 ,1616812541450 -1616812541475 ,112.5674479,26.8690831,61.90332031,180.8963933,181.6371779,14.117298,0.127505034,1620000000000 ,1620000000000 ,1620000000000 ,1616812541460 -1616812541485 ,112.5674479,26.86908183,61.90441132,180.8893446,181.6328533,14.117175,0.127515685,1620000000000 ,1620000000000 ,1620000000000 ,1616812541470 -1616812541500 ,112.5674478,26.86908055,61.90576553,180.8848093,181.6196713,14.113975,0.127498189,1620000000000 ,1620000000000 ,1620000000000 ,1616812541480 -1616812541504 ,112.5674478,26.86907928,61.90733337,180.8804653,181.6055299,14.115176,0.127499158,1620000000000 ,1620000000000 ,1620000000000 ,1616812541490 -1616812541514 ,112.5674478,26.869078,61.90899277,180.8760394,181.6022408,14.124293,0.12756967,1620000000000 ,1620000000000 ,1620000000000 ,1616812541500 -1616812541524 ,112.5674477,26.86907673,61.91065598,180.8739084,181.603512,14.129358,0.127630823,1620000000000 ,1620000000000 ,1620000000000 ,1616812541510 -1616812541534 ,112.5674477,26.86907545,61.91238403,180.870384,181.6224921,14.128751,0.127643525,1620000000000 ,1620000000000 ,1620000000000 ,1616812541520 -1616812541556 ,112.5674477,26.86907417,61.91423416,180.863827,181.6051381,14.128663,0.127646652,1620000000000 ,1620000000000 ,1620000000000 ,1616812541530 -1616812541558 ,112.5674476,26.8690729,61.91614914,180.8590732,181.5892636,14.127995,0.127641935,1620000000000 ,1620000000000 ,1620000000000 ,1616812541540 -1616812541566 ,112.5674476,26.86907162,61.91803741,180.8541281,181.5958212,14.130639,0.127656376,1620000000000 ,1620000000000 ,1620000000000 ,1616812541550 -1616812541577 ,112.5674476,26.86907035,61.91990662,180.8502486,181.612838,14.135492,0.127703428,1620000000000 ,1620000000000 ,1620000000000 ,1616812541560 -1616812541587 ,112.5674475,26.86906907,61.92182159,180.8468062,181.5940719,14.138433,0.1277318,1620000000000 ,1620000000000 ,1620000000000 ,1616812541570 -1616812541598 ,112.5674475,26.86906779,61.92385101,180.844238,181.5633798,14.139233,0.12775343,1620000000000 ,1620000000000 ,1620000000000 ,1616812541580 -1616812541606 ,112.5674475,26.86906651,61.92593765,180.8418611,181.5337853,14.14131,0.12776907,1620000000000 ,1620000000000 ,1620000000000 ,1616812541590 -1616812541618 ,112.5674474,26.86906524,61.92797089,180.8396481,181.5207129,14.145394,0.127801419,1620000000000 ,1620000000000 ,1620000000000 ,1616812541600 -1616812541626 ,112.5674474,26.86906396,61.92993164,180.8375171,181.5266909,14.149889,0.127841431,1620000000000 ,1620000000000 ,1620000000000 ,1616812541610 -1616812541638 ,112.5674474,26.86906268,61.93185043,180.8364516,181.5236508,14.15238,0.127875294,1620000000000 ,1620000000000 ,1620000000000 ,1616812541620 -1616812541650 ,112.5674473,26.8690614,61.93378067,180.8404951,181.5096252,14.152455,0.127882943,1620000000000 ,1620000000000 ,1620000000000 ,1616812541630 -1616812541656 ,112.5674473,26.86906012,61.93571854,180.8451942,181.4844036,14.152845,0.127883817,1620000000000 ,1620000000000 ,1620000000000 ,1616812541640 -1616812541668 ,112.5674473,26.86905885,61.93756485,180.8507404,181.46614,14.155527,0.127900133,1620000000000 ,1620000000000 ,1620000000000 ,1616812541650 -1616812541681 ,112.5674472,26.86905757,61.93924332,180.8544013,181.472514,14.160202,0.127934908,1620000000000 ,1620000000000 ,1620000000000 ,1616812541660 -1616812541688 ,112.5674472,26.86905629,61.94065857,180.8586087,181.474919,14.165809,0.127972473,1620000000000 ,1620000000000 ,1620000000000 ,1616812541670 -1616812541696 ,112.5674472,26.86905501,61.94180679,180.8612042,181.4751423,14.168615,0.127996275,1620000000000 ,1620000000000 ,1620000000000 ,1616812541680 -1616812541708 ,112.5674471,26.86905373,61.94268036,180.8622697,181.4497106,14.17504,0.128038218,1620000000000 ,1620000000000 ,1620000000000 ,1616812541690 -1616812541721 ,112.5674471,26.86905245,61.94332504,180.8620238,181.42637,14.178169,0.128062482,1620000000000 ,1620000000000 ,1620000000000 ,1616812541700 -1616812541727 ,112.5674471,26.86905117,61.94376373,180.8646739,181.4547918,14.189078,0.12813625,1620000000000 ,1620000000000 ,1620000000000 ,1616812541710 -1616812541736 ,112.567447,26.86904989,61.9440918,180.8674333,181.4454925,14.197661,0.128208851,1620000000000 ,1620000000000 ,1620000000000 ,1616812541720 -1616812541748 ,112.567447,26.8690486,61.94436264,180.8713129,181.4347749,14.19997,0.128253564,1620000000000 ,1620000000000 ,1620000000000 ,1616812541730 -1616812541758 ,112.567447,26.86904732,61.94472885,180.8740176,181.4414651,14.1931925,0.128218718,1620000000000 ,1620000000000 ,1620000000000 ,1616812541740 -1616812541767 ,112.5674469,26.86904604,61.94529343,180.8778425,181.4360034,14.184442,0.128135474,1620000000000 ,1620000000000 ,1620000000000 ,1616812541750 -1616812541777 ,112.5674469,26.86904476,61.94589233,180.881886,181.4293291,14.190976,0.128156561,1620000000000 ,1620000000000 ,1620000000000 ,1616812541760 -1616812541787 ,112.5674469,26.86904348,61.94633865,180.8873502,181.4414136,14.204767,0.128262507,1620000000000 ,1620000000000 ,1620000000000 ,1616812541770 -1616812541797 ,112.5674468,26.86904219,61.94661331,180.8887162,181.4728872,14.2151165,0.128364863,1620000000000 ,1620000000000 ,1620000000000 ,1616812541780 -1616812541808 ,112.5674468,26.86904091,61.94695663,180.8865579,181.4749159,14.214263,0.128387151,1620000000000 ,1620000000000 ,1620000000000 ,1616812541790 -1616812541818 ,112.5674468,26.86903963,61.94753647,180.8868311,181.4517347,14.209119,0.128350663,1620000000000 ,1620000000000 ,1620000000000 ,1616812541800 -1616812541829 ,112.5674467,26.86903834,61.94833374,180.8869677,181.455582,14.207138,0.128327735,1620000000000 ,1620000000000 ,1620000000000 ,1616812541810 -1616812541838 ,112.5674467,26.86903706,61.94923782,180.8884157,181.4680454,14.20958,0.128340834,1620000000000 ,1620000000000 ,1620000000000 ,1616812541820 -1616812541847 ,112.5674467,26.86903578,61.95017624,180.8872955,181.4767335,14.213505,0.128380314,1620000000000 ,1620000000000 ,1620000000000 ,1616812541830 -1616812541857 ,112.5674466,26.86903449,61.95111465,180.8860115,181.4631035,14.2206545,0.128436952,1620000000000 ,1620000000000 ,1620000000000 ,1616812541840 -1616812541868 ,112.5674466,26.86903321,61.95206833,180.8857109,181.4606722,14.224502,0.128475579,1620000000000 ,1620000000000 ,1620000000000 ,1616812541850 -1616812541878 ,112.5674466,26.86903192,61.95306396,180.886913,181.4755088,14.229273,0.128526911,1620000000000 ,1620000000000 ,1620000000000 ,1616812541860 -1616812541888 ,112.5674465,26.86903064,61.95412064,180.8882518,181.4730602,14.227852,0.128527129,1620000000000 ,1620000000000 ,1620000000000 ,1616812541870 -1616812541900 ,112.5674465,26.86902936,61.9552002,180.8911204,181.4438845,14.226387,0.128511262,1620000000000 ,1620000000000 ,1620000000000 ,1616812541880 -1616812541910 ,112.5674465,26.86902807,61.9562912,180.8932515,181.4450908,14.224555,0.128497945,1620000000000 ,1620000000000 ,1620000000000 ,1616812541890 -1616812541921 ,112.5674464,26.86902679,61.95740509,180.8937706,181.4654876,14.224975,0.128495935,1620000000000 ,1620000000000 ,1620000000000 ,1616812541900 -1616812541928 ,112.5674464,26.8690255,61.95853424,180.8942623,181.4655295,14.23077,0.128538106,1620000000000 ,1620000000000 ,1620000000000 ,1616812541910 -1616812541939 ,112.5674464,26.86902422,61.9596138,180.8950819,181.4637199,14.239457,0.128610136,1620000000000 ,1620000000000 ,1620000000000 ,1616812541920 -1616812541948 ,112.5674463,26.86902293,61.96066666,180.8940984,181.4714036,14.24655,0.128677116,1620000000000 ,1620000000000 ,1620000000000 ,1616812541930 -1616812541958 ,112.5674463,26.86902164,61.9617424,180.8943716,181.4674519,14.247165,0.128705199,1620000000000 ,1620000000000 ,1620000000000 ,1616812541940 -1616812541976 ,112.5674463,26.86902036,61.96290588,180.8950546,181.4674255,14.245862,0.128696413,1620000000000 ,1620000000000 ,1620000000000 ,1616812541950 -1616812541978 ,112.5674462,26.86901907,61.96411514,180.8995899,181.4790098,14.246103,0.128696292,1620000000000 ,1620000000000 ,1620000000000 ,1616812541960 -1616812541989 ,112.5674462,26.86901778,61.96533585,180.9047262,181.4850096,14.246656,0.128703798,1620000000000 ,1620000000000 ,1620000000000 ,1616812541970 -1616812542001 ,112.5674462,26.8690165,61.96654892,180.9100264,181.4811287,14.248177,0.128715866,1620000000000 ,1620000000000 ,1620000000000 ,1616812541980 -1616812542010 ,112.5674461,26.86901521,61.96775818,180.9131136,181.4879294,14.252703,0.128750056,1620000000000 ,1620000000000 ,1620000000000 ,1616812541990 -1616812542019 ,112.5674461,26.86901392,61.96894073,180.9201351,181.4979161,14.257572,0.128792067,1620000000000 ,1620000000000 ,1620000000000 ,1616812542000 -1616812542030 ,112.5674461,26.86901263,61.97014236,180.9262823,181.5033887,14.259494,0.128818903,1620000000000 ,1620000000000 ,1620000000000 ,1616812542010 -1616812542041 ,112.567446,26.86901135,61.9713974,180.9324294,181.497299,14.260525,0.128833494,1620000000000 ,1620000000000 ,1620000000000 ,1616812542020 -1616812542050 ,112.567446,26.86901006,61.97265625,180.9366368,181.5021664,14.261181,0.128842877,1620000000000 ,1620000000000 ,1620000000000 ,1616812542030 -1616812542062 ,112.567446,26.86900877,61.97375107,180.9411994,181.5044575,14.268786,0.128876479,1620000000000 ,1620000000000 ,1620000000000 ,1616812542040 -1616812542083 ,112.5674459,26.86900748,61.9745903,180.9481662,181.5203261,14.270046,0.128907153,1620000000000 ,1620000000000 ,1620000000000 ,1616812542050 -1616812542088 ,112.5674459,26.86900619,61.97517014,180.9568269,181.5738996,14.277462,0.128941799,1620000000000 ,1620000000000 ,1620000000000 ,1616812542060 -1616812542106 ,112.5674459,26.8690049,61.97574997,180.9632472,181.5740013,14.283528,0.1290133,1620000000000 ,1620000000000 ,1620000000000 ,1616812542070 -1616812542109 ,112.5674458,26.86900361,61.97652435,180.9691758,181.5480102,14.283638,0.129023163,1620000000000 ,1620000000000 ,1620000000000 ,1616812542080 -1616812542112 ,112.5674458,26.86900232,61.97753143,180.9726183,181.5731178,14.279568,0.129003064,1620000000000 ,1620000000000 ,1620000000000 ,1616812542090 -1616812542123 ,112.5674458,26.86900103,61.97855377,180.9779731,181.6001514,14.278666,0.128984551,1620000000000 ,1620000000000 ,1620000000000 ,1616812542100 -1616812542133 ,112.5674457,26.86899974,61.97943115,180.9849946,181.6328738,14.284597,0.129014058,1620000000000 ,1620000000000 ,1620000000000 ,1616812542110 -1616812542140 ,112.5674457,26.86899845,61.98011017,180.9928083,181.6467762,14.294452,0.129090532,1620000000000 ,1620000000000 ,1620000000000 ,1616812542120 -1616812542151 ,112.5674456,26.86899716,61.98069763,180.9997204,181.6388271,14.30174,0.129163462,1620000000000 ,1620000000000 ,1620000000000 ,1616812542130 -1616812542161 ,112.5674456,26.86899587,61.98137665,181.004283,181.6305152,14.30282,0.129186493,1620000000000 ,1620000000000 ,1620000000000 ,1616812542140 -1616812542172 ,112.5674456,26.86899458,61.98229218,181.0084084,181.6422282,14.297274,0.129156865,1620000000000 ,1620000000000 ,1620000000000 ,1616812542150 -1616812542187 ,112.5674455,26.86899329,61.98339462,181.0155665,181.6832352,14.295715,0.129133092,1620000000000 ,1620000000000 ,1620000000000 ,1616812542160 -1616812542192 ,112.5674455,26.868992,61.98455429,181.0193914,181.7179454,14.300802,0.1291665,1620000000000 ,1620000000000 ,1620000000000 ,1616812542170 -1616812542203 ,112.5674455,26.86899071,61.9856987,181.0221508,181.7223025,14.305273,0.129207931,1620000000000 ,1620000000000 ,1620000000000 ,1616812542180 -1616812542212 ,112.5674454,26.86898941,61.98682785,181.0261669,181.7210082,14.3099785,0.129252879,1620000000000 ,1620000000000 ,1620000000000 ,1616812542200 -1616812542222 ,112.5674454,26.86898812,61.9879303,181.028981,181.7209658,14.315899,0.129298933,1620000000000 ,1620000000000 ,1620000000000 ,1616812542210 -1616812542232 ,112.5674453,26.86898682,61.98822021,181.0248282,181.8344215,14.338775,0.129998013,1620000000000 ,1620000000000 ,1620000000000 ,1616812542220 -1616812542242 ,112.5674453,26.86898422,61.98907089,181.0273691,181.8917703,14.331225,0.260120203,1620000000000 ,1620000000000 ,1620000000000 ,1616812542230 -1616812542253 ,112.5674452,26.86898292,61.98971939,181.0324507,181.9023151,14.329002,0.130018706,1620000000000 ,1620000000000 ,1620000000000 ,1616812542240 -1616812542263 ,112.5674452,26.86898162,61.99044418,181.0340626,181.9063987,14.331976,0.130040264,1620000000000 ,1620000000000 ,1620000000000 ,1616812542250 -1616812542274 ,112.5674451,26.86898032,61.99116135,181.0381334,181.898411,14.339823,0.130097499,1620000000000 ,1620000000000 ,1620000000000 ,1616812542260 -1616812542284 ,112.5674451,26.86898032,61.99116135,181.0381334,-400,14.339823,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812542270 -1616812542293 ,112.567445,26.86897772,61.99239349,181.0507556,181.9052299,14.350952,0.260357861,1620000000000 ,1620000000000 ,1620000000000 ,1616812542280 -1616812542302 ,112.567445,26.86897772,61.99239349,181.0507556,-400,14.350952,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812542290 -1616812542313 ,112.567445,26.86897512,61.99381638,181.061438,181.9076749,14.350624,0.260445854,1620000000000 ,1620000000000 ,1620000000000 ,1616812542300 -1616812542326 ,112.5674449,26.86897382,61.9947052,181.0675032,181.9095294,14.350349,0.130223893,1620000000000 ,1620000000000 ,1620000000000 ,1616812542310 -1616812542337 ,112.5674449,26.86897252,61.99560547,181.0746066,181.9068413,14.352203,0.130237681,1620000000000 ,1620000000000 ,1620000000000 ,1616812542320 -1616812542344 ,112.5674448,26.86897121,61.99645996,181.0814095,181.9106989,14.354335,0.130254479,1620000000000 ,1620000000000 ,1620000000000 ,1616812542330 -1616812542355 ,112.5674448,26.86896991,61.99724579,181.0894691,181.9098984,14.357986,0.130278645,1620000000000 ,1620000000000 ,1620000000000 ,1616812542340 -1616812542364 ,112.5674447,26.86896861,61.99797821,181.0985669,181.902498,14.36075,0.130310685,1620000000000 ,1620000000000 ,1620000000000 ,1616812542350 -1616812542374 ,112.5674447,26.86896731,61.99865723,181.1078014,181.8984414,14.3632555,0.130329205,1620000000000 ,1620000000000 ,1620000000000 ,1616812542360 -1616812542384 ,112.5674446,26.868966,61.99930954,181.118074,181.9047611,14.365505,0.130347365,1620000000000 ,1620000000000 ,1620000000000 ,1616812542370 -1616812542393 ,112.5674446,26.8689647,61.99991226,181.1271171,181.9064045,14.368052,0.130368669,1620000000000 ,1620000000000 ,1620000000000 ,1616812542380 -1616812542405 ,112.5674446,26.8689634,62.00043488,181.1346303,181.9000905,14.377134,0.130431415,1620000000000 ,1620000000000 ,1620000000000 ,1616812542390 -1616812542415 ,112.5674445,26.86896209,62.00082016,181.1456679,181.8908906,14.377742,0.130463515,1620000000000 ,1620000000000 ,1620000000000 ,1616812542400 -1616812542425 ,112.5674445,26.86896079,62.00104523,181.1574978,181.9161813,14.385668,0.130507457,1620000000000 ,1620000000000 ,1620000000000 ,1616812542410 -1616812542435 ,112.5674444,26.86895948,62.00126266,181.1657214,181.9197719,14.388015,0.130546399,1620000000000 ,1620000000000 ,1620000000000 ,1616812542420 -1616812542454 ,112.5674444,26.86895818,62.00157166,181.1734531,181.9102078,14.38428,0.130524947,1620000000000 ,1620000000000 ,1620000000000 ,1616812542430 -1616812542457 ,112.5674443,26.86895688,62.0019722,181.1844361,181.9255407,14.380698,0.13049848,1620000000000 ,1620000000000 ,1620000000000 ,1616812542440 -1616812542465 ,112.5674443,26.86895557,62.0023613,181.1966485,181.9360704,14.382167,0.130495167,1620000000000 ,1620000000000 ,1620000000000 ,1616812542450 -1616812542475 ,112.5674443,26.86895427,62.0034256,181.210063,181.8856828,14.391728,0.129986345,1620000000000 ,1620000000000 ,1620000000000 ,1616812542460 -1616812542484 ,112.5674442,26.86895297,62.00437164,181.2245156,181.9054646,14.401798,0.13007638,1620000000000 ,1620000000000 ,1620000000000 ,1616812542470 -1616812542494 ,112.5674442,26.86895167,62.00521469,181.236728,181.9050689,14.408783,0.130145704,1620000000000 ,1620000000000 ,1620000000000 ,1616812542480 -1616812542505 ,112.5674441,26.86895037,62.00606537,181.2450882,181.9106023,14.405889,0.130143421,1620000000000 ,1620000000000 ,1620000000000 ,1616812542490 -1616812542520 ,112.5674441,26.86894907,62.0069809,181.2528199,181.9326007,14.402795,0.130117084,1620000000000 ,1620000000000 ,1620000000000 ,1616812542500 -1616812542527 ,112.567444,26.86894777,62.00792313,181.2594316,181.9581972,14.404551,0.130118369,1620000000000 ,1620000000000 ,1620000000000 ,1616812542510 -1616812542539 ,112.567444,26.86894647,62.00885773,181.2678464,181.9711349,14.408917,0.130157195,1620000000000 ,1620000000000 ,1620000000000 ,1616812542520 -1616812542548 ,112.5674439,26.86894517,62.0097847,181.2768349,181.9838984,14.414867,0.130213891,1620000000000 ,1620000000000 ,1620000000000 ,1616812542530 -1616812542557 ,112.5674439,26.86894387,62.010746,181.2855775,181.9883988,14.418374,0.130247561,1620000000000 ,1620000000000 ,1620000000000 ,1616812542540 -1616812542567 ,112.5674439,26.86894256,62.01169586,181.296779,181.9876402,14.420502,0.130276971,1620000000000 ,1620000000000 ,1620000000000 ,1616812542550 -1616812542576 ,112.5674438,26.86894126,62.01261902,181.3094285,182.0030362,14.419871,0.130270674,1620000000000 ,1620000000000 ,1620000000000 ,1616812542560 -1616812542586 ,112.5674438,26.86893996,62.01348495,181.3237173,182.0239805,14.421526,0.130282585,1620000000000 ,1620000000000 ,1620000000000 ,1616812542570 -1616812542596 ,112.5674437,26.86893866,62.01424789,181.3378695,182.02225,14.42628,0.130317189,1620000000000 ,1620000000000 ,1620000000000 ,1616812542580 -1616812542606 ,112.5674437,26.86893736,62.01488495,181.346011,182.0273724,14.430119,0.130350993,1620000000000 ,1620000000000 ,1620000000000 ,1616812542590 -1616812542617 ,112.5674436,26.86893605,62.01545334,181.351202,182.0401258,14.433246,0.130377248,1620000000000 ,1620000000000 ,1620000000000 ,1616812542600 -1616812542627 ,112.5674436,26.86893475,62.01602554,181.3584693,182.0757991,14.437203,0.130412281,1620000000000 ,1620000000000 ,1620000000000 ,1616812542610 -1616812542637 ,112.5674435,26.86893345,62.01663589,181.3687965,182.1108684,14.440859,0.130452628,1620000000000 ,1620000000000 ,1620000000000 ,1616812542620 -1616812542646 ,112.5674435,26.86893214,62.01733398,181.3776485,182.116702,14.439731,0.130459858,1620000000000 ,1620000000000 ,1620000000000 ,1616812542630 -1616812542657 ,112.5674434,26.86893084,62.01811218,181.3862545,182.1070821,14.438612,0.130447879,1620000000000 ,1620000000000 ,1620000000000 ,1616812542640 -1616812542667 ,112.5674434,26.86892953,62.01882172,181.3937404,182.1219862,14.442857,0.130469955,1620000000000 ,1620000000000 ,1620000000000 ,1616812542650 -1616812542677 ,112.5674433,26.86892823,62.0193367,181.4021279,182.1593042,14.450648,0.1305295,1620000000000 ,1620000000000 ,1620000000000 ,1616812542660 -1616812542687 ,112.5674433,26.86892692,62.01966858,181.409122,182.1989901,14.456087,0.130583234,1620000000000 ,1620000000000 ,1620000000000 ,1616812542670 -1616812542696 ,112.5674432,26.86892562,62.0200119,181.41628,182.2074412,14.456825,0.130600509,1620000000000 ,1620000000000 ,1620000000000 ,1616812542680 -1616812542708 ,112.5674432,26.86892431,62.02051163,181.4251319,182.2055559,14.455577,0.130598178,1620000000000 ,1620000000000 ,1620000000000 ,1616812542690 -1616812542718 ,112.5674431,26.86892301,62.02112961,181.4331642,182.2026666,14.45541,0.130594884,1620000000000 ,1620000000000 ,1620000000000 ,1616812542700 -1616812542727 ,112.5674431,26.8689217,62.02169037,181.4402676,182.2187442,14.457651,0.130608131,1620000000000 ,1620000000000 ,1620000000000 ,1616812542710 -1616812542737 ,112.567443,26.8689204,62.02206039,181.4480541,182.2434246,14.462542,0.130639918,1620000000000 ,1620000000000 ,1620000000000 ,1616812542720 -1616812542748 ,112.567443,26.86891909,62.02223206,181.4537641,182.2663553,14.47122,0.130702797,1620000000000 ,1620000000000 ,1620000000000 ,1616812542730 -1616812542757 ,112.5674429,26.86891779,62.02229691,181.4586545,182.2790937,14.473995,0.130745529,1620000000000 ,1620000000000 ,1620000000000 ,1616812542740 -1616812542768 ,112.5674429,26.86891648,62.02235031,181.4635723,182.2835126,14.476923,0.130768208,1620000000000 ,1620000000000 ,1620000000000 ,1616812542750 -1616812542777 ,112.5674428,26.86891517,62.0225029,181.4682714,182.2802072,14.476813,0.130773078,1620000000000 ,1620000000000 ,1620000000000 ,1616812542760 -1616812542790 ,112.5674428,26.86891387,62.02275467,181.4755934,182.3010956,14.479788,0.130795332,1620000000000 ,1620000000000 ,1620000000000 ,1616812542770 -1616812542797 ,112.5674427,26.86891256,62.0230484,181.4824509,182.3202143,14.481905,0.130819413,1620000000000 ,1620000000000 ,1620000000000 ,1616812542780 -1616812542808 ,112.5674427,26.86891125,62.02332306,181.487997,182.3200321,14.482118,0.130823396,1620000000000 ,1620000000000 ,1620000000000 ,1616812542790 -1616812542820 ,112.5674426,26.86890995,62.02359772,181.4958654,182.3277078,14.48421,0.130832015,1620000000000 ,1620000000000 ,1620000000000 ,1616812542800 -1616812542828 ,112.5674426,26.86890864,62.02386856,181.502477,182.3493373,14.489141,0.130876736,1620000000000 ,1620000000000 ,1620000000000 ,1616812542810 -1616812542839 ,112.5674425,26.86890733,62.02412415,181.510564,182.3618647,14.494595,0.130920792,1620000000000 ,1620000000000 ,1620000000000 ,1616812542820 -1616812542849 ,112.5674425,26.86890602,62.02445602,181.5144981,182.3741311,14.498541,0.130966739,1620000000000 ,1620000000000 ,1620000000000 ,1616812542830 -1616812542863 ,112.5674424,26.86890471,62.02494431,181.5175307,182.3837895,14.498462,0.130977776,1620000000000 ,1620000000000 ,1620000000000 ,1616812542840 -1616812542870 ,112.5674423,26.8689034,62.0255661,181.5195798,182.3992393,14.496177,0.130965174,1620000000000 ,1620000000000 ,1620000000000 ,1616812542850 -1616812542880 ,112.5674423,26.8689021,62.02620697,181.522831,182.4008714,14.495755,0.130957472,1620000000000 ,1620000000000 ,1620000000000 ,1616812542860 -1616812542891 ,112.5674422,26.86890079,62.02679825,181.5220387,182.405919,14.4997225,0.130981771,1620000000000 ,1620000000000 ,1620000000000 ,1616812542870 -1616812542900 ,112.5674422,26.86889948,62.02735138,181.5214103,182.4067413,14.5062895,0.131032136,1620000000000 ,1620000000000 ,1620000000000 ,1616812542880 -1616812542911 ,112.5674421,26.86889817,62.02786636,181.5225031,182.4092657,14.511562,0.13108295,1620000000000 ,1620000000000 ,1620000000000 ,1616812542890 -1616812542920 ,112.5674421,26.86889686,62.02840424,181.522066,182.419609,14.514986,0.131122902,1620000000000 ,1620000000000 ,1620000000000 ,1616812542900 -1616812542932 ,112.567442,26.86889555,62.02909088,181.5227763,182.4230605,14.512276,0.131116037,1620000000000 ,1620000000000 ,1620000000000 ,1616812542910 -1616812542940 ,112.567442,26.86889424,62.02997971,181.5239511,182.4175218,14.510128,0.131096904,1620000000000 ,1620000000000 ,1620000000000 ,1616812542920 -1616812542951 ,112.5674419,26.86889293,62.03095245,181.52488,182.4128504,14.512561,0.131111644,1620000000000 ,1620000000000 ,1620000000000 ,1616812542930 -1616812542961 ,112.5674418,26.86889162,62.03186035,181.5232135,182.4135647,14.517829,0.131149872,1620000000000 ,1620000000000 ,1620000000000 ,1616812542940 -1616812542970 ,112.5674418,26.86889031,62.03268814,181.5202355,182.4326649,14.523387,0.131204315,1620000000000 ,1620000000000 ,1620000000000 ,1616812542950 -1616812542980 ,112.5674417,26.868889,62.03351212,181.514143,182.4396513,14.525427,0.131228658,1620000000000 ,1620000000000 ,1620000000000 ,1616812542960 -1616812542990 ,112.5674417,26.86888768,62.03438187,181.5101541,182.449313,14.527078,0.131245893,1620000000000 ,1620000000000 ,1620000000000 ,1616812542970 -1616812543002 ,112.5674416,26.86888637,62.03531647,181.5069303,182.4426468,14.527329,0.131254418,1620000000000 ,1620000000000 ,1620000000000 ,1616812542980 -1616812543010 ,112.5674416,26.86888506,62.03627777,181.5025043,182.4365442,14.529158,0.131268341,1620000000000 ,1620000000000 ,1620000000000 ,1616812542990 -1616812543023 ,112.5674415,26.86888375,62.03723145,181.4977505,182.4298267,14.531706,0.131287519,1620000000000 ,1620000000000 ,1620000000000 ,1616812543000 -1616812543033 ,112.5674415,26.86888244,62.03813171,181.4924776,182.424148,14.535096,0.131319211,1620000000000 ,1620000000000 ,1620000000000 ,1616812543010 -1616812543043 ,112.5674414,26.86888113,62.03897858,181.4867676,182.4182138,14.536661,0.131333401,1620000000000 ,1620000000000 ,1620000000000 ,1616812543020 -1616812543052 ,112.5674413,26.86887981,62.03978348,181.4796642,182.4081434,14.53921,0.131356708,1620000000000 ,1620000000000 ,1620000000000 ,1616812543030 -1616812543061 ,112.5674413,26.8688785,62.04056549,181.4728067,182.3944897,14.541619,0.131375613,1620000000000 ,1620000000000 ,1620000000000 ,1616812543040 -1616812543072 ,112.5674412,26.86887719,62.04133987,181.4668781,182.3825078,14.545098,0.131404849,1620000000000 ,1620000000000 ,1620000000000 ,1616812543050 -1616812543082 ,112.5674412,26.86887587,62.04211807,181.460485,182.3649261,14.550353,0.131448281,1620000000000 ,1620000000000 ,1620000000000 ,1616812543060 -1616812543091 ,112.5674411,26.86887456,62.04292679,181.4542559,182.3471364,14.550327,0.131462526,1620000000000 ,1620000000000 ,1620000000000 ,1616812543070 -1616812543102 ,112.5674411,26.86887325,62.04375458,181.4476443,182.3339423,14.551997,0.131470942,1620000000000 ,1620000000000 ,1620000000000 ,1616812543080 -1616812543118 ,112.567441,26.86887193,62.04457855,181.4430544,182.3136547,14.551601,0.131469114,1620000000000 ,1620000000000 ,1620000000000 ,1616812543090 -1616812543122 ,112.567441,26.86887062,62.0453186,181.4381913,182.3015397,14.5553465,0.131493523,1620000000000 ,1620000000000 ,1620000000000 ,1616812543100 -1616812543133 ,112.5674409,26.86886931,62.04596329,181.4367706,182.298499,14.560572,0.131537271,1620000000000 ,1620000000000 ,1620000000000 ,1616812543110 -1616812543142 ,112.5674409,26.86886799,62.04650879,181.4367433,182.2803346,14.564382,0.131568881,1620000000000 ,1620000000000 ,1620000000000 ,1616812543120 -1616812543153 ,112.5674408,26.86886668,62.04705048,181.4344756,182.2652736,14.565553,0.131584362,1620000000000 ,1620000000000 ,1620000000000 ,1616812543130 -1616812543165 ,112.5674408,26.86886536,62.04766083,181.4307873,182.2539125,14.566387,0.131597919,1620000000000 ,1620000000000 ,1620000000000 ,1616812543140 -1616812543173 ,112.5674407,26.86886405,62.04827881,181.4273176,182.2507327,14.569017,0.131614032,1620000000000 ,1620000000000 ,1620000000000 ,1616812543160 -1616812543182 ,112.5674407,26.86886273,62.04881668,181.425651,182.2529959,14.573467,0.131644165,1620000000000 ,1620000000000 ,1620000000000 ,1616812543170 -1616812543193 ,112.5674406,26.86886141,62.04925919,181.4225638,182.258003,14.576975,0.131679319,1620000000000 ,1620000000000 ,1620000000000 ,1616812543170 -1616812543203 ,112.5674406,26.8688601,62.04969406,181.4190941,182.2383637,14.57805,0.13169475,1620000000000 ,1620000000000 ,1620000000000 ,1616812543180 -1616812543213 ,112.5674405,26.86885878,62.05016327,181.41628,182.2132736,14.580215,0.131710495,1620000000000 ,1620000000000 ,1620000000000 ,1616812543190 -1616812543224 ,112.5674405,26.86885747,62.0508461,181.4110891,182.0094683,14.582828,0.131763885,1620000000000 ,1620000000000 ,1620000000000 ,1616812543210 -1616812543233 ,112.5674404,26.86885483,62.05288696,181.4122366,181.7151158,14.5915985,0.26372306,1620000000000 ,1620000000000 ,1620000000000 ,1616812543220 -1616812543242 ,112.5674404,26.86885483,62.05288696,181.4122366,-400,14.5915985,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812543230 -1616812543252 ,112.5674403,26.86885219,62.05500412,181.4113076,181.7133049,14.598491,0.263859847,1620000000000 ,1620000000000 ,1620000000000 ,1616812543240 -1616812543264 ,112.5674403,26.86885087,62.05610657,181.4095864,181.6961679,14.597464,0.131952514,1620000000000 ,1620000000000 ,1620000000000 ,1616812543250 -1616812543273 ,112.5674402,26.86884955,62.05717468,181.4077833,181.6946101,14.594404,0.131917168,1620000000000 ,1620000000000 ,1620000000000 ,1616812543260 -1616812543286 ,112.5674402,26.86884824,62.05822754,181.4056522,181.707601,14.596372,0.131932805,1620000000000 ,1620000000000 ,1620000000000 ,1616812543270 -1616812543297 ,112.5674401,26.86884692,62.05931091,181.4045048,181.7291516,14.598929,0.13194887,1620000000000 ,1620000000000 ,1620000000000 ,1616812543280 -1616812543306 ,112.5674401,26.86884692,62.05931091,181.4045048,-400,14.598929,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812543290 -1616812543314 ,112.5674401,26.86884428,62.06166077,181.3980024,181.7155259,14.608323,0.263999249,1620000000000 ,1620000000000 ,1620000000000 ,1616812543300 -1616812543324 ,112.56744,26.86884296,62.06284332,181.3977292,181.7134553,14.61654,0.132089703,1620000000000 ,1620000000000 ,1620000000000 ,1616812543310 -1616812543334 ,112.56744,26.86884164,62.06398392,181.3949698,181.7238734,14.62022,0.132143342,1620000000000 ,1620000000000 ,1620000000000 ,1616812543320 -1616812543343 ,112.5674399,26.86884032,62.06514359,181.3933852,181.7319365,14.618452,0.132136288,1620000000000 ,1620000000000 ,1620000000000 ,1616812543330 -1616812543353 ,112.5674399,26.868839,62.06641388,181.391664,181.7304359,14.615568,0.132112998,1620000000000 ,1620000000000 ,1620000000000 ,1616812543340 -1616812543370 ,112.5674399,26.86883768,62.06782913,181.3908444,181.7333306,14.613453,0.132094174,1620000000000 ,1620000000000 ,1620000000000 ,1616812543350 -1616812543376 ,112.5674398,26.86883636,62.06929779,181.3874293,181.7409574,14.616033,0.132105564,1620000000000 ,1620000000000 ,1620000000000 ,1616812543360 -1616812543386 ,112.5674398,26.86883503,62.07068634,181.3832492,181.7523634,14.62309,0.132157545,1620000000000 ,1620000000000 ,1620000000000 ,1616812543370 -1616812543395 ,112.5674397,26.86883371,62.07200241,181.3793424,181.7732189,14.631405,0.132227866,1620000000000 ,1620000000000 ,1620000000000 ,1616812543380 -1616812543405 ,112.5674397,26.86883239,62.07336807,181.3760092,181.7746822,14.635162,0.132276498,1620000000000 ,1620000000000 ,1620000000000 ,1616812543390 -1616812543414 ,112.5674397,26.86883107,62.07487869,181.3722663,181.7559447,14.634241,0.132282901,1620000000000 ,1620000000000 ,1620000000000 ,1616812543400 -1616812543424 ,112.5674396,26.86882975,62.07646942,181.3668841,181.741763,14.633928,0.132278954,1620000000000 ,1620000000000 ,1620000000000 ,1616812543410 -1616812543434 ,112.5674396,26.86882842,62.07796097,181.3643979,181.7473949,14.637405,0.132285085,1620000000000 ,1620000000000 ,1620000000000 ,1616812543420 -1616812543444 ,112.5674395,26.8688271,62.07931519,181.3634963,181.7805476,14.634837,0.132306308,1620000000000 ,1620000000000 ,1620000000000 ,1616812543430 -1616812543454 ,112.5674395,26.86882578,62.08060455,181.3610648,181.785032,14.644662,0.132323081,1620000000000 ,1620000000000 ,1620000000000 ,1616812543440 -1616812543465 ,112.5674395,26.86882446,62.08196259,181.3584147,181.942088,14.647048,0.132359011,1620000000000 ,1620000000000 ,1620000000000 ,1616812543450 -1616812543478 ,112.5674394,26.86882313,62.08343887,181.3558192,182.1114369,14.641173,0.132292273,1620000000000 ,1620000000000 ,1620000000000 ,1616812543460 -1616812543486 ,112.5674394,26.86882181,62.08508301,181.3526227,182.1170749,14.638837,0.132271259,1620000000000 ,1620000000000 ,1620000000000 ,1616812543470 -1616812543497 ,112.5674393,26.86882049,62.08666992,181.3524861,182.1325321,14.638042,0.132242533,1620000000000 ,1620000000000 ,1620000000000 ,1616812543480 -1616812543506 ,112.5674393,26.86881917,62.0880661,181.3560104,182.1404626,14.6437645,0.132280565,1620000000000 ,1620000000000 ,1620000000000 ,1616812543490 -1616812543515 ,112.5674392,26.86881785,62.08921814,181.3592889,182.1260481,14.657301,0.1323815,1620000000000 ,1620000000000 ,1620000000000 ,1616812543500 -1616812543527 ,112.5674392,26.86881652,62.09024048,181.3596168,182.100184,14.663126,0.132449014,1620000000000 ,1620000000000 ,1620000000000 ,1616812543510 -1616812543535 ,112.5674391,26.8688152,62.09135056,181.3580595,182.0793155,14.659755,0.132444317,1620000000000 ,1620000000000 ,1620000000000 ,1616812543520 -1616812543546 ,112.5674391,26.86881388,62.09270477,181.3565568,182.0877296,14.650441,0.132376142,1620000000000 ,1620000000000 ,1620000000000 ,1616812543530 -1616812543562 ,112.567439,26.86881255,62.09425354,181.3588518,182.1106835,14.651331,0.132362777,1620000000000 ,1620000000000 ,1620000000000 ,1616812543540 -1616812543569 ,112.567439,26.86881123,62.0958252,181.3624035,182.1164027,14.657528,0.132411763,1620000000000 ,1620000000000 ,1620000000000 ,1616812543550 -1616812543577 ,112.5674389,26.86880991,62.09732437,181.3644252,182.0949505,14.665299,0.132477454,1620000000000 ,1620000000000 ,1620000000000 ,1616812543560 -1616812543587 ,112.5674389,26.86880858,62.09871292,181.3650809,182.0708953,14.670437,0.132530735,1620000000000 ,1620000000000 ,1620000000000 ,1616812543570 -1616812543598 ,112.5674388,26.86880726,62.10000992,181.368578,182.0718407,14.671238,0.132544775,1620000000000 ,1620000000000 ,1620000000000 ,1616812543580 -1616812543606 ,112.5674388,26.86880593,62.10129929,181.3728127,182.0939535,14.670322,0.132540849,1620000000000 ,1620000000000 ,1620000000000 ,1616812543590 -1616812543616 ,112.5674387,26.86880461,62.10268402,181.3782222,182.0989734,14.668082,0.132526802,1620000000000 ,1620000000000 ,1620000000000 ,1616812543600 -1616812543625 ,112.5674387,26.86880328,62.10417557,181.3818559,182.0861625,14.668065,0.132525427,1620000000000 ,1620000000000 ,1620000000000 ,1616812543610 -1616812543637 ,112.5674386,26.86880196,62.10569382,181.385271,182.0762964,14.672023,0.132550796,1620000000000 ,1620000000000 ,1620000000000 ,1616812543620 -1616812543647 ,112.5674386,26.86880063,62.1071167,181.3921831,182.07829,14.674989,0.132578958,1620000000000 ,1620000000000 ,1620000000000 ,1616812543630 -1616812543656 ,112.5674385,26.86879931,62.1084137,181.3961719,182.1012308,14.675374,0.132585649,1620000000000 ,1620000000000 ,1620000000000 ,1616812543640 -1616812543668 ,112.5674385,26.86879798,62.10968399,181.4003247,182.1014918,14.680359,0.132623677,1620000000000 ,1620000000000 ,1620000000000 ,1616812543650 -1616812543676 ,112.5674384,26.86879666,62.11099625,181.4054064,182.0962143,14.682718,0.132647044,1620000000000 ,1620000000000 ,1620000000000 ,1616812543660 -1616812543686 ,112.5674384,26.86879533,62.1123085,181.4114989,182.1078476,14.686258,0.132679676,1620000000000 ,1620000000000 ,1620000000000 ,1616812543670 -1616812543700 ,112.5674383,26.86879401,62.11356354,181.4170723,182.1237188,14.688205,0.132703073,1620000000000 ,1620000000000 ,1620000000000 ,1616812543680 -1616812543709 ,112.5674383,26.86879268,62.11473846,181.4247495,182.1364026,14.688658,0.132706164,1620000000000 ,1620000000000 ,1620000000000 ,1616812543690 -1616812543717 ,112.5674382,26.86879135,62.11586761,181.4293393,182.1357517,14.692098,0.13272992,1620000000000 ,1620000000000 ,1620000000000 ,1616812543700 -1616812543734 ,112.5674382,26.86879003,62.11695862,181.436552,182.133962,14.692063,0.132736922,1620000000000 ,1620000000000 ,1620000000000 ,1616812543710 -1616812543743 ,112.5674381,26.8687887,62.11801529,181.4419069,182.1479877,14.693082,0.132741847,1620000000000 ,1620000000000 ,1620000000000 ,1616812543720 -1616812543750 ,112.5674381,26.86878737,62.11900711,181.4470159,182.1700052,14.696634,0.132765096,1620000000000 ,1620000000000 ,1620000000000 ,1616812543730 -1616812543758 ,112.567438,26.86878605,62.11990738,181.453163,182.1835601,14.700645,0.132796082,1620000000000 ,1620000000000 ,1620000000000 ,1616812543740 -1616812543769 ,112.567438,26.86878472,62.12071228,181.456906,182.1783855,14.705245,0.132835761,1620000000000 ,1620000000000 ,1620000000000 ,1616812543750 -1616812543777 ,112.5674379,26.86878339,62.12147522,181.4567147,182.1778691,14.70717,0.132859879,1620000000000 ,1620000000000 ,1620000000000 ,1616812543760 -1616812543788 ,112.5674379,26.86878206,62.12229919,181.4560044,182.1794317,14.709616,0.13287767,1620000000000 ,1620000000000 ,1620000000000 ,1616812543770 -1616812543798 ,112.5674378,26.86878074,62.12314987,181.4594741,182.184533,14.709258,0.132885196,1620000000000 ,1620000000000 ,1620000000000 ,1616812543780 -1616812543808 ,112.5674378,26.86877941,62.12400055,181.4632444,182.2095652,14.709855,0.132890032,1620000000000 ,1620000000000 ,1620000000000 ,1616812543790 -1616812543818 ,112.5674377,26.86877808,62.12488937,181.4686539,182.228907,14.710401,0.13289587,1620000000000 ,1620000000000 ,1620000000000 ,1616812543800 -1616812543830 ,112.5674377,26.86877675,62.12587357,181.4746098,182.2255434,14.707774,0.132889607,1620000000000 ,1620000000000 ,1620000000000 ,1616812543810 -1616812543838 ,112.5674376,26.86877542,62.1268959,181.481522,182.2503447,14.712354,0.132897549,1620000000000 ,1620000000000 ,1620000000000 ,1616812543820 -1616812543849 ,112.5674376,26.8687741,62.12790298,181.4879697,182.2510659,14.717064,0.132959483,1620000000000 ,1620000000000 ,1620000000000 ,1616812543830 -1616812543857 ,112.5674375,26.86877277,62.12883377,181.4905652,182.2616192,14.715795,0.132948362,1620000000000 ,1620000000000 ,1620000000000 ,1616812543840 -1616812543870 ,112.5674375,26.86877144,62.12978363,181.4892538,182.2827914,14.715887,0.132950026,1620000000000 ,1620000000000 ,1620000000000 ,1616812543850 -1616812543883 ,112.5674374,26.86877011,62.13074112,181.4883795,182.3019221,14.716264,0.132950077,1620000000000 ,1620000000000 ,1620000000000 ,1616812543860 -1616812543893 ,112.5674374,26.86876878,62.13166428,181.4915487,182.3045474,14.721981,0.132991734,1620000000000 ,1620000000000 ,1620000000000 ,1616812543870 -1616812543902 ,112.5674373,26.86876745,62.13256454,181.4948545,182.3012299,14.727806,0.133051029,1620000000000 ,1620000000000 ,1620000000000 ,1616812543880 -1616812543910 ,112.5674373,26.86876612,62.13352203,181.4970129,182.2993231,14.725164,0.133044668,1620000000000 ,1620000000000 ,1620000000000 ,1616812543890 -1616812543921 ,112.5674372,26.86876479,62.13457108,181.500264,182.3067316,14.721177,0.133012823,1620000000000 ,1620000000000 ,1620000000000 ,1616812543900 -1616812543928 ,112.5674372,26.86876347,62.13564301,181.5066844,182.3180385,14.720759,0.13300137,1620000000000 ,1620000000000 ,1620000000000 ,1616812543910 -1616812543941 ,112.5674371,26.86876214,62.13667297,181.5137332,182.3321559,14.727362,0.133044093,1620000000000 ,1620000000000 ,1620000000000 ,1616812543920 -1616812543949 ,112.567437,26.86876081,62.13764572,181.5172575,182.3442313,14.734821,0.133110671,1620000000000 ,1620000000000 ,1620000000000 ,1616812543930 -1616812543958 ,112.567437,26.86875948,62.13862228,181.520536,182.3466185,14.736287,0.133138772,1620000000000 ,1620000000000 ,1620000000000 ,1616812543940 -1616812543972 ,112.5674369,26.86875815,62.13960266,181.5247161,182.3473348,14.735746,0.133137128,1620000000000 ,1620000000000 ,1620000000000 ,1616812543950 -1616812543978 ,112.5674369,26.86875682,62.14059067,181.5273935,182.3673231,14.734772,0.133132203,1620000000000 ,1620000000000 ,1620000000000 ,1616812543960 -1616812543996 ,112.5674368,26.86875548,62.14159012,181.530672,182.3906732,14.735883,0.13313883,1620000000000 ,1620000000000 ,1620000000000 ,1616812543970 -1616812544001 ,112.5674368,26.86875415,62.14258957,181.5319015,182.3916173,14.736864,0.13314764,1620000000000 ,1620000000000 ,1620000000000 ,1616812543980 -1616812544009 ,112.5674367,26.86875282,62.1435318,181.5335954,182.3848611,14.738406,0.133158005,1620000000000 ,1620000000000 ,1620000000000 ,1616812543990 -1616812544021 ,112.5674367,26.86875149,62.14437866,181.5347155,182.3951323,14.742395,0.133185145,1620000000000 ,1620000000000 ,1620000000000 ,1616812544000 -1616812544031 ,112.5674366,26.86875016,62.14515305,181.5355351,182.411942,14.746211,0.133218306,1620000000000 ,1620000000000 ,1620000000000 ,1616812544010 -1616812544040 ,112.5674365,26.86874883,62.14596176,181.537147,182.4256126,14.746468,0.13323113,1620000000000 ,1620000000000 ,1620000000000 ,1616812544020 -1616812544050 ,112.5674365,26.8687475,62.14686584,181.5382399,182.421503,14.745499,0.133227313,1620000000000 ,1620000000000 ,1620000000000 ,1616812544030 -1616812544060 ,112.5674364,26.86874617,62.14784241,181.5400704,182.4275928,14.744632,0.133219809,1620000000000 ,1620000000000 ,1620000000000 ,1616812544040 -1616812544072 ,112.5674364,26.86874484,62.14877701,181.5410812,182.4442522,14.747471,0.133234014,1620000000000 ,1620000000000 ,1620000000000 ,1616812544050 -1616812544083 ,112.5674363,26.86874351,62.14962006,181.5408354,182.4692891,14.750565,0.133261516,1620000000000 ,1620000000000 ,1620000000000 ,1616812544060 -1616812544091 ,112.5674363,26.86874218,62.15042877,181.5348248,182.4742007,14.753352,0.133284059,1620000000000 ,1620000000000 ,1620000000000 ,1616812544070 -1616812544101 ,112.5674362,26.86874084,62.15130234,181.5270384,182.4672882,14.753864,0.133297624,1620000000000 ,1620000000000 ,1620000000000 ,1616812544080 -1616812544113 ,112.5674361,26.86873951,62.15221405,181.519935,182.4666004,14.753402,0.133295015,1620000000000 ,1620000000000 ,1620000000000 ,1616812544090 -1616812544120 ,112.5674361,26.86873818,62.15312958,181.5138698,182.476161,14.754058,0.133299163,1620000000000 ,1620000000000 ,1620000000000 ,1616812544100 -1616812544131 ,112.567436,26.86873685,62.15402222,181.5090613,182.4842358,14.752575,0.133289483,1620000000000 ,1620000000000 ,1620000000000 ,1616812544110 -1616812544141 ,112.567436,26.86873552,62.15488052,181.5045807,182.477583,14.752526,0.133275136,1620000000000 ,1620000000000 ,1620000000000 ,1616812544120 -1616812544151 ,112.5674359,26.86873418,62.1556778,181.4977505,182.448048,14.758302,0.133316071,1620000000000 ,1620000000000 ,1620000000000 ,1616812544130 -1616812544163 ,112.5674359,26.86873285,62.15642548,181.4875872,182.4298671,14.763589,0.133361301,1620000000000 ,1620000000000 ,1620000000000 ,1616812544140 -1616812544175 ,112.5674358,26.86873152,62.15722656,181.477178,182.4239459,14.766747,0.133395899,1620000000000 ,1620000000000 ,1620000000000 ,1616812544150 -1616812544184 ,112.5674357,26.86873019,62.15820313,181.4681621,182.4245968,14.767197,0.133411335,1620000000000 ,1620000000000 ,1620000000000 ,1616812544160 -1616812544197 ,112.5674357,26.86872885,62.15936661,181.4609768,182.4127093,14.764552,0.133397882,1620000000000 ,1620000000000 ,1620000000000 ,1616812544170 -1616812544207 ,112.5674356,26.86872752,62.16068268,181.4542286,182.3935044,14.763745,0.133393378,1620000000000 ,1620000000000 ,1620000000000 ,1616812544180 -1616812544211 ,112.5674356,26.86872619,62.16204834,181.4477535,182.3732388,14.764818,0.133400148,1620000000000 ,1620000000000 ,1620000000000 ,1616812544190 -1616812544224 ,112.5674355,26.86872485,62.16301346,181.451879,182.3192516,14.775679,0.133476497,1620000000000 ,1620000000000 ,1620000000000 ,1616812544200 -1616812544232 ,112.5674355,26.86872352,62.16343307,181.4439013,182.2666215,14.777887,0.133622491,1620000000000 ,1620000000000 ,1620000000000 ,1616812544210 -1616812544243 ,112.5674354,26.86872218,62.1639328,181.4350767,182.2522914,14.778033,0.133632943,1620000000000 ,1620000000000 ,1620000000000 ,1616812544220 -1616812544256 ,112.5674354,26.86872085,62.16450119,181.4248314,182.2343128,14.780732,0.133661901,1620000000000 ,1620000000000 ,1620000000000 ,1616812544230 -1616812544266 ,112.5674353,26.86871951,62.1650238,181.4175914,182.2388537,14.783928,0.13367705,1620000000000 ,1620000000000 ,1620000000000 ,1616812544240 -1616812544273 ,112.5674353,26.86871818,62.16542435,181.4108705,182.2518233,14.787701,0.133715715,1620000000000 ,1620000000000 ,1620000000000 ,1616812544250 -1616812544283 ,112.5674352,26.86871684,62.16574097,181.4023738,182.236303,14.789265,0.133737701,1620000000000 ,1620000000000 ,1620000000000 ,1616812544260 -1616812544294 ,112.5674352,26.8687155,62.16611481,181.3949698,182.1941958,14.787841,0.133735707,1620000000000 ,1620000000000 ,1620000000000 ,1616812544270 -1616812544303 ,112.5674351,26.86871417,62.16659927,181.3861179,182.1664405,14.788506,0.133742136,1620000000000 ,1620000000000 ,1620000000000 ,1616812544280 -1616812544312 ,112.567435,26.86871149,62.16778564,181.3716379,182.1738718,14.790235,0.267489354,1620000000000 ,1620000000000 ,1620000000000 ,1616812544300 -1616812544324 ,112.567435,26.86871016,62.16849899,181.3629226,182.1625204,14.784734,0.133741024,1620000000000 ,1620000000000 ,1620000000000 ,1616812544310 -1616812544335 ,112.5674349,26.86870882,62.16927338,181.357759,182.1218697,14.785156,0.133730687,1620000000000 ,1620000000000 ,1620000000000 ,1616812544320 -1616812544345 ,112.5674349,26.86870749,62.16996002,181.3522675,182.082884,14.786501,0.133747238,1620000000000 ,1620000000000 ,1620000000000 ,1616812544330 -1616812544355 ,112.5674348,26.86870615,62.17044067,181.3459837,182.058346,14.790718,0.133770058,1620000000000 ,1620000000000 ,1620000000000 ,1616812544340 -1616812544363 ,112.5674348,26.86870481,62.17069626,181.3392901,182.0489964,14.8007145,0.133841395,1620000000000 ,1620000000000 ,1620000000000 ,1616812544350 -1616812544376 ,112.5674347,26.86870347,62.17077255,181.3309573,182.0447967,14.807149,0.133905756,1620000000000 ,1620000000000 ,1620000000000 ,1616812544360 -1616812544384 ,112.5674347,26.86870213,62.17077637,181.322242,182.036566,14.80739,0.133927852,1620000000000 ,1620000000000 ,1620000000000 ,1616812544370 -1616812544393 ,112.5674347,26.86870213,62.17077637,181.322242,-400,14.80739,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812544370 -1616812544404 ,112.5674346,26.86869946,62.17064285,181.3118054,182.0079278,14.796539,0.267719138,1620000000000 ,1620000000000 ,1620000000000 ,1616812544390 -1616812544414 ,112.5674345,26.86869812,62.17028809,181.3030628,181.977504,14.799386,0.133832179,1620000000000 ,1620000000000 ,1620000000000 ,1616812544400 -1616812544423 ,112.5674345,26.86869678,62.16953278,181.2971888,181.9701605,14.806306,0.133867861,1620000000000 ,1620000000000 ,1620000000000 ,1616812544410 -1616812544437 ,112.5674344,26.86869544,62.16838074,181.2872714,181.9765315,14.815072,0.133928085,1620000000000 ,1620000000000 ,1620000000000 ,1616812544420 -1616812544445 ,112.5674344,26.86869411,62.16698074,181.2738023,181.9764747,14.823907,0.13400045,1620000000000 ,1620000000000 ,1620000000000 ,1616812544430 -1616812544461 ,112.5674343,26.86869277,62.16548538,181.264923,181.9675459,14.828367,0.134040757,1620000000000 ,1620000000000 ,1620000000000 ,1616812544440 -1616812544478 ,112.5674343,26.86869143,62.16431427,181.2564809,182.0102684,14.830433,0.134008945,1620000000000 ,1620000000000 ,1620000000000 ,1616812544450 -1616812544482 ,112.5674342,26.86869009,62.16348267,181.2466181,182.0421147,14.829264,0.133941133,1620000000000 ,1620000000000 ,1620000000000 ,1616812544460 -1616812544484 ,112.5674342,26.86868875,62.16258621,181.2382033,182.012282,14.832208,0.133953541,1620000000000 ,1620000000000 ,1620000000000 ,1616812544470 -1616812544493 ,112.5674342,26.86868741,62.16156387,181.2306628,181.9960788,14.828033,0.133918645,1620000000000 ,1620000000000 ,1620000000000 ,1616812544480 -1616812544504 ,112.5674341,26.86868607,62.16045761,181.2239965,182.0254085,14.836121,0.133957125,1620000000000 ,1620000000000 ,1620000000000 ,1616812544490 -1616812544516 ,112.5674341,26.86868473,62.15946198,181.2151719,182.0345764,14.835867,0.13399156,1620000000000 ,1620000000000 ,1620000000000 ,1616812544500 -1616812544526 ,112.567434,26.86868339,62.158741,181.2057736,182.0226108,14.832166,0.13396042,1620000000000 ,1620000000000 ,1620000000000 ,1616812544510 -1616812544536 ,112.567434,26.86868206,62.15827942,181.1953917,182.0165042,14.830279,0.133943162,1620000000000 ,1620000000000 ,1620000000000 ,1616812544520 -1616812544547 ,112.5674339,26.86868072,62.15791702,181.1819226,182.0155897,14.832101,0.133950822,1620000000000 ,1620000000000 ,1620000000000 ,1616812544530 -1616812544556 ,112.5674339,26.86867938,62.15750122,181.1729067,182.0123713,14.841158,0.134017085,1620000000000 ,1620000000000 ,1620000000000 ,1616812544540 -1616812544565 ,112.5674338,26.86867804,62.15699005,181.1629346,181.9981414,14.850365,0.134093477,1620000000000 ,1620000000000 ,1620000000000 ,1616812544550 -1616812544578 ,112.5674338,26.8686767,62.15651703,181.1518151,181.9686528,14.853675,0.134136104,1620000000000 ,1620000000000 ,1620000000000 ,1616812544560 -1616812544592 ,112.5674337,26.86867536,62.15629196,181.1388377,181.9399238,14.841599,0.134076747,1620000000000 ,1620000000000 ,1620000000000 ,1616812544570 -1616812544595 ,112.5674337,26.86867402,62.1564827,181.1320075,181.9474772,14.832697,0.133979567,1620000000000 ,1620000000000 ,1620000000000 ,1616812544580 -1616812544608 ,112.5674336,26.86867268,62.15704727,181.1263522,181.9305943,14.828492,0.133951044,1620000000000 ,1620000000000 ,1620000000000 ,1616812544590 -1616812544619 ,112.5674336,26.86867134,62.15782928,181.1205328,181.9172019,14.833603,0.133975934,1620000000000 ,1620000000000 ,1620000000000 ,1616812544600 -1616812544625 ,112.5674336,26.86867,62.15865326,181.1124186,181.9146905,14.83902,0.134032972,1620000000000 ,1620000000000 ,1620000000000 ,1616812544610 -1616812544637 ,112.5674335,26.86866866,62.15935898,181.09925,181.9071657,14.844943,0.134083489,1620000000000 ,1620000000000 ,1620000000000 ,1616812544620 -1616812544646 ,112.5674335,26.86866732,62.159935,181.0882943,181.9161278,14.848239,0.134112804,1620000000000 ,1620000000000 ,1620000000000 ,1616812544630 -1616812544656 ,112.5674334,26.86866598,62.16053009,181.0791965,181.9342344,14.848098,0.134119414,1620000000000 ,1620000000000 ,1620000000000 ,1616812544640 -1616812544666 ,112.5674334,26.86866464,62.16133881,181.0712189,181.9264287,14.84679,0.134119128,1620000000000 ,1620000000000 ,1620000000000 ,1616812544650 -1616812544676 ,112.5674333,26.8686633,62.16254425,181.0591977,181.9071751,14.839684,0.13408129,1620000000000 ,1620000000000 ,1620000000000 ,1616812544660 -1616812544686 ,112.5674333,26.86866196,62.16424179,181.0499906,181.9023849,14.828269,0.133999567,1620000000000 ,1620000000000 ,1620000000000 ,1616812544670 -1616812544696 ,112.5674332,26.86866062,62.16618729,181.0414939,181.9003164,14.824129,0.133950727,1620000000000 ,1620000000000 ,1620000000000 ,1616812544680 -1616812544707 ,112.5674332,26.86865928,62.16807556,181.033243,181.8957868,14.830886,0.133988047,1620000000000 ,1620000000000 ,1620000000000 ,1616812544690 -1616812544717 ,112.5674331,26.86865794,62.16973495,181.0242818,181.9098226,14.841617,0.134074755,1620000000000 ,1620000000000 ,1620000000000 ,1616812544700 -1616812544727 ,112.5674331,26.8686566,62.17127991,181.0149654,181.8962084,14.846568,0.134135763,1620000000000 ,1620000000000 ,1620000000000 ,1616812544710 -1616812544738 ,112.5674331,26.86865526,62.17289734,181.0063047,181.8592324,14.844471,0.134137298,1620000000000 ,1620000000000 ,1620000000000 ,1616812544720 -1616812544746 ,112.567433,26.86865392,62.17465973,181.0021247,181.8427697,14.837871,0.134088105,1620000000000 ,1620000000000 ,1620000000000 ,1616812544730 -1616812544759 ,112.567433,26.86865258,62.17651367,180.9972889,181.8424905,14.833067,0.13404491,1620000000000 ,1620000000000 ,1620000000000 ,1616812544740 -1616812544766 ,112.5674329,26.86865124,62.17834091,180.9929449,181.8282253,14.829615,0.13401006,1620000000000 ,1620000000000 ,1620000000000 ,1616812544750 -1616812544777 ,112.5674329,26.8686499,62.17996597,180.989202,181.8069542,14.837935,0.134054483,1620000000000 ,1620000000000 ,1620000000000 ,1616812544760 -1616812544788 ,112.5674328,26.86864856,62.1812439,180.9856229,181.8030341,14.842204,0.134067576,1620000000000 ,1620000000000 ,1620000000000 ,1616812544770 -1616812544799 ,112.5674328,26.86864722,62.18215942,180.9822898,181.8050595,14.850135,0.134150577,1620000000000 ,1620000000000 ,1620000000000 ,1616812544780 -1616812544808 ,112.5674328,26.86864588,62.18287659,180.9767437,181.8101368,14.852674,0.134172884,1620000000000 ,1620000000000 ,1620000000000 ,1616812544790 -1616812544818 ,112.5674327,26.86864454,62.18368912,180.9734652,181.7946651,14.851794,0.134168376,1620000000000 ,1620000000000 ,1620000000000 ,1616812544800 -1616812544828 ,112.5674327,26.8686432,62.18471909,180.9705146,181.7766875,14.847406,0.134139008,1620000000000 ,1620000000000 ,1620000000000 ,1616812544810 -1616812544837 ,112.5674326,26.86864186,62.18584824,180.969449,181.7673179,14.845717,0.13412383,1620000000000 ,1620000000000 ,1620000000000 ,1616812544820 -1616812544847 ,112.5674326,26.86864052,62.18691254,180.969613,181.7689555,14.847401,0.13412667,1620000000000 ,1620000000000 ,1620000000000 ,1616812544830 -1616812544857 ,112.5674326,26.86863918,62.18780518,180.971061,181.7697622,14.853678,0.134164758,1620000000000 ,1620000000000 ,1620000000000 ,1616812544840 -1616812544869 ,112.5674325,26.86863783,62.18858719,180.9722631,181.7638524,14.858603,0.134211039,1620000000000 ,1620000000000 ,1620000000000 ,1616812544850 -1616812544877 ,112.5674325,26.86863649,62.18935394,180.9735472,181.7534336,14.857869,0.134212972,1620000000000 ,1620000000000 ,1620000000000 ,1616812544860 -1616812544888 ,112.5674324,26.86863515,62.19026184,180.9747766,181.7434072,14.854197,0.134191596,1620000000000 ,1620000000000 ,1620000000000 ,1616812544870 -1616812544902 ,112.5674324,26.86863381,62.19134521,180.9772355,181.7407588,14.852987,0.134176382,1620000000000 ,1620000000000 ,1620000000000 ,1616812544880 -1616812544910 ,112.5674324,26.86863247,62.19249344,180.9811423,181.7500178,14.855965,0.134189416,1620000000000 ,1620000000000 ,1620000000000 ,1616812544890 -1616812544921 ,112.5674323,26.86863113,62.19359589,180.9850219,181.750418,14.858439,0.13421639,1620000000000 ,1620000000000 ,1620000000000 ,1616812544900 -1616812544929 ,112.5674323,26.86862979,62.194664,180.9873988,181.7487233,14.860967,0.134238841,1620000000000 ,1620000000000 ,1620000000000 ,1616812544910 -1616812544941 ,112.5674322,26.86862844,62.19577026,180.9883277,181.7507908,14.862521,0.134256287,1620000000000 ,1620000000000 ,1620000000000 ,1616812544920 -1616812544950 ,112.5674322,26.8686271,62.19692612,180.9921253,181.7697952,14.86295,0.134262801,1620000000000 ,1620000000000 ,1620000000000 ,1616812544930 -1616812544961 ,112.5674321,26.86862576,62.1981163,180.997125,181.772388,14.862411,0.134266777,1620000000000 ,1620000000000 ,1620000000000 ,1616812544940 -1616812544972 ,112.5674321,26.86862442,62.19935989,181.0008679,181.7694024,14.860133,0.134247814,1620000000000 ,1620000000000 ,1620000000000 ,1616812544950 -1616812544982 ,112.5674321,26.86862308,62.20072556,181.0076708,181.7788664,14.85925,0.134242522,1620000000000 ,1620000000000 ,1620000000000 ,1616812544960 -1616812544992 ,112.567432,26.86862173,62.20218658,181.0111952,181.7865338,14.86133,0.134259557,1620000000000 ,1620000000000 ,1620000000000 ,1616812544970 -1616812545002 ,112.567432,26.86862039,62.20371628,181.0125612,181.7965723,14.8636055,0.134282096,1620000000000 ,1620000000000 ,1620000000000 ,1616812544980 -1616812545014 ,112.5674319,26.86861905,62.20527649,181.0129983,181.8025689,14.86556,0.134305106,1620000000000 ,1620000000000 ,1620000000000 ,1616812544990 -1616812545020 ,112.5674319,26.86861771,62.20684814,181.0148288,181.7995147,14.865786,0.134315715,1620000000000 ,1620000000000 ,1620000000000 ,1616812545000 -1616812545031 ,112.5674319,26.86861636,62.20839691,181.017315,181.7933068,14.86602,0.134319238,1620000000000 ,1620000000000 ,1620000000000 ,1616812545010 -1616812545040 ,112.5674318,26.86861502,62.20994186,181.0218229,181.7951682,14.866376,0.134322317,1620000000000 ,1620000000000 ,1620000000000 ,1616812545020 -1616812545057 ,112.5674318,26.86861368,62.21147156,181.0234349,181.7983611,14.866144,0.134324956,1620000000000 ,1620000000000 ,1620000000000 ,1616812545030 -1616812545062 ,112.5674317,26.86861234,62.21297455,181.027533,181.7992183,14.8660555,0.134326785,1620000000000 ,1620000000000 ,1620000000000 ,1616812545040 -1616812545072 ,112.5674317,26.86861099,62.21445084,181.0313579,181.8060803,14.865116,0.134319439,1620000000000 ,1620000000000 ,1620000000000 ,1616812545050 -1616812545083 ,112.5674316,26.86860965,62.21583557,181.0358658,181.8155947,14.867211,0.134330125,1620000000000 ,1620000000000 ,1620000000000 ,1616812545060 -1616812545094 ,112.5674316,26.86860831,62.21702576,181.0416578,181.8268617,14.871362,0.134357675,1620000000000 ,1620000000000 ,1620000000000 ,1616812545070 -1616812545102 ,112.5674316,26.86860697,62.21798325,181.0461657,181.8370489,14.874691,0.134385135,1620000000000 ,1620000000000 ,1620000000000 ,1616812545080 -1616812545112 ,112.5674315,26.86860562,62.21870041,181.0489798,181.8299679,14.879756,0.13442136,1620000000000 ,1620000000000 ,1620000000000 ,1616812545090 -1616812545122 ,112.5674315,26.86860428,62.21926117,181.0501272,181.8281059,14.87952,0.134422978,1620000000000 ,1620000000000 ,1620000000000 ,1616812545100 -1616812545133 ,112.5674314,26.86860293,62.21976852,181.0514933,181.8534956,14.880125,0.13442504,1620000000000 ,1620000000000 ,1620000000000 ,1616812545110 -1616812545145 ,112.5674314,26.86860159,62.22029877,181.0549357,181.8602608,14.880804,0.13443492,1620000000000 ,1620000000000 ,1620000000000 ,1616812545120 -1616812545155 ,112.5674313,26.86860025,62.22079849,181.0596349,181.854233,14.880696,0.134429744,1620000000000 ,1620000000000 ,1620000000000 ,1616812545130 -1616812545164 ,112.5674313,26.8685989,62.22130966,181.0642521,181.8495214,14.880515,0.134427894,1620000000000 ,1620000000000 ,1620000000000 ,1616812545140 -1616812545174 ,112.5674313,26.86859756,62.22177505,181.0703173,181.8473495,14.882357,0.134440057,1620000000000 ,1620000000000 ,1620000000000 ,1616812545160 -1616812545183 ,112.5674312,26.86859622,62.22209549,181.0747706,181.8541717,14.890463,0.134488121,1620000000000 ,1620000000000 ,1620000000000 ,1616812545170 -1616812545194 ,112.5674311,26.86859353,62.22227097,181.0866551,181.8806121,14.899635,0.26913596,1620000000000 ,1620000000000 ,1620000000000 ,1616812545180 -1616812545202 ,112.5674311,26.86859353,62.22227097,181.0866551,-400,14.899635,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812545180 -1616812545213 ,112.5674311,26.86859218,62.22234726,181.0897423,181.8913872,14.895336,0.134557425,1620000000000 ,1620000000000 ,1620000000000 ,1616812545200 -1616812545223 ,112.567431,26.86859084,62.22260666,181.084688,181.5874123,14.897716,0.134529855,1620000000000 ,1620000000000 ,1620000000000 ,1616812545210 -1616812545236 ,112.567431,26.86858949,62.22309113,181.0902068,181.1135542,14.897523,0.134596506,1620000000000 ,1620000000000 ,1620000000000 ,1616812545220 -1616812545248 ,112.567431,26.8685868,62.22399139,181.0994139,181.1398414,14.905858,0.269286925,1620000000000 ,1620000000000 ,1620000000000 ,1616812545230 -1616812545255 ,112.5674309,26.86858545,62.22446823,181.1015176,181.1458276,14.908159,0.134687267,1620000000000 ,1620000000000 ,1620000000000 ,1616812545240 -1616812545264 ,112.5674309,26.86858411,62.22505951,181.1044136,181.1387042,14.90853,0.134696286,1620000000000 ,1620000000000 ,1620000000000 ,1616812545250 -1616812545274 ,112.5674309,26.86858276,62.22576523,181.1104788,181.1386594,14.90675,0.134689999,1620000000000 ,1620000000000 ,1620000000000 ,1616812545260 -1616812545284 ,112.5674309,26.86858141,62.22657776,181.1146589,181.1410983,14.904871,0.134675107,1620000000000 ,1620000000000 ,1620000000000 ,1616812545270 -1616812545294 ,112.5674308,26.86858007,62.22747803,181.1181013,181.145841,14.901913,0.134654069,1620000000000 ,1620000000000 ,1620000000000 ,1616812545280 -1616812545303 ,112.5674308,26.86857872,62.22848129,181.1248768,181.1585921,14.900782,0.134641202,1620000000000 ,1620000000000 ,1620000000000 ,1616812545290 -1616812545316 ,112.5674308,26.86857737,62.22962189,181.1314885,181.1671367,14.900203,0.134639973,1620000000000 ,1620000000000 ,1620000000000 ,1616812545300 -1616812545325 ,112.5674307,26.86857603,62.23090744,181.1352587,181.1753674,14.901828,0.134653037,1620000000000 ,1620000000000 ,1620000000000 ,1616812545310 -1616812545336 ,112.5674307,26.86857468,62.23229218,181.1384552,181.1792064,14.904716,0.13468345,1620000000000 ,1620000000000 ,1620000000000 ,1616812545320 -1616812545345 ,112.5674307,26.86857333,62.23365784,181.1415152,181.1794923,14.907098,0.134704387,1620000000000 ,1620000000000 ,1620000000000 ,1616812545330 -1616812545355 ,112.5674307,26.86857199,62.23495483,181.1447937,181.1925009,14.907165,0.134709595,1620000000000 ,1620000000000 ,1620000000000 ,1616812545340 -1616812545365 ,112.5674306,26.86857064,62.23624039,181.1474984,181.2087535,14.905701,0.134700276,1620000000000 ,1620000000000 ,1620000000000 ,1616812545350 -1616812545374 ,112.5674306,26.86856929,62.23755264,181.1516785,181.2072662,14.906393,0.134706812,1620000000000 ,1620000000000 ,1620000000000 ,1616812545360 -1616812545385 ,112.5674306,26.86856795,62.2388916,181.1555854,181.2052466,14.905864,0.13470421,1620000000000 ,1620000000000 ,1620000000000 ,1616812545370 -1616812545399 ,112.5674305,26.8685666,62.24024582,181.1590278,181.2118082,14.905423,0.13470105,1620000000000 ,1620000000000 ,1620000000000 ,1616812545380 -1616812545404 ,112.5674305,26.86856525,62.24158859,181.1644373,181.2194874,14.906765,0.134707979,1620000000000 ,1620000000000 ,1620000000000 ,1616812545390 -1616812545420 ,112.5674305,26.86856391,62.24289322,181.1707211,181.2205528,14.910692,0.134738719,1620000000000 ,1620000000000 ,1620000000000 ,1616812545400 -1616812545427 ,112.5674305,26.86856256,62.24412155,181.1756934,181.2169631,14.912458,0.134752697,1620000000000 ,1620000000000 ,1620000000000 ,1616812545410 -1616812545437 ,112.5674304,26.86856121,62.24527359,181.1800921,181.2116991,14.912685,0.134767482,1620000000000 ,1620000000000 ,1620000000000 ,1616812545420 -1616812545446 ,112.5674304,26.86855986,62.24639893,181.1824417,181.2137988,14.9133625,0.134764759,1620000000000 ,1620000000000 ,1620000000000 ,1616812545430 -1616812545456 ,112.5674304,26.86855852,62.24755096,181.1855836,181.2320364,14.914136,0.134768932,1620000000000 ,1620000000000 ,1620000000000 ,1616812545440 -1616812545466 ,112.5674303,26.86855717,62.248703,181.1905286,181.5366745,14.914028,0.134759282,1620000000000 ,1620000000000 ,1620000000000 ,1616812545450 -1616812545474 ,112.5674303,26.86855582,62.24988556,181.1936159,181.8483205,14.914684,0.134757446,1620000000000 ,1620000000000 ,1620000000000 ,1616812545460 -1616812545486 ,112.5674302,26.86855448,62.25114441,181.1945174,181.847604,14.912627,0.134747141,1620000000000 ,1620000000000 ,1620000000000 ,1616812545470 -1616812545495 ,112.5674302,26.86855313,62.25244141,181.1977686,181.853804,14.911441,0.134734346,1620000000000 ,1620000000000 ,1620000000000 ,1616812545480 -1616812545506 ,112.5674302,26.86855178,62.25369263,181.2018121,181.8586844,14.914526,0.134753777,1620000000000 ,1620000000000 ,1620000000000 ,1616812545490 -1616812545521 ,112.5674301,26.86855044,62.2548027,181.2067571,181.8701345,14.916922,0.134776856,1620000000000 ,1620000000000 ,1620000000000 ,1616812545500 -1616812545525 ,112.5674301,26.86854909,62.25579834,181.2109645,181.8818383,14.919028,0.134797297,1620000000000 ,1620000000000 ,1620000000000 ,1616812545510 -1616812545537 ,112.56743,26.86854774,62.25676727,181.2146802,181.8776088,14.917251,0.134785948,1620000000000 ,1620000000000 ,1620000000000 ,1616812545520 -1616812545547 ,112.56743,26.86854639,62.25777435,181.2184777,181.8791272,14.9146595,0.134766301,1620000000000 ,1620000000000 ,1620000000000 ,1616812545530 -1616812545557 ,112.5674299,26.86854505,62.25878525,181.2209366,181.8881304,14.915426,0.134769468,1620000000000 ,1620000000000 ,1620000000000 ,1616812545540 -1616812545566 ,112.5674299,26.8685437,62.25971222,181.2264554,181.9014706,14.9185505,0.134792357,1620000000000 ,1620000000000 ,1620000000000 ,1616812545550 -1616812545576 ,112.5674299,26.86854235,62.26052094,181.2285864,181.9080648,14.91992,0.134805696,1620000000000 ,1620000000000 ,1620000000000 ,1616812545560 -1616812545587 ,112.5674298,26.86854101,62.26125717,181.2312639,181.9027944,14.919148,0.134805868,1620000000000 ,1620000000000 ,1620000000000 ,1616812545570 -1616812545598 ,112.5674298,26.86853966,62.26197052,181.2353347,181.9050417,14.921985,0.134817301,1620000000000 ,1620000000000 ,1620000000000 ,1616812545580 -1616812545609 ,112.5674297,26.86853831,62.26264572,181.2381214,181.912672,14.925763,0.134855531,1620000000000 ,1620000000000 ,1620000000000 ,1616812545590 -1616812545617 ,112.5674297,26.86853696,62.26327896,181.2418643,181.9221892,14.924322,0.134855445,1620000000000 ,1620000000000 ,1620000000000 ,1616812545600 -1616812545628 ,112.5674296,26.86853562,62.26386261,181.2446237,181.9159405,14.921362,0.134831747,1620000000000 ,1620000000000 ,1620000000000 ,1616812545610 -1616812545638 ,112.5674296,26.86853427,62.26439667,181.2500332,181.915785,14.918854,0.134802649,1620000000000 ,1620000000000 ,1620000000000 ,1616812545620 -1616812545653 ,112.5674295,26.86853292,62.26486206,181.2560984,181.9219624,14.919516,0.134801185,1620000000000 ,1620000000000 ,1620000000000 ,1616812545630 -1616812545657 ,112.5674295,26.86853157,62.26524734,181.2613713,181.9228428,14.921036,0.134813986,1620000000000 ,1620000000000 ,1620000000000 ,1616812545640 -1616812545667 ,112.5674294,26.86853023,62.26554108,181.2662071,181.9278265,14.921432,0.134812288,1620000000000 ,1620000000000 ,1620000000000 ,1616812545650 -1616812545676 ,112.5674294,26.86852888,62.26573181,181.2704691,181.9352976,14.924106,0.134830005,1620000000000 ,1620000000000 ,1620000000000 ,1616812545660 -1616812545687 ,112.5674294,26.86852753,62.26582718,181.2744853,181.9412751,14.927077,0.134854264,1620000000000 ,1620000000000 ,1620000000000 ,1616812545670 -1616812545697 ,112.5674293,26.86852618,62.26582718,181.2767529,181.946715,14.928216,0.134862864,1620000000000 ,1620000000000 ,1620000000000 ,1616812545680 -1616812545710 ,112.5674293,26.86852483,62.26574707,181.2801407,181.9535089,14.9288225,0.134868217,1620000000000 ,1620000000000 ,1620000000000 ,1616812545690 -1616812545718 ,112.5674292,26.86852349,62.26561356,181.283829,181.9638372,14.929057,0.134864821,1620000000000 ,1620000000000 ,1620000000000 ,1616812545700 -1616812545727 ,112.5674292,26.86852214,62.26545334,181.2890199,181.9713759,14.928987,0.134863273,1620000000000 ,1620000000000 ,1620000000000 ,1616812545710 -1616812545737 ,112.5674291,26.86852079,62.26527786,181.294648,181.9768578,14.928301,0.134856993,1620000000000 ,1620000000000 ,1620000000000 ,1616812545720 -1616812545747 ,112.5674291,26.86851944,62.26508331,181.2997297,181.9819106,14.929872,0.134865712,1620000000000 ,1620000000000 ,1620000000000 ,1616812545730 -1616812545757 ,112.567429,26.8685181,62.26486206,181.304866,181.989876,14.933504,0.1348879,1620000000000 ,1620000000000 ,1620000000000 ,1616812545740 -1616812545769 ,112.567429,26.86851675,62.26461411,181.3100296,181.9951157,14.9337225,0.134896637,1620000000000 ,1620000000000 ,1620000000000 ,1616812545750 -1616812545779 ,112.5674289,26.8685154,62.26433945,181.3153571,181.9978399,14.937628,0.134918541,1620000000000 ,1620000000000 ,1620000000000 ,1616812545760 -1616812545791 ,112.5674289,26.86851405,62.26398849,181.3182531,182.0064618,14.935059,0.13490539,1620000000000 ,1620000000000 ,1620000000000 ,1616812545770 -1616812545798 ,112.5674288,26.8685127,62.26353836,181.32369,182.0390228,14.939297,0.134932729,1620000000000 ,1620000000000 ,1620000000000 ,1616812545780 -1616812545808 ,112.5674288,26.86851135,62.26306534,181.3266406,182.0430595,14.941868,0.134941965,1620000000000 ,1620000000000 ,1620000000000 ,1616812545790 -1616812545819 ,112.5674287,26.86851001,62.26269913,181.3278427,182.0384511,14.942222,0.134960892,1620000000000 ,1620000000000 ,1620000000000 ,1616812545800 -1616812545828 ,112.5674287,26.86850866,62.26255035,181.3274056,182.0591697,14.934698,0.134919482,1620000000000 ,1620000000000 ,1620000000000 ,1616812545810 -1616812545837 ,112.5674286,26.86850731,62.26263046,181.3295093,182.080348,14.92515,0.134842384,1620000000000 ,1620000000000 ,1620000000000 ,1616812545820 -1616812545851 ,112.5674286,26.86850596,62.26285553,181.3318042,182.0892863,14.922616,0.134802359,1620000000000 ,1620000000000 ,1620000000000 ,1616812545830 -1616812545860 ,112.5674285,26.86850461,62.263134,181.3343997,182.0962253,14.927969,0.134827285,1620000000000 ,1620000000000 ,1620000000000 ,1616812545840 -1616812545871 ,112.5674285,26.86850327,62.26340485,181.3392082,182.1037783,14.936719,0.134903213,1620000000000 ,1620000000000 ,1620000000000 ,1616812545850 -1616812545883 ,112.5674284,26.86850192,62.26371002,181.3425686,182.1010499,14.937986,0.13493951,1620000000000 ,1620000000000 ,1620000000000 ,1616812545860 -1616812545889 ,112.5674284,26.86850057,62.26418304,181.3444811,182.0960485,14.933095,0.134911773,1620000000000 ,1620000000000 ,1620000000000 ,1616812545870 -1616812545900 ,112.5674284,26.86849922,62.26494217,181.3457105,182.1086978,14.924645,0.13484859,1620000000000 ,1620000000000 ,1620000000000 ,1616812545880 -1616812545910 ,112.5674283,26.86849788,62.26590729,181.3479781,182.1308884,14.92106,0.134807991,1620000000000 ,1620000000000 ,1620000000000 ,1616812545890 -1616812545920 ,112.5674282,26.86849653,62.26696396,181.3503277,182.1446686,14.921129,0.134808166,1620000000000 ,1620000000000 ,1620000000000 ,1616812545900 -1616812545929 ,112.5674282,26.86849518,62.26804733,181.3523768,182.1461081,14.923894,0.13482286,1620000000000 ,1620000000000 ,1620000000000 ,1616812545910 -1616812545939 ,112.5674281,26.86849383,62.26917648,181.3534423,182.1349064,14.928185,0.134868542,1620000000000 ,1620000000000 ,1620000000000 ,1616812545920 -1616812545951 ,112.5674281,26.86849249,62.27031326,181.3547264,182.1370049,14.925656,0.134859565,1620000000000 ,1620000000000 ,1620000000000 ,1616812545930 -1616812545960 ,112.567428,26.86849114,62.27144623,181.3571852,182.1548988,14.92508,0.134851708,1620000000000 ,1620000000000 ,1620000000000 ,1616812545940 -1616812545974 ,112.567428,26.86848979,62.27256012,181.3616385,182.1712586,14.923277,0.134837081,1620000000000 ,1620000000000 ,1620000000000 ,1616812545950 -1616812545980 ,112.5674279,26.86848844,62.27367783,181.3636329,182.1725123,14.921959,0.134825998,1620000000000 ,1620000000000 ,1620000000000 ,1616812545960 -1616812545998 ,112.5674279,26.8684871,62.2748642,181.3663104,182.1630066,14.920719,0.13481904,1620000000000 ,1620000000000 ,1620000000000 ,1616812545970 -1616812546001 ,112.5674278,26.86848575,62.27610397,181.3663104,182.1623611,14.918256,0.134799567,1620000000000 ,1620000000000 ,1620000000000 ,1616812545980 -1616812546010 ,112.5674278,26.8684844,62.27736664,181.3680589,182.1758178,14.918787,0.134799773,1620000000000 ,1620000000000 ,1620000000000 ,1616812545990 -1616812546020 ,112.5674277,26.86848305,62.27865601,181.3676491,182.1853429,14.9192505,0.13481066,1620000000000 ,1620000000000 ,1620000000000 ,1616812546000 -1616812546030 ,112.5674277,26.86848171,62.28001022,181.3690971,182.185526,14.917476,0.134800897,1620000000000 ,1620000000000 ,1620000000000 ,1616812546010 -1616812546041 ,112.5674276,26.86848036,62.28142548,181.3718292,182.1827981,14.916836,0.134795595,1620000000000 ,1620000000000 ,1620000000000 ,1616812546020 -1616812546052 ,112.5674276,26.86847901,62.28283691,181.3739055,182.1735414,14.915128,0.134786212,1620000000000 ,1620000000000 ,1620000000000 ,1616812546030 -1616812546061 ,112.5674275,26.86847767,62.28421783,181.3759273,182.1761736,14.91288,0.134766148,1620000000000 ,1620000000000 ,1620000000000 ,1616812546040 -1616812546071 ,112.5674275,26.86847632,62.28556442,181.3777851,182.1804717,14.912301,0.134758229,1620000000000 ,1620000000000 ,1620000000000 ,1616812546050 -1616812546085 ,112.5674274,26.86847497,62.2868576,181.3795336,182.1808441,14.913605,0.134762268,1620000000000 ,1620000000000 ,1620000000000 ,1616812546060 -1616812546091 ,112.5674274,26.86847363,62.28807068,181.3820471,182.185053,14.914655,0.134771623,1620000000000 ,1620000000000 ,1620000000000 ,1616812546070 -1616812546100 ,112.5674273,26.86847228,62.2891655,181.3842874,182.1846926,14.9145355,0.134771883,1620000000000 ,1620000000000 ,1620000000000 ,1616812546080 -1616812546111 ,112.5674273,26.86847093,62.29008102,181.3878118,182.1844146,14.918635,0.134781201,1620000000000 ,1620000000000 ,1620000000000 ,1616812546090 -1616812546120 ,112.5674272,26.86846959,62.29074097,181.3904346,182.1897719,14.917692,0.134793853,1620000000000 ,1620000000000 ,1620000000000 ,1616812546100 -1616812546134 ,112.5674272,26.86846824,62.29117584,181.3918006,182.200659,14.922678,0.134799099,1620000000000 ,1620000000000 ,1620000000000 ,1616812546110 -1616812546140 ,112.5674271,26.86846689,62.29160309,181.3898609,182.1983566,14.92118,0.134806507,1620000000000 ,1620000000000 ,1620000000000 ,1616812546120 -1616812546151 ,112.5674271,26.86846555,62.29208374,181.3889866,182.1908039,14.920755,0.134799015,1620000000000 ,1620000000000 ,1620000000000 ,1616812546130 -1616812546161 ,112.567427,26.8684642,62.29257202,181.3897789,182.2003986,14.920147,0.134799536,1620000000000 ,1620000000000 ,1620000000000 ,1616812546140 -1616812546171 ,112.567427,26.86846285,62.29298401,181.3929208,182.2115918,14.920804,0.134793337,1620000000000 ,1620000000000 ,1620000000000 ,1616812546150 -1616812546181 ,112.5674269,26.8684615,62.2933197,181.3921285,182.2126557,14.923562,0.13480225,1620000000000 ,1620000000000 ,1620000000000 ,1616812546160 -1616812546192 ,112.5674269,26.86846016,62.29358292,181.3932486,182.2067288,14.928671,0.134843813,1620000000000 ,1620000000000 ,1620000000000 ,1616812546170 -1616812546201 ,112.5674268,26.86845881,62.29378891,181.3937404,182.2034292,14.931076,0.134871886,1620000000000 ,1620000000000 ,1620000000000 ,1616812546180 -1616812546212 ,112.5674268,26.86845746,62.29403687,181.3916367,182.2112479,14.928692,0.134860036,1620000000000 ,1620000000000 ,1620000000000 ,1616812546190 -1616812546222 ,112.5674267,26.86845612,62.29427719,181.3832492,182.0107667,14.910421,0.134605223,1620000000000 ,1620000000000 ,1620000000000 ,1616812546200 -1616812546232 ,112.5674267,26.86845477,62.29447174,181.3822384,181.6748922,14.910389,0.134243769,1620000000000 ,1620000000000 ,1620000000000 ,1616812546210 -1616812546243 ,112.5674266,26.86845343,62.29475021,181.3821564,181.6769957,14.909611,0.134241792,1620000000000 ,1620000000000 ,1620000000000 ,1616812546220 -1616812546255 ,112.5674266,26.86845209,62.29508209,181.3810636,181.6744706,14.910724,0.1342512,1620000000000 ,1620000000000 ,1620000000000 ,1616812546230 -1616812546262 ,112.5674266,26.86845075,62.29548645,181.38008,181.6665131,14.910235,0.134245044,1620000000000 ,1620000000000 ,1620000000000 ,1616812546240 -1616812546273 ,112.5674265,26.86844941,62.29597092,181.3778944,181.6670058,14.9116,0.134257644,1620000000000 ,1620000000000 ,1620000000000 ,1616812546250 -1616812546283 ,112.5674265,26.86844806,62.2965126,181.3783588,181.6666339,14.911158,0.134262776,1620000000000 ,1620000000000 ,1620000000000 ,1616812546270 -1616812546292 ,112.5674264,26.86844672,62.2971344,181.3787413,181.6663749,14.909804,0.13425236,1620000000000 ,1620000000000 ,1620000000000 ,1616812546280 -1616812546302 ,112.5674264,26.86844538,62.29786301,181.3792604,181.6536115,14.906492,0.134231723,1620000000000 ,1620000000000 ,1620000000000 ,1616812546280 -1616812546313 ,112.5674264,26.86844404,62.29867172,181.3785501,181.6456916,14.902302,0.134192296,1620000000000 ,1620000000000 ,1620000000000 ,1616812546300 -1616812546324 ,112.5674263,26.8684427,62.2995224,181.3781949,181.6576964,14.900521,0.134172997,1620000000000 ,1620000000000 ,1620000000000 ,1616812546310 -1616812546335 ,112.5674262,26.86844002,62.30129242,181.3789052,181.6648457,14.904144,0.268386477,1620000000000 ,1620000000000 ,1620000000000 ,1616812546320 -1616812546343 ,112.5674262,26.86843867,62.30231094,181.3778124,181.6599957,14.9019165,0.134197261,1620000000000 ,1620000000000 ,1620000000000 ,1616812546330 -1616812546352 ,112.5674262,26.86843733,62.30347443,181.3762551,181.6515702,14.900502,0.134189661,1620000000000 ,1620000000000 ,1620000000000 ,1616812546340 -1616812546364 ,112.5674261,26.86843599,62.30476761,181.3738782,181.6526259,14.898457,0.134178618,1620000000000 ,1620000000000 ,1620000000000 ,1616812546350 -1616812546373 ,112.5674261,26.86843465,62.3061142,181.3730313,181.6555385,14.89763,0.134169033,1620000000000 ,1620000000000 ,1620000000000 ,1616812546360 -1616812546383 ,112.5674261,26.86843331,62.3074646,181.3734411,181.6676967,14.897009,0.134165663,1620000000000 ,1620000000000 ,1620000000000 ,1616812546370 -1616812546396 ,112.567426,26.86843197,62.30879211,181.3723209,181.6699719,14.89656,0.13416608,1620000000000 ,1620000000000 ,1620000000000 ,1616812546380 -1616812546406 ,112.567426,26.86843063,62.31010056,181.3710368,181.6535484,14.895065,0.134155834,1620000000000 ,1620000000000 ,1620000000000 ,1616812546390 -1616812546418 ,112.5674259,26.86842929,62.31136322,181.373523,181.640616,14.89401,0.134147211,1620000000000 ,1620000000000 ,1620000000000 ,1616812546400 -1616812546427 ,112.5674259,26.86842795,62.31255341,181.37437,181.6439338,14.893257,0.134137901,1620000000000 ,1620000000000 ,1620000000000 ,1616812546410 -1616812546434 ,112.5674259,26.86842661,62.31363297,181.3761458,181.6578567,14.891838,0.134121761,1620000000000 ,1620000000000 ,1620000000000 ,1616812546420 -1616812546444 ,112.5674258,26.86842526,62.31461334,181.376501,181.6688868,14.8932905,0.134130955,1620000000000 ,1620000000000 ,1620000000000 ,1616812546430 -1616812546454 ,112.5674258,26.86842392,62.31546021,181.3759819,181.6602784,14.89264,0.1341238,1620000000000 ,1620000000000 ,1620000000000 ,1616812546440 -1616812546463 ,112.5674257,26.86842258,62.3163147,181.375135,181.8644284,14.894338,0.134351081,1620000000000 ,1620000000000 ,1620000000000 ,1616812546450 -1616812546478 ,112.5674257,26.86842124,62.31723404,181.3727854,182.0741591,14.894399,0.134574671,1620000000000 ,1620000000000 ,1620000000000 ,1616812546460 -1616812546486 ,112.5674256,26.86841989,62.31814575,181.3704085,182.0709929,14.89356,0.134568405,1620000000000 ,1620000000000 ,1620000000000 ,1616812546470 -1616812546495 ,112.5674256,26.86841855,62.31911087,181.3682501,182.074839,14.890003,0.134547155,1620000000000 ,1620000000000 ,1620000000000 ,1616812546480 -1616812546505 ,112.5674255,26.8684172,62.32011032,181.3682501,182.0792455,14.887029,0.134520295,1620000000000 ,1620000000000 ,1620000000000 ,1616812546490 -1616812546533 ,112.5674255,26.86841586,62.321064,181.3699987,182.0858367,14.885855,0.134505129,1620000000000 ,1620000000000 ,1620000000000 ,1616812546500 -1616812546540 ,112.5674254,26.86841451,62.32192993,181.3704631,182.0785724,14.886861,0.134503068,1620000000000 ,1620000000000 ,1620000000000 ,1616812546510 -1616812546544 ,112.5674254,26.86841317,62.32269669,181.3717472,182.0728402,14.888125,0.134514262,1620000000000 ,1620000000000 ,1620000000000 ,1616812546520 -1616812546548 ,112.5674253,26.86841183,62.32338333,181.37437,182.0791865,14.88812,0.134509815,1620000000000 ,1620000000000 ,1620000000000 ,1616812546530 -1616812546555 ,112.5674253,26.86841048,62.32397461,181.3744246,182.0649186,14.888417,0.134513171,1620000000000 ,1620000000000 ,1620000000000 ,1616812546540 -1616812546566 ,112.5674253,26.86840914,62.32452774,181.3719658,182.061646,14.887271,0.134496819,1620000000000 ,1620000000000 ,1620000000000 ,1616812546550 -1616812546585 ,112.5674252,26.86840779,62.32505798,181.3711735,182.0718676,14.888389,0.134500021,1620000000000 ,1620000000000 ,1620000000000 ,1616812546560 -1616812546590 ,112.5674252,26.86840645,62.32544708,181.3716106,182.077614,14.889559,0.134510166,1620000000000 ,1620000000000 ,1620000000000 ,1616812546570 -1616812546596 ,112.5674251,26.8684051,62.32570267,181.373605,182.0830792,14.887562,0.134495207,1620000000000 ,1620000000000 ,1620000000000 ,1616812546580 -1616812546606 ,112.5674251,26.86840376,62.32595062,181.3705724,182.0778697,14.885755,0.134474459,1620000000000 ,1620000000000 ,1620000000000 ,1616812546590 -1616812546615 ,112.567425,26.86840242,62.32627487,181.3685507,182.0683337,14.88449,0.134460836,1620000000000 ,1620000000000 ,1620000000000 ,1616812546600 -1616812546625 ,112.567425,26.86840107,62.32659149,181.3696981,182.0720595,14.886367,0.134466191,1620000000000 ,1620000000000 ,1620000000000 ,1616812546610 -1616812546635 ,112.5674249,26.86839973,62.32682419,181.3703265,182.0919002,14.887848,0.134482555,1620000000000 ,1620000000000 ,1620000000000 ,1616812546620 -1616812546645 ,112.5674249,26.86839839,62.3270607,181.3707363,182.1000202,14.885394,0.134468335,1620000000000 ,1620000000000 ,1620000000000 ,1616812546630 -1616812546656 ,112.5674248,26.86839704,62.32743073,181.3680042,182.0806584,14.880531,0.134431487,1620000000000 ,1620000000000 ,1620000000000 ,1616812546640 -1616812546667 ,112.5674248,26.8683957,62.32792282,181.366365,182.0690763,14.878956,0.134407208,1620000000000 ,1620000000000 ,1620000000000 ,1616812546650 -1616812546679 ,112.5674247,26.86839436,62.32844925,181.3660098,182.0719583,14.880517,0.134415406,1620000000000 ,1620000000000 ,1620000000000 ,1616812546660 -1616812546687 ,112.5674247,26.86839301,62.32899475,181.3661738,182.0832303,14.8809,0.134424357,1620000000000 ,1620000000000 ,1620000000000 ,1616812546670 -1616812546697 ,112.5674246,26.86839167,62.32965469,181.363387,182.0990211,14.877605,0.13440734,1620000000000 ,1620000000000 ,1620000000000 ,1616812546680 -1616812546709 ,112.5674246,26.86839033,62.33051682,181.3610648,182.1087895,14.874003,0.134381147,1620000000000 ,1620000000000 ,1620000000000 ,1616812546690 -1616812546717 ,112.5674245,26.86838898,62.33153534,181.3586605,182.1012224,14.871067,0.134357289,1620000000000 ,1620000000000 ,1620000000000 ,1616812546700 -1616812546730 ,112.5674245,26.86838764,62.33263397,181.3577043,182.0967979,14.869491,0.134341911,1620000000000 ,1620000000000 ,1620000000000 ,1616812546710 -1616812546737 ,112.5674244,26.8683863,62.33372116,181.3592616,182.0972903,14.869341,0.134336401,1620000000000 ,1620000000000 ,1620000000000 ,1616812546720 -1616812546754 ,112.5674244,26.86838496,62.33478928,181.3602725,182.104476,14.869576,0.134339167,1620000000000 ,1620000000000 ,1620000000000 ,1616812546730 -1616812546770 ,112.5674243,26.86838361,62.33588791,181.3609282,182.1071196,14.869658,0.134340921,1620000000000 ,1620000000000 ,1620000000000 ,1616812546740 -1616812546778 ,112.5674243,26.86838227,62.33703613,181.360491,182.0945443,14.869942,0.134343578,1620000000000 ,1620000000000 ,1620000000000 ,1616812546750 -1616812546783 ,112.5674242,26.86838093,62.33818817,181.3587152,182.0917376,14.868612,0.134333643,1620000000000 ,1620000000000 ,1620000000000 ,1616812546760 -1616812546789 ,112.5674242,26.86837959,62.33929825,181.3563383,182.0922709,14.869288,0.134339668,1620000000000 ,1620000000000 ,1620000000000 ,1616812546770 -1616812546801 ,112.5674241,26.86837824,62.34036636,181.3564202,182.0970991,14.868761,0.134327793,1620000000000 ,1620000000000 ,1620000000000 ,1616812546780 -1616812546809 ,112.5674241,26.8683769,62.34145737,181.3548083,182.0871636,14.869917,0.134344273,1620000000000 ,1620000000000 ,1620000000000 ,1616812546790 -1616812546820 ,112.567424,26.86837556,62.34264374,181.3515025,182.0715202,14.869586,0.134345733,1620000000000 ,1620000000000 ,1620000000000 ,1616812546800 -1616812546830 ,112.567424,26.86837422,62.34391022,181.3500545,182.0713941,14.871207,0.134361221,1620000000000 ,1620000000000 ,1620000000000 ,1616812546810 -1616812546841 ,112.5674239,26.86837287,62.34519196,181.3498086,182.075536,14.871673,0.134365403,1620000000000 ,1620000000000 ,1620000000000 ,1616812546820 -1616812546853 ,112.5674239,26.86837153,62.34645081,181.3478415,182.0778183,14.87284,0.134377245,1620000000000 ,1620000000000 ,1620000000000 ,1616812546830 -1616812546860 ,112.5674238,26.86837019,62.34772873,181.3482787,182.0775879,14.874199,0.134392179,1620000000000 ,1620000000000 ,1620000000000 ,1616812546840 -1616812546871 ,112.5674238,26.86836884,62.34901428,181.3483606,182.0704083,14.875633,0.134405383,1620000000000 ,1620000000000 ,1620000000000 ,1616812546850 -1616812546880 ,112.5674237,26.8683675,62.35027313,181.347541,182.0652405,14.876941,0.134417447,1620000000000 ,1620000000000 ,1620000000000 ,1616812546860 -1616812546893 ,112.5674237,26.86836616,62.35146332,181.343962,182.0674321,14.876891,0.134419353,1620000000000 ,1620000000000 ,1620000000000 ,1616812546870 -1616812546901 ,112.5674236,26.86836481,62.35259628,181.3428691,182.077531,14.877778,0.134426043,1620000000000 ,1620000000000 ,1620000000000 ,1616812546880 -1616812546910 ,112.5674236,26.86836347,62.35369873,181.3423774,182.0853109,14.878311,0.134430968,1620000000000 ,1620000000000 ,1620000000000 ,1616812546890 -1616812546928 ,112.5674235,26.86836213,62.3547821,181.338088,182.0777979,14.8802,0.134447904,1620000000000 ,1620000000000 ,1620000000000 ,1616812546900 -1616812546936 ,112.5674235,26.86836078,62.35583878,181.3348368,182.0727404,14.879993,0.134451069,1620000000000 ,1620000000000 ,1620000000000 ,1616812546910 -1616812546946 ,112.5674234,26.86835944,62.35680771,181.3307661,182.0739882,14.883562,0.134470036,1620000000000 ,1620000000000 ,1620000000000 ,1616812546920 -1616812546954 ,112.5674234,26.8683581,62.3576355,181.3285531,182.0872308,14.887373,0.134506402,1620000000000 ,1620000000000 ,1620000000000 ,1616812546930 -1616812546962 ,112.5674233,26.86835675,62.35833359,181.326586,182.0953471,14.889009,0.134521757,1620000000000 ,1620000000000 ,1620000000000 ,1616812546950 -1616812546973 ,112.5674233,26.86835541,62.35899353,181.3215043,182.0856031,14.887747,0.134518195,1620000000000 ,1620000000000 ,1620000000000 ,1616812546950 -1616812546987 ,112.5674232,26.86835406,62.35969925,181.3164227,182.0706269,14.885596,0.134503253,1620000000000 ,1620000000000 ,1620000000000 ,1616812546970 -1616812546994 ,112.5674231,26.86835137,62.36110306,181.3104121,182.0657607,14.885636,0.268991201,1620000000000 ,1620000000000 ,1620000000000 ,1616812546980 -1616812547004 ,112.5674231,26.86835137,62.36110306,181.3104121,-400,14.885636,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812546980 -1616812547013 ,112.5674231,26.86834869,62.36225891,181.3037731,182.0743596,14.890109,0.26904104,1620000000000 ,1620000000000 ,1620000000000 ,1616812547000 -1616812547025 ,112.567423,26.86834734,62.3628006,181.2997297,182.0644265,14.890882,0.134543644,1620000000000 ,1620000000000 ,1620000000000 ,1616812547010 -1616812547035 ,112.567423,26.868346,62.36330032,181.2957682,182.0575716,14.890698,0.134544271,1620000000000 ,1620000000000 ,1620000000000 ,1616812547020 -1616812547044 ,112.5674229,26.86834465,62.3637085,181.2945114,182.0581149,14.890739,0.13454379,1620000000000 ,1620000000000 ,1620000000000 ,1616812547030 -1616812547053 ,112.5674229,26.86834331,62.36400986,181.2906319,182.0606583,14.890557,0.134535845,1620000000000 ,1620000000000 ,1620000000000 ,1616812547040 -1616812547063 ,112.5674228,26.86834196,62.36422348,181.2872168,182.0570861,14.891014,0.13453508,1620000000000 ,1620000000000 ,1620000000000 ,1616812547050 -1616812547074 ,112.5674228,26.86834062,62.36436081,181.2848672,182.0441906,14.891549,0.134538616,1620000000000 ,1620000000000 ,1620000000000 ,1616812547060 -1616812547083 ,112.5674227,26.86833927,62.36442566,181.2829001,182.0401176,14.893431,0.134548026,1620000000000 ,1620000000000 ,1620000000000 ,1616812547070 -1616812547093 ,112.5674227,26.86833793,62.36442184,181.2800314,182.0419275,14.896106,0.134568568,1620000000000 ,1620000000000 ,1620000000000 ,1616812547080 -1616812547105 ,112.5674226,26.86833658,62.36435318,181.2782009,182.0388915,14.896016,0.134570265,1620000000000 ,1620000000000 ,1620000000000 ,1616812547090 -1616812547114 ,112.5674226,26.86833524,62.36420059,181.2758787,182.0340091,14.89852,0.134585375,1620000000000 ,1620000000000 ,1620000000000 ,1616812547100 -1616812547124 ,112.5674225,26.86833389,62.36395645,181.274294,182.0321258,14.89643,0.134564614,1620000000000 ,1620000000000 ,1620000000000 ,1616812547110 -1616812547134 ,112.5674225,26.86833255,62.36364746,181.2719991,182.027986,14.896652,0.13456495,1620000000000 ,1620000000000 ,1620000000000 ,1616812547120 -1616812547144 ,112.5674224,26.86833121,62.3633461,181.268584,182.020547,14.8968115,0.134564376,1620000000000 ,1620000000000 ,1620000000000 ,1616812547130 -1616812547154 ,112.5674224,26.86832986,62.36309814,181.2648411,182.0166453,14.898722,0.134575125,1620000000000 ,1620000000000 ,1620000000000 ,1616812547140 -1616812547164 ,112.5674223,26.86832852,62.36289215,181.2601965,182.0211705,14.89812,0.134575182,1620000000000 ,1620000000000 ,1620000000000 ,1616812547150 -1616812547173 ,112.5674223,26.86832717,62.36273956,181.2579562,182.0269381,14.895354,0.134557468,1620000000000 ,1620000000000 ,1620000000000 ,1616812547160 -1616812547185 ,112.5674222,26.86832583,62.36264801,181.2564809,182.0233732,14.894769,0.134548439,1620000000000 ,1620000000000 ,1620000000000 ,1616812547170 -1616812547194 ,112.5674222,26.86832448,62.36259842,181.253421,182.0133951,14.895327,0.134548209,1620000000000 ,1620000000000 ,1620000000000 ,1616812547180 -1616812547206 ,112.5674221,26.86832314,62.36254501,181.252574,182.0104084,14.897501,0.134562606,1620000000000 ,1620000000000 ,1620000000000 ,1616812547190 -1616812547215 ,112.5674221,26.86832179,62.36226273,181.241072,181.8966507,14.896353,0.13453838,1620000000000 ,1620000000000 ,1620000000000 ,1616812547200 -1616812547225 ,112.5674221,26.86832045,62.36165619,181.2374657,181.7111842,14.892406,0.134473058,1620000000000 ,1620000000000 ,1620000000000 ,1616812547210 -1616812547235 ,112.567422,26.8683191,62.36118698,181.2347063,181.7111728,14.890508,0.134450492,1620000000000 ,1620000000000 ,1620000000000 ,1616812547220 -1616812547248 ,112.567422,26.86831776,62.36081696,181.2324387,181.7146952,14.890996,0.134451455,1620000000000 ,1620000000000 ,1620000000000 ,1616812547230 -1616812547255 ,112.5674219,26.86831642,62.36048126,181.2302257,181.7075243,14.89269,0.13446418,1620000000000 ,1620000000000 ,1620000000000 ,1616812547240 -1616812547266 ,112.5674219,26.86831507,62.36014938,181.2274663,181.6989965,14.894071,0.134477168,1620000000000 ,1620000000000 ,1620000000000 ,1616812547250 -1616812547277 ,112.5674219,26.86831373,62.35983658,181.2246249,181.6964585,14.893451,0.134475628,1620000000000 ,1620000000000 ,1620000000000 ,1616812547260 -1616812547286 ,112.5674218,26.86831238,62.35956955,181.2221934,181.6921321,14.891901,0.134462647,1620000000000 ,1620000000000 ,1620000000000 ,1616812547270 -1616812547295 ,112.5674218,26.86831104,62.35938644,181.2209913,181.6941626,14.890971,0.134454541,1620000000000 ,1620000000000 ,1620000000000 ,1616812547280 -1616812547306 ,112.5674217,26.8683097,62.35934067,181.2189968,181.6962473,14.890438,0.134450461,1620000000000 ,1620000000000 ,1620000000000 ,1616812547290 -1616812547315 ,112.5674217,26.86830835,62.35943222,181.2176581,181.6972815,14.889102,0.13444547,1620000000000 ,1620000000000 ,1620000000000 ,1616812547300 -1616812547325 ,112.5674217,26.86830701,62.35967636,181.2127404,181.7004589,14.885666,0.134423762,1620000000000 ,1620000000000 ,1620000000000 ,1616812547310 -1616812547335 ,112.5674216,26.86830566,62.36004257,181.2103908,181.7009313,14.883403,0.134403819,1620000000000 ,1620000000000 ,1620000000000 ,1616812547320 -1616812547345 ,112.5674216,26.86830432,62.36051559,181.2076587,181.7043261,14.883517,0.134403804,1620000000000 ,1620000000000 ,1620000000000 ,1616812547330 -1616812547356 ,112.5674215,26.86830298,62.36103439,181.2054184,181.7062952,14.884125,0.134407428,1620000000000 ,1620000000000 ,1620000000000 ,1616812547340 -1616812547369 ,112.5674215,26.86830163,62.36158371,181.2031235,181.7106425,14.883339,0.134407851,1620000000000 ,1620000000000 ,1620000000000 ,1616812547350 -1616812547379 ,112.5674215,26.86830029,62.36218643,181.1998996,181.7154234,14.879756,0.134384707,1620000000000 ,1620000000000 ,1620000000000 ,1616812547360 -1616812547389 ,112.5674214,26.86829895,62.36286545,181.1948726,181.7134639,14.87712,0.134359073,1620000000000 ,1620000000000 ,1620000000000 ,1616812547370 -1616812547398 ,112.5674214,26.86829761,62.36360931,181.1933426,181.7174912,14.877424,0.134355061,1620000000000 ,1620000000000 ,1620000000000 ,1616812547380 -1616812547406 ,112.5674213,26.86829626,62.36434174,181.1905559,181.717851,14.879347,0.134370635,1620000000000 ,1620000000000 ,1620000000000 ,1616812547390 -1616812547419 ,112.5674213,26.86829492,62.36503601,181.1861846,181.7130033,14.879789,0.134381219,1620000000000 ,1620000000000 ,1620000000000 ,1616812547400 -1616812547427 ,112.5674213,26.86829358,62.3657341,181.1839716,181.7101191,14.878395,0.134370459,1620000000000 ,1620000000000 ,1620000000000 ,1616812547410 -1616812547436 ,112.5674212,26.86829223,62.36642456,181.180939,181.7096914,14.876982,0.134356997,1620000000000 ,1620000000000 ,1620000000000 ,1616812547420 -1616812547448 ,112.5674212,26.86829089,62.36708069,181.1808024,181.7101577,14.875929,0.134346664,1620000000000 ,1620000000000 ,1620000000000 ,1616812547430 -1616812547458 ,112.5674211,26.86828955,62.36770248,181.1782889,181.7157587,14.875203,0.134345357,1620000000000 ,1620000000000 ,1620000000000 ,1616812547440 -1616812547468 ,112.5674211,26.8682882,62.36857605,181.17583,181.8270689,14.875281,0.134367849,1620000000000 ,1620000000000 ,1620000000000 ,1616812547450 -1616812547476 ,112.5674211,26.86828686,62.36972809,181.1718139,181.9294421,14.873355,0.13438116,1620000000000 ,1620000000000 ,1620000000000 ,1616812547460 -1616812547490 ,112.567421,26.86828552,62.37090683,181.1682076,181.9334555,14.873176,0.134379219,1620000000000 ,1620000000000 ,1620000000000 ,1616812547470 -1616812547496 ,112.567421,26.86828417,62.37203598,181.1661858,181.9401234,14.873386,0.134380212,1620000000000 ,1620000000000 ,1620000000000 ,1616812547480 -1616812547507 ,112.5674209,26.86828283,62.37303162,181.165011,181.947729,14.874867,0.134383713,1620000000000 ,1620000000000 ,1620000000000 ,1616812547490 -1616812547517 ,112.5674209,26.86828149,62.37392807,181.1636996,181.9466804,14.874827,0.134385038,1620000000000 ,1620000000000 ,1620000000000 ,1616812547500 -1616812547528 ,112.5674208,26.86828015,62.37479782,181.1595469,181.936415,14.874294,0.13438109,1620000000000 ,1620000000000 ,1620000000000 ,1616812547510 -1616812547537 ,112.5674208,26.8682788,62.37567902,181.1556673,181.9289723,14.8724785,0.134365872,1620000000000 ,1620000000000 ,1620000000000 ,1616812547520 -1616812547548 ,112.5674207,26.86827746,62.3765564,181.1533177,181.9333905,14.872146,0.134360614,1620000000000 ,1620000000000 ,1620000000000 ,1616812547530 -1616812547560 ,112.5674207,26.86827612,62.37739944,181.1511867,181.9341146,14.874159,0.134371298,1620000000000 ,1620000000000 ,1620000000000 ,1616812547540 -1616812547578 ,112.5674206,26.86827477,62.3781929,181.1479902,181.9291318,14.877146,0.134391748,1620000000000 ,1620000000000 ,1620000000000 ,1616812547550 -1616812547586 ,112.5674206,26.86827343,62.37893677,181.1458592,181.9176737,14.879862,0.134417252,1620000000000 ,1620000000000 ,1620000000000 ,1616812547560 -1616812547590 ,112.5674206,26.86827209,62.37960434,181.1440014,181.9092695,14.8812475,0.134429389,1620000000000 ,1620000000000 ,1620000000000 ,1616812547570 -1616812547598 ,112.5674205,26.86827074,62.3801918,181.1407502,181.9082484,14.881953,0.134434974,1620000000000 ,1620000000000 ,1620000000000 ,1616812547580 -1616812547608 ,112.5674205,26.8682694,62.38075638,181.1377176,181.9040208,14.881682,0.134430408,1620000000000 ,1620000000000 ,1620000000000 ,1616812547590 -1616812547618 ,112.5674204,26.86826806,62.38136292,181.1337288,181.895287,14.881222,0.134425889,1620000000000 ,1620000000000 ,1620000000000 ,1616812547600 -1616812547632 ,112.5674204,26.86826671,62.38196945,181.1314885,181.8891162,14.88379,0.13444168,1620000000000 ,1620000000000 ,1620000000000 ,1616812547610 -1616812547643 ,112.5674203,26.86826537,62.38256073,181.1300131,181.8908356,14.88593,0.134462547,1620000000000 ,1620000000000 ,1620000000000 ,1616812547620 -1616812547649 ,112.5674203,26.86826402,62.38315201,181.1280187,181.8883219,14.8872175,0.13447445,1620000000000 ,1620000000000 ,1620000000000 ,1616812547630 -1616812547660 ,112.5674202,26.86826268,62.38376999,181.1255052,181.8787762,14.888696,0.134487573,1620000000000 ,1620000000000 ,1620000000000 ,1616812547640 -1616812547670 ,112.5674202,26.86826134,62.38441086,181.1247949,181.8728541,14.891223,0.134507383,1620000000000 ,1620000000000 ,1620000000000 ,1616812547650 -1616812547678 ,112.5674202,26.86825999,62.38505173,181.1211066,181.8684663,14.891843,0.134519266,1620000000000 ,1620000000000 ,1620000000000 ,1616812547660 -1616812547688 ,112.5674201,26.86825865,62.38570786,181.1181286,181.8658425,14.892312,0.134521516,1620000000000 ,1620000000000 ,1620000000000 ,1616812547670 -1616812547698 ,112.5674201,26.8682573,62.38638306,181.1165167,181.8641406,14.892628,0.134523277,1620000000000 ,1620000000000 ,1620000000000 ,1616812547680 -1616812547709 ,112.56742,26.86825596,62.38708878,181.1139758,181.8674968,14.894995,0.13454198,1620000000000 ,1620000000000 ,1620000000000 ,1616812547690 -1616812547721 ,112.56742,26.86825461,62.38784027,181.112118,181.8648133,14.8973255,0.13456525,1620000000000 ,1620000000000 ,1620000000000 ,1616812547700 -1616812547730 ,112.5674199,26.86825327,62.3886528,181.1085937,181.8599828,14.8983,0.134581059,1620000000000 ,1620000000000 ,1620000000000 ,1616812547710 -1616812547739 ,112.5674199,26.86825192,62.38954163,181.1063534,181.8488787,14.896848,0.134575732,1620000000000 ,1620000000000 ,1620000000000 ,1616812547720 -1616812547749 ,112.5674198,26.86825058,62.39047241,181.1045502,181.8418952,14.895953,0.134563858,1620000000000 ,1620000000000 ,1620000000000 ,1616812547730 -1616812547760 ,112.5674198,26.86824923,62.39143753,181.1026104,181.8441187,14.898104,0.134579109,1620000000000 ,1620000000000 ,1620000000000 ,1616812547740 -1616812547769 ,112.5674198,26.86824789,62.39241028,181.1000696,181.8360582,14.901369,0.134609354,1620000000000 ,1620000000000 ,1620000000000 ,1616812547750 -1616812547780 ,112.5674197,26.86824654,62.39339828,181.0975834,181.8333854,14.903186,0.134629759,1620000000000 ,1620000000000 ,1620000000000 ,1616812547760 -1616812547791 ,112.5674197,26.8682452,62.39441681,181.0966272,181.8359379,14.9043455,0.13464483,1620000000000 ,1620000000000 ,1620000000000 ,1616812547770 -1616812547803 ,112.5674196,26.86824385,62.39547348,181.0932394,181.835715,14.903483,0.134643382,1620000000000 ,1620000000000 ,1620000000000 ,1616812547780 -1616812547811 ,112.5674196,26.8682425,62.39658737,181.0931301,181.8300226,14.904038,0.134648699,1620000000000 ,1620000000000 ,1620000000000 ,1616812547790 -1616812547821 ,112.5674195,26.86824116,62.39768982,181.0916548,181.8220979,14.906165,0.134663422,1620000000000 ,1620000000000 ,1620000000000 ,1616812547800 -1616812547831 ,112.5674195,26.86823981,62.39871597,181.0900429,181.8214533,14.909437,0.134690095,1620000000000 ,1620000000000 ,1620000000000 ,1616812547810 -1616812547840 ,112.5674195,26.86823847,62.39965057,181.0894145,181.8297407,14.911299,0.134708863,1620000000000 ,1620000000000 ,1620000000000 ,1616812547820 -1616812547850 ,112.5674194,26.86823712,62.4005394,181.0863819,181.8265797,14.913216,0.134725719,1620000000000 ,1620000000000 ,1620000000000 ,1616812547830 -1616812547860 ,112.5674194,26.86823577,62.40138245,181.0836225,181.829344,14.914615,0.134740563,1620000000000 ,1620000000000 ,1620000000000 ,1616812547840 -1616812547879 ,112.5674193,26.86823443,62.40214539,181.0818466,181.824672,14.917375,0.134761111,1620000000000 ,1620000000000 ,1620000000000 ,1616812547850 -1616812547884 ,112.5674193,26.86823308,62.40281296,181.0782676,181.8238926,14.919757,0.134779256,1620000000000 ,1620000000000 ,1620000000000 ,1616812547860 -1616812547891 ,112.5674192,26.86823173,62.40340042,181.0755082,181.8188294,14.922196,0.134797922,1620000000000 ,1620000000000 ,1620000000000 ,1616812547870 -1616812547903 ,112.5674192,26.86823038,62.40391922,181.0730494,181.8215693,14.92365,0.134815279,1620000000000 ,1620000000000 ,1620000000000 ,1616812547880 -1616812547913 ,112.5674192,26.86822904,62.40439606,181.071574,181.8254637,14.925643,0.134832414,1620000000000 ,1620000000000 ,1620000000000 ,1616812547890 -1616812547925 ,112.5674191,26.86822769,62.40486908,181.0676125,181.822362,14.927276,0.134845634,1620000000000 ,1620000000000 ,1620000000000 ,1616812547900 -1616812547934 ,112.5674191,26.86822634,62.40537643,181.0646892,181.8125981,14.928363,0.134856464,1620000000000 ,1620000000000 ,1620000000000 ,1616812547910 -1616812547942 ,112.567419,26.86822499,62.40589905,181.0611375,181.8119956,14.930036,0.134873516,1620000000000 ,1620000000000 ,1620000000000 ,1616812547920 -1616812547950 ,112.567419,26.86822364,62.40639496,181.0596349,181.8094805,14.932315,0.134890983,1620000000000 ,1620000000000 ,1620000000000 ,1616812547930 -1616812547961 ,112.5674189,26.8682223,62.40684128,181.0573946,181.8049344,14.933753,0.134901931,1620000000000 ,1620000000000 ,1620000000000 ,1616812547940 -1616812547971 ,112.5674189,26.86822095,62.40726089,181.0551816,181.7987067,14.935246,0.134914974,1620000000000 ,1620000000000 ,1620000000000 ,1616812547950 -1616812547982 ,112.5674189,26.8682196,62.40764999,181.0543346,181.7989197,14.937774,0.134935312,1620000000000 ,1620000000000 ,1620000000000 ,1616812547960 -1616812547992 ,112.5674188,26.86821825,62.40800476,181.0545259,181.7945063,14.939073,0.134948715,1620000000000 ,1620000000000 ,1620000000000 ,1616812547970 -1616812548003 ,112.5674188,26.8682169,62.40830994,181.0540341,181.7931046,14.940508,0.134955895,1620000000000 ,1620000000000 ,1620000000000 ,1616812547980 -1616812548013 ,112.5674187,26.86821555,62.40855026,181.0535697,181.7907634,14.942759,0.134970156,1620000000000 ,1620000000000 ,1620000000000 ,1616812547990 -1616812548024 ,112.5674187,26.8682142,62.40871811,181.0541161,181.7876153,14.946761,0.134999263,1620000000000 ,1620000000000 ,1620000000000 ,1616812548010 -1616812548035 ,112.5674187,26.86821285,62.40881729,181.0547444,181.785628,14.951158,0.135035721,1620000000000 ,1620000000000 ,1620000000000 ,1616812548020 -1616812548045 ,112.5674186,26.8682115,62.4088707,181.0552909,181.791949,14.955353,0.135067981,1620000000000 ,1620000000000 ,1620000000000 ,1616812548030 -1616812548053 ,112.5674186,26.86821015,62.40895081,181.0559739,181.7912353,14.956807,0.135089638,1620000000000 ,1620000000000 ,1620000000000 ,1616812548040 -1616812548062 ,112.5674185,26.86820745,62.40937042,181.0592524,181.7798648,14.959696,0.270217016,1620000000000 ,1620000000000 ,1620000000000 ,1616812548050 -1616812548073 ,112.5674184,26.8682061,62.40963745,181.0599354,181.7755874,14.961073,0.135124509,1620000000000 ,1620000000000 ,1620000000000 ,1616812548060 -1616812548086 ,112.5674184,26.86820475,62.40991211,181.0609736,181.788398,14.962911,0.135143198,1620000000000 ,1620000000000 ,1620000000000 ,1616812548070 -1616812548094 ,112.5674184,26.8682034,62.41025925,181.0624489,181.7946357,14.965152,0.135163288,1620000000000 ,1620000000000 ,1620000000000 ,1616812548080 -1616812548105 ,112.5674184,26.8682034,62.41025925,181.0624489,-400,14.965152,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812548080 -1616812548114 ,112.5674183,26.86820205,62.41072845,181.0664104,181.7899425,14.966352,0.135174983,1620000000000 ,1620000000000 ,1620000000000 ,1616812548100 -1616812548124 ,112.5674182,26.86819935,62.41196823,181.0710003,181.7950491,14.970296,0.270402448,1620000000000 ,1620000000000 ,1620000000000 ,1616812548110 -1616812548133 ,112.5674182,26.86819799,62.41263962,181.0720931,181.81709,14.972377,0.135234264,1620000000000 ,1620000000000 ,1620000000000 ,1616812548120 -1616812548143 ,112.5674182,26.86819799,62.41263962,181.0720931,-400,14.972377,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812548130 -1616812548153 ,112.5674181,26.86819529,62.41425705,181.0753443,181.8250306,14.974892,0.270512449,1620000000000 ,1620000000000 ,1620000000000 ,1616812548140 -1616812548164 ,112.5674181,26.86819394,62.41523743,181.0772568,181.8310141,14.976731,0.135281106,1620000000000 ,1620000000000 ,1620000000000 ,1616812548150 -1616812548174 ,112.567418,26.86819259,62.41627884,181.0786501,181.8362939,14.979484,0.135306044,1620000000000 ,1620000000000 ,1620000000000 ,1616812548160 -1616812548185 ,112.567418,26.86819123,62.41740417,181.0800708,181.8472823,14.980676,0.135322709,1620000000000 ,1620000000000 ,1620000000000 ,1616812548170 -1616812548193 ,112.5674179,26.86818988,62.41864395,181.0827209,181.8499503,14.9808655,0.135330814,1620000000000 ,1620000000000 ,1620000000000 ,1616812548180 -1616812548203 ,112.5674179,26.86818988,62.41864395,181.0827209,-400,14.9808655,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812548190 -1616812548214 ,112.5674178,26.86818717,62.42208862,181.0880485,181.8163657,14.983094,0.270747213,1620000000000 ,1620000000000 ,1620000000000 ,1616812548200 -1616812548225 ,112.5674178,26.86818582,62.42522049,181.0916821,181.7024326,14.985728,0.135492707,1620000000000 ,1620000000000 ,1620000000000 ,1616812548210 -1616812548235 ,112.5674178,26.86818447,62.42832184,181.0932121,181.7173917,14.989283,0.135524385,1620000000000 ,1620000000000 ,1620000000000 ,1616812548220 -1616812548246 ,112.5674177,26.86818311,62.43142319,181.0950426,181.7311124,14.991568,0.135548169,1620000000000 ,1620000000000 ,1620000000000 ,1616812548230 -1616812548257 ,112.5674177,26.86818176,62.43456268,181.0963266,181.7316356,14.992876,0.135564368,1620000000000 ,1620000000000 ,1620000000000 ,1616812548240 -1616812548269 ,112.5674176,26.8681804,62.43775177,181.0959988,181.7270747,14.994624,0.13558107,1620000000000 ,1620000000000 ,1620000000000 ,1616812548250 -1616812548279 ,112.5674176,26.86817904,62.44094086,181.0972009,181.7247416,14.997775,0.135605819,1620000000000 ,1620000000000 ,1620000000000 ,1616812548260 -1616812548285 ,112.5674176,26.86817769,62.44406128,181.0979386,181.7336524,15.001595,0.135638708,1620000000000 ,1620000000000 ,1620000000000 ,1616812548270 -1616812548295 ,112.5674175,26.86817633,62.44710159,181.1001789,181.7422971,15.004917,0.135668842,1620000000000 ,1620000000000 ,1620000000000 ,1616812548280 -1616812548305 ,112.5674175,26.86817498,62.45009613,181.1022552,181.7295288,15.006011,0.135682886,1620000000000 ,1620000000000 ,1620000000000 ,1616812548290 -1616812548315 ,112.5674174,26.86817362,62.45304489,181.1019001,181.7228295,15.007609,0.135695589,1620000000000 ,1620000000000 ,1620000000000 ,1616812548300 -1616812548324 ,112.5674174,26.86817226,62.45592117,181.1048234,181.7242169,15.011569,0.135719808,1620000000000 ,1620000000000 ,1620000000000 ,1616812548310 -1616812548335 ,112.5674174,26.86817091,62.45870972,181.1080746,181.729215,15.014421,0.135750683,1620000000000 ,1620000000000 ,1620000000000 ,1616812548320 -1616812548346 ,112.5674173,26.86816955,62.46146774,181.1117355,181.7290333,15.01779,0.135779406,1620000000000 ,1620000000000 ,1620000000000 ,1616812548330 -1616812548356 ,112.5674173,26.86816819,62.46425247,181.1124732,181.7192475,15.019256,0.135796148,1620000000000 ,1620000000000 ,1620000000000 ,1616812548340 -1616812548366 ,112.5674172,26.86816683,62.46705627,181.1143857,181.7156146,15.021516,0.135815043,1620000000000 ,1620000000000 ,1620000000000 ,1616812548350 -1616812548377 ,112.5674172,26.86816548,62.46983719,181.1174456,181.7252273,15.024847,0.13584308,1620000000000 ,1620000000000 ,1620000000000 ,1616812548360 -1616812548386 ,112.5674171,26.86816412,62.47258759,181.1205602,181.7485835,15.028813,0.135877497,1620000000000 ,1620000000000 ,1620000000000 ,1616812548370 -1616812548396 ,112.5674171,26.86816276,62.4753685,181.1205602,181.7508065,15.031128,0.135905866,1620000000000 ,1620000000000 ,1620000000000 ,1616812548380 -1616812548405 ,112.5674171,26.8681614,62.47821808,181.1227185,181.7464772,15.032855,0.135925817,1620000000000 ,1620000000000 ,1620000000000 ,1616812548390 -1616812548416 ,112.567417,26.86816004,62.48112869,181.1244397,181.7486155,15.03478,0.135944775,1620000000000 ,1620000000000 ,1620000000000 ,1616812548400 -1616812548427 ,112.567417,26.86815868,62.48404694,181.1250681,181.7507675,15.037136,0.135967968,1620000000000 ,1620000000000 ,1620000000000 ,1616812548410 -1616812548436 ,112.5674169,26.86815733,62.48692703,181.1286198,181.7615658,15.037513,0.135975144,1620000000000 ,1620000000000 ,1620000000000 ,1616812548420 -1616812548446 ,112.5674169,26.86815597,62.4897728,181.1307781,181.7621382,15.038734,0.135987921,1620000000000 ,1620000000000 ,1620000000000 ,1616812548430 -1616812548455 ,112.5674169,26.86815461,62.49256516,181.1333189,181.7511338,15.041494,0.136006732,1620000000000 ,1620000000000 ,1620000000000 ,1616812548440 -1616812548465 ,112.5674168,26.86815325,62.49456406,181.1339746,181.7989325,15.046584,0.135986223,1620000000000 ,1620000000000 ,1620000000000 ,1616812548450 -1616812548475 ,112.5674168,26.86815189,62.49572372,181.1387831,181.8640356,15.05077,0.135973571,1620000000000 ,1620000000000 ,1620000000000 ,1616812548460 -1616812548486 ,112.5674167,26.86815053,62.49675369,181.1388651,181.8734146,15.055033,0.136006504,1620000000000 ,1620000000000 ,1620000000000 ,1616812548470 -1616812548496 ,112.5674167,26.86814917,62.49778366,181.1409961,181.871713,15.058408,0.136040998,1620000000000 ,1620000000000 ,1620000000000 ,1616812548480 -1616812548513 ,112.5674166,26.86814781,62.49887848,181.141925,181.8605622,15.058184,0.136053163,1620000000000 ,1620000000000 ,1620000000000 ,1616812548490 -1616812548522 ,112.5674166,26.86814645,62.5,181.1438648,181.865566,15.058916,0.136057194,1620000000000 ,1620000000000 ,1620000000000 ,1616812548500 -1616812548528 ,112.5674165,26.86814509,62.50105286,181.1465695,181.8756243,15.06199,0.136078966,1620000000000 ,1620000000000 ,1620000000000 ,1616812548510 -1616812548539 ,112.5674165,26.86814373,62.50198746,181.150531,181.8932262,15.065794,0.136111492,1620000000000 ,1620000000000 ,1620000000000 ,1616812548520 -1616812548548 ,112.5674165,26.86814237,62.50286484,181.15411,181.8911945,15.070018,0.136146355,1620000000000 ,1620000000000 ,1620000000000 ,1616812548530 -1616812548559 ,112.5674164,26.86814101,62.50376892,181.1542193,181.8850267,15.071342,0.136164608,1620000000000 ,1620000000000 ,1620000000000 ,1616812548540 -1616812548566 ,112.5674164,26.86813965,62.50469208,181.1556946,181.8830372,15.07228,0.136176473,1620000000000 ,1620000000000 ,1620000000000 ,1616812548550 -1616812548580 ,112.5674163,26.86813829,62.50550079,181.1611588,181.880982,15.0760975,0.136200088,1620000000000 ,1620000000000 ,1620000000000 ,1616812548560 -1616812548591 ,112.5674163,26.86813692,62.50614929,181.1622243,181.8958791,15.081065,0.136233731,1620000000000 ,1620000000000 ,1620000000000 ,1616812548570 -1616812548602 ,112.5674162,26.86813556,62.50662994,181.1626614,181.8919221,15.086594,0.136277985,1620000000000 ,1620000000000 ,1620000000000 ,1616812548580 -1616812548610 ,112.5674162,26.8681342,62.50701523,181.1632625,181.8845147,15.0907955,0.13631732,1620000000000 ,1620000000000 ,1620000000000 ,1616812548590 -1616812548620 ,112.5674161,26.86813284,62.50735092,181.1641094,181.8826535,15.093922,0.136346225,1620000000000 ,1620000000000 ,1620000000000 ,1616812548600 -1616812548630 ,112.5674161,26.86813147,62.50768661,181.1648198,181.8924641,15.096751,0.136372884,1620000000000 ,1620000000000 ,1620000000000 ,1616812548610 -1616812548638 ,112.5674161,26.86813011,62.50802612,181.1664863,181.9022941,15.099946,0.136400024,1620000000000 ,1620000000000 ,1620000000000 ,1616812548620 -1616812548647 ,112.567416,26.86812875,62.5083313,181.1706118,181.8971034,15.103462,0.136431007,1620000000000 ,1620000000000 ,1620000000000 ,1616812548630 -1616812548657 ,112.567416,26.86812738,62.50856781,181.174382,181.8991227,15.105238,0.136446584,1620000000000 ,1620000000000 ,1620000000000 ,1616812548640 -1616812548669 ,112.5674159,26.86812602,62.50878143,181.1756934,181.8972634,15.107461,0.136462512,1620000000000 ,1620000000000 ,1620000000000 ,1616812548650 -1616812548680 ,112.5674159,26.86812465,62.50902557,181.1786441,181.8972899,15.111306,0.136492973,1620000000000 ,1620000000000 ,1620000000000 ,1616812548660 -1616812548690 ,112.5674158,26.86812329,62.50931549,181.1821958,181.91824,15.11707,0.136540418,1620000000000 ,1620000000000 ,1620000000000 ,1616812548670 -1616812548699 ,112.5674158,26.86812192,62.50964737,181.1870316,181.9180866,15.1217785,0.136587508,1620000000000 ,1620000000000 ,1620000000000 ,1616812548680 -1616812548711 ,112.5674157,26.86812056,62.51006699,181.1922498,181.9213195,15.121966,0.13660208,1620000000000 ,1620000000000 ,1620000000000 ,1616812548690 -1616812548719 ,112.5674157,26.86811919,62.51058578,181.1972768,181.9171889,15.124854,0.136622126,1620000000000 ,1620000000000 ,1620000000000 ,1616812548700 -1616812548728 ,112.5674156,26.86811783,62.51115799,181.2014296,181.917969,15.127552,0.13665133,1620000000000 ,1620000000000 ,1620000000000 ,1616812548710 -1616812548738 ,112.5674156,26.86811646,62.51177216,181.2063746,181.9349638,15.128158,0.136663395,1620000000000 ,1620000000000 ,1620000000000 ,1616812548720 -1616812548749 ,112.5674155,26.8681151,62.51245499,181.2121393,181.9508071,15.127432,0.136666863,1620000000000 ,1620000000000 ,1620000000000 ,1616812548730 -1616812548760 ,112.5674155,26.86811373,62.51320648,181.217986,181.9543976,15.128081,0.13666727,1620000000000 ,1620000000000 ,1620000000000 ,1616812548740 -1616812548770 ,112.5674155,26.86811236,62.51399612,181.2227125,181.954946,15.130754,0.136684394,1620000000000 ,1620000000000 ,1620000000000 ,1616812548750 -1616812548783 ,112.5674154,26.868111,62.51475143,181.2292694,181.9571899,15.136614,0.136730516,1620000000000 ,1620000000000 ,1620000000000 ,1616812548760 -1616812548793 ,112.5674154,26.86810963,62.51543427,181.2347609,181.9618512,15.142438,0.136782901,1620000000000 ,1620000000000 ,1620000000000 ,1616812548770 -1616812548801 ,112.5674153,26.86810826,62.51608276,181.2408808,181.9699322,15.145003,0.13680818,1620000000000 ,1620000000000 ,1620000000000 ,1616812548780 -1616812548811 ,112.5674153,26.8681069,62.51682281,181.2465635,181.9781884,15.144759,0.136818346,1620000000000 ,1620000000000 ,1620000000000 ,1616812548790 -1616812548820 ,112.5674152,26.86810553,62.51769638,181.2542953,181.9680794,15.145141,0.136816631,1620000000000 ,1620000000000 ,1620000000000 ,1616812548800 -1616812548831 ,112.5674152,26.86810416,62.5186615,181.2604697,181.9748074,15.148305,0.136849355,1620000000000 ,1620000000000 ,1620000000000 ,1616812548810 -1616812548840 ,112.5674151,26.86810279,62.51964569,181.2674092,181.992591,15.152394,0.136878178,1620000000000 ,1620000000000 ,1620000000000 ,1616812548820 -1616812548850 ,112.5674151,26.86810143,62.52064133,181.2744307,182.0113852,15.155173,0.136909177,1620000000000 ,1620000000000 ,1620000000000 ,1616812548830 -1616812548860 ,112.567415,26.86810006,62.52169418,181.2818892,182.0241354,15.157715,0.136932114,1620000000000 ,1620000000000 ,1620000000000 ,1616812548840 -1616812548871 ,112.567415,26.86809869,62.52277374,181.2888287,182.0280145,15.161648,0.136966303,1620000000000 ,1620000000000 ,1620000000000 ,1616812548850 -1616812548881 ,112.5674149,26.86809732,62.52378464,181.2965058,182.0395391,15.165929,0.1369978,1620000000000 ,1620000000000 ,1620000000000 ,1616812548860 -1616812548890 ,112.5674149,26.86809595,62.52465439,181.303418,182.0617714,15.169407,0.137031091,1620000000000 ,1620000000000 ,1620000000000 ,1616812548870 -1616812548904 ,112.5674148,26.86809458,62.52540207,181.3102755,182.0760935,15.172299,0.137048509,1620000000000 ,1620000000000 ,1620000000000 ,1616812548880 -1616812548910 ,112.5674148,26.86809321,62.52614594,181.3131168,182.0892276,15.171871,0.137050634,1620000000000 ,1620000000000 ,1620000000000 ,1616812548890 -1616812548920 ,112.5674147,26.86809184,62.52698135,181.3165046,182.0902099,15.174706,0.137068705,1620000000000 ,1620000000000 ,1620000000000 ,1616812548900 -1616812548930 ,112.5674147,26.86809047,62.52793503,181.3189635,182.0949794,15.179583,0.137110269,1620000000000 ,1620000000000 ,1620000000000 ,1616812548910 -1616812548940 ,112.5674146,26.8680891,62.52894211,181.3227611,182.1063681,15.186099,0.137165363,1620000000000 ,1620000000000 ,1620000000000 ,1616812548920 -1616812548954 ,112.5674146,26.86808773,62.529953,181.3277061,182.1273742,15.191015,0.137215701,1620000000000 ,1620000000000 ,1620000000000 ,1616812548930 -1616812548963 ,112.5674145,26.86808636,62.53102875,181.3328424,182.1322095,15.190909,0.13722708,1620000000000 ,1620000000000 ,1620000000000 ,1616812548940 -1616812548972 ,112.5674145,26.86808499,62.53225708,181.3375416,182.1244569,15.190219,0.137225127,1620000000000 ,1620000000000 ,1620000000000 ,1616812548950 -1616812548985 ,112.5674144,26.86808361,62.53362274,181.3423227,182.1278272,15.190834,0.137230017,1620000000000 ,1620000000000 ,1620000000000 ,1616812548960 -1616812548992 ,112.5674144,26.86808224,62.5350914,181.3472405,182.1471896,15.193153,0.137245724,1620000000000 ,1620000000000 ,1620000000000 ,1616812548970 -1616812549004 ,112.5674143,26.86808087,62.53666687,181.3511747,182.1730325,15.197016,0.137285865,1620000000000 ,1620000000000 ,1620000000000 ,1616812548980 -1616812549012 ,112.5674143,26.8680795,62.53841019,181.3535516,182.1908146,15.199984,0.137314949,1620000000000 ,1620000000000 ,1620000000000 ,1616812548990 -1616812549021 ,112.5674142,26.86807813,62.54029465,181.3571306,182.1929682,15.202639,0.137350145,1620000000000 ,1620000000000 ,1620000000000 ,1616812549000 -1616812549031 ,112.5674142,26.86807675,62.54222488,181.3587698,182.192044,15.203758,0.137361803,1620000000000 ,1620000000000 ,1620000000000 ,1616812549010 -1616812549042 ,112.5674141,26.86807538,62.54411316,181.3593709,182.1987607,15.20852,0.13739588,1620000000000 ,1620000000000 ,1620000000000 ,1616812549020 -1616812549052 ,112.5674141,26.86807401,62.54594803,181.3622122,182.2137908,15.213369,0.1374503,1620000000000 ,1620000000000 ,1620000000000 ,1616812549030 -1616812549062 ,112.567414,26.86807263,62.54777908,181.3627587,182.2320284,15.213748,0.137460629,1620000000000 ,1620000000000 ,1620000000000 ,1616812549040 -1616812549072 ,112.567414,26.86807126,62.54965591,181.3584966,182.2212084,15.2111025,0.137445484,1620000000000 ,1620000000000 ,1620000000000 ,1616812549050 -1616812549082 ,112.5674139,26.86806989,62.55157471,181.3578136,182.2031188,15.210206,0.137440405,1620000000000 ,1620000000000 ,1620000000000 ,1616812549060 -1616812549091 ,112.5674139,26.86806851,62.55347061,181.3600266,182.2109184,15.212987,0.137446964,1620000000000 ,1620000000000 ,1620000000000 ,1616812549070 -1616812549102 ,112.5674138,26.86806714,62.5553093,181.3657913,182.234524,15.217198,0.137494853,1620000000000 ,1620000000000 ,1620000000000 ,1616812549080 -1616812549112 ,112.5674137,26.86806577,62.55703354,181.3691244,182.2020596,15.221427,0.137525862,1620000000000 ,1620000000000 ,1620000000000 ,1616812549090 -1616812549124 ,112.5674137,26.86806439,62.55873489,181.3686053,182.1835813,15.225493,0.137559195,1620000000000 ,1620000000000 ,1620000000000 ,1616812549100 -1616812549136 ,112.5674136,26.86806302,62.56048584,181.3650263,182.1921208,15.232854,0.137621816,1620000000000 ,1620000000000 ,1620000000000 ,1616812549120 -1616812549143 ,112.5674136,26.86806164,62.5622139,181.3653268,182.207559,15.236875,0.13767768,1620000000000 ,1620000000000 ,1620000000000 ,1616812549130 -1616812549153 ,112.5674135,26.86806026,62.56388474,181.367048,182.2248806,15.236394,0.137678104,1620000000000 ,1620000000000 ,1620000000000 ,1616812549140 -1616812549162 ,112.5674135,26.86805889,62.56558228,181.3693976,182.2363107,15.233278,0.137659032,1620000000000 ,1620000000000 ,1620000000000 ,1616812549150 -1616812549172 ,112.5674134,26.86805751,62.56734085,181.3711735,182.2272208,15.232227,0.137650823,1620000000000 ,1620000000000 ,1620000000000 ,1616812549160 -1616812549183 ,112.5674134,26.86805614,62.56901932,181.3758726,182.2188317,15.235247,0.13766392,1620000000000 ,1620000000000 ,1620000000000 ,1616812549170 -1616812549194 ,112.5674133,26.86805339,62.57143021,181.3806811,182.2453197,15.245556,0.275442175,1620000000000 ,1620000000000 ,1620000000000 ,1616812549180 -1616812549209 ,112.5674133,26.86805339,62.57143021,181.3806811,-400,15.245556,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812549180 -1616812549213 ,112.5674132,26.86805063,62.57267761,181.3777031,182.1892173,15.24079,0.27541929,1620000000000 ,1620000000000 ,1620000000000 ,1616812549200 -1616812549224 ,112.5674131,26.86804926,62.57246399,181.377867,181.9542817,15.245272,0.137501559,1620000000000 ,1620000000000 ,1620000000000 ,1616812549210 -1616812549234 ,112.5674131,26.86804788,62.57206726,181.3805718,181.9787637,15.252453,0.137576931,1620000000000 ,1620000000000 ,1620000000000 ,1616812549220 -1616812549243 ,112.567413,26.86804651,62.57156372,181.3842328,181.9749142,15.262523,0.137647093,1620000000000 ,1620000000000 ,1620000000000 ,1616812549230 -1616812549256 ,112.567413,26.86804513,62.57110977,181.3842601,181.9629488,15.267399,0.137704432,1620000000000 ,1620000000000 ,1620000000000 ,1616812549240 -1616812549265 ,112.5674129,26.86804376,62.57079697,181.3861452,181.9604425,15.262864,0.137690069,1620000000000 ,1620000000000 ,1620000000000 ,1616812549250 -1616812549274 ,112.5674129,26.86804238,62.57066727,181.3898335,181.9657619,15.259511,0.13765903,1620000000000 ,1620000000000 ,1620000000000 ,1616812549260 -1616812549285 ,112.5674128,26.868041,62.57058716,181.3928388,181.9709354,15.263306,0.13767698,1620000000000 ,1620000000000 ,1620000000000 ,1616812549270 -1616812549296 ,112.5674128,26.86803963,62.57041168,181.3964178,181.9827832,15.272141,0.13773931,1620000000000 ,1620000000000 ,1620000000000 ,1616812549280 -1616812549312 ,112.5674127,26.86803825,62.57011414,181.3983849,181.9978466,15.280292,0.137815335,1620000000000 ,1620000000000 ,1620000000000 ,1616812549290 -1616812549315 ,112.5674127,26.86803687,62.56978989,181.3998329,181.9910668,15.283528,0.137851229,1620000000000 ,1620000000000 ,1620000000000 ,1616812549300 -1616812549324 ,112.5674126,26.86803549,62.56959152,181.4002701,181.9803943,15.284404,0.137865995,1620000000000 ,1620000000000 ,1620000000000 ,1616812549310 -1616812549336 ,112.5674126,26.86803412,62.56954193,181.3999149,181.9901994,15.287191,0.137888782,1620000000000 ,1620000000000 ,1620000000000 ,1616812549320 -1616812549344 ,112.5674125,26.86803274,62.56963348,181.4000515,182.0103605,15.287361,0.13790109,1620000000000 ,1620000000000 ,1620000000000 ,1616812549330 -1616812549354 ,112.5674125,26.86803136,62.56984329,181.3999422,182.0162653,15.285491,0.13789053,1620000000000 ,1620000000000 ,1620000000000 ,1616812549340 -1616812549364 ,112.5674124,26.86802998,62.57016754,181.3996144,182.0051737,15.284886,0.137882216,1620000000000 ,1620000000000 ,1620000000000 ,1616812549350 -1616812549382 ,112.5674124,26.8680286,62.57051468,181.4014449,181.9934337,15.288239,0.137904102,1620000000000 ,1620000000000 ,1620000000000 ,1616812549360 -1616812549386 ,112.5674123,26.86802723,62.57078552,181.4040403,182.001611,15.293807,0.137947782,1620000000000 ,1620000000000 ,1620000000000 ,1616812549370 -1616812549397 ,112.5674123,26.86802585,62.57095718,181.4065265,182.0166052,15.300771,0.13800315,1620000000000 ,1620000000000 ,1620000000000 ,1616812549380 -1616812549406 ,112.5674123,26.86802447,62.57110596,181.4093679,182.0142653,15.307991,0.138065915,1620000000000 ,1620000000000 ,1620000000000 ,1616812549390 -1616812549415 ,112.5674122,26.86802309,62.5713768,181.4091493,182.0123914,15.312353,0.138112522,1620000000000 ,1620000000000 ,1620000000000 ,1616812549400 -1616812549427 ,112.5674122,26.86802171,62.57186127,181.4084663,182.0106863,15.315746,0.138150938,1620000000000 ,1620000000000 ,1620000000000 ,1616812549410 -1616812549435 ,112.5674121,26.86802033,62.57254791,181.409805,182.0169712,15.316247,0.138168088,1620000000000 ,1620000000000 ,1620000000000 ,1616812549420 -1616812549445 ,112.5674121,26.86801894,62.57336426,181.4106246,182.0202125,15.316505,0.138170674,1620000000000 ,1620000000000 ,1620000000000 ,1616812549430 -1616812549455 ,112.567412,26.86801756,62.57427597,181.4087668,182.021396,15.31763,0.138184251,1620000000000 ,1620000000000 ,1620000000000 ,1616812549440 -1616812549465 ,112.567412,26.86801618,62.57553864,181.4080838,182.1222666,15.320765,0.13830448,1620000000000 ,1620000000000 ,1620000000000 ,1616812549450 -1616812549475 ,112.5674119,26.8680148,62.57711792,181.4093132,182.2236504,15.326718,0.138448034,1620000000000 ,1620000000000 ,1620000000000 ,1616812549460 -1616812549487 ,112.5674118,26.86801341,62.57870865,181.4101329,182.2237835,15.334446,0.138515015,1620000000000 ,1620000000000 ,1620000000000 ,1616812549470 -1616812549496 ,112.5674118,26.86801203,62.5803299,181.4089854,182.2305252,15.336831,0.138557761,1620000000000 ,1620000000000 ,1620000000000 ,1616812549480 -1616812549508 ,112.5674117,26.86801064,62.58202362,181.4092039,182.230673,15.337736,0.138568444,1620000000000 ,1620000000000 ,1620000000000 ,1616812549490 -1616812549518 ,112.5674117,26.86800926,62.5837822,181.4090947,182.2180311,15.336973,0.138569889,1620000000000 ,1620000000000 ,1620000000000 ,1616812549500 -1616812549527 ,112.5674116,26.86800787,62.58554459,181.4101602,182.2097528,15.338713,0.138577633,1620000000000 ,1620000000000 ,1620000000000 ,1616812549510 -1616812549536 ,112.5674116,26.86800649,62.58729553,181.4087941,182.2158195,15.3424225,0.138612123,1620000000000 ,1620000000000 ,1620000000000 ,1616812549520 -1616812549549 ,112.5674115,26.8680051,62.58907318,181.4073735,182.2106867,15.345665,0.138646586,1620000000000 ,1620000000000 ,1620000000000 ,1616812549530 -1616812549562 ,112.5674115,26.86800372,62.59096909,181.4071002,182.1980524,15.346636,0.138673297,1620000000000 ,1620000000000 ,1620000000000 ,1616812549540 -1616812549569 ,112.5674114,26.86800233,62.5930481,181.405543,182.1955625,15.350147,0.138699692,1620000000000 ,1620000000000 ,1620000000000 ,1616812549550 -1616812549583 ,112.5674114,26.86800095,62.59530258,181.4055156,182.205069,15.351771,0.138743641,1620000000000 ,1620000000000 ,1620000000000 ,1616812549560 -1616812549589 ,112.5674113,26.86799956,62.59755707,181.4077559,182.1995647,15.3522,0.138744658,1620000000000 ,1620000000000 ,1620000000000 ,1616812549570 -1616812549598 ,112.5674113,26.86799817,62.59967804,181.4111984,182.1982835,15.361371,0.138806732,1620000000000 ,1620000000000 ,1620000000000 ,1616812549580 -1616812549612 ,112.5674112,26.86799679,62.60158539,181.4135753,182.2038023,15.367562,0.138887392,1620000000000 ,1620000000000 ,1620000000000 ,1616812549590 -1616812549617 ,112.5674112,26.8679954,62.60327911,181.4143949,182.1973345,15.370108,0.138899939,1620000000000 ,1620000000000 ,1620000000000 ,1616812549600 -1616812549627 ,112.5674111,26.86799401,62.60476685,181.4154331,182.1972625,15.371205,0.138920947,1620000000000 ,1620000000000 ,1620000000000 ,1616812549610 -1616812549636 ,112.567411,26.86799262,62.60602951,181.4191487,182.1978325,15.369874,0.138907832,1620000000000 ,1620000000000 ,1620000000000 ,1616812549620 -1616812549646 ,112.567411,26.86799123,62.60710144,181.4218808,182.2178741,15.36996,0.138906148,1620000000000 ,1620000000000 ,1620000000000 ,1616812549630 -1616812549657 ,112.5674109,26.86798984,62.60804367,181.4230282,182.2103464,15.37306,0.138927062,1620000000000 ,1620000000000 ,1620000000000 ,1616812549640 -1616812549669 ,112.5674109,26.86798846,62.60876465,181.4260335,182.2029468,15.379781,0.138969991,1620000000000 ,1620000000000 ,1620000000000 ,1616812549650 -1616812549677 ,112.5674108,26.86798707,62.60921097,181.4281099,182.2164586,15.390901,0.139049007,1620000000000 ,1620000000000 ,1620000000000 ,1616812549660 -1616812549690 ,112.5674108,26.86798568,62.60936356,181.4258969,182.2274255,15.3989315,0.139133555,1620000000000 ,1620000000000 ,1620000000000 ,1616812549670 -1616812549700 ,112.5674107,26.86798429,62.60929489,181.4240664,182.2206646,15.401673,0.139153886,1620000000000 ,1620000000000 ,1620000000000 ,1616812549680 -1616812549710 ,112.5674107,26.86798289,62.60910034,181.4210065,182.2193809,15.405271,0.139185229,1620000000000 ,1620000000000 ,1620000000000 ,1616812549690 -1616812549718 ,112.5674106,26.8679815,62.60881805,181.422154,182.2188251,15.404896,0.13918833,1620000000000 ,1620000000000 ,1620000000000 ,1616812549700 -1616812549727 ,112.5674106,26.86798011,62.60844803,181.4222359,182.1952263,15.4070015,0.139193572,1620000000000 ,1620000000000 ,1620000000000 ,1616812549710 -1616812549738 ,112.5674105,26.86797872,62.60801315,181.4245309,182.1869873,15.409135,0.139211358,1620000000000 ,1620000000000 ,1620000000000 ,1616812549720 -1616812549755 ,112.5674105,26.86797733,62.6075325,181.4257876,182.1859917,15.411577,0.139232477,1620000000000 ,1620000000000 ,1620000000000 ,1616812549730 -1616812549761 ,112.5674104,26.86797594,62.60705185,181.4280279,182.1977432,15.414215,0.13925444,1620000000000 ,1620000000000 ,1620000000000 ,1616812549740 -1616812549772 ,112.5674104,26.86797455,62.60646057,181.4288476,182.2040315,15.417632,0.139263389,1620000000000 ,1620000000000 ,1620000000000 ,1616812549750 -1616812549778 ,112.5674103,26.86797316,62.60549164,181.4311698,182.2036248,15.427862,0.139349281,1620000000000 ,1620000000000 ,1620000000000 ,1616812549760 -1616812549791 ,112.5674102,26.86797176,62.6039772,181.4286017,182.236238,15.440287,0.139404325,1620000000000 ,1620000000000 ,1620000000000 ,1616812549770 -1616812549798 ,112.5674102,26.86797037,62.60206985,181.4262794,182.2221532,15.451534,0.139508613,1620000000000 ,1620000000000 ,1620000000000 ,1616812549780 -1616812549809 ,112.5674101,26.86796897,62.59999466,181.4216895,182.2053438,15.452516,0.139531387,1620000000000 ,1620000000000 ,1620000000000 ,1616812549790 -1616812549818 ,112.5674101,26.86796758,62.59808731,181.4195858,182.2039517,15.451839,0.139536411,1620000000000 ,1620000000000 ,1620000000000 ,1616812549800 -1616812549828 ,112.56741,26.86796619,62.59645462,181.417728,182.2243269,15.443394,0.139479706,1620000000000 ,1620000000000 ,1620000000000 ,1616812549810 -1616812549841 ,112.56741,26.86796479,62.59518051,181.4178646,182.2455167,15.439622,0.139435044,1620000000000 ,1620000000000 ,1620000000000 ,1616812549820 -1616812549849 ,112.5674099,26.8679634,62.59410477,181.4208972,182.2468971,15.449232,0.139492233,1620000000000 ,1620000000000 ,1620000000000 ,1616812549830 -1616812549860 ,112.5674099,26.867962,62.59296799,181.4247221,182.2146957,15.461513,0.139601656,1620000000000 ,1620000000000 ,1620000000000 ,1616812549840 -1616812549870 ,112.5674098,26.86796061,62.59165955,181.4246129,182.1988897,15.473409,0.139697507,1620000000000 ,1620000000000 ,1620000000000 ,1616812549850 -1616812549883 ,112.5674098,26.86795921,62.59038162,181.4205147,182.2124569,15.476495,0.13974712,1620000000000 ,1620000000000 ,1620000000000 ,1616812549860 -1616812549890 ,112.5674097,26.86795782,62.5894165,181.4163347,182.2336909,15.47193,0.139729179,1620000000000 ,1620000000000 ,1620000000000 ,1616812549870 -1616812549900 ,112.5674096,26.86795642,62.58885193,181.415515,182.2407715,15.468006,0.139704759,1620000000000 ,1620000000000 ,1620000000000 ,1616812549880 -1616812549911 ,112.5674096,26.86795502,62.58866882,181.413466,182.2399414,15.464055,0.139668991,1620000000000 ,1620000000000 ,1620000000000 ,1616812549890 -1616812549920 ,112.5674095,26.86795363,62.58885193,181.4106519,182.2156308,15.465676,0.139679285,1620000000000 ,1620000000000 ,1620000000000 ,1616812549900 -1616812549929 ,112.5674095,26.86795223,62.58922195,181.4078379,182.1903502,15.469852,0.139723224,1620000000000 ,1620000000000 ,1620000000000 ,1616812549910 -1616812549944 ,112.5674094,26.86795083,62.58959579,181.4071822,182.2003517,15.474891,0.13975382,1620000000000 ,1620000000000 ,1620000000000 ,1616812549920 -1616812549954 ,112.5674094,26.86794944,62.58990479,181.4094772,182.2314074,15.480543,0.139816435,1620000000000 ,1620000000000 ,1620000000000 ,1616812549930 -1616812549962 ,112.5674093,26.86794804,62.59030151,181.4082204,182.2511924,15.486013,0.139860053,1620000000000 ,1620000000000 ,1620000000000 ,1616812549940 -1616812549972 ,112.5674093,26.86794664,62.59100342,181.4091766,182.2347068,15.484509,0.13987288,1620000000000 ,1620000000000 ,1620000000000 ,1616812549950 -1616812549986 ,112.5674092,26.86794525,62.59207153,181.408275,182.2413859,15.480876,0.13985002,1620000000000 ,1620000000000 ,1620000000000 ,1616812549960 -1616812549991 ,112.5674092,26.86794385,62.59352493,181.4080838,182.2616776,15.479069,0.139842496,1620000000000 ,1620000000000 ,1620000000000 ,1616812549970 -1616812550002 ,112.5674091,26.86794245,62.59522629,181.4092039,182.2553274,15.477489,0.139826717,1620000000000 ,1620000000000 ,1620000000000 ,1616812549980 -1616812550011 ,112.567409,26.86794105,62.59705734,181.4084936,182.2587087,15.480992,0.139862548,1620000000000 ,1620000000000 ,1620000000000 ,1616812549990 -1616812550021 ,112.567409,26.86793966,62.59883881,181.408275,182.277072,15.484738,0.139889384,1620000000000 ,1620000000000 ,1620000000000 ,1616812550000 -1616812550030 ,112.5674089,26.86793826,62.60050964,181.4102148,182.2800628,15.489592,0.139930908,1620000000000 ,1620000000000 ,1620000000000 ,1616812550010 -1616812550042 ,112.5674089,26.86793686,62.60219574,181.4095864,182.2595094,15.492833,0.13996591,1620000000000 ,1620000000000 ,1620000000000 ,1616812550020 -1616812550053 ,112.5674088,26.86793546,62.6040535,181.4067178,182.2457717,15.495014,0.139994379,1620000000000 ,1620000000000 ,1620000000000 ,1616812550030 -1616812550061 ,112.5674088,26.86793406,62.60614395,181.4027016,182.2581508,15.493823,0.13999648,1620000000000 ,1620000000000 ,1620000000000 ,1616812550040 -1616812550072 ,112.5674087,26.86793266,62.60829926,181.4040403,182.2566478,15.492908,0.13998794,1620000000000 ,1620000000000 ,1620000000000 ,1616812550050 -1616812550081 ,112.5674087,26.86793126,62.61034393,181.4061713,182.2536315,15.496656,0.140010703,1620000000000 ,1620000000000 ,1620000000000 ,1616812550060 -1616812550091 ,112.5674086,26.86792986,62.61213684,181.41057,182.2559685,15.503097,0.140049961,1620000000000 ,1620000000000 ,1620000000000 ,1616812550070 -1616812550101 ,112.5674086,26.86792846,62.61369324,181.4116082,182.2684037,15.510793,0.140130442,1620000000000 ,1620000000000 ,1620000000000 ,1616812550080 -1616812550113 ,112.5674085,26.86792706,62.61511993,181.4148593,182.2818299,15.513385,0.140132803,1620000000000 ,1620000000000 ,1620000000000 ,1616812550090 -1616812550123 ,112.5674084,26.86792566,62.61660767,181.4114716,182.2610805,15.5101595,0.140145052,1620000000000 ,1620000000000 ,1620000000000 ,1616812550100 -1616812550133 ,112.5674084,26.86792426,62.61834335,181.407674,182.2810993,15.508941,0.140126926,1620000000000 ,1620000000000 ,1620000000000 ,1616812550110 -1616812550143 ,112.5674083,26.86792286,62.62024689,181.4064719,182.3095593,15.511295,0.140139333,1620000000000 ,1620000000000 ,1620000000000 ,1616812550120 -1616812550154 ,112.5674083,26.86792146,62.6220932,181.4061713,182.3065504,15.515991,0.140171278,1620000000000 ,1620000000000 ,1620000000000 ,1616812550130 -1616812550164 ,112.5674082,26.86792006,62.62386703,181.4049692,182.3040184,15.521282,0.140223008,1620000000000 ,1620000000000 ,1620000000000 ,1616812550150 -1616812550174 ,112.5674082,26.86791866,62.62559509,181.4018547,182.2878481,15.52675,0.140272153,1620000000000 ,1620000000000 ,1620000000000 ,1616812550160 -1616812550182 ,112.5674081,26.86791726,62.62730026,181.3984122,182.2792909,15.530415,0.140309581,1620000000000 ,1620000000000 ,1620000000000 ,1616812550170 -1616812550193 ,112.567408,26.86791586,62.62905502,181.3952977,182.2749672,15.528556,0.140305498,1620000000000 ,1620000000000 ,1620000000000 ,1616812550180 -1616812550203 ,112.567408,26.86791445,62.63089371,181.3917733,182.2860746,15.523155,0.140266773,1620000000000 ,1620000000000 ,1620000000000 ,1616812550180 -1616812550215 ,112.5674079,26.86791305,62.63289642,181.3884948,182.2877151,15.52237,0.140253818,1620000000000 ,1620000000000 ,1620000000000 ,1616812550200 -1616812550224 ,112.5674079,26.86791165,62.63498306,181.3881123,182.1113967,15.527206,0.140370473,1620000000000 ,1620000000000 ,1620000000000 ,1616812550210 -1616812550234 ,112.5674078,26.86790884,62.63879013,181.3903799,181.8989411,15.537424,0.281053357,1620000000000 ,1620000000000 ,1620000000000 ,1616812550220 -1616812550244 ,112.5674077,26.86790744,62.6404686,181.3886861,181.9032493,15.538302,0.140574753,1620000000000 ,1620000000000 ,1620000000000 ,1616812550230 -1616812550254 ,112.5674077,26.86790603,62.64220047,181.3857901,181.8870745,15.537374,0.140568339,1620000000000 ,1620000000000 ,1620000000000 ,1616812550240 -1616812550263 ,112.5674077,26.86790463,62.64400864,181.385954,181.8778542,15.538132,0.140576124,1620000000000 ,1620000000000 ,1620000000000 ,1616812550250 -1616812550274 ,112.5674076,26.86790322,62.64582443,181.3879211,181.8841755,15.541293,0.140599855,1620000000000 ,1620000000000 ,1620000000000 ,1616812550260 -1616812550283 ,112.5674076,26.86790181,62.64757919,181.3893144,181.8822298,15.544089,0.140630316,1620000000000 ,1620000000000 ,1620000000000 ,1616812550270 -1616812550294 ,112.5674075,26.86790041,62.64930344,181.3893418,181.868967,15.544702,0.140645825,1620000000000 ,1620000000000 ,1620000000000 ,1616812550280 -1616812550308 ,112.5674075,26.867899,62.65104294,181.3911449,181.8539375,15.541445,0.140620203,1620000000000 ,1620000000000 ,1620000000000 ,1616812550290 -1616812550315 ,112.5674074,26.8678976,62.65277863,181.3927295,181.850374,15.540759,0.140610398,1620000000000 ,1620000000000 ,1620000000000 ,1616812550300 -1616812550323 ,112.5674074,26.86789619,62.65443802,181.3968003,181.851805,15.541794,0.140619589,1620000000000 ,1620000000000 ,1620000000000 ,1616812550310 -1616812550334 ,112.5674073,26.86789479,62.65593338,181.4008438,181.8531035,15.545926,0.140640925,1620000000000 ,1620000000000 ,1620000000000 ,1616812550320 -1616812550343 ,112.5674073,26.86789338,62.65724182,181.4039584,181.864242,15.552218,0.140688481,1620000000000 ,1620000000000 ,1620000000000 ,1616812550330 -1616812550354 ,112.5674072,26.86789197,62.65838623,181.4074281,181.8593578,15.555487,0.140725964,1620000000000 ,1620000000000 ,1620000000000 ,1616812550340 -1616812550365 ,112.5674072,26.86789057,62.6594162,181.406144,181.8443466,15.55916,0.140750254,1620000000000 ,1620000000000 ,1620000000000 ,1616812550350 -1616812550379 ,112.5674071,26.86788916,62.66038513,181.4083024,181.8496579,15.562693,0.140784125,1620000000000 ,1620000000000 ,1620000000000 ,1616812550360 -1616812550385 ,112.5674071,26.86788775,62.66126633,181.4110344,181.8634924,15.564247,0.14080138,1620000000000 ,1620000000000 ,1620000000000 ,1616812550370 -1616812550395 ,112.5674071,26.86788635,62.66201401,181.416362,181.8669514,15.564243,0.140800581,1620000000000 ,1620000000000 ,1620000000000 ,1616812550380 -1616812550407 ,112.5674071,26.86788635,62.66201401,181.416362,-400,15.564243,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812550390 -1616812550419 ,112.567407,26.86788353,62.66329193,181.4201322,181.8600372,15.564335,0.28160301,1620000000000 ,1620000000000 ,1620000000000 ,1616812550400 -1616812550426 ,112.5674069,26.86788212,62.6638298,181.4228643,181.8732961,15.568477,0.140821067,1620000000000 ,1620000000000 ,1620000000000 ,1616812550410 -1616812550437 ,112.5674069,26.86788072,62.66426468,181.4263341,181.8701946,15.570376,0.140847901,1620000000000 ,1620000000000 ,1620000000000 ,1616812550420 -1616812550449 ,112.5674068,26.86787931,62.66462708,181.4297765,181.8855228,15.5706,0.140845814,1620000000000 ,1620000000000 ,1620000000000 ,1616812550430 -1616812550455 ,112.5674068,26.8678779,62.66499329,181.4316889,181.9038412,15.573456,0.140863684,1620000000000 ,1620000000000 ,1620000000000 ,1616812550440 -1616812550474 ,112.5674067,26.86787649,62.66522217,181.4355958,182.0447713,15.576457,0.140804263,1620000000000 ,1620000000000 ,1620000000000 ,1616812550450 -1616812550478 ,112.5674067,26.86787509,62.66529846,181.4363335,182.2018878,15.581758,0.140732376,1620000000000 ,1620000000000 ,1620000000000 ,1616812550460 -1616812550486 ,112.5674066,26.86787368,62.66539001,181.4342844,182.2202405,15.585774,0.140783413,1620000000000 ,1620000000000 ,1620000000000 ,1616812550470 -1616812550499 ,112.5674066,26.86787227,62.66556168,181.4318529,182.2402775,15.583622,0.140781925,1620000000000 ,1620000000000 ,1620000000000 ,1616812550480 -1616812550509 ,112.5674065,26.86787087,62.66583633,181.4295306,182.257098,15.579125,0.140751551,1620000000000 ,1620000000000 ,1620000000000 ,1616812550490 -1616812550519 ,112.5674065,26.86786946,62.66618729,181.4281372,182.2615171,15.575877,0.140708652,1620000000000 ,1620000000000 ,1620000000000 ,1616812550500 -1616812550526 ,112.5674064,26.86786806,62.6665535,181.4280553,182.2650367,15.575314,0.140707193,1620000000000 ,1620000000000 ,1620000000000 ,1616812550510 -1616812550539 ,112.5674063,26.86786665,62.66683578,181.4302409,182.2642945,15.587608,0.140774477,1620000000000 ,1620000000000 ,1620000000000 ,1616812550520 -1616812550548 ,112.5674063,26.86786524,62.66693497,181.4325905,182.2683219,15.59455,0.140851897,1620000000000 ,1620000000000 ,1620000000000 ,1616812550530 -1616812550558 ,112.5674062,26.86786383,62.6668396,181.4331642,182.2685263,15.598332,0.140882402,1620000000000 ,1620000000000 ,1620000000000 ,1616812550540 -1616812550580 ,112.5674062,26.86786243,62.66671753,181.4304595,182.2838197,15.601886,0.140915713,1620000000000 ,1620000000000 ,1620000000000 ,1616812550550 -1616812550583 ,112.5674061,26.86786102,62.66674042,181.4254325,182.2907218,15.597436,0.140895103,1620000000000 ,1620000000000 ,1620000000000 ,1616812550560 -1616812550588 ,112.5674061,26.86785961,62.66690063,181.4209246,182.2856817,15.598118,0.14088821,1620000000000 ,1620000000000 ,1620000000000 ,1616812550570 -1616812550607 ,112.567406,26.8678582,62.6671524,181.416362,182.3039961,15.598873,0.140905292,1620000000000 ,1620000000000 ,1620000000000 ,1616812550580 -1616812550619 ,112.567406,26.86785679,62.6674881,181.4118541,182.3039764,15.595401,0.140882035,1620000000000 ,1620000000000 ,1620000000000 ,1616812550590 -1616812550624 ,112.5674059,26.86785539,62.66801834,181.4039584,182.3049631,15.595044,0.140873202,1620000000000 ,1620000000000 ,1620000000000 ,1616812550600 -1616812550628 ,112.5674058,26.86785398,62.66879654,181.3970189,182.3076421,15.594679,0.140878943,1620000000000 ,1620000000000 ,1620000000000 ,1616812550610 -1616812550637 ,112.5674058,26.86785257,62.66971207,181.3906532,182.3122383,15.598297,0.140906031,1620000000000 ,1620000000000 ,1620000000000 ,1616812550620 -1616812550646 ,112.5674057,26.86785116,62.67073441,181.3855169,182.3233699,15.6035,0.140958677,1620000000000 ,1620000000000 ,1620000000000 ,1616812550630 -1616812550657 ,112.5674057,26.86784975,62.671875,181.3831399,182.3232825,15.604089,0.140976318,1620000000000 ,1620000000000 ,1620000000000 ,1616812550640 -1616812550672 ,112.5674056,26.86784835,62.67318344,181.3819105,182.3015482,15.600798,0.140959461,1620000000000 ,1620000000000 ,1620000000000 ,1616812550650 -1616812550689 ,112.5674056,26.86784694,62.67465591,181.3790692,182.2841933,15.5974655,0.140940922,1620000000000 ,1620000000000 ,1620000000000 ,1616812550660 -1616812550693 ,112.5674055,26.86784553,62.67628098,181.3764737,182.2897275,15.593676,0.140914103,1620000000000 ,1620000000000 ,1620000000000 ,1616812550670 -1616812550703 ,112.5674054,26.86784412,62.67797089,181.3724575,182.299275,15.593069,0.140902263,1620000000000 ,1620000000000 ,1620000000000 ,1616812550680 -1616812550708 ,112.5674054,26.86784271,62.67965317,181.3675125,182.3044853,15.595595,0.140919327,1620000000000 ,1620000000000 ,1620000000000 ,1616812550690 -1616812550723 ,112.5674053,26.86784131,62.68128967,181.362704,182.3085975,15.60012,0.140959605,1620000000000 ,1620000000000 ,1620000000000 ,1616812550700 -1616812550729 ,112.5674053,26.8678399,62.68283081,181.3603544,182.2817057,15.601151,0.140975461,1620000000000 ,1620000000000 ,1620000000000 ,1616812550710 -1616812550739 ,112.5674052,26.86783849,62.68415833,181.3584147,182.267496,15.608903,0.141032692,1620000000000 ,1620000000000 ,1620000000000 ,1616812550720 -1616812550750 ,112.5674052,26.86783708,62.68522644,181.3563929,182.2638861,15.610897,0.141018512,1620000000000 ,1620000000000 ,1620000000000 ,1616812550730 -1616812550759 ,112.5674051,26.86783567,62.68618011,181.3523495,182.2719308,15.614575,0.14108598,1620000000000 ,1620000000000 ,1620000000000 ,1616812550740 -1616812550771 ,112.567405,26.86783426,62.68717575,181.3492622,182.2491437,15.61514,0.141089135,1620000000000 ,1620000000000 ,1620000000000 ,1616812550750 -1616812550780 ,112.567405,26.86783285,62.68831635,181.3459291,182.2315207,15.617412,0.141108585,1620000000000 ,1620000000000 ,1620000000000 ,1616812550760 -1616812550793 ,112.5674049,26.86783144,62.68958664,181.3445357,182.2250052,15.608801,0.141061477,1620000000000 ,1620000000000 ,1620000000000 ,1616812550770 -1616812550800 ,112.5674049,26.86783003,62.69094849,181.3425686,182.2223712,15.605365,0.141021423,1620000000000 ,1620000000000 ,1620000000000 ,1616812550780 -1616812550808 ,112.5674048,26.86782862,62.69224548,181.3420768,182.2106837,15.612401,0.141059044,1620000000000 ,1620000000000 ,1620000000000 ,1616812550790 -1616812550821 ,112.5674048,26.86782721,62.69331741,181.3424593,182.2069652,15.623457,0.141143602,1620000000000 ,1620000000000 ,1620000000000 ,1616812550800 -1616812550829 ,112.5674047,26.8678258,62.69412994,181.3423501,182.2211315,15.629049,0.141204592,1620000000000 ,1620000000000 ,1620000000000 ,1616812550810 -1616812550838 ,112.5674047,26.86782439,62.69484711,181.3401917,182.2239946,15.625673,0.141191022,1620000000000 ,1620000000000 ,1620000000000 ,1616812550820 -1616812550850 ,112.5674046,26.86782298,62.69570923,181.338088,182.2152523,15.620732,0.141154526,1620000000000 ,1620000000000 ,1620000000000 ,1616812550830 -1616812550860 ,112.5674046,26.86782157,62.69668961,181.3327605,182.2098337,15.620157,0.141140105,1620000000000 ,1620000000000 ,1620000000000 ,1616812550840 -1616812550870 ,112.5674045,26.86782016,62.69763947,181.3300557,182.2133296,15.622131,0.141151794,1620000000000 ,1620000000000 ,1620000000000 ,1616812550850 -1616812550880 ,112.5674044,26.86781875,62.69841003,181.3291268,182.220672,15.627276,0.14118344,1620000000000 ,1620000000000 ,1620000000000 ,1616812550860 -1616812550891 ,112.5674044,26.86781733,62.69901276,181.3239905,182.2195308,15.631615,0.141228808,1620000000000 ,1620000000000 ,1620000000000 ,1616812550870 -1616812550898 ,112.5674043,26.86781592,62.69959259,181.317051,182.2076349,15.631287,0.141234533,1620000000000 ,1620000000000 ,1620000000000 ,1616812550880 -1616812550911 ,112.5674043,26.86781451,62.70022583,181.3134447,182.1859119,15.628682,0.141213517,1620000000000 ,1620000000000 ,1620000000000 ,1616812550890 -1616812550919 ,112.5674042,26.8678131,62.70090485,181.3125978,182.1767201,15.627632,0.14119878,1620000000000 ,1620000000000 ,1620000000000 ,1616812550900 -1616812550931 ,112.5674042,26.86781169,62.70155716,181.3115596,182.1891548,15.629274,0.141211353,1620000000000 ,1620000000000 ,1620000000000 ,1616812550910 -1616812550940 ,112.5674041,26.86781028,62.70212173,181.3114503,182.1942961,15.631797,0.141226791,1620000000000 ,1620000000000 ,1620000000000 ,1616812550920 -1616812550950 ,112.5674041,26.86780887,62.70258331,181.3105487,182.1894542,15.632115,0.141227727,1620000000000 ,1620000000000 ,1620000000000 ,1616812550930 -1616812550960 ,112.567404,26.86780746,62.70293808,181.3074614,182.1738156,15.6356945,0.141247346,1620000000000 ,1620000000000 ,1620000000000 ,1616812550940 -1616812550971 ,112.567404,26.86780604,62.70323944,181.3034453,182.1720225,15.6405325,0.141288755,1620000000000 ,1620000000000 ,1620000000000 ,1616812550950 -1616812550979 ,112.5674039,26.86780463,62.70351791,181.2972435,182.1768757,15.64243,0.141308003,1620000000000 ,1620000000000 ,1620000000000 ,1616812550960 -1616812550990 ,112.5674039,26.86780322,62.7038002,181.2946753,182.1774846,15.643724,0.141320459,1620000000000 ,1620000000000 ,1620000000000 ,1616812550970 -1616812551000 ,112.5674038,26.86780181,62.70412445,181.2927356,182.1734792,15.64302,0.141320682,1620000000000 ,1620000000000 ,1620000000000 ,1616812550980 -1616812551010 ,112.5674037,26.8678004,62.70448685,181.2890199,182.1689969,15.642645,0.14131498,1620000000000 ,1620000000000 ,1620000000000 ,1616812550990 -1616812551021 ,112.5674037,26.86779898,62.70483017,181.288255,182.1643097,15.64372,0.141319015,1620000000000 ,1620000000000 ,1620000000000 ,1616812551000 -1616812551030 ,112.5674036,26.86779757,62.70507813,181.2871075,182.1539673,15.646558,0.141334016,1620000000000 ,1620000000000 ,1620000000000 ,1616812551010 -1616812551043 ,112.5674036,26.86779616,62.70526886,181.2836924,182.1429858,15.647149,0.141344485,1620000000000 ,1620000000000 ,1620000000000 ,1616812551020 -1616812551053 ,112.5674035,26.86779475,62.70549011,181.2813155,182.1272013,15.64891,0.141347281,1620000000000 ,1620000000000 ,1620000000000 ,1616812551030 -1616812551063 ,112.5674035,26.86779333,62.7057991,181.2799768,182.1283114,15.651098,0.141382307,1620000000000 ,1620000000000 ,1620000000000 ,1616812551040 -1616812551072 ,112.5674034,26.86779192,62.70613861,181.2804685,182.1423317,15.654213,0.141395187,1620000000000 ,1620000000000 ,1620000000000 ,1616812551050 -1616812551086 ,112.5674034,26.86779051,62.7065506,181.2788839,182.1440126,15.656665,0.141428959,1620000000000 ,1620000000000 ,1620000000000 ,1616812551060 -1616812551093 ,112.5674033,26.86778909,62.70711517,181.2764524,182.1292764,15.653538,0.141409364,1620000000000 ,1620000000000 ,1620000000000 ,1616812551070 -1616812551101 ,112.5674033,26.86778768,62.7078743,181.2734471,182.1289294,15.649781,0.141386879,1620000000000 ,1620000000000 ,1620000000000 ,1616812551080 -1616812551112 ,112.5674032,26.86778627,62.70877075,181.2698134,182.1444736,15.646402,0.141361805,1620000000000 ,1620000000000 ,1620000000000 ,1616812551090 -1616812551124 ,112.5674032,26.86778486,62.70973969,181.2660432,182.151932,15.646726,0.141352464,1620000000000 ,1620000000000 ,1620000000000 ,1616812551100 -1616812551133 ,112.5674031,26.86778344,62.71079636,181.2654148,182.1561638,15.650585,0.141382669,1620000000000 ,1620000000000 ,1620000000000 ,1616812551110 -1616812551141 ,112.5674031,26.86778203,62.71187973,181.2658246,182.1427248,15.654052,0.141419202,1620000000000 ,1620000000000 ,1620000000000 ,1616812551120 -1616812551153 ,112.567403,26.86778062,62.71291733,181.2661251,182.1206947,15.656377,0.141440774,1620000000000 ,1620000000000 ,1620000000000 ,1616812551130 -1616812551161 ,112.567403,26.8677792,62.71385956,181.2657973,182.1142437,15.657583,0.141452048,1620000000000 ,1620000000000 ,1620000000000 ,1616812551150 -1616812551172 ,112.5674029,26.86777779,62.71475601,181.2645679,182.122998,15.656713,0.141446172,1620000000000 ,1620000000000 ,1620000000000 ,1616812551160 -1616812551184 ,112.5674029,26.86777638,62.71571732,181.2612894,182.1284836,15.657437,0.141451606,1620000000000 ,1620000000000 ,1620000000000 ,1616812551170 -1616812551193 ,112.5674028,26.86777496,62.71678925,181.2580655,182.1140267,15.656236,0.141448452,1620000000000 ,1620000000000 ,1620000000000 ,1616812551180 -1616812551207 ,112.5674027,26.86777355,62.71795654,181.2553334,182.1120749,15.653164,0.1414315,1620000000000 ,1620000000000 ,1620000000000 ,1616812551180 -1616812551212 ,112.5674026,26.86777072,62.72066498,181.2497054,181.9691631,15.665294,0.283013773,1620000000000 ,1620000000000 ,1620000000000 ,1616812551200 -1616812551233 ,112.5674026,26.86777072,62.72066498,181.2497054,-400,15.665294,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812551210 -1616812551239 ,112.5674026,26.86776788,62.72387314,181.2479842,181.3584457,15.673211,0.28370386,1620000000000 ,1620000000000 ,1620000000000 ,1616812551220 -1616812551246 ,112.5674025,26.86776647,62.72536469,181.246782,181.3761173,15.672192,0.141871144,1620000000000 ,1620000000000 ,1620000000000 ,1616812551230 -1616812551253 ,112.5674025,26.86776505,62.7269249,181.2456619,181.3777696,15.66814,0.141840526,1620000000000 ,1620000000000 ,1620000000000 ,1616812551240 -1616812551262 ,112.5674025,26.86776363,62.72861099,181.244815,181.3630586,15.6629715,0.141803885,1620000000000 ,1620000000000 ,1620000000000 ,1616812551250 -1616812551273 ,112.5674024,26.86776221,62.73028946,181.2458531,181.3502023,15.662465,0.141786044,1620000000000 ,1620000000000 ,1620000000000 ,1616812551260 -1616812551284 ,112.5674024,26.8677608,62.73186493,181.2456073,181.362305,15.665479,0.141803236,1620000000000 ,1620000000000 ,1620000000000 ,1616812551270 -1616812551294 ,112.5674024,26.86775938,62.73334122,181.2436128,181.3692503,15.668872,0.141835444,1620000000000 ,1620000000000 ,1620000000000 ,1616812551280 -1616812551304 ,112.5674023,26.86775796,62.73476028,181.2416184,181.3649514,15.670452,0.141854621,1620000000000 ,1620000000000 ,1620000000000 ,1616812551290 -1616812551316 ,112.5674023,26.86775654,62.73610306,181.2413452,181.370353,15.672857,0.141876371,1620000000000 ,1620000000000 ,1620000000000 ,1616812551300 -1616812551326 ,112.5674023,26.86775512,62.73735428,181.2415638,181.3709732,15.67269,0.141876701,1620000000000 ,1620000000000 ,1620000000000 ,1616812551310 -1616812551335 ,112.5674022,26.8677537,62.73854446,181.2401977,181.3643632,15.670513,0.14186307,1620000000000 ,1620000000000 ,1620000000000 ,1616812551320 -1616812551345 ,112.5674022,26.86775229,62.73971176,181.2405256,181.3617796,15.667927,0.141841554,1620000000000 ,1620000000000 ,1620000000000 ,1616812551330 -1616812551355 ,112.5674022,26.86775087,62.74085999,181.2419463,181.3567582,15.667032,0.141829251,1620000000000 ,1620000000000 ,1620000000000 ,1616812551340 -1616812551364 ,112.5674021,26.86774945,62.74199295,181.2409627,181.343058,15.661351,0.141792612,1620000000000 ,1620000000000 ,1620000000000 ,1616812551350 -1616812551394 ,112.5674021,26.86774803,62.74307251,181.2430391,181.3390763,15.66525,0.141795409,1620000000000 ,1620000000000 ,1620000000000 ,1616812551360 -1616812551397 ,112.5674021,26.86774662,62.74394989,181.2458531,181.3495461,15.666082,0.141802477,1620000000000 ,1620000000000 ,1620000000000 ,1616812551370 -1616812551402 ,112.567402,26.8677452,62.74452591,181.2516178,181.3609234,15.672777,0.141843768,1620000000000 ,1620000000000 ,1620000000000 ,1616812551380 -1616812551407 ,112.567402,26.86774378,62.74485016,181.2553334,181.3513684,15.675584,0.141866547,1620000000000 ,1620000000000 ,1620000000000 ,1616812551390 -1616812551414 ,112.567402,26.86774236,62.74516296,181.2518637,181.344052,15.675534,0.141870379,1620000000000 ,1620000000000 ,1620000000000 ,1616812551400 -1616812551425 ,112.5674019,26.86774094,62.74565506,181.2502791,181.3496814,15.672113,0.141853237,1620000000000 ,1620000000000 ,1620000000000 ,1616812551410 -1616812551434 ,112.5674019,26.86773953,62.74622345,181.2528473,181.3618821,15.665791,0.141803909,1620000000000 ,1620000000000 ,1620000000000 ,1616812551420 -1616812551444 ,112.5674019,26.86773811,62.74680328,181.2545958,181.3712262,15.664383,0.141777012,1620000000000 ,1620000000000 ,1620000000000 ,1616812551430 -1616812551454 ,112.5674018,26.86773669,62.74733734,181.256399,181.3670043,15.6680155,0.141794482,1620000000000 ,1620000000000 ,1620000000000 ,1616812551440 -1616812551465 ,112.5674018,26.86773527,62.7476387,181.2594589,181.6575615,15.673046,0.141697927,1620000000000 ,1620000000000 ,1620000000000 ,1616812551450 -1616812551475 ,112.5674018,26.86773386,62.74766541,181.2628193,181.9397765,15.676528,0.141595593,1620000000000 ,1620000000000 ,1620000000000 ,1616812551460 -1616812551487 ,112.5674017,26.86773244,62.74761963,181.265688,181.9409247,15.675698,0.141596367,1620000000000 ,1620000000000 ,1620000000000 ,1616812551470 -1616812551500 ,112.5674017,26.86773103,62.74771118,181.2659612,181.9581878,15.670867,0.141561396,1620000000000 ,1620000000000 ,1620000000000 ,1616812551480 -1616812551509 ,112.5674016,26.86772961,62.7479744,181.2666716,181.9632733,15.668284,0.14153616,1620000000000 ,1620000000000 ,1620000000000 ,1616812551490 -1616812551515 ,112.5674016,26.8677282,62.74834442,181.2667535,181.963618,15.669547,0.141537282,1620000000000 ,1620000000000 ,1620000000000 ,1616812551500 -1616812551525 ,112.5674015,26.86772679,62.74876022,181.2661251,181.9731248,15.673426,0.141571992,1620000000000 ,1620000000000 ,1620000000000 ,1616812551510 -1616812551537 ,112.5674015,26.86772537,62.74921799,181.2636663,181.9817372,15.670649,0.141565385,1620000000000 ,1620000000000 ,1620000000000 ,1616812551520 -1616812551548 ,112.5674014,26.86772396,62.74978638,181.2607156,181.9651775,15.664712,0.141518458,1620000000000 ,1620000000000 ,1620000000000 ,1616812551530 -1616812551557 ,112.5674014,26.86772254,62.75048447,181.2610981,181.9622741,15.659518,0.141473196,1620000000000 ,1620000000000 ,1620000000000 ,1616812551540 -1616812551568 ,112.5674013,26.86772113,62.7513504,181.2616172,181.981086,15.656971,0.141448458,1620000000000 ,1620000000000 ,1620000000000 ,1616812551550 -1616812551582 ,112.5674013,26.86771971,62.75237656,181.262792,181.9864428,15.655805,0.141443106,1620000000000 ,1620000000000 ,1620000000000 ,1616812551560 -1616812551586 ,112.5674012,26.8677183,62.75353241,181.2647045,181.9836679,15.653508,0.141421662,1620000000000 ,1620000000000 ,1620000000000 ,1616812551570 -1616812551597 ,112.5674012,26.86771689,62.75477219,181.2671087,181.986487,15.654523,0.141428814,1620000000000 ,1620000000000 ,1620000000000 ,1616812551580 -1616812551607 ,112.5674011,26.86771547,62.7560463,181.2698954,181.9894248,15.65574,0.14144552,1620000000000 ,1620000000000 ,1620000000000 ,1616812551590 -1616812551617 ,112.5674011,26.86771406,62.75734329,181.2713434,181.9920886,15.652833,0.141429101,1620000000000 ,1620000000000 ,1620000000000 ,1616812551600 -1616812551629 ,112.567401,26.86771265,62.75870895,181.2712341,181.999671,15.647642,0.141388922,1620000000000 ,1620000000000 ,1620000000000 ,1616812551610 -1616812551638 ,112.567401,26.86771124,62.76020432,181.2722723,182.0124929,15.643442,0.141354992,1620000000000 ,1620000000000 ,1620000000000 ,1616812551620 -1616812551646 ,112.5674009,26.86770982,62.7618103,181.2726548,182.016151,15.640255,0.141328783,1620000000000 ,1620000000000 ,1620000000000 ,1616812551630 -1616812551656 ,112.5674009,26.86770841,62.76343536,181.2734471,182.0223267,15.639407,0.14131941,1620000000000 ,1620000000000 ,1620000000000 ,1616812551640 -1616812551667 ,112.5674008,26.867707,62.76501083,181.2750044,182.0323698,15.641687,0.141331579,1620000000000 ,1620000000000 ,1620000000000 ,1616812551650 -1616812551676 ,112.5674008,26.86770559,62.76649475,181.2767529,182.0277133,15.641944,0.141336862,1620000000000 ,1620000000000 ,1620000000000 ,1616812551660 -1616812551687 ,112.5674007,26.86770417,62.76787949,181.2783375,182.0153621,15.641395,0.141325568,1620000000000 ,1620000000000 ,1620000000000 ,1616812551670 -1616812551698 ,112.5674007,26.86770276,62.76912689,181.2800314,182.0132437,15.64259,0.141349466,1620000000000 ,1620000000000 ,1620000000000 ,1616812551680 -1616812551708 ,112.5674006,26.86770135,62.77019501,181.2855502,182.0501284,15.643403,0.141330838,1620000000000 ,1620000000000 ,1620000000000 ,1616812551690 -1616812551721 ,112.5674006,26.86769994,62.77124786,181.289539,182.0595989,15.643324,0.141338312,1620000000000 ,1620000000000 ,1620000000000 ,1616812551700 -1616812551728 ,112.5674005,26.86769852,62.77238846,181.2887741,182.0229273,15.638509,0.141313861,1620000000000 ,1620000000000 ,1620000000000 ,1616812551710 -1616812551743 ,112.5674005,26.86769711,62.7737236,181.2856322,182.0307846,15.632511,0.141269091,1620000000000 ,1620000000000 ,1620000000000 ,1616812551720 -1616812551748 ,112.5674004,26.8676957,62.77510452,181.2846213,182.0567472,15.627069,0.141220391,1620000000000 ,1620000000000 ,1620000000000 ,1616812551730 -1616812551760 ,112.5674004,26.86769429,62.77636719,181.2860693,182.0763516,15.62656,0.141196772,1620000000000 ,1620000000000 ,1620000000000 ,1616812551740 -1616812551769 ,112.5674003,26.86769288,62.77744675,181.2900854,182.0928529,15.632717,0.141232282,1620000000000 ,1620000000000 ,1620000000000 ,1616812551750 -1616812551778 ,112.5674003,26.86769147,62.77835464,181.2931181,182.0856504,15.640086,0.141295537,1620000000000 ,1620000000000 ,1620000000000 ,1616812551760 -1616812551790 ,112.5674002,26.86769005,62.77922058,181.2941836,182.0699724,15.640703,0.141321262,1620000000000 ,1620000000000 ,1620000000000 ,1616812551770 -1616812551799 ,112.5674002,26.86768864,62.78014374,181.2935825,182.0591474,15.633738,0.141269578,1620000000000 ,1620000000000 ,1620000000000 ,1616812551780 -1616812551808 ,112.5674001,26.86768723,62.78118134,181.2944568,182.0821217,15.627646,0.141215876,1620000000000 ,1620000000000 ,1620000000000 ,1616812551790 -1616812551818 ,112.5674001,26.86768582,62.78224182,181.2960414,182.1054912,15.624561,0.141182566,1620000000000 ,1620000000000 ,1620000000000 ,1616812551800 -1616812551831 ,112.5674,26.86768441,62.78325653,181.2956589,182.1075952,15.626014,0.14118157,1620000000000 ,1620000000000 ,1620000000000 ,1616812551810 -1616812551842 ,112.5674,26.867683,62.78421783,181.2943475,182.1021755,15.628473,0.141200754,1620000000000 ,1620000000000 ,1620000000000 ,1616812551820 -1616812551848 ,112.5673999,26.86768159,62.78509903,181.2922711,182.0881794,15.6311035,0.141228305,1620000000000 ,1620000000000 ,1620000000000 ,1616812551830 -1616812551858 ,112.5673999,26.86768018,62.78586578,181.2940196,182.0927405,15.62824,0.141211064,1620000000000 ,1620000000000 ,1620000000000 ,1616812551840 -1616812551871 ,112.5673998,26.86767876,62.78658676,181.293965,182.1134099,15.625141,0.141183439,1620000000000 ,1620000000000 ,1620000000000 ,1616812551850 -1616812551878 ,112.5673997,26.86767735,62.78732681,181.2955223,182.1188597,15.6234,0.141160174,1620000000000 ,1620000000000 ,1620000000000 ,1616812551860 -1616812551891 ,112.5673997,26.86767594,62.78807449,181.2959867,182.108981,15.622946,0.141153137,1620000000000 ,1620000000000 ,1620000000000 ,1616812551870 -1616812551906 ,112.5673996,26.86767453,62.78875732,181.2970249,182.1062503,15.62421,0.141161054,1620000000000 ,1620000000000 ,1620000000000 ,1616812551880 -1616812551908 ,112.5673996,26.86767312,62.78934097,181.2989374,182.1176065,15.624767,0.141161912,1620000000000 ,1620000000000 ,1620000000000 ,1616812551890 -1616812551918 ,112.5673995,26.86767171,62.7898941,181.298992,182.1206719,15.623648,0.141156654,1620000000000 ,1620000000000 ,1620000000000 ,1616812551900 -1616812551929 ,112.5673995,26.8676703,62.79052734,181.2997297,182.1096707,15.621204,0.141138208,1620000000000 ,1620000000000 ,1620000000000 ,1616812551910 -1616812551939 ,112.5673994,26.86766889,62.79126358,181.3019973,182.1090723,15.617773,0.141111273,1620000000000 ,1620000000000 ,1620000000000 ,1616812551920 -1616812551949 ,112.5673994,26.86766748,62.79204559,181.3044562,182.1191862,15.617412,0.141101466,1620000000000 ,1620000000000 ,1620000000000 ,1616812551930 -1616812551959 ,112.5673993,26.86766607,62.79283142,181.3066418,182.128141,15.615302,0.141090759,1620000000000 ,1620000000000 ,1620000000000 ,1616812551940 -1616812551971 ,112.5673993,26.86766466,62.79365158,181.3072156,182.1305238,15.612038,0.141065066,1620000000000 ,1620000000000 ,1620000000000 ,1616812551950 -1616812551981 ,112.5673992,26.86766325,62.7945137,181.3104941,182.1266985,15.611067,0.141052845,1620000000000 ,1620000000000 ,1620000000000 ,1616812551960 -1616812551990 ,112.5673992,26.86766184,62.79533386,181.3148381,182.1202176,15.612022,0.141052521,1620000000000 ,1620000000000 ,1620000000000 ,1616812551970 -1616812551999 ,112.5673991,26.86766043,62.79605103,181.3181712,182.1221674,15.613326,0.141061943,1620000000000 ,1620000000000 ,1620000000000 ,1616812551980 -1616812552009 ,112.5673991,26.86765902,62.79666519,181.320111,182.1346329,15.61194,0.141044273,1620000000000 ,1620000000000 ,1620000000000 ,1616812551990 -1616812552019 ,112.567399,26.86765761,62.79719925,181.3251107,182.1482079,15.609292,0.14104192,1620000000000 ,1620000000000 ,1620000000000 ,1616812552000 -1616812552030 ,112.567399,26.8676562,62.79766083,181.3277061,182.1390006,15.609653,0.141013366,1620000000000 ,1620000000000 ,1620000000000 ,1616812552010 -1616812552041 ,112.5673989,26.8676548,62.79818726,181.3267772,182.14059,15.605474,0.140989216,1620000000000 ,1620000000000 ,1620000000000 ,1616812552020 -1616812552055 ,112.5673989,26.86765339,62.79882431,181.3268319,182.1439232,15.603814,0.14097635,1620000000000 ,1620000000000 ,1620000000000 ,1616812552030 -1616812552062 ,112.5673988,26.86765198,62.79948807,181.3289082,182.1486622,15.604494,0.140982741,1620000000000 ,1620000000000 ,1620000000000 ,1616812552040 -1616812552079 ,112.5673988,26.86765057,62.8001442,181.3309846,182.1658958,15.603605,0.140971238,1620000000000 ,1620000000000 ,1620000000000 ,1616812552050 -1616812552082 ,112.5673987,26.86764916,62.80085373,181.3331156,182.1623835,15.60227,0.140955218,1620000000000 ,1620000000000 ,1620000000000 ,1616812552060 -1616812552092 ,112.5673986,26.86764775,62.80162048,181.3340172,182.1628081,15.602228,0.140961147,1620000000000 ,1620000000000 ,1620000000000 ,1616812552070 -1616812552100 ,112.5673986,26.86764634,62.80237198,181.3380607,182.161282,15.603016,0.140965567,1620000000000 ,1620000000000 ,1620000000000 ,1616812552080 -1616812552110 ,112.5673985,26.86764493,62.80307388,181.3403556,182.1758779,15.600705,0.140949634,1620000000000 ,1620000000000 ,1620000000000 ,1616812552090 -1616812552121 ,112.5673985,26.86764353,62.80383682,181.3421588,182.1909508,15.59693,0.140917714,1620000000000 ,1620000000000 ,1620000000000 ,1616812552100 -1616812552132 ,112.5673984,26.86764212,62.8047142,181.3409294,182.1923348,15.593345,0.140887898,1620000000000 ,1620000000000 ,1620000000000 ,1616812552110 -1616812552141 ,112.5673984,26.86764071,62.80563736,181.3420222,182.1902858,15.592351,0.140871645,1620000000000 ,1620000000000 ,1620000000000 ,1616812552120 -1616812552151 ,112.5673983,26.8676393,62.80651474,181.3427052,182.1886164,15.593137,0.140871055,1620000000000 ,1620000000000 ,1620000000000 ,1616812552130 -1616812552163 ,112.5673983,26.8676379,62.80735016,181.3434429,182.2020464,15.593085,0.140873921,1620000000000 ,1620000000000 ,1620000000000 ,1616812552140 -1616812552172 ,112.5673982,26.86763649,62.80822754,181.3435248,182.2030546,15.592989,0.140873736,1620000000000 ,1620000000000 ,1620000000000 ,1616812552150 -1616812552181 ,112.5673982,26.86763508,62.80920792,181.3431424,182.1991562,15.590049,0.140857915,1620000000000 ,1620000000000 ,1620000000000 ,1616812552160 -1616812552191 ,112.5673981,26.86763367,62.81027603,181.3439073,182.1973073,15.58851,0.140839204,1620000000000 ,1620000000000 ,1620000000000 ,1616812552170 -1616812552201 ,112.5673981,26.86763227,62.81137466,181.3436615,182.198596,15.586301,0.140823593,1620000000000 ,1620000000000 ,1620000000000 ,1616812552180 -1616812552211 ,112.567398,26.86763086,62.81250381,181.3426233,182.2007523,15.584288,0.140806431,1620000000000 ,1620000000000 ,1620000000000 ,1616812552190 -1616812552223 ,112.567398,26.86762945,62.81375122,181.3418856,182.0147811,15.566647,0.140632832,1620000000000 ,1620000000000 ,1620000000000 ,1616812552200 -1616812552232 ,112.5673979,26.86762805,62.81517029,181.3409021,181.7534037,15.56293,0.140326483,1620000000000 ,1620000000000 ,1620000000000 ,1616812552210 -1616812552242 ,112.5673979,26.86762665,62.81669617,181.3411206,181.7470626,15.560762,0.140303055,1620000000000 ,1620000000000 ,1620000000000 ,1616812552220 -1616812552253 ,112.5673978,26.86762525,62.81824493,181.3428418,181.7494178,15.561651,0.140306198,1620000000000 ,1620000000000 ,1620000000000 ,1616812552240 -1616812552262 ,112.5673977,26.86762244,62.82122803,181.3469399,181.7526239,15.562299,0.280634221,1620000000000 ,1620000000000 ,1620000000000 ,1616812552250 -1616812552272 ,112.5673977,26.86762104,62.82276154,181.3476503,181.7444166,15.556725,0.140277727,1620000000000 ,1620000000000 ,1620000000000 ,1616812552260 -1616812552282 ,112.5673977,26.86762104,62.82276154,181.3476503,-400,15.556725,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812552270 -1616812552293 ,112.5673976,26.86761824,62.82604599,181.3534423,181.7492284,15.550085,0.280454642,1620000000000 ,1620000000000 ,1620000000000 ,1616812552280 -1616812552303 ,112.5673976,26.86761824,62.82604599,181.3534423,-400,15.550085,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812552280 -1616812552314 ,112.5673976,26.86761683,62.82762527,181.3554367,181.7586497,15.549975,0.140203317,1620000000000 ,1620000000000 ,1620000000000 ,1616812552300 -1616812552323 ,112.5673975,26.86761403,62.83052444,181.3574858,181.7562352,15.550044,0.280426448,1620000000000 ,1620000000000 ,1620000000000 ,1616812552310 -1616812552333 ,112.5673974,26.86761263,62.83187103,181.3610375,181.7509449,15.551649,0.140205546,1620000000000 ,1620000000000 ,1620000000000 ,1616812552320 -1616812552343 ,112.5673974,26.86761263,62.83187103,181.3610375,-400,15.551649,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812552330 -1616812552353 ,112.5673974,26.86760983,62.83433151,181.3672666,181.7658109,15.547748,0.280363857,1620000000000 ,1620000000000 ,1620000000000 ,1616812552340 -1616812552363 ,112.5673973,26.86760843,62.83558273,181.3693156,181.7633578,15.546252,0.14016687,1620000000000 ,1620000000000 ,1620000000000 ,1616812552350 -1616812552376 ,112.5673973,26.86760703,62.8368988,181.3717745,181.7640238,15.547208,0.140164515,1620000000000 ,1620000000000 ,1620000000000 ,1616812552360 -1616812552383 ,112.5673973,26.86760703,62.8368988,181.3717745,-400,15.547208,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812552370 -1616812552395 ,112.5673972,26.86760422,62.83966446,181.3747798,181.7806247,15.541982,0.280310192,1620000000000 ,1620000000000 ,1620000000000 ,1616812552380 -1616812552406 ,112.5673971,26.86760282,62.84109497,181.3755994,181.7945566,15.539453,0.140114669,1620000000000 ,1620000000000 ,1620000000000 ,1616812552390 -1616812552414 ,112.5673971,26.86760142,62.84252167,181.3748071,181.7952115,15.53912,0.140107526,1620000000000 ,1620000000000 ,1620000000000 ,1616812552400 -1616812552425 ,112.567397,26.86760002,62.8438797,181.3775119,181.8077273,15.541704,0.14012154,1620000000000 ,1620000000000 ,1620000000000 ,1616812552410 -1616812552434 ,112.567397,26.86759862,62.84518051,181.3784408,181.8150563,15.545575,0.140154589,1620000000000 ,1620000000000 ,1620000000000 ,1616812552420 -1616812552444 ,112.567397,26.86759722,62.84646988,181.3788779,181.8130029,15.545711,0.140166438,1620000000000 ,1620000000000 ,1620000000000 ,1616812552430 -1616812552455 ,112.5673969,26.86759582,62.84782791,181.3790692,181.8241796,15.545206,0.140162789,1620000000000 ,1620000000000 ,1620000000000 ,1616812552440 -1616812552464 ,112.5673969,26.86759442,62.84914017,181.3812548,182.0154663,15.545098,0.140309628,1620000000000 ,1620000000000 ,1620000000000 ,1616812552450 -1616812552474 ,112.5673968,26.86759301,62.85031509,181.3826209,182.2096396,15.546072,0.140462263,1620000000000 ,1620000000000 ,1620000000000 ,1616812552460 -1616812552487 ,112.5673968,26.86759161,62.85133362,181.3864184,182.2123225,15.549752,0.140486454,1620000000000 ,1620000000000 ,1620000000000 ,1616812552470 -1616812552499 ,112.5673967,26.86759021,62.85220718,181.3859813,182.219781,15.552693,0.140510147,1620000000000 ,1620000000000 ,1620000000000 ,1616812552480 -1616812552507 ,112.5673966,26.8675888,62.85302353,181.3863638,182.2224099,15.554029,0.140523255,1620000000000 ,1620000000000 ,1620000000000 ,1616812552490 -1616812552515 ,112.5673966,26.8675874,62.85388565,181.385107,182.2245575,15.555111,0.140534907,1620000000000 ,1620000000000 ,1620000000000 ,1616812552500 -1616812552525 ,112.5673965,26.86758599,62.85481262,181.3863638,182.2367361,15.555946,0.14054385,1620000000000 ,1620000000000 ,1620000000000 ,1616812552510 -1616812552535 ,112.5673965,26.86758459,62.85567093,181.3878118,182.2321154,15.557321,0.140554497,1620000000000 ,1620000000000 ,1620000000000 ,1616812552520 -1616812552551 ,112.5673964,26.86758318,62.85638046,181.3900521,182.2313252,15.559522,0.140563665,1620000000000 ,1620000000000 ,1620000000000 ,1616812552530 -1616812552557 ,112.5673964,26.86758178,62.85690689,181.3911722,182.2323798,15.562536,0.140581934,1620000000000 ,1620000000000 ,1620000000000 ,1616812552540 -1616812552567 ,112.5673963,26.86758037,62.8572998,181.3931667,182.2422124,15.565467,0.140606491,1620000000000 ,1620000000000 ,1620000000000 ,1616812552550 -1616812552577 ,112.5673963,26.86757897,62.85766602,181.3937131,182.2499551,15.5671425,0.140620336,1620000000000 ,1620000000000 ,1620000000000 ,1616812552560 -1616812552589 ,112.5673962,26.86757756,62.85814667,181.3946966,182.2505611,15.563823,0.140608115,1620000000000 ,1620000000000 ,1620000000000 ,1616812552570 -1616812552596 ,112.5673962,26.86757616,62.85883331,181.3953523,182.2554043,15.559442,0.140570445,1620000000000 ,1620000000000 ,1620000000000 ,1616812552580 -1616812552605 ,112.5673961,26.86757476,62.85959625,181.396773,182.2501073,15.560291,0.140574929,1620000000000 ,1620000000000 ,1620000000000 ,1616812552590 -1616812552615 ,112.567396,26.86757335,62.86021423,181.4000788,182.2480461,15.563585,0.14057782,1620000000000 ,1620000000000 ,1620000000000 ,1616812552600 -1616812552626 ,112.567396,26.86757195,62.86063766,181.4023464,182.2702918,15.570318,0.140637908,1620000000000 ,1620000000000 ,1620000000000 ,1616812552610 -1616812552635 ,112.5673959,26.86757054,62.86101913,181.3986855,182.279396,15.57352,0.140672463,1620000000000 ,1620000000000 ,1620000000000 ,1616812552620 -1616812552647 ,112.5673959,26.86756913,62.86149979,181.3992319,182.2703633,15.574309,0.14068754,1620000000000 ,1620000000000 ,1620000000000 ,1616812552630 -1616812552658 ,112.5673958,26.86756773,62.86210632,181.4003247,182.2648132,15.570646,0.14066307,1620000000000 ,1620000000000 ,1620000000000 ,1616812552640 -1616812552670 ,112.5673958,26.86756632,62.86286926,181.4007618,182.2723976,15.566187,0.140624812,1620000000000 ,1620000000000 ,1620000000000 ,1616812552650 -1616812552681 ,112.5673957,26.86756492,62.8637886,181.4019913,182.2776372,15.565889,0.140617405,1620000000000 ,1620000000000 ,1620000000000 ,1616812552660 -1616812552688 ,112.5673957,26.86756351,62.86481094,181.4028109,182.2674737,15.567847,0.140630287,1620000000000 ,1620000000000 ,1620000000000 ,1616812552670 -1616812552697 ,112.5673956,26.86756211,62.86581802,181.4025377,182.2636493,15.573323,0.140675916,1620000000000 ,1620000000000 ,1620000000000 ,1616812552680 -1616812552708 ,112.5673955,26.8675607,62.86680603,181.4036305,182.2731855,15.575401,0.140698951,1620000000000 ,1620000000000 ,1620000000000 ,1616812552690 -1616812552718 ,112.5673955,26.8675593,62.86784744,181.4040403,182.2764426,15.575556,0.140709009,1620000000000 ,1620000000000 ,1620000000000 ,1616812552700 -1616812552728 ,112.5673954,26.86755789,62.86900711,181.4063079,182.2719571,15.574292,0.140702713,1620000000000 ,1620000000000 ,1620000000000 ,1616812552710 -1616812552738 ,112.5673954,26.86755648,62.8702507,181.4074008,182.2633035,15.574117,0.140701283,1620000000000 ,1620000000000 ,1620000000000 ,1616812552720 -1616812552749 ,112.5673953,26.86755508,62.87156296,181.4080565,182.272818,15.573429,0.140696818,1620000000000 ,1620000000000 ,1620000000000 ,1616812552730 -1616812552759 ,112.5673953,26.86755367,62.87292862,181.4081931,182.2790622,15.573463,0.140696769,1620000000000 ,1620000000000 ,1620000000000 ,1616812552740 -1616812552770 ,112.5673952,26.86755227,62.87432098,181.4092586,182.2755335,15.574798,0.140710004,1620000000000 ,1620000000000 ,1620000000000 ,1616812552750 -1616812552780 ,112.5673951,26.86755086,62.87573242,181.4095318,182.2732836,15.577032,0.140730139,1620000000000 ,1620000000000 ,1620000000000 ,1616812552760 -1616812552789 ,112.5673951,26.86754945,62.87714386,181.4087395,182.2697196,15.579448,0.140753222,1620000000000 ,1620000000000 ,1620000000000 ,1616812552770 -1616812552799 ,112.567395,26.86754805,62.87857056,181.4094498,182.2631561,15.581898,0.140775146,1620000000000 ,1620000000000 ,1620000000000 ,1616812552780 -1616812552811 ,112.567395,26.86754664,62.88005066,181.4094498,182.2577953,15.581855,0.140783203,1620000000000 ,1620000000000 ,1620000000000 ,1616812552790 -1616812552821 ,112.5673949,26.86754523,62.88161469,181.4101329,182.2567381,15.579356,0.140772904,1620000000000 ,1620000000000 ,1620000000000 ,1616812552800 -1616812552833 ,112.5673949,26.86754383,62.88329315,181.4118541,182.2542185,15.577444,0.140760467,1620000000000 ,1620000000000 ,1620000000000 ,1616812552810 -1616812552841 ,112.5673948,26.86754242,62.8850174,181.4136299,182.2516787,15.577936,0.140758853,1620000000000 ,1620000000000 ,1620000000000 ,1616812552820 -1616812552851 ,112.5673948,26.86754101,62.88668823,181.4155424,182.2513606,15.580461,0.140778188,1620000000000 ,1620000000000 ,1620000000000 ,1616812552830 -1616812552860 ,112.5673947,26.86753961,62.8882103,181.4167991,182.2545215,15.582385,0.140796759,1620000000000 ,1620000000000 ,1620000000000 ,1616812552840 -1616812552870 ,112.5673946,26.8675382,62.88961029,181.4181105,182.2614636,15.585083,0.14081858,1620000000000 ,1620000000000 ,1620000000000 ,1616812552850 -1616812552881 ,112.5673946,26.86753679,62.89097595,181.4176734,182.2630326,15.586295,0.140831701,1620000000000 ,1620000000000 ,1620000000000 ,1616812552860 -1616812552891 ,112.5673945,26.86753538,62.89238358,181.4173729,182.2680172,15.586123,0.140838422,1620000000000 ,1620000000000 ,1620000000000 ,1616812552870 -1616812552905 ,112.5673945,26.86753398,62.89383698,181.4175914,182.2729094,15.58517,0.140836785,1620000000000 ,1620000000000 ,1620000000000 ,1616812552880 -1616812552912 ,112.5673944,26.86753257,62.89528275,181.4174548,182.2768454,15.584831,0.140831929,1620000000000 ,1620000000000 ,1620000000000 ,1616812552890 -1616812552922 ,112.5673944,26.86753116,62.89664459,181.4173455,182.2754554,15.586758,0.140844865,1620000000000 ,1620000000000 ,1620000000000 ,1616812552900 -1616812552933 ,112.5673943,26.86752976,62.89784241,181.4163893,182.2760331,15.590074,0.140868924,1620000000000 ,1620000000000 ,1620000000000 ,1616812552910 -1616812552941 ,112.5673943,26.86752835,62.89885712,181.4191487,182.2811642,15.5926075,0.140890727,1620000000000 ,1620000000000 ,1620000000000 ,1616812552920 -1616812552951 ,112.5673942,26.86752694,62.89974976,181.4194766,182.2774038,15.592585,0.140894832,1620000000000 ,1620000000000 ,1620000000000 ,1616812552930 -1616812552961 ,112.5673941,26.86752553,62.90061569,181.4188482,182.2682989,15.591785,0.140888871,1620000000000 ,1620000000000 ,1620000000000 ,1616812552940 -1616812552974 ,112.5673941,26.86752412,62.90146637,181.4189028,182.2718212,15.59378,0.140897184,1620000000000 ,1620000000000 ,1620000000000 ,1616812552950 -1616812552985 ,112.567394,26.86752272,62.9022522,181.4212524,182.2807824,15.596604,0.140922518,1620000000000 ,1620000000000 ,1620000000000 ,1616812552960 -1616812552994 ,112.567394,26.86752131,62.90293503,181.4250773,182.2897219,15.597707,0.140935749,1620000000000 ,1620000000000 ,1620000000000 ,1616812552970 -1616812553004 ,112.5673939,26.8675199,62.90354538,181.4255964,182.2915075,15.597872,0.140937096,1620000000000 ,1620000000000 ,1620000000000 ,1616812552980 -1616812553013 ,112.5673939,26.86751849,62.90414429,181.42505,182.2897288,15.595876,0.140925118,1620000000000 ,1620000000000 ,1620000000000 ,1616812552990 -1616812553023 ,112.5673938,26.86751708,62.90469742,181.4239845,182.2951846,15.59775,0.140930537,1620000000000 ,1620000000000 ,1620000000000 ,1616812553000 -1616812553031 ,112.5673938,26.86751568,62.90514755,181.4266073,182.309063,15.599191,0.140939699,1620000000000 ,1620000000000 ,1620000000000 ,1616812553010 -1616812553043 ,112.5673937,26.86751427,62.90547943,181.4282738,182.3228043,15.60111,0.140955532,1620000000000 ,1620000000000 ,1620000000000 ,1616812553020 -1616812553053 ,112.5673936,26.86751286,62.90575027,181.427946,182.3022864,15.6025715,0.140969473,1620000000000 ,1620000000000 ,1620000000000 ,1616812553030 -1616812553064 ,112.5673936,26.86751145,62.9059639,181.4294486,182.2981142,15.602853,0.140968184,1620000000000 ,1620000000000 ,1620000000000 ,1616812553050 -1616812553074 ,112.5673935,26.86751004,62.90604782,181.4326725,182.3100392,15.605295,0.140983689,1620000000000 ,1620000000000 ,1620000000000 ,1616812553060 -1616812553087 ,112.5673935,26.86750863,62.90600204,181.433656,182.3264095,15.606154,0.140994045,1620000000000 ,1620000000000 ,1620000000000 ,1616812553070 -1616812553098 ,112.5673934,26.86750722,62.90589523,181.4347215,182.3229858,15.6040945,0.14097303,1620000000000 ,1620000000000 ,1620000000000 ,1616812553080 -1616812553105 ,112.5673934,26.86750582,62.90579605,181.4337926,182.3071023,15.604063,0.140965726,1620000000000 ,1620000000000 ,1620000000000 ,1616812553080 -1616812553116 ,112.5673933,26.86750441,62.90568924,181.4348855,182.3104257,15.605744,0.140976437,1620000000000 ,1620000000000 ,1620000000000 ,1616812553100 -1616812553128 ,112.5673932,26.867503,62.90558243,181.4355958,182.3271151,15.606548,0.140984039,1620000000000 ,1620000000000 ,1620000000000 ,1616812553110 -1616812553134 ,112.5673931,26.86750018,62.90552902,181.4360603,182.3438657,15.604948,0.281953772,1620000000000 ,1620000000000 ,1620000000000 ,1616812553120 -1616812553143 ,112.5673931,26.86750018,62.90552902,181.4360603,-400,15.604948,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812553130 -1616812553154 ,112.567393,26.86749736,62.90551758,181.4389016,182.3555602,15.605927,0.281947118,1620000000000 ,1620000000000 ,1620000000000 ,1616812553140 -1616812553164 ,112.567393,26.86749595,62.90543365,181.438847,182.3689824,15.607732,0.140990738,1620000000000 ,1620000000000 ,1620000000000 ,1616812553150 -1616812553174 ,112.5673929,26.86749455,62.90538788,181.4387377,182.3669946,15.607764,0.140988057,1620000000000 ,1620000000000 ,1620000000000 ,1616812553160 -1616812553185 ,112.5673928,26.86749314,62.90546036,181.4384645,182.3655661,15.604532,0.140971651,1620000000000 ,1620000000000 ,1620000000000 ,1616812553170 -1616812553195 ,112.5673928,26.86749314,62.90546036,181.4384645,-400,15.604532,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812553180 -1616812553203 ,112.5673928,26.86749173,62.90570068,181.4370438,182.3613372,15.5981,0.140927108,1620000000000 ,1620000000000 ,1620000000000 ,1616812553190 -1616812553215 ,112.5673927,26.86748891,62.90652084,181.4465514,182.3034384,15.616913,0.28200479,1620000000000 ,1620000000000 ,1620000000000 ,1616812553200 -1616812553223 ,112.5673926,26.8674875,62.90727615,181.4457318,181.9240933,15.621043,0.141422656,1620000000000 ,1620000000000 ,1620000000000 ,1616812553210 -1616812553239 ,112.5673926,26.86748608,62.90810013,181.436634,181.925443,15.621439,0.141446806,1620000000000 ,1620000000000 ,1620000000000 ,1616812553220 -1616812553244 ,112.5673925,26.86748467,62.90911865,181.4327818,181.9274843,15.621802,0.141440511,1620000000000 ,1620000000000 ,1620000000000 ,1616812553230 -1616812553255 ,112.5673925,26.86748326,62.91024399,181.4297492,181.9446429,15.62004,0.141436715,1620000000000 ,1620000000000 ,1620000000000 ,1616812553240 -1616812553264 ,112.5673924,26.86748184,62.91152191,181.4277821,181.9563147,15.614504,0.141396621,1620000000000 ,1620000000000 ,1620000000000 ,1616812553250 -1616812553274 ,112.5673924,26.86748043,62.9129982,181.427099,181.9480263,15.609413,0.141355744,1620000000000 ,1620000000000 ,1620000000000 ,1616812553260 -1616812553284 ,112.5673923,26.86747902,62.91466522,181.4250773,181.9395115,15.608216,0.141341837,1620000000000 ,1620000000000 ,1620000000000 ,1616812553270 -1616812553294 ,112.5673923,26.86747761,62.91633224,181.4235473,181.9288169,15.61216,0.141363428,1620000000000 ,1620000000000 ,1620000000000 ,1616812553280 -1616812553306 ,112.5673922,26.86747619,62.91793442,181.419258,181.9450607,15.614436,0.141389724,1620000000000 ,1620000000000 ,1620000000000 ,1616812553290 -1616812553315 ,112.5673922,26.86747478,62.91963577,181.4119633,181.9646397,15.610725,0.141373673,1620000000000 ,1620000000000 ,1620000000000 ,1616812553300 -1616812553328 ,112.5673921,26.86747337,62.92157364,181.4080838,181.9673595,15.609762,0.141365496,1620000000000 ,1620000000000 ,1620000000000 ,1616812553310 -1616812553345 ,112.5673921,26.86747195,62.92369461,181.4008438,181.9557066,15.604742,0.141336008,1620000000000 ,1620000000000 ,1620000000000 ,1616812553320 -1616812553348 ,112.567392,26.86747054,62.92589188,181.3981664,181.9517975,15.602596,0.141312708,1620000000000 ,1620000000000 ,1620000000000 ,1616812553330 -1616812553356 ,112.567392,26.86746913,62.92811584,181.3922924,181.9582708,15.601012,0.1413011,1620000000000 ,1620000000000 ,1620000000000 ,1616812553340 -1616812553366 ,112.5673919,26.86746772,62.93032074,181.387402,181.9538542,15.602351,0.141306316,1620000000000 ,1620000000000 ,1620000000000 ,1616812553350 -1616812553376 ,112.5673919,26.86746631,62.93247223,181.3829214,181.9428823,15.603123,0.141318949,1620000000000 ,1620000000000 ,1620000000000 ,1616812553360 -1616812553384 ,112.5673918,26.86746489,62.93458939,181.3783042,181.9328889,15.602083,0.141310143,1620000000000 ,1620000000000 ,1620000000000 ,1616812553370 -1616812553394 ,112.5673918,26.86746348,62.93671799,181.3743973,181.9285538,15.601433,0.141307037,1620000000000 ,1620000000000 ,1620000000000 ,1616812553380 -1616812553405 ,112.5673918,26.86746207,62.93886566,181.3707636,181.9185294,15.599938,0.141296144,1620000000000 ,1620000000000 ,1620000000000 ,1616812553390 -1616812553416 ,112.5673917,26.86746066,62.94096375,181.3677857,181.9012733,15.600756,0.141299132,1620000000000 ,1620000000000 ,1620000000000 ,1616812553400 -1616812553427 ,112.5673917,26.86745924,62.94296265,181.364234,181.8899211,15.600901,0.141297527,1620000000000 ,1620000000000 ,1620000000000 ,1616812553410 -1616812553438 ,112.5673916,26.86745783,62.94483948,181.3600539,181.8836657,15.602564,0.141308614,1620000000000 ,1620000000000 ,1620000000000 ,1616812553420 -1616812553446 ,112.5673916,26.86745642,62.94663239,181.3568301,181.8739686,15.601257,0.141302896,1620000000000 ,1620000000000 ,1620000000000 ,1616812553430 -1616812553457 ,112.5673915,26.86745501,62.9483757,181.3544531,181.8637849,15.599831,0.141288986,1620000000000 ,1620000000000 ,1620000000000 ,1616812553440 -1616812553466 ,112.5673915,26.8674536,62.94988632,181.3528685,182.0378193,15.5983925,0.141117561,1620000000000 ,1620000000000 ,1620000000000 ,1616812553450 -1616812553475 ,112.5673914,26.86745219,62.95114136,181.3497267,182.2169745,15.597094,0.140941152,1620000000000 ,1620000000000 ,1620000000000 ,1616812553460 -1616812553485 ,112.5673914,26.86745078,62.95233154,181.3478415,182.2141521,15.596172,0.140928309,1620000000000 ,1620000000000 ,1620000000000 ,1616812553470 -1616812553496 ,112.5673913,26.86744937,62.95343018,181.3458198,182.1988363,15.596516,0.140929143,1620000000000 ,1620000000000 ,1620000000000 ,1616812553480 -1616812553509 ,112.5673913,26.86744796,62.95445251,181.3438254,182.1884627,15.597723,0.140932336,1620000000000 ,1620000000000 ,1620000000000 ,1616812553490 -1616812553517 ,112.5673912,26.86744656,62.95542908,181.3407381,182.1861443,15.599342,0.140944074,1620000000000 ,1620000000000 ,1620000000000 ,1616812553500 -1616812553540 ,112.5673911,26.86744515,62.95636749,181.3390442,182.1796363,15.598685,0.140941692,1620000000000 ,1620000000000 ,1620000000000 ,1616812553510 -1616812553545 ,112.5673911,26.86744374,62.95729446,181.3369952,182.1790298,15.598101,0.140941548,1620000000000 ,1620000000000 ,1620000000000 ,1616812553520 -1616812553548 ,112.567391,26.86744233,62.95822906,181.3348915,182.1713661,15.596769,0.140928283,1620000000000 ,1620000000000 ,1620000000000 ,1616812553530 -1616812553556 ,112.567391,26.86744092,62.95919037,181.332378,182.1617998,15.595023,0.140912039,1620000000000 ,1620000000000 ,1620000000000 ,1616812553540 -1616812553567 ,112.5673909,26.86743951,62.96014404,181.3307387,182.1508533,15.593558,0.140897989,1620000000000 ,1620000000000 ,1620000000000 ,1616812553550 -1616812553578 ,112.5673909,26.86743811,62.96102524,181.3295366,182.1481913,15.593385,0.140892954,1620000000000 ,1620000000000 ,1620000000000 ,1616812553560 -1616812553588 ,112.5673908,26.8674367,62.96181107,181.3280613,182.1504286,15.594081,0.140895502,1620000000000 ,1620000000000 ,1620000000000 ,1616812553570 -1616812553598 ,112.5673908,26.86743529,62.96250916,181.3263128,182.1451496,15.59594,0.140903231,1620000000000 ,1620000000000 ,1620000000000 ,1616812553580 -1616812553608 ,112.5673907,26.86743388,62.96312332,181.3250287,182.1391279,15.597956,0.140917868,1620000000000 ,1620000000000 ,1620000000000 ,1616812553590 -1616812553617 ,112.5673907,26.86743247,62.96368408,181.3225698,182.1289063,15.597395,0.140915929,1620000000000 ,1620000000000 ,1620000000000 ,1616812553600 -1616812553628 ,112.5673906,26.86743107,62.96425629,181.319264,182.1245319,15.5947075,0.140900693,1620000000000 ,1620000000000 ,1620000000000 ,1616812553610 -1616812553638 ,112.5673906,26.86742966,62.96487427,181.3164773,182.1206676,15.592261,0.140876362,1620000000000 ,1620000000000 ,1620000000000 ,1616812553620 -1616812553647 ,112.5673905,26.86742825,62.96552658,181.313554,182.1175605,15.589233,0.140850567,1620000000000 ,1620000000000 ,1620000000000 ,1616812553630 -1616812553658 ,112.5673905,26.86742684,62.96621323,181.3108219,182.1199567,15.586838,0.140828309,1620000000000 ,1620000000000 ,1620000000000 ,1616812553640 -1616812553671 ,112.5673904,26.86742544,62.96694946,181.3092373,182.1210179,15.591359,0.140855451,1620000000000 ,1620000000000 ,1620000000000 ,1616812553650 -1616812553679 ,112.5673904,26.86742403,62.96774673,181.3072702,182.123302,15.593612,0.140887645,1620000000000 ,1620000000000 ,1620000000000 ,1616812553660 -1616812553688 ,112.5673903,26.86742262,62.96861649,181.3025164,182.1098925,15.590433,0.140873716,1620000000000 ,1620000000000 ,1620000000000 ,1616812553670 -1616812553702 ,112.5673903,26.86742121,62.96950912,181.3007679,182.0917119,15.5869665,0.140843667,1620000000000 ,1620000000000 ,1620000000000 ,1616812553680 -1616812553711 ,112.5673902,26.86741981,62.97038269,181.2996477,182.090465,15.5846195,0.140815286,1620000000000 ,1620000000000 ,1620000000000 ,1616812553690 -1616812553719 ,112.5673902,26.8674184,62.97122574,181.2971069,182.104044,15.584754,0.140817706,1620000000000 ,1620000000000 ,1620000000000 ,1616812553700 -1616812553728 ,112.5673901,26.86741699,62.97206116,181.2971615,182.1006187,15.582471,0.140800337,1620000000000 ,1620000000000 ,1620000000000 ,1616812553710 -1616812553738 ,112.56739,26.86741558,62.97288132,181.2942655,182.0910499,15.580595,0.140779107,1620000000000 ,1620000000000 ,1620000000000 ,1616812553720 -1616812553751 ,112.56739,26.86741418,62.97369766,181.2894844,182.0850815,15.581115,0.140780026,1620000000000 ,1620000000000 ,1620000000000 ,1616812553730 -1616812553760 ,112.5673899,26.86741277,62.9744873,181.2852497,182.0824456,15.581391,0.140786886,1620000000000 ,1620000000000 ,1620000000000 ,1616812553740 -1616812553771 ,112.5673899,26.86741136,62.9752655,181.2815341,182.0872565,15.580526,0.140778814,1620000000000 ,1620000000000 ,1620000000000 ,1616812553750 -1616812553780 ,112.5673898,26.86740996,62.97600555,181.2787473,182.0826608,15.579479,0.140773015,1620000000000 ,1620000000000 ,1620000000000 ,1616812553760 -1616812553790 ,112.5673898,26.86740855,62.97670364,181.2775452,182.0746574,15.577568,0.140755391,1620000000000 ,1620000000000 ,1620000000000 ,1616812553770 -1616812553800 ,112.5673897,26.86740714,62.97734451,181.2758787,182.0711424,15.576128,0.140737012,1620000000000 ,1620000000000 ,1620000000000 ,1616812553780 -1616812553809 ,112.5673897,26.86740574,62.9779129,181.2760426,182.0735123,15.57791,0.140739969,1620000000000 ,1620000000000 ,1620000000000 ,1616812553790 -1616812553820 ,112.5673896,26.86740433,62.97843552,181.2768349,182.0767913,15.57732,0.140744432,1620000000000 ,1620000000000 ,1620000000000 ,1616812553800 -1616812553829 ,112.5673896,26.86740292,62.97899246,181.2774906,182.0680689,15.574573,0.140723816,1620000000000 ,1620000000000 ,1620000000000 ,1616812553810 -1616812553840 ,112.5673895,26.86740152,62.97953796,181.2764797,182.0555595,15.57608,0.14071452,1620000000000 ,1620000000000 ,1620000000000 ,1616812553820 -1616812553850 ,112.5673895,26.86740011,62.97996521,181.2776818,182.0572272,15.573577,0.140702119,1620000000000 ,1620000000000 ,1620000000000 ,1616812553830 -1616812553860 ,112.5673894,26.86739871,62.98013306,181.2818619,182.0877119,15.580746,0.140739419,1620000000000 ,1620000000000 ,1620000000000 ,1616812553840 -1616812553874 ,112.5673894,26.8673973,62.9801178,181.2830367,182.0860037,15.583044,0.140753302,1620000000000 ,1620000000000 ,1620000000000 ,1616812553850 -1616812553881 ,112.5673893,26.86739589,62.98016357,181.2784741,182.069949,15.583076,0.140761101,1620000000000 ,1620000000000 ,1620000000000 ,1616812553860 -1616812553890 ,112.5673893,26.86739449,62.98049164,181.2754142,182.0740717,15.576229,0.140727898,1620000000000 ,1620000000000 ,1620000000000 ,1616812553870 -1616812553900 ,112.5673892,26.86739308,62.98101807,181.2733105,182.0812055,15.565956,0.140642955,1620000000000 ,1620000000000 ,1620000000000 ,1616812553880 -1616812553914 ,112.5673892,26.86739168,62.98163605,181.2721084,182.1005546,15.565011,0.140610702,1620000000000 ,1620000000000 ,1620000000000 ,1616812553890 -1616812553921 ,112.5673891,26.86739027,62.98222351,181.2738842,182.1086094,15.569937,0.140640529,1620000000000 ,1620000000000 ,1620000000000 ,1616812553900 -1616812553932 ,112.5673891,26.86738886,62.98275375,181.2763704,182.1096289,15.576594,0.140696591,1620000000000 ,1620000000000 ,1620000000000 ,1616812553910 -1616812553941 ,112.567389,26.86738746,62.98333359,181.2756054,182.0988639,15.577577,0.140723058,1620000000000 ,1620000000000 ,1620000000000 ,1616812553920 -1616812553951 ,112.567389,26.86738605,62.98407364,181.2726002,182.0920995,15.5728035,0.140695782,1620000000000 ,1620000000000 ,1620000000000 ,1616812553930 -1616812553961 ,112.5673889,26.86738465,62.98507309,181.2706331,182.1263675,15.565254,0.140637519,1620000000000 ,1620000000000 ,1620000000000 ,1616812553940 -1616812553970 ,112.5673889,26.86738324,62.98624802,181.2682562,182.1533495,15.562005,0.140606258,1620000000000 ,1620000000000 ,1620000000000 ,1616812553950 -1616812553982 ,112.5673888,26.86738184,62.98753738,181.2666442,182.1579557,15.56206,0.14060117,1620000000000 ,1620000000000 ,1620000000000 ,1616812553960 -1616812553994 ,112.5673888,26.86738043,62.98891449,181.2609888,182.1451878,15.561555,0.140601144,1620000000000 ,1620000000000 ,1620000000000 ,1616812553970 -1616812554001 ,112.5673887,26.86737903,62.99032593,181.2562077,182.1331472,15.5627575,0.14060937,1620000000000 ,1620000000000 ,1620000000000 ,1616812553980 -1616812554017 ,112.5673887,26.86737762,62.99169922,181.2537215,182.1467341,15.564405,0.140626209,1620000000000 ,1620000000000 ,1620000000000 ,1616812553990 -1616812554025 ,112.5673886,26.86737622,62.99308014,181.2503064,182.1624596,15.565137,0.140636276,1620000000000 ,1620000000000 ,1620000000000 ,1616812554000 -1616812554032 ,112.5673886,26.86737481,62.99456406,181.246946,182.1635151,15.563997,0.140637227,1620000000000 ,1620000000000 ,1620000000000 ,1616812554010 -1616812554044 ,112.5673885,26.86737341,62.99618912,181.2433123,182.1560957,15.560735,0.140612602,1620000000000 ,1620000000000 ,1620000000000 ,1616812554020 -1616812554054 ,112.5673884,26.867372,62.99790573,181.2402524,182.1512297,15.557223,0.140584303,1620000000000 ,1620000000000 ,1620000000000 ,1616812554030 -1616812554063 ,112.5673884,26.8673706,62.99963379,181.2379028,182.151938,15.555212,0.140567118,1620000000000 ,1620000000000 ,1620000000000 ,1616812554040 -1616812554071 ,112.5673883,26.86736919,63.00133133,181.2343511,182.1619463,15.555487,0.140563682,1620000000000 ,1620000000000 ,1620000000000 ,1616812554050 -1616812554082 ,112.5673883,26.86736779,63.00300598,181.2335861,182.1661023,15.556011,0.140569413,1620000000000 ,1620000000000 ,1620000000000 ,1616812554060 -1616812554092 ,112.5673882,26.86736638,63.004673,181.2318103,182.1608091,15.555783,0.14057099,1620000000000 ,1620000000000 ,1620000000000 ,1616812554080 -1616812554105 ,112.5673882,26.86736498,63.00630569,181.2289416,182.1570962,15.558209,0.140584039,1620000000000 ,1620000000000 ,1620000000000 ,1616812554080 -1616812554114 ,112.5673881,26.86736357,63.0078392,181.2251713,182.1579924,15.558879,0.140593125,1620000000000 ,1620000000000 ,1620000000000 ,1616812554090 -1616812554123 ,112.5673881,26.86736217,63.00925827,181.2241058,182.1664926,15.5591545,0.140594362,1620000000000 ,1620000000000 ,1620000000000 ,1616812554110 -1616812554133 ,112.567388,26.86736076,63.01057434,181.2226032,182.1669281,15.559212,0.140589987,1620000000000 ,1620000000000 ,1620000000000 ,1616812554110 -1616812554143 ,112.5673879,26.86735795,63.01305008,181.2182045,182.152343,15.559868,0.281186357,1620000000000 ,1620000000000 ,1620000000000 ,1616812554130 -1616812554152 ,112.5673879,26.86735795,63.01305008,181.2182045,-400,15.559868,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812554130 -1616812554162 ,112.5673878,26.86735514,63.01524734,181.2152266,182.1545653,15.561714,0.281194178,1620000000000 ,1620000000000 ,1620000000000 ,1616812554150 -1616812554174 ,112.5673878,26.86735374,63.01618958,181.2151446,182.1540698,15.563032,0.140607011,1620000000000 ,1620000000000 ,1620000000000 ,1616812554160 -1616812554182 ,112.5673877,26.86735233,63.01710892,181.212112,182.1472796,15.564807,0.140619555,1620000000000 ,1620000000000 ,1620000000000 ,1616812554170 -1616812554196 ,112.5673877,26.86735093,63.01802826,181.2085057,182.1397762,15.565,0.140620719,1620000000000 ,1620000000000 ,1620000000000 ,1616812554180 -1616812554206 ,112.5673877,26.86735093,63.01802826,181.2085057,-400,15.565,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812554190 -1616812554216 ,112.5673876,26.86734812,63.0196991,181.2080959,182.0128745,15.543211,0.280863015,1620000000000 ,1620000000000 ,1620000000000 ,1616812554200 -1616812554224 ,112.5673876,26.86734812,63.0196991,181.2080959,-400,15.543211,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812554210 -1616812554234 ,112.5673875,26.86734533,63.02073288,181.20479,181.4328415,15.543371,0.279350248,1620000000000 ,1620000000000 ,1620000000000 ,1616812554220 -1616812554243 ,112.5673874,26.86734393,63.02131653,181.2012657,181.4292741,15.543454,0.139678668,1620000000000 ,1620000000000 ,1620000000000 ,1616812554230 -1616812554254 ,112.5673874,26.86734253,63.0219574,181.1988614,181.4235611,15.541626,0.139673952,1620000000000 ,1620000000000 ,1620000000000 ,1616812554240 -1616812554266 ,112.5673874,26.86734114,63.02267075,181.1959654,181.4230298,15.540033,0.139658345,1620000000000 ,1620000000000 ,1620000000000 ,1616812554250 -1616812554276 ,112.5673873,26.86733974,63.02347183,181.1921952,181.4228344,15.53884,0.139648445,1620000000000 ,1620000000000 ,1620000000000 ,1616812554260 -1616812554289 ,112.5673873,26.86733835,63.02433777,181.1918127,181.415286,15.538316,0.139645873,1620000000000 ,1620000000000 ,1620000000000 ,1616812554270 -1616812554298 ,112.5673873,26.86733695,63.02526093,181.1921405,181.410617,15.539017,0.139651496,1620000000000 ,1620000000000 ,1620000000000 ,1616812554280 -1616812554306 ,112.5673872,26.86733555,63.02620697,181.1913209,181.4048743,15.540323,0.13966411,1620000000000 ,1620000000000 ,1620000000000 ,1616812554290 -1616812554315 ,112.5673872,26.86733416,63.02716064,181.1898729,181.4003895,15.54036,0.139671234,1620000000000 ,1620000000000 ,1620000000000 ,1616812554300 -1616812554325 ,112.5673872,26.86733276,63.0280838,181.188944,181.3937427,15.538521,0.139659813,1620000000000 ,1620000000000 ,1620000000000 ,1616812554310 -1616812554335 ,112.5673871,26.86733137,63.02895355,181.1877965,181.3942088,15.537339,0.139647821,1620000000000 ,1620000000000 ,1620000000000 ,1616812554320 -1616812554346 ,112.5673871,26.86732997,63.02978134,181.1884249,181.3966736,15.537822,0.139646644,1620000000000 ,1620000000000 ,1620000000000 ,1616812554330 -1616812554357 ,112.5673871,26.86732857,63.0305481,181.1849279,181.3863229,15.53688,0.139639731,1620000000000 ,1620000000000 ,1620000000000 ,1616812554340 -1616812554368 ,112.567387,26.86732718,63.03124619,181.1825783,181.3813653,15.536517,0.139636182,1620000000000 ,1620000000000 ,1620000000000 ,1616812554350 -1616812554377 ,112.567387,26.86732578,63.03184891,181.1807205,181.3778938,15.537058,0.139634276,1620000000000 ,1620000000000 ,1620000000000 ,1616812554360 -1616812554389 ,112.567387,26.86732439,63.03235626,181.17889,181.3738704,15.538488,0.139640316,1620000000000 ,1620000000000 ,1620000000000 ,1616812554370 -1616812554397 ,112.5673869,26.86732299,63.03276062,181.1785621,181.3714337,15.54208,0.139664887,1620000000000 ,1620000000000 ,1620000000000 ,1616812554380 -1616812554408 ,112.5673869,26.86732159,63.03306198,181.1755842,181.3704279,15.543931,0.139684417,1620000000000 ,1620000000000 ,1620000000000 ,1616812554390 -1616812554417 ,112.5673869,26.8673202,63.03328323,181.1738629,181.3652103,15.544999,0.139691905,1620000000000 ,1620000000000 ,1620000000000 ,1616812554400 -1616812554428 ,112.5673868,26.8673188,63.03350067,181.1717319,181.3625678,15.543106,0.139679194,1620000000000 ,1620000000000 ,1620000000000 ,1616812554410 -1616812554438 ,112.5673868,26.8673174,63.03375244,181.1697648,181.3644915,15.542374,0.139671494,1620000000000 ,1620000000000 ,1620000000000 ,1616812554420 -1616812554447 ,112.5673868,26.86731601,63.03404236,181.1676338,181.3620477,15.542716,0.139670404,1620000000000 ,1620000000000 ,1620000000000 ,1616812554430 -1616812554457 ,112.5673867,26.86731461,63.03435898,181.1657487,181.3640078,15.543252,0.139674987,1620000000000 ,1620000000000 ,1620000000000 ,1616812554440 -1616812554467 ,112.5673867,26.86731321,63.0348587,181.1623609,181.6304193,15.544673,0.140053588,1620000000000 ,1620000000000 ,1620000000000 ,1616812554450 -1616812554476 ,112.5673867,26.86731181,63.03550339,181.1605851,181.8986826,15.549679,0.140454488,1620000000000 ,1620000000000 ,1620000000000 ,1616812554460 -1616812554486 ,112.5673866,26.8673104,63.03603745,181.1605851,181.8964953,15.549698,0.140468362,1620000000000 ,1620000000000 ,1620000000000 ,1616812554470 -1616812554496 ,112.5673866,26.867309,63.03649521,181.1593556,181.893905,15.551956,0.140481314,1620000000000 ,1620000000000 ,1620000000000 ,1616812554480 -1616812554506 ,112.5673865,26.8673076,63.03701401,181.1552302,181.8890456,15.550478,0.140473757,1620000000000 ,1620000000000 ,1620000000000 ,1616812554490 -1616812554516 ,112.5673865,26.86730619,63.03763962,181.151979,181.8837858,15.549266,0.140462539,1620000000000 ,1620000000000 ,1620000000000 ,1616812554500 -1616812554527 ,112.5673864,26.86730479,63.03835297,181.1491923,181.8906561,15.546061,0.140445587,1620000000000 ,1620000000000 ,1620000000000 ,1616812554510 -1616812554539 ,112.5673864,26.86730338,63.0390892,181.1466242,181.8945133,15.545357,0.140434117,1620000000000 ,1620000000000 ,1620000000000 ,1616812554520 -1616812554549 ,112.5673863,26.86730198,63.03990555,181.1426626,181.8999308,15.545765,0.140434346,1620000000000 ,1620000000000 ,1620000000000 ,1616812554530 -1616812554567 ,112.5673863,26.86730058,63.04083633,181.1385099,181.894694,15.546512,0.140444418,1620000000000 ,1620000000000 ,1620000000000 ,1616812554540 -1616812554569 ,112.5673862,26.86729917,63.04187775,181.1358051,181.8929874,15.547007,0.140454052,1620000000000 ,1620000000000 ,1620000000000 ,1616812554550 -1616812554578 ,112.5673862,26.86729777,63.04300308,181.1313245,181.893103,15.545132,0.140446044,1620000000000 ,1620000000000 ,1620000000000 ,1616812554560 -1616812554590 ,112.5673861,26.86729637,63.04421234,181.126598,181.9020749,15.542935,0.140428389,1620000000000 ,1620000000000 ,1620000000000 ,1616812554570 -1616812554600 ,112.5673861,26.86729496,63.04553604,181.1239479,181.9072547,15.5421505,0.14042034,1620000000000 ,1620000000000 ,1620000000000 ,1616812554580 -1616812554611 ,112.567386,26.86729356,63.04697418,181.1200137,181.8913721,15.543492,0.140437643,1620000000000 ,1620000000000 ,1620000000000 ,1616812554590 -1616812554621 ,112.567386,26.86729216,63.04849625,181.1171997,181.8851815,15.540623,0.140421521,1620000000000 ,1620000000000 ,1620000000000 ,1616812554600 -1616812554629 ,112.567386,26.86729075,63.05001831,181.1142217,181.8964231,15.540097,0.140409852,1620000000000 ,1620000000000 ,1620000000000 ,1616812554610 -1616812554640 ,112.5673859,26.86728935,63.0514679,181.1114897,181.9054567,15.539848,0.140408713,1620000000000 ,1620000000000 ,1620000000000 ,1616812554620 -1616812554650 ,112.5673859,26.86728795,63.0527916,181.1088942,181.8987909,15.540218,0.140405604,1620000000000 ,1620000000000 ,1620000000000 ,1616812554630 -1616812554659 ,112.5673858,26.86728654,63.05394363,181.1055884,181.8855344,15.542036,0.140413177,1620000000000 ,1620000000000 ,1620000000000 ,1616812554640 -1616812554668 ,112.5673858,26.86728514,63.05495834,181.100698,181.8852917,15.542439,0.140415002,1620000000000 ,1620000000000 ,1620000000000 ,1616812554650 -1616812554679 ,112.5673857,26.86728374,63.05593109,181.0919826,181.8851832,15.5416355,0.140412716,1620000000000 ,1620000000000 ,1620000000000 ,1616812554660 -1616812554688 ,112.5673857,26.86728233,63.0569191,181.0868737,181.8851303,15.539691,0.140395875,1620000000000 ,1620000000000 ,1620000000000 ,1616812554670 -1616812554699 ,112.5673856,26.86728093,63.0579071,181.0810543,181.8762382,15.540445,0.140391111,1620000000000 ,1620000000000 ,1620000000000 ,1616812554680 -1616812554714 ,112.5673856,26.86727953,63.05884933,181.0767923,181.8651949,15.543148,0.140407932,1620000000000 ,1620000000000 ,1620000000000 ,1616812554690 -1616812554721 ,112.5673855,26.86727812,63.05978012,181.0743334,181.8549131,15.544635,0.140425229,1620000000000 ,1620000000000 ,1620000000000 ,1616812554700 -1616812554730 ,112.5673855,26.86727672,63.06074142,181.070973,181.8445299,15.542923,0.140416225,1620000000000 ,1620000000000 ,1620000000000 ,1616812554710 -1616812554739 ,112.5673855,26.86727532,63.06182098,181.0687054,181.845683,15.541367,0.140404069,1620000000000 ,1620000000000 ,1620000000000 ,1616812554720 -1616812554749 ,112.5673854,26.86727391,63.06300735,181.0686507,181.8532287,15.541239,0.140400903,1620000000000 ,1620000000000 ,1620000000000 ,1616812554730 -1616812554759 ,112.5673854,26.86727251,63.06426239,181.0655088,181.8651832,15.540701,0.140399775,1620000000000 ,1620000000000 ,1620000000000 ,1616812554740 -1616812554770 ,112.5673853,26.86727111,63.06552124,181.0637876,181.8660043,15.540382,0.140394573,1620000000000 ,1620000000000 ,1620000000000 ,1616812554750 -1616812554782 ,112.5673853,26.8672697,63.0667305,181.0580229,181.8472628,15.541675,0.140407474,1620000000000 ,1620000000000 ,1620000000000 ,1616812554760 -1616812554790 ,112.5673852,26.8672683,63.06787491,181.0512474,181.8224938,15.53975,0.140379666,1620000000000 ,1620000000000 ,1620000000000 ,1616812554770 -1616812554800 ,112.5673852,26.8672669,63.06900406,181.045674,181.8164472,15.541106,0.140387629,1620000000000 ,1620000000000 ,1620000000000 ,1616812554780 -1616812554810 ,112.5673851,26.86726549,63.07014084,181.0409475,181.8351489,15.540296,0.140390827,1620000000000 ,1620000000000 ,1620000000000 ,1616812554790 -1616812554825 ,112.5673851,26.86726409,63.07130814,181.0421769,181.8388122,15.540042,0.140390288,1620000000000 ,1620000000000 ,1620000000000 ,1616812554800 -1616812554830 ,112.567385,26.86726269,63.07255554,181.0411387,181.810895,15.537084,0.140362414,1620000000000 ,1620000000000 ,1620000000000 ,1616812554810 -1616812554840 ,112.567385,26.86726128,63.07400131,181.0373138,181.7848126,15.535658,0.140349496,1620000000000 ,1620000000000 ,1620000000000 ,1616812554820 -1616812554855 ,112.567385,26.86725988,63.07556534,181.0337348,181.7826124,15.536462,0.140362137,1620000000000 ,1620000000000 ,1620000000000 ,1616812554830 -1616812554860 ,112.5673849,26.86725848,63.07715607,181.0315764,181.806277,15.534844,0.140355736,1620000000000 ,1620000000000 ,1620000000000 ,1616812554840 -1616812554870 ,112.5673849,26.86725708,63.07876587,181.0295001,181.8209428,15.532863,0.140341283,1620000000000 ,1620000000000 ,1620000000000 ,1616812554850 -1616812554880 ,112.5673848,26.86725567,63.08052826,181.0271505,181.8235372,15.52877,0.140314596,1620000000000 ,1620000000000 ,1620000000000 ,1616812554860 -1616812554891 ,112.5673848,26.86725427,63.0824852,181.0249921,181.8103579,15.527777,0.140307281,1620000000000 ,1620000000000 ,1620000000000 ,1616812554870 -1616812554900 ,112.5673847,26.86725287,63.08449173,181.0252107,181.7963737,15.527533,0.140307905,1620000000000 ,1620000000000 ,1620000000000 ,1616812554880 -1616812554914 ,112.5673847,26.86725147,63.08642578,181.0246916,181.8074107,15.528364,0.140310672,1620000000000 ,1620000000000 ,1620000000000 ,1616812554890 -1616812554922 ,112.5673846,26.86725006,63.08825684,181.0201291,181.8218731,15.526524,0.140305047,1620000000000 ,1620000000000 ,1620000000000 ,1616812554900 -1616812554930 ,112.5673846,26.86724866,63.09004211,181.01655,181.8245352,15.524167,0.140285633,1620000000000 ,1620000000000 ,1620000000000 ,1616812554910 -1616812554942 ,112.5673846,26.86724726,63.09175873,181.0118782,181.8198525,15.525074,0.140286032,1620000000000 ,1620000000000 ,1620000000000 ,1616812554920 -1616812554953 ,112.5673845,26.86724586,63.09333801,181.0125885,181.8111254,15.527322,0.140300502,1620000000000 ,1620000000000 ,1620000000000 ,1616812554930 -1616812554961 ,112.5673845,26.86724445,63.09479523,181.0105941,181.8122294,15.526618,0.140302508,1620000000000 ,1620000000000 ,1620000000000 ,1616812554940 -1616812554972 ,112.5673844,26.86724305,63.09622192,181.0072337,181.8064937,15.523491,0.140286617,1620000000000 ,1620000000000 ,1620000000000 ,1616812554950 -1616812554984 ,112.5673844,26.86724165,63.09765625,181.0048021,181.7973356,15.520286,0.140259481,1620000000000 ,1620000000000 ,1620000000000 ,1616812554960 -1616812554994 ,112.5673843,26.86724025,63.09902954,181.0017968,181.8009233,15.520655,0.140250339,1620000000000 ,1620000000000 ,1620000000000 ,1616812554970 -1616812555003 ,112.5673843,26.86723885,63.10023117,181.0009499,181.8128785,15.522737,0.140265811,1620000000000 ,1620000000000 ,1620000000000 ,1616812554980 -1616812555011 ,112.5673842,26.86723744,63.10126114,180.9998297,181.8261914,15.524068,0.140280455,1620000000000 ,1620000000000 ,1620000000000 ,1616812554990 -1616812555021 ,112.5673842,26.86723604,63.10222626,180.997043,181.8135103,15.521682,0.140266938,1620000000000 ,1620000000000 ,1620000000000 ,1616812555000 -1616812555032 ,112.5673842,26.86723464,63.10318375,180.9961961,181.807482,15.519202,0.14024395,1620000000000 ,1620000000000 ,1620000000000 ,1616812555010 -1616812555042 ,112.5673841,26.86723324,63.10411835,180.9962234,181.8182446,15.517204,0.140230536,1620000000000 ,1620000000000 ,1620000000000 ,1616812555030 -1616812555052 ,112.5673841,26.86723184,63.10495377,180.9924804,181.8316296,15.515688,0.140212539,1620000000000 ,1620000000000 ,1620000000000 ,1616812555040 -1616812555067 ,112.567384,26.86722904,63.10628891,180.9855683,181.8389633,15.513445,0.280389034,1620000000000 ,1620000000000 ,1620000000000 ,1616812555050 -1616812555075 ,112.5673839,26.86722763,63.10673904,180.9827269,181.8395064,15.51341,0.140180695,1620000000000 ,1620000000000 ,1620000000000 ,1616812555060 -1616812555083 ,112.5673839,26.86722623,63.10701752,180.9791479,181.8437081,15.5132475,0.14017305,1620000000000 ,1620000000000 ,1620000000000 ,1616812555070 -1616812555094 ,112.5673838,26.86722483,63.10713196,180.9762792,181.8476995,15.513853,0.140171825,1620000000000 ,1620000000000 ,1620000000000 ,1616812555080 -1616812555103 ,112.5673838,26.86722483,63.10713196,180.9762792,-400,15.513853,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812555090 -1616812555113 ,112.5673838,26.86722203,63.1070137,180.9679737,181.8395125,15.513291,0.280316719,1620000000000 ,1620000000000 ,1620000000000 ,1616812555100 -1616812555124 ,112.5673837,26.86722063,63.1067543,180.9653783,181.8311208,15.512334,0.140143992,1620000000000 ,1620000000000 ,1620000000000 ,1616812555110 -1616812555134 ,112.5673837,26.86721923,63.1062851,180.9614167,181.8335725,15.515725,0.140152354,1620000000000 ,1620000000000 ,1620000000000 ,1616812555120 -1616812555144 ,112.5673836,26.86721783,63.10564423,180.9577831,181.8357546,15.515114,0.140145381,1620000000000 ,1620000000000 ,1620000000000 ,1616812555130 -1616812555154 ,112.5673836,26.86721643,63.10493088,180.9552423,181.8247103,15.515638,0.140141094,1620000000000 ,1620000000000 ,1620000000000 ,1616812555140 -1616812555164 ,112.5673835,26.86721503,63.10423279,180.9525375,181.8133881,15.514088,0.140133805,1620000000000 ,1620000000000 ,1620000000000 ,1616812555150 -1616812555175 ,112.5673835,26.86721363,63.10357666,180.9500513,181.8135357,15.511632,0.140108299,1620000000000 ,1620000000000 ,1620000000000 ,1616812555160 -1616812555184 ,112.5673834,26.86721223,63.10295486,180.9466089,181.8155618,15.510781,0.14009405,1620000000000 ,1620000000000 ,1620000000000 ,1616812555170 -1616812555194 ,112.5673834,26.86721083,63.10237503,180.9446691,181.8136526,15.511053,0.140091596,1620000000000 ,1620000000000 ,1620000000000 ,1616812555180 -1616812555207 ,112.5673834,26.86720943,63.10183716,180.942101,181.8074849,15.511145,0.140090093,1620000000000 ,1620000000000 ,1620000000000 ,1616812555190 -1616812555214 ,112.5673833,26.86720803,63.10127258,180.9301072,181.4837645,15.51199,0.140023807,1620000000000 ,1620000000000 ,1620000000000 ,1616812555200 -1616812555225 ,112.5673833,26.86720663,63.10067749,180.9273204,180.9887399,15.509381,0.139948159,1620000000000 ,1620000000000 ,1620000000000 ,1616812555210 -1616812555234 ,112.5673833,26.86720523,63.10025406,180.9242332,180.9783939,15.506173,0.139925109,1620000000000 ,1620000000000 ,1620000000000 ,1616812555220 -1616812555248 ,112.5673832,26.86720383,63.10004044,180.9237141,180.9769521,15.502013,0.139892557,1620000000000 ,1620000000000 ,1620000000000 ,1616812555230 -1616812555255 ,112.5673832,26.86720243,63.10003281,180.9222115,180.9784979,15.497625,0.139857156,1620000000000 ,1620000000000 ,1620000000000 ,1616812555240 -1616812555266 ,112.5673832,26.86720103,63.10025024,180.9223754,180.9732539,15.493872,0.139823528,1620000000000 ,1620000000000 ,1620000000000 ,1616812555250 -1616812555275 ,112.5673832,26.86719963,63.10066986,180.9192335,180.9686854,15.49152,0.139803204,1620000000000 ,1620000000000 ,1620000000000 ,1616812555260 -1616812555287 ,112.5673832,26.86719824,63.10124969,180.9173484,180.9663544,15.491615,0.13980126,1620000000000 ,1620000000000 ,1620000000000 ,1616812555270 -1616812555295 ,112.5673831,26.86719684,63.1019516,180.9148895,180.9672951,15.491849,0.139806724,1620000000000 ,1620000000000 ,1620000000000 ,1616812555280 -1616812555305 ,112.5673831,26.86719544,63.10281754,180.9131956,180.9670567,15.490409,0.139802801,1620000000000 ,1620000000000 ,1620000000000 ,1616812555290 -1616812555315 ,112.5673831,26.86719404,63.10391235,180.9096712,180.9599424,15.48566,0.139770111,1620000000000 ,1620000000000 ,1620000000000 ,1616812555300 -1616812555325 ,112.5673831,26.86719265,63.10526657,180.9069938,180.9524091,15.481353,0.139738386,1620000000000 ,1620000000000 ,1620000000000 ,1616812555310 -1616812555338 ,112.567383,26.86719125,63.10687637,180.9040705,180.952183,15.476471,0.139703746,1620000000000 ,1620000000000 ,1620000000000 ,1616812555320 -1616812555346 ,112.567383,26.86718985,63.1086731,180.9015843,180.9535781,15.473634,0.139675533,1620000000000 ,1620000000000 ,1620000000000 ,1616812555330 -1616812555356 ,112.567383,26.86718846,63.11059952,180.8986063,180.9547228,15.472061,0.139663642,1620000000000 ,1620000000000 ,1620000000000 ,1616812555340 -1616812555366 ,112.567383,26.86718706,63.11260605,180.8971583,180.9528244,15.470967,0.139657314,1620000000000 ,1620000000000 ,1620000000000 ,1616812555350 -1616812555375 ,112.5673829,26.86718566,63.11466599,180.8951639,180.9530688,15.470788,0.139660552,1620000000000 ,1620000000000 ,1620000000000 ,1616812555360 -1616812555385 ,112.5673829,26.86718427,63.11673737,180.8945902,180.949063,15.470371,0.139655752,1620000000000 ,1620000000000 ,1620000000000 ,1616812555370 -1616812555397 ,112.5673829,26.86718287,63.11879349,180.8907379,180.9520528,15.467336,0.13963741,1620000000000 ,1620000000000 ,1620000000000 ,1616812555380 -1616812555405 ,112.5673829,26.86718148,63.12088013,180.8900003,180.9540632,15.463345,0.139609978,1620000000000 ,1620000000000 ,1620000000000 ,1616812555390 -1616812555416 ,112.5673828,26.86718008,63.12298965,180.8856016,180.9491219,15.461095,0.139583768,1620000000000 ,1620000000000 ,1620000000000 ,1616812555400 -1616812555426 ,112.5673828,26.86717868,63.12509155,180.8815035,180.9483121,15.461332,0.139584634,1620000000000 ,1620000000000 ,1620000000000 ,1616812555410 -1616812555437 ,112.5673828,26.86717729,63.1271286,180.8773235,180.9504006,15.462093,0.139592696,1620000000000 ,1620000000000 ,1620000000000 ,1616812555420 -1616812555446 ,112.5673828,26.86717589,63.12910843,180.8737171,180.9529522,15.461995,0.139597575,1620000000000 ,1620000000000 ,1620000000000 ,1616812555430 -1616812555460 ,112.5673828,26.8671745,63.13106537,180.8716407,180.9463588,15.460259,0.139585501,1620000000000 ,1620000000000 ,1620000000000 ,1616812555440 -1616812555466 ,112.5673827,26.8671731,63.13311386,180.8678705,181.2556696,15.4583,0.13963414,1620000000000 ,1620000000000 ,1620000000000 ,1616812555450 -1616812555476 ,112.5673827,26.8671717,63.1352272,180.8652477,181.5714315,15.456747,0.139686634,1620000000000 ,1620000000000 ,1620000000000 ,1616812555460 -1616812555493 ,112.5673826,26.86717031,63.13729095,180.8639909,181.5771912,15.455407,0.139677876,1620000000000 ,1620000000000 ,1620000000000 ,1616812555470 -1616812555505 ,112.5673826,26.86716891,63.13928604,180.8598382,181.5802448,15.454416,0.139672554,1620000000000 ,1620000000000 ,1620000000000 ,1616812555480 -1616812555515 ,112.5673826,26.86716752,63.14120483,180.8569149,181.5797949,15.452023,0.139658241,1620000000000 ,1620000000000 ,1620000000000 ,1616812555490 -1616812555521 ,112.5673825,26.86716612,63.14302063,180.8532812,181.5740718,15.450703,0.139643027,1620000000000 ,1620000000000 ,1620000000000 ,1616812555500 -1616812555532 ,112.5673825,26.86716472,63.14469147,180.8502759,181.5745251,15.449352,0.139631847,1620000000000 ,1620000000000 ,1620000000000 ,1616812555510 -1616812555539 ,112.5673825,26.86716333,63.14619827,180.8462598,181.5837975,15.449532,0.13962854,1620000000000 ,1620000000000 ,1620000000000 ,1616812555520 -1616812555549 ,112.5673824,26.86716193,63.14754105,180.8433911,181.5903015,15.448765,0.139626175,1620000000000 ,1620000000000 ,1620000000000 ,1616812555530 -1616812555557 ,112.5673824,26.86716054,63.14875793,180.839976,181.5921171,15.447344,0.139614856,1620000000000 ,1620000000000 ,1620000000000 ,1616812555540 -1616812555568 ,112.5673823,26.86715914,63.14986038,180.8361238,181.5825005,15.445141,0.139595827,1620000000000 ,1620000000000 ,1620000000000 ,1616812555550 -1616812555577 ,112.5673823,26.86715775,63.15080643,180.8333917,181.5763216,15.443356,0.139577465,1620000000000 ,1620000000000 ,1620000000000 ,1616812555560 -1616812555590 ,112.5673823,26.86715635,63.15155792,180.8313153,181.5758922,15.443548,0.139570842,1620000000000 ,1620000000000 ,1620000000000 ,1616812555570 -1616812555597 ,112.5673822,26.86715496,63.15205765,180.8281734,181.5729657,15.446656,0.139584329,1620000000000 ,1620000000000 ,1620000000000 ,1616812555580 -1616812555610 ,112.5673822,26.86715356,63.15231705,180.8246217,181.5806363,15.446143,0.139584027,1620000000000 ,1620000000000 ,1620000000000 ,1616812555590 -1616812555624 ,112.5673821,26.86715217,63.15235519,180.8224361,181.5658855,15.444703,0.139561828,1620000000000 ,1620000000000 ,1620000000000 ,1616812555600 -1616812555628 ,112.5673821,26.86715077,63.15219879,180.8196493,181.5601752,15.443619,0.139543246,1620000000000 ,1620000000000 ,1620000000000 ,1616812555610 -1616812555638 ,112.5673821,26.86714938,63.15182877,180.8183926,181.5629753,15.442963,0.139529963,1620000000000 ,1620000000000 ,1620000000000 ,1616812555620 -1616812555647 ,112.567382,26.86714798,63.15120316,180.8177642,181.5552087,15.442912,0.139514796,1620000000000 ,1620000000000 ,1620000000000 ,1616812555630 -1616812555659 ,112.567382,26.86714659,63.15032196,180.8155239,181.5560036,15.442474,0.139499592,1620000000000 ,1620000000000 ,1620000000000 ,1616812555640 -1616812555671 ,112.567382,26.86714519,63.1492157,180.8127372,181.5552186,15.444432,0.139500238,1620000000000 ,1620000000000 ,1620000000000 ,1616812555650 -1616812555681 ,112.5673819,26.8671438,63.14795685,180.8106062,181.5616425,15.445604,0.139503474,1620000000000 ,1620000000000 ,1620000000000 ,1616812555660 -1616812555690 ,112.5673819,26.8671424,63.14659882,180.8085571,181.5589126,15.4478,0.13951552,1620000000000 ,1620000000000 ,1620000000000 ,1616812555670 -1616812555699 ,112.5673818,26.86714101,63.14517593,180.805907,181.5651063,15.446812,0.139507721,1620000000000 ,1620000000000 ,1620000000000 ,1616812555680 -1616812555712 ,112.5673818,26.86713961,63.14373398,180.8039126,181.5666126,15.444668,0.139489372,1620000000000 ,1620000000000 ,1620000000000 ,1616812555690 -1616812555720 ,112.5673818,26.86713822,63.14228439,180.8011805,181.5650751,15.442023,0.139462786,1620000000000 ,1620000000000 ,1620000000000 ,1616812555700 -1616812555732 ,112.5673817,26.86713683,63.14080048,180.801645,181.5626194,15.44059,0.139439628,1620000000000 ,1620000000000 ,1620000000000 ,1616812555710 -1616812555739 ,112.5673817,26.86713543,63.13927078,180.7985304,181.5622727,15.441533,0.139435904,1620000000000 ,1620000000000 ,1620000000000 ,1616812555720 -1616812555749 ,112.5673817,26.86713404,63.13777161,180.7946235,181.5717628,15.44206,0.139442811,1620000000000 ,1620000000000 ,1620000000000 ,1616812555730 -1616812555759 ,112.5673816,26.86713264,63.13638306,180.7919734,181.556576,15.441493,0.139437161,1620000000000 ,1620000000000 ,1620000000000 ,1616812555740 -1616812555773 ,112.5673816,26.86713125,63.13513565,180.7908806,181.5268412,15.441087,0.139434655,1620000000000 ,1620000000000 ,1620000000000 ,1616812555750 -1616812555779 ,112.5673815,26.86712986,63.13401413,180.7881485,181.5378004,15.436091,0.139396906,1620000000000 ,1620000000000 ,1620000000000 ,1616812555760 -1616812555791 ,112.5673815,26.86712846,63.13302612,180.7871923,181.5343683,15.436354,0.139390259,1620000000000 ,1620000000000 ,1620000000000 ,1616812555770 -1616812555802 ,112.5673815,26.86712707,63.1321907,180.7839958,181.5190125,15.434401,0.139377557,1620000000000 ,1620000000000 ,1620000000000 ,1616812555780 -1616812555809 ,112.5673814,26.86712568,63.13158035,180.7811817,181.5241902,15.432467,0.139365527,1620000000000 ,1620000000000 ,1620000000000 ,1616812555790 -1616812555820 ,112.5673814,26.86712428,63.13121414,180.77763,181.5262742,15.4292145,0.139346387,1620000000000 ,1620000000000 ,1620000000000 ,1616812555800 -1616812555830 ,112.5673814,26.86712289,63.13110733,180.7747067,181.5343643,15.422535,0.139295573,1620000000000 ,1620000000000 ,1620000000000 ,1616812555810 -1616812555840 ,112.5673813,26.8671215,63.13127518,180.7729582,181.5364263,15.420489,0.139270802,1620000000000 ,1620000000000 ,1620000000000 ,1616812555820 -1616812555857 ,112.5673813,26.86712011,63.13169479,180.7724937,181.5215638,15.419586,0.139267857,1620000000000 ,1620000000000 ,1620000000000 ,1616812555830 -1616812555862 ,112.5673812,26.86711872,63.13236618,180.7721112,181.5114776,15.420248,0.139274252,1620000000000 ,1620000000000 ,1620000000000 ,1616812555840 -1616812555875 ,112.5673812,26.86711732,63.13327408,180.7719473,181.5036656,15.418944,0.139268134,1620000000000 ,1620000000000 ,1620000000000 ,1616812555850 -1616812555888 ,112.5673812,26.86711593,63.13438416,180.7695977,181.4992698,15.417703,0.139270039,1620000000000 ,1620000000000 ,1620000000000 ,1616812555860 -1616812555891 ,112.5673811,26.86711454,63.13571167,180.7687234,181.5064983,15.416184,0.139258049,1620000000000 ,1620000000000 ,1620000000000 ,1616812555870 -1616812555901 ,112.5673811,26.86711315,63.13726425,180.7677126,181.5009347,15.415368,0.139252694,1620000000000 ,1620000000000 ,1620000000000 ,1616812555880 -1616812555910 ,112.5673811,26.86711176,63.13905716,180.7665105,181.4929353,15.411622,0.13923455,1620000000000 ,1620000000000 ,1620000000000 ,1616812555890 -1616812555921 ,112.567381,26.86711036,63.14107132,180.7664831,181.4834872,15.408947,0.139217045,1620000000000 ,1620000000000 ,1620000000000 ,1616812555900 -1616812555934 ,112.567381,26.86710897,63.14323044,180.7665105,181.4875342,15.407769,0.139208652,1620000000000 ,1620000000000 ,1620000000000 ,1616812555910 -1616812555941 ,112.567381,26.86710758,63.14547729,180.7672754,181.5008302,15.40897,0.139215613,1620000000000 ,1620000000000 ,1620000000000 ,1616812555920 -1616812555950 ,112.5673809,26.86710619,63.14775085,180.7666744,181.5082588,15.4115,0.139240825,1620000000000 ,1620000000000 ,1620000000000 ,1616812555930 -1616812555963 ,112.5673809,26.8671048,63.15004349,180.7677945,181.5107325,15.412478,0.139259646,1620000000000 ,1620000000000 ,1620000000000 ,1616812555940 -1616812555971 ,112.5673808,26.8671034,63.15234756,180.7679311,181.5133549,15.411717,0.139258971,1620000000000 ,1620000000000 ,1620000000000 ,1616812555950 -1616812555983 ,112.5673808,26.86710201,63.15467453,180.7689967,181.5229862,15.409086,0.139243256,1620000000000 ,1620000000000 ,1620000000000 ,1616812555960 -1616812555994 ,112.5673808,26.86710062,63.15702438,180.7684502,181.5311355,15.405298,0.139216633,1620000000000 ,1620000000000 ,1620000000000 ,1616812555970 -1616812556002 ,112.5673807,26.86709923,63.15939713,180.7677126,181.5351742,15.403638,0.139200143,1620000000000 ,1620000000000 ,1620000000000 ,1616812555980 -1616812556011 ,112.5673807,26.86709784,63.16177368,180.7648439,181.5375341,15.4032545,0.139197492,1620000000000 ,1620000000000 ,1620000000000 ,1616812555990 -1616812556021 ,112.5673807,26.86709645,63.16410065,180.7630954,181.5394727,15.40328,0.139198659,1620000000000 ,1620000000000 ,1620000000000 ,1616812556000 -1616812556032 ,112.5673806,26.86709505,63.16633606,180.7635598,181.5409961,15.404946,0.139211419,1620000000000 ,1620000000000 ,1620000000000 ,1616812556010 -1616812556041 ,112.5673806,26.86709366,63.1684494,180.7628222,181.5449982,15.405754,0.139219903,1620000000000 ,1620000000000 ,1620000000000 ,1616812556020 -1616812556051 ,112.5673805,26.86709227,63.17043304,180.7630407,181.5439754,15.406808,0.13922919,1620000000000 ,1620000000000 ,1620000000000 ,1616812556030 -1616812556062 ,112.5673805,26.86709088,63.17227936,180.7637511,181.5414043,15.404955,0.139216876,1620000000000 ,1620000000000 ,1620000000000 ,1616812556040 -1616812556073 ,112.5673805,26.86708949,63.17398834,180.7645707,181.5397764,15.403133,0.139197489,1620000000000 ,1620000000000 ,1620000000000 ,1616812556050 -1616812556082 ,112.5673804,26.8670881,63.1755867,180.7683956,181.5429303,15.400976,0.139177812,1620000000000 ,1620000000000 ,1620000000000 ,1616812556070 -1616812556092 ,112.5673804,26.86708671,63.17707825,180.7696524,181.5482124,15.400086,0.139160948,1620000000000 ,1620000000000 ,1620000000000 ,1616812556070 -1616812556105 ,112.5673804,26.86708531,63.17842102,180.7709637,181.5488141,15.401238,0.139164421,1620000000000 ,1620000000000 ,1620000000000 ,1616812556080 -1616812556112 ,112.5673803,26.86708392,63.17958069,180.7741876,181.5474535,15.404798,0.139183765,1620000000000 ,1620000000000 ,1620000000000 ,1616812556100 -1616812556126 ,112.5673803,26.86708253,63.18054962,180.7776027,181.5545421,15.407819,0.139208289,1620000000000 ,1620000000000 ,1620000000000 ,1616812556110 -1616812556138 ,112.5673802,26.86708114,63.1813736,180.7824931,181.5533182,15.408918,0.139217504,1620000000000 ,1620000000000 ,1620000000000 ,1616812556120 -1616812556145 ,112.5673802,26.86707836,63.18269348,180.7959349,181.5457349,15.407773,0.278415281,1620000000000 ,1620000000000 ,1620000000000 ,1616812556130 -1616812556155 ,112.5673802,26.86707836,63.18269348,180.7959349,-400,15.407773,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812556140 -1616812556163 ,112.5673801,26.86707557,63.1836319,180.8119449,181.5425652,15.405721,0.278344471,1620000000000 ,1620000000000 ,1620000000000 ,1616812556150 -1616812556173 ,112.5673801,26.86707418,63.18392944,180.8208788,181.5491581,15.407455,0.139174837,1620000000000 ,1620000000000 ,1620000000000 ,1616812556160 -1616812556182 ,112.56738,26.86707279,63.18409348,180.8320256,181.5496761,15.410131,0.13919438,1620000000000 ,1620000000000 ,1620000000000 ,1616812556170 -1616812556192 ,112.56738,26.8670714,63.18420029,180.8416425,181.5511937,15.411091,0.139202599,1620000000000 ,1620000000000 ,1620000000000 ,1616812556180 -1616812556202 ,112.56738,26.8670714,63.18420029,180.8416425,-400,15.411091,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812556180 -1616812556213 ,112.5673799,26.86706862,63.18463898,180.8686355,181.495377,15.403356,0.278228798,1620000000000 ,1620000000000 ,1620000000000 ,1616812556200 -1616812556225 ,112.5673799,26.86706723,63.1853714,180.8789627,181.2493304,15.402255,0.138750318,1620000000000 ,1620000000000 ,1620000000000 ,1616812556210 -1616812556234 ,112.5673798,26.86706584,63.18613052,180.890656,181.2630149,15.401498,0.138740069,1620000000000 ,1620000000000 ,1620000000000 ,1616812556220 -1616812556244 ,112.5673798,26.86706446,63.18699646,180.9002182,181.2690596,15.399332,0.138732018,1620000000000 ,1620000000000 ,1620000000000 ,1616812556230 -1616812556254 ,112.5673798,26.86706307,63.18798447,180.9093161,181.2747324,15.39421,0.138694572,1620000000000 ,1620000000000 ,1620000000000 ,1616812556240 -1616812556265 ,112.5673798,26.86706168,63.18907547,180.9212826,181.2770836,15.38939,0.138650888,1620000000000 ,1620000000000 ,1620000000000 ,1616812556250 -1616812556273 ,112.5673797,26.8670603,63.19026566,180.9350249,181.2945796,15.38578,0.138619078,1620000000000 ,1620000000000 ,1620000000000 ,1616812556260 -1616812556284 ,112.5673797,26.86705891,63.19154358,180.9487399,181.3090329,15.386162,0.138614471,1620000000000 ,1620000000000 ,1620000000000 ,1616812556270 -1616812556295 ,112.5673797,26.86705753,63.19288635,180.9623183,181.3146142,15.388779,0.138636452,1620000000000 ,1620000000000 ,1620000000000 ,1616812556280 -1616812556305 ,112.5673796,26.86705614,63.19424057,180.9731647,181.3213084,15.391035,0.138657331,1620000000000 ,1620000000000 ,1620000000000 ,1616812556290 -1616812556316 ,112.5673796,26.86705475,63.19562912,180.9837378,181.3375663,15.3908,0.138661909,1620000000000 ,1620000000000 ,1620000000000 ,1616812556300 -1616812556325 ,112.5673796,26.86705337,63.19711685,180.9913057,181.3548758,15.387687,0.138646527,1620000000000 ,1620000000000 ,1620000000000 ,1616812556310 -1616812556334 ,112.5673795,26.86705198,63.19873047,181.0010592,181.368139,15.382291,0.13860675,1620000000000 ,1620000000000 ,1620000000000 ,1616812556320 -1616812556344 ,112.5673795,26.8670506,63.2004509,181.0120694,181.3808309,15.380527,0.13858473,1620000000000 ,1620000000000 ,1620000000000 ,1616812556330 -1616812556354 ,112.5673795,26.86704921,63.20222092,181.023189,181.3908339,15.378672,0.138572396,1620000000000 ,1620000000000 ,1620000000000 ,1616812556340 -1616812556363 ,112.5673794,26.86704783,63.20393753,181.0360571,181.4043257,15.380432,0.138579248,1620000000000 ,1620000000000 ,1620000000000 ,1616812556350 -1616812556374 ,112.5673794,26.86704644,63.20556259,181.0461384,181.4214041,15.3836565,0.13860661,1620000000000 ,1620000000000 ,1620000000000 ,1616812556360 -1616812556385 ,112.5673794,26.86704506,63.20711136,181.0552362,181.4337894,15.386346,0.13862784,1620000000000 ,1620000000000 ,1620000000000 ,1616812556370 -1616812556395 ,112.5673793,26.86704367,63.20861053,181.0661099,181.4479107,15.387701,0.138644317,1620000000000 ,1620000000000 ,1620000000000 ,1616812556380 -1616812556405 ,112.5673793,26.86704228,63.21006012,181.0766557,181.4635585,15.38585,0.138628889,1620000000000 ,1620000000000 ,1620000000000 ,1616812556390 -1616812556419 ,112.5673793,26.8670409,63.21146011,181.0879392,181.4830997,15.384507,0.138632148,1620000000000 ,1620000000000 ,1620000000000 ,1616812556400 -1616812556428 ,112.5673792,26.86703951,63.2128067,181.1008346,181.515613,15.383416,0.138593506,1620000000000 ,1620000000000 ,1620000000000 ,1616812556410 -1616812556437 ,112.5673792,26.86703813,63.21414185,181.1119541,181.5329529,15.383591,0.138600838,1620000000000 ,1620000000000 ,1620000000000 ,1616812556420 -1616812556445 ,112.5673791,26.86703674,63.21546555,181.1193854,181.5367286,15.384628,0.138613404,1620000000000 ,1620000000000 ,1620000000000 ,1616812556430 -1616812556457 ,112.5673791,26.86703536,63.21687698,181.1249588,181.5579342,15.384178,0.138619502,1620000000000 ,1620000000000 ,1620000000000 ,1616812556440 -1616812556465 ,112.5673791,26.86703397,63.21811295,181.1314338,181.7117689,15.383343,0.138794933,1620000000000 ,1620000000000 ,1620000000000 ,1616812556450 -1616812556476 ,112.567379,26.86703258,63.21910858,181.1384552,181.8631616,15.385819,0.138995716,1620000000000 ,1620000000000 ,1620000000000 ,1616812556460 -1616812556486 ,112.567379,26.86703119,63.22002792,181.1484,181.8813322,15.3904295,0.139034224,1620000000000 ,1620000000000 ,1620000000000 ,1616812556470 -1616812556496 ,112.5673789,26.8670298,63.22083282,181.1590824,181.8904924,15.393719,0.139066564,1620000000000 ,1620000000000 ,1620000000000 ,1616812556480 -1616812556514 ,112.5673789,26.86702841,63.22160339,181.1689452,181.8966076,15.393465,0.139069448,1620000000000 ,1620000000000 ,1620000000000 ,1616812556490 -1616812556517 ,112.5673788,26.86702702,63.22240448,181.1761306,181.9025335,15.392074,0.139057084,1620000000000 ,1620000000000 ,1620000000000 ,1616812556500 -1616812556527 ,112.5673788,26.86702563,63.22328568,181.1827695,181.9253987,15.388904,0.139039248,1620000000000 ,1620000000000 ,1620000000000 ,1616812556510 -1616812556536 ,112.5673787,26.86702424,63.22423935,181.1898183,181.9499554,15.38889,0.139025598,1620000000000 ,1620000000000 ,1620000000000 ,1616812556520 -1616812556548 ,112.5673787,26.86702285,63.22521591,181.1947906,181.9726029,15.391255,0.139046396,1620000000000 ,1620000000000 ,1620000000000 ,1616812556530 -1616812556561 ,112.5673786,26.86702146,63.22615433,181.2012657,181.9816744,15.394735,0.139074327,1620000000000 ,1620000000000 ,1620000000000 ,1616812556540 -1616812556566 ,112.5673786,26.86702007,63.22702026,181.2062107,181.9850244,15.3982935,0.139105689,1620000000000 ,1620000000000 ,1620000000000 ,1616812556550 -1616812556578 ,112.5673785,26.86701868,63.22787857,181.2109919,181.9955251,15.400526,0.139127317,1620000000000 ,1620000000000 ,1620000000000 ,1616812556560 -1616812556587 ,112.5673785,26.86701729,63.22880936,181.215855,182.010713,15.402172,0.139146801,1620000000000 ,1620000000000 ,1620000000000 ,1616812556570 -1616812556597 ,112.5673784,26.8670159,63.22985077,181.2204995,182.0318593,15.402155,0.139152108,1620000000000 ,1620000000000 ,1620000000000 ,1616812556580 -1616812556607 ,112.5673784,26.86701451,63.23100281,181.2283132,182.0518227,15.399774,0.139142019,1620000000000 ,1620000000000 ,1620000000000 ,1616812556590 -1616812556617 ,112.5673783,26.86701312,63.23225021,181.2318376,182.0598438,15.397609,0.139126107,1620000000000 ,1620000000000 ,1620000000000 ,1616812556600 -1616812556627 ,112.5673783,26.86701173,63.23355103,181.2356352,182.0676889,15.39823,0.139127714,1620000000000 ,1620000000000 ,1620000000000 ,1616812556610 -1616812556636 ,112.5673782,26.86701034,63.23482132,181.2392962,182.0711029,15.399747,0.139137322,1620000000000 ,1620000000000 ,1620000000000 ,1616812556620 -1616812556646 ,112.5673782,26.86700895,63.23603058,181.2432303,182.0829373,15.403578,0.139169624,1620000000000 ,1620000000000 ,1620000000000 ,1616812556630 -1616812556658 ,112.5673781,26.86700756,63.23722839,181.2435309,182.0959269,15.40407,0.139181301,1620000000000 ,1620000000000 ,1620000000000 ,1616812556640 -1616812556670 ,112.5673781,26.86700616,63.23847198,181.2456892,182.1068622,15.404267,0.139188719,1620000000000 ,1620000000000 ,1620000000000 ,1616812556650 -1616812556678 ,112.567378,26.86700477,63.23978043,181.2463722,182.1107797,15.405356,0.13919635,1620000000000 ,1620000000000 ,1620000000000 ,1616812556660 -1616812556693 ,112.567378,26.86700338,63.24111176,181.2474104,182.1075098,15.406934,0.139213676,1620000000000 ,1620000000000 ,1620000000000 ,1616812556670 -1616812556699 ,112.5673779,26.86700199,63.24242783,181.2466181,182.1136026,15.407033,0.139217941,1620000000000 ,1620000000000 ,1620000000000 ,1616812556680 -1616812556707 ,112.5673779,26.8670006,63.24371338,181.2466454,182.1153292,15.408669,0.139232105,1620000000000 ,1620000000000 ,1620000000000 ,1616812556690 -1616812556721 ,112.5673778,26.86699921,63.24500275,181.2455253,182.120522,15.407852,0.139232577,1620000000000 ,1620000000000 ,1620000000000 ,1616812556700 -1616812556734 ,112.5673778,26.86699782,63.24628448,181.2458258,182.1294247,15.409188,0.139238305,1620000000000 ,1620000000000 ,1620000000000 ,1616812556710 -1616812556745 ,112.5673777,26.86699643,63.24750137,181.2468913,182.1254592,15.410948,0.139255575,1620000000000 ,1620000000000 ,1620000000000 ,1616812556720 -1616812556752 ,112.5673777,26.86699503,63.24863052,181.2458531,182.1233565,15.412228,0.139264497,1620000000000 ,1620000000000 ,1620000000000 ,1616812556730 -1616812556768 ,112.5673776,26.86699364,63.24967575,181.2432303,182.1169377,15.413996,0.139278625,1620000000000 ,1620000000000 ,1620000000000 ,1616812556740 -1616812556770 ,112.5673776,26.86699225,63.25059891,181.2398699,182.1177607,15.419146,0.139304743,1620000000000 ,1620000000000 ,1620000000000 ,1616812556750 -1616812556780 ,112.5673775,26.86699086,63.25134277,181.235963,182.1196022,15.420845,0.139328432,1620000000000 ,1620000000000 ,1620000000000 ,1616812556760 -1616812556790 ,112.5673775,26.86698946,63.25188065,181.2325753,182.1239411,15.424882,0.139357632,1620000000000 ,1620000000000 ,1620000000000 ,1616812556770 -1616812556801 ,112.5673774,26.86698807,63.25232315,181.2273023,182.1252756,15.427801,0.139377042,1620000000000 ,1620000000000 ,1620000000000 ,1616812556780 -1616812556811 ,112.5673774,26.86698668,63.2527504,181.2205541,182.09884,15.42911,0.139387219,1620000000000 ,1620000000000 ,1620000000000 ,1616812556790 -1616812556821 ,112.5673773,26.86698529,63.25321579,181.2148168,182.0893274,15.429572,0.139407752,1620000000000 ,1620000000000 ,1620000000000 ,1616812556800 -1616812556832 ,112.5673773,26.86698389,63.25372314,181.2107186,182.0957093,15.429695,0.139405708,1620000000000 ,1620000000000 ,1620000000000 ,1616812556810 -1616812556841 ,112.5673772,26.8669825,63.25422668,181.2069757,182.0928669,15.430823,0.139406345,1620000000000 ,1620000000000 ,1620000000000 ,1616812556820 -1616812556851 ,112.5673772,26.86698111,63.25470352,181.2032874,182.0817425,15.432164,0.139419873,1620000000000 ,1620000000000 ,1620000000000 ,1616812556830 -1616812556864 ,112.5673771,26.86697971,63.25512695,181.1997357,182.069915,15.434417,0.139438685,1620000000000 ,1620000000000 ,1620000000000 ,1616812556840 -1616812556872 ,112.5673771,26.86697832,63.25552368,181.1976047,182.06331,15.436568,0.139456091,1620000000000 ,1620000000000 ,1620000000000 ,1616812556850 -1616812556886 ,112.567377,26.86697693,63.25593185,181.1934793,182.0548379,15.437988,0.13946906,1620000000000 ,1620000000000 ,1620000000000 ,1616812556860 -1616812556891 ,112.567377,26.86697553,63.2563858,181.189709,182.0490326,15.43899,0.139479935,1620000000000 ,1620000000000 ,1620000000000 ,1616812556870 -1616812556908 ,112.5673769,26.86697414,63.25689697,181.1877146,182.0483629,15.439678,0.139489138,1620000000000 ,1620000000000 ,1620000000000 ,1616812556880 -1616812556912 ,112.5673769,26.86697274,63.25743866,181.1847366,182.0450008,15.441065,0.139499577,1620000000000 ,1620000000000 ,1620000000000 ,1616812556890 -1616812556922 ,112.5673768,26.86697135,63.25796509,181.1819226,182.0322292,15.443638,0.139519352,1620000000000 ,1620000000000 ,1620000000000 ,1616812556900 -1616812556933 ,112.5673768,26.86696995,63.25844574,181.1790539,182.0236913,15.445916,0.139538101,1620000000000 ,1620000000000 ,1620000000000 ,1616812556910 -1616812556943 ,112.5673767,26.86696856,63.25886154,181.1771961,182.0196657,15.448747,0.139560463,1620000000000 ,1620000000000 ,1620000000000 ,1616812556920 -1616812556953 ,112.5673767,26.86696716,63.2592392,181.1760213,182.0184206,15.451092,0.139581397,1620000000000 ,1620000000000 ,1620000000000 ,1616812556930 -1616812556963 ,112.5673766,26.86696577,63.25964737,181.1736444,182.0170438,15.453173,0.139598223,1620000000000 ,1620000000000 ,1620000000000 ,1616812556950 -1616812556973 ,112.5673766,26.86696437,63.26013565,181.17165,182.0085669,15.456673,0.139631661,1620000000000 ,1620000000000 ,1620000000000 ,1616812556960 -1616812556983 ,112.5673765,26.86696298,63.26068878,181.1688906,182.0018934,15.457809,0.139650145,1620000000000 ,1620000000000 ,1620000000000 ,1616812556970 -1616812556993 ,112.5673765,26.86696158,63.26123047,181.1665683,181.9915018,15.458492,0.139655141,1620000000000 ,1620000000000 ,1620000000000 ,1616812556980 -1616812557003 ,112.5673764,26.86696019,63.26172638,181.1639728,181.9907353,15.459816,0.139660502,1620000000000 ,1620000000000 ,1620000000000 ,1616812556980 -1616812557014 ,112.5673764,26.86695879,63.26221085,181.1606943,182.0009807,15.461946,0.139679672,1620000000000 ,1620000000000 ,1620000000000 ,1616812557000 -1616812557025 ,112.5673763,26.866956,63.26332855,181.1552302,181.9905077,15.464228,0.279415925,1620000000000 ,1620000000000 ,1620000000000 ,1616812557010 -1616812557033 ,112.5673763,26.866956,63.26332855,181.1552302,-400,15.464228,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812557020 -1616812557043 ,112.5673762,26.86695321,63.26477432,181.1500119,181.993189,15.467323,0.27946733,1620000000000 ,1620000000000 ,1620000000000 ,1616812557030 -1616812557053 ,112.5673761,26.86695181,63.26557922,181.1472252,181.9966075,15.467833,0.139747284,1620000000000 ,1620000000000 ,1620000000000 ,1616812557040 -1616812557065 ,112.5673761,26.86695041,63.26636887,181.1447937,181.9991953,15.469725,0.139763874,1620000000000 ,1620000000000 ,1620000000000 ,1616812557050 -1616812557073 ,112.567376,26.86694902,63.26711273,181.1416518,182.001401,15.47303,0.139786338,1620000000000 ,1620000000000 ,1620000000000 ,1616812557060 -1616812557090 ,112.567376,26.86694762,63.26780701,181.138947,182.0038625,15.477053,0.139820953,1620000000000 ,1620000000000 ,1620000000000 ,1616812557070 -1616812557094 ,112.5673759,26.86694622,63.26847839,181.1374444,182.0018074,15.480242,0.139851459,1620000000000 ,1620000000000 ,1620000000000 ,1616812557080 -1616812557108 ,112.5673759,26.86694482,63.26918793,181.1344937,181.9931226,15.480291,0.139857835,1620000000000 ,1620000000000 ,1620000000000 ,1616812557090 -1616812557122 ,112.5673758,26.86694342,63.2700119,181.1317343,181.9896923,15.479074,0.139856917,1620000000000 ,1620000000000 ,1620000000000 ,1616812557100 -1616812557132 ,112.5673758,26.86694203,63.27091217,181.1281553,181.9843914,15.4794445,0.139855352,1620000000000 ,1620000000000 ,1620000000000 ,1616812557110 -1616812557143 ,112.5673758,26.86694063,63.27170944,181.1261063,181.9666364,15.484236,0.139879402,1620000000000 ,1620000000000 ,1620000000000 ,1616812557120 -1616812557147 ,112.5673757,26.86693923,63.27229309,181.1258877,181.9806151,15.490004,0.139929299,1620000000000 ,1620000000000 ,1620000000000 ,1616812557130 -1616812557153 ,112.5673757,26.86693783,63.27269745,181.1248495,181.9924858,15.496417,0.13997531,1620000000000 ,1620000000000 ,1620000000000 ,1616812557140 -1616812557168 ,112.5673756,26.86693643,63.27308273,181.1211339,181.9709051,15.499479,0.140010468,1620000000000 ,1620000000000 ,1620000000000 ,1616812557150 -1616812557176 ,112.5673756,26.86693503,63.27357101,181.1194673,181.9672539,15.499782,0.140019403,1620000000000 ,1620000000000 ,1620000000000 ,1616812557160 -1616812557185 ,112.5673755,26.86693363,63.27419281,181.1185931,181.9747901,15.498403,0.140016921,1620000000000 ,1620000000000 ,1620000000000 ,1616812557170 -1616812557196 ,112.5673755,26.86693223,63.2748642,181.1184291,181.9870698,15.495409,0.139990855,1620000000000 ,1620000000000 ,1620000000000 ,1616812557180 -1616812557204 ,112.5673755,26.86693223,63.2748642,181.1184291,-400,15.495409,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812557190 -1616812557215 ,112.5673754,26.86692944,63.27608871,181.1127737,181.8620512,15.495878,0.279909652,1620000000000 ,1620000000000 ,1620000000000 ,1616812557200 -1616812557225 ,112.5673753,26.86692804,63.27639771,181.1118995,181.3152939,15.502937,0.139742709,1620000000000 ,1620000000000 ,1620000000000 ,1616812557210 -1616812557234 ,112.5673753,26.86692664,63.27672958,181.1118448,181.3125863,15.504416,0.13977365,1620000000000 ,1620000000000 ,1620000000000 ,1616812557220 -1616812557244 ,112.5673753,26.86692525,63.27721405,181.1106427,181.30523,15.503541,0.139772838,1620000000000 ,1620000000000 ,1620000000000 ,1616812557230 -1616812557256 ,112.5673752,26.86692385,63.27789307,181.1117902,181.3028771,15.503408,0.139770342,1620000000000 ,1620000000000 ,1620000000000 ,1616812557240 -1616812557265 ,112.5673752,26.86692245,63.27864838,181.1124732,181.3073658,15.505887,0.139787697,1620000000000 ,1620000000000 ,1620000000000 ,1616812557250 -1616812557287 ,112.5673752,26.86692105,63.27941132,181.1136207,181.3137389,15.509339,0.139816723,1620000000000 ,1620000000000 ,1620000000000 ,1616812557260 -1616812557291 ,112.5673751,26.86691965,63.28018188,181.1150687,181.311986,15.512383,0.139845789,1620000000000 ,1620000000000 ,1620000000000 ,1616812557270 -1616812557295 ,112.5673751,26.86691826,63.28102112,181.1184838,181.3102138,15.5143175,0.139867603,1620000000000 ,1620000000000 ,1620000000000 ,1616812557280 -1616812557306 ,112.5673751,26.86691686,63.28197479,181.1216803,181.3174285,15.517774,0.139898801,1620000000000 ,1620000000000 ,1620000000000 ,1616812557290 -1616812557316 ,112.5673751,26.86691546,63.2830658,181.1243031,181.3242118,15.51983,0.13992618,1620000000000 ,1620000000000 ,1620000000000 ,1616812557300 -1616812557327 ,112.567375,26.86691406,63.28425217,181.1264614,181.3283711,15.519361,0.139930346,1620000000000 ,1620000000000 ,1620000000000 ,1616812557310 -1616812557335 ,112.567375,26.86691266,63.2854538,181.1279914,181.3210197,15.518993,0.139927974,1620000000000 ,1620000000000 ,1620000000000 ,1616812557320 -1616812557346 ,112.567375,26.86691126,63.2866478,181.1308874,181.3223972,15.520235,0.139934584,1620000000000 ,1620000000000 ,1620000000000 ,1616812557330 -1616812557356 ,112.5673749,26.86690986,63.28785324,181.1330731,181.3299478,15.52285,0.139958448,1620000000000 ,1620000000000 ,1620000000000 ,1616812557340 -1616812557366 ,112.5673749,26.86690846,63.28911972,181.135368,181.3242075,15.524892,0.139981424,1620000000000 ,1620000000000 ,1620000000000 ,1616812557350 -1616812557376 ,112.5673749,26.86690706,63.29047012,181.1399852,181.3093639,15.525839,0.139997304,1620000000000 ,1620000000000 ,1620000000000 ,1616812557360 -1616812557386 ,112.5673748,26.86690566,63.29191971,181.145422,181.3095505,15.527603,0.140011684,1620000000000 ,1620000000000 ,1620000000000 ,1616812557370 -1616812557395 ,112.5673748,26.86690426,63.29345322,181.1532904,181.3111628,15.530217,0.140041134,1620000000000 ,1620000000000 ,1620000000000 ,1616812557380 -1616812557406 ,112.5673748,26.86690286,63.29498291,181.1609402,181.3142079,15.531588,0.140058487,1620000000000 ,1620000000000 ,1620000000000 ,1616812557390 -1616812557416 ,112.5673747,26.86690146,63.29646301,181.1684261,181.3294493,15.534559,0.140079402,1620000000000 ,1620000000000 ,1620000000000 ,1616812557400 -1616812557427 ,112.5673747,26.86690006,63.29785919,181.1767316,181.3365576,15.536591,0.140100607,1620000000000 ,1620000000000 ,1620000000000 ,1616812557410 -1616812557438 ,112.5673747,26.86689866,63.29916,181.1836165,181.3386554,15.538089,0.140115353,1620000000000 ,1620000000000 ,1620000000000 ,1616812557420 -1616812557446 ,112.5673746,26.86689726,63.30036545,181.1899276,181.3460685,15.540287,0.140130457,1620000000000 ,1620000000000 ,1620000000000 ,1616812557430 -1616812557458 ,112.5673746,26.86689586,63.30148697,181.1968397,181.3546658,15.54272,0.140146559,1620000000000 ,1620000000000 ,1620000000000 ,1616812557440 -1616812557467 ,112.5673746,26.86689446,63.30262375,181.2036972,181.6079306,15.544856,0.140302917,1620000000000 ,1620000000000 ,1620000000000 ,1616812557450 -1616812557479 ,112.5673745,26.86689305,63.30369568,181.210664,181.8602977,15.552237,0.140484078,1620000000000 ,1620000000000 ,1620000000000 ,1616812557460 -1616812557487 ,112.5673745,26.86689165,63.30453873,181.2200077,181.8589024,15.555041,0.140516897,1620000000000 ,1620000000000 ,1620000000000 ,1616812557470 -1616812557496 ,112.5673744,26.86689024,63.30509567,181.231018,181.8797294,15.561041,0.140558631,1620000000000 ,1620000000000 ,1620000000000 ,1616812557480 -1616812557507 ,112.5673744,26.86688884,63.30553436,181.2393235,181.8980782,15.568713,0.140609033,1620000000000 ,1620000000000 ,1620000000000 ,1616812557490 -1616812557517 ,112.5673743,26.86688743,63.30595398,181.2425747,181.8777559,15.571089,0.140648014,1620000000000 ,1620000000000 ,1620000000000 ,1616812557500 -1616812557532 ,112.5673743,26.86688603,63.30648804,181.2462903,181.8889377,15.569103,0.140647802,1620000000000 ,1620000000000 ,1620000000000 ,1616812557510 -1616812557542 ,112.5673742,26.86688462,63.30711746,181.250607,181.9230528,15.566654,0.140625935,1620000000000 ,1620000000000 ,1620000000000 ,1616812557520 -1616812557549 ,112.5673742,26.86688322,63.30770111,181.2564809,181.9371689,15.569852,0.140634618,1620000000000 ,1620000000000 ,1620000000000 ,1616812557530 -1616812557558 ,112.5673741,26.86688181,63.30825424,181.2617265,181.9538931,15.576243,0.140687977,1620000000000 ,1620000000000 ,1620000000000 ,1616812557540 -1616812557570 ,112.5673741,26.8668804,63.30878067,181.2676824,181.9556832,15.583798,0.140753046,1620000000000 ,1620000000000 ,1620000000000 ,1616812557550 -1616812557578 ,112.567374,26.866879,63.30932617,181.2701413,181.9582083,15.586863,0.140792244,1620000000000 ,1620000000000 ,1620000000000 ,1616812557560 -1616812557590 ,112.567374,26.86687759,63.30993652,181.2735564,181.9621044,15.585015,0.140787096,1620000000000 ,1620000000000 ,1620000000000 ,1616812557570 -1616812557598 ,112.5673739,26.86687618,63.31064606,181.2758513,181.9904677,15.58249,0.140769264,1620000000000 ,1620000000000 ,1620000000000 ,1616812557580 -1616812557610 ,112.5673739,26.86687478,63.31147766,181.2781463,182.0176398,15.583404,0.140775898,1620000000000 ,1620000000000 ,1620000000000 ,1616812557590 -1616812557620 ,112.5673738,26.86687337,63.31238556,181.2784195,182.0219275,15.586438,0.140797223,1620000000000 ,1620000000000 ,1620000000000 ,1616812557600 -1616812557633 ,112.5673738,26.86687196,63.31335831,181.27872,182.0229782,15.588493,0.140820946,1620000000000 ,1620000000000 ,1620000000000 ,1616812557610 -1616812557639 ,112.5673737,26.86687055,63.3143158,181.2781463,182.0217142,15.591194,0.140844377,1620000000000 ,1620000000000 ,1620000000000 ,1616812557620 -1616812557649 ,112.5673737,26.86686915,63.31522751,181.2817253,182.0433147,15.5952215,0.140878532,1620000000000 ,1620000000000 ,1620000000000 ,1616812557630 -1616812557659 ,112.5673736,26.86686774,63.31612396,181.2815614,182.0664229,15.601517,0.140931199,1620000000000 ,1620000000000 ,1620000000000 ,1616812557640 -1616812557669 ,112.5673736,26.86686633,63.31704712,181.2811242,182.0675342,15.60753,0.140989643,1620000000000 ,1620000000000 ,1620000000000 ,1616812557650 -1616812557682 ,112.5673735,26.86686492,63.31801224,181.2772993,182.0623038,15.606569,0.141002833,1620000000000 ,1620000000000 ,1620000000000 ,1616812557660 -1616812557688 ,112.5673735,26.86686351,63.31895828,181.2753322,182.050822,15.603124,0.140969745,1620000000000 ,1620000000000 ,1620000000000 ,1616812557670 -1616812557699 ,112.5673734,26.8668621,63.31989288,181.2739389,182.0563767,15.601468,0.140948043,1620000000000 ,1620000000000 ,1620000000000 ,1616812557680 -1616812557713 ,112.5673734,26.86686069,63.32085037,181.2750044,182.0628859,15.605016,0.1409736,1620000000000 ,1620000000000 ,1620000000000 ,1616812557690 -1616812557724 ,112.5673733,26.86685928,63.32185745,181.2760972,182.0477099,15.609913,0.14101837,1620000000000 ,1620000000000 ,1620000000000 ,1616812557700 -1616812557734 ,112.5673733,26.86685787,63.32284927,181.2768076,182.0311096,15.61568,0.141063097,1620000000000 ,1620000000000 ,1620000000000 ,1616812557710 -1616812557741 ,112.5673732,26.86685646,63.32377625,181.2790205,182.0375139,15.622899,0.141120722,1620000000000 ,1620000000000 ,1620000000000 ,1616812557720 -1616812557749 ,112.5673732,26.86685505,63.32463837,181.280933,182.0533426,15.627922,0.141177527,1620000000000 ,1620000000000 ,1620000000000 ,1616812557730 -1616812557761 ,112.5673731,26.86685364,63.32549286,181.2825722,182.0630487,15.627667,0.141190016,1620000000000 ,1620000000000 ,1620000000000 ,1616812557740 -1616812557770 ,112.5673731,26.86685223,63.32640076,181.2841295,182.0637977,15.626011,0.141173643,1620000000000 ,1620000000000 ,1620000000000 ,1616812557750 -1616812557780 ,112.567373,26.86685082,63.32736969,181.2856322,182.0617676,15.625964,0.141174222,1620000000000 ,1620000000000 ,1620000000000 ,1616812557760 -1616812557792 ,112.567373,26.86684941,63.32833099,181.2877359,182.0728159,15.628284,0.141189321,1620000000000 ,1620000000000 ,1620000000000 ,1616812557770 -1616812557800 ,112.5673729,26.866848,63.32922363,181.2886921,182.0856674,15.631744,0.141214221,1620000000000 ,1620000000000 ,1620000000000 ,1616812557780 -1616812557810 ,112.5673729,26.86684659,63.33005524,181.2873807,182.1023471,15.63727,0.141258647,1620000000000 ,1620000000000 ,1620000000000 ,1616812557790 -1616812557821 ,112.5673728,26.86684517,63.33084106,181.2877905,182.0968781,15.642612,0.141305911,1620000000000 ,1620000000000 ,1620000000000 ,1616812557800 -1616812557830 ,112.5673728,26.86684376,63.33154297,181.286807,182.0756054,15.646389,0.141335676,1620000000000 ,1620000000000 ,1620000000000 ,1616812557810 -1616812557840 ,112.5673727,26.86684235,63.33209991,181.2854956,182.077503,15.652006,0.141386728,1620000000000 ,1620000000000 ,1620000000000 ,1616812557820 -1616812557852 ,112.5673727,26.86684094,63.33255005,181.2883369,182.1079991,15.655459,0.141407627,1620000000000 ,1620000000000 ,1620000000000 ,1616812557830 -1616812557861 ,112.5673726,26.86683952,63.33301163,181.2898942,182.0876203,15.662521,0.141465496,1620000000000 ,1620000000000 ,1620000000000 ,1616812557840 -1616812557873 ,112.5673726,26.86683811,63.33361816,181.2863971,182.0563718,15.663737,0.141495898,1620000000000 ,1620000000000 ,1620000000000 ,1616812557850 -1616812557887 ,112.5673725,26.86683669,63.33443451,181.2840476,182.0632338,15.661678,0.141489621,1620000000000 ,1620000000000 ,1620000000000 ,1616812557860 -1616812557892 ,112.5673725,26.86683528,63.33535385,181.2803593,182.0836987,15.656737,0.141454632,1620000000000 ,1620000000000 ,1620000000000 ,1616812557870 -1616812557902 ,112.5673724,26.86683387,63.33629608,181.2774633,182.0954415,15.658447,0.141453617,1620000000000 ,1620000000000 ,1620000000000 ,1616812557880 -1616812557912 ,112.5673724,26.86683245,63.33715057,181.2790752,182.0950987,15.667461,0.141510957,1620000000000 ,1620000000000 ,1620000000000 ,1616812557890 -1616812557925 ,112.5673723,26.86683104,63.33787537,181.2803866,182.0945646,15.678944,0.141609468,1620000000000 ,1620000000000 ,1620000000000 ,1616812557900 -1616812557932 ,112.5673723,26.86682962,63.33854294,181.2797855,182.0765023,15.682468,0.14165991,1620000000000 ,1620000000000 ,1620000000000 ,1616812557910 -1616812557946 ,112.5673722,26.86682821,63.33928299,181.2778184,182.0620252,15.680096,0.141654108,1620000000000 ,1620000000000 ,1620000000000 ,1616812557920 -1616812557959 ,112.5673722,26.86682679,63.34024429,181.2757967,182.0750681,15.676556,0.141626068,1620000000000 ,1620000000000 ,1620000000000 ,1616812557930 -1616812557962 ,112.5673721,26.86682538,63.34135437,181.2735837,182.0872184,15.675967,0.141616141,1620000000000 ,1620000000000 ,1620000000000 ,1616812557940 -1616812557973 ,112.5673721,26.86682396,63.34254074,181.272163,182.0885246,15.680511,0.141648653,1620000000000 ,1620000000000 ,1620000000000 ,1616812557950 -1616812557983 ,112.567372,26.86682254,63.34371948,181.2704965,182.0762061,15.686617,0.141705494,1620000000000 ,1620000000000 ,1620000000000 ,1616812557970 -1616812558003 ,112.567372,26.86682113,63.34489441,181.2697861,182.056608,15.690661,0.14174699,1620000000000 ,1620000000000 ,1620000000000 ,1616812557970 -1616812558005 ,112.5673719,26.86681971,63.34609985,181.2694583,182.0523684,15.69249,0.141769443,1620000000000 ,1620000000000 ,1620000000000 ,1616812557980 -1616812558012 ,112.5673719,26.86681829,63.34738541,181.2695949,182.0582074,15.694722,0.141790607,1620000000000 ,1620000000000 ,1620000000000 ,1616812558000 -1616812558024 ,112.5673718,26.86681546,63.35007095,181.2696768,182.0598605,15.699591,0.283653667,1620000000000 ,1620000000000 ,1620000000000 ,1616812558010 -1616812558032 ,112.5673717,26.86681404,63.35137177,181.2710429,182.0579522,15.701215,0.141850095,1620000000000 ,1620000000000 ,1620000000000 ,1616812558020 -1616812558043 ,112.5673717,26.86681404,63.35137177,181.2710429,-400,15.701215,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812558030 -1616812558055 ,112.5673717,26.86681262,63.35260773,181.2714254,182.0539013,15.703938,0.141876887,1620000000000 ,1620000000000 ,1620000000000 ,1616812558040 -1616812558064 ,112.5673716,26.86680979,63.35490417,181.2729827,182.050457,15.711999,0.283845224,1620000000000 ,1620000000000 ,1620000000000 ,1616812558050 -1616812558075 ,112.5673715,26.86680837,63.35601425,181.2721357,182.0636246,15.714813,0.14197055,1620000000000 ,1620000000000 ,1620000000000 ,1616812558060 -1616812558085 ,112.5673715,26.86680837,63.35601425,181.2721357,-400,15.714813,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812558070 -1616812558094 ,112.5673714,26.86680553,63.35820389,181.2725455,182.0727793,15.72065,0.284025882,1620000000000 ,1620000000000 ,1620000000000 ,1616812558080 -1616812558103 ,112.5673713,26.86680411,63.35924149,181.2720264,182.0777471,15.723144,0.142047667,1620000000000 ,1620000000000 ,1620000000000 ,1616812558090 -1616812558115 ,112.5673713,26.86680269,63.36021805,181.2724636,182.0737057,15.726391,0.142074532,1620000000000 ,1620000000000 ,1620000000000 ,1616812558100 -1616812558125 ,112.5673712,26.86680127,63.36113739,181.2726002,182.0778843,15.730184,0.142104688,1620000000000 ,1620000000000 ,1620000000000 ,1616812558110 -1616812558134 ,112.5673712,26.86679985,63.3620224,181.2726821,182.0797528,15.731449,0.142121847,1620000000000 ,1620000000000 ,1620000000000 ,1616812558120 -1616812558148 ,112.5673711,26.86679843,63.36293411,181.2733378,182.0834922,15.733055,0.142135653,1620000000000 ,1620000000000 ,1620000000000 ,1616812558130 -1616812558154 ,112.5673711,26.86679701,63.36388016,181.2723816,182.0839697,15.73622,0.142159915,1620000000000 ,1620000000000 ,1620000000000 ,1616812558140 -1616812558164 ,112.567371,26.86679559,63.3647995,181.2732832,182.0817996,15.739427,0.142188529,1620000000000 ,1620000000000 ,1620000000000 ,1616812558150 -1616812558174 ,112.567371,26.86679417,63.36566162,181.2712614,182.0902267,15.743584,0.142221273,1620000000000 ,1620000000000 ,1620000000000 ,1616812558160 -1616812558183 ,112.5673709,26.86679275,63.36648941,181.2690758,182.0895804,15.748001,0.142261349,1620000000000 ,1620000000000 ,1620000000000 ,1616812558170 -1616812558199 ,112.5673709,26.86679132,63.36729813,181.2680922,182.0911556,15.751735,0.142295021,1620000000000 ,1620000000000 ,1620000000000 ,1616812558180 -1616812558205 ,112.5673709,26.86679132,63.36729813,181.2680922,-400,15.751735,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812558180 -1616812558214 ,112.5673708,26.8667899,63.36807632,181.2672453,182.0882502,15.754499,0.142320258,1620000000000 ,1620000000000 ,1620000000000 ,1616812558200 -1616812558226 ,112.5673707,26.86678706,63.3687439,181.2668355,181.8954473,15.752313,0.284408688,1620000000000 ,1620000000000 ,1620000000000 ,1616812558210 -1616812558236 ,112.5673707,26.86678564,63.36882019,181.2657153,181.8197399,15.755244,0.142170507,1620000000000 ,1620000000000 ,1620000000000 ,1616812558220 -1616812558244 ,112.5673706,26.86678422,63.36889267,181.2645952,181.8222231,15.75734,0.142188935,1620000000000 ,1620000000000 ,1620000000000 ,1616812558230 -1616812558254 ,112.5673706,26.86678279,63.36901855,181.2623549,181.8225159,15.759941,0.142211319,1620000000000 ,1620000000000 ,1620000000000 ,1616812558240 -1616812558267 ,112.5673706,26.86678137,63.36917877,181.2606883,181.8198689,15.762918,0.142238069,1620000000000 ,1620000000000 ,1620000000000 ,1616812558250 -1616812558276 ,112.5673705,26.86677995,63.36935806,181.2585027,181.8171672,15.766034,0.142266585,1620000000000 ,1620000000000 ,1620000000000 ,1616812558260 -1616812558285 ,112.5673705,26.86677853,63.3695755,181.256399,181.8255173,15.768438,0.14229195,1620000000000 ,1620000000000 ,1620000000000 ,1616812558270 -1616812558296 ,112.5673704,26.86677711,63.36987686,181.2532024,181.8275835,15.769324,0.142307051,1620000000000 ,1620000000000 ,1620000000000 ,1616812558280 -1616812558306 ,112.5673704,26.86677568,63.37028503,181.2520003,181.8268372,15.770285,0.14231475,1620000000000 ,1620000000000 ,1620000000000 ,1616812558290 -1616812558315 ,112.5673703,26.86677426,63.37076187,181.250607,181.8239882,15.771351,0.142327614,1620000000000 ,1620000000000 ,1620000000000 ,1616812558300 -1616812558325 ,112.5673703,26.86677284,63.37125015,181.2481481,181.8207408,15.773829,0.142339767,1620000000000 ,1620000000000 ,1620000000000 ,1616812558310 -1616812558334 ,112.5673702,26.86677142,63.37177658,181.247547,181.8268659,15.772793,0.142348844,1620000000000 ,1620000000000 ,1620000000000 ,1616812558320 -1616812558345 ,112.5673702,26.86676999,63.37230301,181.2479295,181.8225735,15.779218,0.142387296,1620000000000 ,1620000000000 ,1620000000000 ,1616812558330 -1616812558358 ,112.5673701,26.86676857,63.37276459,181.2456346,181.8042035,15.782588,0.142410021,1620000000000 ,1620000000000 ,1620000000000 ,1616812558340 -1616812558366 ,112.5673701,26.86676715,63.37315369,181.2436948,181.8056229,15.785721,0.142445003,1620000000000 ,1620000000000 ,1620000000000 ,1616812558350 -1616812558376 ,112.5673701,26.86676572,63.37351227,181.2426566,181.8055474,15.787685,0.142468596,1620000000000 ,1620000000000 ,1620000000000 ,1616812558360 -1616812558386 ,112.56737,26.8667643,63.37389374,181.2394601,181.7952974,15.792136,0.14249491,1620000000000 ,1620000000000 ,1620000000000 ,1616812558370 -1616812558399 ,112.56737,26.86676287,63.37434006,181.2363455,181.7844716,15.794151,0.142514605,1620000000000 ,1620000000000 ,1620000000000 ,1616812558380 -1616812558412 ,112.5673699,26.86676145,63.37482071,181.2358811,181.7784799,15.79489,0.142530968,1620000000000 ,1620000000000 ,1620000000000 ,1616812558390 -1616812558416 ,112.5673699,26.86676002,63.37531662,181.2352254,181.7746411,15.797165,0.142546279,1620000000000 ,1620000000000 ,1620000000000 ,1616812558400 -1616812558428 ,112.5673698,26.8667586,63.37581635,181.2344331,181.7724893,15.8026285,0.142586954,1620000000000 ,1620000000000 ,1620000000000 ,1616812558410 -1616812558438 ,112.5673698,26.86675717,63.37633896,181.23375,181.7723864,15.807702,0.142627675,1620000000000 ,1620000000000 ,1620000000000 ,1616812558420 -1616812558446 ,112.5673697,26.86675575,63.37693024,181.2335588,181.7667794,15.809873,0.14266026,1620000000000 ,1620000000000 ,1620000000000 ,1616812558430 -1616812558455 ,112.5673697,26.86675432,63.37767029,181.2329031,181.7606136,15.80882,0.142662672,1620000000000 ,1620000000000 ,1620000000000 ,1616812558440 -1616812558466 ,112.5673697,26.86675289,63.37874603,181.2324387,181.8789162,15.808709,0.142733512,1620000000000 ,1620000000000 ,1620000000000 ,1616812558450 -1616812558478 ,112.5673696,26.86675147,63.38011551,181.232466,181.9996395,15.810741,0.142818581,1620000000000 ,1620000000000 ,1620000000000 ,1616812558460 -1616812558486 ,112.5673696,26.86675004,63.38156891,181.2307174,182.0064088,15.814002,0.142848637,1620000000000 ,1620000000000 ,1620000000000 ,1616812558470 -1616812558496 ,112.5673695,26.86674861,63.38311005,181.2268379,182.0032332,15.816484,0.142883024,1620000000000 ,1620000000000 ,1620000000000 ,1616812558480 -1616812558507 ,112.5673695,26.86674718,63.38470459,181.2256631,181.9882228,15.815251,0.142875569,1620000000000 ,1620000000000 ,1620000000000 ,1616812558490 -1616812558516 ,112.5673694,26.86674576,63.38629532,181.2248708,181.981006,15.815685,0.142875158,1620000000000 ,1620000000000 ,1620000000000 ,1616812558500 -1616812558526 ,112.5673694,26.86674433,63.38786697,181.2210732,181.9853265,15.819378,0.142902161,1620000000000 ,1620000000000 ,1620000000000 ,1616812558510 -1616812558536 ,112.5673693,26.8667429,63.38944244,181.2179586,181.9795112,15.822575,0.142936272,1620000000000 ,1620000000000 ,1620000000000 ,1616812558520 -1616812558547 ,112.5673693,26.86674147,63.3910141,181.215691,181.963706,15.825707,0.142967107,1620000000000 ,1620000000000 ,1620000000000 ,1616812558530 -1616812558562 ,112.5673692,26.86674004,63.39255905,181.2137786,181.9641443,15.830023,0.142998446,1620000000000 ,1620000000000 ,1620000000000 ,1616812558540 -1616812558575 ,112.5673692,26.86673861,63.39409637,181.2144889,181.9669849,15.834133,0.143035089,1620000000000 ,1620000000000 ,1620000000000 ,1616812558550 -1616812558581 ,112.5673691,26.86673718,63.39571381,181.2121666,181.9762925,15.833885,0.143051902,1620000000000 ,1620000000000 ,1620000000000 ,1616812558560 -1616812558588 ,112.5673691,26.86673575,63.39740753,181.2114836,181.9787194,15.834558,0.143060818,1620000000000 ,1620000000000 ,1620000000000 ,1616812558570 -1616812558597 ,112.567369,26.86673432,63.39910507,181.2120847,181.9834819,15.836795,0.143074747,1620000000000 ,1620000000000 ,1620000000000 ,1616812558580 -1616812558608 ,112.567369,26.86673289,63.40072632,181.2108279,181.9889171,15.839692,0.143097309,1620000000000 ,1620000000000 ,1620000000000 ,1616812558590 -1616812558617 ,112.5673689,26.86673146,63.40222168,181.2079593,182.0005485,15.842837,0.143126192,1620000000000 ,1620000000000 ,1620000000000 ,1616812558600 -1616812558627 ,112.5673689,26.86673003,63.40362167,181.2044895,182.0063151,15.847331,0.143163111,1620000000000 ,1620000000000 ,1620000000000 ,1616812558610 -1616812558646 ,112.5673688,26.8667286,63.40496445,181.2014569,181.991066,15.851168,0.143195665,1620000000000 ,1620000000000 ,1620000000000 ,1616812558620 -1616812558648 ,112.5673688,26.86672717,63.40627289,181.1965392,181.9815215,15.8526945,0.143215994,1620000000000 ,1620000000000 ,1620000000000 ,1616812558630 -1616812558659 ,112.5673687,26.86672574,63.40747452,181.1934793,181.9864529,15.860677,0.14326323,1620000000000 ,1620000000000 ,1620000000000 ,1616812558640 -1616812558669 ,112.5673687,26.86672431,63.40852737,181.1939164,182.0100729,15.8607855,0.143283636,1620000000000 ,1620000000000 ,1620000000000 ,1616812558650 -1616812558678 ,112.5673686,26.86672287,63.40945816,181.1934793,182.0007679,15.865803,0.143312675,1620000000000 ,1620000000000 ,1620000000000 ,1616812558660 -1616812558688 ,112.5673686,26.86672144,63.41041946,181.1875233,181.9703068,15.868345,0.143345291,1620000000000 ,1620000000000 ,1620000000000 ,1616812558670 -1616812558698 ,112.5673685,26.86672001,63.41148376,181.1811849,181.9639349,15.867801,0.143353217,1620000000000 ,1620000000000 ,1620000000000 ,1616812558680 -1616812558708 ,112.5673685,26.86671857,63.41257858,181.1786987,181.9814276,15.867621,0.143354056,1620000000000 ,1620000000000 ,1620000000000 ,1616812558690 -1616812558718 ,112.5673684,26.86671714,63.41365433,181.1761306,181.9938959,15.869114,0.143355612,1620000000000 ,1620000000000 ,1620000000000 ,1616812558700 -1616812558729 ,112.5673684,26.86671571,63.41470337,181.1727428,181.9850214,15.875685,0.143404454,1620000000000 ,1620000000000 ,1620000000000 ,1616812558710 -1616812558740 ,112.5673683,26.86671428,63.41571045,181.1720051,181.9734435,15.884124,0.143480482,1620000000000 ,1620000000000 ,1620000000000 ,1616812558720 -1616812558749 ,112.5673683,26.86671284,63.41664886,181.1703932,181.9727185,15.88943,0.143537279,1620000000000 ,1620000000000 ,1620000000000 ,1616812558730 -1616812558760 ,112.5673682,26.86671141,63.41756821,181.1683988,181.9757971,15.88825,0.143542554,1620000000000 ,1620000000000 ,1620000000000 ,1616812558740 -1616812558768 ,112.5673682,26.86670997,63.41859818,181.1638089,181.9867829,15.884126,0.143513708,1620000000000 ,1620000000000 ,1620000000000 ,1616812558750 -1616812558779 ,112.5673681,26.86670854,63.41973495,181.1604211,181.9924919,15.882383,0.143490428,1620000000000 ,1620000000000 ,1620000000000 ,1616812558760 -1616812558788 ,112.5673681,26.8667071,63.42082596,181.1583174,181.9883947,15.886701,0.143519392,1620000000000 ,1620000000000 ,1620000000000 ,1616812558770 -1616812558799 ,112.567368,26.86670567,63.42174149,181.1568968,181.9890757,15.894676,0.143577587,1620000000000 ,1620000000000 ,1620000000000 ,1616812558780 -1616812558811 ,112.567368,26.86670423,63.42247772,181.1514053,181.9881426,15.902339,0.143649494,1620000000000 ,1620000000000 ,1620000000000 ,1616812558790 -1616812558820 ,112.5673679,26.8667028,63.423069,181.146269,181.980328,15.903199,0.143666299,1620000000000 ,1620000000000 ,1620000000000 ,1616812558800 -1616812558829 ,112.5673679,26.86670136,63.42358398,181.1417611,181.9858396,15.904991,0.143677404,1620000000000 ,1620000000000 ,1620000000000 ,1616812558810 -1616812558840 ,112.5673678,26.86669992,63.42405319,181.1406682,181.9929003,15.907681,0.143690861,1620000000000 ,1620000000000 ,1620000000000 ,1616812558820 -1616812558850 ,112.5673678,26.86669849,63.42449951,181.140477,181.987148,15.9097805,0.143714193,1620000000000 ,1620000000000 ,1620000000000 ,1616812558830 -1616812558862 ,112.5673677,26.86669705,63.4249649,181.1389197,181.973406,15.911629,0.14373341,1620000000000 ,1620000000000 ,1620000000000 ,1616812558840 -1616812558870 ,112.5673677,26.86669562,63.425457,181.1355866,181.9607126,15.915111,0.143758466,1620000000000 ,1620000000000 ,1620000000000 ,1616812558850 -1616812558880 ,112.5673676,26.86669418,63.42598724,181.1338107,181.969636,15.920916,0.143809709,1620000000000 ,1620000000000 ,1620000000000 ,1616812558860 -1616812558890 ,112.5673676,26.86669274,63.42653275,181.1331004,181.9728578,15.92404,0.143842476,1620000000000 ,1620000000000 ,1620000000000 ,1616812558870 -1616812558902 ,112.5673675,26.8666913,63.42707825,181.1331004,181.9742464,15.924459,0.143854372,1620000000000 ,1620000000000 ,1620000000000 ,1616812558880 -1616812558913 ,112.5673675,26.86668987,63.4276619,181.1324447,181.9743684,15.924685,0.143856047,1620000000000 ,1620000000000 ,1620000000000 ,1616812558890 -1616812558925 ,112.5673674,26.86668843,63.42821503,181.1329365,181.9717492,15.926423,0.143866242,1620000000000 ,1620000000000 ,1620000000000 ,1616812558900 -1616812558931 ,112.5673674,26.86668699,63.4286499,181.1341112,181.9704569,15.930019,0.143887116,1620000000000 ,1620000000000 ,1620000000000 ,1616812558910 -1616812558940 ,112.5673673,26.86668555,63.42896652,181.1340839,181.9828119,15.9335575,0.143917118,1620000000000 ,1620000000000 ,1620000000000 ,1616812558920 -1616812558951 ,112.5673673,26.86668411,63.42929077,181.1308054,181.9844252,15.936099,0.143942201,1620000000000 ,1620000000000 ,1620000000000 ,1616812558930 -1616812558961 ,112.5673672,26.86668267,63.42974472,181.1287564,181.9770898,15.938279,0.143965972,1620000000000 ,1620000000000 ,1620000000000 ,1616812558940 -1616812558970 ,112.5673672,26.86668123,63.43028259,181.1255872,181.9753996,15.942462,0.143986782,1620000000000 ,1620000000000 ,1620000000000 ,1616812558950 -1616812558986 ,112.5673671,26.8666798,63.43082809,181.1247675,181.973088,15.940892,0.144002851,1620000000000 ,1620000000000 ,1620000000000 ,1616812558960 -1616812558992 ,112.5673671,26.86667836,63.43136215,181.126598,181.9921738,15.949437,0.144053267,1620000000000 ,1620000000000 ,1620000000000 ,1616812558970 -1616812559001 ,112.567367,26.86667692,63.43196869,181.1279641,181.973988,15.952423,0.144081333,1620000000000 ,1620000000000 ,1620000000000 ,1616812558980 -1616812559011 ,112.567367,26.86667548,63.43272781,181.1279641,181.9639934,15.950986,0.144093173,1620000000000 ,1620000000000 ,1620000000000 ,1616812558990 -1616812559021 ,112.5673669,26.86667404,63.4336853,181.1276909,181.9712118,15.947731,0.144076652,1620000000000 ,1620000000000 ,1620000000000 ,1616812559000 -1616812559031 ,112.5673669,26.8666726,63.43471527,181.1292208,181.9752585,15.948301,0.144069836,1620000000000 ,1620000000000 ,1620000000000 ,1616812559010 -1616812559041 ,112.5673668,26.86667116,63.43574524,181.1323627,181.984024,15.952346,0.144096121,1620000000000 ,1620000000000 ,1620000000000 ,1616812559020 -1616812559052 ,112.5673668,26.86666972,63.43669128,181.1373078,181.9792485,15.957858,0.144138471,1620000000000 ,1620000000000 ,1620000000000 ,1616812559030 -1616812559062 ,112.5673667,26.86666827,63.43759537,181.1394115,181.9705308,15.963831,0.144193585,1620000000000 ,1620000000000 ,1620000000000 ,1616812559040 -1616812559077 ,112.5673667,26.86666683,63.43854141,181.1406955,181.951593,15.96419,0.144213025,1620000000000 ,1620000000000 ,1620000000000 ,1616812559050 -1616812559083 ,112.5673666,26.86666539,63.43960953,181.1399032,181.9606603,15.963562,0.144208938,1620000000000 ,1620000000000 ,1620000000000 ,1616812559060 -1616812559093 ,112.5673666,26.86666395,63.44085693,181.143291,181.9772993,15.962839,0.144210329,1620000000000 ,1620000000000 ,1620000000000 ,1616812559070 -1616812559101 ,112.5673665,26.86666251,63.44224167,181.146187,181.9723575,15.964784,0.144230247,1620000000000 ,1620000000000 ,1620000000000 ,1616812559080 -1616812559111 ,112.5673665,26.86666107,63.44374084,181.1482907,181.9585235,15.966332,0.144244758,1620000000000 ,1620000000000 ,1620000000000 ,1616812559090 -1616812559122 ,112.5673664,26.86665963,63.44524002,181.1504217,181.947609,15.971363,0.144286384,1620000000000 ,1620000000000 ,1620000000000 ,1616812559110 -1616812559132 ,112.5673664,26.86665818,63.44661331,181.1540554,181.945045,15.974172,0.144313178,1620000000000 ,1620000000000 ,1620000000000 ,1616812559120 -1616812559142 ,112.5673663,26.86665674,63.44783401,181.1594922,181.9618538,15.977087,0.144343615,1620000000000 ,1620000000000 ,1620000000000 ,1616812559130 -1616812559154 ,112.5673662,26.86665386,63.45028687,181.1680163,181.9578022,15.977515,0.288712982,1620000000000 ,1620000000000 ,1620000000000 ,1616812559140 -1616812559163 ,112.5673662,26.86665241,63.45171356,181.170202,181.9374339,15.976502,0.144357237,1620000000000 ,1620000000000 ,1620000000000 ,1616812559150 -1616812559173 ,112.5673661,26.86665097,63.45316696,181.1758027,181.9368516,15.97749,0.144359624,1620000000000 ,1620000000000 ,1620000000000 ,1616812559160 -1616812559185 ,112.5673661,26.86665097,63.45316696,181.1758027,-400,15.97749,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812559170 -1616812559194 ,112.567366,26.86664808,63.45571136,181.1842722,181.9642695,15.98998,0.288853693,1620000000000 ,1620000000000 ,1620000000000 ,1616812559180 -1616812559203 ,112.567366,26.86664808,63.45571136,181.1842722,-400,15.98998,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812559180 -1616812559213 ,112.5673659,26.86664519,63.45823288,181.1852011,181.8796936,15.993653,0.289051001,1620000000000 ,1620000000000 ,1620000000000 ,1616812559200 -1616812559223 ,112.5673659,26.86664375,63.4599762,181.1890533,181.4964235,15.992759,0.144573172,1620000000000 ,1620000000000 ,1620000000000 ,1616812559210 -1616812559238 ,112.5673659,26.8666423,63.46160889,181.1978506,181.5127981,15.994009,0.144580994,1620000000000 ,1620000000000 ,1620000000000 ,1616812559220 -1616812559253 ,112.5673658,26.86664086,63.46305084,181.2048174,181.525436,15.996685,0.144594654,1620000000000 ,1620000000000 ,1620000000000 ,1616812559230 -1616812559256 ,112.5673658,26.86663941,63.46430969,181.2076587,181.5230649,16.000975,0.144623538,1620000000000 ,1620000000000 ,1620000000000 ,1616812559240 -1616812559267 ,112.5673658,26.86663797,63.46541595,181.21356,181.5068423,16.002728,0.1446399,1620000000000 ,1620000000000 ,1620000000000 ,1616812559250 -1616812559277 ,112.5673657,26.86663652,63.46639252,181.2197072,181.5176251,16.009619,0.144685077,1620000000000 ,1620000000000 ,1620000000000 ,1616812559260 -1616812559284 ,112.5673657,26.86663507,63.46722412,181.2270838,181.5270408,16.012156,0.144709413,1620000000000 ,1620000000000 ,1620000000000 ,1616812559270 -1616812559297 ,112.5673656,26.86663363,63.46791458,181.233231,181.5466925,16.016499,0.144744908,1620000000000 ,1620000000000 ,1620000000000 ,1616812559280 -1616812559306 ,112.5673656,26.86663218,63.4685936,181.2357718,181.5521808,16.01754,0.144758131,1620000000000 ,1620000000000 ,1620000000000 ,1616812559290 -1616812559315 ,112.5673656,26.86663073,63.4692688,181.238176,181.5412522,16.021704,0.144781822,1620000000000 ,1620000000000 ,1620000000000 ,1616812559300 -1616812559325 ,112.5673655,26.86662928,63.46991348,181.2422741,181.5556463,16.024817,0.144812051,1620000000000 ,1620000000000 ,1620000000000 ,1616812559310 -1616812559337 ,112.5673655,26.86662784,63.4704895,181.2467001,181.5780631,16.026936,0.144834751,1620000000000 ,1620000000000 ,1620000000000 ,1616812559320 -1616812559346 ,112.5673654,26.86662639,63.47110748,181.2502791,181.5940467,16.025072,0.144824689,1620000000000 ,1620000000000 ,1620000000000 ,1616812559330 -1616812559360 ,112.5673654,26.86662494,63.47182465,181.2553608,181.5861006,16.02577,0.144825106,1620000000000 ,1620000000000 ,1620000000000 ,1616812559340 -1616812559365 ,112.5673654,26.86662349,63.47254944,181.2602785,181.5855247,16.02961,0.144850327,1620000000000 ,1620000000000 ,1620000000000 ,1616812559350 -1616812559378 ,112.5673653,26.86662205,63.47318649,181.2648411,181.596196,16.033623,0.144880527,1620000000000 ,1620000000000 ,1620000000000 ,1616812559360 -1616812559385 ,112.5673653,26.8666206,63.4737587,181.2673819,181.6119636,16.036877,0.144910158,1620000000000 ,1620000000000 ,1620000000000 ,1616812559370 -1616812559397 ,112.5673652,26.86661915,63.4744339,181.2711522,181.615283,16.036533,0.144916748,1620000000000 ,1620000000000 ,1620000000000 ,1616812559380 -1616812559406 ,112.5673652,26.8666177,63.47527313,181.2724636,181.6137076,16.037199,0.144921833,1620000000000 ,1620000000000 ,1620000000000 ,1616812559390 -1616812559414 ,112.5673652,26.86661625,63.47622681,181.2768622,181.6246571,16.037678,0.144929247,1620000000000 ,1620000000000 ,1620000000000 ,1616812559400 -1616812559427 ,112.5673651,26.8666148,63.47724152,181.2811789,181.6406581,16.03736,0.144930599,1620000000000 ,1620000000000 ,1620000000000 ,1616812559410 -1616812559436 ,112.5673651,26.86661335,63.47833252,181.284512,181.6452283,16.037294,0.144931221,1620000000000 ,1620000000000 ,1620000000000 ,1616812559420 -1616812559448 ,112.567365,26.8666119,63.47953415,181.2862605,181.6385811,16.036093,0.144925855,1620000000000 ,1620000000000 ,1620000000000 ,1616812559430 -1616812559457 ,112.567365,26.86661046,63.48083115,181.289703,181.6442853,16.036537,0.14492393,1620000000000 ,1620000000000 ,1620000000000 ,1616812559440 -1616812559467 ,112.5673649,26.86660901,63.48195267,181.2934459,181.8303645,16.036156,0.144890634,1620000000000 ,1620000000000 ,1620000000000 ,1616812559450 -1616812559478 ,112.5673649,26.86660756,63.48290634,181.2986642,182.017789,16.035852,0.144856923,1620000000000 ,1620000000000 ,1620000000000 ,1616812559460 -1616812559485 ,112.5673648,26.86660611,63.48397064,181.3043196,182.0197533,16.036484,0.144862225,1620000000000 ,1620000000000 ,1620000000000 ,1616812559470 -1616812559495 ,112.5673648,26.86660466,63.48516464,181.3091553,182.0171784,16.036552,0.144864012,1620000000000 ,1620000000000 ,1620000000000 ,1616812559480 -1616812559506 ,112.5673647,26.86660322,63.48648834,181.3139091,182.0224768,16.037054,0.144875413,1620000000000 ,1620000000000 ,1620000000000 ,1616812559490 -1616812559517 ,112.5673647,26.86660177,63.48792267,181.3179799,182.0355771,16.038351,0.144887863,1620000000000 ,1620000000000 ,1620000000000 ,1616812559500 -1616812559527 ,112.5673646,26.86660032,63.4894371,181.3234714,182.054024,16.038305,0.144892632,1620000000000 ,1620000000000 ,1620000000000 ,1616812559510 -1616812559538 ,112.5673646,26.86659887,63.49100113,181.3293181,182.0603581,16.037132,0.14488716,1620000000000 ,1620000000000 ,1620000000000 ,1616812559520 -1616812559547 ,112.5673645,26.86659743,63.49262238,181.3345636,182.0595282,16.035524,0.144877899,1620000000000 ,1620000000000 ,1620000000000 ,1616812559530 -1616812559558 ,112.5673645,26.86659598,63.49425888,181.3395633,182.0599445,16.035172,0.144869314,1620000000000 ,1620000000000 ,1620000000000 ,1616812559540 -1616812559567 ,112.5673644,26.86659453,63.49583817,181.3450548,182.0680758,16.037882,0.144884115,1620000000000 ,1620000000000 ,1620000000000 ,1616812559550 -1616812559577 ,112.5673644,26.86659308,63.49731445,181.3497813,182.0766474,16.039616,0.144903268,1620000000000 ,1620000000000 ,1620000000000 ,1616812559560 -1616812559590 ,112.5673643,26.86659163,63.49874878,181.3559558,182.0896835,16.042526,0.144923794,1620000000000 ,1620000000000 ,1620000000000 ,1616812559570 -1616812559602 ,112.5673643,26.86659018,63.5002327,181.3630865,182.081515,16.043257,0.144933201,1620000000000 ,1620000000000 ,1620000000000 ,1616812559580 -1616812559621 ,112.5673642,26.86658874,63.50175858,181.3695069,182.0852875,16.04219,0.144935987,1620000000000 ,1620000000000 ,1620000000000 ,1616812559590 -1616812559628 ,112.5673642,26.86658729,63.50334549,181.3748344,182.1016646,16.04235,0.144933094,1620000000000 ,1620000000000 ,1620000000000 ,1616812559600 -1616812559633 ,112.5673641,26.86658584,63.50502777,181.3777031,182.1115852,16.040297,0.144922765,1620000000000 ,1620000000000 ,1620000000000 ,1616812559610 -1616812559637 ,112.5673641,26.86658439,63.50684738,181.382375,182.1405202,16.037924,0.144909951,1620000000000 ,1620000000000 ,1620000000000 ,1616812559620 -1616812559649 ,112.567364,26.86658294,63.50876999,181.3861179,182.1575842,16.036392,0.144901453,1620000000000 ,1620000000000 ,1620000000000 ,1616812559630 -1616812559658 ,112.5673639,26.8665815,63.51072693,181.3910083,182.1631597,16.035007,0.144892107,1620000000000 ,1620000000000 ,1620000000000 ,1616812559640 -1616812559667 ,112.5673639,26.86658005,63.51268387,181.3976473,182.1746106,16.035378,0.144893366,1620000000000 ,1620000000000 ,1620000000000 ,1616812559650 -1616812559677 ,112.5673638,26.8665786,63.51452637,181.403248,182.1816899,16.039345,0.144921668,1620000000000 ,1620000000000 ,1620000000000 ,1616812559660 -1616812559687 ,112.5673638,26.86657715,63.5161972,181.4092039,182.1893049,16.04234,0.144946633,1620000000000 ,1620000000000 ,1620000000000 ,1616812559670 -1616812559698 ,112.5673637,26.8665757,63.51776123,181.4121819,182.1977209,16.042496,0.144955454,1620000000000 ,1620000000000 ,1620000000000 ,1616812559680 -1616812559709 ,112.5673637,26.86657425,63.51934814,181.4161981,182.2094429,16.040926,0.144947223,1620000000000 ,1620000000000 ,1620000000000 ,1616812559690 -1616812559719 ,112.5673636,26.86657281,63.52102661,181.4206787,182.2084724,16.038122,0.144930239,1620000000000 ,1620000000000 ,1620000000000 ,1616812559700 -1616812559730 ,112.5673636,26.86657136,63.5227356,181.4241484,182.2054762,16.03632,0.144915143,1620000000000 ,1620000000000 ,1620000000000 ,1616812559710 -1616812559739 ,112.5673635,26.86656991,63.5243988,181.4288476,182.2048981,16.03401,0.144895389,1620000000000 ,1620000000000 ,1620000000000 ,1616812559720 -1616812559749 ,112.5673634,26.86656846,63.52591705,181.4335194,182.2071941,16.035273,0.144895689,1620000000000 ,1620000000000 ,1620000000000 ,1616812559730 -1616812559757 ,112.5673634,26.86656701,63.5272789,181.4369618,182.2148051,16.038221,0.144919294,1620000000000 ,1620000000000 ,1620000000000 ,1616812559740 -1616812559768 ,112.5673633,26.86656557,63.52853012,181.4437647,182.2261653,16.04044,0.144941563,1620000000000 ,1620000000000 ,1620000000000 ,1616812559750 -1616812559778 ,112.5673633,26.86656412,63.52974319,181.4507861,182.2307309,16.039461,0.144938013,1620000000000 ,1620000000000 ,1620000000000 ,1616812559760 -1616812559790 ,112.5673632,26.86656267,63.53091049,181.4580261,182.2269295,16.038572,0.144928674,1620000000000 ,1620000000000 ,1620000000000 ,1616812559770 -1616812559805 ,112.5673632,26.86656122,63.53196335,181.468572,182.2305692,16.037956,0.144921096,1620000000000 ,1620000000000 ,1620000000000 ,1616812559780 -1616812559814 ,112.5673631,26.86655977,63.53284454,181.4786806,182.2432161,16.037172,0.14490909,1620000000000 ,1620000000000 ,1620000000000 ,1616812559790 -1616812559822 ,112.5673631,26.86655833,63.53357315,181.4863304,182.2599437,16.035416,0.144891517,1620000000000 ,1620000000000 ,1620000000000 ,1616812559800 -1616812559831 ,112.567363,26.86655688,63.53423691,181.4928874,182.2692042,16.034164,0.144879949,1620000000000 ,1620000000000 ,1620000000000 ,1616812559810 -1616812559841 ,112.5673629,26.86655543,63.53487015,181.4997449,182.2749961,16.0343,0.144874838,1620000000000 ,1620000000000 ,1620000000000 ,1616812559820 -1616812559850 ,112.5673629,26.86655398,63.53542709,181.5078319,182.2816495,16.03592,0.144883795,1620000000000 ,1620000000000 ,1620000000000 ,1616812559830 -1616812559860 ,112.5673628,26.86655253,63.53585815,181.5154544,182.2919243,16.037746,0.144895784,1620000000000 ,1620000000000 ,1620000000000 ,1616812559840 -1616812559870 ,112.5673628,26.86655109,63.53619385,181.5223119,182.2938635,16.0387,0.144903234,1620000000000 ,1620000000000 ,1620000000000 ,1616812559850 -1616812559881 ,112.5673627,26.86654964,63.53646851,181.5301529,182.2866843,16.037397,0.14489466,1620000000000 ,1620000000000 ,1620000000000 ,1616812559860 -1616812559891 ,112.5673626,26.86654819,63.5366745,181.5420921,182.2865232,16.037748,0.144890762,1620000000000 ,1620000000000 ,1620000000000 ,1616812559870 -1616812559901 ,112.5673626,26.86654674,63.53678894,181.5549602,182.2919516,16.036654,0.14487782,1620000000000 ,1620000000000 ,1620000000000 ,1616812559880 -1616812559912 ,112.5673625,26.8665453,63.53686142,181.5672818,182.3050784,16.03744,0.144879789,1620000000000 ,1620000000000 ,1620000000000 ,1616812559890 -1616812559923 ,112.5673625,26.86654385,63.53696823,181.5807783,182.2964827,16.034615,0.144864347,1620000000000 ,1620000000000 ,1620000000000 ,1616812559900 -1616812559932 ,112.5673624,26.8665424,63.53710175,181.5914334,182.2973946,16.031693,0.144835844,1620000000000 ,1620000000000 ,1620000000000 ,1616812559910 -1616812559942 ,112.5673624,26.86654095,63.5371933,181.6014601,182.3147296,16.028973,0.144802943,1620000000000 ,1620000000000 ,1620000000000 ,1616812559920 -1616812559951 ,112.5673623,26.86653951,63.53718948,181.6128255,182.3367256,16.030777,0.144805459,1620000000000 ,1620000000000 ,1620000000000 ,1616812559930 -1616812559961 ,112.5673622,26.86653806,63.53710175,181.6269504,182.3499106,16.029476,0.144797926,1620000000000 ,1620000000000 ,1620000000000 ,1616812559940 -1616812559973 ,112.5673622,26.86653661,63.53699112,181.6416489,182.3467702,16.031078,0.14480376,1620000000000 ,1620000000000 ,1620000000000 ,1616812559950 -1616812559982 ,112.5673621,26.86653517,63.53701019,181.6524133,182.3553446,16.02955,0.14479898,1620000000000 ,1620000000000 ,1620000000000 ,1616812559960 -1616812559995 ,112.5673621,26.86653372,63.53720474,181.6633143,182.3669078,16.025524,0.144773199,1620000000000 ,1620000000000 ,1620000000000 ,1616812559970 -1616812560003 ,112.567362,26.86653227,63.53747559,181.6771932,182.3869911,16.02452,0.144757762,1620000000000 ,1620000000000 ,1620000000000 ,1616812559980 -1616812560018 ,112.5673619,26.86653083,63.53777695,181.6897062,182.4077649,16.024118,0.144751209,1620000000000 ,1620000000000 ,1620000000000 ,1616812559990 -1616812560022 ,112.5673619,26.86652938,63.53813934,181.7012082,182.4170551,16.022724,0.14474318,1620000000000 ,1620000000000 ,1620000000000 ,1616812560010 -1616812560035 ,112.5673618,26.86652794,63.53865051,181.7131747,182.4148159,16.020964,0.144730159,1620000000000 ,1620000000000 ,1620000000000 ,1616812560020 -1616812560043 ,112.5673618,26.86652649,63.53926086,181.7275454,182.4273045,16.020933,0.14473533,1620000000000 ,1620000000000 ,1620000000000 ,1616812560030 -1616812560053 ,112.5673616,26.8665236,63.54064178,181.7492108,182.4748973,16.01832,0.289437907,1620000000000 ,1620000000000 ,1620000000000 ,1616812560040 -1616812560062 ,112.5673616,26.86652215,63.54152298,181.7604942,182.5056506,16.015598,0.144696673,1620000000000 ,1620000000000 ,1620000000000 ,1616812560050 -1616812560073 ,112.5673615,26.86652071,63.54256058,181.7689363,182.5195209,16.01359,0.144685796,1620000000000 ,1620000000000 ,1620000000000 ,1616812560060 -1616812560084 ,112.5673614,26.86651926,63.54367065,181.7765042,182.5376546,16.011038,0.144660635,1620000000000 ,1620000000000 ,1620000000000 ,1616812560070 -1616812560093 ,112.5673614,26.86651782,63.54483032,181.7839354,182.5573551,16.010136,0.144657235,1620000000000 ,1620000000000 ,1620000000000 ,1616812560080 -1616812560103 ,112.5673614,26.86651782,63.54483032,181.7839354,-400,16.010136,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812560080 -1616812560113 ,112.5673612,26.86651493,63.54718018,181.8005738,182.5900783,16.010359,0.289326865,1620000000000 ,1620000000000 ,1620000000000 ,1616812560100 -1616812560122 ,112.5673612,26.86651348,63.54850006,181.8062292,182.6168564,16.011038,0.144667785,1620000000000 ,1620000000000 ,1620000000000 ,1616812560110 -1616812560134 ,112.5673611,26.86651204,63.55001831,181.8115841,182.6162359,16.005693,0.144650577,1620000000000 ,1620000000000 ,1620000000000 ,1616812560120 -1616812560144 ,112.567361,26.86651059,63.55165482,181.8140976,182.634114,15.999456,0.144591116,1620000000000 ,1620000000000 ,1620000000000 ,1616812560130 -1616812560153 ,112.567361,26.86650915,63.55331802,181.8177859,182.670096,15.998449,0.144579063,1620000000000 ,1620000000000 ,1620000000000 ,1616812560140 -1616812560163 ,112.5673609,26.8665077,63.55490875,181.8220206,182.6972772,15.999087,0.144580968,1620000000000 ,1620000000000 ,1620000000000 ,1616812560150 -1616812560175 ,112.5673608,26.86650626,63.55643845,181.8249439,182.706437,15.9998865,0.144590448,1620000000000 ,1620000000000 ,1620000000000 ,1616812560160 -1616812560187 ,112.5673608,26.86650482,63.55799103,181.8268837,182.7002278,15.998069,0.14458463,1620000000000 ,1620000000000 ,1620000000000 ,1616812560170 -1616812560195 ,112.5673607,26.86650337,63.55955505,181.8250532,182.7030753,15.994281,0.14455402,1620000000000 ,1620000000000 ,1620000000000 ,1616812560180 -1616812560206 ,112.5673606,26.86650193,63.56107712,181.8273754,182.7230918,15.992141,0.144533807,1620000000000 ,1620000000000 ,1620000000000 ,1616812560190 -1616812560214 ,112.5673606,26.86650048,63.56261063,181.8340417,182.6275913,15.997975,0.144595299,1620000000000 ,1620000000000 ,1620000000000 ,1616812560200 -1616812560223 ,112.5673605,26.86649904,63.56424332,181.8351345,182.4158241,15.999188,0.144711064,1620000000000 ,1620000000000 ,1620000000000 ,1616812560210 -1616812560233 ,112.5673604,26.86649759,63.56579208,181.8352985,182.4028786,15.999796,0.144721152,1620000000000 ,1620000000000 ,1620000000000 ,1616812560220 -1616812560244 ,112.5673604,26.86649615,63.56726456,181.8374841,182.3975927,15.998336,0.144710753,1620000000000 ,1620000000000 ,1620000000000 ,1616812560230 -1616812560257 ,112.5673603,26.8664947,63.56860733,181.8383311,182.4081736,15.9982815,0.1447019,1620000000000 ,1620000000000 ,1620000000000 ,1616812560240 -1616812560265 ,112.5673603,26.86649325,63.56980133,181.8382491,182.4270356,15.997852,0.144690648,1620000000000 ,1620000000000 ,1620000000000 ,1616812560250 -1616812560275 ,112.5673602,26.86649181,63.57093048,181.8365825,182.4323544,15.997878,0.144692649,1620000000000 ,1620000000000 ,1620000000000 ,1616812560260 -1616812560284 ,112.5673601,26.86649036,63.57202911,181.8372382,182.4185625,15.996291,0.144679859,1620000000000 ,1620000000000 ,1620000000000 ,1616812560270 -1616812560295 ,112.5673601,26.86648892,63.57307053,181.8382491,182.413063,15.995318,0.14466688,1620000000000 ,1620000000000 ,1620000000000 ,1616812560280 -1616812560304 ,112.56736,26.86648747,63.57403564,181.8393146,182.4196086,15.995886,0.144663928,1620000000000 ,1620000000000 ,1620000000000 ,1616812560290 -1616812560314 ,112.56736,26.86648603,63.57498169,181.8390687,182.4301267,15.996925,0.144675562,1620000000000 ,1620000000000 ,1620000000000 ,1616812560300 -1616812560324 ,112.5673599,26.86648458,63.57595444,181.8383311,182.4270718,15.995566,0.144668225,1620000000000 ,1620000000000 ,1620000000000 ,1616812560310 -1616812560335 ,112.5673598,26.86648314,63.57695007,181.8379486,182.421992,15.990933,0.144637204,1620000000000 ,1620000000000 ,1620000000000 ,1616812560320 -1616812560346 ,112.5673598,26.86648169,63.57794571,181.839178,182.4247354,15.987271,0.144601667,1620000000000 ,1620000000000 ,1620000000000 ,1616812560330 -1616812560355 ,112.5673597,26.86648025,63.5789566,181.8398337,182.4250694,15.986261,0.144582632,1620000000000 ,1620000000000 ,1620000000000 ,1616812560340 -1616812560365 ,112.5673597,26.8664788,63.57999039,181.8367191,182.4249443,15.984681,0.14457165,1620000000000 ,1620000000000 ,1620000000000 ,1616812560350 -1616812560379 ,112.5673596,26.86647736,63.58105469,181.8384677,182.4254575,15.984415,0.144571939,1620000000000 ,1620000000000 ,1620000000000 ,1616812560360 -1616812560385 ,112.5673595,26.86647591,63.58213806,181.8405441,182.4176157,15.981177,0.144549145,1620000000000 ,1620000000000 ,1620000000000 ,1616812560370 -1616812560402 ,112.5673595,26.86647447,63.58321381,181.8419921,182.4099926,15.97944,0.144531143,1620000000000 ,1620000000000 ,1620000000000 ,1616812560380 -1616812560413 ,112.5673594,26.86647303,63.58424759,181.8444782,182.4207508,15.979944,0.144532193,1620000000000 ,1620000000000 ,1620000000000 ,1616812560390 -1616812560416 ,112.5673593,26.86647158,63.58521652,181.8455438,182.4246802,15.979201,0.14452457,1620000000000 ,1620000000000 ,1620000000000 ,1616812560400 -1616812560425 ,112.5673593,26.86647014,63.58613586,181.8477567,182.4294826,15.976569,0.144505276,1620000000000 ,1620000000000 ,1620000000000 ,1616812560410 -1616812560436 ,112.5673592,26.86646869,63.58699799,181.8498604,182.4344495,15.975431,0.144487003,1620000000000 ,1620000000000 ,1620000000000 ,1616812560420 -1616812560454 ,112.5673592,26.86646725,63.58781052,181.8527291,182.4393447,15.973457,0.144473351,1620000000000 ,1620000000000 ,1620000000000 ,1616812560430 -1616812560457 ,112.5673591,26.86646581,63.58862305,181.8540678,182.4437487,15.969996,0.144441815,1620000000000 ,1620000000000 ,1620000000000 ,1616812560440 -1616812560466 ,112.567359,26.86646437,63.58930969,181.8567726,182.5624566,15.967822,0.14435192,1620000000000 ,1620000000000 ,1620000000000 ,1616812560450 -1616812560476 ,112.567359,26.86646292,63.58979416,181.8571824,182.689402,15.967471,0.144278208,1620000000000 ,1620000000000 ,1620000000000 ,1616812560460 -1616812560486 ,112.5673589,26.86646148,63.590168,181.8599145,182.7071878,15.966737,0.144268279,1620000000000 ,1620000000000 ,1620000000000 ,1616812560470 -1616812560496 ,112.5673588,26.86646004,63.59046936,181.8612532,182.7197701,15.964663,0.144248421,1620000000000 ,1620000000000 ,1620000000000 ,1616812560480 -1616812560510 ,112.5673588,26.8664586,63.59079742,181.8628651,182.7144987,15.962139,0.144228271,1620000000000 ,1620000000000 ,1620000000000 ,1616812560490 -1616812560517 ,112.5673587,26.86645716,63.5912323,181.8642038,182.7052808,15.961551,0.144218904,1620000000000 ,1620000000000 ,1620000000000 ,1616812560500 -1616812560528 ,112.5673586,26.86645572,63.5917244,181.8658977,182.703496,15.956954,0.144187774,1620000000000 ,1620000000000 ,1620000000000 ,1616812560510 -1616812560541 ,112.5673586,26.86645428,63.59215164,181.8655425,182.7131587,15.957253,0.144167052,1620000000000 ,1620000000000 ,1620000000000 ,1616812560520 -1616812560549 ,112.5673585,26.86645284,63.59246445,181.8664168,182.735964,15.955724,0.144150451,1620000000000 ,1620000000000 ,1620000000000 ,1616812560530 -1616812560558 ,112.5673584,26.8664514,63.59265137,181.8673184,182.7393168,15.959111,0.144176439,1620000000000 ,1620000000000 ,1620000000000 ,1616812560540 -1616812560567 ,112.5673584,26.86644996,63.59280777,181.8656518,182.7223213,15.961572,0.144188174,1620000000000 ,1620000000000 ,1620000000000 ,1616812560550 -1616812560577 ,112.5673583,26.86644852,63.59304047,181.8625919,182.703077,15.959279,0.144174913,1620000000000 ,1620000000000 ,1620000000000 ,1616812560560 -1616812560588 ,112.5673582,26.86644708,63.59334564,181.8575649,182.7026568,15.953847,0.144136133,1620000000000 ,1620000000000 ,1620000000000 ,1616812560570 -1616812560598 ,112.5673582,26.86644564,63.59375381,181.8553519,182.7102058,15.950733,0.144100681,1620000000000 ,1620000000000 ,1620000000000 ,1616812560580 -1616812560610 ,112.5673581,26.8664442,63.59424973,181.8532482,182.702626,15.949647,0.144087745,1620000000000 ,1620000000000 ,1620000000000 ,1616812560590 -1616812560619 ,112.567358,26.86644276,63.59483719,181.8515816,182.6926358,15.94893,0.144079379,1620000000000 ,1620000000000 ,1620000000000 ,1616812560600 -1616812560629 ,112.5673579,26.86644132,63.59550095,181.8480026,182.6819403,15.947816,0.144067848,1620000000000 ,1620000000000 ,1620000000000 ,1616812560610 -1616812560645 ,112.5673579,26.86643989,63.59624863,181.8457896,182.6743245,15.945578,0.144049988,1620000000000 ,1620000000000 ,1620000000000 ,1616812560620 -1616812560647 ,112.5673578,26.86643845,63.59716415,181.8440958,182.6831609,15.941829,0.144025671,1620000000000 ,1620000000000 ,1620000000000 ,1616812560630 -1616812560657 ,112.5673577,26.86643701,63.59830475,181.8420467,182.6914207,15.938034,0.143997661,1620000000000 ,1620000000000 ,1620000000000 ,1616812560640 -1616812560668 ,112.5673577,26.86643557,63.59970856,181.8396151,182.690275,15.93252,0.143957698,1620000000000 ,1620000000000 ,1620000000000 ,1616812560650 -1616812560678 ,112.5673576,26.86643413,63.60133362,181.8358449,182.6804266,15.928053,0.143916711,1620000000000 ,1620000000000 ,1620000000000 ,1616812560660 -1616812560688 ,112.5673575,26.8664327,63.60312653,181.8332221,182.6707329,15.925271,0.14389302,1620000000000 ,1620000000000 ,1620000000000 ,1616812560670 -1616812560699 ,112.5673575,26.86643126,63.60503006,181.8304081,182.6713004,15.923387,0.143876865,1620000000000 ,1620000000000 ,1620000000000 ,1616812560680 -1616812560710 ,112.5673574,26.86642982,63.60701752,181.8281951,182.6687486,15.924003,0.1438813,1620000000000 ,1620000000000 ,1620000000000 ,1616812560690 -1616812560724 ,112.5673573,26.86642838,63.60910034,181.8271569,182.653181,15.923264,0.143885136,1620000000000 ,1620000000000 ,1620000000000 ,1616812560700 -1616812560732 ,112.5673573,26.86642695,63.61128616,181.8246161,182.6417477,15.9189415,0.143856142,1620000000000 ,1620000000000 ,1620000000000 ,1616812560710 -1616812560739 ,112.5673572,26.86642551,63.61358261,181.8222938,182.6333058,15.9138775,0.14381922,1620000000000 ,1620000000000 ,1620000000000 ,1616812560720 -1616812560749 ,112.5673571,26.86642407,63.61591721,181.8216927,182.6218948,15.910207,0.14378528,1620000000000 ,1620000000000 ,1620000000000 ,1616812560730 -1616812560759 ,112.5673571,26.86642264,63.61825562,181.8213376,182.6166898,15.908417,0.14376499,1620000000000 ,1620000000000 ,1620000000000 ,1616812560740 -1616812560768 ,112.567357,26.8664212,63.62054062,181.8222938,182.6084804,15.90684,0.143755717,1620000000000 ,1620000000000 ,1620000000000 ,1616812560750 -1616812560779 ,112.5673569,26.86641977,63.6227417,181.8208185,182.6043207,15.905454,0.143745662,1620000000000 ,1620000000000 ,1620000000000 ,1616812560760 -1616812560791 ,112.5673569,26.86641833,63.6248703,181.8164471,182.6098871,15.903953,0.143729093,1620000000000 ,1620000000000 ,1620000000000 ,1616812560770 -1616812560801 ,112.5673568,26.86641689,63.62694168,181.8139336,182.6156599,15.903053,0.143722347,1620000000000 ,1620000000000 ,1620000000000 ,1616812560780 -1616812560811 ,112.5673568,26.86641546,63.62903976,181.8114201,182.62481,15.899929,0.143708339,1620000000000 ,1620000000000 ,1620000000000 ,1616812560790 -1616812560821 ,112.5673567,26.86641402,63.63117981,181.8086881,182.630208,15.895416,0.143674138,1620000000000 ,1620000000000 ,1620000000000 ,1616812560800 -1616812560830 ,112.5673566,26.86641259,63.63331223,181.805109,182.6344148,15.891509,0.143641419,1620000000000 ,1620000000000 ,1620000000000 ,1616812560810 -1616812560842 ,112.5673566,26.86641115,63.63534546,181.8025955,182.6435343,15.8910055,0.143628657,1620000000000 ,1620000000000 ,1620000000000 ,1616812560820 -1616812560851 ,112.5673565,26.86640972,63.6371994,181.8006557,182.6455241,15.893116,0.143639732,1620000000000 ,1620000000000 ,1620000000000 ,1616812560830 -1616812560861 ,112.5673564,26.86640828,63.63885498,181.7966396,182.6513916,15.893059,0.143642834,1620000000000 ,1620000000000 ,1620000000000 ,1616812560840 -1616812560870 ,112.5673564,26.86640685,63.6403656,181.7908203,182.6500579,15.891271,0.143629141,1620000000000 ,1620000000000 ,1620000000000 ,1616812560850 -1616812560882 ,112.5673563,26.86640541,63.64173889,181.7875145,182.6417835,15.890128,0.143612015,1620000000000 ,1620000000000 ,1620000000000 ,1616812560860 -1616812560892 ,112.5673562,26.86640398,63.64295959,181.7836896,182.6461094,15.889074,0.143595179,1620000000000 ,1620000000000 ,1620000000000 ,1616812560870 -1616812560900 ,112.5673562,26.86640255,63.64395523,181.7807936,182.651974,15.890273,0.143602036,1620000000000 ,1620000000000 ,1620000000000 ,1616812560880 -1616812560912 ,112.5673561,26.86640111,63.64468002,181.7769413,182.6615187,15.8917675,0.143602815,1620000000000 ,1620000000000 ,1620000000000 ,1616812560890 -1616812560922 ,112.567356,26.86639968,63.64519119,181.7712586,182.656155,15.891225,0.143592532,1620000000000 ,1620000000000 ,1620000000000 ,1616812560900 -1616812560930 ,112.567356,26.86639824,63.6455574,181.7652207,182.6595907,15.888671,0.143573499,1620000000000 ,1620000000000 ,1620000000000 ,1616812560910 -1616812560942 ,112.5673559,26.86639681,63.64587784,181.7609587,182.6713995,15.886229,0.143549192,1620000000000 ,1620000000000 ,1620000000000 ,1616812560920 -1616812560954 ,112.5673558,26.86639537,63.64615631,181.7563961,182.6793177,15.885983,0.143539228,1620000000000 ,1620000000000 ,1620000000000 ,1616812560930 -1616812560961 ,112.5673558,26.86639394,63.64641571,181.7520248,182.6833484,15.8859825,0.143536984,1620000000000 ,1620000000000 ,1620000000000 ,1616812560940 -1616812560975 ,112.5673557,26.86639251,63.64664841,181.7457683,182.6828982,15.885833,0.14353661,1620000000000 ,1620000000000 ,1620000000000 ,1616812560950 -1616812560984 ,112.5673556,26.86639107,63.64683914,181.7390474,182.6794587,15.88269,0.143514019,1620000000000 ,1620000000000 ,1620000000000 ,1616812560960 -1616812560994 ,112.5673556,26.86638964,63.64699554,181.7340751,182.6755142,15.880707,0.143487866,1620000000000 ,1620000000000 ,1620000000000 ,1616812560970 -1616812561002 ,112.5673555,26.86638821,63.6471405,181.7278459,182.6769421,15.879618,0.143478507,1620000000000 ,1620000000000 ,1620000000000 ,1616812560980 -1616812561011 ,112.5673554,26.86638677,63.6473465,181.7222452,182.6870206,15.878389,0.143467763,1620000000000 ,1620000000000 ,1620000000000 ,1616812560990 -1616812561021 ,112.5673554,26.86638534,63.64761353,181.7164532,182.6804604,15.877981,0.143464163,1620000000000 ,1620000000000 ,1620000000000 ,1616812561000 -1616812561033 ,112.5673553,26.86638391,63.64790726,181.70894,182.6729124,15.876711,0.143456816,1620000000000 ,1620000000000 ,1620000000000 ,1616812561010 -1616812561041 ,112.5673552,26.86638247,63.64818573,181.7011809,182.658949,15.87321,0.143430849,1620000000000 ,1620000000000 ,1620000000000 ,1616812561020 -1616812561051 ,112.5673552,26.86638104,63.64840698,181.6935857,182.6530838,15.868367,0.143387646,1620000000000 ,1620000000000 ,1620000000000 ,1616812561030 -1616812561062 ,112.5673551,26.86637961,63.64858627,181.6857993,182.6548901,15.865465,0.143351397,1620000000000 ,1620000000000 ,1620000000000 ,1616812561040 -1616812561074 ,112.567355,26.86637818,63.64874649,181.6775757,182.6524447,15.865444,0.143345676,1620000000000 ,1620000000000 ,1620000000000 ,1616812561050 -1616812561090 ,112.567355,26.86637675,63.64891815,181.6744339,182.645529,15.867543,0.1433592,1620000000000 ,1620000000000 ,1620000000000 ,1616812561060 -1616812561093 ,112.5673549,26.86637531,63.64910507,181.669762,182.6333403,15.868776,0.143375929,1620000000000 ,1620000000000 ,1620000000000 ,1616812561080 -1616812561102 ,112.5673548,26.86637388,63.64934158,181.6659644,182.6220925,15.867027,0.143366932,1620000000000 ,1620000000000 ,1620000000000 ,1616812561080 -1616812561114 ,112.5673548,26.86637245,63.64967728,181.6626313,182.6082218,15.861691,0.143330517,1620000000000 ,1620000000000 ,1620000000000 ,1616812561100 -1616812561122 ,112.5673547,26.86637102,63.65008926,181.6581507,182.5975624,15.857011,0.143288994,1620000000000 ,1620000000000 ,1620000000000 ,1616812561100 -1616812561133 ,112.5673546,26.86636959,63.6505394,181.6553913,182.596031,15.854013,0.14325803,1620000000000 ,1620000000000 ,1620000000000 ,1616812561120 -1616812561142 ,112.5673545,26.86636673,63.651474,181.6477415,182.6010751,15.851717,0.286497234,1620000000000 ,1620000000000 ,1620000000000 ,1616812561130 -1616812561153 ,112.5673544,26.86636529,63.65200043,181.6434521,182.5855001,15.853114,0.143249859,1620000000000 ,1620000000000 ,1620000000000 ,1616812561140 -1616812561162 ,112.5673544,26.86636386,63.652565,181.6388622,182.5558897,15.848134,0.143217945,1620000000000 ,1620000000000 ,1620000000000 ,1616812561150 -1616812561174 ,112.5673543,26.86636243,63.65309906,181.6349827,182.5460221,15.846155,0.143189012,1620000000000 ,1620000000000 ,1620000000000 ,1616812561160 -1616812561183 ,112.5673542,26.866361,63.65355301,181.633562,182.5453444,15.843558,0.14316532,1620000000000 ,1620000000000 ,1620000000000 ,1616812561170 -1616812561194 ,112.5673542,26.86635957,63.65390778,181.6294639,182.5486604,15.8448515,0.1431675,1620000000000 ,1620000000000 ,1620000000000 ,1616812561180 -1616812561204 ,112.5673542,26.86635957,63.65390778,181.6294639,-400,15.8448515,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812561180 -1616812561213 ,112.5673541,26.86635671,63.65455627,181.6278793,182.492371,15.831051,0.286141296,1620000000000 ,1620000000000 ,1620000000000 ,1616812561200 -1616812561223 ,112.5673541,26.86635671,63.65455627,181.6278793,-400,15.831051,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812561210 -1616812561233 ,112.5673539,26.86635386,63.65500259,181.6235626,182.3096366,15.819911,0.285217374,1620000000000 ,1620000000000 ,1620000000000 ,1616812561220 -1616812561244 ,112.5673539,26.86635244,63.65522766,181.6214316,182.3172143,15.819206,0.142564496,1620000000000 ,1620000000000 ,1620000000000 ,1616812561230 -1616812561255 ,112.5673538,26.86635102,63.65528107,181.620448,182.3253937,15.820826,0.142568777,1620000000000 ,1620000000000 ,1620000000000 ,1616812561240 -1616812561265 ,112.5673538,26.86634959,63.65515518,181.6188088,182.3244919,15.823561,0.142588632,1620000000000 ,1620000000000 ,1620000000000 ,1616812561250 -1616812561276 ,112.5673537,26.86634817,63.65494919,181.6164046,182.3156506,15.823762,0.142590932,1620000000000 ,1620000000000 ,1620000000000 ,1616812561260 -1616812561284 ,112.5673537,26.86634674,63.65475464,181.6147107,182.3076925,15.821837,0.142576543,1620000000000 ,1620000000000 ,1620000000000 ,1616812561270 -1616812561294 ,112.5673536,26.86634532,63.65461731,181.611924,182.3130287,15.816678,0.142541177,1620000000000 ,1620000000000 ,1620000000000 ,1616812561280 -1616812561306 ,112.5673535,26.86634389,63.65457535,181.6096837,182.318966,15.812962,0.142499889,1620000000000 ,1620000000000 ,1620000000000 ,1616812561290 -1616812561317 ,112.5673535,26.86634247,63.65459824,181.6065691,182.3152996,15.811619,0.14248928,1620000000000 ,1620000000000 ,1620000000000 ,1616812561300 -1616812561327 ,112.5673534,26.86634105,63.65462494,181.6040556,182.3085351,15.811313,0.14247846,1620000000000 ,1620000000000 ,1620000000000 ,1616812561310 -1616812561345 ,112.5673534,26.86633962,63.65459824,181.6031813,182.3160854,15.81291,0.142492691,1620000000000 ,1620000000000 ,1620000000000 ,1616812561320 -1616812561347 ,112.5673533,26.8663382,63.65461731,181.5982636,182.330794,15.810261,0.142482778,1620000000000 ,1620000000000 ,1620000000000 ,1616812561330 -1616812561356 ,112.5673532,26.86633678,63.65478897,181.5931819,182.3246123,15.805823,0.142444822,1620000000000 ,1620000000000 ,1620000000000 ,1616812561340 -1616812561365 ,112.5673532,26.86633535,63.65513611,181.5897122,182.3289998,15.802258,0.142413333,1620000000000 ,1620000000000 ,1620000000000 ,1616812561350 -1616812561375 ,112.5673531,26.86633393,63.65555191,181.5880729,182.3303395,15.799834,0.142391722,1620000000000 ,1620000000000 ,1620000000000 ,1616812561360 -1616812561384 ,112.5673531,26.86633251,63.65595245,181.5854775,182.3336569,15.797782,0.142378755,1620000000000 ,1620000000000 ,1620000000000 ,1616812561370 -1616812561400 ,112.567353,26.86633108,63.65634155,181.5817072,182.3414735,15.797022,0.142364037,1620000000000 ,1620000000000 ,1620000000000 ,1616812561380 -1616812561408 ,112.567353,26.86632966,63.65672684,181.5755327,182.3322923,15.796651,0.142357811,1620000000000 ,1620000000000 ,1620000000000 ,1616812561390 -1616812561417 ,112.5673529,26.86632824,63.65707779,181.5703964,182.328969,15.796067,0.142352723,1620000000000 ,1620000000000 ,1620000000000 ,1616812561400 -1616812561427 ,112.5673528,26.86632682,63.65741348,181.5664622,182.3329544,15.794728,0.142341866,1620000000000 ,1620000000000 ,1620000000000 ,1616812561410 -1616812561440 ,112.5673528,26.8663254,63.65778732,181.5622821,182.3359635,15.791606,0.142321812,1620000000000 ,1620000000000 ,1620000000000 ,1616812561420 -1616812561447 ,112.5673527,26.86632397,63.65825653,181.5570639,182.3315941,15.787808,0.142290275,1620000000000 ,1620000000000 ,1620000000000 ,1616812561430 -1616812561456 ,112.5673527,26.86632255,63.65880203,181.5530477,182.3253978,15.785987,0.142272258,1620000000000 ,1620000000000 ,1620000000000 ,1616812561440 -1616812561466 ,112.5673526,26.86632113,63.65948868,181.5507528,182.4042596,15.782496,0.142432184,1620000000000 ,1620000000000 ,1620000000000 ,1616812561450 -1616812561475 ,112.5673525,26.8663197,63.66025162,181.5451794,182.4965383,15.786612,0.142634391,1620000000000 ,1620000000000 ,1620000000000 ,1616812561460 -1616812561494 ,112.5673525,26.86631828,63.66091919,181.5420648,182.4969136,15.780302,0.14259839,1620000000000 ,1620000000000 ,1620000000000 ,1616812561470 -1616812561500 ,112.5673524,26.86631685,63.6615448,181.5329397,182.4834406,15.7824955,0.142608604,1620000000000 ,1620000000000 ,1620000000000 ,1616812561480 -1616812561510 ,112.5673524,26.86631543,63.66221237,181.5263554,182.4709815,15.778864,0.142577636,1620000000000 ,1620000000000 ,1620000000000 ,1616812561490 -1616812561516 ,112.5673523,26.86631401,63.66287613,181.5217108,182.4760056,15.778431,0.142566401,1620000000000 ,1620000000000 ,1620000000000 ,1616812561500 -1616812561526 ,112.5673522,26.86631258,63.66352844,181.5172302,182.4869714,15.774542,0.142546698,1620000000000 ,1620000000000 ,1620000000000 ,1616812561510 -1616812561538 ,112.5673522,26.86631116,63.66417313,181.5135692,182.4755733,15.770941,0.142516337,1620000000000 ,1620000000000 ,1620000000000 ,1616812561520 -1616812561547 ,112.5673521,26.86630973,63.6648941,181.5081051,182.4619276,15.767618,0.142481114,1620000000000 ,1620000000000 ,1620000000000 ,1616812561530 -1616812561557 ,112.5673521,26.86630831,63.66560745,181.501712,182.4446956,15.766839,0.142465149,1620000000000 ,1620000000000 ,1620000000000 ,1616812561540 -1616812561569 ,112.567352,26.86630689,63.66623688,181.4968763,182.4449562,15.767784,0.142469993,1620000000000 ,1620000000000 ,1620000000000 ,1616812561550 -1616812561577 ,112.5673519,26.86630546,63.66677856,181.4911935,182.455095,15.7678385,0.142472402,1620000000000 ,1620000000000 ,1620000000000 ,1616812561560 -1616812561587 ,112.5673519,26.86630404,63.66730118,181.4858113,182.4476736,15.76593,0.142457168,1620000000000 ,1620000000000 ,1620000000000 ,1616812561570 -1616812561596 ,112.5673518,26.86630262,63.66787338,181.480757,182.4322914,15.762299,0.14242932,1620000000000 ,1620000000000 ,1620000000000 ,1616812561580 -1616812561607 ,112.5673518,26.8663012,63.66845322,181.4760852,182.4182361,15.760656,0.142407917,1620000000000 ,1620000000000 ,1620000000000 ,1616812561590 -1616812561617 ,112.5673517,26.86629977,63.66896057,181.4719597,182.4154385,15.760188,0.14239887,1620000000000 ,1620000000000 ,1620000000000 ,1616812561600 -1616812561630 ,112.5673516,26.86629835,63.66936111,181.4666322,182.4077469,15.759745,0.142390068,1620000000000 ,1620000000000 ,1620000000000 ,1616812561610 -1616812561637 ,112.5673516,26.86629693,63.66973114,181.4597747,182.400525,15.757366,0.142373662,1620000000000 ,1620000000000 ,1620000000000 ,1616812561620 -1616812561647 ,112.5673515,26.86629551,63.67016983,181.4537368,182.3928586,15.753447,0.142339237,1620000000000 ,1620000000000 ,1620000000000 ,1616812561630 -1616812561657 ,112.5673515,26.86629408,63.6706543,181.4483819,182.3890684,15.751547,0.142322405,1620000000000 ,1620000000000 ,1620000000000 ,1616812561640 -1616812561667 ,112.5673514,26.86629266,63.67112732,181.4439833,182.3869531,15.750008,0.142304734,1620000000000 ,1620000000000 ,1620000000000 ,1616812561650 -1616812561677 ,112.5673513,26.86629124,63.67158127,181.4378634,182.381148,15.74779,0.142287395,1620000000000 ,1620000000000 ,1620000000000 ,1616812561660 -1616812561691 ,112.5673513,26.86628982,63.67205811,181.4322627,182.3727896,15.74543,0.142267074,1620000000000 ,1620000000000 ,1620000000000 ,1616812561670 -1616812561699 ,112.5673512,26.8662884,63.6725769,181.4253778,182.3663592,15.743096,0.142248559,1620000000000 ,1620000000000 ,1620000000000 ,1616812561680 -1616812561708 ,112.5673512,26.86628698,63.67309952,181.4195585,182.3617185,15.740912,0.142226682,1620000000000 ,1620000000000 ,1620000000000 ,1616812561690 -1616812561717 ,112.5673511,26.86628556,63.67366028,181.4150233,182.3644522,15.738154,0.142206975,1620000000000 ,1620000000000 ,1620000000000 ,1616812561700 -1616812561728 ,112.567351,26.86628413,63.67428589,181.4094498,182.3478115,15.734579,0.14217902,1620000000000 ,1620000000000 ,1620000000000 ,1616812561710 -1616812561737 ,112.567351,26.86628271,63.67497253,181.4038764,182.3302602,15.73238,0.142155232,1620000000000 ,1620000000000 ,1620000000000 ,1616812561720 -1616812561750 ,112.5673509,26.86628129,63.67566299,181.4002701,182.3171784,15.730254,0.142136384,1620000000000 ,1620000000000 ,1620000000000 ,1616812561730 -1616812561758 ,112.5673509,26.86627987,63.67634201,181.3974287,182.3093144,15.7268715,0.142110211,1620000000000 ,1620000000000 ,1620000000000 ,1616812561740 -1616812561769 ,112.5673508,26.86627845,63.67705154,181.3945054,182.302376,15.723476,0.142081385,1620000000000 ,1620000000000 ,1620000000000 ,1616812561750 -1616812561779 ,112.5673508,26.86627704,63.67778778,181.3916094,182.2901702,15.721875,0.142061966,1620000000000 ,1620000000000 ,1620000000000 ,1616812561760 -1616812561791 ,112.5673507,26.86627562,63.67848969,181.3868829,182.2806986,15.720565,0.142050589,1620000000000 ,1620000000000 ,1620000000000 ,1616812561770 -1616812561800 ,112.5673506,26.8662742,63.67910767,181.3843147,182.2800955,15.718512,0.1420311,1620000000000 ,1620000000000 ,1620000000000 ,1616812561780 -1616812561808 ,112.5673506,26.86627278,63.67965698,181.3802986,182.2808509,15.716447,0.142011259,1620000000000 ,1620000000000 ,1620000000000 ,1616812561790 -1616812561820 ,112.5673505,26.86627136,63.68016434,181.3768015,182.279539,15.713711,0.14198719,1620000000000 ,1620000000000 ,1620000000000 ,1616812561800 -1616812561829 ,112.5673505,26.86626994,63.6806488,181.3723482,182.2757901,15.710629,0.141959321,1620000000000 ,1620000000000 ,1620000000000 ,1616812561810 -1616812561839 ,112.5673504,26.86626852,63.68108749,181.3693976,182.2711034,15.708049,0.141931234,1620000000000 ,1620000000000 ,1620000000000 ,1616812561820 -1616812561849 ,112.5673504,26.8662671,63.68143845,181.3653541,182.2627041,15.706556,0.141911502,1620000000000 ,1620000000000 ,1620000000000 ,1616812561830 -1616812561859 ,112.5673503,26.86626569,63.68172073,181.3615565,182.2624751,15.706292,0.141904188,1620000000000 ,1620000000000 ,1620000000000 ,1616812561840 -1616812561870 ,112.5673502,26.86626427,63.68197632,181.3569667,182.2593842,15.703527,0.141883237,1620000000000 ,1620000000000 ,1620000000000 ,1616812561850 -1616812561879 ,112.5673502,26.86626285,63.68226624,181.3530325,182.248882,15.700861,0.141859208,1620000000000 ,1620000000000 ,1620000000000 ,1616812561860 -1616812561890 ,112.5673501,26.86626143,63.68261719,181.350355,182.2454118,15.695089,0.141816498,1620000000000 ,1620000000000 ,1620000000000 ,1616812561870 -1616812561901 ,112.5673501,26.86626002,63.6829834,181.3484972,182.2363511,15.69125,0.141774881,1620000000000 ,1620000000000 ,1620000000000 ,1616812561880 -1616812561911 ,112.56735,26.8662586,63.68334961,181.3451914,182.2382232,15.689562,0.14175399,1620000000000 ,1620000000000 ,1620000000000 ,1616812561890 -1616812561925 ,112.56735,26.86625718,63.68370819,181.3423227,182.2368544,15.689013,0.141745478,1620000000000 ,1620000000000 ,1620000000000 ,1616812561900 -1616812561935 ,112.5673499,26.86625577,63.68407822,181.338771,182.2364,15.686076,0.141727505,1620000000000 ,1620000000000 ,1620000000000 ,1616812561910 -1616812561944 ,112.5673499,26.86625435,63.68448257,181.3316403,182.2390157,15.682721,0.141697367,1620000000000 ,1620000000000 ,1620000000000 ,1616812561920 -1616812561950 ,112.5673498,26.86625294,63.68492889,181.3279793,182.2361401,15.673388,0.141628439,1620000000000 ,1620000000000 ,1620000000000 ,1616812561930 -1616812561965 ,112.5673497,26.86625152,63.68538284,181.3272144,182.2334657,15.66988,0.141573503,1620000000000 ,1620000000000 ,1620000000000 ,1616812561940 -1616812561973 ,112.5673497,26.86625011,63.68583679,181.3267772,182.2349576,15.668671,0.141563694,1620000000000 ,1620000000000 ,1620000000000 ,1616812561950 -1616812561983 ,112.5673496,26.86624869,63.6862793,181.3239905,182.2208592,15.668172,0.141553225,1620000000000 ,1620000000000 ,1620000000000 ,1616812561960 -1616812561991 ,112.5673496,26.86624728,63.68677902,181.3218322,182.2169929,15.667598,0.14155012,1620000000000 ,1620000000000 ,1620000000000 ,1616812561970 -1616812562002 ,112.5673495,26.86624586,63.68735504,181.3174335,182.2239074,15.665953,0.141540284,1620000000000 ,1620000000000 ,1620000000000 ,1616812561980 -1616812562012 ,112.5673495,26.86624445,63.6879921,181.3141004,182.2317607,15.662265,0.141513407,1620000000000 ,1620000000000 ,1620000000000 ,1616812561990 -1616812562021 ,112.5673494,26.86624304,63.68863297,181.3104941,182.2288401,15.658452,0.141477936,1620000000000 ,1620000000000 ,1620000000000 ,1616812562000 -1616812562031 ,112.5673494,26.86624162,63.68922424,181.3074888,182.2216325,15.653034,0.141431574,1620000000000 ,1620000000000 ,1620000000000 ,1616812562010 -1616812562041 ,112.5673493,26.86624021,63.68977356,181.3051938,182.2187017,15.649872,0.141389696,1620000000000 ,1620000000000 ,1620000000000 ,1616812562020 -1616812562053 ,112.5673492,26.86623739,63.69088364,181.3031448,182.2289731,15.64713,0.282739169,1620000000000 ,1620000000000 ,1620000000000 ,1616812562040 -1616812562064 ,112.5673491,26.86623597,63.69153214,181.3017241,182.2291244,15.645519,0.141347555,1620000000000 ,1620000000000 ,1620000000000 ,1616812562050 -1616812562074 ,112.5673491,26.86623456,63.69227982,181.2980904,182.2336546,15.642332,0.141326065,1620000000000 ,1620000000000 ,1620000000000 ,1616812562060 -1616812562085 ,112.567349,26.86623315,63.6930809,181.2947573,182.2287089,15.640751,0.1413068,1620000000000 ,1620000000000 ,1620000000000 ,1616812562070 -1616812562096 ,112.567349,26.86623174,63.69389343,181.2908777,182.2263464,15.6372595,0.141277388,1620000000000 ,1620000000000 ,1620000000000 ,1616812562080 -1616812562106 ,112.567349,26.86623174,63.69389343,181.2908777,-400,15.6372595,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812562090 -1616812562114 ,112.5673489,26.86622891,63.695755,181.286042,182.2337022,15.62707,0.282483681,1620000000000 ,1620000000000 ,1620000000000 ,1616812562100 -1616812562126 ,112.5673488,26.8662275,63.69698334,181.2836104,182.2306126,15.627515,0.141214813,1620000000000 ,1620000000000 ,1620000000000 ,1616812562110 -1616812562138 ,112.5673488,26.86622609,63.69847107,181.2836651,182.2286266,15.616404,0.141123997,1620000000000 ,1620000000000 ,1620000000000 ,1616812562120 -1616812562146 ,112.5673487,26.86622468,63.70000458,181.2862059,182.2282645,15.614248,0.141089757,1620000000000 ,1620000000000 ,1620000000000 ,1616812562130 -1616812562159 ,112.5673487,26.86622327,63.70137787,181.2878725,182.2300304,15.613689,0.141083338,1620000000000 ,1620000000000 ,1620000000000 ,1616812562140 -1616812562165 ,112.5673486,26.86622186,63.70256805,181.2876812,182.2342511,15.617803,0.141099532,1620000000000 ,1620000000000 ,1620000000000 ,1616812562150 -1616812562182 ,112.5673485,26.86622045,63.7036438,181.2851131,182.2227684,15.624135,0.141147812,1620000000000 ,1620000000000 ,1620000000000 ,1616812562160 -1616812562191 ,112.5673485,26.86621904,63.70469284,181.2818619,182.2192393,15.621592,0.141147856,1620000000000 ,1620000000000 ,1620000000000 ,1616812562170 -1616812562198 ,112.5673484,26.86621763,63.70586395,181.2817799,182.2170155,15.612122,0.141088717,1620000000000 ,1620000000000 ,1620000000000 ,1616812562180 -1616812562207 ,112.5673484,26.86621622,63.70730209,181.2822717,182.2154725,15.598949,0.140982067,1620000000000 ,1620000000000 ,1620000000000 ,1616812562190 -1616812562215 ,112.5673483,26.86621482,63.70911407,181.2939104,182.005241,15.579719,0.140749982,1620000000000 ,1620000000000 ,1620000000000 ,1616812562200 -1616812562226 ,112.5673483,26.86621341,63.71109772,181.2979538,181.6424132,15.581338,0.140445769,1620000000000 ,1620000000000 ,1620000000000 ,1616812562210 -1616812562237 ,112.5673482,26.86621201,63.71290207,181.302571,181.6514807,15.584847,0.140476826,1620000000000 ,1620000000000 ,1620000000000 ,1616812562220 -1616812562247 ,112.5673482,26.86621061,63.71453476,181.306314,181.6628802,15.585432,0.140486165,1620000000000 ,1620000000000 ,1620000000000 ,1616812562230 -1616812562258 ,112.5673482,26.8662092,63.71616364,181.3091007,181.6538811,15.582785,0.140469163,1620000000000 ,1620000000000 ,1620000000000 ,1616812562240 -1616812562268 ,112.5673481,26.8662078,63.71787262,181.3127617,181.6408197,15.579671,0.140450404,1620000000000 ,1620000000000 ,1620000000000 ,1616812562250 -1616812562277 ,112.5673481,26.86620639,63.71955109,181.3204388,181.6413975,15.575377,0.140411947,1620000000000 ,1620000000000 ,1620000000000 ,1616812562260 -1616812562287 ,112.567348,26.86620499,63.72107315,181.3276242,181.6416678,15.5741,0.140389476,1620000000000 ,1620000000000 ,1620000000000 ,1616812562270 -1616812562296 ,112.567348,26.86620359,63.72240829,181.3332249,181.6408927,15.571714,0.140365005,1620000000000 ,1620000000000 ,1620000000000 ,1616812562280 -1616812562306 ,112.567348,26.86620218,63.72361374,181.3361482,181.6309202,15.56855,0.140333032,1620000000000 ,1620000000000 ,1620000000000 ,1616812562290 -1616812562316 ,112.5673479,26.86620078,63.72471619,181.3413119,181.6321042,15.568071,0.140318821,1620000000000 ,1620000000000 ,1620000000000 ,1616812562300 -1616812562326 ,112.5673479,26.86619938,63.72571945,181.3471039,181.6427384,15.568073,0.140313425,1620000000000 ,1620000000000 ,1620000000000 ,1616812562310 -1616812562337 ,112.5673478,26.86619798,63.72664261,181.3515845,181.6466819,15.568614,0.140317825,1620000000000 ,1620000000000 ,1620000000000 ,1616812562320 -1616812562348 ,112.5673478,26.86619657,63.72756958,181.3545898,181.6537707,15.56755,0.140313377,1620000000000 ,1620000000000 ,1620000000000 ,1616812562330 -1616812562359 ,112.5673478,26.86619517,63.72848892,181.3606276,181.6536791,15.564717,0.140289729,1620000000000 ,1620000000000 ,1620000000000 ,1616812562340 -1616812562374 ,112.5673477,26.86619377,63.72933197,181.367048,181.6575986,15.562193,0.140262445,1620000000000 ,1620000000000 ,1620000000000 ,1616812562350 -1616812562377 ,112.5673477,26.86619237,63.73006058,181.3730039,181.6776869,15.560823,0.1402431,1620000000000 ,1620000000000 ,1620000000000 ,1616812562360 -1616812562400 ,112.5673476,26.86619097,63.73071671,181.3779217,181.693895,15.558854,0.140224056,1620000000000 ,1620000000000 ,1620000000000 ,1616812562370 -1616812562403 ,112.5673476,26.86618956,63.73138428,181.3829214,181.7017703,15.557441,0.140209858,1620000000000 ,1620000000000 ,1620000000000 ,1616812562380 -1616812562410 ,112.5673476,26.86618816,63.73209,181.3856535,181.7041409,15.556532,0.140202052,1620000000000 ,1620000000000 ,1620000000000 ,1616812562390 -1616812562418 ,112.5673475,26.86618676,63.7327919,181.3892325,181.7089168,15.554791,0.140185842,1620000000000 ,1620000000000 ,1620000000000 ,1616812562400 -1616812562431 ,112.5673475,26.86618536,63.73341751,181.3919099,181.7164155,15.552614,0.140160372,1620000000000 ,1620000000000 ,1620000000000 ,1616812562410 -1616812562438 ,112.5673474,26.86618396,63.73391342,181.3940956,181.7268151,15.5517025,0.140152508,1620000000000 ,1620000000000 ,1620000000000 ,1616812562420 -1616812562449 ,112.5673474,26.86618256,63.73428345,181.3946147,181.7320449,15.55235,0.140139059,1620000000000 ,1620000000000 ,1620000000000 ,1616812562430 -1616812562458 ,112.5673473,26.86618116,63.73461151,181.392347,181.7279304,15.550209,0.140131679,1620000000000 ,1620000000000 ,1620000000000 ,1616812562440 -1616812562468 ,112.5673473,26.86617976,63.73487473,181.3921558,181.9368778,15.548274,0.140285742,1620000000000 ,1620000000000 ,1620000000000 ,1616812562450 -1616812562478 ,112.5673472,26.86617835,63.73506927,181.3920465,182.1478934,15.545294,0.140436443,1620000000000 ,1620000000000 ,1620000000000 ,1616812562460 -1616812562488 ,112.5673472,26.86617695,63.73535156,181.3921285,182.1547675,15.539552,0.140387534,1620000000000 ,1620000000000 ,1620000000000 ,1616812562470 -1616812562498 ,112.5673471,26.86617555,63.73576355,181.3917733,182.1575953,15.535235,0.140348647,1620000000000 ,1620000000000 ,1620000000000 ,1616812562480 -1616812562511 ,112.5673471,26.86617415,63.73622894,181.3922378,182.1552341,15.535291,0.140341886,1620000000000 ,1620000000000 ,1620000000000 ,1616812562490 -1616812562520 ,112.567347,26.86617274,63.73668289,181.3901887,182.1584911,15.535951,0.140347248,1620000000000 ,1620000000000 ,1620000000000 ,1616812562500 -1616812562531 ,112.567347,26.86617134,63.73712921,181.3908717,182.1656453,15.534222,0.140335822,1620000000000 ,1620000000000 ,1620000000000 ,1616812562510 -1616812562541 ,112.5673469,26.86616994,63.7376709,181.3903526,182.1771443,15.530401,0.140311432,1620000000000 ,1620000000000 ,1620000000000 ,1616812562520 -1616812562555 ,112.5673469,26.86616854,63.73838043,181.3921285,182.1821547,15.524639,0.140267504,1620000000000 ,1620000000000 ,1620000000000 ,1616812562530 -1616812562564 ,112.5673468,26.86616714,63.73922348,181.3913908,182.1822273,15.519612,0.140225444,1620000000000 ,1620000000000 ,1620000000000 ,1616812562540 -1616812562569 ,112.5673468,26.86616574,63.74013519,181.3915274,182.1872129,15.514597,0.140183668,1620000000000 ,1620000000000 ,1620000000000 ,1616812562550 -1616812562579 ,112.5673467,26.86616433,63.74103928,181.3918279,182.193116,15.513421,0.140160834,1620000000000 ,1620000000000 ,1620000000000 ,1616812562560 -1616812562591 ,112.5673467,26.86616293,63.7419014,181.3911996,182.1927915,15.514144,0.140168643,1620000000000 ,1620000000000 ,1620000000000 ,1616812562570 -1616812562601 ,112.5673466,26.86616153,63.74272156,181.3890412,182.1938912,15.511791,0.140150538,1620000000000 ,1620000000000 ,1620000000000 ,1616812562580 -1616812562611 ,112.5673466,26.86616013,63.74351883,181.3875932,182.1960502,15.510949,0.140139353,1620000000000 ,1620000000000 ,1620000000000 ,1616812562590 -1616812562620 ,112.5673465,26.86615873,63.74430847,181.3901341,182.1992798,15.509447,0.140128446,1620000000000 ,1620000000000 ,1620000000000 ,1616812562600 -1616812562630 ,112.5673464,26.86615733,63.74513245,181.3905712,182.1942824,15.503785,0.140088854,1620000000000 ,1620000000000 ,1620000000000 ,1616812562610 -1616812562640 ,112.5673464,26.86615593,63.74604034,181.3900794,182.1860678,15.49852,0.14003972,1620000000000 ,1620000000000 ,1620000000000 ,1616812562620 -1616812562649 ,112.5673463,26.86615453,63.74703979,181.3889319,182.177977,15.493705,0.139999685,1620000000000 ,1620000000000 ,1620000000000 ,1616812562630 -1616812562660 ,112.5673463,26.86615314,63.74806595,181.3891505,182.1727134,15.490738,0.139969471,1620000000000 ,1620000000000 ,1620000000000 ,1616812562640 -1616812562670 ,112.5673462,26.86615174,63.74905777,181.3904619,182.1754724,15.489299,0.139955711,1620000000000 ,1620000000000 ,1620000000000 ,1616812562650 -1616812562680 ,112.5673462,26.86615034,63.74999619,181.3913362,182.1803341,15.486702,0.139929394,1620000000000 ,1620000000000 ,1620000000000 ,1616812562660 -1616812562693 ,112.5673461,26.86614894,63.7509346,181.3936858,182.1860246,15.483819,0.139906279,1620000000000 ,1620000000000 ,1620000000000 ,1616812562670 -1616812562702 ,112.5673461,26.86614754,63.75188828,181.3964725,182.1753081,15.481653,0.139886121,1620000000000 ,1620000000000 ,1620000000000 ,1616812562680 -1616812562712 ,112.567346,26.86614615,63.75284195,181.3979478,182.1723753,15.479012,0.139863852,1620000000000 ,1620000000000 ,1620000000000 ,1616812562690 -1616812562720 ,112.567346,26.86614475,63.7537384,181.4001335,182.1845906,15.476665,0.139840335,1620000000000 ,1620000000000 ,1620000000000 ,1616812562700 -1616812562731 ,112.5673459,26.86614335,63.75454712,181.4030841,182.197429,15.475832,0.139825421,1620000000000 ,1620000000000 ,1620000000000 ,1616812562710 -1616812562741 ,112.5673459,26.86614195,63.75529099,181.4035212,182.2070561,15.473934,0.13981098,1620000000000 ,1620000000000 ,1620000000000 ,1616812562720 -1616812562751 ,112.5673458,26.86614056,63.75602722,181.4030568,182.2151184,15.47283,0.139791662,1620000000000 ,1620000000000 ,1620000000000 ,1616812562730 -1616812562762 ,112.5673458,26.86613916,63.7567749,181.4028382,182.2213596,15.469138,0.139779472,1620000000000 ,1620000000000 ,1620000000000 ,1616812562740 -1616812562774 ,112.5673457,26.86613776,63.75749588,181.4049692,182.2210766,15.467105,0.139744584,1620000000000 ,1620000000000 ,1620000000000 ,1616812562750 -1616812562784 ,112.5673456,26.86613637,63.7582283,181.405543,182.230847,15.465628,0.139733037,1620000000000 ,1620000000000 ,1620000000000 ,1616812562770 -1616812562794 ,112.5673456,26.86613497,63.75902939,181.4053517,182.2331628,15.463624,0.139716876,1620000000000 ,1620000000000 ,1620000000000 ,1616812562780 -1616812562803 ,112.5673455,26.86613358,63.75991058,181.4045867,182.2347105,15.461752,0.139709633,1620000000000 ,1620000000000 ,1620000000000 ,1616812562780 -1616812562812 ,112.5673455,26.86613218,63.76082611,181.4067724,182.2324776,15.46015,0.139692393,1620000000000 ,1620000000000 ,1620000000000 ,1616812562800 -1616812562822 ,112.5673454,26.86613078,63.76173401,181.4074281,182.2346496,15.458461,0.139675827,1620000000000 ,1620000000000 ,1620000000000 ,1616812562810 -1616812562832 ,112.5673454,26.86612939,63.76264572,181.41057,182.2419335,15.4562235,0.13965971,1620000000000 ,1620000000000 ,1620000000000 ,1616812562810 -1616812562843 ,112.5673453,26.8661266,63.76448059,181.4121273,182.2396705,15.453634,0.279292992,1620000000000 ,1620000000000 ,1620000000000 ,1616812562830 -1616812562855 ,112.5673452,26.8661252,63.76541519,181.4128376,182.2412188,15.451321,0.139620171,1620000000000 ,1620000000000 ,1620000000000 ,1616812562840 -1616812562867 ,112.5673452,26.86612381,63.76634979,181.4128922,182.2573681,15.447566,0.139592677,1620000000000 ,1620000000000 ,1620000000000 ,1616812562850 -1616812562879 ,112.5673451,26.86612241,63.76726532,181.4138758,182.2637043,15.445936,0.139571357,1620000000000 ,1620000000000 ,1620000000000 ,1616812562860 -1616812562884 ,112.567345,26.86612102,63.76813507,181.414914,182.2623577,15.445642,0.139564971,1620000000000 ,1620000000000 ,1620000000000 ,1616812562870 -1616812562893 ,112.567345,26.86611962,63.76896286,181.4159249,182.2628263,15.446536,0.139571861,1620000000000 ,1620000000000 ,1620000000000 ,1616812562880 -1616812562904 ,112.567345,26.86611962,63.76896286,181.4159249,-400,15.446536,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812562890 -1616812562914 ,112.5673449,26.86611683,63.77051544,181.4181925,182.2667599,15.440962,0.279113026,1620000000000 ,1620000000000 ,1620000000000 ,1616812562900 -1616812562923 ,112.5673448,26.86611544,63.77126694,181.4185476,182.2777284,15.437257,0.139505721,1620000000000 ,1620000000000 ,1620000000000 ,1616812562910 -1616812562935 ,112.5673448,26.86611544,63.77126694,181.4185476,-400,15.437257,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812562910 -1616812562944 ,112.5673447,26.86611265,63.77272415,181.4204055,182.2729984,15.431086,0.278928974,1620000000000 ,1620000000000 ,1620000000000 ,1616812562930 -1616812562954 ,112.5673447,26.86611126,63.77337646,181.4201596,182.269028,15.429342,0.139430316,1620000000000 ,1620000000000 ,1620000000000 ,1616812562940 -1616812562964 ,112.5673446,26.86610987,63.77394867,181.4190121,182.272348,15.427595,0.139413904,1620000000000 ,1620000000000 ,1620000000000 ,1616812562950 -1616812562973 ,112.5673445,26.86610847,63.77443314,181.4207606,182.2700008,15.427454,0.13940532,1620000000000 ,1620000000000 ,1620000000000 ,1616812562960 -1616812562986 ,112.5673445,26.86610708,63.77481079,181.4247768,182.2730639,15.428924,0.139413911,1620000000000 ,1620000000000 ,1620000000000 ,1616812562970 -1616812562996 ,112.5673444,26.86610569,63.77508545,181.4272083,182.2742603,15.430213,0.13942484,1620000000000 ,1620000000000 ,1620000000000 ,1616812562980 -1616812563004 ,112.5673444,26.86610569,63.77508545,181.4272083,-400,15.430213,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812562990 -1616812563014 ,112.5673443,26.8661029,63.7754097,181.4323993,182.266784,15.42277,0.278766043,1620000000000 ,1620000000000 ,1620000000000 ,1616812563000 -1616812563025 ,112.5673443,26.86610151,63.77544785,181.4364427,182.2769854,15.41978,0.139330312,1620000000000 ,1620000000000 ,1620000000000 ,1616812563010 -1616812563035 ,112.5673442,26.86610012,63.77538681,181.4407867,182.2960887,15.417532,0.139305529,1620000000000 ,1620000000000 ,1620000000000 ,1616812563020 -1616812563046 ,112.5673442,26.86609873,63.77521515,181.4447209,182.3037067,15.4164915,0.139287528,1620000000000 ,1620000000000 ,1620000000000 ,1616812563030 -1616812563055 ,112.5673441,26.86609734,63.77492142,181.446688,182.299984,15.417958,0.139291292,1620000000000 ,1620000000000 ,1620000000000 ,1616812563040 -1616812563068 ,112.567344,26.86609594,63.77452469,181.4492835,182.3099415,15.419735,0.139298312,1620000000000 ,1620000000000 ,1620000000000 ,1616812563050 -1616812563075 ,112.567344,26.86609455,63.7740097,181.4519609,182.3158817,15.420334,0.139304108,1620000000000 ,1620000000000 ,1620000000000 ,1616812563060 -1616812563085 ,112.5673439,26.86609316,63.77338409,181.4528079,182.3250507,15.418697,0.139284238,1620000000000 ,1620000000000 ,1620000000000 ,1616812563070 -1616812563097 ,112.5673439,26.86609177,63.77270126,181.4547476,182.336233,15.4195175,0.139289636,1620000000000 ,1620000000000 ,1620000000000 ,1616812563080 -1616812563104 ,112.5673438,26.86609038,63.77202606,181.4558132,182.3526275,15.415808,0.139255786,1620000000000 ,1620000000000 ,1620000000000 ,1616812563090 -1616812563115 ,112.5673438,26.86608899,63.77141953,181.4566874,182.3653227,15.415604,0.139252377,1620000000000 ,1620000000000 ,1620000000000 ,1616812563100 -1616812563126 ,112.5673437,26.86608759,63.77085114,181.4572885,182.3605532,15.411149,0.139216947,1620000000000 ,1620000000000 ,1620000000000 ,1616812563110 -1616812563137 ,112.5673436,26.8660862,63.77039337,181.4541739,182.3838069,15.407113,0.139182282,1620000000000 ,1620000000000 ,1620000000000 ,1616812563120 -1616812563146 ,112.5673436,26.86608481,63.77002335,181.4522341,182.3944248,15.402626,0.139146863,1620000000000 ,1620000000000 ,1620000000000 ,1616812563130 -1616812563155 ,112.5673435,26.86608342,63.76968002,181.4484366,182.4014068,15.403707,0.139137352,1620000000000 ,1620000000000 ,1620000000000 ,1616812563140 -1616812563164 ,112.5673435,26.86608203,63.76932907,181.4468246,182.4095765,15.407176,0.139157683,1620000000000 ,1620000000000 ,1620000000000 ,1616812563150 -1616812563175 ,112.5673434,26.86608064,63.76894379,181.4449395,182.4148697,15.411306,0.139196287,1620000000000 ,1620000000000 ,1620000000000 ,1616812563160 -1616812563185 ,112.5673434,26.86607925,63.76861572,181.4424533,182.4119936,15.411431,0.13920697,1620000000000 ,1620000000000 ,1620000000000 ,1616812563170 -1616812563196 ,112.5673433,26.86607786,63.76842499,181.4374536,182.4071157,15.407258,0.139177716,1620000000000 ,1620000000000 ,1620000000000 ,1616812563180 -1616812563208 ,112.5673432,26.86607647,63.76843262,181.4326725,182.4172631,15.402016,0.139136378,1620000000000 ,1620000000000 ,1620000000000 ,1616812563190 -1616812563218 ,112.5673432,26.86607508,63.76887894,181.4230556,182.3067571,15.420087,0.139421091,1620000000000 ,1620000000000 ,1620000000000 ,1616812563200 -1616812563228 ,112.5673431,26.86607368,63.76984406,181.4151326,182.1143664,15.419706,0.139913919,1620000000000 ,1620000000000 ,1620000000000 ,1616812563210 -1616812563236 ,112.5673431,26.86607228,63.77096558,181.4063353,182.117314,15.420513,0.139921894,1620000000000 ,1620000000000 ,1620000000000 ,1616812563220 -1616812563246 ,112.567343,26.86607088,63.77221298,181.3990406,182.1097655,15.421926,0.139933512,1620000000000 ,1620000000000 ,1620000000000 ,1616812563230 -1616812563259 ,112.567343,26.86606948,63.7735672,181.3916913,182.1119043,15.423659,0.139952401,1620000000000 ,1620000000000 ,1620000000000 ,1616812563240 -1616812563265 ,112.5673429,26.86606809,63.77502441,181.3838776,182.1102807,15.424696,0.139964894,1620000000000 ,1620000000000 ,1620000000000 ,1616812563250 -1616812563277 ,112.5673429,26.86606669,63.77664185,181.3746705,182.1146488,15.42419,0.139970341,1620000000000 ,1620000000000 ,1620000000000 ,1616812563260 -1616812563287 ,112.5673428,26.86606529,63.77843475,181.3672119,182.1103389,15.422124,0.13995845,1620000000000 ,1620000000000 ,1620000000000 ,1616812563270 -1616812563301 ,112.5673428,26.86606389,63.78041458,181.3588518,182.096733,15.420033,0.139947951,1620000000000 ,1620000000000 ,1620000000000 ,1616812563280 -1616812563312 ,112.5673427,26.86606249,63.78256989,181.3516118,182.0858289,15.417511,0.139926925,1620000000000 ,1620000000000 ,1620000000000 ,1616812563290 -1616812563319 ,112.5673427,26.86606109,63.78482819,181.3428145,182.0786029,15.415758,0.139914309,1620000000000 ,1620000000000 ,1620000000000 ,1616812563300 -1616812563327 ,112.5673426,26.86605969,63.78713989,181.3364215,182.0714451,15.416809,0.13992102,1620000000000 ,1620000000000 ,1620000000000 ,1616812563310 -1616812563337 ,112.5673426,26.8660583,63.78947067,181.3283345,182.0565943,15.417504,0.139928109,1620000000000 ,1620000000000 ,1620000000000 ,1616812563320 -1616812563347 ,112.5673425,26.8660569,63.79182434,181.3210672,182.0427101,15.419565,0.139948379,1620000000000 ,1620000000000 ,1620000000000 ,1616812563330 -1616812563360 ,112.5673425,26.8660555,63.79417038,181.3140458,182.0218498,15.419251,0.139951565,1620000000000 ,1620000000000 ,1620000000000 ,1616812563340 -1616812563370 ,112.5673424,26.8660541,63.79648972,181.3081171,182.0113675,15.419157,0.139949672,1620000000000 ,1620000000000 ,1620000000000 ,1616812563350 -1616812563385 ,112.5673424,26.8660527,63.79880142,181.3017241,181.9896728,15.418011,0.139940518,1620000000000 ,1620000000000 ,1620000000000 ,1616812563360 -1616812563388 ,112.5673423,26.8660513,63.80110168,181.2968337,181.971285,15.418563,0.139943919,1620000000000 ,1620000000000 ,1620000000000 ,1616812563370 -1616812563401 ,112.5673423,26.8660499,63.80335236,181.2914242,181.9661705,15.419258,0.139944884,1620000000000 ,1620000000000 ,1620000000000 ,1616812563380 -1616812563411 ,112.5673422,26.86604851,63.80550766,181.2882003,181.9526519,15.420172,0.139954754,1620000000000 ,1620000000000 ,1620000000000 ,1616812563390 -1616812563418 ,112.5673422,26.86604711,63.80759048,181.2848125,181.9326373,15.420389,0.139954955,1620000000000 ,1620000000000 ,1620000000000 ,1616812563400 -1616812563430 ,112.5673421,26.86604571,63.80965805,181.2788566,181.9203331,15.421667,0.139963375,1620000000000 ,1620000000000 ,1620000000000 ,1616812563410 -1616812563438 ,112.5673421,26.86604431,63.81168365,181.2740208,181.916492,15.422479,0.139970304,1620000000000 ,1620000000000 ,1620000000000 ,1616812563420 -1616812563448 ,112.567342,26.86604291,63.81364059,181.2692397,181.9076075,15.423694,0.139981429,1620000000000 ,1620000000000 ,1620000000000 ,1616812563430 -1616812563458 ,112.567342,26.86604151,63.8155098,181.2668082,181.8976119,15.423824,0.139981515,1620000000000 ,1620000000000 ,1620000000000 ,1616812563440 -1616812563468 ,112.5673419,26.86604012,63.81700897,181.2624095,182.0013655,15.424782,0.139671871,1620000000000 ,1620000000000 ,1620000000000 ,1616812563450 -1616812563478 ,112.5673419,26.86603872,63.81813812,181.259131,182.1165132,15.427811,0.139379776,1620000000000 ,1620000000000 ,1620000000000 ,1616812563460 -1616812563488 ,112.5673418,26.86603733,63.81919098,181.2572186,182.1121032,15.430439,0.139401634,1620000000000 ,1620000000000 ,1620000000000 ,1616812563470 -1616812563498 ,112.5673418,26.86603594,63.82021713,181.2532844,182.0968133,15.430921,0.139410449,1620000000000 ,1620000000000 ,1620000000000 ,1616812563480 -1616812563510 ,112.5673417,26.86603454,63.82126617,181.2495141,182.0902868,15.429071,0.139401532,1620000000000 ,1620000000000 ,1620000000000 ,1616812563490 -1616812563518 ,112.5673417,26.86603315,63.82234955,181.2460171,182.0826022,15.42667,0.139378263,1620000000000 ,1620000000000 ,1620000000000 ,1616812563500 -1616812563528 ,112.5673416,26.86603176,63.82340622,181.245416,182.0780636,15.4283695,0.139383438,1620000000000 ,1620000000000 ,1620000000000 ,1616812563510 -1616812563539 ,112.5673416,26.86603036,63.82443237,181.2431757,182.0840074,15.431025,0.13940891,1620000000000 ,1620000000000 ,1620000000000 ,1616812563520 -1616812563550 ,112.5673415,26.86602897,63.82543564,181.241154,182.0714088,15.431939,0.13941983,1620000000000 ,1620000000000 ,1620000000000 ,1616812563530 -1616812563561 ,112.5673415,26.86602758,63.82647324,181.2357445,182.0577591,15.430456,0.139414617,1620000000000 ,1620000000000 ,1620000000000 ,1616812563540 -1616812563569 ,112.5673414,26.86602618,63.82751465,181.2308267,182.0511953,15.430014,0.139406937,1620000000000 ,1620000000000 ,1620000000000 ,1616812563550 -1616812563580 ,112.5673414,26.86602479,63.8285141,181.2289416,182.0550979,15.432049,0.139417576,1620000000000 ,1620000000000 ,1620000000000 ,1616812563560 -1616812563591 ,112.5673413,26.8660234,63.82943726,181.2263734,182.0610491,15.43238,0.139421472,1620000000000 ,1620000000000 ,1620000000000 ,1616812563570 -1616812563603 ,112.5673413,26.866022,63.83034134,181.2219202,182.0541563,15.431346,0.139418697,1620000000000 ,1620000000000 ,1620000000000 ,1616812563580 -1616812563610 ,112.5673412,26.86602061,63.83126831,181.2197891,182.0419755,15.431599,0.139419165,1620000000000 ,1620000000000 ,1620000000000 ,1616812563590 -1616812563620 ,112.5673412,26.86601922,63.83215714,181.2167019,182.0302907,15.432439,0.139419496,1620000000000 ,1620000000000 ,1620000000000 ,1616812563600 -1616812563630 ,112.5673411,26.86601782,63.83296967,181.2142703,182.0376589,15.433853,0.139432625,1620000000000 ,1620000000000 ,1620000000000 ,1616812563610 -1616812563642 ,112.5673411,26.86601643,63.83372498,181.2102815,182.04855,15.434824,0.139439749,1620000000000 ,1620000000000 ,1620000000000 ,1616812563620 -1616812563652 ,112.567341,26.86601504,63.83447266,181.2085603,182.0459841,15.437124,0.139455729,1620000000000 ,1620000000000 ,1620000000000 ,1616812563630 -1616812563661 ,112.567341,26.86601364,63.83520889,181.2056643,182.0352896,15.436673,0.139463227,1620000000000 ,1620000000000 ,1620000000000 ,1616812563640 -1616812563673 ,112.5673409,26.86601225,63.83581924,181.2039158,182.0239348,15.439866,0.139469775,1620000000000 ,1620000000000 ,1620000000000 ,1616812563650 -1616812563682 ,112.5673409,26.86601086,63.83634567,181.2024405,182.0440893,15.436948,0.139464902,1620000000000 ,1620000000000 ,1620000000000 ,1616812563660 -1616812563691 ,112.5673408,26.86600946,63.83684921,181.2016482,182.0610962,15.442165,0.139484195,1620000000000 ,1620000000000 ,1620000000000 ,1616812563670 -1616812563700 ,112.5673408,26.86600807,63.83743668,181.2008832,182.0287395,15.4423485,0.139508075,1620000000000 ,1620000000000 ,1620000000000 ,1616812563680 -1616812563712 ,112.5673407,26.86600667,63.83808899,181.1979325,182.0255009,15.440107,0.139483809,1620000000000 ,1620000000000 ,1620000000000 ,1616812563690 -1616812563721 ,112.5673407,26.86600528,63.83874893,181.1958015,182.0407835,15.43898,0.139480732,1620000000000 ,1620000000000 ,1620000000000 ,1616812563700 -1616812563732 ,112.5673406,26.86600389,63.83932877,181.1974408,182.0526837,15.440534,0.139481698,1620000000000 ,1620000000000 ,1620000000000 ,1616812563710 -1616812563742 ,112.5673406,26.86600249,63.83985138,181.1948726,182.0571743,15.444484,0.139506131,1620000000000 ,1620000000000 ,1620000000000 ,1616812563720 -1616812563752 ,112.5673405,26.8660011,63.84038925,181.1929875,182.0380128,15.447018,0.139541808,1620000000000 ,1620000000000 ,1620000000000 ,1616812563730 -1616812563762 ,112.5673405,26.8659997,63.84102249,181.1898729,182.0249245,15.443694,0.139524664,1620000000000 ,1620000000000 ,1620000000000 ,1616812563740 -1616812563772 ,112.5673404,26.86599831,63.84176254,181.1857202,182.0358208,15.440601,0.139496414,1620000000000 ,1620000000000 ,1620000000000 ,1616812563760 -1616812563782 ,112.5673403,26.86599552,63.84329224,181.1852284,182.0456819,15.443307,0.279001848,1620000000000 ,1620000000000 ,1620000000000 ,1616812563770 -1616812563793 ,112.5673403,26.86599552,63.84329224,181.1852284,-400,15.443307,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812563780 -1616812563803 ,112.5673403,26.86599413,63.84402084,181.1842995,182.0463197,15.447037,0.139541478,1620000000000 ,1620000000000 ,1620000000000 ,1616812563790 -1616812563814 ,112.5673402,26.86599134,63.84560394,181.1789446,182.0311541,15.444571,0.279090193,1620000000000 ,1620000000000 ,1620000000000 ,1616812563800 -1616812563825 ,112.5673401,26.86598994,63.84653091,181.1779611,182.0380746,15.444155,0.139530664,1620000000000 ,1620000000000 ,1620000000000 ,1616812563810 -1616812563834 ,112.5673401,26.86598855,63.84750748,181.1791085,182.0496339,15.443578,0.139529544,1620000000000 ,1620000000000 ,1620000000000 ,1616812563820 -1616812563843 ,112.56734,26.86598715,63.8484993,181.1771414,182.0427345,15.443359,0.139529328,1620000000000 ,1620000000000 ,1620000000000 ,1616812563830 -1616812563853 ,112.56734,26.86598576,63.84953308,181.1752836,182.0416454,15.442378,0.139520602,1620000000000 ,1620000000000 ,1620000000000 ,1616812563840 -1616812563863 ,112.5673399,26.86598437,63.85057068,181.174546,182.0375229,15.444027,0.139530376,1620000000000 ,1620000000000 ,1620000000000 ,1616812563850 -1616812563874 ,112.5673399,26.86598297,63.8515625,181.174382,182.0470477,15.448124,0.13956185,1620000000000 ,1620000000000 ,1620000000000 ,1616812563860 -1616812563884 ,112.5673398,26.86598158,63.85252762,181.1725789,182.0480057,15.449447,0.13958543,1620000000000 ,1620000000000 ,1620000000000 ,1616812563870 -1616812563894 ,112.5673398,26.86598018,63.85349655,181.1707211,182.0370161,15.446805,0.139568677,1620000000000 ,1620000000000 ,1620000000000 ,1616812563880 -1616812563904 ,112.5673397,26.86597879,63.8544693,181.1701746,182.0388739,15.446532,0.139560549,1620000000000 ,1620000000000 ,1620000000000 ,1616812563890 -1616812563916 ,112.5673397,26.86597739,63.85539627,181.1706937,182.0420105,15.446257,0.1395578,1620000000000 ,1620000000000 ,1620000000000 ,1616812563900 -1616812563926 ,112.5673396,26.865976,63.85626984,181.1689725,182.0416307,15.444856,0.139549486,1620000000000 ,1620000000000 ,1620000000000 ,1616812563910 -1616812563934 ,112.5673396,26.8659746,63.85711288,181.1664863,182.0377929,15.445953,0.139550184,1620000000000 ,1620000000000 ,1620000000000 ,1616812563920 -1616812563946 ,112.5673395,26.86597321,63.85790634,181.1639455,182.0356845,15.449171,0.139571921,1620000000000 ,1620000000000 ,1620000000000 ,1616812563930 -1616812563954 ,112.5673395,26.86597181,63.85865021,181.1643826,182.0354108,15.451176,0.139593161,1620000000000 ,1620000000000 ,1620000000000 ,1616812563940 -1616812563966 ,112.5673394,26.86597042,63.85936737,181.1648471,182.0347828,15.452096,0.139605366,1620000000000 ,1620000000000 ,1620000000000 ,1616812563950 -1616812563975 ,112.5673394,26.86596902,63.86014175,181.1653116,182.0419881,15.4510975,0.139600213,1620000000000 ,1620000000000 ,1620000000000 ,1616812563960 -1616812563985 ,112.5673393,26.86596763,63.86096573,181.1644919,182.0314947,15.448674,0.139583366,1620000000000 ,1620000000000 ,1620000000000 ,1616812563970 -1616812563995 ,112.5673393,26.86596623,63.86179352,181.1661039,182.0299245,15.448138,0.139576354,1620000000000 ,1620000000000 ,1620000000000 ,1616812563980 -1616812564005 ,112.5673392,26.86596484,63.86257935,181.1647651,182.0365509,15.448784,0.139573709,1620000000000 ,1620000000000 ,1620000000000 ,1616812563990 -1616812564015 ,112.5673392,26.86596344,63.86332703,181.1645192,182.0468758,15.449653,0.139581644,1620000000000 ,1620000000000 ,1620000000000 ,1616812564000 -1616812564025 ,112.5673391,26.86596205,63.86410141,181.1643553,182.0480654,15.45048,0.139588042,1620000000000 ,1620000000000 ,1620000000000 ,1616812564010 -1616812564034 ,112.5673391,26.86596065,63.86489105,181.1637816,182.0378966,15.451585,0.139598715,1620000000000 ,1620000000000 ,1620000000000 ,1616812564020 -1616812564045 ,112.567339,26.86595926,63.86562347,181.1641368,182.0374881,15.4534235,0.139610465,1620000000000 ,1620000000000 ,1620000000000 ,1616812564030 -1616812564055 ,112.567339,26.86595786,63.86617661,181.1672786,182.0431373,15.454393,0.139613322,1620000000000 ,1620000000000 ,1620000000000 ,1616812564040 -1616812564065 ,112.5673389,26.86595647,63.8665657,181.1687813,182.0567169,15.457838,0.139633125,1620000000000 ,1620000000000 ,1620000000000 ,1616812564050 -1616812564076 ,112.5673389,26.86595507,63.86690903,181.1640275,182.0399297,15.458025,0.139641289,1620000000000 ,1620000000000 ,1620000000000 ,1616812564060 -1616812564085 ,112.5673389,26.86595368,63.86731339,181.16288,182.0291927,15.458473,0.139643641,1620000000000 ,1620000000000 ,1620000000000 ,1616812564070 -1616812564096 ,112.5673388,26.86595228,63.86780167,181.1612681,182.0478219,15.456665,0.139632435,1620000000000 ,1620000000000 ,1620000000000 ,1616812564080 -1616812564105 ,112.5673388,26.86595088,63.86831665,181.1591097,182.0560853,15.455107,0.139617577,1620000000000 ,1620000000000 ,1620000000000 ,1616812564090 -1616812564115 ,112.5673387,26.86594949,63.86890411,181.1590278,182.0528458,15.456752,0.139628224,1620000000000 ,1620000000000 ,1620000000000 ,1616812564100 -1616812564125 ,112.5673387,26.86594809,63.86956787,181.1600386,182.0412014,15.459612,0.139646451,1620000000000 ,1620000000000 ,1620000000000 ,1616812564110 -1616812564135 ,112.5673386,26.8659467,63.87023926,181.1602026,182.0390943,15.463203,0.139679785,1620000000000 ,1620000000000 ,1620000000000 ,1616812564120 -1616812564147 ,112.5673386,26.8659453,63.87089157,181.16135,182.0434804,15.46556,0.139701363,1620000000000 ,1620000000000 ,1620000000000 ,1616812564130 -1616812564156 ,112.5673385,26.86594391,63.87163544,181.1610768,182.0583929,15.462648,0.139689614,1620000000000 ,1620000000000 ,1620000000000 ,1616812564140 -1616812564166 ,112.5673385,26.86594251,63.87254333,181.1595469,182.0678332,15.460445,0.139672383,1620000000000 ,1620000000000 ,1620000000000 ,1616812564150 -1616812564177 ,112.5673384,26.86594111,63.87355804,181.159301,182.0608944,15.460933,0.13967231,1620000000000 ,1620000000000 ,1620000000000 ,1616812564160 -1616812564186 ,112.5673383,26.86593972,63.87461472,181.1583994,182.0625607,15.4617405,0.139673946,1620000000000 ,1620000000000 ,1620000000000 ,1616812564170 -1616812564199 ,112.5673383,26.86593832,63.8756485,181.155722,182.062183,15.46178,0.139677599,1620000000000 ,1620000000000 ,1620000000000 ,1616812564180 -1616812564208 ,112.5673382,26.86593693,63.87666321,181.1543286,182.0707603,15.463388,0.13969036,1620000000000 ,1620000000000 ,1620000000000 ,1616812564190 -1616812564217 ,112.5673382,26.86593553,63.87764359,181.1467061,181.9034225,15.466045,0.139619806,1620000000000 ,1620000000000 ,1620000000000 ,1616812564200 -1616812564227 ,112.5673382,26.86593414,63.87865448,181.1458319,181.5919336,15.472503,0.139559021,1620000000000 ,1620000000000 ,1620000000000 ,1616812564210 -1616812564246 ,112.5673381,26.86593274,63.87971115,181.1453674,181.5841783,15.475174,0.139596213,1620000000000 ,1620000000000 ,1620000000000 ,1616812564220 -1616812564250 ,112.5673381,26.86593134,63.88081741,181.143291,181.5847627,15.474977,0.139601227,1620000000000 ,1620000000000 ,1620000000000 ,1616812564230 -1616812564261 ,112.567338,26.86592995,63.88199997,181.1440014,181.5829039,15.473951,0.139594938,1620000000000 ,1620000000000 ,1620000000000 ,1616812564240 -1616812564270 ,112.567338,26.86592855,63.88327789,181.1428266,181.5805269,15.472408,0.139586732,1620000000000 ,1620000000000 ,1620000000000 ,1616812564250 -1616812564279 ,112.567338,26.86592716,63.88469696,181.141925,181.593155,15.472623,0.139588529,1620000000000 ,1620000000000 ,1620000000000 ,1616812564260 -1616812564286 ,112.5673379,26.86592576,63.88620758,181.141843,181.5870641,15.472749,0.139591815,1620000000000 ,1620000000000 ,1620000000000 ,1616812564270 -1616812564300 ,112.5673379,26.86592437,63.88774109,181.1412146,181.5815345,15.47415,0.139599612,1620000000000 ,1620000000000 ,1620000000000 ,1616812564280 -1616812564308 ,112.5673379,26.86592297,63.88926315,181.1393842,181.572639,15.478026,0.13963383,1620000000000 ,1620000000000 ,1620000000000 ,1616812564290 -1616812564317 ,112.5673378,26.86592158,63.89073181,181.1380181,181.5727238,15.481353,0.139662339,1620000000000 ,1620000000000 ,1620000000000 ,1616812564300 -1616812564328 ,112.5673378,26.86592018,63.89216995,181.1370619,181.5823343,15.484257,0.139689021,1620000000000 ,1620000000000 ,1620000000000 ,1616812564310 -1616812564337 ,112.5673377,26.86591878,63.89360809,181.1373897,181.577718,15.483943,0.139697214,1620000000000 ,1620000000000 ,1620000000000 ,1616812564320 -1616812564347 ,112.5673377,26.86591739,63.89510727,181.1355866,181.574368,15.483745,0.13969884,1620000000000 ,1620000000000 ,1620000000000 ,1616812564330 -1616812564357 ,112.5673377,26.86591599,63.89668655,181.1356959,181.5749578,15.482445,0.139690131,1620000000000 ,1620000000000 ,1620000000000 ,1616812564340 -1616812564367 ,112.5673376,26.86591459,63.89828491,181.1362969,181.5775511,15.48365,0.139700995,1620000000000 ,1620000000000 ,1620000000000 ,1616812564350 -1616812564377 ,112.5673376,26.8659132,63.89987946,181.1364882,181.5780568,15.486491,0.139723532,1620000000000 ,1620000000000 ,1620000000000 ,1616812564360 -1616812564387 ,112.5673375,26.8659118,63.90143204,181.1347123,181.5677719,15.488952,0.139736188,1620000000000 ,1620000000000 ,1620000000000 ,1616812564370 -1616812564397 ,112.5673375,26.8659104,63.9029274,181.1313245,181.564447,15.4898405,0.139760594,1620000000000 ,1620000000000 ,1620000000000 ,1616812564380 -1616812564408 ,112.5673375,26.86590901,63.90426636,181.1317617,181.5697663,15.493817,0.139782433,1620000000000 ,1620000000000 ,1620000000000 ,1616812564390 -1616812564417 ,112.5673374,26.86590761,63.9054184,181.1345484,181.5813254,15.498737,0.139814576,1620000000000 ,1620000000000 ,1620000000000 ,1616812564400 -1616812564428 ,112.5673374,26.86590621,63.90643311,181.134603,181.5688134,15.501683,0.139843796,1620000000000 ,1620000000000 ,1620000000000 ,1616812564410 -1616812564438 ,112.5673374,26.86590481,63.90745926,181.1322534,181.55246,15.502123,0.13985858,1620000000000 ,1620000000000 ,1620000000000 ,1616812564420 -1616812564450 ,112.5673373,26.86590341,63.90856934,181.1300951,181.5551795,15.501275,0.139856613,1620000000000 ,1620000000000 ,1620000000000 ,1616812564430 -1616812564458 ,112.5673373,26.86590202,63.90968323,181.1288383,181.5596233,15.500828,0.139848617,1620000000000 ,1620000000000 ,1620000000000 ,1616812564440 -1616812564470 ,112.5673372,26.86590062,63.91075134,181.1285378,181.7453944,15.504588,0.139966116,1620000000000 ,1620000000000 ,1620000000000 ,1616812564450 -1616812564480 ,112.5673372,26.86589922,63.91173553,181.1293574,181.9249787,15.510671,0.14011114,1620000000000 ,1620000000000 ,1620000000000 ,1616812564460 -1616812564494 ,112.5673371,26.86589782,63.91265488,181.1276089,181.915318,15.513878,0.140149397,1620000000000 ,1620000000000 ,1620000000000 ,1616812564470 -1616812564500 ,112.5673371,26.86589642,63.91355896,181.1250408,181.9050842,15.514779,0.140161208,1620000000000 ,1620000000000 ,1620000000000 ,1616812564480 -1616812564512 ,112.5673371,26.86589501,63.91449356,181.1234562,181.9117151,15.515614,0.140167083,1620000000000 ,1620000000000 ,1620000000000 ,1616812564490 -1616812564522 ,112.567337,26.86589361,63.91544342,181.1232103,181.9272971,15.516509,0.140175483,1620000000000 ,1620000000000 ,1620000000000 ,1616812564500 -1616812564535 ,112.567337,26.86589221,63.91640854,181.1232376,181.932979,15.519427,0.140199065,1620000000000 ,1620000000000 ,1620000000000 ,1616812564510 -1616812564541 ,112.5673369,26.86589081,63.91736984,181.1200137,181.9240852,15.520902,0.140216812,1620000000000 ,1620000000000 ,1620000000000 ,1616812564520 -1616812564552 ,112.5673369,26.86588941,63.91828918,181.1184565,181.9021081,15.522832,0.140228999,1620000000000 ,1620000000000 ,1620000000000 ,1616812564530 -1616812564559 ,112.5673368,26.86588801,63.91910553,181.1178827,181.9004888,15.525452,0.140250137,1620000000000 ,1620000000000 ,1620000000000 ,1616812564540 -1616812564569 ,112.5673368,26.86588661,63.91985703,181.1162435,181.9118182,15.527156,0.140266698,1620000000000 ,1620000000000 ,1620000000000 ,1616812564550 -1616812564579 ,112.5673367,26.8658852,63.92064285,181.1145496,181.911854,15.527979,0.140276592,1620000000000 ,1620000000000 ,1620000000000 ,1616812564560 -1616812564593 ,112.5673367,26.8658838,63.92150116,181.1131289,181.9042424,15.528694,0.140281735,1620000000000 ,1620000000000 ,1620000000000 ,1616812564570 -1616812564600 ,112.5673366,26.8658824,63.92237473,181.1147682,181.902705,15.531571,0.140306749,1620000000000 ,1620000000000 ,1620000000000 ,1616812564580 -1616812564613 ,112.5673366,26.865881,63.92321014,181.1136207,181.9100393,15.533387,0.140322972,1620000000000 ,1620000000000 ,1620000000000 ,1616812564590 -1616812564627 ,112.5673365,26.86587959,63.92400742,181.1120361,181.9204118,15.535321,0.140339379,1620000000000 ,1620000000000 ,1620000000000 ,1616812564600 -1616812564631 ,112.5673365,26.86587819,63.92480469,181.1114623,181.9203865,15.537824,0.140361456,1620000000000 ,1620000000000 ,1620000000000 ,1616812564610 -1616812564640 ,112.5673364,26.86587679,63.9256134,181.1107247,181.9215391,15.539072,0.140374562,1620000000000 ,1620000000000 ,1620000000000 ,1616812564620 -1616812564651 ,112.5673364,26.86587539,63.92642212,181.1106427,181.9225771,15.539575,0.140381484,1620000000000 ,1620000000000 ,1620000000000 ,1616812564630 -1616812564660 ,112.5673363,26.86587398,63.92723465,181.1091947,181.9229535,15.539002,0.140379003,1620000000000 ,1620000000000 ,1620000000000 ,1616812564640 -1616812564670 ,112.5673363,26.86587258,63.9280777,181.1075828,181.9221162,15.541157,0.140389075,1620000000000 ,1620000000000 ,1620000000000 ,1616812564650 -1616812564680 ,112.5673363,26.86587118,63.92894363,181.106408,181.9161374,15.545183,0.140421119,1620000000000 ,1620000000000 ,1620000000000 ,1616812564660 -1616812564693 ,112.5673362,26.86586977,63.92979431,181.1069817,181.9078,15.547947,0.14044629,1620000000000 ,1620000000000 ,1620000000000 ,1616812564670 -1616812564703 ,112.5673362,26.86586837,63.93059921,181.1058616,181.9041812,15.55118,0.140482891,1620000000000 ,1620000000000 ,1620000000000 ,1616812564680 -1616812564713 ,112.5673361,26.86586696,63.93136597,181.1045502,181.9140467,15.553116,0.140488756,1620000000000 ,1620000000000 ,1620000000000 ,1616812564690 -1616812564722 ,112.5673361,26.86586556,63.93214417,181.105042,181.9120104,15.555373,0.140511862,1620000000000 ,1620000000000 ,1620000000000 ,1616812564700 -1616812564732 ,112.567336,26.86586416,63.93293381,181.1044955,181.9021473,15.558058,0.140538046,1620000000000 ,1620000000000 ,1620000000000 ,1616812564710 -1616812564741 ,112.567336,26.86586275,63.933815,181.1034574,181.9022771,15.560087,0.140560354,1620000000000 ,1620000000000 ,1620000000000 ,1616812564720 -1616812564751 ,112.5673359,26.86586135,63.93478775,181.1019547,181.9137592,15.560204,0.14056645,1620000000000 ,1620000000000 ,1620000000000 ,1616812564730 -1616812564764 ,112.5673359,26.86585994,63.93583298,181.1017362,181.9227999,15.559982,0.140566111,1620000000000 ,1620000000000 ,1620000000000 ,1616812564750 -1616812564775 ,112.5673358,26.86585854,63.9369278,181.0994139,181.9209646,15.562356,0.140584793,1620000000000 ,1620000000000 ,1620000000000 ,1616812564760 -1616812564783 ,112.5673358,26.86585713,63.93803024,181.0989221,181.918739,15.56614,0.140615542,1620000000000 ,1620000000000 ,1620000000000 ,1616812564770 -1616812564796 ,112.5673357,26.86585432,63.94023514,181.0986762,181.917575,15.571809,0.281336921,1620000000000 ,1620000000000 ,1620000000000 ,1616812564780 -1616812564803 ,112.5673357,26.86585432,63.94023514,181.0986762,-400,15.571809,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812564780 -1616812564813 ,112.5673356,26.86585291,63.94139862,181.0958349,181.9164107,15.571354,0.140678509,1620000000000 ,1620000000000 ,1620000000000 ,1616812564800 -1616812564822 ,112.5673356,26.86585151,63.9426384,181.0947147,181.9159585,15.571907,0.14068301,1620000000000 ,1620000000000 ,1620000000000 ,1616812564810 -1616812564833 ,112.5673355,26.86584869,63.94522095,181.0906439,181.9118973,15.576775,0.281431621,1620000000000 ,1620000000000 ,1620000000000 ,1616812564820 -1616812564842 ,112.5673355,26.86584729,63.9465332,181.0895238,181.9048555,15.57874,0.140750702,1620000000000 ,1620000000000 ,1620000000000 ,1616812564830 -1616812564853 ,112.5673354,26.86584588,63.94792175,181.0880758,181.9085044,15.580235,0.140770746,1620000000000 ,1620000000000 ,1620000000000 ,1616812564840 -1616812564863 ,112.5673354,26.86584447,63.94939041,181.0861906,181.9081798,15.582198,0.140792933,1620000000000 ,1620000000000 ,1620000000000 ,1616812564850 -1616812564874 ,112.5673353,26.86584307,63.9508667,181.0884309,181.9051328,15.584919,0.140819001,1620000000000 ,1620000000000 ,1620000000000 ,1616812564860 -1616812564884 ,112.5673353,26.86584166,63.95228577,181.0910537,181.8992269,15.587193,0.140842959,1620000000000 ,1620000000000 ,1620000000000 ,1616812564870 -1616812564894 ,112.5673352,26.86584025,63.95365143,181.0902888,181.8980681,15.5874,0.14085207,1620000000000 ,1620000000000 ,1620000000000 ,1616812564880 -1616812564902 ,112.5673352,26.86584025,63.95365143,181.0902888,-400,15.5874,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812564890 -1616812564913 ,112.5673351,26.86583743,63.95618057,181.0909445,181.8920356,15.591402,0.28174455,1620000000000 ,1620000000000 ,1620000000000 ,1616812564900 -1616812564926 ,112.5673351,26.86583603,63.9572525,181.0917641,181.8973847,15.594779,0.140910589,1620000000000 ,1620000000000 ,1620000000000 ,1616812564910 -1616812564936 ,112.567335,26.86583462,63.95820236,181.0929662,181.8902076,15.597855,0.140936487,1620000000000 ,1620000000000 ,1620000000000 ,1616812564920 -1616812564943 ,112.567335,26.86583321,63.95905304,181.096272,181.8743683,15.600414,0.140956561,1620000000000 ,1620000000000 ,1620000000000 ,1616812564930 -1616812564954 ,112.5673349,26.8658318,63.95975876,181.0975014,181.863994,15.604473,0.140988547,1620000000000 ,1620000000000 ,1620000000000 ,1616812564940 -1616812564966 ,112.5673349,26.86583039,63.96029282,181.0994958,181.8684869,15.608789,0.14102465,1620000000000 ,1620000000000 ,1620000000000 ,1616812564950 -1616812564976 ,112.5673349,26.86582898,63.96064758,181.1015722,181.8751006,15.612904,0.141056145,1620000000000 ,1620000000000 ,1620000000000 ,1616812564960 -1616812564986 ,112.5673348,26.86582757,63.96087646,181.1051239,181.8765354,15.616554,0.141086552,1620000000000 ,1620000000000 ,1620000000000 ,1616812564970 -1616812565000 ,112.5673348,26.86582616,63.96103668,181.1098231,181.8712488,15.617632,0.141105462,1620000000000 ,1620000000000 ,1620000000000 ,1616812564980 -1616812565004 ,112.5673348,26.86582616,63.96103668,181.1098231,-400,15.617632,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812564990 -1616812565014 ,112.5673347,26.86582334,63.96126938,181.1200957,181.8593564,15.617652,0.28220044,1620000000000 ,1620000000000 ,1620000000000 ,1616812565000 -1616812565027 ,112.5673346,26.86582193,63.96125412,181.1250954,181.8598781,15.619708,0.141108709,1620000000000 ,1620000000000 ,1620000000000 ,1616812565010 -1616812565034 ,112.5673346,26.86582052,63.96107864,181.1317343,181.87454,15.625935,0.141152749,1620000000000 ,1620000000000 ,1620000000000 ,1616812565020 -1616812565044 ,112.5673345,26.86581911,63.96072388,181.1366794,181.889232,15.630721,0.141190328,1620000000000 ,1620000000000 ,1620000000000 ,1616812565030 -1616812565059 ,112.5673345,26.8658177,63.9602356,181.1435642,181.9025967,15.634273,0.141221732,1620000000000 ,1620000000000 ,1620000000000 ,1616812565040 -1616812565065 ,112.5673344,26.86581628,63.95966721,181.1506676,181.8997617,15.635601,0.141232461,1620000000000 ,1620000000000 ,1620000000000 ,1616812565050 -1616812565075 ,112.5673344,26.86581487,63.95906448,181.1568694,181.898571,15.636195,0.141234315,1620000000000 ,1620000000000 ,1620000000000 ,1616812565060 -1616812565084 ,112.5673343,26.86581346,63.95845032,181.1603938,181.9070491,15.637778,0.141240855,1620000000000 ,1620000000000 ,1620000000000 ,1616812565070 -1616812565095 ,112.5673343,26.86581205,63.957798,181.1656394,181.9230048,15.642245,0.141269844,1620000000000 ,1620000000000 ,1620000000000 ,1616812565080 -1616812565105 ,112.5673342,26.86581064,63.95710754,181.1710216,181.9316758,15.646921,0.1413107,1620000000000 ,1620000000000 ,1620000000000 ,1616812565090 -1616812565115 ,112.5673342,26.86580922,63.95639801,181.1753929,181.9328333,15.651766,0.14135192,1620000000000 ,1620000000000 ,1620000000000 ,1616812565100 -1616812565129 ,112.5673342,26.86580781,63.95566559,181.1811029,181.9334795,15.656958,0.141388508,1620000000000 ,1620000000000 ,1620000000000 ,1616812565110 -1616812565135 ,112.5673341,26.8658064,63.9548645,181.190474,181.9369482,15.66056,0.141420255,1620000000000 ,1620000000000 ,1620000000000 ,1616812565120 -1616812565146 ,112.5673341,26.86580498,63.95404816,181.1987248,181.9510559,15.660776,0.141428848,1620000000000 ,1620000000000 ,1620000000000 ,1616812565130 -1616812565156 ,112.567334,26.86580357,63.95333481,181.2030142,181.9562239,15.66256,0.141432945,1620000000000 ,1620000000000 ,1620000000000 ,1616812565140 -1616812565165 ,112.567334,26.86580216,63.95278168,181.2062107,181.9615426,15.669184,0.141490764,1620000000000 ,1620000000000 ,1620000000000 ,1616812565150 -1616812565175 ,112.5673339,26.86580074,63.95232391,181.2120847,181.9831728,15.67134,0.141516946,1620000000000 ,1620000000000 ,1620000000000 ,1616812565160 -1616812565187 ,112.5673339,26.86579933,63.95198822,181.2130956,181.9996941,15.671011,0.1415269,1620000000000 ,1620000000000 ,1620000000000 ,1616812565170 -1616812565197 ,112.5673338,26.86579791,63.95188522,181.2145982,182.0060347,15.667487,0.141506621,1620000000000 ,1620000000000 ,1620000000000 ,1616812565180 -1616812565210 ,112.5673338,26.8657965,63.95205307,181.2163194,182.0093321,15.668263,0.141501143,1620000000000 ,1620000000000 ,1620000000000 ,1616812565190 -1616812565216 ,112.5673337,26.86579508,63.95243835,181.2162374,181.9145566,15.680148,0.141560091,1620000000000 ,1620000000000 ,1620000000000 ,1616812565200 -1616812565230 ,112.5673337,26.86579367,63.95303345,181.2198165,181.7639873,15.681025,0.141669265,1620000000000 ,1620000000000 ,1620000000000 ,1616812565210 -1616812565237 ,112.5673336,26.86579225,63.95386505,181.221565,181.780585,15.680607,0.141669539,1620000000000 ,1620000000000 ,1620000000000 ,1616812565220 -1616812565249 ,112.5673336,26.86579084,63.9550705,181.2250074,181.7792931,15.678711,0.141666549,1620000000000 ,1620000000000 ,1620000000000 ,1616812565230 -1616812565257 ,112.5673335,26.86578942,63.95667648,181.229488,181.7733618,15.674834,0.141639867,1620000000000 ,1620000000000 ,1620000000000 ,1616812565240 -1616812565266 ,112.5673335,26.865788,63.95854187,181.2334222,181.77755,15.674532,0.14163436,1620000000000 ,1620000000000 ,1620000000000 ,1616812565250 -1616812565276 ,112.5673334,26.86578659,63.96049881,181.2412633,181.8098093,15.680854,0.141679907,1620000000000 ,1620000000000 ,1620000000000 ,1616812565260 -1616812565286 ,112.5673334,26.86578517,63.96244812,181.2496234,181.8353256,15.68671,0.141731575,1620000000000 ,1620000000000 ,1620000000000 ,1616812565270 -1616812565298 ,112.5673334,26.86578375,63.96445847,181.2567814,181.8218186,15.691925,0.141787433,1620000000000 ,1620000000000 ,1620000000000 ,1616812565280 -1616812565309 ,112.5673333,26.86578234,63.96666718,181.2585027,181.8139369,15.688447,0.141784345,1620000000000 ,1620000000000 ,1620000000000 ,1616812565290 -1616812565323 ,112.5673333,26.86578092,63.9691391,181.2598414,181.8348989,15.683378,0.141744373,1620000000000 ,1620000000000 ,1620000000000 ,1616812565300 -1616812565330 ,112.5673332,26.8657795,63.97172165,181.2646771,181.8494343,15.685291,0.141739271,1620000000000 ,1620000000000 ,1620000000000 ,1616812565310 -1616812565349 ,112.5673332,26.86577809,63.97418594,181.272245,181.8567074,15.6874695,0.141778242,1620000000000 ,1620000000000 ,1620000000000 ,1616812565320 -1616812565351 ,112.5673331,26.86577667,63.9764061,181.2772174,181.8791722,15.696654,0.141813541,1620000000000 ,1620000000000 ,1620000000000 ,1616812565330 -1616812565358 ,112.5673331,26.86577525,63.97865677,181.2794577,181.8755662,15.705278,0.141917451,1620000000000 ,1620000000000 ,1620000000000 ,1616812565340 -1616812565368 ,112.567333,26.86577383,63.98099899,181.2822171,181.8270251,15.703443,0.141922007,1620000000000 ,1620000000000 ,1620000000000 ,1616812565350 -1616812565377 ,112.567333,26.86577241,63.98342514,181.2832826,181.8138015,15.700381,0.141906141,1620000000000 ,1620000000000 ,1620000000000 ,1616812565360 -1616812565396 ,112.5673329,26.865771,63.98583984,181.2875993,181.8497836,15.695767,0.141864091,1620000000000 ,1620000000000 ,1620000000000 ,1616812565370 -1616812565409 ,112.5673329,26.86576958,63.98828888,181.2913149,181.8982887,15.698812,0.141863685,1620000000000 ,1620000000000 ,1620000000000 ,1616812565380 -1616812565430 ,112.5673329,26.86576816,63.99082565,181.2989101,181.9156706,15.710771,0.141972633,1620000000000 ,1620000000000 ,1620000000000 ,1616812565390 -1616812565432 ,112.5673328,26.86576674,63.99341965,181.3059042,181.8959888,15.718014,0.142052587,1620000000000 ,1620000000000 ,1620000000000 ,1616812565400 -1616812565434 ,112.5673328,26.86576532,63.99599075,181.305631,181.9042576,15.716075,0.142069169,1620000000000 ,1620000000000 ,1620000000000 ,1616812565410 -1616812565441 ,112.5673327,26.8657639,63.99849701,181.3019973,181.9215657,15.708497,0.142007038,1620000000000 ,1620000000000 ,1620000000000 ,1616812565420 -1616812565450 ,112.5673327,26.86576248,64.00093842,181.2995384,181.9461851,15.705018,0.141962398,1620000000000 ,1620000000000 ,1620000000000 ,1616812565430 -1616812565459 ,112.5673326,26.86576106,64.00326538,181.3016694,181.9710761,15.713561,0.142011932,1620000000000 ,1620000000000 ,1620000000000 ,1616812565440 -1616812565470 ,112.5673326,26.86575964,64.00543213,181.3046201,182.0834115,15.723193,0.142077356,1620000000000 ,1620000000000 ,1620000000000 ,1616812565450 -1616812565478 ,112.5673325,26.86575822,64.00753784,181.3051665,182.1712012,15.722442,0.142078571,1620000000000 ,1620000000000 ,1620000000000 ,1616812565460 -1616812565488 ,112.5673325,26.8657568,64.00967407,181.3044562,182.1432439,15.7258,0.142099497,1620000000000 ,1620000000000 ,1620000000000 ,1616812565470 -1616812565498 ,112.5673324,26.86575538,64.01171875,181.3056856,182.1417647,15.725316,0.142106299,1620000000000 ,1620000000000 ,1620000000000 ,1616812565480 -1616812565511 ,112.5673324,26.86575396,64.01348114,181.3070243,182.134634,15.730959,0.14212776,1620000000000 ,1620000000000 ,1620000000000 ,1616812565490 -1616812565518 ,112.5673323,26.86575254,64.01486969,181.3045108,182.1344696,15.738638,0.142187577,1620000000000 ,1620000000000 ,1620000000000 ,1616812565500 -1616812565530 ,112.5673322,26.86575112,64.01605225,181.301287,182.1518609,15.739638,0.142211188,1620000000000 ,1620000000000 ,1620000000000 ,1616812565510 -1616812565539 ,112.5673322,26.8657497,64.01719666,181.3037731,182.144562,15.7413435,0.142222858,1620000000000 ,1620000000000 ,1620000000000 ,1616812565520 -1616812565551 ,112.5673321,26.86574828,64.01838684,181.3084177,182.1209779,15.739137,0.142211935,1620000000000 ,1620000000000 ,1620000000000 ,1616812565530 -1616812565560 ,112.5673321,26.86574686,64.01959229,181.3119694,182.1058303,15.742577,0.142227513,1620000000000 ,1620000000000 ,1620000000000 ,1616812565540 -1616812565570 ,112.567332,26.86574544,64.0206604,181.3154664,182.1042955,15.748385,0.142269899,1620000000000 ,1620000000000 ,1620000000000 ,1616812565550 -1616812565580 ,112.567332,26.86574401,64.0214386,181.3161221,182.1073759,15.754451,0.142315122,1620000000000 ,1620000000000 ,1620000000000 ,1616812565560 -1616812565591 ,112.5673319,26.86574259,64.02189636,181.3169144,182.1186421,15.760492,0.142358385,1620000000000 ,1620000000000 ,1620000000000 ,1616812565570 -1616812565601 ,112.5673319,26.86574117,64.02216339,181.3198651,182.1314862,15.766003,0.142401442,1620000000000 ,1620000000000 ,1620000000000 ,1616812565580 -1616812565611 ,112.5673318,26.86573974,64.02242279,181.3246189,182.1200048,15.770607,0.142444093,1620000000000 ,1620000000000 ,1620000000000 ,1616812565590 -1616812565619 ,112.5673318,26.86573832,64.02285004,181.3282252,182.0825634,15.768431,0.142451086,1620000000000 ,1620000000000 ,1620000000000 ,1616812565600 -1616812565630 ,112.5673317,26.8657369,64.02348328,181.3318589,182.0705102,15.765285,0.142423186,1620000000000 ,1620000000000 ,1620000000000 ,1616812565610 -1616812565641 ,112.5673317,26.86573547,64.02416229,181.3390716,182.0806042,15.764112,0.142405659,1620000000000 ,1620000000000 ,1620000000000 ,1616812565620 -1616812565649 ,112.5673316,26.86573405,64.02471161,181.3449182,182.0889336,15.767704,0.142420891,1620000000000 ,1620000000000 ,1620000000000 ,1616812565630 -1616812565660 ,112.5673316,26.86573263,64.02500153,181.3494808,182.0948789,15.781066,0.142518188,1620000000000 ,1620000000000 ,1620000000000 ,1616812565640 -1616812565670 ,112.5673315,26.8657312,64.02501678,181.3542346,182.1020171,15.784605,0.142551659,1620000000000 ,1620000000000 ,1620000000000 ,1616812565650 -1616812565682 ,112.5673315,26.86572978,64.02490997,181.3601905,182.1062067,15.789636,0.14260204,1620000000000 ,1620000000000 ,1620000000000 ,1616812565660 -1616812565691 ,112.5673314,26.86572835,64.02487946,181.3640974,182.0763977,15.792688,0.142630723,1620000000000 ,1620000000000 ,1620000000000 ,1616812565670 -1616812565700 ,112.5673314,26.86572693,64.02509308,181.3660918,182.0681876,15.791367,0.142631969,1620000000000 ,1620000000000 ,1620000000000 ,1616812565680 -1616812565712 ,112.5673313,26.8657255,64.02552032,181.3659279,182.0947971,15.785882,0.142595321,1620000000000 ,1620000000000 ,1620000000000 ,1616812565690 -1616812565722 ,112.5673313,26.86572408,64.02604675,181.3674032,182.1154454,15.783779,0.142565251,1620000000000 ,1620000000000 ,1620000000000 ,1616812565700 -1616812565733 ,112.5673312,26.86572265,64.02661896,181.3717745,182.1152645,15.791019,0.142614704,1620000000000 ,1620000000000 ,1620000000000 ,1616812565710 -1616812565744 ,112.5673311,26.86572123,64.02719879,181.3745612,182.0955074,15.800339,0.142691775,1620000000000 ,1620000000000 ,1620000000000 ,1616812565720 -1616812565752 ,112.5673311,26.8657198,64.02784729,181.3780583,182.078372,15.8089075,0.142774097,1620000000000 ,1620000000000 ,1620000000000 ,1616812565730 -1616812565761 ,112.567331,26.86571837,64.02864838,181.3831399,182.0741449,15.807923,0.142792052,1620000000000 ,1620000000000 ,1620000000000 ,1616812565740 -1616812565771 ,112.567331,26.86571695,64.02964783,181.3872927,182.0987041,15.805067,0.1427729,1620000000000 ,1620000000000 ,1620000000000 ,1616812565750 -1616812565781 ,112.5673309,26.86571552,64.03076935,181.3918826,182.1253193,15.804946,0.142770881,1620000000000 ,1620000000000 ,1620000000000 ,1616812565760 -1616812565792 ,112.5673309,26.86571409,64.03194427,181.3942595,182.1440946,15.805276,0.142772589,1620000000000 ,1620000000000 ,1620000000000 ,1616812565770 -1616812565803 ,112.5673308,26.86571266,64.03311157,181.397456,182.1512255,15.809148,0.14279791,1620000000000 ,1620000000000 ,1620000000000 ,1616812565780 -1616812565813 ,112.5673308,26.86571124,64.03426361,181.3988767,182.1495565,15.821129,0.142887441,1620000000000 ,1620000000000 ,1620000000000 ,1616812565790 -1616812565821 ,112.5673307,26.86570981,64.03544617,181.398303,182.1694636,15.822684,0.142935455,1620000000000 ,1620000000000 ,1620000000000 ,1616812565800 -1616812565833 ,112.5673307,26.86570838,64.03673553,181.3975653,182.1813901,15.818616,0.142913439,1620000000000 ,1620000000000 ,1620000000000 ,1616812565810 -1616812565842 ,112.5673306,26.86570695,64.03810883,181.395407,182.1829391,15.816814,0.142890534,1620000000000 ,1620000000000 ,1620000000000 ,1616812565820 -1616812565851 ,112.5673306,26.86570552,64.03953552,181.3939863,182.1904686,15.820042,0.142912241,1620000000000 ,1620000000000 ,1620000000000 ,1616812565830 -1616812565861 ,112.5673305,26.8657041,64.04096222,181.3927022,182.1963717,15.823921,0.142950045,1620000000000 ,1620000000000 ,1620000000000 ,1616812565840 -1616812565872 ,112.5673305,26.86570267,64.04239655,181.39456,182.2025431,15.828275,0.142989609,1620000000000 ,1620000000000 ,1620000000000 ,1616812565850 -1616812565883 ,112.5673304,26.86570124,64.04391479,181.3943415,182.2059923,15.833566,0.143038978,1620000000000 ,1620000000000 ,1620000000000 ,1616812565870 -1616812565893 ,112.5673303,26.86569981,64.04563904,181.3953796,182.200536,15.84074,0.143107161,1620000000000 ,1620000000000 ,1620000000000 ,1616812565880 -1616812565902 ,112.5673303,26.86569838,64.04759979,181.3957348,182.2059204,15.838543,0.143123573,1620000000000 ,1620000000000 ,1620000000000 ,1616812565880 -1616812565913 ,112.5673302,26.86569695,64.0496521,181.3950791,182.2212412,15.835548,0.143102387,1620000000000 ,1620000000000 ,1620000000000 ,1616812565900 -1616812565922 ,112.5673302,26.86569552,64.05165863,181.3922924,182.2348294,15.836025,0.143100029,1620000000000 ,1620000000000 ,1620000000000 ,1616812565910 -1616812565934 ,112.5673301,26.86569266,64.05516815,181.3879211,182.242305,15.845614,0.286280125,1620000000000 ,1620000000000 ,1620000000000 ,1616812565920 -1616812565943 ,112.56733,26.86569123,64.05664825,181.3842874,182.2695444,15.851917,0.143224918,1620000000000 ,1620000000000 ,1620000000000 ,1616812565930 -1616812565953 ,112.5673299,26.86568979,64.0580368,181.38161,182.2682523,15.855108,0.143261478,1620000000000 ,1620000000000 ,1620000000000 ,1616812565940 -1616812565963 ,112.5673299,26.86568836,64.05941772,181.378031,182.2427933,15.852568,0.143249132,1620000000000 ,1620000000000 ,1620000000000 ,1616812565950 -1616812565974 ,112.5673298,26.86568693,64.06066132,181.3766649,182.2270936,15.85967,0.143283475,1620000000000 ,1620000000000 ,1620000000000 ,1616812565960 -1616812565982 ,112.5673298,26.8656855,64.0615921,181.3765556,182.2623712,15.862281,0.143296491,1620000000000 ,1620000000000 ,1620000000000 ,1616812565970 -1616812565993 ,112.5673297,26.86568407,64.06228638,181.3748344,182.2878729,15.874598,0.143404899,1620000000000 ,1620000000000 ,1620000000000 ,1616812565980 -1616812566002 ,112.5673297,26.86568407,64.06228638,181.3748344,-400,15.874598,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812565980 -1616812566015 ,112.5673296,26.8656812,64.06382751,181.3691517,182.2440026,15.881945,0.286999493,1620000000000 ,1620000000000 ,1620000000000 ,1616812566000 -1616812566023 ,112.5673296,26.86567977,64.06506348,181.3659552,182.2674066,15.869043,0.143428709,1620000000000 ,1620000000000 ,1620000000000 ,1616812566010 -1616812566033 ,112.5673295,26.86567833,64.06652069,181.3617478,182.2968022,15.859511,0.143334014,1620000000000 ,1620000000000 ,1620000000000 ,1616812566020 -1616812566046 ,112.5673294,26.8656769,64.06790161,181.3599446,182.2933045,15.869204,0.143367018,1620000000000 ,1620000000000 ,1620000000000 ,1616812566030 -1616812566055 ,112.5673294,26.86567547,64.06891632,181.3638788,182.2934595,15.886105,0.143497498,1620000000000 ,1620000000000 ,1620000000000 ,1616812566040 -1616812566065 ,112.5673293,26.86567403,64.06941223,181.3642886,182.3018688,15.903537,0.143643108,1620000000000 ,1620000000000 ,1620000000000 ,1616812566050 -1616812566074 ,112.5673293,26.8656726,64.06957245,181.3595895,182.3001317,15.907389,0.143699516,1620000000000 ,1620000000000 ,1620000000000 ,1616812566060 -1616812566085 ,112.5673292,26.86567116,64.0697937,181.3581961,182.291132,15.900107,0.143658729,1620000000000 ,1620000000000 ,1620000000000 ,1616812566070 -1616812566094 ,112.5673292,26.86566973,64.07025909,181.3543985,182.2825901,15.8936405,0.143600822,1620000000000 ,1620000000000 ,1620000000000 ,1616812566080 -1616812566104 ,112.5673291,26.86566829,64.07099152,181.3477596,182.3031202,15.894753,0.143600147,1620000000000 ,1620000000000 ,1620000000000 ,1616812566090 -1616812566114 ,112.567329,26.86566686,64.0717926,181.3438254,182.3057145,15.899056,0.143631097,1620000000000 ,1620000000000 ,1620000000000 ,1616812566100 -1616812566125 ,112.567329,26.86566542,64.07244873,181.3393175,182.2907521,15.908891,0.143709028,1620000000000 ,1620000000000 ,1620000000000 ,1616812566110 -1616812566135 ,112.5673289,26.86566398,64.07289886,181.3363395,182.2772481,15.918367,0.14378497,1620000000000 ,1620000000000 ,1620000000000 ,1616812566120 -1616812566146 ,112.5673289,26.86566255,64.07319641,181.333744,182.2729864,15.9250555,0.143846773,1620000000000 ,1620000000000 ,1620000000000 ,1616812566130 -1616812566156 ,112.5673288,26.86566111,64.07349396,181.3333615,182.2698692,15.92272,0.143851213,1620000000000 ,1620000000000 ,1620000000000 ,1616812566140 -1616812566165 ,112.5673288,26.86565967,64.07392883,181.3324053,182.2554951,15.918758,0.143817326,1620000000000 ,1620000000000 ,1620000000000 ,1616812566150 -1616812566174 ,112.5673287,26.86565823,64.0745697,181.3325419,182.2445904,15.916059,0.143793495,1620000000000 ,1620000000000 ,1620000000000 ,1616812566160 -1616812566185 ,112.5673286,26.8656568,64.07529449,181.3313398,182.2432231,15.91769,0.143796355,1620000000000 ,1620000000000 ,1620000000000 ,1616812566170 -1616812566195 ,112.5673286,26.86565536,64.0759964,181.3318316,182.2390846,15.92528,0.143848632,1620000000000 ,1620000000000 ,1620000000000 ,1616812566180 -1616812566204 ,112.5673285,26.86565392,64.07659149,181.328717,182.2485135,15.931468,0.143909185,1620000000000 ,1620000000000 ,1620000000000 ,1616812566190 -1616812566215 ,112.5673285,26.86565249,64.07693481,181.3205754,182.1319952,15.912754,0.143685608,1620000000000 ,1620000000000 ,1620000000000 ,1616812566200 -1616812566226 ,112.5673284,26.86565105,64.07691956,181.319264,181.9171117,15.916593,0.143255656,1620000000000 ,1620000000000 ,1620000000000 ,1616812566210 -1616812566235 ,112.5673284,26.86564962,64.07699585,181.3185264,181.9214421,15.918986,0.14328424,1620000000000 ,1620000000000 ,1620000000000 ,1616812566220 -1616812566245 ,112.5673283,26.86564819,64.07714844,181.318499,181.9228994,15.921111,0.143305285,1620000000000 ,1620000000000 ,1620000000000 ,1616812566230 -1616812566255 ,112.5673283,26.86564676,64.07735443,181.3191274,181.9309052,15.920982,0.143313865,1620000000000 ,1620000000000 ,1620000000000 ,1616812566240 -1616812566267 ,112.5673282,26.86564533,64.07759094,181.3161768,181.9353162,15.922566,0.143320119,1620000000000 ,1620000000000 ,1620000000000 ,1616812566250 -1616812566279 ,112.5673282,26.86564389,64.07785034,181.3153298,181.9303302,15.923376,0.143330048,1620000000000 ,1620000000000 ,1620000000000 ,1616812566260 -1616812566286 ,112.5673281,26.86564246,64.07809448,181.3153025,181.9200769,15.929609,0.143369111,1620000000000 ,1620000000000 ,1620000000000 ,1616812566270 -1616812566306 ,112.5673281,26.86564103,64.07833099,181.3164773,181.9069221,15.931828,0.143401067,1620000000000 ,1620000000000 ,1620000000000 ,1616812566280 -1616812566310 ,112.567328,26.86563959,64.07857513,181.3163407,181.8937918,15.935552,0.143430409,1620000000000 ,1620000000000 ,1620000000000 ,1616812566290 -1616812566315 ,112.567328,26.86563816,64.07894135,181.3153298,181.8936387,15.937476,0.143454733,1620000000000 ,1620000000000 ,1620000000000 ,1616812566300 -1616812566332 ,112.5673279,26.86563673,64.07946777,181.313472,181.8942723,15.939578,0.14347607,1620000000000 ,1620000000000 ,1620000000000 ,1616812566310 -1616812566336 ,112.5673279,26.86563529,64.0800705,181.3140458,181.8910168,15.941728,0.143499858,1620000000000 ,1620000000000 ,1620000000000 ,1616812566320 -1616812566346 ,112.5673279,26.86563386,64.08071136,181.3148654,181.8945351,15.942486,0.143512739,1620000000000 ,1620000000000 ,1620000000000 ,1616812566330 -1616812566357 ,112.5673278,26.86563242,64.0813446,181.3147288,181.8915598,15.944859,0.143526056,1620000000000 ,1620000000000 ,1620000000000 ,1616812566340 -1616812566368 ,112.5673278,26.86563099,64.08194733,181.3141824,181.8881577,15.949292,0.14356456,1620000000000 ,1620000000000 ,1620000000000 ,1616812566350 -1616812566381 ,112.5673277,26.86562955,64.0825119,181.3127617,181.8866788,15.952563,0.143591416,1620000000000 ,1620000000000 ,1620000000000 ,1616812566360 -1616812566388 ,112.5673277,26.86562812,64.08309174,181.3103301,181.899756,15.955125,0.14362372,1620000000000 ,1620000000000 ,1620000000000 ,1616812566370 -1616812566398 ,112.5673276,26.86562668,64.08372498,181.3112044,181.9108258,15.955092,0.143626202,1620000000000 ,1620000000000 ,1620000000000 ,1616812566380 -1616812566407 ,112.5673276,26.86562525,64.08440399,181.3110131,181.9036991,15.956312,0.143636783,1620000000000 ,1620000000000 ,1620000000000 ,1616812566390 -1616812566418 ,112.5673275,26.86562381,64.0851059,181.3080352,181.8864613,15.958064,0.143650015,1620000000000 ,1620000000000 ,1620000000000 ,1616812566400 -1616812566434 ,112.5673275,26.86562237,64.08583832,181.304101,181.8879376,15.963243,0.14368853,1620000000000 ,1620000000000 ,1620000000000 ,1616812566410 -1616812566439 ,112.5673274,26.86562094,64.08657837,181.3028442,181.9003309,15.973639,0.143775352,1620000000000 ,1620000000000 ,1620000000000 ,1616812566420 -1616812566448 ,112.5673274,26.8656195,64.0872879,181.299839,181.9056914,15.978032,0.143838331,1620000000000 ,1620000000000 ,1620000000000 ,1616812566430 -1616812566458 ,112.5673273,26.86561806,64.0880661,181.2950032,181.8939975,15.975486,0.143827182,1620000000000 ,1620000000000 ,1620000000000 ,1616812566440 -1616812566468 ,112.5673273,26.86561662,64.08912659,181.2902767,181.9774803,15.970695,0.14404784,1620000000000 ,1620000000000 ,1620000000000 ,1616812566450 -1616812566480 ,112.5673272,26.86561518,64.09038544,181.2862879,182.0761802,15.970508,0.144288441,1620000000000 ,1620000000000 ,1620000000000 ,1616812566460 -1616812566488 ,112.5673272,26.86561374,64.09150696,181.283911,182.0770592,15.974036,0.144307001,1620000000000 ,1620000000000 ,1620000000000 ,1616812566470 -1616812566498 ,112.5673271,26.8656123,64.09252167,181.2818073,182.0849498,15.979163,0.144350689,1620000000000 ,1620000000000 ,1620000000000 ,1616812566480 -1616812566508 ,112.5673271,26.86561085,64.09355927,181.2790479,182.0660689,15.985131,0.144399189,1620000000000 ,1620000000000 ,1620000000000 ,1616812566490 -1616812566517 ,112.567327,26.86560941,64.09468842,181.278037,182.0426452,15.99133,0.144458846,1620000000000 ,1620000000000 ,1620000000000 ,1616812566500 -1616812566527 ,112.567327,26.86560797,64.09590149,181.2774359,182.0308303,15.996636,0.144514936,1620000000000 ,1620000000000 ,1620000000000 ,1616812566510 -1616812566538 ,112.5673269,26.86560652,64.09711456,181.2780643,182.0215042,15.997913,0.144535862,1620000000000 ,1620000000000 ,1620000000000 ,1616812566520 -1616812566549 ,112.5673269,26.86560508,64.09829712,181.2773267,182.0240803,15.996743,0.144532797,1620000000000 ,1620000000000 ,1620000000000 ,1616812566530 -1616812566561 ,112.5673268,26.86560363,64.09944916,181.2785288,182.0205534,15.996603,0.144528552,1620000000000 ,1620000000000 ,1620000000000 ,1616812566540 -1616812566569 ,112.5673268,26.86560219,64.10057831,181.2787473,182.0220009,15.997504,0.144538065,1620000000000 ,1620000000000 ,1620000000000 ,1616812566550 -1616812566580 ,112.5673267,26.86560074,64.10163879,181.2800861,182.0189912,16.001352,0.144562005,1620000000000 ,1620000000000 ,1620000000000 ,1616812566560 -1616812566591 ,112.5673267,26.8655993,64.1026001,181.2826269,182.0148629,16.004742,0.144592725,1620000000000 ,1620000000000 ,1620000000000 ,1616812566570 -1616812566600 ,112.5673266,26.86559785,64.10342407,181.2846213,181.9844188,16.007288,0.144608726,1620000000000 ,1620000000000 ,1620000000000 ,1616812566580 -1616812566608 ,112.5673266,26.86559641,64.10402679,181.285359,181.9712407,16.01495,0.14466809,1620000000000 ,1620000000000 ,1620000000000 ,1616812566590 -1616812566618 ,112.5673265,26.86559496,64.10435486,181.290386,181.9774477,16.01956,0.144685265,1620000000000 ,1620000000000 ,1620000000000 ,1616812566600 -1616812566629 ,112.5673265,26.86559351,64.10449219,181.2982817,181.9951769,16.02918,0.144775624,1620000000000 ,1620000000000 ,1620000000000 ,1616812566610 -1616812566638 ,112.5673264,26.86559207,64.10459137,181.3060681,181.9553299,16.037582,0.144843024,1620000000000 ,1620000000000 ,1620000000000 ,1616812566620 -1616812566648 ,112.5673264,26.86559062,64.1049118,181.3107399,181.937074,16.035881,0.144860884,1620000000000 ,1620000000000 ,1620000000000 ,1616812566630 -1616812566660 ,112.5673263,26.86558917,64.10553741,181.3137999,181.9586832,16.027086,0.144806441,1620000000000 ,1620000000000 ,1620000000000 ,1616812566640 -1616812566670 ,112.5673263,26.86558772,64.10631561,181.3181165,181.9794752,16.02061,0.144739055,1620000000000 ,1620000000000 ,1620000000000 ,1616812566650 -1616812566680 ,112.5673262,26.86558628,64.10697937,181.3267226,181.9848744,16.027573,0.144766497,1620000000000 ,1620000000000 ,1620000000000 ,1616812566660 -1616812566690 ,112.5673262,26.86558483,64.10731506,181.3375962,181.995204,16.04378,0.144886638,1620000000000 ,1620000000000 ,1620000000000 ,1616812566670 -1616812566699 ,112.5673261,26.86558338,64.10730743,181.3488797,182.0054274,16.057928,0.145010743,1620000000000 ,1620000000000 ,1620000000000 ,1616812566680 -1616812566709 ,112.5673261,26.86558193,64.10720062,181.3580595,181.9855442,16.059917,0.145057088,1620000000000 ,1620000000000 ,1620000000000 ,1616812566690 -1616812566719 ,112.567326,26.86558048,64.10729218,181.3670753,181.9818032,16.054108,0.145021783,1620000000000 ,1620000000000 ,1620000000000 ,1616812566700 -1616812566729 ,112.567326,26.86557903,64.10770416,181.374288,182.0161802,16.047295,0.144969113,1620000000000 ,1620000000000 ,1620000000000 ,1616812566710 -1616812566740 ,112.5673259,26.86557758,64.10832214,181.3833585,182.0517334,16.046753,0.144955409,1620000000000 ,1620000000000 ,1620000000000 ,1616812566720 -1616812566750 ,112.5673259,26.86557614,64.10899353,181.391063,182.062224,16.05439,0.14500547,1620000000000 ,1620000000000 ,1620000000000 ,1616812566730 -1616812566761 ,112.5673258,26.86557468,64.10962677,181.3956802,182.0555745,16.068872,0.145127356,1620000000000 ,1620000000000 ,1620000000000 ,1616812566740 -1616812566770 ,112.5673258,26.86557323,64.11017609,181.4004067,182.0641623,16.075153,0.145201296,1620000000000 ,1620000000000 ,1620000000000 ,1616812566750 -1616812566780 ,112.5673257,26.86557178,64.11067963,181.4066358,182.0909562,16.074554,0.145218295,1620000000000 ,1620000000000 ,1620000000000 ,1616812566760 -1616812566792 ,112.5673256,26.86557033,64.11121368,181.415515,182.1160758,16.07049,0.145187422,1620000000000 ,1620000000000 ,1620000000000 ,1616812566770 -1616812566804 ,112.5673256,26.86556888,64.11186218,181.4230282,182.1325756,16.066233,0.145154111,1620000000000 ,1620000000000 ,1620000000000 ,1616812566780 -1616812566811 ,112.5673255,26.86556743,64.11260223,181.4289842,182.1533272,16.066135,0.145148142,1620000000000 ,1620000000000 ,1620000000000 ,1616812566790 -1616812566821 ,112.5673255,26.86556598,64.11336517,181.4340112,182.172731,16.06852,0.145163294,1620000000000 ,1620000000000 ,1620000000000 ,1616812566800 -1616812566831 ,112.5673254,26.86556453,64.11407471,181.4376722,182.1967094,16.07508,0.145212208,1620000000000 ,1620000000000 ,1620000000000 ,1616812566810 -1616812566841 ,112.5673254,26.86556308,64.11472321,181.4404862,182.2173741,16.08608,0.145304174,1620000000000 ,1620000000000 ,1620000000000 ,1616812566820 -1616812566850 ,112.5673253,26.86556162,64.11535645,181.4393114,182.2290547,16.091032,0.145362881,1620000000000 ,1620000000000 ,1620000000000 ,1616812566830 -1616812566860 ,112.5673253,26.86556017,64.11600494,181.4374263,182.2316619,16.092657,0.145390212,1620000000000 ,1620000000000 ,1620000000000 ,1616812566840 -1616812566871 ,112.5673252,26.86555872,64.11668396,181.4369892,182.2438334,16.0947,0.145406502,1620000000000 ,1620000000000 ,1620000000000 ,1616812566850 -1616812566881 ,112.5673251,26.86555727,64.11737823,181.4398578,182.2616746,16.095423,0.145417598,1620000000000 ,1620000000000 ,1620000000000 ,1616812566860 -1616812566891 ,112.5673251,26.86555581,64.11806488,181.4419342,182.2714505,16.094732,0.145416246,1620000000000 ,1620000000000 ,1620000000000 ,1616812566870 -1616812566903 ,112.567325,26.86555436,64.11869812,181.4457864,182.2813618,16.097347,0.145426374,1620000000000 ,1620000000000 ,1620000000000 ,1616812566880 -1616812566915 ,112.567325,26.86555291,64.11921692,181.4498026,182.2839299,16.101496,0.145457395,1620000000000 ,1620000000000 ,1620000000000 ,1616812566890 -1616812566922 ,112.5673249,26.86555145,64.11949158,181.4514418,182.279998,16.111876,0.145519426,1620000000000 ,1620000000000 ,1620000000000 ,1616812566900 -1616812566937 ,112.5673249,26.86555,64.11940765,181.4530811,182.2804182,16.118635,0.145586055,1620000000000 ,1620000000000 ,1620000000000 ,1616812566910 -1616812566947 ,112.5673248,26.86554854,64.11901855,181.453245,182.3109918,16.12743,0.145642761,1620000000000 ,1620000000000 ,1620000000000 ,1616812566920 -1616812566954 ,112.5673247,26.86554709,64.11860657,181.451715,182.3322033,16.13207,0.145687477,1620000000000 ,1620000000000 ,1620000000000 ,1616812566930 -1616812566965 ,112.5673247,26.86554563,64.11840057,181.4494747,182.3185954,16.137321,0.145746153,1620000000000 ,1620000000000 ,1620000000000 ,1616812566940 -1616812566973 ,112.5673246,26.86554417,64.11850739,181.4467427,182.3270207,16.133923,0.145744542,1620000000000 ,1620000000000 ,1620000000000 ,1616812566950 -1616812566982 ,112.5673246,26.86554272,64.11888885,181.4484092,182.3381223,16.129345,0.145706565,1620000000000 ,1620000000000 ,1620000000000 ,1616812566970 -1616812566993 ,112.5673245,26.86554126,64.1193924,181.4493381,182.355082,16.129152,0.145694209,1620000000000 ,1620000000000 ,1620000000000 ,1616812566980 -1616812567004 ,112.5673244,26.86553981,64.11988068,181.448136,182.3611607,16.139847,0.145767554,1620000000000 ,1620000000000 ,1620000000000 ,1616812566980 -1616812567013 ,112.5673244,26.86553835,64.12030029,181.4487644,182.3618358,16.151299,0.145867226,1620000000000 ,1620000000000 ,1620000000000 ,1616812567000 -1616812567023 ,112.5673243,26.86553689,64.12073517,181.4469339,182.3701947,16.155924,0.145933812,1620000000000 ,1620000000000 ,1620000000000 ,1616812567010 -1616812567036 ,112.5673242,26.86553397,64.12224579,181.441661,182.3565744,16.14938,0.291838808,1620000000000 ,1620000000000 ,1620000000000 ,1616812567020 -1616812567044 ,112.5673241,26.86553252,64.12342072,181.4397759,182.3587192,16.147074,0.145878642,1620000000000 ,1620000000000 ,1620000000000 ,1616812567030 -1616812567053 ,112.5673241,26.86553106,64.12477875,181.4390929,182.358207,16.149096,0.145894525,1620000000000 ,1620000000000 ,1620000000000 ,1616812567040 -1616812567062 ,112.567324,26.8655296,64.12625122,181.4367433,182.3518244,16.160755,0.14598037,1620000000000 ,1620000000000 ,1620000000000 ,1616812567050 -1616812567073 ,112.567324,26.86552814,64.1277771,181.4335194,182.3342706,16.167433,0.146063394,1620000000000 ,1620000000000 ,1620000000000 ,1616812567060 -1616812567082 ,112.5673239,26.86552668,64.12928009,181.4325905,182.3165869,16.171621,0.146106731,1620000000000 ,1620000000000 ,1620000000000 ,1616812567070 -1616812567094 ,112.5673238,26.86552522,64.13077545,181.4341751,182.3223668,16.17019,0.146107741,1620000000000 ,1620000000000 ,1620000000000 ,1616812567080 -1616812567104 ,112.5673238,26.86552376,64.1322937,181.436552,182.330153,16.168972,0.146103148,1620000000000 ,1620000000000 ,1620000000000 ,1616812567090 -1616812567113 ,112.5673237,26.8655223,64.13385773,181.4397212,182.3200274,16.167639,0.146090873,1620000000000 ,1620000000000 ,1620000000000 ,1616812567100 -1616812567125 ,112.5673237,26.86552084,64.13534546,181.4427812,182.3104927,16.167841,0.146089312,1620000000000 ,1620000000000 ,1620000000000 ,1616812567110 -1616812567134 ,112.5673236,26.86551938,64.13667297,181.4448302,182.3238519,16.177635,0.146147359,1620000000000 ,1620000000000 ,1620000000000 ,1616812567120 -1616812567144 ,112.5673235,26.86551792,64.1378479,181.4428085,182.3392157,16.189789,0.146250376,1620000000000 ,1620000000000 ,1620000000000 ,1616812567130 -1616812567153 ,112.5673235,26.86551646,64.13896179,181.4396119,182.3379423,16.19762,0.146338242,1620000000000 ,1620000000000 ,1620000000000 ,1616812567140 -1616812567163 ,112.5673234,26.865515,64.14006805,181.437399,182.3271902,16.198198,0.146356037,1620000000000 ,1620000000000 ,1620000000000 ,1616812567150 -1616812567174 ,112.5673234,26.86551353,64.14116669,181.4382186,182.3212391,16.199707,0.146369561,1620000000000 ,1620000000000 ,1620000000000 ,1616812567160 -1616812567184 ,112.5673233,26.86551207,64.14219666,181.4378634,182.3203626,16.201332,0.146380137,1620000000000 ,1620000000000 ,1620000000000 ,1616812567170 -1616812567193 ,112.5673232,26.86551061,64.14311218,181.4390655,182.3084181,16.202936,0.146391855,1620000000000 ,1620000000000 ,1620000000000 ,1616812567180 -1616812567204 ,112.5673232,26.86550915,64.14389801,181.4401584,182.2932141,16.206202,0.146412235,1620000000000 ,1620000000000 ,1620000000000 ,1616812567190 -1616812567214 ,112.5673231,26.86550768,64.14463806,181.4510867,182.2037828,16.212202,0.146578064,1620000000000 ,1620000000000 ,1620000000000 ,1616812567200 -1616812567224 ,112.5673231,26.86550621,64.14535522,181.4521522,182.0694534,16.22052,0.146793037,1620000000000 ,1620000000000 ,1620000000000 ,1616812567210 -1616812567236 ,112.567323,26.86550475,64.14582825,181.4564962,182.0805178,16.222462,0.146828716,1620000000000 ,1620000000000 ,1620000000000 ,1616812567220 -1616812567244 ,112.567323,26.86550328,64.14601135,181.4595561,182.084343,16.229496,0.146863589,1620000000000 ,1620000000000 ,1620000000000 ,1616812567230 -1616812567259 ,112.5673229,26.86550181,64.14608002,181.4534636,182.0702319,16.23426,0.146908825,1620000000000 ,1620000000000 ,1620000000000 ,1616812567240 -1616812567265 ,112.5673229,26.86550034,64.14632416,181.443027,182.0733304,16.239573,0.146953288,1620000000000 ,1620000000000 ,1620000000000 ,1616812567250 -1616812567275 ,112.5673228,26.86549887,64.14682007,181.4366613,182.1021367,16.240513,0.146986376,1620000000000 ,1620000000000 ,1620000000000 ,1616812567260 -1616812567285 ,112.5673228,26.8654974,64.14750671,181.4315796,182.1143109,16.232756,0.146938214,1620000000000 ,1620000000000 ,1620000000000 ,1616812567270 -1616812567295 ,112.5673227,26.86549594,64.14842987,181.4315523,182.10524,16.230062,0.146902647,1620000000000 ,1620000000000 ,1620000000000 ,1616812567280 -1616812567307 ,112.5673226,26.86549447,64.14942932,181.4329457,182.0809596,16.236887,0.146942437,1620000000000 ,1620000000000 ,1620000000000 ,1616812567290 -1616812567315 ,112.5673226,26.865493,64.15029144,181.4337926,182.0597738,16.250454,0.147046262,1620000000000 ,1620000000000 ,1620000000000 ,1616812567300 -1616812567325 ,112.5673225,26.86549153,64.15085602,181.427181,182.0625227,16.257223,0.147117251,1620000000000 ,1620000000000 ,1620000000000 ,1616812567310 -1616812567335 ,112.5673225,26.86549006,64.15128326,181.4153511,182.0918604,16.260416,0.147156225,1620000000000 ,1620000000000 ,1620000000000 ,1616812567320 -1616812567346 ,112.5673224,26.86548859,64.15187073,181.4040403,182.1186229,16.25731,0.147136051,1620000000000 ,1620000000000 ,1620000000000 ,1616812567330 -1616812567355 ,112.5673224,26.86548712,64.15274048,181.3958987,182.104187,16.25715,0.147136555,1620000000000 ,1620000000000 ,1620000000000 ,1616812567340 -1616812567367 ,112.5673223,26.86548565,64.15390015,181.3891505,182.0885867,16.255693,0.147132662,1620000000000 ,1620000000000 ,1620000000000 ,1616812567350 -1616812567376 ,112.5673223,26.86548418,64.15528107,181.3840142,182.0756398,16.256453,0.147144086,1620000000000 ,1620000000000 ,1620000000000 ,1616812567360 -1616812567386 ,112.5673222,26.86548271,64.1567688,181.3788506,182.0732724,16.259766,0.147168457,1620000000000 ,1620000000000 ,1620000000000 ,1616812567370 -1616812567396 ,112.5673222,26.86548123,64.15821838,181.3731405,182.0919938,16.265526,0.147217698,1620000000000 ,1620000000000 ,1620000000000 ,1616812567380 -1616812567407 ,112.5673221,26.86547976,64.15959167,181.3669661,182.1132917,16.270912,0.14727002,1620000000000 ,1620000000000 ,1620000000000 ,1616812567390 -1616812567416 ,112.5673221,26.86547829,64.16103363,181.3562563,182.1204125,16.269768,0.14728428,1620000000000 ,1620000000000 ,1620000000000 ,1616812567400 -1616812567428 ,112.567322,26.86547682,64.16270447,181.3461203,182.0991952,16.268723,0.147274963,1620000000000 ,1620000000000 ,1620000000000 ,1616812567410 -1616812567436 ,112.567322,26.86547535,64.16447449,181.3385798,182.0826719,16.266407,0.147259486,1620000000000 ,1620000000000 ,1620000000000 ,1616812567420 -1616812567447 ,112.5673219,26.86547388,64.16616058,181.3327605,182.0779863,16.2662,0.147250773,1620000000000 ,1620000000000 ,1620000000000 ,1616812567430 -1616812567456 ,112.5673218,26.8654724,64.16766357,181.3297279,182.0819319,16.267153,0.147252733,1620000000000 ,1620000000000 ,1620000000000 ,1616812567440 -1616812567466 ,112.5673218,26.86547093,64.16901398,181.3203295,182.1529918,16.267653,0.147114109,1620000000000 ,1620000000000 ,1620000000000 ,1616812567450 -1616812567476 ,112.5673217,26.86546947,64.17029572,181.311423,182.2097181,16.272526,0.147005159,1620000000000 ,1620000000000 ,1620000000000 ,1616812567460 -1616812567487 ,112.5673217,26.865468,64.17153168,181.3030628,182.2001149,16.276562,0.147043637,1620000000000 ,1620000000000 ,1620000000000 ,1616812567470 -1616812567496 ,112.5673216,26.86546653,64.17268372,181.2938011,182.2018013,16.280676,0.14708361,1620000000000 ,1620000000000 ,1620000000000 ,1616812567480 -1616812567508 ,112.5673216,26.86546506,64.17375183,181.2846486,182.2016562,16.284494,0.147111057,1620000000000 ,1620000000000 ,1620000000000 ,1616812567490 -1616812567520 ,112.5673215,26.86546359,64.17473602,181.2774359,182.1883612,16.287601,0.147133475,1620000000000 ,1620000000000 ,1620000000000 ,1616812567500 -1616812567532 ,112.5673215,26.86546212,64.17558289,181.2703325,182.1629547,16.288958,0.147149234,1620000000000 ,1620000000000 ,1620000000000 ,1616812567510 -1616812567539 ,112.5673214,26.86546065,64.17635345,181.2610162,182.161063,16.290066,0.147157871,1620000000000 ,1620000000000 ,1620000000000 ,1616812567520 -1616812567548 ,112.5673213,26.86545917,64.17716217,181.2532297,182.1682758,16.289248,0.147150407,1620000000000 ,1620000000000 ,1620000000000 ,1616812567530 -1616812567557 ,112.5673213,26.8654577,64.17808533,181.2452794,182.1602186,16.28863,0.147148522,1620000000000 ,1620000000000 ,1620000000000 ,1616812567540 -1616812567568 ,112.5673212,26.86545623,64.17915344,181.2376842,182.1431052,16.289524,0.147156997,1620000000000 ,1620000000000 ,1620000000000 ,1616812567550 -1616812567579 ,112.5673212,26.86545476,64.18032074,181.230253,182.120712,16.291159,0.14716921,1620000000000 ,1620000000000 ,1620000000000 ,1616812567560 -1616812567590 ,112.5673211,26.86545329,64.18149567,181.2228764,182.1020715,16.295998,0.14720631,1620000000000 ,1620000000000 ,1620000000000 ,1616812567570 -1616812567599 ,112.5673211,26.86545182,64.18267059,181.2165653,182.0895907,16.299734,0.147240194,1620000000000 ,1620000000000 ,1620000000000 ,1616812567580 -1616812567614 ,112.567321,26.86545035,64.18388367,181.2086969,182.082894,16.302746,0.147272215,1620000000000 ,1620000000000 ,1620000000000 ,1616812567590 -1616812567622 ,112.567321,26.86544888,64.18522644,181.2012657,182.0772766,16.302101,0.147277925,1620000000000 ,1620000000000 ,1620000000000 ,1616812567600 -1616812567631 ,112.5673209,26.86544741,64.18669891,181.1941349,182.0673744,16.301514,0.14727941,1620000000000 ,1620000000000 ,1620000000000 ,1616812567610 -1616812567643 ,112.5673209,26.86544593,64.18824768,181.1863759,182.0544056,16.302294,0.147284214,1620000000000 ,1620000000000 ,1620000000000 ,1616812567620 -1616812567651 ,112.5673208,26.86544446,64.18980408,181.1808571,182.0406088,16.3021,0.14728553,1620000000000 ,1620000000000 ,1620000000000 ,1616812567630 -1616812567661 ,112.5673207,26.86544299,64.19134521,181.1762125,182.0276781,16.3044,0.147301592,1620000000000 ,1620000000000 ,1620000000000 ,1616812567640 -1616812567671 ,112.5673207,26.86544152,64.19286346,181.1712948,182.0161499,16.30572,0.14731568,1620000000000 ,1620000000000 ,1620000000000 ,1616812567650 -1616812567688 ,112.5673206,26.86544004,64.19436646,181.1687266,182.0009249,16.307478,0.147332377,1620000000000 ,1620000000000 ,1620000000000 ,1616812567660 -1616812567692 ,112.5673206,26.86543857,64.19587708,181.1655848,181.9862588,16.308561,0.147342756,1620000000000 ,1620000000000 ,1620000000000 ,1616812567670 -1616812567702 ,112.5673205,26.8654371,64.19736481,181.1616779,181.9710938,16.310684,0.147362149,1620000000000 ,1620000000000 ,1620000000000 ,1616812567680 -1616812567715 ,112.5673205,26.86543563,64.19881439,181.1594376,181.961326,16.31367,0.147385397,1620000000000 ,1620000000000 ,1620000000000 ,1616812567690 -1616812567723 ,112.5673204,26.86543415,64.20020294,181.1559679,181.9583691,16.316021,0.147408283,1620000000000 ,1620000000000 ,1620000000000 ,1616812567700 -1616812567732 ,112.5673204,26.86543268,64.20155334,181.1523615,181.9508499,16.317423,0.14742339,1620000000000 ,1620000000000 ,1620000000000 ,1616812567710 -1616812567742 ,112.5673203,26.86543121,64.20291138,181.1497387,181.9443193,16.317081,0.147425634,1620000000000 ,1620000000000 ,1620000000000 ,1616812567720 -1616812567752 ,112.5673203,26.86542973,64.2042923,181.1479356,181.9335618,16.317528,0.147430803,1620000000000 ,1620000000000 ,1620000000000 ,1616812567740 -1616812567763 ,112.5673202,26.86542826,64.20565796,181.1455313,181.9269197,16.317888,0.147431219,1620000000000 ,1620000000000 ,1620000000000 ,1616812567750 -1616812567773 ,112.5673202,26.86542679,64.20694733,181.1453674,181.9276579,16.320452,0.147449987,1620000000000 ,1620000000000 ,1620000000000 ,1616812567750 -1616812567784 ,112.5673201,26.86542531,64.20814514,181.1424168,181.9336759,16.32184,0.147462954,1620000000000 ,1620000000000 ,1620000000000 ,1616812567770 -1616812567794 ,112.5673201,26.86542384,64.20927429,181.1438648,181.9315645,16.323961,0.147479429,1620000000000 ,1620000000000 ,1620000000000 ,1616812567780 -1616812567804 ,112.56732,26.86542236,64.21032715,181.1429905,181.9246842,16.32609,0.147493444,1620000000000 ,1620000000000 ,1620000000000 ,1616812567780 -1616812567814 ,112.5673199,26.86541942,64.21217346,181.1399852,181.9200057,16.330206,0.295035634,1620000000000 ,1620000000000 ,1620000000000 ,1616812567800 -1616812567824 ,112.5673199,26.86541942,64.21217346,181.1399852,-400,16.330206,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812567810 -1616812567833 ,112.5673198,26.86541647,64.21356964,181.1391109,181.923283,16.333553,0.295094007,1620000000000 ,1620000000000 ,1620000000000 ,1616812567820 -1616812567844 ,112.5673198,26.86541647,64.21356964,181.1391109,-400,16.333553,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812567830 -1616812567855 ,112.5673197,26.86541352,64.21478271,181.1363242,181.9227054,16.335228,0.295122986,1620000000000 ,1620000000000 ,1620000000000 ,1616812567840 -1616812567863 ,112.5673197,26.86541204,64.21539307,181.134685,181.924133,16.33575,0.147571145,1620000000000 ,1620000000000 ,1620000000000 ,1616812567850 -1616812567874 ,112.5673196,26.86541057,64.21599579,181.1347123,181.930485,16.335882,0.147571611,1620000000000 ,1620000000000 ,1620000000000 ,1616812567860 -1616812567884 ,112.5673196,26.86540909,64.21660614,181.1320349,181.9341539,16.336683,0.147576375,1620000000000 ,1620000000000 ,1620000000000 ,1616812567870 -1616812567894 ,112.5673195,26.86540762,64.21723175,181.1309147,181.9375131,16.33813,0.147589153,1620000000000 ,1620000000000 ,1620000000000 ,1616812567880 -1616812567903 ,112.5673195,26.86540762,64.21723175,181.1309147,-400,16.33813,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812567890 -1616812567914 ,112.5673194,26.86540467,64.21855164,181.1285925,181.9425542,16.340946,0.29521747,1620000000000 ,1620000000000 ,1620000000000 ,1616812567900 -1616812567924 ,112.5673194,26.86540319,64.21928406,181.1267073,181.949288,16.341259,0.147621855,1620000000000 ,1620000000000 ,1620000000000 ,1616812567910 -1616812567934 ,112.5673193,26.86540172,64.22006226,181.1252047,181.945107,16.342249,0.14762842,1620000000000 ,1620000000000 ,1620000000000 ,1616812567920 -1616812567947 ,112.5673193,26.86540024,64.22084045,181.123019,181.9429637,16.343382,0.147638017,1620000000000 ,1620000000000 ,1620000000000 ,1616812567930 -1616812567955 ,112.5673192,26.86539876,64.22157288,181.1208334,181.9434474,16.34552,0.147653206,1620000000000 ,1620000000000 ,1620000000000 ,1616812567940 -1616812567964 ,112.5673192,26.86539729,64.22225189,181.1191668,181.9430257,16.346766,0.147665325,1620000000000 ,1620000000000 ,1620000000000 ,1616812567950 -1616812567974 ,112.5673191,26.86539581,64.22293854,181.1157244,181.9437317,16.348072,0.14767586,1620000000000 ,1620000000000 ,1620000000000 ,1616812567960 -1616812567984 ,112.5673191,26.86539434,64.22369385,181.1142764,181.9419462,16.348227,0.147682504,1620000000000 ,1620000000000 ,1620000000000 ,1616812567970 -1616812567994 ,112.567319,26.86539286,64.22451782,181.1142217,181.9423583,16.348614,0.147687622,1620000000000 ,1620000000000 ,1620000000000 ,1616812567980 -1616812568004 ,112.567319,26.86539138,64.22540283,181.1136207,181.9415983,16.348415,0.147688324,1620000000000 ,1620000000000 ,1620000000000 ,1616812567990 -1616812568015 ,112.5673189,26.86538991,64.22635651,181.1120088,181.9385434,16.347082,0.1476824,1620000000000 ,1620000000000 ,1620000000000 ,1616812568000 -1616812568026 ,112.5673189,26.86538843,64.22740936,181.112118,181.9393533,16.347843,0.147686211,1620000000000 ,1620000000000 ,1620000000000 ,1616812568010 -1616812568035 ,112.5673188,26.86538696,64.22853088,181.1144676,181.9441628,16.34894,0.14769854,1620000000000 ,1620000000000 ,1620000000000 ,1616812568020 -1616812568046 ,112.5673188,26.86538548,64.22971344,181.1141944,181.9463975,16.349804,0.147711961,1620000000000 ,1620000000000 ,1620000000000 ,1616812568030 -1616812568056 ,112.5673187,26.865384,64.23100281,181.1157244,181.9490527,16.34944,0.147716296,1620000000000 ,1620000000000 ,1620000000000 ,1616812568040 -1616812568065 ,112.5673187,26.86538253,64.23240662,181.1161069,181.9465253,16.348175,0.14770971,1620000000000 ,1620000000000 ,1620000000000 ,1616812568050 -1616812568075 ,112.5673186,26.86538105,64.23387146,181.1170631,181.9442251,16.347895,0.1477078,1620000000000 ,1620000000000 ,1620000000000 ,1616812568060 -1616812568085 ,112.5673186,26.86537957,64.23534393,181.1203689,181.9415827,16.348343,0.147715052,1620000000000 ,1620000000000 ,1620000000000 ,1616812568070 -1616812568095 ,112.5673185,26.8653781,64.23674011,181.1251227,181.9406001,16.351223,0.147732197,1620000000000 ,1620000000000 ,1620000000000 ,1616812568080 -1616812568106 ,112.5673185,26.86537662,64.23802185,181.1311879,181.9394413,16.354216,0.147756145,1620000000000 ,1620000000000 ,1620000000000 ,1616812568090 -1616812568118 ,112.5673184,26.86537514,64.23914337,181.1353134,181.9314534,16.35753,0.147780148,1620000000000 ,1620000000000 ,1620000000000 ,1616812568100 -1616812568127 ,112.5673184,26.86537367,64.24010468,181.1402584,181.9294848,16.360743,0.147803231,1620000000000 ,1620000000000 ,1620000000000 ,1616812568110 -1616812568136 ,112.5673183,26.86537219,64.24092865,181.1427992,181.9311172,16.36262,0.14782139,1620000000000 ,1620000000000 ,1620000000000 ,1616812568120 -1616812568147 ,112.5673183,26.86537071,64.24168396,181.1475531,181.9325679,16.366087,0.147842366,1620000000000 ,1620000000000 ,1620000000000 ,1616812568130 -1616812568156 ,112.5673182,26.86536923,64.24242401,181.1517878,181.9358942,16.368135,0.147869613,1620000000000 ,1620000000000 ,1620000000000 ,1616812568140 -1616812568166 ,112.5673182,26.86536776,64.24320221,181.1559405,181.9325572,16.367184,0.147864463,1620000000000 ,1620000000000 ,1620000000000 ,1616812568150 -1616812568177 ,112.5673181,26.86536628,64.24398804,181.1620877,181.9267457,16.36651,0.147857482,1620000000000 ,1620000000000 ,1620000000000 ,1616812568160 -1616812568186 ,112.5673181,26.8653648,64.24473572,181.1697102,181.9339896,16.369127,0.147870494,1620000000000 ,1620000000000 ,1620000000000 ,1616812568170 -1616812568196 ,112.567318,26.86536332,64.24539948,181.175912,181.9485109,16.37186,0.147890473,1620000000000 ,1620000000000 ,1620000000000 ,1616812568180 -1616812568206 ,112.567318,26.86536184,64.24606323,181.1812942,181.959067,16.37392,0.147912409,1620000000000 ,1620000000000 ,1620000000000 ,1616812568190 -1616812568216 ,112.5673179,26.86536036,64.24682617,181.1902281,181.9217105,16.400084,0.148277543,1620000000000 ,1620000000000 ,1620000000000 ,1616812568200 -1616812568228 ,112.5673179,26.86535888,64.2477417,181.195501,181.8422039,16.40121,0.148842673,1620000000000 ,1620000000000 ,1620000000000 ,1616812568210 -1616812568237 ,112.5673179,26.86535739,64.24869537,181.2012657,181.8457454,16.402052,0.148850451,1620000000000 ,1620000000000 ,1620000000000 ,1616812568220 -1616812568248 ,112.5673178,26.8653559,64.24965668,181.2044349,181.858538,16.401888,0.148851709,1620000000000 ,1620000000000 ,1620000000000 ,1616812568230 -1616812568256 ,112.5673178,26.86535441,64.25061035,181.2061561,181.8687147,16.402292,0.148849853,1620000000000 ,1620000000000 ,1620000000000 ,1616812568240 -1616812568266 ,112.5673177,26.86535292,64.25160217,181.210063,181.8784957,16.40325,0.148859891,1620000000000 ,1620000000000 ,1620000000000 ,1616812568250 -1616812568278 ,112.5673177,26.86535144,64.25263214,181.2132595,181.8859737,16.404821,0.148874088,1620000000000 ,1620000000000 ,1620000000000 ,1616812568260 -1616812568286 ,112.5673176,26.86534995,64.25367737,181.2151719,181.8865519,16.406715,0.148889602,1620000000000 ,1620000000000 ,1620000000000 ,1616812568270 -1616812568299 ,112.5673176,26.86534846,64.254776,181.217139,181.8851507,16.405792,0.148891887,1620000000000 ,1620000000000 ,1620000000000 ,1616812568280 -1616812568316 ,112.5673175,26.86534697,64.25591278,181.2181772,181.8789748,16.407143,0.14888978,1620000000000 ,1620000000000 ,1620000000000 ,1616812568290 -1616812568326 ,112.5673175,26.86534548,64.25704193,181.2219202,181.8898285,16.407171,0.148910488,1620000000000 ,1620000000000 ,1620000000000 ,1616812568300 -1616812568329 ,112.5673174,26.865344,64.25811768,181.227958,181.908653,16.410976,0.148922025,1620000000000 ,1620000000000 ,1620000000000 ,1616812568310 -1616812568338 ,112.5673174,26.86534251,64.25922394,181.230936,181.9194499,16.412432,0.148942149,1620000000000 ,1620000000000 ,1620000000000 ,1616812568320 -1616812568352 ,112.5673173,26.86534102,64.26050568,181.2305808,181.9163834,16.412674,0.148956144,1620000000000 ,1620000000000 ,1620000000000 ,1616812568330 -1616812568358 ,112.5673173,26.86533953,64.26194763,181.2305535,181.920262,16.410946,0.148956624,1620000000000 ,1620000000000 ,1620000000000 ,1616812568340 -1616812568367 ,112.5673172,26.86533804,64.26348114,181.2298705,181.9380075,16.40651,0.148924189,1620000000000 ,1620000000000 ,1620000000000 ,1616812568350 -1616812568377 ,112.5673172,26.86533655,64.26503754,181.2307994,181.9516359,16.405918,0.148909192,1620000000000 ,1620000000000 ,1620000000000 ,1616812568360 -1616812568389 ,112.5673171,26.86533506,64.26651764,181.2333402,181.955836,16.408514,0.148923141,1620000000000 ,1620000000000 ,1620000000000 ,1616812568370 -1616812568398 ,112.5673171,26.86533358,64.26786041,181.2364548,181.9565944,16.415682,0.148978198,1620000000000 ,1620000000000 ,1620000000000 ,1616812568380 -1616812568411 ,112.567317,26.86533209,64.26903534,181.2395147,181.9553848,16.42085,0.149024585,1620000000000 ,1620000000000 ,1620000000000 ,1616812568390 -1616812568419 ,112.567317,26.8653306,64.27011871,181.2391869,181.9509615,16.421999,0.149043338,1620000000000 ,1620000000000 ,1620000000000 ,1616812568400 -1616812568429 ,112.5673169,26.86532911,64.27121735,181.2397333,181.953166,16.419598,0.149031287,1620000000000 ,1620000000000 ,1620000000000 ,1616812568410 -1616812568437 ,112.5673169,26.86532762,64.27235413,181.2428205,181.9559399,16.417913,0.149012666,1620000000000 ,1620000000000 ,1620000000000 ,1616812568420 -1616812568448 ,112.5673168,26.86532613,64.27346802,181.2464542,181.9569921,16.418316,0.14900794,1620000000000 ,1620000000000 ,1620000000000 ,1616812568430 -1616812568458 ,112.5673168,26.86532464,64.27448273,181.2498966,181.9540226,16.42364,0.149040705,1620000000000 ,1620000000000 ,1620000000000 ,1616812568440 -1616812568468 ,112.5673167,26.86532315,64.27531433,181.2517271,181.999672,16.42972,0.148752651,1620000000000 ,1620000000000 ,1620000000000 ,1616812568450 -1616812568479 ,112.5673167,26.86532167,64.27602386,181.2505796,182.0483415,16.430468,0.148434769,1620000000000 ,1620000000000 ,1620000000000 ,1616812568460 -1616812568489 ,112.5673166,26.86532019,64.27674103,181.2536396,182.0501982,16.431135,0.148443001,1620000000000 ,1620000000000 ,1620000000000 ,1616812568470 -1616812568498 ,112.5673165,26.8653187,64.27749634,181.2558525,182.0598453,16.430967,0.148437644,1620000000000 ,1620000000000 ,1620000000000 ,1616812568480 -1616812568511 ,112.5673165,26.86531722,64.27827454,181.2567268,182.0703752,16.43191,0.148447746,1620000000000 ,1620000000000 ,1620000000000 ,1616812568490 -1616812568518 ,112.5673164,26.86531574,64.27901459,181.2603878,182.0708877,16.432463,0.148452391,1620000000000 ,1620000000000 ,1620000000000 ,1616812568500 -1616812568528 ,112.5673164,26.86531425,64.27970123,181.2609069,182.0713866,16.434458,0.148461871,1620000000000 ,1620000000000 ,1620000000000 ,1616812568510 -1616812568540 ,112.5673163,26.86531277,64.28036499,181.2623822,182.078443,16.436197,0.148479664,1620000000000 ,1620000000000 ,1620000000000 ,1616812568520 -1616812568550 ,112.5673163,26.86531128,64.28105927,181.2623002,182.0862903,16.438345,0.148501374,1620000000000 ,1620000000000 ,1620000000000 ,1616812568530 -1616812568560 ,112.5673162,26.8653098,64.28179169,181.2619177,182.0917936,16.43953,0.148509687,1620000000000 ,1620000000000 ,1620000000000 ,1616812568540 -1616812568569 ,112.5673162,26.86530832,64.28256226,181.2648137,182.0952266,16.440857,0.148524444,1620000000000 ,1620000000000 ,1620000000000 ,1616812568550 -1616812568580 ,112.5673161,26.86530683,64.28337097,181.2669994,182.0905925,16.440998,0.148530656,1620000000000 ,1620000000000 ,1620000000000 ,1616812568560 -1616812568592 ,112.5673161,26.86530535,64.28418732,181.2684201,182.0908362,16.441624,0.148534852,1620000000000 ,1620000000000 ,1620000000000 ,1616812568570 -1616812568601 ,112.567316,26.86530386,64.2849884,181.26995,182.0895179,16.442724,0.148541297,1620000000000 ,1620000000000 ,1620000000000 ,1616812568580 -1616812568611 ,112.567316,26.86530238,64.28579712,181.2721084,182.0896267,16.442501,0.148541909,1620000000000 ,1620000000000 ,1620000000000 ,1616812568590 -1616812568620 ,112.5673159,26.86530089,64.28662872,181.2738569,182.09441,16.444473,0.148551183,1620000000000 ,1620000000000 ,1620000000000 ,1616812568600 -1616812568634 ,112.5673158,26.86529941,64.28743744,181.2770808,182.0909467,16.44473,0.148563661,1620000000000 ,1620000000000 ,1620000000000 ,1616812568610 -1616812568641 ,112.5673158,26.86529792,64.28816986,181.2822444,182.0999797,16.44956,0.148584849,1620000000000 ,1620000000000 ,1620000000000 ,1616812568620 -1616812568651 ,112.5673157,26.86529644,64.28883362,181.2875173,182.0988787,16.452677,0.148616232,1620000000000 ,1620000000000 ,1620000000000 ,1616812568630 -1616812568660 ,112.5673157,26.86529495,64.289505,181.2903587,182.0889438,16.455225,0.148639137,1620000000000 ,1620000000000 ,1620000000000 ,1616812568640 -1616812568671 ,112.5673156,26.86529347,64.29029846,181.2905499,182.0960479,16.455414,0.148649667,1620000000000 ,1620000000000 ,1620000000000 ,1616812568650 -1616812568680 ,112.5673156,26.86529198,64.29116058,181.2936918,182.1020532,16.45442,0.148645156,1620000000000 ,1620000000000 ,1620000000000 ,1616812568660 -1616812568690 ,112.5673155,26.8652905,64.29206848,181.2977353,182.1118279,16.456263,0.148653768,1620000000000 ,1620000000000 ,1620000000000 ,1616812568670 -1616812568700 ,112.5673155,26.86528901,64.29302216,181.3016421,182.1106526,16.458405,0.148671993,1620000000000 ,1620000000000 ,1620000000000 ,1616812568680 -1616812568710 ,112.5673154,26.86528752,64.29401398,181.3051665,182.1096075,16.460342,0.148695197,1620000000000 ,1620000000000 ,1620000000000 ,1616812568690 -1616812568721 ,112.5673154,26.86528604,64.29507446,181.3094012,182.108895,16.462719,0.148719884,1620000000000 ,1620000000000 ,1620000000000 ,1616812568700 -1616812568731 ,112.5673153,26.86528455,64.29621887,181.3134447,182.1165554,16.46227,0.148725482,1620000000000 ,1620000000000 ,1620000000000 ,1616812568710 -1616812568741 ,112.5673152,26.86528307,64.29746246,181.3148107,182.1255464,16.461689,0.148721816,1620000000000 ,1620000000000 ,1620000000000 ,1616812568720 -1616812568750 ,112.5673152,26.86528158,64.29878235,181.3182258,182.1233694,16.461023,0.148722839,1620000000000 ,1620000000000 ,1620000000000 ,1616812568730 -1616812568760 ,112.5673151,26.86528009,64.30019379,181.320712,182.1247105,16.461752,0.148728056,1620000000000 ,1620000000000 ,1620000000000 ,1616812568740 -1616812568772 ,112.5673151,26.86527861,64.30171204,181.3219688,182.1278803,16.460981,0.148734411,1620000000000 ,1620000000000 ,1620000000000 ,1616812568750 -1616812568784 ,112.567315,26.86527712,64.30331421,181.3243184,182.1309147,16.458775,0.148725421,1620000000000 ,1620000000000 ,1620000000000 ,1616812568760 -1616812568796 ,112.567315,26.86527564,64.30504608,181.3247282,182.1340851,16.45697,0.148713323,1620000000000 ,1620000000000 ,1620000000000 ,1616812568770 -1616812568803 ,112.5673149,26.86527415,64.30683136,181.3265587,182.1291763,16.457249,0.148713382,1620000000000 ,1620000000000 ,1620000000000 ,1616812568780 -1616812568814 ,112.5673149,26.86527266,64.30860901,181.3299738,182.1281516,16.459211,0.148734206,1620000000000 ,1620000000000 ,1620000000000 ,1616812568790 -1616812568834 ,112.5673148,26.86527118,64.31027985,181.3319682,182.131053,16.46193,0.148757699,1620000000000 ,1620000000000 ,1620000000000 ,1616812568800 -1616812568837 ,112.5673147,26.86526969,64.31182861,181.3347822,182.1444262,16.462488,0.148768268,1620000000000 ,1620000000000 ,1620000000000 ,1616812568820 -1616812568845 ,112.5673147,26.8652682,64.31326294,181.3364761,182.1519778,16.46216,0.148763495,1620000000000 ,1620000000000 ,1620000000000 ,1616812568830 -1616812568853 ,112.5673146,26.86526672,64.31455994,181.3402737,182.1472047,16.463005,0.148766213,1620000000000 ,1620000000000 ,1620000000000 ,1616812568840 -1616812568863 ,112.5673146,26.86526523,64.31568909,181.3434156,182.1430274,16.463966,0.148772671,1620000000000 ,1620000000000 ,1620000000000 ,1616812568850 -1616812568872 ,112.5673145,26.86526226,64.31735992,181.3475137,182.1320522,16.468351,0.297566445,1620000000000 ,1620000000000 ,1620000000000 ,1616812568860 -1616812568882 ,112.5673145,26.86526226,64.31735992,181.3475137,-400,16.468351,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812568870 -1616812568893 ,112.5673144,26.86525928,64.31783295,181.356311,182.146957,16.482113,0.297706981,1620000000000 ,1620000000000 ,1620000000000 ,1616812568880 -1616812568902 ,112.5673144,26.86525928,64.31783295,181.356311,-400,16.482113,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812568880 -1616812568914 ,112.5673142,26.8652563,64.31734467,181.3605457,182.1514363,16.490108,0.297862244,1620000000000 ,1620000000000 ,1620000000000 ,1616812568900 -1616812568923 ,112.5673142,26.86525482,64.31708527,181.3607642,182.1355365,16.489109,0.148944617,1620000000000 ,1620000000000 ,1620000000000 ,1616812568910 -1616812568935 ,112.5673141,26.86525333,64.31685638,181.3638242,182.1431317,16.48964,0.148940168,1620000000000 ,1620000000000 ,1620000000000 ,1616812568920 -1616812568953 ,112.5673141,26.86525184,64.31658936,181.3677857,182.1635496,16.492796,0.14895324,1620000000000 ,1620000000000 ,1620000000000 ,1616812568930 -1616812568961 ,112.567314,26.86525035,64.31626892,181.3692064,182.1739619,16.496296,0.148982774,1620000000000 ,1620000000000 ,1620000000000 ,1616812568940 -1616812568965 ,112.567314,26.86524886,64.31597137,181.3713101,182.1698929,16.498837,0.149009271,1620000000000 ,1620000000000 ,1620000000000 ,1616812568950 -1616812568973 ,112.567314,26.86524886,64.31597137,181.3713101,-400,16.498837,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812568960 -1616812568984 ,112.5673138,26.86524588,64.31561279,181.3760092,182.1644096,16.504005,0.298083539,1620000000000 ,1620000000000 ,1620000000000 ,1616812568970 -1616812568994 ,112.5673138,26.86524439,64.31560516,181.3789325,182.1861916,16.505009,0.149065805,1620000000000 ,1620000000000 ,1620000000000 ,1616812568980 -1616812569004 ,112.5673138,26.86524439,64.31560516,181.3789325,-400,16.505009,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812568980 -1616812569014 ,112.5673137,26.86524141,64.31625366,181.3826482,182.2064481,16.501865,0.29811014,1620000000000 ,1620000000000 ,1620000000000 ,1616812569000 -1616812569024 ,112.5673136,26.86523993,64.31690979,181.3850797,182.2208615,16.500683,0.149042814,1620000000000 ,1620000000000 ,1620000000000 ,1616812569010 -1616812569033 ,112.5673136,26.86523844,64.31771851,181.3863911,182.2390494,16.501244,0.14904905,1620000000000 ,1620000000000 ,1620000000000 ,1616812569020 -1616812569044 ,112.5673135,26.86523695,64.3187027,181.3846699,182.2554247,16.501701,0.149058327,1620000000000 ,1620000000000 ,1620000000000 ,1616812569030 -1616812569053 ,112.5673134,26.86523546,64.31987762,181.3835224,182.2684329,16.503904,0.149079788,1620000000000 ,1620000000000 ,1620000000000 ,1616812569040 -1616812569063 ,112.5673134,26.86523397,64.32121277,181.3824023,182.2688048,16.505936,0.14910206,1620000000000 ,1620000000000 ,1620000000000 ,1616812569050 -1616812569076 ,112.5673134,26.86523397,64.32121277,181.3822384,-400,16.507248,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812569060 -1616812569085 ,112.5673133,26.86523099,64.32409668,181.382976,182.2694518,16.506426,0.298236751,1620000000000 ,1620000000000 ,1620000000000 ,1616812569070 -1616812569095 ,112.5673132,26.8652295,64.32568359,181.380927,182.2754344,16.506388,0.149115391,1620000000000 ,1620000000000 ,1620000000000 ,1616812569080 -1616812569106 ,112.5673131,26.86522801,64.32741547,181.3799981,182.2748687,16.50777,0.14913097,1620000000000 ,1620000000000 ,1620000000000 ,1616812569090 -1616812569115 ,112.5673131,26.86522652,64.32923889,181.3805718,182.2774402,16.510048,0.149153314,1620000000000 ,1620000000000 ,1620000000000 ,1616812569100 -1616812569124 ,112.567313,26.86522503,64.33110809,181.3819925,182.2826289,16.513393,0.149185625,1620000000000 ,1620000000000 ,1620000000000 ,1616812569110 -1616812569134 ,112.567313,26.86522353,64.33298492,181.3823476,182.2817629,16.516066,0.149212268,1620000000000 ,1620000000000 ,1620000000000 ,1616812569120 -1616812569145 ,112.5673129,26.86522204,64.33482361,181.3817193,182.2778359,16.520197,0.149242764,1620000000000 ,1620000000000 ,1620000000000 ,1616812569130 -1616812569155 ,112.5673129,26.86522055,64.33659363,181.3800527,182.2856015,16.523825,0.149277765,1620000000000 ,1620000000000 ,1620000000000 ,1616812569140 -1616812569165 ,112.5673128,26.86521906,64.33827972,181.3789325,182.3027252,16.526115,0.149304146,1620000000000 ,1620000000000 ,1620000000000 ,1616812569150 -1616812569180 ,112.5673127,26.86521757,64.33986664,181.3780036,182.3107095,16.52695,0.149310137,1620000000000 ,1620000000000 ,1620000000000 ,1616812569160 -1616812569186 ,112.5673127,26.86521608,64.34143066,181.3780036,182.3103024,16.527498,0.149314543,1620000000000 ,1620000000000 ,1620000000000 ,1616812569170 -1616812569200 ,112.5673126,26.86521458,64.34300232,181.3783588,182.3054836,16.529316,0.149328555,1620000000000 ,1620000000000 ,1620000000000 ,1616812569180 -1616812569223 ,112.5673126,26.86521309,64.34456635,181.3769108,182.3018241,16.531847,0.14934947,1620000000000 ,1620000000000 ,1620000000000 ,1616812569190 -1616812569227 ,112.5673125,26.8652116,64.34613037,181.3746159,182.2554564,16.532156,0.149313727,1620000000000 ,1620000000000 ,1620000000000 ,1616812569200 -1616812569229 ,112.5673124,26.86521011,64.34770203,181.3712554,182.1867832,16.537163,0.149244821,1620000000000 ,1620000000000 ,1620000000000 ,1616812569210 -1616812569245 ,112.5673124,26.86520862,64.34929657,181.3691517,182.1809394,16.543297,0.149297727,1620000000000 ,1620000000000 ,1620000000000 ,1616812569220 -1616812569248 ,112.5673123,26.86520712,64.35101318,181.3675398,182.1714568,16.54556,0.149334368,1620000000000 ,1620000000000 ,1620000000000 ,1616812569230 -1616812569257 ,112.5673123,26.86520563,64.35282898,181.3667202,182.1570057,16.547092,0.149352247,1620000000000 ,1620000000000 ,1620000000000 ,1616812569240 -1616812569267 ,112.5673122,26.86520414,64.35473633,181.3666109,182.1478363,16.546385,0.149355714,1620000000000 ,1620000000000 ,1620000000000 ,1616812569250 -1616812569277 ,112.5673122,26.86520265,64.35668182,181.3684141,182.1394496,16.546478,0.149354625,1620000000000 ,1620000000000 ,1620000000000 ,1616812569260 -1616812569287 ,112.5673121,26.86520115,64.35861206,181.3702719,182.1374639,16.54836,0.149370235,1620000000000 ,1620000000000 ,1620000000000 ,1616812569270 -1616812569297 ,112.567312,26.86519966,64.360466,181.3725395,182.1320705,16.55229,0.149397948,1620000000000 ,1620000000000 ,1620000000000 ,1616812569280 -1616812569308 ,112.567312,26.86519817,64.36219788,181.3735777,182.1261308,16.557266,0.149440694,1620000000000 ,1620000000000 ,1620000000000 ,1616812569290 -1616812569317 ,112.5673119,26.86519667,64.36380768,181.3740968,182.124373,16.562113,0.149483019,1620000000000 ,1620000000000 ,1620000000000 ,1616812569300 -1616812569327 ,112.5673119,26.86519518,64.3653183,181.3734957,182.129951,16.566479,0.149521844,1620000000000 ,1620000000000 ,1620000000000 ,1616812569310 -1616812569340 ,112.5673118,26.86519369,64.36680603,181.3719384,182.1362985,16.567154,0.149537345,1620000000000 ,1620000000000 ,1620000000000 ,1616812569320 -1616812569347 ,112.5673118,26.86519219,64.36839294,181.3703812,182.1241546,16.569193,0.149563868,1620000000000 ,1620000000000 ,1620000000000 ,1616812569330 -1616812569362 ,112.5673117,26.8651907,64.37010193,181.3681682,182.1135994,16.570126,0.149576643,1620000000000 ,1620000000000 ,1620000000000 ,1616812569340 -1616812569373 ,112.5673117,26.8651892,64.3718338,181.3655727,182.1169258,16.572472,0.149598699,1620000000000 ,1620000000000 ,1620000000000 ,1616812569350 -1616812569383 ,112.5673116,26.86518771,64.37350464,181.3642613,182.1196429,16.573582,0.149614882,1620000000000 ,1620000000000 ,1620000000000 ,1616812569360 -1616812569388 ,112.5673115,26.86518621,64.37506866,181.3652175,182.1142722,16.57787,0.149646435,1620000000000 ,1620000000000 ,1620000000000 ,1616812569370 -1616812569398 ,112.5673115,26.86518471,64.37648773,181.366283,182.1055078,16.583183,0.149690656,1620000000000 ,1620000000000 ,1620000000000 ,1616812569380 -1616812569407 ,112.5673114,26.86518322,64.37773132,181.3698074,182.0953,16.5858,0.14971564,1620000000000 ,1620000000000 ,1620000000000 ,1616812569390 -1616812569418 ,112.5673114,26.86518172,64.3788147,181.370791,182.0899337,16.586933,0.149727787,1620000000000 ,1620000000000 ,1620000000000 ,1616812569400 -1616812569427 ,112.5673113,26.86518023,64.379776,181.3730039,182.0899355,16.589643,0.149745586,1620000000000 ,1620000000000 ,1620000000000 ,1616812569410 -1616812569437 ,112.5673113,26.86517873,64.3806076,181.3743973,182.094316,16.593536,0.149772462,1620000000000 ,1620000000000 ,1620000000000 ,1616812569420 -1616812569450 ,112.5673112,26.86517723,64.38132477,181.3732772,182.0942301,16.597342,0.149804887,1620000000000 ,1620000000000 ,1620000000000 ,1616812569430 -1616812569458 ,112.5673112,26.86517573,64.38191986,181.3719931,182.0970405,16.602654,0.149845731,1620000000000 ,1620000000000 ,1620000000000 ,1616812569440 -1616812569469 ,112.5673111,26.86517424,64.38230896,181.3725395,182.1381108,16.609064,0.149966431,1620000000000 ,1620000000000 ,1620000000000 ,1616812569450 -1616812569483 ,112.567311,26.86517274,64.38246918,181.3746705,182.18917,16.613668,0.150077753,1620000000000 ,1620000000000 ,1620000000000 ,1616812569460 -1616812569489 ,112.567311,26.86517124,64.38247681,181.3750803,182.1984746,16.616692,0.150105696,1620000000000 ,1620000000000 ,1620000000000 ,1616812569470 -1616812569498 ,112.5673109,26.86516974,64.38240051,181.3770201,182.1973968,16.617823,0.150116018,1620000000000 ,1620000000000 ,1620000000000 ,1616812569480 -1616812569507 ,112.5673109,26.86516824,64.38227081,181.3778397,182.1936496,16.621445,0.15013883,1620000000000 ,1620000000000 ,1620000000000 ,1616812569490 -1616812569518 ,112.5673108,26.86516674,64.38205719,181.3788779,182.2010221,16.6246,0.150166084,1620000000000 ,1620000000000 ,1620000000000 ,1616812569500 -1616812569528 ,112.5673108,26.86516523,64.38175201,181.3792604,182.2109343,16.630499,0.150207726,1620000000000 ,1620000000000 ,1620000000000 ,1616812569510 -1616812569544 ,112.5673107,26.86516373,64.38137054,181.3787959,182.2170167,16.635191,0.150247864,1620000000000 ,1620000000000 ,1620000000000 ,1616812569520 -1616812569549 ,112.5673106,26.86516223,64.38096619,181.3796975,182.212797,16.64042,0.150292649,1620000000000 ,1620000000000 ,1620000000000 ,1616812569530 -1616812569561 ,112.5673106,26.86516073,64.38056946,181.379479,182.2205374,16.6431,0.150317702,1620000000000 ,1620000000000 ,1620000000000 ,1616812569540 -1616812569569 ,112.5673105,26.86515923,64.38019562,181.3792331,182.2312263,16.64581,0.150345314,1620000000000 ,1620000000000 ,1620000000000 ,1616812569550 -1616812569580 ,112.5673105,26.86515772,64.37986755,181.3789599,182.2431306,16.648378,0.150365416,1620000000000 ,1620000000000 ,1620000000000 ,1616812569560 -1616812569589 ,112.5673104,26.86515622,64.37960052,181.3778944,182.2561309,16.65181,0.150400263,1620000000000 ,1620000000000 ,1620000000000 ,1616812569570 -1616812569599 ,112.5673103,26.86515472,64.37940979,181.3755994,182.2635591,16.65587,0.150434032,1620000000000 ,1620000000000 ,1620000000000 ,1616812569580 -1616812569609 ,112.5673103,26.86515322,64.37928772,181.3745612,182.2726559,16.658615,0.150465571,1620000000000 ,1620000000000 ,1620000000000 ,1616812569590 -1616812569619 ,112.5673102,26.86515171,64.37922668,181.3740148,182.2795857,16.66108,0.150487228,1620000000000 ,1620000000000 ,1620000000000 ,1616812569600 -1616812569638 ,112.5673102,26.86515021,64.37926483,181.3739602,182.286555,16.661448,0.15050042,1620000000000 ,1620000000000 ,1620000000000 ,1616812569610 -1616812569642 ,112.5673101,26.8651487,64.37940979,181.3739875,182.2931113,16.663555,0.150515121,1620000000000 ,1620000000000 ,1620000000000 ,1616812569620 -1616812569653 ,112.56731,26.8651472,64.37966156,181.37284,182.3058877,16.665583,0.150536062,1620000000000 ,1620000000000 ,1620000000000 ,1616812569630 -1616812569660 ,112.56731,26.86514569,64.38002014,181.3702992,182.3217629,16.670197,0.150577223,1620000000000 ,1620000000000 ,1620000000000 ,1616812569640 -1616812569669 ,112.5673099,26.86514419,64.38051605,181.3683321,182.3349018,16.673445,0.150614016,1620000000000 ,1620000000000 ,1620000000000 ,1616812569650 -1616812569680 ,112.5673099,26.86514268,64.38116455,181.3656273,182.341079,16.675634,0.150643479,1620000000000 ,1620000000000 ,1620000000000 ,1616812569660 -1616812569689 ,112.5673098,26.86514118,64.38198853,181.3627587,182.3427372,16.675896,0.150656575,1620000000000 ,1620000000000 ,1620000000000 ,1616812569670 -1616812569704 ,112.5673097,26.86513967,64.38296509,181.3608189,182.3462947,16.677828,0.150675597,1620000000000 ,1620000000000 ,1620000000000 ,1616812569680 -1616812569713 ,112.5673097,26.86513817,64.3840332,181.3607642,182.3505054,16.680605,0.150703332,1620000000000 ,1620000000000 ,1620000000000 ,1616812569690 -1616812569736 ,112.5673096,26.86513666,64.38511658,181.3592343,182.3609158,16.68461,0.150743513,1620000000000 ,1620000000000 ,1620000000000 ,1616812569700 -1616812569740 ,112.5673096,26.86513516,64.38619232,181.3581688,182.3669136,16.687645,0.150774044,1620000000000 ,1620000000000 ,1620000000000 ,1616812569710 -1616812569746 ,112.5673095,26.86513365,64.38726044,181.3567481,182.3726317,16.689436,0.150794969,1620000000000 ,1620000000000 ,1620000000000 ,1616812569720 -1616812569753 ,112.5673094,26.86513214,64.38835144,181.3547537,182.376448,16.691826,0.150819209,1620000000000 ,1620000000000 ,1620000000000 ,1616812569730 -1616812569761 ,112.5673094,26.86513064,64.38942719,181.3526227,182.3719754,16.693794,0.150839827,1620000000000 ,1620000000000 ,1620000000000 ,1616812569740 -1616812569771 ,112.5673093,26.86512913,64.39048004,181.3498906,182.3763911,16.69612,0.150860995,1620000000000 ,1620000000000 ,1620000000000 ,1616812569750 -1616812569782 ,112.5673092,26.86512762,64.39150238,181.3466667,182.3735028,16.700445,0.150895786,1620000000000 ,1620000000000 ,1620000000000 ,1616812569760 -1616812569791 ,112.5673092,26.86512611,64.39245605,181.3437434,182.3720368,16.70556,0.150941369,1620000000000 ,1620000000000 ,1620000000000 ,1616812569770 -1616812569802 ,112.5673091,26.8651246,64.39332581,181.3407928,182.3725537,16.711008,0.150988485,1620000000000 ,1620000000000 ,1620000000000 ,1616812569780 -1616812569814 ,112.5673091,26.86512309,64.39413452,181.3383339,182.3678237,16.714844,0.151027313,1620000000000 ,1620000000000 ,1620000000000 ,1616812569790 -1616812569822 ,112.567309,26.86512159,64.39490509,181.3350281,182.3576455,16.717663,0.151056581,1620000000000 ,1620000000000 ,1620000000000 ,1616812569800 -1616812569832 ,112.5673089,26.86512008,64.39563751,181.3340172,182.3467701,16.72026,0.151074182,1620000000000 ,1620000000000 ,1620000000000 ,1616812569810 -1616812569842 ,112.5673089,26.86511857,64.39629364,181.3346729,182.3420536,16.723938,0.15110701,1620000000000 ,1620000000000 ,1620000000000 ,1616812569830 -1616812569852 ,112.5673088,26.86511706,64.39679718,181.335192,182.33467,16.729065,0.151139706,1620000000000 ,1620000000000 ,1620000000000 ,1616812569840 -1616812569862 ,112.5673087,26.86511403,64.39733887,181.3336894,182.3304686,16.73998,0.302410323,1620000000000 ,1620000000000 ,1620000000000 ,1616812569850 -1616812569873 ,112.5673086,26.86511252,64.39746094,181.332979,182.3256229,16.74451,0.151266228,1620000000000 ,1620000000000 ,1620000000000 ,1616812569860 -1616812569883 ,112.5673086,26.86511101,64.39752197,181.3325965,182.3156592,16.74812,0.151295154,1620000000000 ,1620000000000 ,1620000000000 ,1616812569870 -1616812569894 ,112.5673085,26.8651095,64.39752197,181.3333615,182.3084213,16.751616,0.151321622,1620000000000 ,1620000000000 ,1620000000000 ,1616812569880 -1616812569904 ,112.5673085,26.8651095,64.39752197,181.3333615,-400,16.751616,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812569890 -1616812569915 ,112.5673084,26.86510647,64.39738464,181.3311485,182.2992409,16.76029,0.302744255,1620000000000 ,1620000000000 ,1620000000000 ,1616812569900 -1616812569930 ,112.5673083,26.86510496,64.39729309,181.3277061,182.2893509,16.765581,0.151435375,1620000000000 ,1620000000000 ,1620000000000 ,1616812569910 -1616812569937 ,112.5673083,26.86510345,64.39720917,181.327269,182.280252,16.77089,0.151476889,1620000000000 ,1620000000000 ,1620000000000 ,1616812569920 -1616812569943 ,112.5673082,26.86510193,64.39714813,181.3280067,182.2715827,16.774092,0.151508822,1620000000000 ,1620000000000 ,1620000000000 ,1616812569930 -1616812569953 ,112.5673081,26.86510042,64.39713287,181.3277061,182.2564696,16.776775,0.151534957,1620000000000 ,1620000000000 ,1620000000000 ,1616812569940 -1616812569964 ,112.5673081,26.8650989,64.39718628,181.330083,182.2429107,16.779945,0.1515566,1620000000000 ,1620000000000 ,1620000000000 ,1616812569950 -1616812569974 ,112.567308,26.86509739,64.39733124,181.3310939,182.2355236,16.783379,0.151588716,1620000000000 ,1620000000000 ,1620000000000 ,1616812569960 -1616812569984 ,112.567308,26.86509587,64.39757538,181.330848,182.2322852,16.78787,0.151627992,1620000000000 ,1620000000000 ,1620000000000 ,1616812569970 -1616812569995 ,112.5673079,26.86509436,64.39794159,181.3305748,182.2348904,16.789646,0.151652672,1620000000000 ,1620000000000 ,1620000000000 ,1616812569980 -1616812570003 ,112.5673079,26.86509436,64.39794159,181.3305748,-400,16.789646,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812569980 -1616812570013 ,112.5673078,26.86509133,64.39904022,181.3290722,182.2267353,16.79643,0.30338294,1620000000000 ,1620000000000 ,1620000000000 ,1616812570000 -1616812570023 ,112.5673077,26.86508981,64.39974213,181.3283891,182.2131779,16.801506,0.151753175,1620000000000 ,1620000000000 ,1620000000000 ,1616812570010 -1616812570033 ,112.5673077,26.86508829,64.40052032,181.33093,182.2075333,16.806217,0.151796911,1620000000000 ,1620000000000 ,1620000000000 ,1616812570020 -1616812570045 ,112.5673076,26.86508678,64.40139771,181.3300011,182.2042327,16.808683,0.151831186,1620000000000 ,1620000000000 ,1620000000000 ,1616812570030 -1616812570055 ,112.5673076,26.86508526,64.4024353,181.3293181,182.1980755,16.809835,0.151842456,1620000000000 ,1620000000000 ,1620000000000 ,1616812570040 -1616812570065 ,112.5673075,26.86508374,64.40365601,181.3294,182.1926104,16.810612,0.151853349,1620000000000 ,1620000000000 ,1620000000000 ,1616812570050 -1616812570075 ,112.5673074,26.86508222,64.40496826,181.3290448,182.1857921,16.815838,0.151894632,1620000000000 ,1620000000000 ,1620000000000 ,1616812570060 -1616812570090 ,112.5673074,26.86508071,64.40630341,181.3298371,182.1828216,16.822424,0.151947559,1620000000000 ,1620000000000 ,1620000000000 ,1616812570070 -1616812570099 ,112.5673073,26.86507919,64.40762329,181.3304382,182.1802452,16.828257,0.152004055,1620000000000 ,1620000000000 ,1620000000000 ,1616812570080 -1616812570106 ,112.5673073,26.86507767,64.40900421,181.3290448,182.1748357,16.832012,0.152040173,1620000000000 ,1620000000000 ,1620000000000 ,1616812570090 -1616812570117 ,112.5673072,26.86507615,64.41049957,181.3273783,182.1754332,16.834612,0.152073646,1620000000000 ,1620000000000 ,1620000000000 ,1616812570100 -1616812570126 ,112.5673071,26.86507463,64.41209412,181.3256844,182.1742815,16.838179,0.152105204,1620000000000 ,1620000000000 ,1620000000000 ,1616812570110 -1616812570135 ,112.5673071,26.86507311,64.41371918,181.3239905,182.182389,16.840994,0.152133049,1620000000000 ,1620000000000 ,1620000000000 ,1616812570120 -1616812570148 ,112.567307,26.86507159,64.41539001,181.3230889,182.1919429,16.844564,0.152167683,1620000000000 ,1620000000000 ,1620000000000 ,1616812570130 -1616812570156 ,112.567307,26.86507007,64.41708374,181.3197011,182.1875859,16.848751,0.152202892,1620000000000 ,1620000000000 ,1620000000000 ,1616812570140 -1616812570165 ,112.5673069,26.86506855,64.41883087,181.3168051,182.1824687,16.854647,0.152256614,1620000000000 ,1620000000000 ,1620000000000 ,1616812570150 -1616812570177 ,112.5673069,26.86506702,64.42058563,181.3169418,182.1874551,16.8624,0.152320595,1620000000000 ,1620000000000 ,1620000000000 ,1616812570160 -1616812570186 ,112.5673068,26.8650655,64.42234802,181.3164773,182.1980781,16.866016,0.152366483,1620000000000 ,1620000000000 ,1620000000000 ,1616812570170 -1616812570195 ,112.5673067,26.86506398,64.42410278,181.3144009,182.2009176,16.871307,0.152410643,1620000000000 ,1620000000000 ,1620000000000 ,1616812570180 -1616812570205 ,112.5673067,26.86506245,64.42583466,181.3123792,182.2028359,16.874279,0.152440435,1620000000000 ,1620000000000 ,1620000000000 ,1616812570190 -1616812570218 ,112.5673066,26.86506093,64.42770386,181.3180619,181.9998751,16.870975,0.152374423,1620000000000 ,1620000000000 ,1620000000000 ,1616812570200 -1616812570227 ,112.5673066,26.86505941,64.42979431,181.3137452,181.6377697,16.876312,0.152236627,1620000000000 ,1620000000000 ,1620000000000 ,1616812570210 -1616812570236 ,112.5673065,26.86505789,64.4318924,181.3089368,181.6437563,16.880312,0.152276424,1620000000000 ,1620000000000 ,1620000000000 ,1616812570220 -1616812570248 ,112.5673065,26.86505637,64.43402863,181.3045108,181.6468289,16.886505,0.152330412,1620000000000 ,1620000000000 ,1620000000000 ,1616812570230 -1616812570257 ,112.5673065,26.86505484,64.43616486,181.2999482,181.6459939,16.89242,0.152387389,1620000000000 ,1620000000000 ,1620000000000 ,1616812570240 -1616812570267 ,112.5673064,26.86505332,64.43823242,181.2965605,181.6445503,16.900654,0.152454814,1620000000000 ,1620000000000 ,1620000000000 ,1616812570250 -1616812570281 ,112.5673064,26.86505179,64.44018555,181.2904406,181.6494309,16.905807,0.152506128,1620000000000 ,1620000000000 ,1620000000000 ,1616812570260 -1616812570287 ,112.5673063,26.86505027,64.4420166,181.2862332,181.6562409,16.909388,0.152542859,1620000000000 ,1620000000000 ,1620000000000 ,1616812570270 -1616812570296 ,112.5673063,26.86504874,64.44377899,181.2820805,181.6604685,16.911545,0.152565661,1620000000000 ,1620000000000 ,1620000000000 ,1616812570280 -1616812570307 ,112.5673062,26.86504722,64.44551086,181.2774633,181.6669176,16.913895,0.1525873,1620000000000 ,1620000000000 ,1620000000000 ,1616812570290 -1616812570316 ,112.5673062,26.86504569,64.44721985,181.271562,181.6704683,16.918941,0.152626827,1620000000000 ,1620000000000 ,1620000000000 ,1616812570300 -1616812570327 ,112.5673061,26.86504417,64.44888306,181.2651689,181.6643921,16.926506,0.152689115,1620000000000 ,1620000000000 ,1620000000000 ,1616812570310 -1616812570338 ,112.5673061,26.86504264,64.45046997,181.2571913,181.6692777,16.93467,0.15276639,1620000000000 ,1620000000000 ,1620000000000 ,1616812570320 -1616812570353 ,112.5673061,26.86504111,64.45200348,181.2501425,181.6712792,16.939941,0.152813569,1620000000000 ,1620000000000 ,1620000000000 ,1616812570330 -1616812570357 ,112.567306,26.86503958,64.4535141,181.2410447,181.6645084,16.942015,0.152846893,1620000000000 ,1620000000000 ,1620000000000 ,1616812570340 -1616812570367 ,112.567306,26.86503806,64.45502472,181.2317556,181.6556848,16.943556,0.152860261,1620000000000 ,1620000000000 ,1620000000000 ,1616812570350 -1616812570377 ,112.5673059,26.86503653,64.45652008,181.2261549,181.6524282,16.947636,0.152895705,1620000000000 ,1620000000000 ,1620000000000 ,1616812570360 -1616812570387 ,112.5673059,26.865035,64.45797729,181.2177401,181.6491568,16.951393,0.152928575,1620000000000 ,1620000000000 ,1620000000000 ,1616812570370 -1616812570397 ,112.5673058,26.86503347,64.45935059,181.212795,181.6399836,16.955378,0.152960261,1620000000000 ,1620000000000 ,1620000000000 ,1616812570380 -1616812570409 ,112.5673058,26.86503194,64.46064758,181.2062107,181.6291057,16.958275,0.152992203,1620000000000 ,1620000000000 ,1620000000000 ,1616812570390 -1616812570418 ,112.5673057,26.86503041,64.4618454,181.2002821,181.6193737,16.96211,0.153020973,1620000000000 ,1620000000000 ,1620000000000 ,1616812570400 -1616812570430 ,112.5673057,26.86502888,64.46290588,181.1952005,181.6080587,16.968788,0.153066058,1620000000000 ,1620000000000 ,1620000000000 ,1616812570410 -1616812570440 ,112.5673057,26.86502735,64.46376038,181.1894358,181.6059818,16.97385,0.15310398,1620000000000 ,1620000000000 ,1620000000000 ,1616812570420 -1616812570450 ,112.5673056,26.86502582,64.4644165,181.1822777,181.59863,16.981918,0.153172223,1620000000000 ,1620000000000 ,1620000000000 ,1616812570430 -1616812570458 ,112.5673056,26.86502429,64.46499634,181.1732892,181.59161,16.987543,0.153223389,1620000000000 ,1620000000000 ,1620000000000 ,1616812570440 -1616812570469 ,112.5673055,26.86502276,64.46539307,181.1673333,181.7859777,16.991175,0.153360109,1620000000000 ,1620000000000 ,1620000000000 ,1616812570450 -1616812570479 ,112.5673055,26.86502122,64.46562195,181.1613227,181.9860072,16.992231,0.153484579,1620000000000 ,1620000000000 ,1620000000000 ,1616812570460 -1616812570488 ,112.5673054,26.86501969,64.46589661,181.1550936,181.9741957,16.993681,0.153496907,1620000000000 ,1620000000000 ,1620000000000 ,1616812570470 -1616812570499 ,112.5673054,26.86501815,64.46619415,181.1500392,181.9656536,16.996962,0.153520527,1620000000000 ,1620000000000 ,1620000000000 ,1616812570480 -1616812570511 ,112.5673053,26.86501662,64.46644592,181.1472252,181.9598168,17.00186,0.153557453,1620000000000 ,1620000000000 ,1620000000000 ,1616812570490 -1616812570519 ,112.5673053,26.86501508,64.46664429,181.1428812,181.9521207,17.006193,0.153595416,1620000000000 ,1620000000000 ,1620000000000 ,1616812570500 -1616812570530 ,112.5673052,26.86501355,64.4668808,181.1359417,181.9418863,17.007372,0.153614499,1620000000000 ,1620000000000 ,1620000000000 ,1616812570510 -1616812570544 ,112.5673052,26.86501201,64.46723175,181.1315704,181.9269169,17.00712,0.153614026,1620000000000 ,1620000000000 ,1620000000000 ,1616812570520 -1616812570549 ,112.5673051,26.86501048,64.46768951,181.125997,181.9249108,17.006521,0.153614604,1620000000000 ,1620000000000 ,1620000000000 ,1616812570530 -1616812570560 ,112.5673051,26.86500894,64.46826172,181.1202323,181.9254145,17.006384,0.153609916,1620000000000 ,1620000000000 ,1620000000000 ,1616812570540 -1616812570569 ,112.567305,26.86500741,64.46895599,181.1145223,181.921434,17.006882,0.153615143,1620000000000 ,1620000000000 ,1620000000000 ,1616812570550 -1616812570584 ,112.567305,26.86500587,64.4697876,181.109386,181.9122663,17.007013,0.153624152,1620000000000 ,1620000000000 ,1620000000000 ,1616812570560 -1616812570594 ,112.5673049,26.86500434,64.47076416,181.1043863,181.9012291,17.009533,0.153640349,1620000000000 ,1620000000000 ,1620000000000 ,1616812570570 -1616812570603 ,112.5673049,26.8650028,64.47187805,181.1001789,181.8933908,17.013494,0.153680325,1620000000000 ,1620000000000 ,1620000000000 ,1616812570580 -1616812570612 ,112.5673048,26.86500126,64.47309113,181.094742,181.8847207,17.014832,0.153700915,1620000000000 ,1620000000000 ,1620000000000 ,1616812570590 -1616812570621 ,112.5673048,26.86499973,64.47441864,181.0881577,181.8816052,17.015415,0.153710306,1620000000000 ,1620000000000 ,1620000000000 ,1616812570600 -1616812570637 ,112.5673047,26.86499819,64.47583771,181.0841689,181.882289,17.016024,0.153717863,1620000000000 ,1620000000000 ,1620000000000 ,1616812570610 -1616812570640 ,112.5673047,26.86499666,64.4773407,181.0797976,181.8786368,17.01645,0.153723517,1620000000000 ,1620000000000 ,1620000000000 ,1616812570620 -1616812570652 ,112.5673046,26.86499512,64.47883606,181.0758361,181.8701225,17.019373,0.153744078,1620000000000 ,1620000000000 ,1620000000000 ,1616812570630 -1616812570661 ,112.5673046,26.86499358,64.48028564,181.0708364,181.8617747,17.021841,0.15376745,1620000000000 ,1620000000000 ,1620000000000 ,1616812570640 -1616812570670 ,112.5673045,26.86499204,64.48168182,181.0642521,181.8498885,17.02496,0.153787724,1620000000000 ,1620000000000 ,1620000000000 ,1616812570650 -1616812570682 ,112.5673045,26.86499051,64.48305511,181.0586786,181.8542879,17.03006,0.153828738,1620000000000 ,1620000000000 ,1620000000000 ,1616812570660 -1616812570691 ,112.5673044,26.86498897,64.48439789,181.0541434,181.854916,17.035654,0.15387848,1620000000000 ,1620000000000 ,1620000000000 ,1616812570670 -1616812570701 ,112.5673044,26.86498743,64.48577881,181.0453188,181.8547857,17.036179,0.15389811,1620000000000 ,1620000000000 ,1620000000000 ,1616812570680 -1616812570712 ,112.5673043,26.86498589,64.48724365,181.037669,181.8489356,17.03604,0.153896687,1620000000000 ,1620000000000 ,1620000000000 ,1616812570690 -1616812570722 ,112.5673043,26.86498435,64.48880768,181.0296913,181.8382923,17.036669,0.153901711,1620000000000 ,1620000000000 ,1620000000000 ,1616812570700 -1616812570731 ,112.5673042,26.86498282,64.49040985,181.0203476,181.8281795,17.039501,0.153924567,1620000000000 ,1620000000000 ,1620000000000 ,1616812570710 -1616812570743 ,112.5673042,26.86498128,64.49203491,181.0113864,181.8245448,17.041405,0.153944595,1620000000000 ,1620000000000 ,1620000000000 ,1616812570720 -1616812570752 ,112.5673041,26.86497974,64.4937439,181.0009499,181.8297538,17.0445,0.153976795,1620000000000 ,1620000000000 ,1620000000000 ,1616812570730 -1616812570761 ,112.5673041,26.8649782,64.4956131,180.9924804,181.8243338,17.044239,0.153981099,1620000000000 ,1620000000000 ,1620000000000 ,1616812570740 -1616812570771 ,112.567304,26.86497666,64.49758148,180.9863879,181.8091426,17.043707,0.153981612,1620000000000 ,1620000000000 ,1620000000000 ,1616812570750 -1616812570783 ,112.567304,26.86497512,64.49963379,180.9780004,181.8077397,17.043873,0.15398381,1620000000000 ,1620000000000 ,1620000000000 ,1616812570760 -1616812570794 ,112.5673039,26.86497204,64.50392151,180.9563078,181.7992841,17.048294,0.308024065,1620000000000 ,1620000000000 ,1620000000000 ,1616812570780 -1616812570804 ,112.5673039,26.86497204,64.50392151,180.9563078,-400,17.048294,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812570790 -1616812570813 ,112.5673038,26.86496896,64.50818634,180.9373198,181.7946332,17.050459,0.308089592,1620000000000 ,1620000000000 ,1620000000000 ,1616812570800 -1616812570823 ,112.5673037,26.86496742,64.51028442,180.9258998,181.7785021,17.05092,0.154052003,1620000000000 ,1620000000000 ,1620000000000 ,1616812570810 -1616812570833 ,112.5673037,26.86496588,64.51234436,180.9142884,181.7641231,17.054146,0.154071869,1620000000000 ,1620000000000 ,1620000000000 ,1616812570820 -1616812570843 ,112.5673036,26.86496434,64.51425934,180.9058736,181.7501727,17.05839,0.154108457,1620000000000 ,1620000000000 ,1620000000000 ,1616812570830 -1616812570854 ,112.5673036,26.8649628,64.51602936,180.897213,181.7455527,17.06034,0.154129695,1620000000000 ,1620000000000 ,1620000000000 ,1616812570840 -1616812570865 ,112.5673035,26.86496126,64.5177536,180.8862573,181.7346962,17.060543,0.154133291,1620000000000 ,1620000000000 ,1620000000000 ,1616812570850 -1616812570874 ,112.5673035,26.86495972,64.51948547,180.8752744,181.7142212,17.062317,0.154142073,1620000000000 ,1620000000000 ,1620000000000 ,1616812570860 -1616812570893 ,112.5673034,26.86495818,64.52118683,180.8668596,181.7034421,17.065277,0.154168129,1620000000000 ,1620000000000 ,1620000000000 ,1616812570870 -1616812570898 ,112.5673034,26.86495664,64.52278137,180.857352,181.6925466,17.068903,0.154196125,1620000000000 ,1620000000000 ,1620000000000 ,1616812570880 -1616812570906 ,112.5673033,26.8649551,64.52432251,180.8484181,181.6854881,17.070402,0.154216006,1620000000000 ,1620000000000 ,1620000000000 ,1616812570890 -1616812570923 ,112.5673033,26.86495356,64.52588654,180.8371346,181.6692956,17.070263,0.15421961,1620000000000 ,1620000000000 ,1620000000000 ,1616812570900 -1616812570925 ,112.5673033,26.86495201,64.52752686,180.8274904,181.6524596,17.070457,0.154222188,1620000000000 ,1620000000000 ,1620000000000 ,1616812570910 -1616812570934 ,112.5673032,26.86495047,64.52921295,180.8196493,181.6421709,17.071568,0.154230953,1620000000000 ,1620000000000 ,1620000000000 ,1616812570920 -1616812570945 ,112.5673032,26.86494893,64.53088379,180.8123547,181.6365796,17.073484,0.154248756,1620000000000 ,1620000000000 ,1620000000000 ,1616812570930 -1616812570955 ,112.5673031,26.86494739,64.53250122,180.8009893,181.6302398,17.074364,0.154260318,1620000000000 ,1620000000000 ,1620000000000 ,1616812570940 -1616812570966 ,112.5673031,26.86494585,64.53409576,180.7927657,181.6146406,17.074171,0.154264152,1620000000000 ,1620000000000 ,1620000000000 ,1616812570950 -1616812570974 ,112.567303,26.8649443,64.53568268,180.7809085,181.5969446,17.07528,0.154268338,1620000000000 ,1620000000000 ,1620000000000 ,1616812570960 -1616812570985 ,112.567303,26.86494276,64.53722382,180.7738871,181.5867122,17.077152,0.15428443,1620000000000 ,1620000000000 ,1620000000000 ,1616812570970 -1616812570994 ,112.567303,26.86494122,64.53866577,180.7664285,181.5792111,17.078102,0.154295524,1620000000000 ,1620000000000 ,1620000000000 ,1616812570980 -1616812571006 ,112.5673029,26.86493968,64.54005432,180.7580137,181.5679071,17.07815,0.15429963,1620000000000 ,1620000000000 ,1620000000000 ,1616812570990 -1616812571014 ,112.5673029,26.86493814,64.54140472,180.7494623,181.5541931,17.078817,0.15430236,1620000000000 ,1620000000000 ,1620000000000 ,1616812571000 -1616812571025 ,112.5673028,26.86493659,64.54270935,180.7424955,181.5393409,17.080027,0.154313202,1620000000000 ,1620000000000 ,1620000000000 ,1616812571010 -1616812571038 ,112.5673028,26.86493505,64.54391479,180.736485,181.5286281,17.079987,0.154317408,1620000000000 ,1620000000000 ,1620000000000 ,1616812571020 -1616812571047 ,112.5673027,26.86493351,64.54504395,180.7301465,181.5205415,17.07941,0.154311246,1620000000000 ,1620000000000 ,1620000000000 ,1616812571030 -1616812571056 ,112.5673027,26.86493196,64.54614258,180.72542,181.5108953,17.080395,0.154314914,1620000000000 ,1620000000000 ,1620000000000 ,1616812571040 -1616812571066 ,112.5673027,26.86493042,64.54721832,180.7191909,181.5011564,17.083109,0.154337599,1620000000000 ,1620000000000 ,1620000000000 ,1616812571050 -1616812571075 ,112.5673026,26.86492888,64.5482254,180.7134262,181.4904815,17.084566,0.154352436,1620000000000 ,1620000000000 ,1620000000000 ,1616812571060 -1616812571089 ,112.5673026,26.86492734,64.5491333,180.7074976,181.4887991,17.085163,0.154360985,1620000000000 ,1620000000000 ,1620000000000 ,1616812571070 -1616812571097 ,112.5673025,26.86492579,64.54995728,180.7011319,181.4834565,17.085974,0.154364225,1620000000000 ,1620000000000 ,1620000000000 ,1616812571080 -1616812571106 ,112.5673025,26.86492425,64.5506897,180.6975529,181.4694466,17.086649,0.154369316,1620000000000 ,1620000000000 ,1620000000000 ,1616812571090 -1616812571125 ,112.5673025,26.86492271,64.55130005,180.6919794,181.4593435,17.088564,0.154379488,1620000000000 ,1620000000000 ,1620000000000 ,1616812571100 -1616812571130 ,112.5673024,26.86492116,64.5517807,180.6890288,181.4510272,17.090439,0.154390489,1620000000000 ,1620000000000 ,1620000000000 ,1616812571110 -1616812571137 ,112.5673024,26.86491962,64.55211639,180.685641,181.4449076,17.093204,0.154408302,1620000000000 ,1620000000000 ,1620000000000 ,1616812571120 -1616812571147 ,112.5673023,26.86491808,64.55230713,180.6821986,181.4414976,17.09728,0.154436188,1620000000000 ,1620000000000 ,1620000000000 ,1616812571130 -1616812571156 ,112.5673023,26.86491653,64.55236053,180.6787016,181.4389886,17.099783,0.154461791,1620000000000 ,1620000000000 ,1620000000000 ,1616812571140 -1616812571166 ,112.5673023,26.86491499,64.55235291,180.6735653,181.4338657,17.100496,0.154466244,1620000000000 ,1620000000000 ,1620000000000 ,1616812571150 -1616812571176 ,112.5673022,26.86491344,64.55236816,180.6689207,181.4286196,17.100471,0.154465629,1620000000000 ,1620000000000 ,1620000000000 ,1616812571160 -1616812571186 ,112.5673022,26.8649119,64.55243683,180.6649319,181.4269761,17.100391,0.154468365,1620000000000 ,1620000000000 ,1620000000000 ,1616812571170 -1616812571197 ,112.5673022,26.86491035,64.55254364,180.6622818,181.4227925,17.100931,0.15447239,1620000000000 ,1620000000000 ,1620000000000 ,1616812571180 -1616812571207 ,112.5673021,26.86490881,64.55271912,180.6613256,181.4153715,17.100801,0.154473235,1620000000000 ,1620000000000 ,1620000000000 ,1616812571190 -1616812571217 ,112.5673021,26.86490726,64.552948,180.6572548,181.4171626,17.115334,0.154631357,1620000000000 ,1620000000000 ,1620000000000 ,1616812571200 -1616812571230 ,112.567302,26.86490572,64.55310059,180.65455,181.4218217,17.11961,0.154927203,1620000000000 ,1620000000000 ,1620000000000 ,1616812571210 -1616812571236 ,112.567302,26.86490417,64.55319214,180.6506431,181.4173453,17.123816,0.154964539,1620000000000 ,1620000000000 ,1620000000000 ,1616812571220 -1616812571246 ,112.567302,26.86490262,64.55330658,180.6452063,181.4174391,17.125353,0.154982892,1620000000000 ,1620000000000 ,1620000000000 ,1616812571230 -1616812571257 ,112.5673019,26.86490107,64.55349731,180.643649,181.408446,17.125181,0.154986,1620000000000 ,1620000000000 ,1620000000000 ,1616812571240 -1616812571267 ,112.5673019,26.86489952,64.55376434,180.642201,181.4024296,17.121185,0.154958926,1620000000000 ,1620000000000 ,1620000000000 ,1616812571250 -1616812571276 ,112.5673019,26.86489797,64.55413055,180.640835,181.3953858,17.118444,0.154930883,1620000000000 ,1620000000000 ,1620000000000 ,1616812571260 -1616812571296 ,112.5673018,26.86489642,64.55457306,180.640753,181.3908016,17.119682,0.154931301,1620000000000 ,1620000000000 ,1620000000000 ,1616812571270 -1616812571301 ,112.5673018,26.86489487,64.55501556,180.6405345,181.386216,17.127062,0.154982062,1620000000000 ,1620000000000 ,1620000000000 ,1616812571280 -1616812571312 ,112.5673017,26.86489332,64.55537415,180.6392231,181.3895878,17.132252,0.155030802,1620000000000 ,1620000000000 ,1620000000000 ,1616812571290 -1616812571320 ,112.5673017,26.86489177,64.55574799,180.6353708,181.389222,17.131983,0.155042365,1620000000000 ,1620000000000 ,1620000000000 ,1616812571300 -1616812571328 ,112.5673017,26.86489022,64.5562973,180.6339775,181.3814667,17.13223,0.155045915,1620000000000 ,1620000000000 ,1620000000000 ,1616812571310 -1616812571337 ,112.5673016,26.86488867,64.55708313,180.6329939,181.3770683,17.13038,0.155035155,1620000000000 ,1620000000000 ,1620000000000 ,1616812571320 -1616812571347 ,112.5673016,26.86488712,64.55805206,180.6340594,181.3713386,17.129698,0.155031813,1620000000000 ,1620000000000 ,1620000000000 ,1616812571330 -1616812571358 ,112.5673016,26.86488557,64.5591507,180.6356714,181.3709725,17.126982,0.155015362,1620000000000 ,1620000000000 ,1620000000000 ,1616812571340 -1616812571370 ,112.5673015,26.86488402,64.56034851,180.6379663,181.3719197,17.127188,0.155011803,1620000000000 ,1620000000000 ,1620000000000 ,1616812571350 -1616812571379 ,112.5673015,26.86488247,64.56159973,180.6400427,181.3712403,17.131067,0.155037996,1620000000000 ,1620000000000 ,1620000000000 ,1616812571360 -1616812571389 ,112.5673014,26.86488092,64.56287384,180.6391957,181.3671731,17.134712,0.15507268,1620000000000 ,1620000000000 ,1620000000000 ,1616812571370 -1616812571399 ,112.5673014,26.86487937,64.56416321,180.6395236,181.3788441,17.137035,0.155094552,1620000000000 ,1620000000000 ,1620000000000 ,1616812571380 -1616812571410 ,112.5673014,26.86487782,64.56548309,180.6393597,181.3883944,17.137732,0.15510568,1620000000000 ,1620000000000 ,1620000000000 ,1616812571390 -1616812571418 ,112.5673013,26.86487627,64.56692505,180.6379663,181.3869816,17.135489,0.155099608,1620000000000 ,1620000000000 ,1620000000000 ,1616812571400 -1616812571429 ,112.5673013,26.86487472,64.56858063,180.6368735,181.3795708,17.133793,0.155089192,1620000000000 ,1620000000000 ,1620000000000 ,1616812571410 -1616812571440 ,112.5673013,26.86487317,64.57039642,180.6388952,181.3791758,17.13454,0.155093744,1620000000000 ,1620000000000 ,1620000000000 ,1616812571420 -1616812571449 ,112.5673012,26.86487162,64.57224274,180.6403432,181.3822103,17.13515,0.155097965,1620000000000 ,1620000000000 ,1620000000000 ,1616812571430 -1616812571463 ,112.5673012,26.86487007,64.57408142,180.6431299,181.3873131,17.136023,0.155114263,1620000000000 ,1620000000000 ,1620000000000 ,1616812571440 -1616812571470 ,112.5673011,26.86486852,64.5759964,180.6434851,181.3888295,17.135513,0.154964336,1620000000000 ,1620000000000 ,1620000000000 ,1616812571450 -1616812571480 ,112.5673011,26.86486697,64.57807159,180.6438949,181.3826378,17.136469,0.154826097,1620000000000 ,1620000000000 ,1620000000000 ,1616812571460 -1616812571490 ,112.5673011,26.86486542,64.58018494,180.6430753,181.3862201,17.138882,0.15484702,1620000000000 ,1620000000000 ,1620000000000 ,1616812571470 -1616812571501 ,112.567301,26.86486388,64.5822525,180.6425289,181.400476,17.14047,0.154865248,1620000000000 ,1620000000000 ,1620000000000 ,1616812571480 -1616812571510 ,112.567301,26.86486233,64.58421326,180.643649,181.409372,17.139967,0.154866512,1620000000000 ,1620000000000 ,1620000000000 ,1616812571490 -1616812571520 ,112.567301,26.86486078,64.58616638,180.6418732,181.4036325,17.140121,0.154867225,1620000000000 ,1620000000000 ,1620000000000 ,1616812571500 -1616812571530 ,112.5673009,26.86485923,64.58809662,180.6407257,181.3959089,17.140558,0.154871029,1620000000000 ,1620000000000 ,1620000000000 ,1616812571510 -1616812571540 ,112.5673009,26.86485768,64.58992767,180.6430206,181.4005815,17.1408,0.154874401,1620000000000 ,1620000000000 ,1620000000000 ,1616812571520 -1616812571552 ,112.5673008,26.86485613,64.59159851,180.6427201,181.4114742,17.141768,0.154879475,1620000000000 ,1620000000000 ,1620000000000 ,1616812571530 -1616812571563 ,112.5673008,26.86485459,64.59316254,180.643048,181.4162993,17.143219,0.154890666,1620000000000 ,1620000000000 ,1620000000000 ,1616812571540 -1616812571571 ,112.5673008,26.86485304,64.59461975,180.6418459,181.4055908,17.144213,0.154893316,1620000000000 ,1620000000000 ,1620000000000 ,1616812571550 -1616812571584 ,112.5673007,26.86485149,64.59590912,180.6431572,181.4008622,17.144686,0.154896851,1620000000000 ,1620000000000 ,1620000000000 ,1616812571560 -1616812571596 ,112.5673007,26.86484994,64.59702301,180.6438403,181.4140678,17.147318,0.154908732,1620000000000 ,1620000000000 ,1620000000000 ,1616812571570 -1616812571605 ,112.5673006,26.86484839,64.59801483,180.6445233,181.4281888,17.147917,0.154915489,1620000000000 ,1620000000000 ,1620000000000 ,1616812571580 -1616812571614 ,112.5673006,26.86484684,64.59899902,180.6448238,181.4200995,17.146807,0.154911136,1620000000000 ,1620000000000 ,1620000000000 ,1616812571590 -1616812571622 ,112.5673006,26.86484529,64.60004425,180.6423923,181.4165092,17.146723,0.154907216,1620000000000 ,1620000000000 ,1620000000000 ,1616812571600 -1616812571632 ,112.5673005,26.86484375,64.60108185,180.6432119,181.4173218,17.14805,0.154913155,1620000000000 ,1620000000000 ,1620000000000 ,1616812571610 -1616812571642 ,112.5673005,26.8648422,64.60202789,180.6443594,181.4267344,17.15041,0.154927433,1620000000000 ,1620000000000 ,1620000000000 ,1616812571620 -1616812571651 ,112.5673005,26.86484065,64.60280609,180.6449604,181.4342926,17.153591,0.154947366,1620000000000 ,1620000000000 ,1620000000000 ,1616812571630 -1616812571662 ,112.5673004,26.8648391,64.60344696,180.6455342,181.438174,17.156336,0.15497029,1620000000000 ,1620000000000 ,1620000000000 ,1616812571640 -1616812571672 ,112.5673004,26.86483755,64.60399628,180.6450424,181.4344714,17.158438,0.154980114,1620000000000 ,1620000000000 ,1620000000000 ,1616812571650 -1616812571681 ,112.5673003,26.864836,64.60451508,180.6429387,181.4359396,17.158976,0.154991527,1620000000000 ,1620000000000 ,1620000000000 ,1616812571660 -1616812571691 ,112.5673003,26.86483445,64.60501099,180.6420098,181.440647,17.159794,0.154990847,1620000000000 ,1620000000000 ,1620000000000 ,1616812571670 -1616812571702 ,112.5673003,26.8648329,64.60548401,180.6416273,181.4427905,17.160896,0.154999941,1620000000000 ,1620000000000 ,1620000000000 ,1616812571680 -1616812571711 ,112.5673002,26.86483135,64.60597992,180.6417092,181.4458572,17.162498,0.155011425,1620000000000 ,1620000000000 ,1620000000000 ,1616812571690 -1616812571723 ,112.5673002,26.8648298,64.60654449,180.6401246,181.4417748,17.162455,0.15501693,1620000000000 ,1620000000000 ,1620000000000 ,1616812571700 -1616812571733 ,112.5673001,26.86482825,64.60721588,180.6395509,181.4441946,17.162233,0.15501488,1620000000000 ,1620000000000 ,1620000000000 ,1616812571710 -1616812571744 ,112.5673001,26.8648267,64.60803986,180.6377204,181.4446986,17.16147,0.155011988,1620000000000 ,1620000000000 ,1620000000000 ,1616812571720 -1616812571754 ,112.5673001,26.86482515,64.60904694,180.6362178,181.4509159,17.160336,0.155006786,1620000000000 ,1620000000000 ,1620000000000 ,1616812571730 -1616812571764 ,112.5673,26.8648236,64.61021423,180.6356714,181.4578758,17.158321,0.154998486,1620000000000 ,1620000000000 ,1620000000000 ,1616812571740 -1616812571774 ,112.5673,26.86482205,64.61154175,180.635043,181.4571931,17.15624,0.154986365,1620000000000 ,1620000000000 ,1620000000000 ,1616812571750 -1616812571782 ,112.5672999,26.8648205,64.61299133,180.6333218,181.4539375,17.155556,0.154978138,1620000000000 ,1620000000000 ,1620000000000 ,1616812571760 -1616812571793 ,112.5672999,26.86481895,64.61453247,180.6332125,181.4512566,17.155891,0.154984209,1620000000000 ,1620000000000 ,1620000000000 ,1616812571780 -1616812571808 ,112.5672999,26.86481741,64.6160965,180.6335677,181.4471072,17.154955,0.154981937,1620000000000 ,1620000000000 ,1620000000000 ,1616812571780 -1616812571814 ,112.5672998,26.86481431,64.61927795,180.6303438,181.4460853,17.152985,0.309932234,1620000000000 ,1620000000000 ,1620000000000 ,1616812571800 -1616812571823 ,112.5672998,26.86481431,64.61927795,180.6303438,-400,17.152985,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812571810 -1616812571837 ,112.5672997,26.86481121,64.62245941,180.6255354,181.4404666,17.155844,0.309969688,1620000000000 ,1620000000000 ,1620000000000 ,1616812571820 -1616812571844 ,112.5672997,26.86480966,64.6240387,180.6244425,181.4397892,17.155622,0.154996745,1620000000000 ,1620000000000 ,1620000000000 ,1616812571830 -1616812571853 ,112.5672996,26.86480811,64.62564087,180.622776,181.4294324,17.154343,0.154990268,1620000000000 ,1620000000000 ,1620000000000 ,1616812571840 -1616812571863 ,112.5672996,26.86480656,64.62727356,180.6223388,181.4176997,17.153448,0.154983131,1620000000000 ,1620000000000 ,1620000000000 ,1616812571850 -1616812571874 ,112.5672996,26.86480501,64.62890625,180.6223935,181.4128562,17.152796,0.154976252,1620000000000 ,1620000000000 ,1620000000000 ,1616812571860 -1616812571883 ,112.5672995,26.86480346,64.63048553,180.621246,181.4177981,17.154932,0.1549957,1620000000000 ,1620000000000 ,1620000000000 ,1616812571870 -1616812571893 ,112.5672995,26.86480191,64.63195038,180.622011,181.4191879,17.15724,0.155010163,1620000000000 ,1620000000000 ,1620000000000 ,1616812571880 -1616812571903 ,112.5672995,26.86480191,64.63195038,180.622011,-400,17.15724,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812571890 -1616812571913 ,112.5672994,26.86479881,64.63461304,180.6219837,181.4147953,17.157038,0.310048365,1620000000000 ,1620000000000 ,1620000000000 ,1616812571900 -1616812571940 ,112.5672994,26.86479726,64.63583374,180.6214919,181.4016113,17.155346,0.155003656,1620000000000 ,1620000000000 ,1620000000000 ,1616812571910 -1616812571942 ,112.5672993,26.86479571,64.63696289,180.6210274,181.3990022,17.155813,0.155001292,1620000000000 ,1620000000000 ,1620000000000 ,1616812571920 -1616812571944 ,112.5672993,26.86479416,64.63800812,180.6210274,181.4089083,17.15494,0.154998558,1620000000000 ,1620000000000 ,1620000000000 ,1616812571930 -1616812571956 ,112.5672993,26.86479261,64.63905334,180.6206996,181.4148336,17.154926,0.155000908,1620000000000 ,1620000000000 ,1620000000000 ,1616812571940 -1616812571964 ,112.5672992,26.86479106,64.64012146,180.6199073,181.4059465,17.155407,0.155006809,1620000000000 ,1620000000000 ,1620000000000 ,1616812571950 -1616812571974 ,112.5672992,26.86478951,64.64115906,180.6201532,181.3934333,17.15839,0.155026723,1620000000000 ,1620000000000 ,1620000000000 ,1616812571960 -1616812571984 ,112.5672991,26.86478796,64.64208984,180.6204537,181.3885391,17.158672,0.155034271,1620000000000 ,1620000000000 ,1620000000000 ,1616812571970 -1616812571996 ,112.5672991,26.86478641,64.64286804,180.6244972,181.3958102,17.158804,0.155035517,1620000000000 ,1620000000000 ,1620000000000 ,1616812571980 -1616812572005 ,112.5672991,26.86478641,64.64286804,180.6244972,-400,17.158804,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812571990 -1616812572015 ,112.567299,26.86478332,64.64426422,180.6274751,181.4063281,17.160088,0.310084922,1620000000000 ,1620000000000 ,1620000000000 ,1616812572000 -1616812572024 ,112.567299,26.86478177,64.64494324,180.6280489,181.3950415,17.157867,0.155028761,1620000000000 ,1620000000000 ,1620000000000 ,1616812572010 -1616812572035 ,112.567299,26.86478022,64.64553833,180.6298247,181.395564,17.15732,0.155019691,1620000000000 ,1620000000000 ,1620000000000 ,1616812572020 -1616812572056 ,112.5672989,26.86477867,64.64592743,180.6329393,181.3971578,17.160156,0.155029568,1620000000000 ,1620000000000 ,1620000000000 ,1616812572030 -1616812572057 ,112.5672989,26.86477712,64.64605713,180.6355621,181.4083974,17.164167,0.155053959,1620000000000 ,1620000000000 ,1620000000000 ,1616812572040 -1616812572065 ,112.5672988,26.86477557,64.64597321,180.6349883,181.4189012,17.166792,0.155073672,1620000000000 ,1620000000000 ,1620000000000 ,1616812572050 -1616812572075 ,112.5672988,26.86477402,64.64577484,180.6335677,181.4207442,17.167,0.155076714,1620000000000 ,1620000000000 ,1620000000000 ,1616812572060 -1616812572084 ,112.5672988,26.86477246,64.64558411,180.6302619,181.4150321,17.167135,0.155076708,1620000000000 ,1620000000000 ,1620000000000 ,1616812572070 -1616812572096 ,112.5672987,26.86477091,64.64542389,180.630699,181.4144252,17.16619,0.155069023,1620000000000 ,1620000000000 ,1620000000000 ,1616812572080 -1616812572104 ,112.5672987,26.86476936,64.64523315,180.6324475,181.4226379,17.166397,0.155061225,1620000000000 ,1620000000000 ,1620000000000 ,1616812572090 -1616812572115 ,112.5672986,26.86476781,64.64504242,180.6325295,181.4375464,17.168024,0.155074978,1620000000000 ,1620000000000 ,1620000000000 ,1616812572100 -1616812572124 ,112.5672986,26.86476626,64.64484406,180.6329939,181.436264,17.170101,0.15508755,1620000000000 ,1620000000000 ,1620000000000 ,1616812572110 -1616812572140 ,112.5672986,26.86476471,64.64461517,180.634278,181.4409415,17.172039,0.155106221,1620000000000 ,1620000000000 ,1620000000000 ,1616812572120 -1616812572146 ,112.5672985,26.86476316,64.64432526,180.6373106,181.4472765,17.173557,0.155109988,1620000000000 ,1620000000000 ,1620000000000 ,1616812572130 -1616812572155 ,112.5672985,26.86476161,64.64406586,180.6329393,181.4543692,17.173582,0.155114615,1620000000000 ,1620000000000 ,1620000000000 ,1616812572140 -1616812572167 ,112.5672984,26.86476006,64.64394379,180.6294696,181.4666804,17.173344,0.155112557,1620000000000 ,1620000000000 ,1620000000000 ,1616812572150 -1616812572178 ,112.5672984,26.86475851,64.64385986,180.6295788,181.4722702,17.17656,0.15513378,1620000000000 ,1620000000000 ,1620000000000 ,1616812572160 -1616812572190 ,112.5672984,26.86475696,64.64376068,180.6293329,181.4754146,17.176018,0.15513312,1620000000000 ,1620000000000 ,1620000000000 ,1616812572170 -1616812572197 ,112.5672983,26.86475541,64.64372253,180.6292783,181.4685642,17.175756,0.155126286,1620000000000 ,1620000000000 ,1620000000000 ,1616812572180 -1616812572205 ,112.5672983,26.86475386,64.64381409,180.6256173,181.4573764,17.177858,0.155141934,1620000000000 ,1620000000000 ,1620000000000 ,1616812572190 -1616812572215 ,112.5672982,26.86475231,64.64404297,180.6220929,181.4646732,17.181507,0.155173186,1620000000000 ,1620000000000 ,1620000000000 ,1616812572200 -1616812572226 ,112.5672982,26.86475075,64.64450073,180.6203717,181.0580513,17.188574,0.155312135,1620000000000 ,1620000000000 ,1620000000000 ,1616812572210 -1616812572235 ,112.5672982,26.8647492,64.64507294,180.6162736,181.006114,17.185024,0.155316018,1620000000000 ,1620000000000 ,1620000000000 ,1616812572220 -1616812572246 ,112.5672982,26.86474765,64.6459198,180.6137874,181.000839,17.180021,0.155279299,1620000000000 ,1620000000000 ,1620000000000 ,1616812572230 -1616812572258 ,112.5672981,26.8647461,64.64706421,180.6117384,180.9874895,17.176268,0.155247453,1620000000000 ,1620000000000 ,1620000000000 ,1616812572240 -1616812572267 ,112.5672981,26.86474454,64.64846802,180.6105636,180.9796729,17.177216,0.15525084,1620000000000 ,1620000000000 ,1620000000000 ,1616812572250 -1616812572277 ,112.5672981,26.86474299,64.6499939,180.6097713,180.9757782,17.180983,0.15528055,1620000000000 ,1620000000000 ,1620000000000 ,1616812572260 -1616812572293 ,112.5672981,26.86474144,64.65158844,180.6085419,180.9880097,17.183733,0.155315713,1620000000000 ,1620000000000 ,1620000000000 ,1616812572270 -1616812572300 ,112.567298,26.86473989,64.65332031,180.6037607,180.9930075,17.182194,0.155317689,1620000000000 ,1620000000000 ,1620000000000 ,1616812572280 -1616812572307 ,112.567298,26.86473833,64.65525818,180.5991708,180.9841498,17.178028,0.155292202,1620000000000 ,1620000000000 ,1620000000000 ,1616812572290 -1616812572316 ,112.567298,26.86473678,64.65733337,180.5959197,180.9798673,17.175207,0.155263582,1620000000000 ,1620000000000 ,1620000000000 ,1616812572300 -1616812572328 ,112.567298,26.86473523,64.6594696,180.5948542,180.9836996,17.175655,0.155267169,1620000000000 ,1620000000000 ,1620000000000 ,1616812572310 -1616812572337 ,112.5672979,26.86473368,64.66160583,180.5919308,180.9862749,17.176685,0.155276886,1620000000000 ,1620000000000 ,1620000000000 ,1616812572320 -1616812572349 ,112.5672979,26.86473212,64.66373444,180.5885157,180.9781933,17.178331,0.155294601,1620000000000 ,1620000000000 ,1620000000000 ,1616812572330 -1616812572374 ,112.5672979,26.86473057,64.66577911,180.5868765,180.9674809,17.180746,0.155312832,1620000000000 ,1620000000000 ,1620000000000 ,1616812572340 -1616812572376 ,112.5672978,26.86472902,64.66769409,180.5850733,180.9674302,17.184368,0.155341424,1620000000000 ,1620000000000 ,1620000000000 ,1616812572350 -1616812572382 ,112.5672978,26.86472746,64.66947937,180.5811118,180.9726998,17.185265,0.155351451,1620000000000 ,1620000000000 ,1620000000000 ,1616812572360 -1616812572390 ,112.5672978,26.86472591,64.67124939,180.577724,180.9665997,17.182573,0.155344815,1620000000000 ,1620000000000 ,1620000000000 ,1616812572370 -1616812572397 ,112.5672978,26.86472436,64.67314148,180.5765766,180.9531116,17.18187,0.155335015,1620000000000 ,1620000000000 ,1620000000000 ,1616812572380 -1616812572408 ,112.5672977,26.8647228,64.67512512,180.574227,180.9299313,17.179356,0.155318348,1620000000000 ,1620000000000 ,1620000000000 ,1616812572390 -1616812572419 ,112.5672977,26.86472125,64.67703247,180.5738718,180.9183242,17.181353,0.155324337,1620000000000 ,1620000000000 ,1620000000000 ,1616812572400 -1616812572433 ,112.5672977,26.8647197,64.6787262,180.5748007,180.9391721,17.186699,0.155365249,1620000000000 ,1620000000000 ,1620000000000 ,1616812572410 -1616812572438 ,112.5672977,26.86471814,64.68017578,180.5750193,180.9456396,17.192772,0.155406467,1620000000000 ,1620000000000 ,1620000000000 ,1616812572420 -1616812572449 ,112.5672976,26.86471659,64.68152618,180.5712763,180.9428224,17.192297,0.155419448,1620000000000 ,1620000000000 ,1620000000000 ,1616812572430 -1616812572458 ,112.5672976,26.86471504,64.68294525,180.5664952,180.9275288,17.189098,0.155405298,1620000000000 ,1620000000000 ,1620000000000 ,1616812572440 -1616812572468 ,112.5672976,26.86471348,64.6844635,180.5621512,180.9175094,17.185984,0.155377052,1620000000000 ,1620000000000 ,1620000000000 ,1616812572450 -1616812572480 ,112.5672976,26.86471193,64.68582153,180.5595831,181.2704974,17.185822,0.155268098,1620000000000 ,1620000000000 ,1620000000000 ,1616812572460 -1616812572488 ,112.5672975,26.86471038,64.68699646,180.5558128,181.2747872,17.189007,0.155284806,1620000000000 ,1620000000000 ,1620000000000 ,1616812572470 -1616812572498 ,112.5672975,26.86470882,64.6879425,180.5545014,181.2792884,17.193457,0.155320046,1620000000000 ,1620000000000 ,1620000000000 ,1616812572480 -1616812572508 ,112.5672975,26.86470727,64.68870544,180.552425,181.2654285,17.196955,0.155345559,1620000000000 ,1620000000000 ,1620000000000 ,1616812572490 -1616812572520 ,112.5672974,26.86470572,64.68937683,180.5502394,181.2538385,17.19797,0.155357392,1620000000000 ,1620000000000 ,1620000000000 ,1616812572500 -1616812572530 ,112.5672974,26.86470417,64.69004822,180.5480264,181.2464417,17.197092,0.155350469,1620000000000 ,1620000000000 ,1620000000000 ,1616812572510 -1616812572542 ,112.5672974,26.86470261,64.69076538,180.5452397,181.2455942,17.195547,0.155342598,1620000000000 ,1620000000000 ,1620000000000 ,1616812572520 -1616812572551 ,112.5672973,26.86470106,64.69149017,180.5431633,181.2439508,17.194824,0.155329091,1620000000000 ,1620000000000 ,1620000000000 ,1616812572530 -1616812572560 ,112.5672973,26.86469951,64.69216919,180.5411142,181.2405996,17.196075,0.15533524,1620000000000 ,1620000000000 ,1620000000000 ,1616812572540 -1616812572570 ,112.5672973,26.86469795,64.69276428,180.536579,181.2354586,17.197655,0.155345688,1620000000000 ,1620000000000 ,1620000000000 ,1616812572550 -1616812572579 ,112.5672972,26.8646964,64.69326019,180.5352403,181.231547,17.200247,0.155361574,1620000000000 ,1620000000000 ,1620000000000 ,1616812572560 -1616812572590 ,112.5672972,26.86469485,64.69369507,180.5325901,181.2291936,17.202442,0.155378625,1620000000000 ,1620000000000 ,1620000000000 ,1616812572570 -1616812572600 ,112.5672972,26.86469329,64.69415283,180.5300766,181.2311258,17.201954,0.155382239,1620000000000 ,1620000000000 ,1620000000000 ,1616812572580 -1616812572609 ,112.5672971,26.86469174,64.69469452,180.5274265,181.2303796,17.200987,0.155371497,1620000000000 ,1620000000000 ,1620000000000 ,1616812572590 -1616812572620 ,112.5672971,26.86469019,64.69532013,180.5251589,181.2344788,17.201475,0.155377405,1620000000000 ,1620000000000 ,1620000000000 ,1616812572600 -1616812572632 ,112.5672971,26.86468863,64.69596863,180.5225088,181.2344478,17.202578,0.155385857,1620000000000 ,1620000000000 ,1620000000000 ,1616812572610 -1616812572641 ,112.567297,26.86468708,64.69663239,180.5184653,181.240354,17.202711,0.155389419,1620000000000 ,1620000000000 ,1620000000000 ,1616812572620 -1616812572650 ,112.567297,26.86468553,64.69734192,180.5156786,181.2364841,17.200922,0.155378209,1620000000000 ,1620000000000 ,1620000000000 ,1616812572630 -1616812572660 ,112.567297,26.86468397,64.69815826,180.5127006,181.2364144,17.199102,0.155368723,1620000000000 ,1620000000000 ,1620000000000 ,1616812572640 -1616812572670 ,112.5672969,26.86468242,64.69909668,180.5107609,181.2352919,17.196953,0.155352405,1620000000000 ,1620000000000 ,1620000000000 ,1616812572650 -1616812572680 ,112.5672969,26.86468087,64.70009613,180.5108155,181.2384967,17.197104,0.155349887,1620000000000 ,1620000000000 ,1620000000000 ,1616812572660 -1616812572692 ,112.5672968,26.86467931,64.70109558,180.5090397,181.2475521,17.197758,0.155356008,1620000000000 ,1620000000000 ,1620000000000 ,1616812572670 -1616812572701 ,112.5672968,26.86467776,64.70204926,180.5050781,181.2557218,17.19943,0.1553687,1620000000000 ,1620000000000 ,1620000000000 ,1616812572680 -1616812572713 ,112.5672968,26.86467621,64.70298767,180.4971551,181.2587075,17.200808,0.155382356,1620000000000 ,1620000000000 ,1620000000000 ,1616812572690 -1616812572722 ,112.5672967,26.86467465,64.70397186,180.4899424,181.2614685,17.200548,0.155384507,1620000000000 ,1620000000000 ,1620000000000 ,1616812572700 -1616812572731 ,112.5672967,26.8646731,64.70504761,180.4831669,181.2704322,17.198587,0.155378042,1620000000000 ,1620000000000 ,1620000000000 ,1616812572710 -1616812572742 ,112.5672967,26.86467155,64.70619965,180.4769924,181.2768145,17.19559,0.155353399,1620000000000 ,1620000000000 ,1620000000000 ,1616812572720 -1616812572752 ,112.5672966,26.86466999,64.70739746,180.4689601,181.2793996,17.19451,0.155342574,1620000000000 ,1620000000000 ,1620000000000 ,1616812572730 -1616812572761 ,112.5672966,26.86466844,64.7085495,180.4618567,181.275992,17.195478,0.155345731,1620000000000 ,1620000000000 ,1620000000000 ,1616812572740 -1616812572771 ,112.5672966,26.86466689,64.70960236,180.4536878,181.2767882,17.198402,0.15536942,1620000000000 ,1620000000000 ,1620000000000 ,1616812572750 -1616812572782 ,112.5672965,26.86466533,64.71053314,180.4452457,181.2788811,17.199266,0.15537708,1620000000000 ,1620000000000 ,1620000000000 ,1616812572760 -1616812572791 ,112.5672965,26.86466378,64.71141052,180.4356015,181.2796714,17.199022,0.155374801,1620000000000 ,1620000000000 ,1620000000000 ,1616812572770 -1616812572803 ,112.5672965,26.86466223,64.71227264,180.4263944,181.276398,17.198986,0.155371862,1620000000000 ,1620000000000 ,1620000000000 ,1616812572780 -1616812572813 ,112.5672964,26.86466067,64.71312714,180.4159578,181.2742296,17.200344,0.155380799,1620000000000 ,1620000000000 ,1620000000000 ,1616812572790 -1616812572822 ,112.5672964,26.86465912,64.71395874,180.4062316,181.2672359,17.201551,0.155391595,1620000000000 ,1620000000000 ,1620000000000 ,1616812572800 -1616812572832 ,112.5672964,26.86465757,64.7148056,180.3940193,181.2626876,17.201693,0.155393417,1620000000000 ,1620000000000 ,1620000000000 ,1616812572810 -1616812572841 ,112.5672963,26.86465601,64.71567535,180.3811512,181.2607667,17.199312,0.155382381,1620000000000 ,1620000000000 ,1620000000000 ,1616812572820 -1616812572851 ,112.5672963,26.86465446,64.71660614,180.3686383,181.2564268,17.198584,0.155372268,1620000000000 ,1620000000000 ,1620000000000 ,1616812572830 -1616812572861 ,112.5672963,26.86465291,64.71759033,180.3548959,181.2489303,17.198635,0.155373485,1620000000000 ,1620000000000 ,1620000000000 ,1616812572840 -1616812572873 ,112.5672962,26.86465135,64.71858978,180.3441589,181.2382303,17.20122,0.155388966,1620000000000 ,1620000000000 ,1620000000000 ,1616812572850 -1616812572883 ,112.5672962,26.8646498,64.71958923,180.3323836,181.2221468,17.201979,0.15540111,1620000000000 ,1620000000000 ,1620000000000 ,1616812572870 -1616812572893 ,112.5672962,26.86464825,64.72054291,180.318614,181.2070429,17.203436,0.15541362,1620000000000 ,1620000000000 ,1620000000000 ,1616812572880 -1616812572902 ,112.5672961,26.86464669,64.72148132,180.3067568,181.1913962,17.203384,0.155410685,1620000000000 ,1620000000000 ,1620000000000 ,1616812572880 -1616812572917 ,112.5672961,26.86464514,64.72244263,180.2954733,181.1780508,17.202356,0.155409439,1620000000000 ,1620000000000 ,1620000000000 ,1616812572890 -1616812572924 ,112.5672961,26.86464358,64.72349548,180.2843811,181.1530922,17.200197,0.155391519,1620000000000 ,1620000000000 ,1620000000000 ,1616812572900 -1616812572933 ,112.567296,26.86464203,64.72467041,180.272879,181.1277009,17.198305,0.155375764,1620000000000 ,1620000000000 ,1620000000000 ,1616812572920 -1616812572946 ,112.567296,26.86464048,64.72595215,180.2610491,181.1090787,17.19735,0.155368529,1620000000000 ,1620000000000 ,1620000000000 ,1616812572930 -1616812572954 ,112.567296,26.86463737,64.72852325,180.2380997,181.0822499,17.199461,0.310759021,1620000000000 ,1620000000000 ,1620000000000 ,1616812572940 -1616812572992 ,112.5672959,26.86463582,64.72979736,180.2273353,181.0595919,17.199501,0.155392119,1620000000000 ,1620000000000 ,1620000000000 ,1616812572950 -1616812572995 ,112.5672959,26.86463426,64.73105621,180.2154235,181.0360528,17.200834,0.155397646,1620000000000 ,1620000000000 ,1620000000000 ,1616812572960 -1616812573005 ,112.5672959,26.86463271,64.73229218,180.2067901,181.0177702,17.19853,0.155388725,1620000000000 ,1620000000000 ,1620000000000 ,1616812572970 -1616812573010 ,112.5672958,26.86463116,64.73352814,180.1990583,181.0036015,17.197435,0.155377587,1620000000000 ,1620000000000 ,1620000000000 ,1616812572980 -1616812573014 ,112.5672958,26.86463116,64.73352814,180.1990583,-400,17.197435,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812572980 -1616812573016 ,112.5672958,26.86462805,64.73605347,180.1793601,180.9720958,17.196926,0.310730245,1620000000000 ,1620000000000 ,1620000000000 ,1616812573000 -1616812573024 ,112.5672958,26.86462649,64.73720551,180.1703442,180.9442402,17.199568,0.155382716,1620000000000 ,1620000000000 ,1620000000000 ,1616812573010 -1616812573033 ,112.5672957,26.86462494,64.73817444,180.1624485,180.9364875,17.202637,0.155406802,1620000000000 ,1620000000000 ,1620000000000 ,1616812573020 -1616812573044 ,112.5672957,26.86462339,64.7390213,180.1536513,180.9212028,17.202806,0.155413736,1620000000000 ,1620000000000 ,1620000000000 ,1616812573030 -1616812573054 ,112.5672957,26.86462183,64.73986816,180.1433513,180.9003408,17.203323,0.155416817,1620000000000 ,1620000000000 ,1620000000000 ,1616812573040 -1616812573067 ,112.5672957,26.86462028,64.74078369,180.1332153,180.8855324,17.200956,0.155403069,1620000000000 ,1620000000000 ,1620000000000 ,1616812573050 -1616812573074 ,112.5672956,26.86461873,64.74172974,180.1241175,180.868784,17.198076,0.155382663,1620000000000 ,1620000000000 ,1620000000000 ,1616812573060 -1616812573084 ,112.5672956,26.86461717,64.74265289,180.1163857,180.8565709,17.196918,0.155367869,1620000000000 ,1620000000000 ,1620000000000 ,1616812573070 -1616812573093 ,112.5672956,26.86461562,64.74347687,180.1095009,180.8506946,17.199343,0.15537656,1620000000000 ,1620000000000 ,1620000000000 ,1616812573080 -1616812573105 ,112.5672956,26.86461406,64.74417877,180.1015506,180.8385833,17.202364,0.155396002,1620000000000 ,1620000000000 ,1620000000000 ,1616812573090 -1616812573114 ,112.5672955,26.86461251,64.74478149,180.0948023,180.8353539,17.20476,0.155420047,1620000000000 ,1620000000000 ,1620000000000 ,1616812573100 -1616812573124 ,112.5672955,26.86461096,64.74533844,180.0886825,180.8250431,17.204939,0.155426205,1620000000000 ,1620000000000 ,1620000000000 ,1616812573110 -1616812573134 ,112.5672955,26.8646094,64.74588776,180.07953,180.8201379,17.202698,0.155407105,1620000000000 ,1620000000000 ,1620000000000 ,1616812573120 -1616812573146 ,112.5672955,26.86460785,64.74648285,180.0706508,180.818522,17.201262,0.155390577,1620000000000 ,1620000000000 ,1620000000000 ,1616812573130 -1616812573155 ,112.5672955,26.8646063,64.74705505,180.0593946,180.812926,17.20258,0.155398449,1620000000000 ,1620000000000 ,1620000000000 ,1616812573140 -1616812573165 ,112.5672954,26.86460474,64.74756622,180.0494499,180.8086696,17.205,0.155414238,1620000000000 ,1620000000000 ,1620000000000 ,1616812573150 -1616812573176 ,112.5672954,26.86460319,64.74794769,180.0400515,180.8000555,17.205671,0.155421613,1620000000000 ,1620000000000 ,1620000000000 ,1616812573160 -1616812573185 ,112.5672954,26.86460163,64.74823761,180.0324017,180.7984313,17.206587,0.15542549,1620000000000 ,1620000000000 ,1620000000000 ,1616812573170 -1616812573196 ,112.5672954,26.86460008,64.74850464,180.0218013,180.7841579,17.205929,0.155419632,1620000000000 ,1620000000000 ,1620000000000 ,1616812573180 -1616812573205 ,112.5672954,26.86459852,64.74877167,180.0122663,180.7715348,17.205767,0.155417837,1620000000000 ,1620000000000 ,1620000000000 ,1616812573190 -1616812573216 ,112.5672953,26.86459697,64.74945831,180.0100534,180.759122,17.210308,0.155347609,1620000000000 ,1620000000000 ,1620000000000 ,1616812573200 -1616812573226 ,112.5672953,26.86459542,64.75080109,180.0000813,180.7569199,17.211382,0.155346965,1620000000000 ,1620000000000 ,1620000000000 ,1616812573210 -1616812573235 ,112.5672953,26.86459386,64.75218964,179.9902458,180.7576038,17.212475,0.155360014,1620000000000 ,1620000000000 ,1620000000000 ,1616812573220 -1616812573245 ,112.5672953,26.86459231,64.753685,179.980465,180.7458817,17.21211,0.155359881,1620000000000 ,1620000000000 ,1620000000000 ,1616812573230 -1616812573257 ,112.5672952,26.86459076,64.75531769,179.9702197,180.7277559,17.211962,0.155361611,1620000000000 ,1620000000000 ,1620000000000 ,1616812573240 -1616812573269 ,112.5672952,26.8645892,64.75702667,179.9606847,180.7199307,17.21189,0.155360713,1620000000000 ,1620000000000 ,1620000000000 ,1616812573250 -1616812573275 ,112.5672952,26.86458765,64.75875092,179.9521607,180.7193139,17.211273,0.155359344,1620000000000 ,1620000000000 ,1620000000000 ,1616812573260 -1616812573286 ,112.5672952,26.8645861,64.76049805,179.9432541,180.7212772,17.209503,0.155347838,1620000000000 ,1620000000000 ,1620000000000 ,1616812573270 -1616812573296 ,112.5672952,26.86458454,64.76233673,179.9318067,180.7045445,17.20727,0.155328826,1620000000000 ,1620000000000 ,1620000000000 ,1616812573280 -1616812573308 ,112.5672952,26.86458299,64.76422119,179.9231187,180.6859917,17.207088,0.15532378,1620000000000 ,1620000000000 ,1620000000000 ,1616812573290 -1616812573316 ,112.5672951,26.86458144,64.76605225,179.9170535,180.6678213,17.207024,0.155312566,1620000000000 ,1620000000000 ,1620000000000 ,1616812573300 -1616812573326 ,112.5672951,26.86458144,64.76605225,179.9112342,-400,17.207664,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812573310 -1616812573336 ,112.5672951,26.86457833,64.76963043,179.903557,180.6633904,17.207602,0.310639712,1620000000000 ,1620000000000 ,1620000000000 ,1616812573320 -1616812573348 ,112.5672951,26.86457678,64.77162933,179.8944592,180.6349671,17.20935,0.155336176,1620000000000 ,1620000000000 ,1620000000000 ,1616812573330 -1616812573356 ,112.5672951,26.86457523,64.77381897,179.886946,180.6278782,17.208775,0.155341284,1620000000000 ,1620000000000 ,1620000000000 ,1616812573340 -1616812573366 ,112.567295,26.86457367,64.77616119,179.8799792,180.6323548,17.203997,0.155314723,1620000000000 ,1620000000000 ,1620000000000 ,1616812573350 -1616812573378 ,112.567295,26.86457212,64.77862549,179.873149,180.6193036,17.198673,0.155270942,1620000000000 ,1620000000000 ,1620000000000 ,1616812573360 -1616812573387 ,112.567295,26.86457057,64.78114319,179.8699525,180.6015697,17.197641,0.155253419,1620000000000 ,1620000000000 ,1620000000000 ,1616812573370 -1616812573397 ,112.567295,26.86456901,64.78358459,179.8707448,180.5918768,17.201914,0.15527654,1620000000000 ,1620000000000 ,1620000000000 ,1616812573380 -1616812573407 ,112.567295,26.86456746,64.78585052,179.8703077,180.5846882,17.206951,0.15531906,1620000000000 ,1620000000000 ,1620000000000 ,1616812573390 -1616812573417 ,112.567295,26.86456591,64.7879715,179.8680674,180.5735308,17.208017,0.155332907,1620000000000 ,1620000000000 ,1620000000000 ,1616812573400 -1616812573428 ,112.567295,26.86456436,64.79004669,179.8648709,180.5659971,17.206863,0.155326817,1620000000000 ,1620000000000 ,1620000000000 ,1616812573410 -1616812573437 ,112.5672949,26.8645628,64.79214478,179.8636961,180.5590762,17.205,0.155307898,1620000000000 ,1620000000000 ,1620000000000 ,1616812573420 -1616812573449 ,112.5672949,26.86456125,64.79428864,179.8631223,180.5594288,17.20472,0.155306651,1620000000000 ,1620000000000 ,1620000000000 ,1616812573430 -1616812573458 ,112.5672949,26.8645597,64.79652405,179.8620022,180.5552418,17.203045,0.155297564,1620000000000 ,1620000000000 ,1620000000000 ,1616812573440 -1616812573468 ,112.5672949,26.86455814,64.79847717,179.8606908,180.5538301,17.201916,0.155355416,1620000000000 ,1620000000000 ,1620000000000 ,1616812573450 -1616812573479 ,112.5672949,26.86455659,64.80015564,179.8600351,180.5519549,17.198828,0.155397993,1620000000000 ,1620000000000 ,1620000000000 ,1616812573460 -1616812573487 ,112.5672949,26.86455504,64.8019104,179.8603903,180.5536266,17.195473,0.155375006,1620000000000 ,1620000000000 ,1620000000000 ,1616812573470 -1616812573497 ,112.5672948,26.86455348,64.80370331,179.8609913,180.5662956,17.195278,0.155371623,1620000000000 ,1620000000000 ,1620000000000 ,1616812573480 -1616812573507 ,112.5672948,26.86455193,64.80551147,179.8612099,180.5677812,17.194897,0.155370792,1620000000000 ,1620000000000 ,1620000000000 ,1616812573490 -1616812573517 ,112.5672948,26.86455037,64.80735016,179.8635048,180.5681817,17.19455,0.155375769,1620000000000 ,1620000000000 ,1620000000000 ,1616812573500 -1616812573527 ,112.5672948,26.86454882,64.80918121,179.8685865,180.5581344,17.192566,0.155364259,1620000000000 ,1620000000000 ,1620000000000 ,1616812573510 -1616812573538 ,112.5672948,26.86454727,64.81095886,179.8739687,180.5525729,17.189737,0.15534152,1620000000000 ,1620000000000 ,1620000000000 ,1616812573520 -1616812573547 ,112.5672948,26.86454571,64.8126297,179.8790503,180.554935,17.187016,0.155316362,1620000000000 ,1620000000000 ,1620000000000 ,1616812573530 -1616812573558 ,112.5672948,26.86454416,64.81417084,179.8838861,180.5628223,17.185131,0.155294868,1620000000000 ,1620000000000 ,1620000000000 ,1616812573540 -1616812573571 ,112.5672947,26.86454261,64.81552887,179.8886672,180.5687538,17.187183,0.155298943,1620000000000 ,1620000000000 ,1620000000000 ,1616812573550 -1616812573581 ,112.5672947,26.86454106,64.81667328,179.8943773,180.5776278,17.188395,0.155308695,1620000000000 ,1620000000000 ,1620000000000 ,1616812573560 -1616812573590 ,112.5672947,26.8645395,64.81759644,179.9005791,180.5710707,17.187191,0.155291842,1620000000000 ,1620000000000 ,1620000000000 ,1616812573570 -1616812573601 ,112.5672947,26.86453795,64.81830597,179.9062618,180.5680265,17.18763,0.155298537,1620000000000 ,1620000000000 ,1620000000000 ,1616812573580 -1616812573610 ,112.5672947,26.8645364,64.81877899,179.9125183,180.5698113,17.186531,0.155264535,1620000000000 ,1620000000000 ,1620000000000 ,1616812573590 -1616812573621 ,112.5672947,26.86453484,64.81903839,179.9212882,180.5855292,17.18695,0.155260905,1620000000000 ,1620000000000 ,1620000000000 ,1616812573600 -1616812573631 ,112.5672946,26.86453329,64.81912994,179.9298396,180.5963819,17.187498,0.15525919,1620000000000 ,1620000000000 ,1620000000000 ,1616812573610 -1616812573640 ,112.5672946,26.86453174,64.81913757,179.9359868,180.6022779,17.18733,0.155255677,1620000000000 ,1620000000000 ,1620000000000 ,1616812573620 -1616812573650 ,112.5672946,26.86453019,64.81916809,179.9429536,180.6046592,17.183199,0.155224513,1620000000000 ,1620000000000 ,1620000000000 ,1616812573630 -1616812573659 ,112.5672946,26.86452864,64.81923676,179.9510678,180.6135237,17.179146,0.155182245,1620000000000 ,1620000000000 ,1620000000000 ,1616812573640 -1616812573670 ,112.5672946,26.86452708,64.81929016,179.9587177,180.6340492,17.180485,0.155176818,1620000000000 ,1620000000000 ,1620000000000 ,1616812573650 -1616812573685 ,112.5672946,26.86452553,64.81926727,179.9662035,180.6605352,17.181847,0.155186744,1620000000000 ,1620000000000 ,1620000000000 ,1616812573660 -1616812573689 ,112.5672945,26.86452398,64.81923676,179.9721595,180.6832351,17.181293,0.155186394,1620000000000 ,1620000000000 ,1620000000000 ,1616812573670 -1616812573702 ,112.5672945,26.86452243,64.81933594,179.975356,180.6886822,17.178782,0.155168279,1620000000000 ,1620000000000 ,1620000000000 ,1616812573680 -1616812573713 ,112.5672945,26.86452088,64.81960297,179.9780061,180.6992386,17.174164,0.155134383,1620000000000 ,1620000000000 ,1620000000000 ,1616812573690 -1616812573719 ,112.5672945,26.86451933,64.82000732,179.9807382,180.7164699,17.16899,0.155091264,1620000000000 ,1620000000000 ,1620000000000 ,1616812573700 -1616812573730 ,112.5672945,26.86451778,64.82054901,179.9850002,180.7365878,17.164629,0.155050574,1620000000000 ,1620000000000 ,1620000000000 ,1616812573710 -1616812573739 ,112.5672944,26.86451623,64.82125092,179.9872678,180.7484056,17.164986,0.155042806,1620000000000 ,1620000000000 ,1620000000000 ,1616812573720 -1616812573749 ,112.5672944,26.86451468,64.82210541,179.9895355,180.746178,17.164207,0.155045014,1620000000000 ,1620000000000 ,1620000000000 ,1616812573730 -1616812573760 ,112.5672944,26.86451313,64.82309723,179.9907649,180.7651694,17.163027,0.15504029,1620000000000 ,1620000000000 ,1620000000000 ,1616812573740 -1616812573770 ,112.5672944,26.86451158,64.82426453,179.9891803,180.7849978,17.15773,0.155009598,1620000000000 ,1620000000000 ,1620000000000 ,1616812573750 -1616812573780 ,112.5672944,26.86451003,64.82563782,179.9872952,180.7879955,17.150528,0.154953548,1620000000000 ,1620000000000 ,1620000000000 ,1616812573760 -1616812573792 ,112.5672943,26.86450848,64.82720947,179.9849729,180.7935792,17.145275,0.154907047,1620000000000 ,1620000000000 ,1620000000000 ,1616812573770 -1616812573800 ,112.5672943,26.86450693,64.82889557,179.9834156,180.8016479,17.143312,0.154889535,1620000000000 ,1620000000000 ,1620000000000 ,1616812573780 -1616812573810 ,112.5672943,26.86450538,64.83066559,179.9804103,180.8096447,17.141539,0.15488121,1620000000000 ,1620000000000 ,1620000000000 ,1616812573790 -1616812573820 ,112.5672943,26.86450383,64.83256531,179.9748369,180.8043811,17.138565,0.154860504,1620000000000 ,1620000000000 ,1620000000000 ,1616812573800 -1616812573830 ,112.5672943,26.86450228,64.83455658,179.9700831,180.8020162,17.136738,0.154842779,1620000000000 ,1620000000000 ,1620000000000 ,1616812573810 -1616812573840 ,112.5672942,26.86450074,64.83654022,179.9671598,180.7998393,17.13594,0.154836733,1620000000000 ,1620000000000 ,1620000000000 ,1616812573820 -1616812573851 ,112.5672942,26.86449919,64.83842468,179.963007,180.7972998,17.13557,0.15483037,1620000000000 ,1620000000000 ,1620000000000 ,1616812573830 -1616812573861 ,112.5672942,26.86449764,64.84022522,179.9614497,180.7863125,17.133814,0.154817556,1620000000000 ,1620000000000 ,1620000000000 ,1616812573840 -1616812573870 ,112.5672942,26.86449609,64.84201813,179.9578434,180.7701625,17.1321,0.154800952,1620000000000 ,1620000000000 ,1620000000000 ,1616812573850 -1616812573881 ,112.5672941,26.86449454,64.84381866,179.9551386,180.7622589,17.127874,0.154771055,1620000000000 ,1620000000000 ,1620000000000 ,1616812573860 -1616812573892 ,112.5672941,26.864493,64.84557343,179.9533081,180.762529,17.12528,0.154735775,1620000000000 ,1620000000000 ,1620000000000 ,1616812573870 -1616812573908 ,112.5672941,26.86449145,64.84713745,179.9546469,180.7619086,17.124512,0.154732876,1620000000000 ,1620000000000 ,1620000000000 ,1616812573880 -1616812573911 ,112.5672941,26.8644899,64.84846497,179.9518875,180.7514322,17.126537,0.15472121,1620000000000 ,1620000000000 ,1620000000000 ,1616812573890 -1616812573920 ,112.5672941,26.86448835,64.84967804,179.9456857,180.7548791,17.125277,0.154717289,1620000000000 ,1620000000000 ,1620000000000 ,1616812573900 -1616812573931 ,112.567294,26.86448681,64.85089874,179.9426804,180.7456679,17.125025,0.154712433,1620000000000 ,1620000000000 ,1620000000000 ,1616812573910 -1616812573942 ,112.567294,26.86448526,64.85211182,179.9415329,180.7397299,17.1227,0.154700886,1620000000000 ,1620000000000 ,1620000000000 ,1616812573920 -1616812573953 ,112.567294,26.86448371,64.85340118,179.939074,180.7393749,17.116283,0.154647637,1620000000000 ,1620000000000 ,1620000000000 ,1616812573930 -1616812573962 ,112.567294,26.86448217,64.85485077,179.9389647,180.7335118,17.111053,0.154596677,1620000000000 ,1620000000000 ,1620000000000 ,1616812573940 -1616812573971 ,112.567294,26.86448062,64.85638428,179.9378173,180.727661,17.1115,0.154590197,1620000000000 ,1620000000000 ,1620000000000 ,1616812573950 -1616812573981 ,112.5672939,26.86447908,64.85788727,179.9379539,180.7244014,17.114153,0.154609326,1620000000000 ,1620000000000 ,1620000000000 ,1616812573960 -1616812573997 ,112.5672939,26.86447753,64.85932922,179.9375714,180.7384288,17.11378,0.154613747,1620000000000 ,1620000000000 ,1620000000000 ,1616812573970 -1616812574001 ,112.5672939,26.86447599,64.86087036,179.9351125,180.7399019,17.108885,0.154579183,1620000000000 ,1620000000000 ,1620000000000 ,1616812573980 -1616812574012 ,112.5672939,26.86447444,64.86255646,179.9340743,180.7244658,17.105581,0.154548946,1620000000000 ,1620000000000 ,1620000000000 ,1616812573990 -1616812574023 ,112.5672939,26.86447289,64.86428833,179.9344841,180.7187301,17.10557,0.154541498,1620000000000 ,1620000000000 ,1620000000000 ,1616812574000 -1616812574033 ,112.5672938,26.86447135,64.86595154,179.931998,180.7315058,17.106934,0.154548873,1620000000000 ,1620000000000 ,1620000000000 ,1616812574010 -1616812574046 ,112.5672938,26.8644698,64.86750793,179.928173,180.7414783,17.106604,0.154549054,1620000000000 ,1620000000000 ,1620000000000 ,1616812574030 -1616812574053 ,112.5672938,26.86446826,64.86904144,179.9222991,180.738244,17.103817,0.154531018,1620000000000 ,1620000000000 ,1620000000000 ,1616812574040 -1616812574063 ,112.5672938,26.86446671,64.87060547,179.9192665,180.7328175,17.09986,0.154496698,1620000000000 ,1620000000000 ,1620000000000 ,1616812574050 -1616812574073 ,112.5672938,26.86446517,64.87224579,179.9149771,180.7283266,17.097328,0.154473961,1620000000000 ,1620000000000 ,1620000000000 ,1616812574060 -1616812574082 ,112.5672937,26.86446362,64.87397003,179.9094583,180.7339784,17.095575,0.154460688,1620000000000 ,1620000000000 ,1620000000000 ,1616812574070 -1616812574093 ,112.5672937,26.86446054,64.87762451,179.9004152,180.7402094,17.091883,0.308896086,1620000000000 ,1620000000000 ,1620000000000 ,1616812574080 -1616812574103 ,112.5672937,26.86446054,64.87762451,179.9004152,-400,17.091883,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812574080 -1616812574117 ,112.5672937,26.86445745,64.88155365,179.8901152,180.7384688,17.08367,0.308789551,1620000000000 ,1620000000000 ,1620000000000 ,1616812574100 -1616812574124 ,112.5672936,26.86445591,64.88363647,179.8854434,180.7403591,17.081013,0.154360127,1620000000000 ,1620000000000 ,1620000000000 ,1616812574110 -1616812574135 ,112.5672936,26.86445436,64.88570404,179.8826567,180.739699,17.079334,0.154344524,1620000000000 ,1620000000000 ,1620000000000 ,1616812574120 -1616812574144 ,112.5672936,26.86445282,64.88771057,179.8787225,180.7394409,17.078218,0.154334095,1620000000000 ,1620000000000 ,1620000000000 ,1616812574130 -1616812574154 ,112.5672936,26.86445128,64.88961792,179.8738321,180.7286561,17.076572,0.154321424,1620000000000 ,1620000000000 ,1620000000000 ,1616812574140 -1616812574164 ,112.5672936,26.86444973,64.89139557,179.8697886,180.7163416,17.074747,0.154303479,1620000000000 ,1620000000000 ,1620000000000 ,1616812574150 -1616812574176 ,112.5672936,26.86444819,64.89297485,179.8636687,180.7117747,17.074059,0.154289876,1620000000000 ,1620000000000 ,1620000000000 ,1616812574160 -1616812574186 ,112.5672935,26.86444665,64.89429474,179.8613192,180.7075014,17.074022,0.154278249,1620000000000 ,1620000000000 ,1620000000000 ,1616812574170 -1616812574196 ,112.5672935,26.8644451,64.89537048,179.8583958,180.7023549,17.072813,0.154263969,1620000000000 ,1620000000000 ,1620000000000 ,1616812574180 -1616812574205 ,112.5672935,26.8644451,64.89537048,179.8583958,-400,17.072813,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812574180 -1616812574215 ,112.5672935,26.86444202,64.89672852,179.8513744,180.6135517,17.045824,0.308020362,1620000000000 ,1620000000000 ,1620000000000 ,1616812574200 -1616812574223 ,112.5672935,26.86444049,64.89654541,179.8472763,180.3373753,17.047174,0.15306941,1620000000000 ,1620000000000 ,1620000000000 ,1616812574210 -1616812574234 ,112.5672935,26.86443896,64.89619446,179.8457463,180.3407274,17.049742,0.153083814,1620000000000 ,1620000000000 ,1620000000000 ,1616812574220 -1616812574244 ,112.5672935,26.86443743,64.89572144,179.8424678,180.3438699,17.050922,0.15309467,1620000000000 ,1620000000000 ,1620000000000 ,1616812574230 -1616812574254 ,112.5672934,26.8644359,64.89519501,179.8382604,180.3297077,17.05065,0.153091726,1620000000000 ,1620000000000 ,1620000000000 ,1616812574240 -1616812574268 ,112.5672934,26.86443437,64.89472198,179.837113,180.3057386,17.047522,0.153071897,1620000000000 ,1620000000000 ,1620000000000 ,1616812574250 -1616812574278 ,112.5672934,26.86443284,64.89429474,179.8345448,180.2955288,17.042189,0.153029461,1620000000000 ,1620000000000 ,1620000000000 ,1616812574260 -1616812574289 ,112.5672934,26.86443131,64.89385986,179.8344902,180.2992524,17.03916,0.152992384,1620000000000 ,1620000000000 ,1620000000000 ,1616812574270 -1616812574297 ,112.5672934,26.86442978,64.89341736,179.8335339,180.3034786,17.036676,0.152963144,1620000000000 ,1620000000000 ,1620000000000 ,1616812574280 -1616812574306 ,112.5672934,26.86442825,64.89302063,179.8317581,180.2936732,17.035822,0.152951419,1620000000000 ,1620000000000 ,1620000000000 ,1616812574290 -1616812574315 ,112.5672934,26.86442672,64.89268494,179.832605,180.2796324,17.037012,0.152963132,1620000000000 ,1620000000000 ,1620000000000 ,1616812574300 -1616812574324 ,112.5672934,26.86442519,64.8923645,179.8337525,180.281568,17.036345,0.152959277,1620000000000 ,1620000000000 ,1620000000000 ,1616812574310 -1616812574335 ,112.5672934,26.86442366,64.89206696,179.8325231,180.286133,17.035484,0.152948583,1620000000000 ,1620000000000 ,1620000000000 ,1616812574320 -1616812574344 ,112.5672934,26.86442213,64.89185333,179.8329329,180.2902121,17.032904,0.15293163,1620000000000 ,1620000000000 ,1620000000000 ,1616812574330 -1616812574354 ,112.5672934,26.8644206,64.89179993,179.8338072,180.2909122,17.027855,0.15289613,1620000000000 ,1620000000000 ,1620000000000 ,1616812574340 -1616812574365 ,112.5672934,26.86441908,64.89190674,179.8355557,180.2870205,17.024338,0.152861177,1620000000000 ,1620000000000 ,1620000000000 ,1616812574350 -1616812574376 ,112.5672934,26.86441755,64.8921051,179.8352552,180.2843666,17.021078,0.152835802,1620000000000 ,1620000000000 ,1620000000000 ,1616812574360 -1616812574385 ,112.5672933,26.86441602,64.89234924,179.8371949,180.2921992,17.021196,0.152826547,1620000000000 ,1620000000000 ,1620000000000 ,1616812574370 -1616812574401 ,112.5672933,26.86441449,64.89256287,179.8427137,180.2917065,17.023685,0.152839593,1620000000000 ,1620000000000 ,1620000000000 ,1616812574380 -1616812574406 ,112.5672933,26.86441296,64.89269257,179.8478227,180.2902992,17.029106,0.152879616,1620000000000 ,1620000000000 ,1620000000000 ,1616812574390 -1616812574415 ,112.5672933,26.86441143,64.89274597,179.8513198,180.2875481,17.033882,0.152917941,1620000000000 ,1620000000000 ,1620000000000 ,1616812574400 -1616812574426 ,112.5672933,26.8644099,64.89279175,179.8519755,180.291691,17.033535,0.15292587,1620000000000 ,1620000000000 ,1620000000000 ,1616812574410 -1616812574437 ,112.5672933,26.86440837,64.89297485,179.8506367,180.3068734,17.030493,0.152907854,1620000000000 ,1620000000000 ,1620000000000 ,1616812574420 -1616812574445 ,112.5672933,26.86440685,64.89334869,179.8526585,180.3169469,17.026564,0.15287642,1620000000000 ,1620000000000 ,1620000000000 ,1616812574430 -1616812574456 ,112.5672933,26.86440532,64.89389038,179.8552266,180.3291841,17.023596,0.152848982,1620000000000 ,1620000000000 ,1620000000000 ,1616812574440 -1616812574468 ,112.5672933,26.86440378,64.89479065,179.8567293,180.4652874,17.026123,0.153313177,1620000000000 ,1620000000000 ,1620000000000 ,1616812574450 -1616812574478 ,112.5672933,26.86440225,64.89593506,179.8585324,180.6011634,17.025024,0.153788264,1620000000000 ,1620000000000 ,1620000000000 ,1616812574460 -1616812574486 ,112.5672932,26.86440071,64.89704132,179.8590789,180.6178792,17.031189,0.153820746,1620000000000 ,1620000000000 ,1620000000000 ,1616812574470 -1616812574501 ,112.5672932,26.86439917,64.89827728,179.8582592,180.6257967,17.034367,0.153854881,1620000000000 ,1620000000000 ,1620000000000 ,1616812574480 -1616812574509 ,112.5672932,26.86439763,64.89967346,179.8584778,180.6316639,17.032782,0.153853981,1620000000000 ,1620000000000 ,1620000000000 ,1616812574490 -1616812574519 ,112.5672932,26.86439609,64.90125275,179.860199,180.647607,17.027193,0.153822168,1620000000000 ,1620000000000 ,1620000000000 ,1616812574500 -1616812574526 ,112.5672932,26.86439456,64.90300751,179.8635321,180.6482639,17.02172,0.153781746,1620000000000 ,1620000000000 ,1620000000000 ,1616812574510 -1616812574539 ,112.5672932,26.86439302,64.9048996,179.8668106,180.6526688,17.02293,0.153775124,1620000000000 ,1620000000000 ,1620000000000 ,1616812574520 -1616812574548 ,112.5672931,26.86439148,64.90687561,179.8670838,180.6547332,17.026205,0.153801431,1620000000000 ,1620000000000 ,1620000000000 ,1616812574530 -1616812574556 ,112.5672931,26.86438994,64.90888214,179.8669746,180.6717816,17.026384,0.15381352,1620000000000 ,1620000000000 ,1620000000000 ,1616812574540 -1616812574569 ,112.5672931,26.8643884,64.91098022,179.8657998,180.6927215,17.024853,0.153812868,1620000000000 ,1620000000000 ,1620000000000 ,1616812574550 -1616812574578 ,112.5672931,26.86438687,64.91316986,179.8669746,180.697127,17.025995,0.153823999,1620000000000 ,1620000000000 ,1620000000000 ,1616812574560 -1616812574589 ,112.5672931,26.86438533,64.91542816,179.8662642,180.7001249,17.026878,0.153834086,1620000000000 ,1620000000000 ,1620000000000 ,1616812574570 -1616812574598 ,112.567293,26.86438379,64.91770172,179.8666467,180.708616,17.027973,0.153845534,1620000000000 ,1620000000000 ,1620000000000 ,1616812574580 -1616812574607 ,112.567293,26.86438225,64.91994476,179.8664281,180.7127852,17.027538,0.153849651,1620000000000 ,1620000000000 ,1620000000000 ,1616812574590 -1616812574617 ,112.567293,26.86438071,64.9221344,179.8661823,180.7155898,17.0261,0.15383772,1620000000000 ,1620000000000 ,1620000000000 ,1616812574600 -1616812574628 ,112.567293,26.86437917,64.92430115,179.865909,180.7157944,17.025387,0.153835837,1620000000000 ,1620000000000 ,1620000000000 ,1616812574610 -1616812574637 ,112.567293,26.86437764,64.92644501,179.8668106,180.7149588,17.02584,0.153836006,1620000000000 ,1620000000000 ,1620000000000 ,1616812574620 -1616812574664 ,112.5672929,26.8643761,64.92852783,179.8697886,180.7125897,17.02772,0.15385495,1620000000000 ,1620000000000 ,1620000000000 ,1616812574630 -1616812574667 ,112.5672929,26.86437456,64.93048096,179.8760997,180.7102025,17.030022,0.15387393,1620000000000 ,1620000000000 ,1620000000000 ,1616812574640 -1616812574672 ,112.5672929,26.86437302,64.93227386,179.879788,180.7088389,17.030798,0.15388344,1620000000000 ,1620000000000 ,1620000000000 ,1616812574650 -1616812574680 ,112.5672929,26.86437148,64.93392944,179.8833943,180.6958173,17.031183,0.153882069,1620000000000 ,1620000000000 ,1620000000000 ,1616812574660 -1616812574688 ,112.5672929,26.86436994,64.93544769,179.8868641,180.6947804,17.032959,0.153894889,1620000000000 ,1620000000000 ,1620000000000 ,1616812574670 -1616812574698 ,112.5672929,26.8643684,64.93682861,179.8927107,180.7031261,17.036112,0.153918635,1620000000000 ,1620000000000 ,1620000000000 ,1616812574680 -1616812574711 ,112.5672928,26.86436686,64.93810272,179.8972186,180.7141571,17.036562,0.153928655,1620000000000 ,1620000000000 ,1620000000000 ,1616812574690 -1616812574718 ,112.5672928,26.86436533,64.93930817,179.9011528,180.7088075,17.036175,0.153926554,1620000000000 ,1620000000000 ,1620000000000 ,1616812574700 -1616812574729 ,112.5672928,26.86436379,64.9404068,179.9057427,180.6982783,17.036472,0.153920792,1620000000000 ,1620000000000 ,1620000000000 ,1616812574710 -1616812574739 ,112.5672928,26.86436225,64.94129944,179.912245,180.691896,17.0385,0.153931999,1620000000000 ,1620000000000 ,1620000000000 ,1616812574720 -1616812574749 ,112.5672928,26.86436071,64.94193268,179.9191845,180.6976526,17.041775,0.153948186,1620000000000 ,1620000000000 ,1620000000000 ,1616812574730 -1616812574762 ,112.5672927,26.86435917,64.94241333,179.925359,180.7052991,17.044106,0.153965682,1620000000000 ,1620000000000 ,1620000000000 ,1616812574740 -1616812574769 ,112.5672927,26.86435763,64.94285583,179.9302221,180.7025999,17.045168,0.153978861,1620000000000 ,1620000000000 ,1620000000000 ,1616812574750 -1616812574781 ,112.5672927,26.86435609,64.94329071,179.9378719,180.6931901,17.04653,0.153989636,1620000000000 ,1620000000000 ,1620000000000 ,1616812574760 -1616812574791 ,112.5672927,26.86435455,64.94367218,179.9436366,180.6964214,17.046581,0.153984408,1620000000000 ,1620000000000 ,1620000000000 ,1616812574770 -1616812574802 ,112.5672927,26.86435301,64.94396973,179.9519694,180.6954697,17.04755,0.153991636,1620000000000 ,1620000000000 ,1620000000000 ,1616812574780 -1616812574812 ,112.5672926,26.86435147,64.94416809,179.9597558,180.6966169,17.049686,0.154002907,1620000000000 ,1620000000000 ,1620000000000 ,1616812574790 -1616812574820 ,112.5672926,26.86434993,64.94429779,179.9675423,180.713026,17.052153,0.154020731,1620000000000 ,1620000000000 ,1620000000000 ,1616812574800 -1616812574831 ,112.5672926,26.86434839,64.94436646,179.9759844,180.7211579,17.051058,0.154016283,1620000000000 ,1620000000000 ,1620000000000 ,1616812574810 -1616812574841 ,112.5672926,26.86434685,64.94445038,179.9840986,180.7262138,17.050608,0.154010914,1620000000000 ,1620000000000 ,1620000000000 ,1616812574820 -1616812574851 ,112.5672926,26.86434531,64.94454193,179.9921036,180.7326859,17.04951,0.154000799,1620000000000 ,1620000000000 ,1620000000000 ,1616812574830 -1616812574860 ,112.5672925,26.86434377,64.9446106,180.0002725,180.7420264,17.05257,0.154010783,1620000000000 ,1620000000000 ,1620000000000 ,1616812574840 -1616812574870 ,112.5672925,26.86434223,64.94459534,180.0078131,180.7574708,17.05727,0.154045216,1620000000000 ,1620000000000 ,1620000000000 ,1616812574850 -1616812574880 ,112.5672925,26.86434069,64.94451141,180.013086,180.766515,17.060286,0.154073938,1620000000000 ,1620000000000 ,1620000000000 ,1616812574860 -1616812574890 ,112.5672925,26.86433915,64.94442749,180.0178671,180.7654156,17.061207,0.154082788,1620000000000 ,1620000000000 ,1620000000000 ,1616812574870 -1616812574901 ,112.5672925,26.86433761,64.94441986,180.0209817,180.7640236,17.061192,0.154087908,1620000000000 ,1620000000000 ,1620000000000 ,1616812574880 -1616812574913 ,112.5672924,26.86433607,64.94449615,180.0260087,180.7659859,17.06037,0.154077673,1620000000000 ,1620000000000 ,1620000000000 ,1616812574890 -1616812574920 ,112.5672924,26.86433453,64.94467163,180.0317734,180.7726633,17.059626,0.154071806,1620000000000 ,1620000000000 ,1620000000000 ,1616812574900 -1616812574933 ,112.5672924,26.86433299,64.94493866,180.0387675,180.7754466,17.059204,0.154070001,1620000000000 ,1620000000000 ,1620000000000 ,1616812574910 -1616812574942 ,112.5672924,26.86433144,64.9453125,180.0451878,180.7834165,17.059706,0.154069517,1620000000000 ,1620000000000 ,1620000000000 ,1616812574920 -1616812574951 ,112.5672924,26.8643299,64.94579315,180.0521546,180.7838395,17.061602,0.15409037,1620000000000 ,1620000000000 ,1620000000000 ,1616812574930 -1616812574961 ,112.5672923,26.86432836,64.94638062,180.0613617,180.792748,17.064554,0.154108177,1620000000000 ,1620000000000 ,1620000000000 ,1616812574940 -1616812574970 ,112.5672923,26.86432682,64.94709778,180.0664434,180.8130731,17.065495,0.15412794,1620000000000 ,1620000000000 ,1620000000000 ,1616812574950 -1616812574981 ,112.5672923,26.86432528,64.94799805,180.0704595,180.8378365,17.064112,0.154128432,1620000000000 ,1620000000000 ,1620000000000 ,1616812574960 -1616812574992 ,112.5672923,26.86432374,64.94909668,180.0743937,180.8579638,17.06298,0.154125511,1620000000000 ,1620000000000 ,1620000000000 ,1616812574970 -1616812575004 ,112.5672923,26.8643222,64.95036316,180.0767433,180.8662338,17.058313,0.154089907,1620000000000 ,1620000000000 ,1620000000000 ,1616812574980 -1616812575012 ,112.5672922,26.86432066,64.95184326,180.0810873,180.8630743,17.05356,0.154051192,1620000000000 ,1620000000000 ,1620000000000 ,1616812574990 -1616812575021 ,112.5672922,26.86431912,64.95347595,180.0851308,180.8527783,17.054323,0.154056143,1620000000000 ,1620000000000 ,1620000000000 ,1616812575000 -1616812575033 ,112.5672922,26.86431758,64.95517731,180.0922888,180.8634499,17.058777,0.154085084,1620000000000 ,1620000000000 ,1620000000000 ,1616812575020 -1616812575042 ,112.5672922,26.86431604,64.95684814,180.098518,180.8696669,17.063452,0.15413107,1620000000000 ,1620000000000 ,1620000000000 ,1616812575030 -1616812575052 ,112.5672921,26.8643145,64.95851135,180.1053482,180.8777866,17.06343,0.1541492,1620000000000 ,1620000000000 ,1620000000000 ,1616812575040 -1616812575062 ,112.5672921,26.86431295,64.96031952,180.1097195,180.8853981,17.060522,0.154131863,1620000000000 ,1620000000000 ,1620000000000 ,1616812575050 -1616812575072 ,112.5672921,26.86431141,64.96227264,180.1144733,180.8883614,17.058887,0.154119505,1620000000000 ,1620000000000 ,1620000000000 ,1616812575060 -1616812575084 ,112.5672921,26.86430987,64.96430206,180.1179703,180.9022993,17.057024,0.15410452,1620000000000 ,1620000000000 ,1620000000000 ,1616812575070 -1616812575093 ,112.567292,26.86430679,64.96842194,180.1266583,180.9236125,17.055687,0.308198439,1620000000000 ,1620000000000 ,1620000000000 ,1616812575080 -1616812575105 ,112.567292,26.86430679,64.96842194,180.1266583,-400,17.055687,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812575080 -1616812575113 ,112.567292,26.86430371,64.972435,180.135319,180.9365783,17.061728,0.308262831,1620000000000 ,1620000000000 ,1620000000000 ,1616812575100 -1616812575124 ,112.5672919,26.86430217,64.97428894,180.1399089,180.9547738,17.068348,0.154209565,1620000000000 ,1620000000000 ,1620000000000 ,1616812575110 -1616812575133 ,112.5672919,26.86430062,64.9760437,180.144772,180.9698737,17.067099,0.154210362,1620000000000 ,1620000000000 ,1620000000000 ,1616812575120 -1616812575143 ,112.5672919,26.86429908,64.9777298,180.1490067,180.9731112,17.06572,0.154202342,1620000000000 ,1620000000000 ,1620000000000 ,1616812575130 -1616812575154 ,112.5672919,26.86429754,64.9793396,180.15346,180.9751301,17.063429,0.154181309,1620000000000 ,1620000000000 ,1620000000000 ,1616812575140 -1616812575164 ,112.5672918,26.864296,64.98078918,180.1574215,180.9772565,17.065578,0.15418564,1620000000000 ,1620000000000 ,1620000000000 ,1616812575150 -1616812575174 ,112.5672918,26.86429446,64.98204041,180.1613011,180.9909307,17.068342,0.154205818,1620000000000 ,1620000000000 ,1620000000000 ,1616812575160 -1616812575185 ,112.5672918,26.86429292,64.98310852,180.1624212,181.0047765,17.07102,0.154222296,1620000000000 ,1620000000000 ,1620000000000 ,1616812575170 -1616812575195 ,112.5672918,26.86429137,64.98409271,180.1622573,181.0115275,17.07291,0.154243941,1620000000000 ,1620000000000 ,1620000000000 ,1616812575180 -1616812575203 ,112.5672917,26.86428983,64.98506165,180.1634321,181.0120964,17.074774,0.154266426,1620000000000 ,1620000000000 ,1620000000000 ,1616812575190 -1616812575216 ,112.5672917,26.86428829,64.98614502,180.1728304,180.7919785,17.063545,0.154095668,1620000000000 ,1620000000000 ,1620000000000 ,1616812575200 -1616812575224 ,112.5672917,26.86428675,64.98734283,180.1747156,180.4355772,17.063265,0.153808497,1620000000000 ,1620000000000 ,1620000000000 ,1616812575210 -1616812575234 ,112.5672917,26.86428521,64.98851776,180.1753713,180.4434942,17.062849,0.153809082,1620000000000 ,1620000000000 ,1620000000000 ,1616812575220 -1616812575244 ,112.5672917,26.86428368,64.98969269,180.1749068,180.4477135,17.06121,0.153794845,1620000000000 ,1620000000000 ,1620000000000 ,1616812575230 -1616812575254 ,112.5672917,26.86428214,64.9908905,180.1762455,180.451583,17.059196,0.153781027,1620000000000 ,1620000000000 ,1620000000000 ,1616812575240 -1616812575264 ,112.5672916,26.8642806,64.99208832,180.1748795,180.4455579,17.05289,0.153741418,1620000000000 ,1620000000000 ,1620000000000 ,1616812575250 -1616812575275 ,112.5672916,26.86427906,64.99311066,180.1758084,180.4405419,17.062407,0.153770037,1620000000000 ,1620000000000 ,1620000000000 ,1616812575260 -1616812575285 ,112.5672916,26.86427753,64.99383545,180.178158,180.459942,17.059061,0.153748801,1620000000000 ,1620000000000 ,1620000000000 ,1616812575270 -1616812575295 ,112.5672916,26.86427599,64.9942627,180.1775569,180.4677425,17.068035,0.153825182,1620000000000 ,1620000000000 ,1620000000000 ,1616812575280 -1616812575305 ,112.5672916,26.86427445,64.9945755,180.17365,180.4624517,17.070505,0.153843184,1620000000000 ,1620000000000 ,1620000000000 ,1616812575290 -1616812575316 ,112.5672916,26.86427291,64.99488068,180.1681859,180.4563979,17.073881,0.153863171,1620000000000 ,1620000000000 ,1620000000000 ,1616812575300 -1616812575326 ,112.5672916,26.86427137,64.99520874,180.1625305,180.4692355,17.066141,0.153821466,1620000000000 ,1620000000000 ,1620000000000 ,1616812575310 -1616812575342 ,112.5672916,26.86426984,64.99562836,180.1597984,180.4701262,17.0616,0.153770431,1620000000000 ,1620000000000 ,1620000000000 ,1616812575320 -1616812575347 ,112.5672915,26.8642683,64.99604797,180.1573122,180.4603868,17.065971,0.153786507,1620000000000 ,1620000000000 ,1620000000000 ,1616812575330 -1616812575360 ,112.5672915,26.86426676,64.996315,180.1556183,180.4502875,17.073977,0.15384663,1620000000000 ,1620000000000 ,1620000000000 ,1616812575340 -1616812575367 ,112.5672915,26.86426522,64.99635315,180.1523399,180.4538477,17.07876,0.153888109,1620000000000 ,1620000000000 ,1620000000000 ,1616812575350 -1616812575376 ,112.5672915,26.86426368,64.99630737,180.1469577,180.4650978,17.077394,0.153886183,1620000000000 ,1620000000000 ,1620000000000 ,1616812575360 -1616812575390 ,112.5672915,26.86426214,64.99639893,180.1413569,180.4582171,17.074509,0.153865383,1620000000000 ,1620000000000 ,1620000000000 ,1616812575370 -1616812575398 ,112.5672915,26.8642606,64.99665833,180.1361113,180.4491736,17.073162,0.153847287,1620000000000 ,1620000000000 ,1620000000000 ,1616812575380 -1616812575406 ,112.5672915,26.86425907,64.99700165,180.1320679,180.4501835,17.072454,0.153840363,1620000000000 ,1620000000000 ,1620000000000 ,1616812575390 -1616812575416 ,112.5672915,26.86425753,64.99742126,180.1267403,180.4530006,17.07296,0.153841906,1620000000000 ,1620000000000 ,1620000000000 ,1616812575400 -1616812575426 ,112.5672914,26.86425599,64.99791718,180.121604,180.4440012,17.073898,0.153850928,1620000000000 ,1620000000000 ,1620000000000 ,1616812575410 -1616812575436 ,112.5672914,26.86425445,64.99853516,180.1130253,180.4358337,17.075802,0.153863332,1620000000000 ,1620000000000 ,1620000000000 ,1616812575420 -1616812575450 ,112.5672914,26.86425291,64.99929047,180.1063044,180.4355111,17.076412,0.153879732,1620000000000 ,1620000000000 ,1620000000000 ,1616812575430 -1616812575457 ,112.5672914,26.86425137,65.00021362,180.1007856,180.4353998,17.07435,0.153873244,1620000000000 ,1620000000000 ,1620000000000 ,1616812575440 -1616812575467 ,112.5672914,26.86424983,65.00122833,180.0951575,180.6518422,17.0712,0.154022459,1620000000000 ,1620000000000 ,1620000000000 ,1616812575450 -1616812575476 ,112.5672914,26.86424829,65.00231934,180.0907315,180.8669525,17.067421,0.154167874,1620000000000 ,1620000000000 ,1620000000000 ,1616812575460 -1616812575486 ,112.5672913,26.86424675,65.00352478,180.0851854,180.8499394,17.066269,0.154160461,1620000000000 ,1620000000000 ,1620000000000 ,1616812575470 -1616812575498 ,112.5672913,26.86424521,65.00478363,180.0815518,180.8322262,17.070858,0.154182243,1620000000000 ,1620000000000 ,1620000000000 ,1616812575480 -1616812575507 ,112.5672913,26.86424367,65.00608063,180.0773171,180.8387016,17.074707,0.154215378,1620000000000 ,1620000000000 ,1620000000000 ,1616812575490 -1616812575516 ,112.5672913,26.86424212,65.00746155,180.0720442,180.8380895,17.075336,0.154236673,1620000000000 ,1620000000000 ,1620000000000 ,1616812575500 -1616812575527 ,112.5672913,26.86424058,65.00902557,180.0657877,180.831687,17.073689,0.154237537,1620000000000 ,1620000000000 ,1620000000000 ,1616812575510 -1616812575537 ,112.5672912,26.86423904,65.01074982,180.0590668,180.8152817,17.071896,0.154219384,1620000000000 ,1620000000000 ,1620000000000 ,1616812575520 -1616812575550 ,112.5672912,26.8642375,65.01258087,180.0531655,180.8033704,17.070293,0.154206274,1620000000000 ,1620000000000 ,1620000000000 ,1616812575530 -1616812575558 ,112.5672912,26.86423596,65.01444244,180.0461714,180.7996621,17.070154,0.154202058,1620000000000 ,1620000000000 ,1620000000000 ,1616812575540 -1616812575570 ,112.5672912,26.86423441,65.01635742,180.0390407,180.7956685,17.071644,0.154216237,1620000000000 ,1620000000000 ,1620000000000 ,1616812575550 -1616812575578 ,112.5672911,26.86423287,65.01831055,180.032511,180.7853103,17.074265,0.154241007,1620000000000 ,1620000000000 ,1620000000000 ,1616812575560 -1616812575590 ,112.5672911,26.86423133,65.02022552,180.0307078,180.7749024,17.076769,0.154259105,1620000000000 ,1620000000000 ,1620000000000 ,1616812575570 -1616812575597 ,112.5672911,26.86422979,65.02203369,180.0285222,180.7638915,17.07843,0.154272414,1620000000000 ,1620000000000 ,1620000000000 ,1616812575580 -1616812575608 ,112.5672911,26.86422824,65.02375031,180.0254623,180.7549724,17.07909,0.154280358,1620000000000 ,1620000000000 ,1620000000000 ,1616812575590 -1616812575621 ,112.5672911,26.8642267,65.02552032,180.0208451,180.7392947,17.07839,0.154278049,1620000000000 ,1620000000000 ,1620000000000 ,1616812575600 -1616812575635 ,112.567291,26.86422516,65.02745056,180.0154355,180.7419767,17.076527,0.154264596,1620000000000 ,1620000000000 ,1620000000000 ,1616812575610 -1616812575641 ,112.567291,26.86422362,65.02953339,180.0134684,180.7509477,17.074327,0.154250167,1620000000000 ,1620000000000 ,1620000000000 ,1616812575620 -1616812575652 ,112.567291,26.86422207,65.0316925,180.0109823,180.7507555,17.074871,0.154254403,1620000000000 ,1620000000000 ,1620000000000 ,1616812575630 -1616812575662 ,112.567291,26.86422053,65.03383636,180.0082775,180.7455903,17.07764,0.154273137,1620000000000 ,1620000000000 ,1620000000000 ,1616812575640 -1616812575669 ,112.567291,26.86421899,65.03585815,180.0034691,180.7363793,17.082928,0.1543115,1620000000000 ,1620000000000 ,1620000000000 ,1616812575650 -1616812575679 ,112.5672909,26.86421745,65.03774261,179.9973765,180.7387933,17.087027,0.154353094,1620000000000 ,1620000000000 ,1620000000000 ,1616812575660 -1616812575690 ,112.5672909,26.8642159,65.03955841,179.9916118,180.7479298,17.088343,0.154363893,1620000000000 ,1620000000000 ,1620000000000 ,1616812575670 -1616812575699 ,112.5672909,26.86421436,65.04139709,179.9879782,180.7573777,17.08433,0.154346891,1620000000000 ,1620000000000 ,1620000000000 ,1616812575680 -1616812575709 ,112.5672909,26.86421282,65.04332733,179.9842352,180.7434671,17.08118,0.154319632,1620000000000 ,1620000000000 ,1620000000000 ,1616812575690 -1616812575719 ,112.5672909,26.86421127,65.04530334,179.9820496,180.7267613,17.081524,0.154311237,1620000000000 ,1620000000000 ,1620000000000 ,1616812575700 -1616812575734 ,112.5672908,26.86420973,65.04721832,179.9776236,180.7216285,17.084042,0.154324531,1620000000000 ,1620000000000 ,1620000000000 ,1616812575710 -1616812575743 ,112.5672908,26.86420819,65.04899597,179.9739353,180.7256164,17.08918,0.154364721,1620000000000 ,1620000000000 ,1620000000000 ,1616812575720 -1616812575753 ,112.5672908,26.86420664,65.05063629,179.9672691,180.7274561,17.09199,0.154387815,1620000000000 ,1620000000000 ,1620000000000 ,1616812575730 -1616812575760 ,112.5672908,26.8642051,65.05228424,179.9599198,180.7286354,17.092726,0.154409407,1620000000000 ,1620000000000 ,1620000000000 ,1616812575740 -1616812575769 ,112.5672908,26.86420355,65.05406189,179.9547015,180.7201444,17.091743,0.15440228,1620000000000 ,1620000000000 ,1620000000000 ,1616812575750 -1616812575779 ,112.5672908,26.86420201,65.05597687,179.9497838,180.7173865,17.091791,0.154405068,1620000000000 ,1620000000000 ,1620000000000 ,1616812575760 -1616812575793 ,112.5672907,26.86420047,65.05793762,179.9439098,180.7168385,17.091139,0.154401443,1620000000000 ,1620000000000 ,1620000000000 ,1616812575770 -1616812575801 ,112.5672907,26.86419892,65.05984497,179.939074,180.71575,17.090324,0.154394273,1620000000000 ,1620000000000 ,1620000000000 ,1616812575780 -1616812575813 ,112.5672907,26.86419738,65.06161499,179.9348393,180.7167128,17.092018,0.154400802,1620000000000 ,1620000000000 ,1620000000000 ,1616812575790 -1616812575821 ,112.5672907,26.86419583,65.06325531,179.9307958,180.7176346,17.094238,0.154416695,1620000000000 ,1620000000000 ,1620000000000 ,1616812575800 -1616812575831 ,112.5672907,26.86419429,65.06481171,179.926042,180.708915,17.098103,0.154443851,1620000000000 ,1620000000000 ,1620000000000 ,1616812575810 -1616812575840 ,112.5672906,26.86419275,65.0663147,179.9188567,180.7009852,17.10182,0.154476168,1620000000000 ,1620000000000 ,1620000000000 ,1616812575820 -1616812575851 ,112.5672906,26.8641912,65.06780243,179.9127368,180.692005,17.102234,0.154490543,1620000000000 ,1620000000000 ,1620000000000 ,1616812575830 -1616812575860 ,112.5672906,26.86418966,65.06932068,179.9058793,180.6910489,17.101526,0.15448832,1620000000000 ,1620000000000 ,1620000000000 ,1616812575840 -1616812575870 ,112.5672906,26.86418811,65.07092285,179.8995136,180.6807776,17.10039,0.1544796,1620000000000 ,1620000000000 ,1620000000000 ,1616812575850 -1616812575880 ,112.5672906,26.86418657,65.07254791,179.8924921,180.6670909,17.10262,0.154492707,1620000000000 ,1620000000000 ,1620000000000 ,1616812575860 -1616812575895 ,112.5672905,26.86418502,65.07416534,179.8878749,180.6645756,17.10378,0.15451358,1620000000000 ,1620000000000 ,1620000000000 ,1616812575870 -1616812575901 ,112.5672905,26.86418348,65.07574463,179.883367,180.6532648,17.105162,0.154522532,1620000000000 ,1620000000000 ,1620000000000 ,1616812575880 -1616812575913 ,112.5672905,26.86418193,65.07732391,179.8786132,180.6464825,17.107058,0.154542634,1620000000000 ,1620000000000 ,1620000000000 ,1616812575890 -1616812575921 ,112.5672905,26.86418039,65.07888794,179.8734769,180.639699,17.108612,0.154557084,1620000000000 ,1620000000000 ,1620000000000 ,1616812575900 -1616812575933 ,112.5672905,26.86417884,65.08045197,179.8700345,180.6358387,17.110126,0.154577605,1620000000000 ,1620000000000 ,1620000000000 ,1616812575910 -1616812575943 ,112.5672905,26.86417729,65.08200073,179.8663462,180.6296508,17.110586,0.15458353,1620000000000 ,1620000000000 ,1620000000000 ,1616812575920 -1616812575952 ,112.5672904,26.86417575,65.08353424,179.8627945,180.6252094,17.111233,0.154591574,1620000000000 ,1620000000000 ,1620000000000 ,1616812575930 -1616812575962 ,112.5672904,26.8641742,65.08504486,179.8595706,180.6142026,17.109747,0.154585579,1620000000000 ,1620000000000 ,1620000000000 ,1616812575940 -1616812575971 ,112.5672904,26.86417266,65.08650208,179.8570298,180.6013059,17.111452,0.154597464,1620000000000 ,1620000000000 ,1620000000000 ,1616812575950 -1616812575982 ,112.5672904,26.86417111,65.087883,179.8521394,180.5924577,17.11487,0.154622947,1620000000000 ,1620000000000 ,1620000000000 ,1616812575960 -1616812575992 ,112.5672904,26.86416956,65.08911133,179.847932,180.5910181,17.119604,0.154661066,1620000000000 ,1620000000000 ,1620000000000 ,1616812575970 -1616812576003 ,112.5672904,26.86416802,65.09015656,179.8453912,180.5877649,17.121803,0.154685026,1620000000000 ,1620000000000 ,1620000000000 ,1616812575980 -1616812576013 ,112.5672903,26.86416647,65.09104919,179.8425225,180.5781249,17.122826,0.154696306,1620000000000 ,1620000000000 ,1620000000000 ,1616812575990 -1616812576023 ,112.5672903,26.86416492,65.09186554,179.8391347,180.5623636,17.124783,0.154706859,1620000000000 ,1620000000000 ,1620000000000 ,1616812576000 -1616812576033 ,112.5672903,26.86416338,65.09262848,179.8375774,180.5535041,17.127745,0.154733733,1620000000000 ,1620000000000 ,1620000000000 ,1616812576020 -1616812576042 ,112.5672903,26.86416183,65.09329987,179.8335339,180.5563208,17.130028,0.15475663,1620000000000 ,1620000000000 ,1620000000000 ,1616812576030 -1616812576052 ,112.5672903,26.86416028,65.09381866,179.8295451,180.5606916,17.132154,0.154772753,1620000000000 ,1620000000000 ,1620000000000 ,1616812576030 -1616812576062 ,112.5672903,26.86415873,65.0941925,179.8247913,180.5557542,17.13415,0.154785779,1620000000000 ,1620000000000 ,1620000000000 ,1616812576050 -1616812576072 ,112.5672902,26.86415564,65.09445953,179.8181797,180.5504559,17.14282,0.309663911,1620000000000 ,1620000000000 ,1620000000000 ,1616812576060 -1616812576083 ,112.5672902,26.86415409,65.09434509,179.8137537,180.5458916,17.145187,0.154866796,1620000000000 ,1620000000000 ,1620000000000 ,1616812576070 -1616812576095 ,112.5672902,26.86415254,65.0941391,179.8086994,180.5460343,17.146912,0.154880751,1620000000000 ,1620000000000 ,1620000000000 ,1616812576080 -1616812576105 ,112.5672902,26.86415254,65.0941391,179.8086994,-400,17.146912,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812576090 -1616812576116 ,112.5672902,26.86414944,65.09360504,179.800066,180.5339288,17.151917,0.30981794,1620000000000 ,1620000000000 ,1620000000000 ,1616812576100 -1616812576124 ,112.5672902,26.86414789,65.09325409,179.797252,180.5267549,17.154661,0.154937265,1620000000000 ,1620000000000 ,1620000000000 ,1616812576110 -1616812576133 ,112.5672902,26.86414634,65.0928421,179.7934817,180.5229015,17.158102,0.154963781,1620000000000 ,1620000000000 ,1620000000000 ,1616812576120 -1616812576143 ,112.5672901,26.86414479,65.09241486,179.787116,180.5187645,17.160357,0.154989072,1620000000000 ,1620000000000 ,1620000000000 ,1616812576130 -1616812576153 ,112.5672901,26.86414324,65.09201813,179.783455,180.5141751,17.163599,0.155013582,1620000000000 ,1620000000000 ,1620000000000 ,1616812576140 -1616812576165 ,112.5672901,26.86414169,65.09165192,179.7803404,180.507899,17.165297,0.155028018,1620000000000 ,1620000000000 ,1620000000000 ,1616812576150 -1616812576174 ,112.5672901,26.86414014,65.09131622,179.7747124,180.4969499,17.16631,0.155042976,1620000000000 ,1620000000000 ,1620000000000 ,1616812576160 -1616812576185 ,112.5672901,26.86413859,65.09101868,179.7676909,180.4922909,17.166119,0.155039548,1620000000000 ,1620000000000 ,1620000000000 ,1616812576170 -1616812576195 ,112.5672901,26.86413704,65.09077454,179.7621995,180.4917086,17.16787,0.155054069,1620000000000 ,1620000000000 ,1620000000000 ,1616812576180 -1616812576205 ,112.5672901,26.86413549,65.09050751,179.7582653,180.4721275,17.172106,0.155077785,1620000000000 ,1620000000000 ,1620000000000 ,1616812576190 -1616812576218 ,112.5672901,26.86413394,65.09053802,179.7614071,180.165415,17.193323,0.155343997,1620000000000 ,1620000000000 ,1620000000000 ,1616812576200 -1616812576223 ,112.5672901,26.86413238,65.09109497,179.7584292,179.6793394,17.194712,0.155741753,1620000000000 ,1620000000000 ,1620000000000 ,1616812576210 -1616812576233 ,112.5672901,26.86413082,65.09178162,179.7558337,179.6782353,17.19467,0.15574331,1620000000000 ,1620000000000 ,1620000000000 ,1616812576220 -1616812576243 ,112.5672901,26.86412926,65.09259796,179.7526099,179.6813678,17.197367,0.155759598,1620000000000 ,1620000000000 ,1620000000000 ,1616812576230 -1616812576255 ,112.5672901,26.86412771,65.09350586,179.7505881,179.6890034,17.20009,0.155789813,1620000000000 ,1620000000000 ,1620000000000 ,1616812576240 -1616812576266 ,112.5672901,26.86412615,65.09456635,179.7459163,179.6953495,17.20238,0.155815291,1620000000000 ,1620000000000 ,1620000000000 ,1616812576250 -1616812576275 ,112.5672901,26.86412459,65.09580994,179.7411351,179.685949,17.201542,0.155820915,1620000000000 ,1620000000000 ,1620000000000 ,1616812576260 -1616812576285 ,112.5672901,26.86412303,65.097229,179.7356983,179.6759192,17.20203,0.155826935,1620000000000 ,1620000000000 ,1620000000000 ,1616812576270 -1616812576295 ,112.5672901,26.86412147,65.09873199,179.7323105,179.6724113,17.202845,0.155834801,1620000000000 ,1620000000000 ,1620000000000 ,1616812576280 -1616812576306 ,112.5672901,26.86411992,65.10025787,179.7304254,179.6748565,17.205652,0.155853038,1620000000000 ,1620000000000 ,1620000000000 ,1616812576290 -1616812576315 ,112.5672901,26.86411836,65.10182953,179.7265732,179.6807124,17.20844,0.155886365,1620000000000 ,1620000000000 ,1620000000000 ,1616812576300 -1616812576326 ,112.5672901,26.8641168,65.10352325,179.7213822,179.6688915,17.208336,0.155894687,1620000000000 ,1620000000000 ,1620000000000 ,1616812576310 -1616812576336 ,112.5672902,26.86411524,65.10536957,179.7164372,179.6634631,17.20933,0.15590212,1620000000000 ,1620000000000 ,1620000000000 ,1616812576320 -1616812576347 ,112.5672902,26.86411368,65.10733795,179.7149892,179.669562,17.209364,0.155909171,1620000000000 ,1620000000000 ,1620000000000 ,1616812576330 -1616812576355 ,112.5672902,26.86411212,65.10938263,179.7123937,179.6771211,17.211319,0.155928871,1620000000000 ,1620000000000 ,1620000000000 ,1616812576340 -1616812576368 ,112.5672902,26.86411056,65.11153412,179.7103447,179.6788633,17.212563,0.155945181,1620000000000 ,1620000000000 ,1620000000000 ,1616812576350 -1616812576377 ,112.5672902,26.864109,65.11374664,179.7049351,179.6782478,17.215088,0.15596293,1620000000000 ,1620000000000 ,1620000000000 ,1616812576360 -1616812576388 ,112.5672902,26.86410744,65.1159668,179.7022304,179.6890344,17.220003,0.156005687,1620000000000 ,1620000000000 ,1620000000000 ,1616812576370 -1616812576397 ,112.5672902,26.86410588,65.11814117,179.6982142,179.7009231,17.224566,0.15604994,1620000000000 ,1620000000000 ,1620000000000 ,1616812576380 -1616812576411 ,112.5672902,26.86410432,65.1202774,179.695728,179.7009591,17.225304,0.156069267,1620000000000 ,1620000000000 ,1620000000000 ,1616812576390 -1616812576415 ,112.5672902,26.86410276,65.1223526,179.6904005,179.6933311,17.226425,0.156071356,1620000000000 ,1620000000000 ,1620000000000 ,1616812576400 -1616812576427 ,112.5672902,26.8641012,65.12432098,179.6881329,179.6899529,17.227797,0.15607967,1620000000000 ,1620000000000 ,1620000000000 ,1616812576410 -1616812576437 ,112.5672902,26.86409964,65.12611389,179.6858379,179.6925685,17.232073,0.156105077,1620000000000 ,1620000000000 ,1620000000000 ,1616812576420 -1616812576447 ,112.5672903,26.86409808,65.12776947,179.6816579,179.7101417,17.2353,0.156136931,1620000000000 ,1620000000000 ,1620000000000 ,1616812576430 -1616812576457 ,112.5672903,26.86409651,65.12940216,179.6759205,179.7058171,17.23957,0.156169045,1620000000000 ,1620000000000 ,1620000000000 ,1616812576440 -1616812576470 ,112.5672903,26.86409495,65.13090515,179.6691176,179.991067,17.238817,0.155953904,1620000000000 ,1620000000000 ,1620000000000 ,1616812576450 -1616812576476 ,112.5672903,26.8640934,65.13224792,179.6589816,180.2843793,17.239563,0.155739068,1620000000000 ,1620000000000 ,1620000000000 ,1616812576460 -1616812576488 ,112.5672902,26.86409184,65.13361359,179.6507581,180.2867313,17.240587,0.1557528,1620000000000 ,1620000000000 ,1620000000000 ,1616812576470 -1616812576501 ,112.5672902,26.86409028,65.13495636,179.6434361,180.2919344,17.24291,0.155765961,1620000000000 ,1620000000000 ,1620000000000 ,1616812576480 -1616812576516 ,112.5672902,26.86408872,65.13632202,179.6381359,180.2877616,17.245007,0.155791031,1620000000000 ,1620000000000 ,1620000000000 ,1616812576490 -1616812576519 ,112.5672902,26.86408717,65.13780212,179.6309232,180.2746625,17.244207,0.155795556,1620000000000 ,1620000000000 ,1620000000000 ,1616812576500 -1616812576529 ,112.5672902,26.86408561,65.13939667,179.6278086,180.2602,17.244192,0.15579605,1620000000000 ,1620000000000 ,1620000000000 ,1616812576510 -1616812576538 ,112.5672902,26.86408405,65.1410141,179.6242023,180.2553686,17.24639,0.155808015,1620000000000 ,1620000000000 ,1620000000000 ,1616812576520 -1616812576547 ,112.5672902,26.86408249,65.14252472,179.6212517,180.2577768,17.250387,0.155839174,1620000000000 ,1620000000000 ,1620000000000 ,1616812576530 -1616812576566 ,112.5672902,26.86408093,65.14387512,179.6153231,180.2551916,17.253145,0.155862797,1620000000000 ,1620000000000 ,1620000000000 ,1616812576540 -1616812576569 ,112.5672902,26.86407937,65.14506531,179.6078372,180.2406386,17.255817,0.15588,1620000000000 ,1620000000000 ,1620000000000 ,1616812576550 -1616812576577 ,112.5672902,26.86407782,65.14611816,179.6003513,180.2238966,17.258284,0.155899179,1620000000000 ,1620000000000 ,1620000000000 ,1616812576560 -1616812576588 ,112.5672902,26.86407626,65.14711761,179.5929747,180.2189451,17.258114,0.155900484,1620000000000 ,1620000000000 ,1620000000000 ,1616812576570 -1616812576599 ,112.5672902,26.8640747,65.14812469,179.5847238,180.2127013,17.255127,0.155882531,1620000000000 ,1620000000000 ,1620000000000 ,1616812576580 -1616812576612 ,112.5672902,26.86407314,65.14914703,179.5779756,180.2031959,17.254927,0.155871277,1620000000000 ,1620000000000 ,1620000000000 ,1616812576590 -1616812576624 ,112.5672902,26.86407158,65.15010834,179.5739048,180.1903331,17.257336,0.15588023,1620000000000 ,1620000000000 ,1620000000000 ,1616812576600 -1616812576630 ,112.5672902,26.86407002,65.15090942,179.5699433,180.1825215,17.26216,0.155911397,1620000000000 ,1620000000000 ,1620000000000 ,1616812576610 -1616812576644 ,112.5672901,26.86406846,65.15158081,179.5667468,180.1836649,17.264933,0.155943599,1620000000000 ,1620000000000 ,1620000000000 ,1616812576620 -1616812576649 ,112.5672901,26.8640669,65.1522522,179.5619929,180.1617132,17.266134,0.155953068,1620000000000 ,1620000000000 ,1620000000000 ,1616812576630 -1616812576659 ,112.5672901,26.86406534,65.1530838,179.5573757,180.1449028,17.262848,0.155937187,1620000000000 ,1620000000000 ,1620000000000 ,1616812576640 -1616812576669 ,112.5672901,26.86406378,65.15406799,179.5543705,180.1398374,17.259184,0.155904718,1620000000000 ,1620000000000 ,1620000000000 ,1616812576650 -1616812576678 ,112.5672901,26.86406222,65.15514374,179.5500265,180.1362896,17.258095,0.155893459,1620000000000 ,1620000000000 ,1620000000000 ,1616812576660 -1616812576688 ,112.5672901,26.86406067,65.15627289,179.5445077,180.1224441,17.25831,0.155888084,1620000000000 ,1620000000000 ,1620000000000 ,1616812576670 -1616812576700 ,112.5672901,26.86405911,65.15742493,179.5397265,180.096038,17.261044,0.155907701,1620000000000 ,1620000000000 ,1620000000000 ,1616812576680 -1616812576715 ,112.5672901,26.86405755,65.15854645,179.539508,180.08038,17.265812,0.155943192,1620000000000 ,1620000000000 ,1620000000000 ,1616812576690 -1616812576720 ,112.5672901,26.86405599,65.15965271,179.5401363,180.0737084,17.269148,0.155976985,1620000000000 ,1620000000000 ,1620000000000 ,1616812576700 -1616812576731 ,112.5672901,26.86405443,65.16080475,179.538743,180.0637401,17.270224,0.155994792,1620000000000 ,1620000000000 ,1620000000000 ,1616812576710 -1616812576739 ,112.5672901,26.86405287,65.16212463,179.5374862,180.0576703,17.267178,0.155979014,1620000000000 ,1620000000000 ,1620000000000 ,1616812576720 -1616812576748 ,112.5672901,26.86405131,65.16358185,179.5354918,180.0557971,17.261892,0.1559389,1620000000000 ,1620000000000 ,1620000000000 ,1616812576730 -1616812576759 ,112.5672901,26.86404975,65.16505432,179.5330876,180.0513058,17.259827,0.155909807,1620000000000 ,1620000000000 ,1620000000000 ,1616812576740 -1616812576769 ,112.5672901,26.86404819,65.16643524,179.5309566,180.0505818,17.2609,0.155907227,1620000000000 ,1620000000000 ,1620000000000 ,1616812576750 -1616812576780 ,112.5672901,26.86404663,65.16770935,179.5303555,180.0503205,17.265299,0.15593839,1620000000000 ,1620000000000 ,1620000000000 ,1616812576760 -1616812576790 ,112.5672901,26.86404507,65.16889191,179.5329237,180.0441277,17.27134,0.155985379,1620000000000 ,1620000000000 ,1620000000000 ,1616812576770 -1616812576803 ,112.5672901,26.86404351,65.17005157,179.5350274,180.0305068,17.275084,0.156021106,1620000000000 ,1620000000000 ,1620000000000 ,1616812576780 -1616812576810 ,112.5672901,26.86404195,65.17131805,179.533552,180.0260844,17.27354,0.156021413,1620000000000 ,1620000000000 ,1620000000000 ,1616812576790 -1616812576821 ,112.5672901,26.86404039,65.17280579,179.5300003,180.0284523,17.27041,0.156003116,1620000000000 ,1620000000000 ,1620000000000 ,1616812576800 -1616812576831 ,112.5672901,26.86403883,65.17449951,179.5294812,180.0333394,17.26804,0.155979854,1620000000000 ,1620000000000 ,1620000000000 ,1616812576810 -1616812576840 ,112.5672901,26.86403727,65.17626953,179.5280879,180.0343456,17.269487,0.155988116,1620000000000 ,1620000000000 ,1620000000000 ,1616812576820 -1616812576850 ,112.5672901,26.86403571,65.17801666,179.526476,180.0390251,17.271673,0.156006947,1620000000000 ,1620000000000 ,1620000000000 ,1616812576830 -1616812576860 ,112.5672901,26.86403415,65.17975616,179.5243449,180.0455013,17.273008,0.156023838,1620000000000 ,1620000000000 ,1620000000000 ,1616812576840 -1616812576873 ,112.5672901,26.86403259,65.18154144,179.5219954,180.0401829,17.273804,0.156032396,1620000000000 ,1620000000000 ,1620000000000 ,1616812576850 -1616812576882 ,112.5672901,26.86403103,65.1833725,179.5197004,180.0405271,17.275213,0.156045191,1620000000000 ,1620000000000 ,1620000000000 ,1616812576860 -1616812576894 ,112.5672901,26.86402947,65.18525696,179.5167225,180.0522167,17.276224,0.156060697,1620000000000 ,1620000000000 ,1620000000000 ,1616812576870 -1616812576904 ,112.5672901,26.86402791,65.18720245,179.5145368,180.0622705,17.276333,0.156064717,1620000000000 ,1620000000000 ,1620000000000 ,1616812576880 -1616812576918 ,112.5672901,26.86402635,65.1892395,179.5101928,180.0589643,17.275774,0.156064944,1620000000000 ,1620000000000 ,1620000000000 ,1616812576890 -1616812576922 ,112.5672901,26.86402479,65.19129181,179.5065865,180.0481416,17.277187,0.156072144,1620000000000 ,1620000000000 ,1620000000000 ,1616812576900 -1616812576932 ,112.5672901,26.86402323,65.19330597,179.5046194,180.0548681,17.27879,0.156091954,1620000000000 ,1620000000000 ,1620000000000 ,1616812576910 -1616812576954 ,112.5672901,26.86402167,65.19528198,179.4999475,180.0616496,17.28034,0.156104434,1620000000000 ,1620000000000 ,1620000000000 ,1616812576920 -1616812576957 ,112.5672901,26.8640201,65.19731903,179.4954396,180.0594672,17.279312,0.15610475,1620000000000 ,1620000000000 ,1620000000000 ,1616812576930 -1616812576963 ,112.5672901,26.86401854,65.19945526,179.4893471,180.0567091,17.279108,0.156106028,1620000000000 ,1620000000000 ,1620000000000 ,1616812576940 -1616812576972 ,112.5672901,26.86401698,65.20162201,179.4839375,180.0622164,17.281569,0.156125776,1620000000000 ,1620000000000 ,1620000000000 ,1616812576950 -1616812576985 ,112.5672901,26.86401542,65.20374298,179.4789378,180.068997,17.284708,0.156152288,1620000000000 ,1620000000000 ,1620000000000 ,1616812576960 -1616812576992 ,112.5672901,26.86401386,65.20574951,179.4737742,180.0754032,17.286734,0.156173916,1620000000000 ,1620000000000 ,1620000000000 ,1616812576970 -1616812577003 ,112.5672901,26.8640123,65.20763397,179.4673265,180.0726192,17.288258,0.156186092,1620000000000 ,1620000000000 ,1620000000000 ,1616812576980 -1616812577012 ,112.5672901,26.86401073,65.20944214,179.461316,180.0715834,17.289906,0.156200943,1620000000000 ,1620000000000 ,1620000000000 ,1616812576990 -1616812577026 ,112.5672901,26.86400917,65.2111969,179.4548409,180.0719989,17.289768,0.156201905,1620000000000 ,1620000000000 ,1620000000000 ,1616812577000 -1616812577038 ,112.5672901,26.86400761,65.21290588,179.4494861,180.0730433,17.291164,0.15621128,1620000000000 ,1620000000000 ,1620000000000 ,1616812577010 -1616812577043 ,112.5672901,26.86400605,65.21450806,179.4462076,180.0687052,17.291588,0.156215763,1620000000000 ,1620000000000 ,1620000000000 ,1616812577030 -1616812577054 ,112.5672901,26.86400449,65.21594238,179.4419729,180.0690722,17.295067,0.156234527,1620000000000 ,1620000000000 ,1620000000000 ,1616812577040 -1616812577063 ,112.5672901,26.86400292,65.21720123,179.4375196,180.0678583,17.300312,0.156269425,1620000000000 ,1620000000000 ,1620000000000 ,1616812577050 -1616812577073 ,112.5672901,26.8639998,65.21939087,179.428012,180.0616611,17.30835,0.312652353,1620000000000 ,1620000000000 ,1620000000000 ,1616812577060 -1616812577083 ,112.5672901,26.86399823,65.2204895,179.4208812,180.0547156,17.30898,0.156353091,1620000000000 ,1620000000000 ,1620000000000 ,1616812577070 -1616812577093 ,112.5672901,26.86399667,65.22164917,179.415499,180.0486491,17.30782,0.156347017,1620000000000 ,1620000000000 ,1620000000000 ,1616812577080 -1616812577104 ,112.5672901,26.86399667,65.22164917,179.415499,-400,17.30782,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812577090 -1616812577112 ,112.5672901,26.86399354,65.22398376,179.4049806,180.0442764,17.313099,0.312739691,1620000000000 ,1620000000000 ,1620000000000 ,1616812577100 -1616812577123 ,112.5672901,26.86399198,65.22509766,179.3998443,180.0383847,17.315228,0.156403677,1620000000000 ,1620000000000 ,1620000000000 ,1616812577110 -1616812577134 ,112.5672901,26.86399041,65.22618866,179.3939976,180.0277774,17.31511,0.156405102,1620000000000 ,1620000000000 ,1620000000000 ,1616812577120 -1616812577144 ,112.5672901,26.86399041,65.22618866,179.3939976,-400,17.31511,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812577130 -1616812577156 ,112.5672901,26.86398729,65.22848511,179.3818126,180.0188007,17.318,0.312847992,1620000000000 ,1620000000000 ,1620000000000 ,1616812577140 -1616812577168 ,112.5672901,26.86398572,65.22972107,179.3745452,180.0076025,17.323582,0.156471443,1620000000000 ,1620000000000 ,1620000000000 ,1616812577150 -1616812577175 ,112.5672901,26.86398416,65.23099518,179.3701739,180.0023288,17.32463,0.156497223,1620000000000 ,1620000000000 ,1620000000000 ,1616812577160 -1616812577185 ,112.5672901,26.86398259,65.23232269,179.3668408,179.9916103,17.323627,0.156493147,1620000000000 ,1620000000000 ,1620000000000 ,1616812577170 -1616812577193 ,112.5672901,26.86398103,65.23374939,179.3638901,179.9816707,17.321754,0.156480131,1620000000000 ,1620000000000 ,1620000000000 ,1616812577180 -1616812577207 ,112.5672901,26.86398103,65.23374939,179.3638901,-400,17.321754,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812577190 -1616812577214 ,112.5672901,26.8639779,65.23669434,179.3611307,179.9557098,17.307093,0.312756112,1620000000000 ,1620000000000 ,1620000000000 ,1616812577200 -1616812577224 ,112.5672901,26.86397634,65.23778534,179.3575517,179.8941824,17.30949,0.155893111,1620000000000 ,1620000000000 ,1620000000000 ,1616812577210 -1616812577238 ,112.5672901,26.86397478,65.23880768,179.3547923,179.8951703,17.313244,0.155925291,1620000000000 ,1620000000000 ,1620000000000 ,1616812577220 -1616812577244 ,112.5672901,26.86397322,65.23973846,179.3519236,179.8910695,17.317272,0.155960326,1620000000000 ,1620000000000 ,1620000000000 ,1616812577230 -1616812577254 ,112.5672901,26.86397166,65.2406311,179.3494921,179.8792891,17.318495,0.155974593,1620000000000 ,1620000000000 ,1620000000000 ,1616812577240 -1616812577266 ,112.5672901,26.8639701,65.24147797,179.3448203,179.8658276,17.320757,0.155992183,1620000000000 ,1620000000000 ,1620000000000 ,1616812577250 -1616812577274 ,112.5672901,26.86396854,65.24227142,179.3406402,179.8621353,17.321573,0.156002898,1620000000000 ,1620000000000 ,1620000000000 ,1616812577260 -1616812577284 ,112.5672901,26.86396698,65.24297333,179.3382906,179.8597271,17.32232,0.156005158,1620000000000 ,1620000000000 ,1620000000000 ,1616812577270 -1616812577294 ,112.5672901,26.86396542,65.24362946,179.3335641,179.8540427,17.324528,0.156018408,1620000000000 ,1620000000000 ,1620000000000 ,1616812577280 -1616812577304 ,112.5672901,26.86396386,65.24427795,179.328018,179.8367986,17.32702,0.156040112,1620000000000 ,1620000000000 ,1620000000000 ,1616812577290 -1616812577316 ,112.5672901,26.8639623,65.24491119,179.3241384,179.8317636,17.334358,0.156099562,1620000000000 ,1620000000000 ,1620000000000 ,1616812577300 -1616812577326 ,112.5672901,26.86396074,65.24545288,179.3220347,179.8312349,17.336256,0.15612241,1620000000000 ,1620000000000 ,1620000000000 ,1616812577310 -1616812577335 ,112.5672901,26.86395918,65.24590302,179.3173082,179.8304879,17.338594,0.156143872,1620000000000 ,1620000000000 ,1620000000000 ,1616812577320 -1616812577347 ,112.5672901,26.86395762,65.2463913,179.3079099,179.8191453,17.339855,0.156154859,1620000000000 ,1620000000000 ,1620000000000 ,1616812577330 -1616812577354 ,112.5672901,26.86395605,65.24699402,179.3012983,179.8114259,17.343021,0.156181372,1620000000000 ,1620000000000 ,1620000000000 ,1616812577340 -1616812577365 ,112.5672901,26.86395449,65.247612,179.2943861,179.815609,17.345533,0.156207834,1620000000000 ,1620000000000 ,1620000000000 ,1616812577350 -1616812577375 ,112.5672901,26.86395293,65.24822235,179.286791,179.822873,17.343826,0.15620503,1620000000000 ,1620000000000 ,1620000000000 ,1616812577360 -1616812577386 ,112.5672901,26.86395137,65.24887848,179.2778571,179.8171263,17.342737,0.15619218,1620000000000 ,1620000000000 ,1620000000000 ,1616812577370 -1616812577395 ,112.5672901,26.86394981,65.24954987,179.2706717,179.8063155,17.347317,0.156218963,1620000000000 ,1620000000000 ,1620000000000 ,1616812577380 -1616812577411 ,112.5672901,26.86394824,65.25010681,179.2655627,179.800077,17.355682,0.156280364,1620000000000 ,1620000000000 ,1620000000000 ,1616812577390 -1616812577420 ,112.5672901,26.86394668,65.25054169,179.2567108,179.8012168,17.362007,0.156345372,1620000000000 ,1620000000000 ,1620000000000 ,1616812577400 -1616812577432 ,112.5672902,26.86394512,65.25098419,179.2437881,179.797161,17.3618,0.156359528,1620000000000 ,1620000000000 ,1620000000000 ,1616812577410 -1616812577436 ,112.5672902,26.86394355,65.25160217,179.2310293,179.7917947,17.357801,0.15633834,1620000000000 ,1620000000000 ,1620000000000 ,1616812577420 -1616812577446 ,112.5672902,26.86394199,65.25235748,179.2190082,179.7826705,17.356691,0.156322885,1620000000000 ,1620000000000 ,1620000000000 ,1616812577430 -1616812577456 ,112.5672902,26.86394043,65.25313568,179.2092547,179.7723516,17.360523,0.156346444,1620000000000 ,1620000000000 ,1620000000000 ,1616812577440 -1616812577470 ,112.5672902,26.86393886,65.25397491,179.1984356,179.7849957,17.36596,0.156623643,1620000000000 ,1620000000000 ,1620000000000 ,1616812577450 -1616812577476 ,112.5672902,26.86393729,65.25486755,179.1857588,179.7992318,17.37263,0.156918184,1620000000000 ,1620000000000 ,1620000000000 ,1616812577460 -1616812577486 ,112.5672902,26.86393572,65.25576782,179.1716067,179.7892904,17.373837,0.156941356,1620000000000 ,1620000000000 ,1620000000000 ,1616812577470 -1616812577497 ,112.5672902,26.86393415,65.25670624,179.1575911,179.7750367,17.37466,0.156950134,1620000000000 ,1620000000000 ,1620000000000 ,1616812577480 -1616812577507 ,112.5672902,26.86393258,65.25767517,179.1430291,179.7740417,17.376822,0.156967771,1620000000000 ,1620000000000 ,1620000000000 ,1616812577490 -1616812577519 ,112.5672902,26.86393101,65.25861359,179.1282759,179.7775638,17.379028,0.156989335,1620000000000 ,1620000000000 ,1620000000000 ,1616812577500 -1616812577533 ,112.5672902,26.86392944,65.259552,179.1109546,179.7641829,17.37859,0.156994773,1620000000000 ,1620000000000 ,1620000000000 ,1616812577510 -1616812577537 ,112.5672902,26.86392787,65.26049805,179.0922125,179.7453629,17.37995,0.156998386,1620000000000 ,1620000000000 ,1620000000000 ,1616812577520 -1616812577547 ,112.5672902,26.8639263,65.26142883,179.0743721,179.7293414,17.383564,0.157030796,1620000000000 ,1620000000000 ,1620000000000 ,1616812577530 -1616812577556 ,112.5672902,26.86392473,65.26230621,179.0563404,179.7201986,17.388277,0.157067253,1620000000000 ,1620000000000 ,1620000000000 ,1616812577540 -1616812577566 ,112.5672902,26.86392316,65.26311493,179.0392649,179.7093698,17.392416,0.157107309,1620000000000 ,1620000000000 ,1620000000000 ,1616812577550 -1616812577577 ,112.5672903,26.86392159,65.26384735,179.0201404,179.6902108,17.395723,0.157131921,1620000000000 ,1620000000000 ,1620000000000 ,1616812577560 -1616812577587 ,112.5672903,26.86392002,65.26457214,179.0009339,179.6773918,17.396715,0.15715203,1620000000000 ,1620000000000 ,1620000000000 ,1616812577570 -1616812577598 ,112.5672903,26.86391845,65.26531982,178.9809078,179.6592031,17.39964,0.157166333,1620000000000 ,1620000000000 ,1620000000000 ,1616812577580 -1616812577610 ,112.5672903,26.86391687,65.26610565,178.9632039,179.6405269,17.402523,0.157200659,1620000000000 ,1620000000000 ,1620000000000 ,1616812577590 -1616812577618 ,112.5672903,26.8639153,65.2668457,178.944298,179.6119608,17.402966,0.157195839,1620000000000 ,1620000000000 ,1620000000000 ,1616812577600 -1616812577627 ,112.5672903,26.86391373,65.26754761,178.9236981,179.5964259,17.403078,0.157207455,1620000000000 ,1620000000000 ,1620000000000 ,1616812577610 -1616812577637 ,112.5672903,26.86391216,65.2681427,178.9049014,179.5840244,17.409273,0.157242543,1620000000000 ,1620000000000 ,1620000000000 ,1616812577620 -1616812577648 ,112.5672903,26.86391058,65.26858521,178.8876074,179.5663283,17.418179,0.157303433,1620000000000 ,1620000000000 ,1620000000000 ,1616812577630 -1616812577657 ,112.5672903,26.86390901,65.26891327,178.8672807,179.5353214,17.422817,0.157356542,1620000000000 ,1620000000000 ,1620000000000 ,1616812577640 -1616812577670 ,112.5672904,26.86390744,65.26931763,178.8455881,179.5030973,17.422443,0.157366184,1620000000000 ,1620000000000 ,1620000000000 ,1616812577650 -1616812577679 ,112.5672904,26.86390586,65.26989746,178.8264909,179.4796622,17.420599,0.157353558,1620000000000 ,1620000000000 ,1620000000000 ,1616812577660 -1616812577689 ,112.5672904,26.86390429,65.27058411,178.8079401,179.4601918,17.423563,0.15736846,1620000000000 ,1620000000000 ,1620000000000 ,1616812577670 -1616812577698 ,112.5672904,26.86390272,65.2713089,178.7894986,179.4368479,17.427383,0.157400172,1620000000000 ,1620000000000 ,1620000000000 ,1616812577680 -1616812577709 ,112.5672904,26.86390114,65.27203369,178.7706745,179.4190565,17.430696,0.157432901,1620000000000 ,1620000000000 ,1620000000000 ,1616812577690 -1616812577721 ,112.5672904,26.86389957,65.27279663,178.7533532,179.3929091,17.433022,0.157455935,1620000000000 ,1620000000000 ,1620000000000 ,1616812577700 -1616812577729 ,112.5672904,26.86389799,65.27366638,178.7356493,179.3720716,17.433996,0.157471139,1620000000000 ,1620000000000 ,1620000000000 ,1616812577710 -1616812577740 ,112.5672905,26.86389642,65.27466583,178.7178908,179.3556144,17.436003,0.157487285,1620000000000 ,1620000000000 ,1620000000000 ,1616812577720 -1616812577748 ,112.5672905,26.86389484,65.27581787,178.6984111,179.3465613,17.438509,0.157515507,1620000000000 ,1620000000000 ,1620000000000 ,1616812577730 -1616812577765 ,112.5672905,26.86389327,65.27706146,178.6803248,179.3153069,17.440811,0.157537248,1620000000000 ,1620000000000 ,1620000000000 ,1616812577740 -1616812577770 ,112.5672905,26.86389169,65.27835083,178.6612276,179.2790164,17.443754,0.157562395,1620000000000 ,1620000000000 ,1620000000000 ,1616812577750 -1616812577787 ,112.5672905,26.86389012,65.27965546,178.6437423,179.255997,17.4469,0.157589995,1620000000000 ,1620000000000 ,1620000000000 ,1616812577760 -1616812577794 ,112.5672906,26.86388854,65.28100586,178.6255467,179.2402807,17.448427,0.157611022,1620000000000 ,1620000000000 ,1620000000000 ,1616812577770 -1616812577807 ,112.5672906,26.86388696,65.28244019,178.609564,179.2203293,17.451057,0.157636823,1620000000000 ,1620000000000 ,1620000000000 ,1616812577780 -1616812577808 ,112.5672906,26.86388539,65.28393555,178.5913957,179.2001264,17.453175,0.157657816,1620000000000 ,1620000000000 ,1620000000000 ,1616812577790 -1616812577820 ,112.5672906,26.86388381,65.28549194,178.5742383,179.1797307,17.455545,0.157683093,1620000000000 ,1620000000000 ,1620000000000 ,1616812577800 -1616812577829 ,112.5672907,26.86388223,65.28710938,178.553174,179.1640109,17.45809,0.157709601,1620000000000 ,1620000000000 ,1620000000000 ,1616812577810 -1616812577839 ,112.5672907,26.86388066,65.28874969,178.5316179,179.1477239,17.46217,0.157743364,1620000000000 ,1620000000000 ,1620000000000 ,1616812577820 -1616812577851 ,112.5672907,26.86387908,65.29035187,178.5137228,179.133372,17.465717,0.157778359,1620000000000 ,1620000000000 ,1620000000000 ,1616812577830 -1616812577861 ,112.5672907,26.8638775,65.29190063,178.4959643,179.1162394,17.467155,0.15779833,1620000000000 ,1620000000000 ,1620000000000 ,1616812577840 -1616812577872 ,112.5672907,26.86387592,65.2934494,178.4795719,179.0867963,17.469357,0.157815848,1620000000000 ,1620000000000 ,1620000000000 ,1616812577850 -1616812577882 ,112.5672908,26.86387435,65.29502869,178.4614582,179.0490284,17.469894,0.157822223,1620000000000 ,1620000000000 ,1620000000000 ,1616812577860 -1616812577890 ,112.5672908,26.86387277,65.29658508,178.4437271,179.0266149,17.473555,0.15785281,1620000000000 ,1620000000000 ,1620000000000 ,1616812577870 -1616812577900 ,112.5672908,26.86387119,65.29803467,178.4276078,179.0186879,17.476913,0.15787788,1620000000000 ,1620000000000 ,1620000000000 ,1616812577880 -1616812577910 ,112.5672909,26.86386961,65.29935455,178.4100406,179.0173967,17.481508,0.157914979,1620000000000 ,1620000000000 ,1620000000000 ,1616812577890 -1616812577921 ,112.5672909,26.86386803,65.30065155,178.3895773,178.9968135,17.486883,0.157965044,1620000000000 ,1620000000000 ,1620000000000 ,1616812577900 -1616812577930 ,112.5672909,26.86386645,65.30197906,178.3672016,178.9540519,17.489693,0.157999106,1620000000000 ,1620000000000 ,1620000000000 ,1616812577910 -1616812577940 ,112.5672909,26.86386487,65.30329895,178.3428861,178.9282239,17.491598,0.158013427,1620000000000 ,1620000000000 ,1620000000000 ,1616812577920 -1616812577950 ,112.567291,26.86386329,65.30448914,178.3229966,178.9234269,17.493813,0.158031302,1620000000000 ,1620000000000 ,1620000000000 ,1616812577930 -1616812577964 ,112.567291,26.86386171,65.30554199,178.303353,178.9148196,17.498623,0.158064925,1620000000000 ,1620000000000 ,1620000000000 ,1616812577940 -1616812577980 ,112.567291,26.86386013,65.30652618,178.2834908,178.8955552,17.502184,0.158100012,1620000000000 ,1620000000000 ,1620000000000 ,1616812577950 -1616812577982 ,112.5672911,26.86385855,65.30749512,178.2637652,178.8567183,17.505093,0.158127337,1620000000000 ,1620000000000 ,1620000000000 ,1616812577960 -1616812577992 ,112.5672911,26.86385697,65.30844879,178.2438757,178.8295563,17.508993,0.158160342,1620000000000 ,1620000000000 ,1620000000000 ,1616812577970 -1616812578001 ,112.5672911,26.86385539,65.3093338,178.2254888,178.8142088,17.513342,0.15819133,1620000000000 ,1620000000000 ,1620000000000 ,1616812577980 -1616812578012 ,112.5672912,26.8638538,65.31018066,178.2040967,178.8028302,17.517786,0.158234027,1620000000000 ,1620000000000 ,1620000000000 ,1616812577990 -1616812578022 ,112.5672912,26.86385222,65.31109619,178.1789616,178.7844852,17.51894,0.158253703,1620000000000 ,1620000000000 ,1620000000000 ,1616812578000 -1616812578032 ,112.5672912,26.86385064,65.31208801,178.1565313,178.7584564,17.52431,0.158297413,1620000000000 ,1620000000000 ,1620000000000 ,1616812578010 -1616812578047 ,112.5672913,26.86384906,65.31309509,178.1343468,178.7386412,17.52674,0.158330691,1620000000000 ,1620000000000 ,1620000000000 ,1616812578020 -1616812578054 ,112.5672913,26.86384747,65.31404114,178.1119438,178.7202846,17.52881,0.158346164,1620000000000 ,1620000000000 ,1620000000000 ,1616812578030 -1616812578066 ,112.5672913,26.86384589,65.31495667,178.0900052,178.6919513,17.528854,0.158346587,1620000000000 ,1620000000000 ,1620000000000 ,1616812578040 -1616812578073 ,112.5672914,26.86384431,65.31589508,178.0662908,178.6648174,17.530733,0.15836269,1620000000000 ,1620000000000 ,1620000000000 ,1616812578050 -1616812578083 ,112.5672914,26.86384272,65.31684875,178.0448713,178.6364643,17.535305,0.158396836,1620000000000 ,1620000000000 ,1620000000000 ,1616812578060 -1616812578095 ,112.5672914,26.86384114,65.31776428,178.025255,178.6083919,17.540007,0.158438282,1620000000000 ,1620000000000 ,1620000000000 ,1616812578070 -1616812578109 ,112.5672915,26.86383956,65.31864929,178.0036443,178.5801704,17.545774,0.158484892,1620000000000 ,1620000000000 ,1620000000000 ,1616812578080 -1616812578114 ,112.5672915,26.86383797,65.3195343,177.9807222,178.554838,17.549963,0.158529183,1620000000000 ,1620000000000 ,1620000000000 ,1616812578100 -1616812578123 ,112.5672916,26.86383639,65.32041931,177.9605595,178.525205,17.553186,0.158560722,1620000000000 ,1620000000000 ,1620000000000 ,1616812578110 -1616812578133 ,112.5672916,26.8638348,65.32130432,177.9397957,178.4931051,17.55421,0.158574459,1620000000000 ,1620000000000 ,1620000000000 ,1616812578110 -1616812578143 ,112.5672917,26.86383163,65.32311249,177.8970934,178.4540953,17.55783,0.317201034,1620000000000 ,1620000000000 ,1620000000000 ,1616812578130 -1616812578152 ,112.5672917,26.86383163,65.32311249,177.8970934,-400,17.55783,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812578140 -1616812578162 ,112.5672917,26.86383004,65.32398987,177.8776956,178.4160919,17.563524,0.158648334,1620000000000 ,1620000000000 ,1620000000000 ,1616812578150 -1616812578172 ,112.5672918,26.86382687,65.32546234,177.8400476,178.3828786,17.576962,0.317445242,1620000000000 ,1620000000000 ,1620000000000 ,1616812578160 -1616812578184 ,112.5672919,26.86382528,65.3259964,177.8197756,178.3516144,17.57607,0.158755229,1620000000000 ,1620000000000 ,1620000000000 ,1616812578170 -1616812578194 ,112.5672919,26.8638237,65.32653809,177.7997768,178.3365733,17.580626,0.15880161,1620000000000 ,1620000000000 ,1620000000000 ,1616812578180 -1616812578206 ,112.5672919,26.8638237,65.32653809,177.7997768,-400,17.580626,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812578180 -1616812578216 ,112.567292,26.86382052,65.32820892,177.766145,178.3054224,17.580896,0.317686794,1620000000000 ,1620000000000 ,1620000000000 ,1616812578200 -1616812578223 ,112.5672921,26.86381893,65.32956696,177.7437419,178.2938249,17.579409,0.158827562,1620000000000 ,1620000000000 ,1620000000000 ,1616812578210 -1616812578235 ,112.5672921,26.86381735,65.33101654,177.7218307,178.274491,17.579447,0.158831057,1620000000000 ,1620000000000 ,1620000000000 ,1616812578220 -1616812578244 ,112.5672922,26.86381576,65.3324585,177.70022,178.2409548,17.586267,0.158873318,1620000000000 ,1620000000000 ,1620000000000 ,1616812578230 -1616812578254 ,112.5672922,26.86381417,65.33383942,177.6807676,178.2184627,17.595778,0.158953067,1620000000000 ,1620000000000 ,1620000000000 ,1616812578240 -1616812578263 ,112.5672923,26.86381258,65.33509064,177.6630911,178.1938605,17.603743,0.15902935,1620000000000 ,1620000000000 ,1620000000000 ,1616812578250 -1616812578275 ,112.5672923,26.86381099,65.33629608,177.644349,178.1782461,17.604748,0.159052465,1620000000000 ,1620000000000 ,1620000000000 ,1616812578260 -1616812578284 ,112.5672924,26.8638094,65.33760834,177.6223831,178.1489294,17.604425,0.159056401,1620000000000 ,1620000000000 ,1620000000000 ,1616812578270 -1616812578294 ,112.5672924,26.86380781,65.33911133,177.5990785,178.1246562,17.601593,0.159042849,1620000000000 ,1620000000000 ,1620000000000 ,1616812578280 -1616812578303 ,112.5672925,26.86380622,65.34072876,177.5747904,178.1054189,17.602388,0.159044951,1620000000000 ,1620000000000 ,1620000000000 ,1616812578290 -1616812578315 ,112.5672925,26.86380463,65.34233856,177.5528518,178.0790004,17.60708,0.159075998,1620000000000 ,1620000000000 ,1620000000000 ,1616812578300 -1616812578326 ,112.5672926,26.86380304,65.34382629,177.5330716,178.0632957,17.617306,0.159157862,1620000000000 ,1620000000000 ,1620000000000 ,1616812578310 -1616812578334 ,112.5672926,26.86380145,65.34516907,177.5165699,178.0463645,17.62662,0.159241531,1620000000000 ,1620000000000 ,1620000000000 ,1616812578320 -1616812578344 ,112.5672927,26.86379986,65.34643555,177.4942488,178.0213755,17.630646,0.159292343,1620000000000 ,1620000000000 ,1620000000000 ,1616812578330 -1616812578354 ,112.5672927,26.86379826,65.34774017,177.4710535,177.9939602,17.63013,0.159295628,1620000000000 ,1620000000000 ,1620000000000 ,1616812578340 -1616812578364 ,112.5672928,26.86379667,65.34912109,177.4481587,177.9783564,17.630123,0.159300391,1620000000000 ,1620000000000 ,1620000000000 ,1616812578350 -1616812578374 ,112.5672929,26.86379508,65.35056305,177.4274769,177.9673965,17.632103,0.159317288,1620000000000 ,1620000000000 ,1620000000000 ,1616812578360 -1616812578385 ,112.5672929,26.86379349,65.35207367,177.4046367,177.9470319,17.632826,0.159327334,1620000000000 ,1620000000000 ,1620000000000 ,1616812578370 -1616812578394 ,112.567293,26.8637919,65.35365295,177.3812775,177.9138879,17.634636,0.15934896,1620000000000 ,1620000000000 ,1620000000000 ,1616812578380 -1616812578408 ,112.567293,26.8637903,65.3552475,177.3592296,177.8743001,17.640131,0.159389581,1620000000000 ,1620000000000 ,1620000000000 ,1616812578390 -1616812578417 ,112.5672931,26.86378871,65.35669708,177.3386298,177.8311571,17.64764,0.159447219,1620000000000 ,1620000000000 ,1620000000000 ,1616812578400 -1616812578430 ,112.5672931,26.86378712,65.35791779,177.319232,177.8048386,17.655682,0.159515872,1620000000000 ,1620000000000 ,1620000000000 ,1616812578410 -1616812578439 ,112.5672932,26.86378552,65.3589859,177.3003807,177.7937797,17.662182,0.159568153,1620000000000 ,1620000000000 ,1620000000000 ,1616812578420 -1616812578444 ,112.5672933,26.86378393,65.36004639,177.2804092,177.7773075,17.66313,0.159600163,1620000000000 ,1620000000000 ,1620000000000 ,1616812578430 -1616812578455 ,112.5672933,26.86378233,65.36113739,177.2613667,177.7611941,17.66635,0.159615553,1620000000000 ,1620000000000 ,1620000000000 ,1616812578440 -1616812578467 ,112.5672934,26.86378074,65.36215973,177.2392369,177.7179761,17.668344,0.159627718,1620000000000 ,1620000000000 ,1620000000000 ,1616812578450 -1616812578475 ,112.5672935,26.86377914,65.36300659,177.2143203,177.6738594,17.669733,0.159630496,1620000000000 ,1620000000000 ,1620000000000 ,1616812578460 -1616812578485 ,112.5672935,26.86377755,65.36373901,177.1841582,177.6626116,17.674358,0.159666686,1620000000000 ,1620000000000 ,1620000000000 ,1616812578470 -1616812578496 ,112.5672936,26.86377595,65.3642807,177.1626841,177.6603406,17.68341,0.159723614,1620000000000 ,1620000000000 ,1620000000000 ,1616812578480 -1616812578505 ,112.5672937,26.86377435,65.3645401,177.1438874,177.6453955,17.692696,0.159795668,1620000000000 ,1620000000000 ,1620000000000 ,1616812578490 -1616812578515 ,112.5672937,26.86377276,65.36468506,177.1287517,177.6039343,17.699242,0.159857402,1620000000000 ,1620000000000 ,1620000000000 ,1616812578500 -1616812578526 ,112.5672938,26.86377116,65.36494446,177.108671,177.5407929,17.701803,0.15988922,1620000000000 ,1620000000000 ,1620000000000 ,1616812578510 -1616812578539 ,112.5672939,26.86376956,65.36545563,177.0875247,177.4956857,17.70345,0.159915041,1620000000000 ,1620000000000 ,1620000000000 ,1616812578520 -1616812578550 ,112.5672939,26.86376796,65.36612701,177.0654768,177.4780186,17.704576,0.159923817,1620000000000 ,1620000000000 ,1620000000000 ,1616812578530 -1616812578557 ,112.567294,26.86376637,65.36686707,177.0430192,177.474271,17.706448,0.159939951,1620000000000 ,1620000000000 ,1620000000000 ,1616812578540 -1616812578573 ,112.5672941,26.86376477,65.36768341,177.0203976,177.4657767,17.71016,0.159972399,1620000000000 ,1620000000000 ,1620000000000 ,1616812578550 -1616812578576 ,112.5672941,26.86376317,65.36863708,176.9991967,177.426314,17.714378,0.160010872,1620000000000 ,1620000000000 ,1620000000000 ,1616812578560 -1616812578588 ,112.5672942,26.86376157,65.36966705,176.9808918,177.3747295,17.721111,0.160063287,1620000000000 ,1620000000000 ,1620000000000 ,1616812578570 -1616812578596 ,112.5672943,26.86375997,65.3707428,176.9664118,177.338186,17.726164,0.160117105,1620000000000 ,1620000000000 ,1620000000000 ,1616812578580 -1616812578608 ,112.5672944,26.86375837,65.37187958,176.9494183,177.3142068,17.72953,0.160154074,1620000000000 ,1620000000000 ,1620000000000 ,1616812578590 -1616812578617 ,112.5672944,26.86375677,65.37322235,176.9313319,177.3126233,17.729548,0.160166496,1620000000000 ,1620000000000 ,1620000000000 ,1616812578600 -1616812578628 ,112.5672945,26.86375517,65.37474823,176.914475,177.2938256,17.728321,0.160157215,1620000000000 ,1620000000000 ,1620000000000 ,1616812578610 -1616812578638 ,112.5672946,26.86375357,65.37636566,176.8984377,177.262401,17.731846,0.16018253,1620000000000 ,1620000000000 ,1620000000000 ,1616812578620 -1616812578648 ,112.5672947,26.86375197,65.37799835,176.8813896,177.2322986,17.738129,0.160231138,1620000000000 ,1620000000000 ,1620000000000 ,1616812578630 -1616812578657 ,112.5672948,26.86375037,65.37966919,176.8627022,177.2076068,17.744806,0.160291348,1620000000000 ,1620000000000 ,1620000000000 ,1616812578640 -1616812578669 ,112.5672948,26.86374877,65.38144684,176.8452169,177.1830682,17.747356,0.160330701,1620000000000 ,1620000000000 ,1620000000000 ,1616812578650 -1616812578677 ,112.5672949,26.86374717,65.38334656,176.8262836,177.1668178,17.749306,0.160350215,1620000000000 ,1620000000000 ,1620000000000 ,1616812578660 -1616812578686 ,112.567295,26.86374557,65.38537598,176.8081426,177.1580929,17.751507,0.160371041,1620000000000 ,1620000000000 ,1620000000000 ,1616812578670 -1616812578697 ,112.5672951,26.86374396,65.38746643,176.7907666,177.1427525,17.756977,0.16041536,1620000000000 ,1620000000000 ,1620000000000 ,1616812578680 -1616812578707 ,112.5672951,26.86374236,65.38954163,176.7728442,177.1228099,17.764034,0.160474526,1620000000000 ,1620000000000 ,1620000000000 ,1616812578690 -1616812578718 ,112.5672952,26.86374076,65.39156342,176.7556595,177.1000812,17.769793,0.16052686,1620000000000 ,1620000000000 ,1620000000000 ,1616812578700 -1616812578727 ,112.5672953,26.86373915,65.39354706,176.7390484,177.0834748,17.771477,0.160554705,1620000000000 ,1620000000000 ,1620000000000 ,1616812578710 -1616812578738 ,112.5672954,26.86373755,65.39556885,176.7227926,177.070707,17.776224,0.160585995,1620000000000 ,1620000000000 ,1620000000000 ,1616812578720 -1616812578750 ,112.5672955,26.86373595,65.39763641,176.7061542,177.0666414,17.779596,0.160624487,1620000000000 ,1620000000000 ,1620000000000 ,1616812578730 -1616812578757 ,112.5672956,26.86373434,65.39974213,176.6890515,177.0463367,17.784306,0.160664396,1620000000000 ,1620000000000 ,1620000000000 ,1616812578740 -1616812578767 ,112.5672956,26.86373274,65.40192413,176.6698996,177.0269887,17.787975,0.160702318,1620000000000 ,1620000000000 ,1620000000000 ,1616812578750 -1616812578778 ,112.5672957,26.86373113,65.40418243,176.6511302,177.0112484,17.793749,0.160750275,1620000000000 ,1620000000000 ,1620000000000 ,1616812578760 -1616812578792 ,112.5672958,26.86372953,65.40646362,176.6333991,176.9869584,17.799484,0.160810358,1620000000000 ,1620000000000 ,1620000000000 ,1616812578770 -1616812578805 ,112.5672959,26.86372792,65.40883636,176.6114605,176.9632529,17.80167,0.160845862,1620000000000 ,1620000000000 ,1620000000000 ,1616812578780 -1616812578811 ,112.567296,26.86372631,65.41136932,176.591489,176.9371371,17.803055,0.160865689,1620000000000 ,1620000000000 ,1620000000000 ,1616812578790 -1616812578819 ,112.5672961,26.86372471,65.41403198,176.5719001,176.9168779,17.804033,0.16087952,1620000000000 ,1620000000000 ,1620000000000 ,1616812578800 -1616812578832 ,112.5672962,26.8637231,65.41674805,176.5547973,176.9039359,17.8055,0.160898899,1620000000000 ,1620000000000 ,1620000000000 ,1616812578810 -1616812578842 ,112.5672962,26.86372149,65.41947937,176.5334324,176.8884039,17.804796,0.160906703,1620000000000 ,1620000000000 ,1620000000000 ,1616812578820 -1616812578853 ,112.5672963,26.86371989,65.42219543,176.5147723,176.8657161,17.805132,0.160907557,1620000000000 ,1620000000000 ,1620000000000 ,1616812578830 -1616812578860 ,112.5672964,26.86371828,65.42484283,176.4959483,176.8408299,17.807253,0.160924803,1620000000000 ,1620000000000 ,1620000000000 ,1616812578840 -1616812578871 ,112.5672965,26.86371667,65.42738342,176.4767419,176.8233747,17.809008,0.16094821,1620000000000 ,1620000000000 ,1620000000000 ,1616812578850 -1616812578879 ,112.5672966,26.86371507,65.4298172,176.4565791,176.8138353,17.811148,0.160967834,1620000000000 ,1620000000000 ,1620000000000 ,1616812578860 -1616812578893 ,112.5672967,26.86371346,65.43218231,176.4361705,176.7936173,17.810873,0.160970835,1620000000000 ,1620000000000 ,1620000000000 ,1616812578870 -1616812578903 ,112.5672968,26.86371185,65.43444061,176.4160625,176.7756385,17.810581,0.160972051,1620000000000 ,1620000000000 ,1620000000000 ,1616812578880 -1616812578914 ,112.5672969,26.86371024,65.43656921,176.3980308,176.7540128,17.812126,0.160982339,1620000000000 ,1620000000000 ,1620000000000 ,1616812578890 -1616812578922 ,112.567297,26.86370864,65.43849182,176.3793707,176.733329,17.813263,0.160991577,1620000000000 ,1620000000000 ,1620000000000 ,1616812578900 -1616812578931 ,112.5672971,26.86370703,65.44020081,176.360574,176.7126603,17.816082,0.161008996,1620000000000 ,1620000000000 ,1620000000000 ,1616812578910 -1616812578942 ,112.5672971,26.86370542,65.44168091,176.3398375,176.6910056,17.816828,0.161017184,1620000000000 ,1620000000000 ,1620000000000 ,1616812578920 -1616812578951 ,112.5672972,26.86370381,65.44298553,176.3181449,176.6783832,17.81546,0.161006814,1620000000000 ,1620000000000 ,1620000000000 ,1616812578930 -1616812578962 ,112.5672973,26.86370221,65.44413757,176.2969986,176.6606978,17.813631,0.160984087,1620000000000 ,1620000000000 ,1620000000000 ,1616812578940 -1616812578974 ,112.5672974,26.8637006,65.44515228,176.2761255,176.6415196,17.813946,0.160980146,1620000000000 ,1620000000000 ,1620000000000 ,1616812578960 -1616812578983 ,112.5672975,26.86369899,65.44605255,176.2550066,176.6183003,17.815289,0.160986853,1620000000000 ,1620000000000 ,1620000000000 ,1616812578970 -1616812578993 ,112.5672976,26.86369739,65.44682312,176.2358547,176.5983566,17.816895,0.160998749,1620000000000 ,1620000000000 ,1620000000000 ,1616812578980 -1616812579003 ,112.5672977,26.86369578,65.44746399,176.2161018,176.5788017,17.817791,0.161004463,1620000000000 ,1620000000000 ,1620000000000 ,1616812578980 -1616812579014 ,112.5672979,26.86369256,65.44858551,176.1707494,176.5475976,17.815056,0.321975647,1620000000000 ,1620000000000 ,1620000000000 ,1616812579000 -1616812579030 ,112.567298,26.86369096,65.44915009,176.1502861,176.5185627,17.81474,0.160978613,1620000000000 ,1620000000000 ,1620000000000 ,1616812579010 -1616812579033 ,112.5672981,26.86368935,65.44973755,176.1287574,176.495256,17.814602,0.160972039,1620000000000 ,1620000000000 ,1620000000000 ,1616812579020 -1616812579045 ,112.5672982,26.86368774,65.45037842,176.107775,176.4726416,17.811436,0.160954263,1620000000000 ,1620000000000 ,1620000000000 ,1616812579030 -1616812579053 ,112.5672983,26.86368614,65.45105743,176.0888144,176.4488019,17.808216,0.160927783,1620000000000 ,1620000000000 ,1620000000000 ,1616812579040 -1616812579067 ,112.5672984,26.86368453,65.45174408,176.0710013,176.4309773,17.807417,0.160912542,1620000000000 ,1620000000000 ,1620000000000 ,1616812579050 -1616812579075 ,112.5672985,26.86368293,65.45240021,176.0519587,176.4226025,17.809273,0.160922457,1620000000000 ,1620000000000 ,1620000000000 ,1616812579060 -1616812579085 ,112.5672986,26.86368132,65.45308685,176.0301021,176.4122052,17.809036,0.160925248,1620000000000 ,1620000000000 ,1620000000000 ,1616812579070 -1616812579094 ,112.5672987,26.86367971,65.45384216,176.0079996,176.3879972,17.805704,0.160909529,1620000000000 ,1620000000000 ,1620000000000 ,1616812579080 -1616812579103 ,112.5672988,26.86367811,65.45468903,175.9868807,176.363378,17.802544,0.160879257,1620000000000 ,1620000000000 ,1620000000000 ,1616812579090 -1616812579115 ,112.5672989,26.8636765,65.45562744,175.9662808,176.347737,17.799469,0.160853783,1620000000000 ,1620000000000 ,1620000000000 ,1616812579100 -1616812579123 ,112.567299,26.8636749,65.45668793,175.947129,176.326786,17.796719,0.16083317,1620000000000 ,1620000000000 ,1620000000000 ,1616812579110 -1616812579134 ,112.5672991,26.86367329,65.45786285,175.9276766,176.3138956,17.794386,0.160816482,1620000000000 ,1620000000000 ,1620000000000 ,1616812579120 -1616812579144 ,112.5672992,26.86367169,65.45913696,175.9050823,176.2975255,17.793062,0.160804481,1620000000000 ,1620000000000 ,1620000000000 ,1616812579130 -1616812579155 ,112.5672993,26.86367008,65.46050262,175.8821056,176.2805116,17.791534,0.160795103,1620000000000 ,1620000000000 ,1620000000000 ,1616812579140 -1616812579167 ,112.5672994,26.86366848,65.46198273,175.8590742,176.2631534,17.789352,0.160784684,1620000000000 ,1620000000000 ,1620000000000 ,1616812579150 -1616812579178 ,112.5672995,26.86366688,65.46353912,175.8370537,176.23912,17.785645,0.160758763,1620000000000 ,1620000000000 ,1620000000000 ,1616812579160 -1616812579186 ,112.5672996,26.86366527,65.46513367,175.8178745,176.2113192,17.781202,0.16072469,1620000000000 ,1620000000000 ,1620000000000 ,1616812579170 -1616812579195 ,112.5672997,26.86366367,65.46670532,175.7999794,176.1934457,17.77966,0.160702787,1620000000000 ,1620000000000 ,1620000000000 ,1616812579180 -1616812579204 ,112.5672999,26.86366207,65.46826172,175.7801445,176.1828296,17.777388,0.160688409,1620000000000 ,1620000000000 ,1620000000000 ,1616812579190 -1616812579226 ,112.5673,26.86366046,65.46959686,175.7699539,176.1188271,17.802914,0.161106618,1620000000000 ,1620000000000 ,1620000000000 ,1616812579200 -1616812579233 ,112.5673001,26.86365884,65.47068787,175.7471684,176.021218,17.796862,0.161767223,1620000000000 ,1620000000000 ,1620000000000 ,1616812579210 -1616812579244 ,112.5673002,26.86365723,65.47180939,175.7267324,176.0124291,17.794355,0.161738849,1620000000000 ,1620000000000 ,1620000000000 ,1616812579220 -1616812579254 ,112.5673003,26.86365562,65.47290802,175.7063785,175.994368,17.793825,0.161725125,1620000000000 ,1620000000000 ,1620000000000 ,1616812579230 -1616812579270 ,112.5673004,26.863654,65.47398376,175.6857513,175.9759567,17.793356,0.1617195,1620000000000 ,1620000000000 ,1620000000000 ,1616812579240 -1616812579277 ,112.5673005,26.86365239,65.47504425,175.6638947,175.9401315,17.792091,0.161714594,1620000000000 ,1620000000000 ,1620000000000 ,1616812579250 -1616812579281 ,112.5673006,26.86365078,65.47607422,175.6431309,175.9129394,17.787815,0.161683318,1620000000000 ,1620000000000 ,1620000000000 ,1616812579260 -1616812579287 ,112.5673008,26.86364917,65.47705841,175.6231048,175.8917994,17.783571,0.161639673,1620000000000 ,1620000000000 ,1620000000000 ,1616812579270 -1616812579296 ,112.5673009,26.86364755,65.47801971,175.6051004,175.8730871,17.78079,0.161608793,1620000000000 ,1620000000000 ,1620000000000 ,1616812579280 -1616812579308 ,112.567301,26.86364594,65.47899628,175.5876152,175.8451371,17.780256,0.161597594,1620000000000 ,1620000000000 ,1620000000000 ,1616812579290 -1616812579316 ,112.5673011,26.86364433,65.47999573,175.5697747,175.8185128,17.77982,0.161595955,1620000000000 ,1620000000000 ,1620000000000 ,1616812579300 -1616812579325 ,112.5673012,26.86364272,65.48096466,175.5534642,175.7947446,17.77767,0.161578071,1620000000000 ,1620000000000 ,1620000000000 ,1616812579310 -1616812579337 ,112.5673013,26.86364111,65.48190308,175.5345582,175.7765647,17.775305,0.161552437,1620000000000 ,1620000000000 ,1620000000000 ,1616812579320 -1616812579348 ,112.5673015,26.8636395,65.48290253,175.5143409,175.7674201,17.772772,0.161527914,1620000000000 ,1620000000000 ,1620000000000 ,1616812579330 -1616812579356 ,112.5673016,26.86363789,65.48401642,175.4949431,175.7572736,17.769875,0.161509012,1620000000000 ,1620000000000 ,1620000000000 ,1616812579340 -1616812579367 ,112.5673017,26.86363628,65.48529816,175.4755454,175.7420209,17.764746,0.161471996,1620000000000 ,1620000000000 ,1620000000000 ,1616812579350 -1616812579375 ,112.5673018,26.86363467,65.48677826,175.4539074,175.7174516,17.758324,0.161421944,1620000000000 ,1620000000000 ,1620000000000 ,1616812579360 -1616812579386 ,112.5673019,26.86363306,65.48836517,175.4340998,175.6934796,17.753765,0.16137776,1620000000000 ,1620000000000 ,1620000000000 ,1616812579370 -1616812579399 ,112.5673021,26.86363145,65.48997498,175.4157676,175.6730519,17.751278,0.161351793,1620000000000 ,1620000000000 ,1620000000000 ,1616812579380 -1616812579405 ,112.5673022,26.86362984,65.491539,175.3978998,175.6560415,17.75052,0.161341049,1620000000000 ,1620000000000 ,1620000000000 ,1616812579390 -1616812579419 ,112.5673023,26.86362823,65.49315643,175.3786387,175.6405372,17.747887,0.161323723,1620000000000 ,1620000000000 ,1620000000000 ,1616812579400 -1616812579426 ,112.5673024,26.86362662,65.49493408,175.3588585,175.6205389,17.745247,0.161302809,1620000000000 ,1620000000000 ,1620000000000 ,1616812579410 -1616812579437 ,112.5673026,26.86362501,65.49687195,175.3401164,175.597313,17.739513,0.161264971,1620000000000 ,1620000000000 ,1620000000000 ,1616812579420 -1616812579447 ,112.5673027,26.86362341,65.49890137,175.321429,175.5803973,17.734735,0.161222203,1620000000000 ,1620000000000 ,1620000000000 ,1616812579430 -1616812579457 ,112.5673028,26.8636218,65.50096893,175.3016488,175.5671989,17.730045,0.161179991,1620000000000 ,1620000000000 ,1620000000000 ,1616812579440 -1616812579468 ,112.5673029,26.8636202,65.50322723,175.2800381,175.5811362,17.728012,0.160709354,1620000000000 ,1620000000000 ,1620000000000 ,1616812579450 -1616812579477 ,112.5673031,26.8636186,65.50563812,175.2603671,175.5983867,17.726278,0.160245864,1620000000000 ,1620000000000 ,1620000000000 ,1616812579460 -1616812579487 ,112.5673032,26.863617,65.50801849,175.2420076,175.5787853,17.724789,0.160235948,1620000000000 ,1620000000000 ,1620000000000 ,1616812579470 -1616812579498 ,112.5673033,26.86361541,65.51042175,175.2215717,175.5436082,17.721638,0.160212966,1620000000000 ,1620000000000 ,1620000000000 ,1616812579480 -1616812579510 ,112.5673034,26.86361381,65.51282501,175.2002888,175.5169063,17.716412,0.160171712,1620000000000 ,1620000000000 ,1620000000000 ,1616812579490 -1616812579518 ,112.5673036,26.86361221,65.51513672,175.1806998,175.5015085,17.71251,0.160133027,1620000000000 ,1620000000000 ,1620000000000 ,1616812579500 -1616812579528 ,112.5673037,26.86361062,65.51728821,175.1642527,175.4825458,17.71144,0.160109615,1620000000000 ,1620000000000 ,1620000000000 ,1616812579510 -1616812579538 ,112.5673038,26.86360902,65.51926422,175.145538,175.462061,17.711922,0.160107066,1620000000000 ,1620000000000 ,1620000000000 ,1616812579520 -1616812579548 ,112.5673039,26.86360742,65.52120209,175.125266,175.4343797,17.7099,0.160098243,1620000000000 ,1620000000000 ,1620000000000 ,1616812579530 -1616812579559 ,112.5673041,26.86360583,65.52323914,175.102098,175.3949031,17.705204,0.160063847,1620000000000 ,1620000000000 ,1620000000000 ,1616812579540 -1616812579567 ,112.5673042,26.86360423,65.52542877,175.0823178,175.3653111,17.698212,0.160012695,1620000000000 ,1620000000000 ,1620000000000 ,1616812579550 -1616812579577 ,112.5673043,26.86360264,65.52767944,175.0612261,175.3531967,17.69325,0.159961817,1620000000000 ,1620000000000 ,1620000000000 ,1616812579560 -1616812579589 ,112.5673045,26.86360105,65.5298996,175.0413366,175.3434896,17.690647,0.159933008,1620000000000 ,1620000000000 ,1620000000000 ,1616812579570 -1616812579598 ,112.5673046,26.86359945,65.53202057,175.023824,175.3226796,17.690004,0.159924759,1620000000000 ,1620000000000 ,1620000000000 ,1616812579580 -1616812579608 ,112.5673047,26.86359786,65.5340271,175.0071584,175.297476,17.690649,0.159927365,1620000000000 ,1620000000000 ,1620000000000 ,1616812579590 -1616812579618 ,112.5673048,26.86359626,65.5358963,174.9905747,175.2736237,17.690968,0.159928165,1620000000000 ,1620000000000 ,1620000000000 ,1616812579600 -1616812579629 ,112.567305,26.86359467,65.53770447,174.9694284,175.2571476,17.687021,0.159900554,1620000000000 ,1620000000000 ,1620000000000 ,1616812579610 -1616812579640 ,112.5673051,26.86359308,65.53948975,174.9511235,175.2427704,17.682617,0.159864576,1620000000000 ,1620000000000 ,1620000000000 ,1616812579620 -1616812579651 ,112.5673052,26.86359148,65.54123688,174.9312067,175.2262688,17.678858,0.159827634,1620000000000 ,1620000000000 ,1620000000000 ,1616812579630 -1616812579659 ,112.5673054,26.86358989,65.54291534,174.9097325,175.2026988,17.674313,0.159785708,1620000000000 ,1620000000000 ,1620000000000 ,1616812579640 -1616812579669 ,112.5673055,26.8635883,65.54453278,174.8894605,175.1674369,17.670984,0.159751413,1620000000000 ,1620000000000 ,1620000000000 ,1616812579650 -1616812579679 ,112.5673056,26.86358671,65.54615021,174.8680684,175.135691,17.66881,0.159730414,1620000000000 ,1620000000000 ,1620000000000 ,1616812579660 -1616812579691 ,112.5673058,26.86358512,65.54776764,174.8482882,175.1002623,17.669477,0.159736267,1620000000000 ,1620000000000 ,1620000000000 ,1616812579670 -1616812579700 ,112.5673059,26.86358353,65.54943085,174.8286719,175.0807824,17.666895,0.15972286,1620000000000 ,1620000000000 ,1620000000000 ,1616812579680 -1616812579711 ,112.5673061,26.86358193,65.55117798,174.8088097,175.0653207,17.66515,0.159710724,1620000000000 ,1620000000000 ,1620000000000 ,1616812579690 -1616812579721 ,112.5673062,26.86358034,65.55297852,174.7895758,175.0393923,17.660292,0.159680776,1620000000000 ,1620000000000 ,1620000000000 ,1616812579700 -1616812579730 ,112.5673063,26.86357875,65.55480194,174.7673094,175.0183768,17.654608,0.159633916,1620000000000 ,1620000000000 ,1620000000000 ,1616812579710 -1616812579740 ,112.5673065,26.86357716,65.55660248,174.7475019,174.9972799,17.650654,0.159597247,1620000000000 ,1620000000000 ,1620000000000 ,1616812579720 -1616812579750 ,112.5673066,26.86357557,65.55834198,174.7299893,174.9684619,17.647049,0.159565437,1620000000000 ,1620000000000 ,1620000000000 ,1616812579730 -1616812579761 ,112.5673068,26.86357399,65.56000519,174.7130504,174.9432632,17.643314,0.159532896,1620000000000 ,1620000000000 ,1620000000000 ,1616812579740 -1616812579772 ,112.5673069,26.8635724,65.56161499,174.696658,174.9230806,17.641077,0.159516196,1620000000000 ,1620000000000 ,1620000000000 ,1616812579750 -1616812579782 ,112.567307,26.86357081,65.56318665,174.6817135,174.8965335,17.638048,0.159490526,1620000000000 ,1620000000000 ,1620000000000 ,1616812579760 -1616812579794 ,112.5673072,26.86356922,65.56467438,174.6654303,174.86734,17.634869,0.159463164,1620000000000 ,1620000000000 ,1620000000000 ,1616812579770 -1616812579802 ,112.5673073,26.86356763,65.56607056,174.6473167,174.8443328,17.6304,0.159427273,1620000000000 ,1620000000000 ,1620000000000 ,1616812579780 -1616812579812 ,112.5673075,26.86356604,65.56746674,174.6293669,174.8246781,17.625841,0.159391695,1620000000000 ,1620000000000 ,1620000000000 ,1616812579790 -1616812579823 ,112.5673076,26.86356446,65.56893158,174.6092589,174.7969759,17.619385,0.159355443,1620000000000 ,1620000000000 ,1620000000000 ,1616812579800 -1616812579833 ,112.5673078,26.86356287,65.57043457,174.5924293,174.7767106,17.61188,0.159285837,1620000000000 ,1620000000000 ,1620000000000 ,1616812579810 -1616812579842 ,112.5673079,26.86356129,65.57188416,174.5784957,174.7610217,17.606882,0.159240637,1620000000000 ,1620000000000 ,1620000000000 ,1616812579820 -1616812579852 ,112.5673081,26.8635597,65.57316589,174.564808,174.734964,17.603064,0.159202289,1620000000000 ,1620000000000 ,1620000000000 ,1616812579830 -1616812579861 ,112.5673082,26.86355811,65.57420349,174.5489073,174.7118383,17.60243,0.159185986,1620000000000 ,1620000000000 ,1620000000000 ,1616812579840 -1616812579872 ,112.5673083,26.86355653,65.57494354,174.5342087,174.6935608,17.601717,0.159170726,1620000000000 ,1620000000000 ,1620000000000 ,1616812579850 -1616812579883 ,112.5673085,26.86355495,65.57545471,174.5191004,174.6824423,17.600407,0.15915343,1620000000000 ,1620000000000 ,1620000000000 ,1616812579860 -1616812579892 ,112.5673086,26.86355336,65.5758667,174.5055766,174.6689355,17.59837,0.159137301,1620000000000 ,1620000000000 ,1620000000000 ,1616812579870 -1616812579901 ,112.5673088,26.86355178,65.57624054,174.4941565,174.6460119,17.591866,0.159089664,1620000000000 ,1620000000000 ,1620000000000 ,1616812579880 -1616812579912 ,112.5673089,26.86355019,65.57658386,174.4798951,174.6251613,17.58308,0.159013758,1620000000000 ,1620000000000 ,1620000000000 ,1616812579900 -1616812579922 ,112.5673091,26.86354861,65.57688141,174.4657702,174.5984178,17.575205,0.158938023,1620000000000 ,1620000000000 ,1620000000000 ,1616812579910 -1616812579933 ,112.5673092,26.86354703,65.57700348,174.4549239,174.5759524,17.571846,0.158890869,1620000000000 ,1620000000000 ,1620000000000 ,1616812579920 -1616812579942 ,112.5673094,26.86354545,65.57686615,174.4483396,174.5701279,17.570518,0.158862589,1620000000000 ,1620000000000 ,1620000000000 ,1616812579920 -1616812579952 ,112.5673097,26.86354229,65.57643127,174.4255814,174.5493257,17.566442,0.317668122,1620000000000 ,1620000000000 ,1620000000000 ,1616812579940 -1616812579965 ,112.5673098,26.8635407,65.57631683,174.4142706,174.4913078,17.56292,0.158812131,1620000000000 ,1620000000000 ,1620000000000 ,1616812579950 -1616812579973 ,112.56731,26.86353912,65.57615662,174.4055826,174.4796549,17.565945,0.158805372,1620000000000 ,1620000000000 ,1620000000000 ,1616812579960 -1616812579985 ,112.5673101,26.86353754,65.57598877,174.3943811,174.5133077,17.561665,0.158784352,1620000000000 ,1620000000000 ,1620000000000 ,1616812579970 -1616812579995 ,112.5673103,26.86353596,65.57592773,174.3838353,174.5084474,17.552301,0.158720396,1620000000000 ,1620000000000 ,1620000000000 ,1616812579980 -1616812580005 ,112.5673103,26.86353596,65.57592773,174.3838353,-400,17.552301,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812579980 -1616812580014 ,112.5673106,26.86353281,65.5761795,174.3718961,174.4562062,17.532925,0.317173834,1620000000000 ,1620000000000 ,1620000000000 ,1616812580000 -1616812580029 ,112.5673108,26.86353123,65.57629395,174.3680439,174.4219516,17.533041,0.158516105,1620000000000 ,1620000000000 ,1620000000000 ,1616812580010 -1616812580035 ,112.5673109,26.86352965,65.57631683,174.3615142,174.4468962,17.536634,0.158540088,1620000000000 ,1620000000000 ,1620000000000 ,1616812580020 -1616812580048 ,112.5673111,26.86352807,65.57633972,174.3500395,174.4717973,17.540037,0.158574065,1620000000000 ,1620000000000 ,1620000000000 ,1616812580030 -1616812580053 ,112.5673112,26.86352649,65.57647705,174.3421438,174.4865715,17.53779,0.158563922,1620000000000 ,1620000000000 ,1620000000000 ,1616812580040 -1616812580065 ,112.5673114,26.86352492,65.57676697,174.3325269,174.495724,17.528028,0.158497421,1620000000000 ,1620000000000 ,1620000000000 ,1616812580050 -1616812580074 ,112.5673115,26.86352334,65.57726288,174.3202326,174.4790807,17.516794,0.158405383,1620000000000 ,1620000000000 ,1620000000000 ,1616812580060 -1616812580091 ,112.5673117,26.86352176,65.57802582,174.3092769,174.4431927,17.50563,0.15830787,1620000000000 ,1620000000000 ,1620000000000 ,1616812580070 -1616812580098 ,112.5673118,26.86352019,65.57897186,174.2988677,174.4428589,17.499756,0.15824816,1620000000000 ,1620000000000 ,1620000000000 ,1616812580080 -1616812580104 ,112.567312,26.86351861,65.57997131,174.2910267,174.4629916,17.498499,0.158226312,1620000000000 ,1620000000000 ,1620000000000 ,1616812580090 -1616812580114 ,112.5673121,26.86351704,65.58098602,174.2803989,174.4716979,17.498312,0.158228718,1620000000000 ,1620000000000 ,1620000000000 ,1616812580100 -1616812580124 ,112.5673123,26.86351547,65.5821228,174.2629136,174.4555072,17.491648,0.15819101,1620000000000 ,1620000000000 ,1620000000000 ,1616812580110 -1616812580135 ,112.5673124,26.86351389,65.58348083,174.2444175,174.4269663,17.486578,0.158144227,1620000000000 ,1620000000000 ,1620000000000 ,1616812580120 -1616812580144 ,112.5673124,26.86351389,65.58348083,174.2312489,-400,17.483042,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812580130 -1616812580154 ,112.5673127,26.86351074,65.58635712,174.2227794,174.4075494,17.47945,0.316186262,1620000000000 ,1620000000000 ,1620000000000 ,1616812580140 -1616812580168 ,112.5673129,26.86350917,65.58779144,174.2151569,174.3850281,17.471502,0.158021084,1620000000000 ,1620000000000 ,1620000000000 ,1616812580150 -1616812580175 ,112.5673131,26.8635076,65.58942413,174.2102392,174.3300171,17.460258,0.15793471,1620000000000 ,1620000000000 ,1620000000000 ,1616812580160 -1616812580184 ,112.5673132,26.86350603,65.59113312,174.2079443,174.293866,17.454422,0.157868591,1620000000000 ,1620000000000 ,1620000000000 ,1616812580170 -1616812580194 ,112.5673134,26.86350446,65.59272003,174.2059498,174.2757428,17.456993,0.157870584,1620000000000 ,1620000000000 ,1620000000000 ,1616812580180 -1616812580204 ,112.5673135,26.86350289,65.59403229,174.1992563,174.2744111,17.461918,0.157900879,1620000000000 ,1620000000000 ,1620000000000 ,1616812580190 -1616812580215 ,112.5673137,26.86350131,65.59503937,174.1888197,174.2955822,17.491432,0.158341484,1620000000000 ,1620000000000 ,1620000000000 ,1616812580200 -1616812580228 ,112.5673138,26.86349973,65.59584808,174.1812792,174.2949982,17.484753,0.159029976,1620000000000 ,1620000000000 ,1620000000000 ,1616812580210 -1616812580235 ,112.567314,26.86349815,65.59688568,174.1783832,174.2590631,17.475067,0.158964246,1620000000000 ,1620000000000 ,1620000000000 ,1616812580220 -1616812580245 ,112.5673142,26.86349657,65.5981369,174.1757058,174.2274905,17.463978,0.158870631,1620000000000 ,1620000000000 ,1620000000000 ,1616812580230 -1616812580256 ,112.5673143,26.86349499,65.59944153,174.1750227,174.2040227,17.456974,0.158798016,1620000000000 ,1620000000000 ,1620000000000 ,1616812580240 -1616812580265 ,112.5673145,26.86349341,65.60067749,174.177345,174.1889316,17.4543,0.158763721,1620000000000 ,1620000000000 ,1620000000000 ,1616812580250 -1616812580275 ,112.5673146,26.86349183,65.60170746,174.1811426,174.1790677,17.457636,0.158766629,1620000000000 ,1620000000000 ,1620000000000 ,1616812580260 -1616812580285 ,112.5673148,26.86349025,65.60254669,174.1841479,174.1728114,17.458189,0.15877974,1620000000000 ,1620000000000 ,1620000000000 ,1616812580270 -1616812580295 ,112.567315,26.86348867,65.60341644,174.1828365,174.1640506,17.454847,0.158760469,1620000000000 ,1620000000000 ,1620000000000 ,1616812580280 -1616812580306 ,112.5673151,26.86348709,65.60447693,174.1840386,174.152348,17.448608,0.158714473,1620000000000 ,1620000000000 ,1620000000000 ,1616812580290 -1616812580316 ,112.5673153,26.86348551,65.60569763,174.1851041,174.1500723,17.440071,0.158641918,1620000000000 ,1620000000000 ,1620000000000 ,1616812580300 -1616812580326 ,112.5673155,26.86348393,65.60689545,174.1908688,174.1557042,17.432566,0.158573226,1620000000000 ,1620000000000 ,1620000000000 ,1616812580310 -1616812580336 ,112.5673156,26.86348236,65.60796356,174.1976717,174.1693687,17.429407,0.158528786,1620000000000 ,1620000000000 ,1620000000000 ,1616812580320 -1616812580347 ,112.5673158,26.86348078,65.60888672,174.2007043,174.1634595,17.426275,0.158495506,1620000000000 ,1620000000000 ,1620000000000 ,1616812580330 -1616812580357 ,112.5673159,26.8634792,65.60966492,174.2049936,174.1482575,17.42646,0.158482204,1620000000000 ,1620000000000 ,1620000000000 ,1616812580340 -1616812580367 ,112.5673161,26.86347763,65.61035156,174.2041194,174.1560483,17.426384,0.158480924,1620000000000 ,1620000000000 ,1620000000000 ,1616812580350 -1616812580376 ,112.5673163,26.86347605,65.61108398,174.2035729,174.1682749,17.421917,0.158452946,1620000000000 ,1620000000000 ,1620000000000 ,1616812580360 -1616812580387 ,112.5673164,26.86347448,65.61196899,174.2007316,174.1837554,17.41645,0.158403789,1620000000000 ,1620000000000 ,1620000000000 ,1616812580370 -1616812580396 ,112.5673166,26.8634729,65.61300659,174.1997754,174.1958067,17.412018,0.158362235,1620000000000 ,1620000000000 ,1620000000000 ,1616812580380 -1616812580406 ,112.5673167,26.86347132,65.61404419,174.2007862,174.1967342,17.408955,0.158337074,1620000000000 ,1620000000000 ,1620000000000 ,1616812580390 -1616812580417 ,112.5673169,26.86346975,65.61502075,174.2024801,174.1974618,17.402536,0.158283906,1620000000000 ,1620000000000 ,1620000000000 ,1616812580400 -1616812580443 ,112.5673171,26.86346818,65.61599731,174.2041467,174.2023663,17.396008,0.158227501,1620000000000 ,1620000000000 ,1620000000000 ,1616812580410 -1616812580455 ,112.5673172,26.8634666,65.61702728,174.2062504,174.2194804,17.388603,0.158157069,1620000000000 ,1620000000000 ,1620000000000 ,1616812580420 -1616812580459 ,112.5673174,26.86346503,65.61812592,174.2081628,174.2452817,17.384943,0.158123246,1620000000000 ,1620000000000 ,1620000000000 ,1616812580430 -1616812580468 ,112.5673175,26.86346346,65.61924744,174.2097747,174.263817,17.383482,0.158100639,1620000000000 ,1620000000000 ,1620000000000 ,1616812580440 -1616812580471 ,112.5673177,26.86346189,65.62049103,174.2088732,174.2527198,17.382526,0.157640108,1620000000000 ,1620000000000 ,1620000000000 ,1616812580450 -1616812580479 ,112.5673179,26.86346032,65.62186432,174.205622,174.2386793,17.378609,0.157160551,1620000000000 ,1620000000000 ,1620000000000 ,1616812580460 -1616812580488 ,112.567318,26.86345876,65.62325287,174.2040647,174.2513152,17.375992,0.157136899,1620000000000 ,1620000000000 ,1620000000000 ,1616812580470 -1616812580502 ,112.5673182,26.8634572,65.62469482,174.2054034,174.2547639,17.36901,0.157079011,1620000000000 ,1620000000000 ,1620000000000 ,1616812580480 -1616812580518 ,112.5673183,26.86345564,65.62621307,174.2063323,174.2538338,17.358469,0.157002743,1620000000000 ,1620000000000 ,1620000000000 ,1616812580490 -1616812580522 ,112.5673185,26.86345407,65.62780762,174.2108676,174.2555922,17.347841,0.156908974,1620000000000 ,1620000000000 ,1620000000000 ,1616812580500 -1616812580530 ,112.5673186,26.86345251,65.62936401,174.2155121,174.2572003,17.34458,0.156858392,1620000000000 ,1620000000000 ,1620000000000 ,1616812580510 -1616812580541 ,112.5673188,26.86345095,65.63072205,174.2181895,174.2674607,17.344755,0.15684272,1620000000000 ,1620000000000 ,1620000000000 ,1616812580520 -1616812580550 ,112.567319,26.86344939,65.63182068,174.2211402,174.288206,17.345745,0.15684451,1620000000000 ,1620000000000 ,1620000000000 ,1616812580530 -1616812580562 ,112.5673191,26.86344783,65.63272858,174.2233532,174.3106063,17.346157,0.156840806,1620000000000 ,1620000000000 ,1620000000000 ,1616812580540 -1616812580573 ,112.5673193,26.86344627,65.6335907,174.2275879,174.3250088,17.340027,0.156798091,1620000000000 ,1620000000000 ,1620000000000 ,1616812580550 -1616812580578 ,112.5673194,26.86344471,65.634552,174.2317406,174.3190648,17.330591,0.156726118,1620000000000 ,1620000000000 ,1620000000000 ,1616812580560 -1616812580589 ,112.5673196,26.86344315,65.63564301,174.2387894,174.3103541,17.323465,0.156651574,1620000000000 ,1620000000000 ,1620000000000 ,1616812580570 -1616812580599 ,112.5673197,26.86344159,65.63677979,174.246931,174.3243358,17.31991,0.156610088,1620000000000 ,1620000000000 ,1620000000000 ,1616812580580 -1616812580608 ,112.5673199,26.86344004,65.63784027,174.257668,174.3364592,17.316763,0.156580532,1620000000000 ,1620000000000 ,1620000000000 ,1616812580590 -1616812580619 ,112.56732,26.86343848,65.63879395,174.2660555,174.3479733,17.312347,0.156535261,1620000000000 ,1620000000000 ,1620000000000 ,1616812580600 -1616812580632 ,112.5673202,26.86343692,65.63976288,174.2705908,174.3487604,17.30846,0.156503409,1620000000000 ,1620000000000 ,1620000000000 ,1616812580610 -1616812580641 ,112.5673203,26.86343536,65.64080811,174.2763554,174.3449839,17.305653,0.156468211,1620000000000 ,1620000000000 ,1620000000000 ,1616812580620 -1616812580654 ,112.5673205,26.86343381,65.64191437,174.2832403,174.3551754,17.304867,0.156453051,1620000000000 ,1620000000000 ,1620000000000 ,1616812580630 -1616812580661 ,112.5673207,26.86343225,65.64299774,174.2918463,174.3699844,17.301403,0.156430367,1620000000000 ,1620000000000 ,1620000000000 ,1616812580640 -1616812580673 ,112.5673208,26.86343069,65.64411163,174.2994415,174.3757436,17.294296,0.156374807,1620000000000 ,1620000000000 ,1620000000000 ,1616812580650 -1616812580680 ,112.567321,26.86342914,65.64533234,174.3065995,174.3673936,17.28814,0.156315686,1620000000000 ,1620000000000 ,1620000000000 ,1616812580660 -1616812580690 ,112.5673211,26.86342758,65.64666748,174.3162164,174.3697826,17.282015,0.156257043,1620000000000 ,1620000000000 ,1620000000000 ,1616812580670 -1616812580700 ,112.5673213,26.86342603,65.64807129,174.3270628,174.378459,17.277573,0.156217288,1620000000000 ,1620000000000 ,1620000000000 ,1616812580680 -1616812580710 ,112.5673214,26.86342447,65.64955139,174.3366523,174.3878513,17.27204,0.156169939,1620000000000 ,1620000000000 ,1620000000000 ,1616812580690 -1616812580721 ,112.5673216,26.86342292,65.65120697,174.3470069,174.394685,17.26564,0.156115227,1620000000000 ,1620000000000 ,1620000000000 ,1616812580700 -1616812580732 ,112.5673217,26.86342137,65.65302277,174.3610771,174.3911403,17.262115,0.156085275,1620000000000 ,1620000000000 ,1620000000000 ,1616812580710 -1616812580740 ,112.5673219,26.86341981,65.65492249,174.3760489,174.3821338,17.260437,0.156067586,1620000000000 ,1620000000000 ,1620000000000 ,1616812580720 -1616812580750 ,112.567322,26.86341826,65.65688324,174.3896819,174.3872255,17.254534,0.156024137,1620000000000 ,1620000000000 ,1620000000000 ,1616812580730 -1616812580760 ,112.5673222,26.86341671,65.65897369,174.4045444,174.3981411,17.247242,0.155967227,1620000000000 ,1620000000000 ,1620000000000 ,1616812580740 -1616812580770 ,112.5673223,26.86341516,65.66123962,174.4191883,174.4099428,17.239378,0.155903137,1620000000000 ,1620000000000 ,1620000000000 ,1616812580750 -1616812580780 ,112.5673225,26.86341361,65.66362762,174.4337776,174.4189271,17.232794,0.155843288,1620000000000 ,1620000000000 ,1620000000000 ,1616812580760 -1616812580790 ,112.5673226,26.86341206,65.66604614,174.448886,174.4270562,17.2279,0.155797448,1620000000000 ,1620000000000 ,1620000000000 ,1616812580770 -1616812580801 ,112.5673228,26.86341051,65.66842651,174.4649233,174.434262,17.225138,0.155767702,1620000000000 ,1620000000000 ,1620000000000 ,1616812580780 -1616812580814 ,112.5673229,26.86340896,65.67073822,174.4814797,174.4440668,17.221933,0.155739669,1620000000000 ,1620000000000 ,1620000000000 ,1616812580790 -1616812580820 ,112.5673231,26.86340741,65.67298126,174.4994841,174.4625962,17.220604,0.155719612,1620000000000 ,1620000000000 ,1620000000000 ,1616812580800 -1616812580831 ,112.5673232,26.86340586,65.67517853,174.5169967,174.4834855,17.215178,0.155684622,1620000000000 ,1620000000000 ,1620000000000 ,1616812580810 -1616812580841 ,112.5673234,26.86340431,65.67738342,174.5329247,174.5012458,17.209913,0.155640029,1620000000000 ,1620000000000 ,1620000000000 ,1616812580820 -1616812580851 ,112.5673235,26.86340276,65.67956543,174.5517487,174.5161085,17.203026,0.155578005,1620000000000 ,1620000000000 ,1620000000000 ,1616812580830 -1616812580861 ,112.5673237,26.86340121,65.68167114,174.5693159,174.5420039,17.198149,0.155524612,1620000000000 ,1620000000000 ,1620000000000 ,1616812580840 -1616812580871 ,112.5673238,26.86339966,65.6836853,174.5871017,174.5640947,17.193806,0.155484472,1620000000000 ,1620000000000 ,1620000000000 ,1616812580850 -1616812580882 ,112.567324,26.86339811,65.68563843,174.603904,174.5885481,17.190294,0.155451686,1620000000000 ,1620000000000 ,1620000000000 ,1616812580860 -1616812580894 ,112.5673241,26.86339657,65.68753052,174.6230832,174.6159234,17.186949,0.155415251,1620000000000 ,1620000000000 ,1620000000000 ,1616812580870 -1616812580902 ,112.5673243,26.86339502,65.68933868,174.6394756,174.6426181,17.181963,0.155373779,1620000000000 ,1620000000000 ,1620000000000 ,1616812580880 -1616812580914 ,112.5673244,26.86339347,65.69112396,174.6554036,174.6764907,17.175774,0.155322233,1620000000000 ,1620000000000 ,1620000000000 ,1616812580890 -1616812580925 ,112.5673246,26.86339193,65.69288635,174.6717961,174.7048546,17.16848,0.155255467,1620000000000 ,1620000000000 ,1620000000000 ,1616812580900 -1616812580940 ,112.5673247,26.86339038,65.69461823,174.6843909,174.7242252,17.160217,0.155183149,1620000000000 ,1620000000000 ,1620000000000 ,1616812580910 -1616812580943 ,112.5673248,26.86338884,65.69633484,174.6988983,174.7434912,17.152603,0.15511191,1620000000000 ,1620000000000 ,1620000000000 ,1616812580920 -1616812580952 ,112.567325,26.86338729,65.69801331,174.7163562,174.7671565,17.146868,0.155054686,1620000000000 ,1620000000000 ,1620000000000 ,1616812580930 -1616812580962 ,112.5673251,26.86338575,65.69960022,174.7363823,174.7857685,17.142834,0.155011638,1620000000000 ,1620000000000 ,1620000000000 ,1616812580940 -1616812580973 ,112.5673253,26.86338421,65.70104218,174.7554249,174.8027856,17.136362,0.15495492,1620000000000 ,1620000000000 ,1620000000000 ,1616812580960 -1616812580983 ,112.5673254,26.86338266,65.70237732,174.7710251,174.8160704,17.128294,0.154880425,1620000000000 ,1620000000000 ,1620000000000 ,1616812580970 -1616812580993 ,112.5673255,26.86338112,65.70365906,174.7887289,174.8391952,17.120617,0.15480634,1620000000000 ,1620000000000 ,1620000000000 ,1616812580980 -1616812581002 ,112.5673257,26.86337958,65.70487976,174.8115144,174.862292,17.11176,0.154728873,1620000000000 ,1620000000000 ,1620000000000 ,1616812580980 -1616812581013 ,112.567326,26.8633765,65.70749664,174.8523589,174.8822676,17.090166,0.309180519,1620000000000 ,1620000000000 ,1620000000000 ,1616812581000 -1616812581025 ,112.5673261,26.86337496,65.70896149,174.8755816,174.9076405,17.080332,0.154451366,1620000000000 ,1620000000000 ,1620000000000 ,1616812581010 -1616812581033 ,112.5673262,26.86337343,65.71040344,174.9009899,174.9337794,17.071491,0.154370544,1620000000000 ,1620000000000 ,1620000000000 ,1616812581020 -1616812581043 ,112.5673264,26.86337189,65.71178436,174.9241306,174.9659227,17.059893,0.154269516,1620000000000 ,1620000000000 ,1620000000000 ,1616812581030 -1616812581053 ,112.5673265,26.86337035,65.71316528,174.9438835,174.9930687,17.04739,0.154160388,1620000000000 ,1620000000000 ,1620000000000 ,1616812581040 -1616812581065 ,112.5673266,26.86336882,65.71461487,174.9675159,175.0185323,17.034597,0.154044964,1620000000000 ,1620000000000 ,1620000000000 ,1616812581050 -1616812581074 ,112.5673268,26.86336729,65.7161026,174.992733,175.0361842,17.021244,0.153931436,1620000000000 ,1620000000000 ,1620000000000 ,1616812581060 -1616812581085 ,112.5673269,26.86336575,65.71764374,175.0184145,175.056638,17.00365,0.15378572,1620000000000 ,1620000000000 ,1620000000000 ,1616812581070 -1616812581095 ,112.567327,26.86336422,65.71926117,175.0451615,175.0796829,16.987185,0.153637827,1620000000000 ,1620000000000 ,1620000000000 ,1616812581080 -1616812581105 ,112.5673272,26.86336269,65.7208786,175.0745587,175.1053384,16.97356,0.153506411,1620000000000 ,1620000000000 ,1620000000000 ,1616812581090 -1616812581114 ,112.5673273,26.86336116,65.72241211,175.1026171,175.1396909,16.96103,0.153392822,1620000000000 ,1620000000000 ,1620000000000 ,1616812581100 -1616812581124 ,112.5673274,26.86335964,65.72380066,175.1305935,175.1721056,16.946941,0.153260454,1620000000000 ,1620000000000 ,1620000000000 ,1616812581110 -1616812581135 ,112.5673275,26.86335811,65.72510529,175.1570673,175.2017705,16.930058,0.153116998,1620000000000 ,1620000000000 ,1620000000000 ,1616812581120 -1616812581144 ,112.5673277,26.86335659,65.72642517,175.1820385,175.2205469,16.912533,0.152959805,1620000000000 ,1620000000000 ,1620000000000 ,1616812581130 -1616812581164 ,112.5673278,26.86335506,65.72777557,175.2089495,175.246627,16.893278,0.152792612,1620000000000 ,1620000000000 ,1620000000000 ,1616812581140 -1616812581167 ,112.5673279,26.86335354,65.72915649,175.2385652,175.2821897,16.876328,0.152634746,1620000000000 ,1620000000000 ,1620000000000 ,1616812581150 -1616812581182 ,112.5673281,26.86335202,65.73052216,175.2680989,175.3184765,16.859116,0.152480827,1620000000000 ,1620000000000 ,1620000000000 ,1616812581160 -1616812581188 ,112.5673282,26.86335051,65.73188019,175.2959661,175.3514802,16.840475,0.152316644,1620000000000 ,1620000000000 ,1620000000000 ,1616812581170 -1616812581195 ,112.5673283,26.86334899,65.73321533,175.3227677,175.3747806,16.821932,0.152150221,1620000000000 ,1620000000000 ,1620000000000 ,1616812581180 -1616812581205 ,112.5673284,26.86334747,65.73448181,175.3510994,175.4061181,16.804365,0.151985434,1620000000000 ,1620000000000 ,1620000000000 ,1616812581190 -1616812581215 ,112.5673285,26.86334596,65.73582458,175.3855235,175.2398649,16.77868,0.15170585,1620000000000 ,1620000000000 ,1620000000000 ,1616812581200 -1616812581226 ,112.5673287,26.86334446,65.73724365,175.4106859,174.9417894,16.758614,0.15133492,1620000000000 ,1620000000000 ,1620000000000 ,1616812581210 -1616812581235 ,112.5673288,26.86334295,65.73867035,175.4378154,174.9799062,16.738691,0.151152671,1620000000000 ,1620000000000 ,1620000000000 ,1616812581220 -1616812581244 ,112.5673289,26.86334145,65.74007416,175.4644259,175.0099374,16.718035,0.150968621,1620000000000 ,1620000000000 ,1620000000000 ,1616812581230 -1616812581255 ,112.5673291,26.86333994,65.74143219,175.4912548,175.0430161,16.699177,0.150788613,1620000000000 ,1620000000000 ,1620000000000 ,1616812581240 -1616812581266 ,112.5673292,26.86333844,65.74272919,175.5192586,175.0723853,16.683786,0.150638651,1620000000000 ,1620000000000 ,1620000000000 ,1616812581250 -1616812581275 ,112.5673293,26.86333694,65.74393463,175.5479454,175.1015054,16.666527,0.150483679,1620000000000 ,1620000000000 ,1620000000000 ,1616812581260 -1616812581285 ,112.5673295,26.86333545,65.74507141,175.5747198,175.1303743,16.646568,0.150306907,1620000000000 ,1620000000000 ,1620000000000 ,1616812581270 -1616812581295 ,112.5673296,26.86333395,65.74624634,175.6012755,175.165054,16.627945,0.150132013,1620000000000 ,1620000000000 ,1620000000000 ,1616812581280 -1616812581306 ,112.5673297,26.86333245,65.74745178,175.6275854,175.200193,16.61043,0.149970329,1620000000000 ,1620000000000 ,1620000000000 ,1616812581290 -1616812581315 ,112.5673298,26.86333096,65.74861908,175.6547969,175.2322822,16.593102,0.149809642,1620000000000 ,1620000000000 ,1620000000000 ,1616812581300 -1616812581327 ,112.56733,26.86332947,65.74977112,175.6799866,175.2635218,16.574154,0.149639478,1620000000000 ,1620000000000 ,1620000000000 ,1616812581310 -1616812581335 ,112.5673301,26.86332798,65.75094604,175.7043567,175.2934073,16.554447,0.149463842,1620000000000 ,1620000000000 ,1620000000000 ,1616812581320 -1616812581346 ,112.5673302,26.86332649,65.75215912,175.7312404,175.3280473,16.536213,0.149294423,1620000000000 ,1620000000000 ,1620000000000 ,1616812581330 -1616812581357 ,112.5673303,26.86332501,65.75339508,175.7593261,175.3641115,16.51809,0.149128561,1620000000000 ,1620000000000 ,1620000000000 ,1616812581340 -1616812581368 ,112.5673304,26.86332352,65.75463867,175.7858546,175.401383,16.499681,0.148960972,1620000000000 ,1620000000000 ,1620000000000 ,1616812581350 -1616812581377 ,112.5673306,26.86332204,65.75589752,175.8127655,175.4301096,16.480312,0.148789155,1620000000000 ,1620000000000 ,1620000000000 ,1616812581360 -1616812581387 ,112.5673307,26.86332056,65.757164,175.8378733,175.4673194,16.462473,0.148616056,1620000000000 ,1620000000000 ,1620000000000 ,1616812581370 -1616812581396 ,112.5673308,26.86331908,65.75845337,175.8631723,175.5064921,16.445553,0.148461179,1620000000000 ,1620000000000 ,1620000000000 ,1616812581380 -1616812581413 ,112.5673309,26.8633176,65.75978088,175.8884167,175.5441083,16.425909,0.148294169,1620000000000 ,1620000000000 ,1620000000000 ,1616812581390 -1616812581416 ,112.567331,26.86331612,65.76123047,175.9119125,175.5800663,16.408165,0.148134461,1620000000000 ,1620000000000 ,1620000000000 ,1616812581400 -1616812581427 ,112.5673311,26.86331465,65.76283264,175.9352171,175.6101436,16.386497,0.147949154,1620000000000 ,1620000000000 ,1620000000000 ,1616812581410 -1616812581437 ,112.5673312,26.86331317,65.76451111,175.9596965,175.6433416,16.367317,0.147771367,1620000000000 ,1620000000000 ,1620000000000 ,1616812581420 -1616812581450 ,112.5673314,26.8633117,65.76622772,175.9812799,175.6821698,16.348154,0.14760256,1620000000000 ,1620000000000 ,1620000000000 ,1616812581430 -1616812581457 ,112.5673315,26.86331023,65.76792145,176.0048304,175.7183755,16.328125,0.147420956,1620000000000 ,1620000000000 ,1620000000000 ,1616812581440 -1616812581468 ,112.5673316,26.86330876,65.76950836,176.0276979,175.9543368,16.31194,0.147393616,1620000000000 ,1620000000000 ,1620000000000 ,1616812581450 -1616812581476 ,112.5673317,26.86330729,65.7709198,176.05062,176.1865594,16.293894,0.147364399,1620000000000 ,1620000000000 ,1620000000000 ,1616812581460 -1616812581487 ,112.5673318,26.86330582,65.77224731,176.0752087,176.2197788,16.276747,0.14720324,1620000000000 ,1620000000000 ,1620000000000 ,1616812581470 -1616812581496 ,112.5673319,26.86330435,65.77351379,176.0969833,176.250321,16.258303,0.147037052,1620000000000 ,1620000000000 ,1620000000000 ,1616812581480 -1616812581507 ,112.567332,26.86330289,65.77471924,176.1210802,176.2788545,16.239738,0.146866327,1620000000000 ,1620000000000 ,1620000000000 ,1616812581490 -1616812581517 ,112.5673321,26.86330143,65.77587891,176.1424178,176.301716,16.219496,0.146685389,1620000000000 ,1620000000000 ,1620000000000 ,1616812581500 -1616812581528 ,112.5673322,26.86329996,65.7769928,176.1624712,176.3300487,16.200294,0.14650338,1620000000000 ,1620000000000 ,1620000000000 ,1616812581510 -1616812581541 ,112.5673322,26.8632985,65.77804565,176.1838633,176.3613343,16.180372,0.146328432,1620000000000 ,1620000000000 ,1620000000000 ,1616812581520 -1616812581551 ,112.5673323,26.86329704,65.77905273,176.2051735,176.3813536,16.160109,0.146142918,1620000000000 ,1620000000000 ,1620000000000 ,1616812581530 -1616812581559 ,112.5673324,26.86329559,65.78007507,176.228123,176.4036434,16.140219,0.145961296,1620000000000 ,1620000000000 ,1620000000000 ,1616812581540 -1616812581568 ,112.5673325,26.86329413,65.78110504,176.2515642,176.429144,16.121006,0.145787963,1620000000000 ,1620000000000 ,1620000000000 ,1616812581550 -1616812581579 ,112.5673326,26.86329268,65.78210449,176.2748141,176.4510801,16.101074,0.145608346,1620000000000 ,1620000000000 ,1620000000000 ,1616812581560 -1616812581588 ,112.5673327,26.86329123,65.78304291,176.2954686,176.4815735,16.081066,0.145419998,1620000000000 ,1620000000000 ,1620000000000 ,1616812581570 -1616812581598 ,112.5673328,26.86328978,65.78395844,176.3160685,176.5066371,16.061726,0.145245401,1620000000000 ,1620000000000 ,1620000000000 ,1616812581580 -1616812581608 ,112.5673329,26.86328833,65.7848587,176.3375153,176.5216644,16.039684,0.145049187,1620000000000 ,1620000000000 ,1620000000000 ,1616812581590 -1616812581618 ,112.567333,26.86328688,65.78573608,176.3574321,176.5484861,16.015865,0.144838284,1620000000000 ,1620000000000 ,1620000000000 ,1616812581600 -1616812581630 ,112.567333,26.86328544,65.78662872,176.3779227,176.5792902,15.992613,0.144625967,1620000000000 ,1620000000000 ,1620000000000 ,1616812581610 -1616812581640 ,112.5673331,26.863284,65.78754425,176.3994788,176.6052064,15.968032,0.144405572,1620000000000 ,1620000000000 ,1620000000000 ,1616812581620 -1616812581650 ,112.5673332,26.86328256,65.78846741,176.4206523,176.6295964,15.945467,0.144198642,1620000000000 ,1620000000000 ,1620000000000 ,1616812581630 -1616812581660 ,112.5673333,26.86328112,65.78939819,176.4385474,176.6484749,15.922568,0.143994923,1620000000000 ,1620000000000 ,1620000000000 ,1616812581640 -1616812581669 ,112.5673334,26.86327969,65.79029083,176.4595844,176.6682916,15.901416,0.143792584,1620000000000 ,1620000000000 ,1620000000000 ,1616812581650 -1616812581680 ,112.5673335,26.86327825,65.79110718,176.4788456,176.6946235,15.880448,0.143599614,1620000000000 ,1620000000000 ,1620000000000 ,1616812581660 -1616812581688 ,112.5673335,26.86327682,65.7918396,176.4996913,176.7215766,15.858169,0.143399008,1620000000000 ,1620000000000 ,1620000000000 ,1616812581670 -1616812581699 ,112.5673336,26.86327539,65.79258728,176.5175044,176.7429764,15.834673,0.143189792,1620000000000 ,1620000000000 ,1620000000000 ,1616812581680 -1616812581709 ,112.5673337,26.86327396,65.79335022,176.5372027,176.75763,15.810409,0.142971921,1620000000000 ,1620000000000 ,1620000000000 ,1616812581690 -1616812581720 ,112.5673338,26.86327254,65.79410553,176.5564911,176.7831834,15.787387,0.142759692,1620000000000 ,1620000000000 ,1620000000000 ,1616812581700 -1616812581730 ,112.5673339,26.86327112,65.79483032,176.5742496,176.8154235,15.763797,0.142544793,1620000000000 ,1620000000000 ,1620000000000 ,1616812581710 -1616812581742 ,112.5673339,26.86326969,65.79556274,176.5893307,176.8507642,15.738729,0.142321559,1620000000000 ,1620000000000 ,1620000000000 ,1616812581720 -1616812581750 ,112.567334,26.86326828,65.79637146,176.6057505,176.8743024,15.713777,0.142099709,1620000000000 ,1620000000000 ,1620000000000 ,1616812581730 -1616812581760 ,112.5673341,26.86326686,65.7972641,176.6215965,176.8915887,15.6873455,0.141863081,1620000000000 ,1620000000000 ,1620000000000 ,1616812581740 -1616812581770 ,112.5673342,26.86326545,65.79817963,176.6393823,176.914415,15.662014,0.141632671,1620000000000 ,1620000000000 ,1620000000000 ,1616812581750 -1616812581780 ,112.5673343,26.86326403,65.79905701,176.6546,176.940086,15.639609,0.141423583,1620000000000 ,1620000000000 ,1620000000000 ,1616812581760 -1616812581790 ,112.5673343,26.86326262,65.79991913,176.6703367,176.9647065,15.61553,0.141210473,1620000000000 ,1620000000000 ,1620000000000 ,1616812581770 -1616812581802 ,112.5673344,26.86326121,65.80082703,176.6854724,176.985371,15.590561,0.140986454,1620000000000 ,1620000000000 ,1620000000000 ,1616812581780 -1616812581818 ,112.5673345,26.86325981,65.80182648,176.6979307,177.0081373,15.564862,0.140756652,1620000000000 ,1620000000000 ,1620000000000 ,1616812581790 -1616812581827 ,112.5673346,26.86325841,65.80288696,176.7133669,177.034744,15.538404,0.140524315,1620000000000 ,1620000000000 ,1620000000000 ,1616812581800 -1616812581832 ,112.5673346,26.863257,65.80397034,176.7283933,177.0552587,15.512125,0.140288319,1620000000000 ,1620000000000 ,1620000000000 ,1616812581810 -1616812581843 ,112.5673347,26.86325561,65.80506897,176.7437203,177.0864609,15.486269,0.140056699,1620000000000 ,1620000000000 ,1620000000000 ,1616812581820 -1616812581853 ,112.5673348,26.86325421,65.80621338,176.7578178,177.1099608,15.459728,0.139819799,1620000000000 ,1620000000000 ,1620000000000 ,1616812581830 -1616812581861 ,112.5673348,26.86325282,65.80740356,176.7695111,177.1337158,15.431784,0.139573385,1620000000000 ,1620000000000 ,1620000000000 ,1616812581840 -1616812581871 ,112.5673349,26.86325142,65.80863953,176.782625,177.1623356,15.40532,0.139333242,1620000000000 ,1620000000000 ,1620000000000 ,1616812581850 -1616812581882 ,112.567335,26.86325003,65.80986786,176.7937719,177.1909186,15.380768,0.139108979,1620000000000 ,1620000000000 ,1620000000000 ,1616812581860 -1616812581891 ,112.567335,26.86324865,65.81108856,176.8062848,177.2185677,15.355202,0.138883455,1620000000000 ,1620000000000 ,1620000000000 ,1616812581870 -1616812581902 ,112.5673351,26.86324726,65.81230164,176.8177595,177.2391803,15.328815,0.138648763,1620000000000 ,1620000000000 ,1620000000000 ,1616812581880 -1616812581914 ,112.5673352,26.86324588,65.81352234,176.829043,177.2539498,15.300243,0.138395539,1620000000000 ,1620000000000 ,1620000000000 ,1616812581890 -1616812581922 ,112.5673352,26.8632445,65.8147583,176.8399986,177.2789563,15.271082,0.138138759,1620000000000 ,1620000000000 ,1620000000000 ,1616812581900 -1616812581933 ,112.5673353,26.86324312,65.81595612,176.8530033,177.3023673,15.242653,0.137878034,1620000000000 ,1620000000000 ,1620000000000 ,1616812581920 -1616812581943 ,112.5673354,26.86324175,65.81711578,176.864478,177.3248086,15.215236,0.137628542,1620000000000 ,1620000000000 ,1620000000000 ,1616812581920 -1616812581952 ,112.5673354,26.86324038,65.81824493,176.8759528,177.3395424,15.186295,0.137369309,1620000000000 ,1620000000000 ,1620000000000 ,1616812581940 -1616812581988 ,112.5673355,26.86323901,65.81934357,176.8877007,177.3558923,15.157674,0.137114486,1620000000000 ,1620000000000 ,1620000000000 ,1616812581950 -1616812581990 ,112.5673356,26.86323764,65.82038879,176.8990934,177.3727066,15.129229,0.13685203,1620000000000 ,1620000000000 ,1620000000000 ,1616812581960 -1616812581992 ,112.5673356,26.86323627,65.82137299,176.9097485,177.3905842,15.10016,0.136588861,1620000000000 ,1620000000000 ,1620000000000 ,1616812581970 -1616812582002 ,112.5673357,26.86323355,65.82321167,176.9334083,177.4089068,15.043858,0.272404004,1620000000000 ,1620000000000 ,1620000000000 ,1616812581980 -1616812582009 ,112.5673357,26.86323355,65.82321167,176.9334083,-400,15.043858,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812581980 -1616812582013 ,112.5673359,26.86323084,65.82475281,176.9602373,177.4429559,14.983563,0.271344346,1620000000000 ,1620000000000 ,1620000000000 ,1616812582000 -1616812582024 ,112.5673359,26.86322949,65.82543945,176.9727229,177.4649658,14.951486,0.135242555,1620000000000 ,1620000000000 ,1620000000000 ,1616812582010 -1616812582033 ,112.567336,26.86322814,65.82613373,176.9831321,177.4823115,14.920615,0.134960176,1620000000000 ,1620000000000 ,1620000000000 ,1616812582020 -1616812582045 ,112.567336,26.8632268,65.82684326,176.9953718,177.4918207,14.88979,0.134681677,1620000000000 ,1620000000000 ,1620000000000 ,1616812582030 -1616812582055 ,112.5673361,26.86322546,65.8275528,177.0058903,177.5106873,14.857829,0.134396266,1620000000000 ,1620000000000 ,1620000000000 ,1616812582040 -1616812582074 ,112.5673362,26.86322412,65.82827759,177.0167913,177.5325566,14.825511,0.13410331,1620000000000 ,1620000000000 ,1620000000000 ,1616812582050 -1616812582078 ,112.5673362,26.86322278,65.82899475,177.0297959,177.5536523,14.794327,0.133822209,1620000000000 ,1620000000000 ,1620000000000 ,1616812582060 -1616812582088 ,112.5673363,26.86322144,65.82971191,177.0426913,177.5774529,14.762114,0.133531613,1620000000000 ,1620000000000 ,1620000000000 ,1616812582070 -1616812582094 ,112.5673363,26.86322011,65.83042145,177.055614,177.5909798,14.730232,0.133241507,1620000000000 ,1620000000000 ,1620000000000 ,1616812582080 -1616812582103 ,112.5673364,26.86321878,65.83113098,177.0686734,177.6027433,14.699088,0.132958741,1620000000000 ,1620000000000 ,1620000000000 ,1616812582090 -1616812582114 ,112.5673364,26.86321746,65.83182526,177.0792192,177.6173907,14.666246,0.132666193,1620000000000 ,1620000000000 ,1620000000000 ,1616812582100 -1616812582124 ,112.5673365,26.86321614,65.83249664,177.0915955,177.6319478,14.633947,0.132368807,1620000000000 ,1620000000000 ,1620000000000 ,1616812582110 -1616812582142 ,112.5673365,26.86321482,65.83315277,177.1023325,177.6473627,14.6013775,0.13207406,1620000000000 ,1620000000000 ,1620000000000 ,1616812582120 -1616812582145 ,112.5673366,26.8632135,65.8338089,177.115747,177.6630514,14.569385,0.131783334,1620000000000 ,1620000000000 ,1620000000000 ,1616812582130 -1616812582155 ,112.5673367,26.86321219,65.83448792,177.1262382,177.6792057,14.536289,0.131490395,1620000000000 ,1620000000000 ,1620000000000 ,1616812582140 -1616812582168 ,112.5673367,26.86321088,65.83521271,177.1384779,177.6846642,14.50413,0.131198217,1620000000000 ,1620000000000 ,1620000000000 ,1616812582150 -1616812582175 ,112.5673368,26.86320957,65.83595276,177.1508815,177.6992297,14.470311,0.13089746,1620000000000 ,1620000000000 ,1620000000000 ,1616812582160 -1616812582185 ,112.5673368,26.86320826,65.83670044,177.1637223,177.7188341,14.436637,0.130592475,1620000000000 ,1620000000000 ,1620000000000 ,1616812582170 -1616812582196 ,112.5673369,26.86320696,65.83744049,177.1767816,177.7445386,14.404937,0.130302624,1620000000000 ,1620000000000 ,1620000000000 ,1616812582180 -1616812582205 ,112.5673369,26.86320566,65.83821869,177.189677,177.7653622,14.37268,0.130012919,1620000000000 ,1620000000000 ,1620000000000 ,1616812582190 -1616812582216 ,112.567337,26.86320437,65.83955383,177.2076814,177.5002999,14.32636,0.129448835,1620000000000 ,1620000000000 ,1620000000000 ,1616812582200 -1616812582225 ,112.567337,26.86320308,65.84174347,177.2204402,177.0516554,14.291382,0.128755629,1620000000000 ,1620000000000 ,1620000000000 ,1616812582210 -1616812582235 ,112.5673371,26.8632018,65.84397125,177.2345377,177.0753886,14.25644,0.128443897,1620000000000 ,1620000000000 ,1620000000000 ,1616812582220 -1616812582247 ,112.5673372,26.86320052,65.84623718,177.2497007,177.0925465,14.223018,0.128137106,1620000000000 ,1620000000000 ,1620000000000 ,1616812582230 -1616812582256 ,112.5673372,26.86319924,65.84851837,177.2640714,177.1071963,14.190726,0.127843791,1620000000000 ,1620000000000 ,1620000000000 ,1616812582240 -1616812582268 ,112.5673373,26.86319797,65.85076141,177.2756008,177.1194027,14.157973,0.127549683,1620000000000 ,1620000000000 ,1620000000000 ,1616812582250 -1616812582277 ,112.5673374,26.8631967,65.85294342,177.2880044,177.1449373,14.12381,0.127239884,1620000000000 ,1620000000000 ,1620000000000 ,1616812582260 -1616812582287 ,112.5673374,26.86319543,65.85511017,177.2986322,177.1697013,14.089705,0.126931612,1620000000000 ,1620000000000 ,1620000000000 ,1616812582270 -1616812582295 ,112.5673375,26.86319417,65.85726929,177.3145055,177.1823082,14.055541,0.126623112,1620000000000 ,1620000000000 ,1620000000000 ,1616812582280 -1616812582305 ,112.5673375,26.8631929,65.85943604,177.3274283,177.1888368,14.022503,0.126321847,1620000000000 ,1620000000000 ,1620000000000 ,1616812582290 -1616812582316 ,112.5673376,26.86319165,65.8615799,177.3425366,177.2027029,13.990492,0.126029888,1620000000000 ,1620000000000 ,1620000000000 ,1616812582300 -1616812582326 ,112.5673377,26.86319039,65.86371613,177.3568527,177.2204345,13.9563055,0.125727536,1620000000000 ,1620000000000 ,1620000000000 ,1616812582310 -1616812582337 ,112.5673377,26.86318914,65.86585999,177.3698301,177.2342204,13.920905,0.125408662,1620000000000 ,1620000000000 ,1620000000000 ,1616812582320 -1616812582347 ,112.5673378,26.86318789,65.86798096,177.3827801,177.2529367,13.885523,0.125088014,1620000000000 ,1620000000000 ,1620000000000 ,1616812582330 -1616812582357 ,112.5673378,26.86318664,65.8700943,177.3964678,177.2706533,13.852539,0.124783781,1620000000000 ,1620000000000 ,1620000000000 ,1616812582340 -1616812582367 ,112.5673379,26.8631854,65.87219238,177.4087895,177.2845551,13.819445,0.12448452,1620000000000 ,1620000000000 ,1620000000000 ,1616812582350 -1616812582375 ,112.567338,26.86318416,65.87426758,177.4201276,177.3031512,13.783724,0.124166403,1620000000000 ,1620000000000 ,1620000000000 ,1616812582360 -1616812582386 ,112.567338,26.86318292,65.87631989,177.4328317,177.3224614,13.74883,0.123847208,1620000000000 ,1620000000000 ,1620000000000 ,1616812582370 -1616812582397 ,112.5673381,26.86318169,65.8783493,177.4457818,177.3441691,13.71226,0.123520084,1620000000000 ,1620000000000 ,1620000000000 ,1616812582380 -1616812582406 ,112.5673381,26.86318046,65.88038635,177.4603437,177.3592989,13.676977,0.123195783,1620000000000 ,1620000000000 ,1620000000000 ,1616812582390 -1616812582418 ,112.5673382,26.86317923,65.88240051,177.4731572,177.3656452,13.64344,0.122889811,1620000000000 ,1620000000000 ,1620000000000 ,1616812582400 -1616812582428 ,112.5673382,26.863178,65.88435364,177.487965,177.3764865,13.610931,0.122587869,1620000000000 ,1620000000000 ,1620000000000 ,1616812582410 -1616812582443 ,112.5673383,26.86317678,65.88622284,177.500997,177.4079579,13.577469,0.122282587,1620000000000 ,1620000000000 ,1620000000000 ,1616812582420 -1616812582461 ,112.5673384,26.86317556,65.88803101,177.5136739,177.4405703,13.541568,0.121962314,1620000000000 ,1620000000000 ,1620000000000 ,1616812582430 -1616812582463 ,112.5673384,26.86317435,65.88983154,177.5295745,177.4568297,13.504405,0.121628367,1620000000000 ,1620000000000 ,1620000000000 ,1616812582440 -1616812582468 ,112.5673385,26.86317313,65.89110565,177.5420328,177.7684804,13.470117,0.121580184,1620000000000 ,1620000000000 ,1620000000000 ,1616812582450 -1616812582478 ,112.5673385,26.86317192,65.89181519,177.5561576,178.0923403,13.436408,0.121551485,1620000000000 ,1620000000000 ,1620000000000 ,1616812582460 -1616812582487 ,112.5673385,26.86317071,65.89247131,177.5693536,178.1151158,13.404028,0.12125388,1620000000000 ,1620000000000 ,1620000000000 ,1616812582470 -1616812582497 ,112.5673386,26.8631695,65.89310455,177.5826041,178.1433568,13.367103,0.120927766,1620000000000 ,1620000000000 ,1620000000000 ,1616812582480 -1616812582511 ,112.5673386,26.86316829,65.89380646,177.5976579,178.169543,13.330484,0.12059817,1620000000000 ,1620000000000 ,1620000000000 ,1616812582490 -1616812582522 ,112.5673387,26.86316709,65.89456177,177.6110724,178.1857949,13.295454,0.120278847,1620000000000 ,1620000000000 ,1620000000000 ,1616812582500 -1616812582529 ,112.5673387,26.86316589,65.89531708,177.6249513,178.2124756,13.261371,0.11996627,1620000000000 ,1620000000000 ,1620000000000 ,1616812582510 -1616812582539 ,112.5673387,26.8631647,65.89604187,177.6396225,178.2419827,13.228331,0.119663719,1620000000000 ,1620000000000 ,1620000000000 ,1616812582520 -1616812582549 ,112.5673388,26.8631635,65.89678192,177.6535015,178.2635998,13.191578,0.119342661,1620000000000 ,1620000000000 ,1620000000000 ,1616812582530 -1616812582559 ,112.5673388,26.86316231,65.89761353,177.6665608,178.2765352,13.154938,0.119010497,1620000000000 ,1620000000000 ,1620000000000 ,1616812582540 -1616812582568 ,112.5673388,26.86316113,65.89847565,177.6806856,178.2947146,13.117042,0.118672686,1620000000000 ,1620000000000 ,1620000000000 ,1616812582550 -1616812582579 ,112.5673389,26.86315994,65.89935303,177.692898,178.3133584,13.081401,0.118342699,1620000000000 ,1620000000000 ,1620000000000 ,1616812582560 -1616812582591 ,112.5673389,26.86315876,65.90022278,177.7066677,178.3293825,13.045636,0.118019771,1620000000000 ,1620000000000 ,1620000000000 ,1616812582570 -1616812582600 ,112.5673389,26.86315759,65.90113068,177.7210111,178.3567292,13.010683,0.117701919,1620000000000 ,1620000000000 ,1620000000000 ,1616812582580 -1616812582609 ,112.567339,26.86315641,65.90208435,177.7356277,178.3757382,12.9758005,0.11738801,1620000000000 ,1620000000000 ,1620000000000 ,1616812582590 -1616812582620 ,112.567339,26.86315524,65.90307617,177.7499438,178.390794,12.93767,0.117053291,1620000000000 ,1620000000000 ,1620000000000 ,1616812582600 -1616812582630 ,112.567339,26.86315408,65.90411377,177.7631124,178.4150128,12.90139,0.116718906,1620000000000 ,1620000000000 ,1620000000000 ,1616812582610 -1616812582640 ,112.5673391,26.86315291,65.90514374,177.7767181,178.4389306,12.865489,0.116394043,1620000000000 ,1620000000000 ,1620000000000 ,1616812582620 -1616812582650 ,112.5673391,26.86315175,65.90615082,177.793575,178.4663774,12.830439,0.116070106,1620000000000 ,1620000000000 ,1620000000000 ,1616812582630 -1616812582659 ,112.5673391,26.8631506,65.90718079,177.8082463,178.4879873,12.796253,0.11576354,1620000000000 ,1620000000000 ,1620000000000 ,1616812582640 -1616812582668 ,112.5673392,26.86314944,65.90824127,177.8214695,178.5137755,12.7612915,0.115446049,1620000000000 ,1620000000000 ,1620000000000 ,1616812582650 -1616812582679 ,112.5673392,26.86314829,65.9093399,177.8358949,178.5488803,12.724421,0.115120104,1620000000000 ,1620000000000 ,1620000000000 ,1616812582660 -1616812582690 ,112.5673392,26.86314714,65.9104538,177.8502109,178.5718618,12.687687,0.11479131,1620000000000 ,1620000000000 ,1620000000000 ,1616812582670 -1616812582700 ,112.5673392,26.863146,65.91156006,177.8651554,178.5974982,12.649659,0.114443984,1620000000000 ,1620000000000 ,1620000000000 ,1616812582680 -1616812582710 ,112.5673393,26.86314486,65.91270447,177.8780508,178.6240431,12.616004,0.114131486,1620000000000 ,1620000000000 ,1620000000000 ,1616812582690 -1616812582722 ,112.5673393,26.86314372,65.91388702,177.8920663,178.648984,12.580197,0.113814531,1620000000000 ,1620000000000 ,1620000000000 ,1616812582700 -1616812582729 ,112.5673393,26.86314259,65.91510773,177.9044426,178.6812626,12.545485,0.113501574,1620000000000 ,1620000000000 ,1620000000000 ,1616812582710 -1616812582739 ,112.5673394,26.86314145,65.91632843,177.9173654,178.7140715,12.509802,0.113179855,1620000000000 ,1620000000000 ,1620000000000 ,1616812582720 -1616812582749 ,112.5673394,26.86314033,65.91757965,177.9299875,178.7273814,12.471287,0.112843208,1620000000000 ,1620000000000 ,1620000000000 ,1616812582730 -1616812582759 ,112.5673394,26.8631392,65.91889191,177.9426371,178.7416386,12.4353485,0.11250712,1620000000000 ,1620000000000 ,1620000000000 ,1616812582740 -1616812582770 ,112.5673394,26.86313808,65.92025757,177.9565706,178.7640411,12.400914,0.112194628,1620000000000 ,1620000000000 ,1620000000000 ,1616812582750 -1616812582782 ,112.5673395,26.86313696,65.92160797,177.9712419,178.7856631,12.366434,0.111883758,1620000000000 ,1620000000000 ,1620000000000 ,1616812582760 -1616812582792 ,112.5673395,26.86313585,65.92295074,177.9842739,178.8049444,12.331054,0.111569777,1620000000000 ,1620000000000 ,1620000000000 ,1616812582770 -1616812582804 ,112.5673395,26.86313473,65.92431641,177.997825,178.8322138,12.292703,0.111229592,1620000000000 ,1620000000000 ,1620000000000 ,1616812582780 -1616812582813 ,112.5673395,26.86313363,65.92572784,178.0092177,178.8582901,12.254091,0.110882203,1620000000000 ,1620000000000 ,1620000000000 ,1616812582790 -1616812582821 ,112.5673395,26.86313252,65.92713928,178.0214301,178.880917,12.217181,0.110546521,1620000000000 ,1620000000000 ,1620000000000 ,1616812582800 -1616812582830 ,112.5673396,26.86313142,65.92851257,178.0344621,178.9074567,12.183845,0.110232313,1620000000000 ,1620000000000 ,1620000000000 ,1616812582810 -1616812582840 ,112.5673396,26.86313032,65.92986298,178.047658,178.925616,12.152521,0.109945856,1620000000000 ,1620000000000 ,1620000000000 ,1616812582820 -1616812582851 ,112.5673396,26.86312922,65.93123627,178.0583405,178.9453926,12.117613,0.109641109,1620000000000 ,1620000000000 ,1620000000000 ,1616812582830 -1616812582861 ,112.5673396,26.86312813,65.93264008,178.070225,178.9671124,12.080105,0.109305553,1620000000000 ,1620000000000 ,1620000000000 ,1616812582840 -1616812582871 ,112.5673396,26.86312704,65.93406677,178.0846503,178.9919839,12.043504,0.108978612,1620000000000 ,1620000000000 ,1620000000000 ,1616812582850 -1616812582882 ,112.5673397,26.86312595,65.9355011,178.0959611,179.0172262,12.006662,0.108645471,1620000000000 ,1620000000000 ,1620000000000 ,1616812582860 -1616812582896 ,112.5673397,26.86312487,65.93696594,178.1069168,179.0506723,11.972989,0.108335344,1620000000000 ,1620000000000 ,1620000000000 ,1616812582870 -1616812582901 ,112.5673397,26.86312379,65.93845367,178.1197848,179.0702069,11.939482,0.108036282,1620000000000 ,1620000000000 ,1620000000000 ,1616812582880 -1616812582918 ,112.5673397,26.86312271,65.93992615,178.1319972,179.084226,11.905193,0.107731665,1620000000000 ,1620000000000 ,1620000000000 ,1616812582890 -1616812582922 ,112.5673397,26.86312164,65.9413681,178.1444828,179.1121523,11.871428,0.107421628,1620000000000 ,1620000000000 ,1620000000000 ,1616812582900 -1616812582939 ,112.5673397,26.86312057,65.94278717,178.1574328,179.1369705,11.837829,0.107117469,1620000000000 ,1620000000000 ,1620000000000 ,1616812582910 -1616812582942 ,112.5673398,26.8631195,65.94420624,178.168607,179.1579508,11.80451,0.106816272,1620000000000 ,1620000000000 ,1620000000000 ,1616812582920 -1616812582965 ,112.5673398,26.86311737,65.94701385,178.1923761,179.1888178,11.740872,0.106241775,1620000000000 ,1620000000000 ,1620000000000 ,1616812582940 -1616812582954 ,112.5673398,26.86311843,65.94562531,178.1792621,179.1729648,11.772702,0.106529336,1620000000000 ,1620000000000 ,1620000000000 ,1616812582940 -1616812582973 ,112.5673398,26.86311631,65.94836426,178.2013646,179.2123819,11.709962,0.105962138,1620000000000 ,1620000000000 ,1620000000000 ,1616812582960 -1616812582983 ,112.5673398,26.86311526,65.94967651,178.2114187,179.2385071,11.678854,0.105679522,1620000000000 ,1620000000000 ,1620000000000 ,1616812582970 -1616812582996 ,112.5673398,26.8631142,65.95095062,178.2216093,179.2596875,11.645068,0.105376304,1620000000000 ,1620000000000 ,1620000000000 ,1616812582980 -1616812583002 ,112.5673398,26.86311315,65.95218658,178.232401,179.278065,11.612693,0.105082512,1620000000000 ,1620000000000 ,1620000000000 ,1616812582980 -1616812583012 ,112.5673399,26.8631121,65.95336151,178.2410617,179.2958556,11.58437,0.104813724,1620000000000 ,1620000000000 ,1620000000000 ,1616812583000 -1616812583023 ,112.5673399,26.86311002,65.95534515,178.2664427,179.3329823,11.531107,0.208891552,1620000000000 ,1620000000000 ,1620000000000 ,1616812583010 -1616812583033 ,112.5673399,26.86311002,65.95534515,178.2664427,-400,11.531107,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812583020 -1616812583043 ,112.5673399,26.86310794,65.95709991,178.2870698,179.3604764,11.472299,0.207863494,1620000000000 ,1620000000000 ,1620000000000 ,1616812583030 -1616812583053 ,112.5673399,26.8631069,65.95806885,178.2953753,179.3717644,11.44138,0.103521375,1620000000000 ,1620000000000 ,1620000000000 ,1616812583040 -1616812583065 ,112.5673399,26.86310587,65.95905304,178.3034896,179.3869216,11.411609,0.103252971,1620000000000 ,1620000000000 ,1620000000000 ,1616812583050 -1616812583074 ,112.5673399,26.86310484,65.95996857,178.3133797,179.406249,11.383908,0.102994334,1620000000000 ,1620000000000 ,1620000000000 ,1616812583060 -1616812583086 ,112.56734,26.86310381,65.96076202,178.3225049,179.424819,11.359236,0.102757042,1620000000000 ,1620000000000 ,1620000000000 ,1616812583070 -1616812583094 ,112.56734,26.86310279,65.96147919,178.3323403,179.4434677,11.333481,0.102522378,1620000000000 ,1620000000000 ,1620000000000 ,1616812583080 -1616812583103 ,112.56734,26.86310279,65.96147919,178.3323403,-400,11.333481,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812583090 -1616812583113 ,112.56734,26.86310074,65.96289063,178.352503,179.452172,11.2784605,0.204314537,1620000000000 ,1620000000000 ,1620000000000 ,1616812583100 -1616812583124 ,112.56734,26.86309973,65.96360779,178.3631308,179.4821761,11.251663,0.101785912,1620000000000 ,1620000000000 ,1620000000000 ,1616812583110 -1616812583136 ,112.56734,26.86309871,65.96427155,178.373704,179.5016975,11.226084,0.101550736,1620000000000 ,1620000000000 ,1620000000000 ,1616812583120 -1616812583146 ,112.56734,26.8630977,65.96487427,178.3850421,179.5197989,11.20211,0.101326657,1620000000000 ,1620000000000 ,1620000000000 ,1616812583130 -1616812583154 ,112.56734,26.86309669,65.9654541,178.3943311,179.5383786,11.175813,0.101090824,1620000000000 ,1620000000000 ,1620000000000 ,1616812583140 -1616812583166 ,112.56734,26.86309568,65.96601868,178.4019263,179.5485363,11.151248,0.100864837,1620000000000 ,1620000000000 ,1620000000000 ,1616812583150 -1616812583173 ,112.56734,26.86309467,65.96656799,178.4115705,179.5638014,11.12595,0.100639648,1620000000000 ,1620000000000 ,1620000000000 ,1616812583160 -1616812583184 ,112.56734,26.86309367,65.96708679,178.4209142,179.5942912,11.102097,0.100414898,1620000000000 ,1620000000000 ,1620000000000 ,1616812583170 -1616812583194 ,112.56734,26.86309266,65.96759033,178.4292471,179.6188285,11.0788965,0.100204308,1620000000000 ,1620000000000 ,1620000000000 ,1616812583180 -1616812583204 ,112.5673401,26.86309166,65.96806335,178.4381809,179.6278696,11.055896,0.099994139,1620000000000 ,1620000000000 ,1620000000000 ,1616812583190 -1616812583214 ,112.5673401,26.86309067,65.96870422,178.4360772,179.2140519,11.011343,0.09929813,1620000000000 ,1620000000000 ,1620000000000 ,1616812583200 -1616812583227 ,112.5673401,26.86308969,65.96963501,178.4434538,178.5304685,10.990263,0.098412073,1620000000000 ,1620000000000 ,1620000000000 ,1616812583210 -1616812583235 ,112.5673401,26.86308871,65.97055054,178.4497103,178.5407365,10.968131,0.098210878,1620000000000 ,1620000000000 ,1620000000000 ,1616812583220 -1616812583244 ,112.5673401,26.86308773,65.97149658,178.4587261,178.5524108,10.947378,0.098025801,1620000000000 ,1620000000000 ,1620000000000 ,1616812583230 -1616812583259 ,112.5673402,26.86308675,65.97245789,178.4661028,178.5679523,10.924927,0.097821536,1620000000000 ,1620000000000 ,1620000000000 ,1616812583240 -1616812583265 ,112.5673402,26.86308577,65.97340393,178.4735613,178.5756334,10.905439,0.097632439,1620000000000 ,1620000000000 ,1620000000000 ,1616812583250 -1616812583275 ,112.5673402,26.8630848,65.9743042,178.4809926,178.5815989,10.888523,0.097476796,1620000000000 ,1620000000000 ,1620000000000 ,1616812583260 -1616812583286 ,112.5673402,26.86308383,65.97515106,178.4873856,178.5878998,10.87258,0.097319198,1620000000000 ,1620000000000 ,1620000000000 ,1616812583270 -1616812583295 ,112.5673403,26.86308285,65.97595978,178.4942705,178.6024525,10.856052,0.097169088,1620000000000 ,1620000000000 ,1620000000000 ,1616812583280 -1616812583307 ,112.5673403,26.86308188,65.97676086,178.4987784,178.614677,10.839838,0.097021803,1620000000000 ,1620000000000 ,1620000000000 ,1616812583290 -1616812583315 ,112.5673403,26.86308092,65.97755432,178.5063462,178.625237,10.825216,0.0968827,1620000000000 ,1620000000000 ,1620000000000 ,1616812583300 -1616812583325 ,112.5673403,26.86307995,65.97832489,178.5126846,178.6433909,10.811441,0.096752741,1620000000000 ,1620000000000 ,1620000000000 ,1616812583310 -1616812583335 ,112.5673404,26.86307898,65.97907257,178.5184493,178.658485,10.7996855,0.096636687,1620000000000 ,1620000000000 ,1620000000000 ,1616812583320 -1616812583345 ,112.5673404,26.86307802,65.97979736,178.5227114,178.6766264,10.788036,0.096529468,1620000000000 ,1620000000000 ,1620000000000 ,1616812583330 -1616812583356 ,112.5673404,26.86307705,65.98052216,178.5272466,178.6952078,10.777903,0.096429942,1620000000000 ,1620000000000 ,1620000000000 ,1616812583340 -1616812583365 ,112.5673404,26.86307609,65.98126221,178.5291317,178.7130271,10.766978,0.096336128,1620000000000 ,1620000000000 ,1620000000000 ,1616812583350 -1616812583376 ,112.5673404,26.86307513,65.98203278,178.5325195,178.7337591,10.756251,0.096232558,1620000000000 ,1620000000000 ,1620000000000 ,1616812583360 -1616812583387 ,112.5673405,26.86307417,65.9828186,178.5341861,178.7467266,10.745682,0.096135324,1620000000000 ,1620000000000 ,1620000000000 ,1616812583370 -1616812583410 ,112.5673405,26.86307321,65.98361206,178.5345959,178.7546963,10.736767,0.096048793,1620000000000 ,1620000000000 ,1620000000000 ,1616812583380 -1616812583417 ,112.5673405,26.86307225,65.98442841,178.5357707,178.7650568,10.727864,0.095968599,1620000000000 ,1620000000000 ,1620000000000 ,1616812583390 -1616812583428 ,112.5673405,26.86307129,65.98527527,178.5365083,178.7748355,10.718798,0.09588512,1620000000000 ,1620000000000 ,1620000000000 ,1616812583400 -1616812583433 ,112.5673405,26.86307033,65.98616028,178.5380656,178.7831158,10.711413,0.095815727,1620000000000 ,1620000000000 ,1620000000000 ,1616812583410 -1616812583447 ,112.5673406,26.86306937,65.98708344,178.5395136,178.7912357,10.704585,0.095750726,1620000000000 ,1620000000000 ,1620000000000 ,1616812583420 -1616812583449 ,112.5673406,26.86306842,65.98806,178.5398142,178.7942752,10.698634,0.095696131,1620000000000 ,1620000000000 ,1620000000000 ,1616812583430 -1616812583456 ,112.5673406,26.86306746,65.98908997,178.5402513,178.7898439,10.69189,0.095636987,1620000000000 ,1620000000000 ,1620000000000 ,1616812583440 -1616812583467 ,112.5673406,26.8630665,65.98997498,178.5418905,179.2484165,10.685055,0.096062154,1620000000000 ,1620000000000 ,1620000000000 ,1616812583450 -1616812583477 ,112.5673406,26.86306553,65.99073792,178.5429834,179.706063,10.678274,0.096497549,1620000000000 ,1620000000000 ,1620000000000 ,1616812583460 -1616812583488 ,112.5673406,26.86306457,65.99156952,178.5449231,179.7019053,10.671622,0.096439246,1620000000000 ,1620000000000 ,1620000000000 ,1616812583470 -1616812583498 ,112.5673406,26.86306361,65.99246979,178.5461253,179.6952569,10.665777,0.096385933,1620000000000 ,1620000000000 ,1620000000000 ,1616812583480 -1616812583509 ,112.5673406,26.86306264,65.99343109,178.5455515,179.7020997,10.661377,0.096340636,1620000000000 ,1620000000000 ,1620000000000 ,1616812583490 -1616812583518 ,112.5673406,26.86306168,65.99446106,178.546617,179.6957368,10.656823,0.09630488,1620000000000 ,1620000000000 ,1620000000000 ,1616812583500 -1616812583527 ,112.5673406,26.86306072,65.99552917,178.5495677,179.6918186,10.652823,0.096266238,1620000000000 ,1620000000000 ,1620000000000 ,1616812583510 -1616812583537 ,112.5673407,26.86305975,65.9966507,178.5489939,179.6979153,10.649134,0.096232549,1620000000000 ,1620000000000 ,1620000000000 ,1616812583520 -1616812583549 ,112.5673407,26.86305879,65.99782562,178.5483656,179.6983713,10.643112,0.096183148,1620000000000 ,1620000000000 ,1620000000000 ,1616812583530 -1616812583557 ,112.5673407,26.86305783,65.99907684,178.5491579,179.69835,10.63883,0.096146913,1620000000000 ,1620000000000 ,1620000000000 ,1616812583540 -1616812583567 ,112.5673407,26.86305687,66.00039673,178.547464,179.6970146,10.632853,0.096095639,1620000000000 ,1620000000000 ,1620000000000 ,1616812583550 -1616812583577 ,112.5673407,26.86305591,66.00177002,178.5452783,179.7055024,10.626332,0.096039869,1620000000000 ,1620000000000 ,1620000000000 ,1616812583560 -1616812583589 ,112.5673407,26.86305495,66.00318146,178.5439123,179.7171242,10.619398,0.095979424,1620000000000 ,1620000000000 ,1620000000000 ,1616812583570 -1616812583601 ,112.5673407,26.86305399,66.00463867,178.5427375,179.723086,10.615532,0.09593876,1620000000000 ,1620000000000 ,1620000000000 ,1616812583580 -1616812583610 ,112.5673407,26.86305303,66.00611115,178.5405518,179.7287025,10.611886,0.095907451,1620000000000 ,1620000000000 ,1620000000000 ,1616812583590 -1616812583619 ,112.5673407,26.86305207,66.00758362,178.5373553,179.7338531,10.606942,0.095868884,1620000000000 ,1620000000000 ,1620000000000 ,1616812583600 -1616812583628 ,112.5673407,26.86305112,66.00907135,178.5330932,179.7372691,10.599633,0.095810004,1620000000000 ,1620000000000 ,1620000000000 ,1616812583610 -1616812583639 ,112.5673407,26.86305016,66.01057434,178.5283121,179.7429131,10.592435,0.095744853,1620000000000 ,1620000000000 ,1620000000000 ,1616812583620 -1616812583649 ,112.5673407,26.8630492,66.01209259,178.5230392,179.7356403,10.585355,0.095679225,1620000000000 ,1620000000000 ,1620000000000 ,1616812583630 -1616812583665 ,112.5673407,26.86304824,66.01360321,178.5183947,179.7362528,10.577642,0.095613385,1620000000000 ,1620000000000 ,1620000000000 ,1616812583640 -1616812583674 ,112.5673407,26.86304729,66.01511383,178.5112366,179.7305041,10.57054,0.095547344,1620000000000 ,1620000000000 ,1620000000000 ,1616812583650 -1616812583678 ,112.5673407,26.86304633,66.01663971,178.5048436,179.7126372,10.560914,0.095467662,1620000000000 ,1620000000000 ,1620000000000 ,1616812583660 -1616812583688 ,112.5673407,26.86304538,66.01818848,178.4985052,179.7151816,10.553658,0.095400302,1620000000000 ,1620000000000 ,1620000000000 ,1616812583670 -1616812583698 ,112.5673407,26.86304443,66.01972198,178.4917843,179.7160922,10.546413,0.095334004,1620000000000 ,1620000000000 ,1620000000000 ,1616812583680 -1616812583709 ,112.5673407,26.86304347,66.02119446,178.4847902,179.7104869,10.53977,0.09527273,1620000000000 ,1620000000000 ,1620000000000 ,1616812583690 -1616812583718 ,112.5673407,26.86304252,66.02262878,178.4771677,179.707972,10.531157,0.095198089,1620000000000 ,1620000000000 ,1620000000000 ,1616812583700 -1616812583728 ,112.5673407,26.86304157,66.02407074,178.4700643,179.7013195,10.523318,0.095128309,1620000000000 ,1620000000000 ,1620000000000 ,1616812583710 -1616812583739 ,112.5673407,26.86304062,66.02552032,178.4610757,179.7021533,10.514122,0.09504935,1620000000000 ,1620000000000 ,1620000000000 ,1616812583720 -1616812583750 ,112.5673408,26.86303967,66.02695465,178.4516501,179.7058317,10.505835,0.094969926,1620000000000 ,1620000000000 ,1620000000000 ,1616812583730 -1616812583765 ,112.5673408,26.86303872,66.02835846,178.4411589,179.7050504,10.497159,0.094894454,1620000000000 ,1620000000000 ,1620000000000 ,1616812583740 -1616812583771 ,112.5673408,26.86303777,66.02972412,178.431542,179.7026349,10.489972,0.094826245,1620000000000 ,1620000000000 ,1620000000000 ,1616812583750 -1616812583781 ,112.5673408,26.86303683,66.03105927,178.4188105,179.6922739,10.482376,0.094759971,1620000000000 ,1620000000000 ,1620000000000 ,1616812583760 -1616812583797 ,112.5673408,26.86303588,66.03235626,178.4055873,179.6921472,10.474384,0.094688689,1620000000000 ,1620000000000 ,1620000000000 ,1616812583770 -1616812583804 ,112.5673408,26.86303493,66.03364563,178.3940852,179.6903775,10.465148,0.094608215,1620000000000 ,1620000000000 ,1620000000000 ,1616812583780 -1616812583809 ,112.5673408,26.86303399,66.034935,178.3802336,179.6841914,10.453442,0.094511089,1620000000000 ,1620000000000 ,1620000000000 ,1616812583790 -1616812583819 ,112.5673408,26.86303304,66.03625488,178.364934,179.6858555,10.441581,0.09440679,1620000000000 ,1620000000000 ,1620000000000 ,1616812583800 -1616812583829 ,112.5673408,26.8630321,66.03757477,178.351984,179.6769934,10.430458,0.094302609,1620000000000 ,1620000000000 ,1620000000000 ,1616812583810 -1616812583839 ,112.5673408,26.86303116,66.03884888,178.3376132,179.6593789,10.421451,0.09421783,1620000000000 ,1620000000000 ,1620000000000 ,1616812583820 -1616812583853 ,112.5673408,26.86303022,66.04006195,178.3229147,179.6514305,10.412577,0.094136942,1620000000000 ,1620000000000 ,1620000000000 ,1616812583830 -1616812583860 ,112.5673408,26.86302928,66.04121399,178.3079702,179.6307919,10.403777,0.094054687,1620000000000 ,1620000000000 ,1620000000000 ,1616812583840 -1616812583870 ,112.5673408,26.86302834,66.04230499,178.2930258,179.5929049,10.3915825,0.093952054,1620000000000 ,1620000000000 ,1620000000000 ,1616812583850 -1616812583880 ,112.5673408,26.8630274,66.04337311,178.2797479,179.5702688,10.3810425,0.093853753,1620000000000 ,1620000000000 ,1620000000000 ,1616812583860 -1616812583890 ,112.5673408,26.86302646,66.04443359,178.2643936,179.5458338,10.371227,0.093760735,1620000000000 ,1620000000000 ,1620000000000 ,1616812583870 -1616812583901 ,112.5673408,26.86302553,66.04550934,178.2522359,179.5233702,10.363194,0.093685753,1620000000000 ,1620000000000 ,1620000000000 ,1616812583880 -1616812583910 ,112.5673408,26.86302459,66.04657745,178.2372914,179.5036371,10.352993,0.093597768,1620000000000 ,1620000000000 ,1620000000000 ,1616812583890 -1616812583920 ,112.5673409,26.86302365,66.0476532,178.223795,179.4892626,10.3418665,0.093503161,1620000000000 ,1620000000000 ,1620000000000 ,1616812583900 -1616812583933 ,112.5673409,26.86302272,66.04876709,178.2080582,179.4693208,10.329197,0.09339244,1620000000000 ,1620000000000 ,1620000000000 ,1616812583910 -1616812583940 ,112.5673409,26.86302179,66.04989624,178.195518,179.4449852,10.3174305,0.093287383,1620000000000 ,1620000000000 ,1620000000000 ,1616812583920 -1616812583956 ,112.5673409,26.86302086,66.05104065,178.1810653,179.4456205,10.303871,0.093170453,1620000000000 ,1620000000000 ,1620000000000 ,1616812583930 -1616812583962 ,112.5673409,26.86301993,66.05221558,178.1663941,179.4413234,10.2894745,0.093040901,1620000000000 ,1620000000000 ,1620000000000 ,1616812583940 -1616812583971 ,112.5673409,26.863019,66.05341339,178.1544822,179.4200611,10.278012,0.092934884,1620000000000 ,1620000000000 ,1620000000000 ,1616812583950 -1616812583980 ,112.5673409,26.86301807,66.05457306,178.141259,179.4122733,10.269257,0.092851129,1620000000000 ,1620000000000 ,1620000000000 ,1616812583960 -1616812584000 ,112.5673409,26.86301714,66.05561829,178.1292378,179.4087625,10.26081,0.092769558,1620000000000 ,1620000000000 ,1620000000000 ,1616812583970 -1616812584004 ,112.5673409,26.86301621,66.05656433,178.1167796,179.4043058,10.251489,0.092684596,1620000000000 ,1620000000000 ,1620000000000 ,1616812583980 -1616812584020 ,112.5673409,26.86301529,66.05749512,178.1014799,179.3904728,10.23802,0.092574314,1620000000000 ,1620000000000 ,1620000000000 ,1616812583990 -1616812584026 ,112.5673409,26.86301436,66.05848694,178.0864535,179.3918922,10.226834,0.092466626,1620000000000 ,1620000000000 ,1620000000000 ,1616812584000 -1616812584033 ,112.567341,26.86301344,66.05953979,178.0699518,179.3762482,10.214834,0.09236729,1620000000000 ,1620000000000 ,1620000000000 ,1616812584010 -1616812584043 ,112.567341,26.86301252,66.06057739,178.054379,179.3560444,10.204233,0.092264328,1620000000000 ,1620000000000 ,1620000000000 ,1616812584020 -1616812584053 ,112.567341,26.86301159,66.06153107,178.0392433,179.3480189,10.195174,0.092180204,1620000000000 ,1620000000000 ,1620000000000 ,1616812584040 -1616812584062 ,112.567341,26.86301067,66.06236267,178.0248999,179.3482412,10.182968,0.092072845,1620000000000 ,1620000000000 ,1620000000000 ,1616812584050 -1616812584072 ,112.567341,26.86300975,66.06311798,178.0106111,179.3346176,10.1719055,0.091964722,1620000000000 ,1620000000000 ,1620000000000 ,1616812584060 -1616812584082 ,112.567341,26.86300884,66.06384277,177.9968961,179.3168573,10.161566,0.091868949,1620000000000 ,1620000000000 ,1620000000000 ,1616812584070 -1616812584092 ,112.567341,26.86300792,66.06455231,177.9846291,179.3165157,10.150954,0.091772402,1620000000000 ,1620000000000 ,1620000000000 ,1616812584080 -1616812584104 ,112.567341,26.863007,66.06524658,177.9726079,179.2869037,10.140859,0.091677769,1620000000000 ,1620000000000 ,1620000000000 ,1616812584080 -1616812584112 ,112.5673411,26.86300517,66.06655121,177.9438392,179.2562843,10.122264,0.183083757,1620000000000 ,1620000000000 ,1620000000000 ,1616812584100 -1616812584123 ,112.5673411,26.86300426,66.0671463,177.9293865,179.2284641,10.110788,0.091403399,1620000000000 ,1620000000000 ,1620000000000 ,1616812584110 -1616812584133 ,112.5673411,26.86300334,66.06778717,177.9130214,179.2105627,10.099816,0.09130469,1620000000000 ,1620000000000 ,1620000000000 ,1616812584120 -1616812584144 ,112.5673411,26.86300243,66.06845856,177.9005358,179.1813329,10.090802,0.091214153,1620000000000 ,1620000000000 ,1620000000000 ,1616812584130 -1616812584159 ,112.5673411,26.86300152,66.06916046,177.8868481,179.1589278,10.080845,0.091131186,1620000000000 ,1620000000000 ,1620000000000 ,1616812584140 -1616812584162 ,112.5673411,26.86300061,66.06987,177.8728598,179.1473698,10.073845,0.091055956,1620000000000 ,1620000000000 ,1620000000000 ,1616812584150 -1616812584173 ,112.5673411,26.8629997,66.07054138,177.8605382,179.1358527,10.067578,0.090999007,1620000000000 ,1620000000000 ,1620000000000 ,1616812584160 -1616812584184 ,112.5673411,26.86299879,66.07115936,177.849965,179.1316031,10.061907,0.090941824,1620000000000 ,1620000000000 ,1620000000000 ,1616812584170 -1616812584196 ,112.5673412,26.86299788,66.07176971,177.8391734,179.1149024,10.0551195,0.090885053,1620000000000 ,1620000000000 ,1620000000000 ,1616812584180 -1616812584211 ,112.5673412,26.86299788,66.07176971,177.8391734,-400,10.0551195,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812584180 -1616812584215 ,112.5673412,26.86299607,66.07264709,177.8012795,178.7138354,10.012524,0.181023335,1620000000000 ,1620000000000 ,1620000000000 ,1616812584200 -1616812584226 ,112.5673412,26.86299518,66.07210541,177.787783,177.1776688,10.006824,0.089395928,1620000000000 ,1620000000000 ,1620000000000 ,1616812584210 -1616812584234 ,112.5673413,26.86299429,66.07154083,177.7756253,177.1654145,10.00326,0.089357077,1620000000000 ,1620000000000 ,1620000000000 ,1616812584220 -1616812584244 ,112.5673413,26.8629934,66.07097626,177.7605989,177.1683808,9.998176,0.089314485,1620000000000 ,1620000000000 ,1620000000000 ,1616812584230 -1616812584254 ,112.5673414,26.8629925,66.07041931,177.7485777,177.1639555,9.996436,0.089289719,1620000000000 ,1620000000000 ,1620000000000 ,1616812584240 -1616812584266 ,112.5673414,26.86299161,66.06987,177.7358736,177.1465438,9.992256,0.089255876,1620000000000 ,1620000000000 ,1620000000000 ,1616812584250 -1616812584275 ,112.5673415,26.86299072,66.06936646,177.7219946,177.1475019,9.990799,0.089242653,1620000000000 ,1620000000000 ,1620000000000 ,1616812584260 -1616812584288 ,112.5673415,26.86298983,66.06892395,177.7078971,177.1353414,9.98606,0.089211662,1620000000000 ,1620000000000 ,1620000000000 ,1616812584270 -1616812584295 ,112.5673416,26.86298894,66.06854248,177.6939908,177.121661,9.981683,0.089165382,1620000000000 ,1620000000000 ,1620000000000 ,1616812584280 -1616812584307 ,112.5673416,26.86298805,66.06820679,177.6808496,177.1067751,9.977491,0.089129572,1620000000000 ,1620000000000 ,1620000000000 ,1616812584290 -1616812584318 ,112.5673416,26.86298716,66.06786346,177.6689377,177.091924,9.973822,0.089098675,1620000000000 ,1620000000000 ,1620000000000 ,1616812584300 -1616812584325 ,112.5673417,26.86298627,66.0675354,177.6548129,177.0815563,9.970401,0.089062375,1620000000000 ,1620000000000 ,1620000000000 ,1616812584310 -1616812584335 ,112.5673417,26.86298538,66.06725311,177.6411798,177.0496305,9.967493,0.08904013,1620000000000 ,1620000000000 ,1620000000000 ,1616812584320 -1616812584344 ,112.5673418,26.86298449,66.06703949,177.6300056,177.0248229,9.9643545,0.089016108,1620000000000 ,1620000000000 ,1620000000000 ,1616812584330 -1616812584355 ,112.5673418,26.8629836,66.06687927,177.6177659,177.0114391,9.960534,0.088985302,1620000000000 ,1620000000000 ,1620000000000 ,1616812584340 -1616812584364 ,112.5673419,26.86298271,66.06673431,177.6063732,176.995036,9.957132,0.088948535,1620000000000 ,1620000000000 ,1620000000000 ,1616812584350 -1616812584376 ,112.5673419,26.86298183,66.06660461,177.5948438,176.9744674,9.954375,0.088925037,1620000000000 ,1620000000000 ,1620000000000 ,1616812584360 -1616812584386 ,112.567342,26.86298094,66.06645203,177.5824402,176.9508804,9.951092,0.088899997,1620000000000 ,1620000000000 ,1620000000000 ,1616812584370 -1616812584395 ,112.567342,26.86298005,66.0663147,177.5702278,176.9443903,9.947742,0.088866376,1620000000000 ,1620000000000 ,1620000000000 ,1616812584380 -1616812584405 ,112.5673421,26.86297916,66.06623077,177.5585892,176.9314026,9.943459,0.088833833,1620000000000 ,1620000000000 ,1620000000000 ,1616812584390 -1616812584415 ,112.5673421,26.86297828,66.06620026,177.5452293,176.9172254,9.939046,0.088801716,1620000000000 ,1620000000000 ,1620000000000 ,1616812584400 -1616812584427 ,112.5673422,26.86297739,66.06621552,177.5342464,176.9123877,9.9345045,0.088754291,1620000000000 ,1620000000000 ,1620000000000 ,1616812584410 -1616812584436 ,112.5673422,26.86297651,66.06621552,177.5227717,176.8995042,9.933305,0.088737603,1620000000000 ,1620000000000 ,1620000000000 ,1616812584420 -1616812584447 ,112.5673423,26.86297562,66.06620026,177.5118707,176.8928498,9.928783,0.088709429,1620000000000 ,1620000000000 ,1620000000000 ,1616812584430 -1616812584455 ,112.5673423,26.86297473,66.06619263,177.4994124,176.880527,9.927292,0.088686348,1620000000000 ,1620000000000 ,1620000000000 ,1616812584440 -1616812584466 ,112.5673423,26.86297384,66.06669617,177.4888393,177.6750922,9.92258,0.089156065,1620000000000 ,1620000000000 ,1620000000000 ,1616812584450 -1616812584476 ,112.5673424,26.86297295,66.06771851,177.4788399,178.4596325,9.917815,0.089626264,1620000000000 ,1620000000000 ,1620000000000 ,1616812584460 -1616812584489 ,112.5673424,26.86297205,66.06874847,177.4678843,178.4506097,9.913763,0.089594971,1620000000000 ,1620000000000 ,1620000000000 ,1616812584470 -1616812584496 ,112.5673424,26.86297116,66.06976318,177.4577209,178.443797,9.910395,0.089558462,1620000000000 ,1620000000000 ,1620000000000 ,1616812584480 -1616812584507 ,112.5673424,26.86297026,66.07077026,177.4466014,178.4358538,9.909134,0.089543168,1620000000000 ,1620000000000 ,1620000000000 ,1616812584490 -1616812584516 ,112.5673425,26.86296937,66.07176971,177.4355092,178.436144,9.904817,0.089512189,1620000000000 ,1620000000000 ,1620000000000 ,1616812584500 -1616812584527 ,112.5673425,26.86296847,66.07279968,177.4237339,178.4348469,9.901245,0.089480637,1620000000000 ,1620000000000 ,1620000000000 ,1616812584510 -1616812584536 ,112.5673425,26.86296758,66.0738678,177.4134886,178.4078179,9.897083,0.089446073,1620000000000 ,1620000000000 ,1620000000000 ,1616812584520 -1616812584547 ,112.5673425,26.86296668,66.07492828,177.4042542,178.4018439,9.893223,0.089405145,1620000000000 ,1620000000000 ,1620000000000 ,1616812584530 -1616812584561 ,112.5673426,26.86296579,66.07595062,177.3970962,178.3854379,9.88938,0.089370473,1620000000000 ,1620000000000 ,1620000000000 ,1616812584540 -1616812584568 ,112.5673426,26.8629649,66.07691193,177.3905119,178.3652968,9.885974,0.089342713,1620000000000 ,1620000000000 ,1620000000000 ,1616812584550 -1616812584577 ,112.5673426,26.862964,66.07782745,177.3857854,178.3540155,9.883634,0.089314282,1620000000000 ,1620000000000 ,1620000000000 ,1616812584560 -1616812584589 ,112.5673426,26.86296311,66.07875824,177.3789006,178.3371416,9.8801365,0.089286087,1620000000000 ,1620000000000 ,1620000000000 ,1616812584570 -1616812584598 ,112.5673427,26.86296222,66.07971191,177.372808,178.3178636,9.87512,0.089243878,1620000000000 ,1620000000000 ,1620000000000 ,1616812584580 -1616812584611 ,112.5673427,26.86296133,66.08067322,177.3680815,178.3082067,9.871832,0.089210953,1620000000000 ,1620000000000 ,1620000000000 ,1616812584590 -1616812584618 ,112.5673427,26.86296044,66.08159637,177.3652675,178.28965,9.869098,0.089182061,1620000000000 ,1620000000000 ,1620000000000 ,1616812584600 -1616812584631 ,112.5673427,26.86295955,66.08248901,177.3593935,178.2846379,9.866253,0.089154275,1620000000000 ,1620000000000 ,1620000000000 ,1616812584610 -1616812584638 ,112.5673428,26.86295866,66.08337402,177.3566068,178.2759395,9.863807,0.089134002,1620000000000 ,1620000000000 ,1620000000000 ,1616812584620 -1616812584650 ,112.5673428,26.86295776,66.08425903,177.3543119,178.2678955,9.860253,0.089104296,1620000000000 ,1620000000000 ,1620000000000 ,1616812584630 -1616812584661 ,112.5673428,26.86295687,66.08515167,177.351935,178.266541,9.855474,0.089063863,1620000000000 ,1620000000000 ,1620000000000 ,1616812584640 -1616812584670 ,112.5673429,26.86295598,66.08603668,177.3491756,178.2554999,9.850251,0.08901612,1620000000000 ,1620000000000 ,1620000000000 ,1616812584650 -1616812584680 ,112.5673429,26.8629551,66.0868988,177.3464162,178.2523723,9.846496,0.088975826,1620000000000 ,1620000000000 ,1620000000000 ,1616812584660 -1616812584689 ,112.5673429,26.86295421,66.08770752,177.3455692,178.2448519,9.844245,0.08895443,1620000000000 ,1620000000000 ,1620000000000 ,1616812584670 -1616812584701 ,112.5673429,26.86295332,66.08847809,177.3433289,178.2485676,9.841991,0.088931438,1620000000000 ,1620000000000 ,1620000000000 ,1616812584680 -1616812584708 ,112.567343,26.86295243,66.08924103,177.3416897,178.2551939,9.840131,0.088915337,1620000000000 ,1620000000000 ,1620000000000 ,1616812584690 -1616812584718 ,112.567343,26.86295154,66.09003448,177.3393674,178.2426276,9.835857,0.088879314,1620000000000 ,1620000000000 ,1620000000000 ,1616812584700 -1616812584728 ,112.567343,26.86295065,66.09080505,177.3366627,178.2380588,9.83212,0.088844517,1620000000000 ,1620000000000 ,1620000000000 ,1616812584710 -1616812584738 ,112.567343,26.86294976,66.09153748,177.3322367,178.2556377,9.827729,0.08880434,1620000000000 ,1620000000000 ,1620000000000 ,1616812584720 -1616812584751 ,112.5673431,26.86294888,66.09224701,177.3306521,178.2569289,9.82539,0.08877886,1620000000000 ,1620000000000 ,1620000000000 ,1616812584730 -1616812584759 ,112.5673431,26.86294799,66.09296417,177.3276468,178.2655876,9.821254,0.088745649,1620000000000 ,1620000000000 ,1620000000000 ,1616812584740 -1616812584768 ,112.5673431,26.8629471,66.09371185,177.3239039,178.2619785,9.817783,0.088715622,1620000000000 ,1620000000000 ,1620000000000 ,1616812584750 -1616812584779 ,112.5673432,26.86294622,66.09449768,177.3189315,178.2532423,9.812929,0.088673643,1620000000000 ,1620000000000 ,1620000000000 ,1616812584760 -1616812584789 ,112.5673432,26.86294533,66.09529114,177.3167458,178.2586257,9.811139,0.08865055,1620000000000 ,1620000000000 ,1620000000000 ,1616812584770 -1616812584800 ,112.5673432,26.86294444,66.09608459,177.3150246,178.2667642,9.809472,0.088636968,1620000000000 ,1620000000000 ,1620000000000 ,1616812584780 -1616812584810 ,112.5673432,26.86294356,66.09689331,177.3131122,178.264637,9.806001,0.0886154,1620000000000 ,1620000000000 ,1620000000000 ,1616812584790 -1616812584820 ,112.5673433,26.86294267,66.0977478,177.3114456,178.2526297,9.801985,0.088575507,1620000000000 ,1620000000000 ,1620000000000 ,1616812584800 -1616812584829 ,112.5673433,26.86294179,66.09867859,177.3101615,178.2405591,9.7981415,0.088546814,1620000000000 ,1620000000000 ,1620000000000 ,1616812584810 -1616812584839 ,112.5673433,26.8629409,66.09963989,177.3087682,178.239763,9.793829,0.088506592,1620000000000 ,1620000000000 ,1620000000000 ,1616812584820 -1616812584851 ,112.5673433,26.86294002,66.10063171,177.3082764,178.2416659,9.792306,0.088488231,1620000000000 ,1620000000000 ,1620000000000 ,1616812584830 -1616812584860 ,112.5673434,26.86293914,66.10165405,177.3061181,178.2333617,9.788002,0.088460775,1620000000000 ,1620000000000 ,1620000000000 ,1616812584840 -1616812584875 ,112.5673434,26.86293825,66.10274506,177.3066372,178.2276485,9.784245,0.088430629,1620000000000 ,1620000000000 ,1620000000000 ,1616812584850 -1616812584880 ,112.5673434,26.86293737,66.10387421,177.3072929,178.2186086,9.781785,0.088401767,1620000000000 ,1620000000000 ,1620000000000 ,1616812584860 -1616812584890 ,112.5673435,26.86293648,66.10501862,177.3068557,178.2239335,9.7786045,0.088379463,1620000000000 ,1620000000000 ,1620000000000 ,1616812584870 -1616812584899 ,112.5673435,26.8629356,66.10614777,177.3081671,178.2240231,9.7746935,0.088347375,1620000000000 ,1620000000000 ,1620000000000 ,1616812584880 -1616812584910 ,112.5673435,26.86293472,66.10725403,177.3090687,178.2258568,9.772083,0.088325331,1620000000000 ,1620000000000 ,1620000000000 ,1616812584890 -1616812584921 ,112.5673435,26.86293384,66.10836792,177.3110085,178.2265365,9.768608,0.088290568,1620000000000 ,1620000000000 ,1620000000000 ,1616812584900 -1616812584938 ,112.5673436,26.86293295,66.1095047,177.3135493,178.2142926,9.766438,0.088271494,1620000000000 ,1620000000000 ,1620000000000 ,1616812584910 -1616812584949 ,112.5673436,26.86293207,66.11061859,177.3161448,178.2073783,9.762097,0.088238816,1620000000000 ,1620000000000 ,1620000000000 ,1616812584920 -1616812584951 ,112.5673436,26.86293119,66.11173248,177.3178387,178.220582,9.758756,0.088210082,1620000000000 ,1620000000000 ,1620000000000 ,1616812584930 -1616812584961 ,112.5673436,26.86293031,66.11286163,177.320762,178.2215417,9.753054,0.088164027,1620000000000 ,1620000000000 ,1620000000000 ,1616812584940 -1616812584974 ,112.5673437,26.86292943,66.1139679,177.3225652,178.2259147,9.751105,0.088137761,1620000000000 ,1620000000000 ,1620000000000 ,1616812584950 -1616812584981 ,112.5673437,26.86292855,66.11499023,177.328084,178.2248785,9.749341,0.088120184,1620000000000 ,1620000000000 ,1620000000000 ,1616812584960 -1616812584992 ,112.5673437,26.86292767,66.11588287,177.3324553,178.24125,9.749239,0.088112215,1620000000000 ,1620000000000 ,1620000000000 ,1616812584970 -1616812585000 ,112.5673438,26.86292679,66.11671448,177.3348868,178.2500909,9.746995,0.088097267,1620000000000 ,1620000000000 ,1620000000000 ,1616812584980 -1616812585011 ,112.5673438,26.86292591,66.11751556,177.33822,178.233707,9.743353,0.088065793,1620000000000 ,1620000000000 ,1620000000000 ,1616812584990 -1616812585022 ,112.5673438,26.86292503,66.11832428,177.3439027,178.2350491,9.739954,0.08803778,1620000000000 ,1620000000000 ,1620000000000 ,1616812585000 -1616812585032 ,112.5673438,26.86292415,66.11908722,177.3484379,178.2479423,9.736542,0.088001955,1620000000000 ,1620000000000 ,1620000000000 ,1616812585010 -1616812585041 ,112.5673439,26.86292327,66.11972809,177.3545578,178.2509902,9.733484,0.08797079,1620000000000 ,1620000000000 ,1620000000000 ,1616812585020 -1616812585054 ,112.5673439,26.86292239,66.12028503,177.3592569,178.2596694,9.730119,0.087938732,1620000000000 ,1620000000000 ,1620000000000 ,1616812585030 -1616812585063 ,112.5673439,26.86292151,66.12081146,177.3651036,178.2423664,9.727325,0.087909724,1620000000000 ,1620000000000 ,1620000000000 ,1616812585040 -1616812585073 ,112.5673439,26.86292063,66.12130737,177.3682728,178.2382919,9.725221,0.087889656,1620000000000 ,1620000000000 ,1620000000000 ,1616812585060 -1616812585083 ,112.567344,26.86291975,66.12176514,177.3748024,178.2604073,9.721625,0.087858708,1620000000000 ,1620000000000 ,1620000000000 ,1616812585060 -1616812585092 ,112.567344,26.86291887,66.12216949,177.379447,178.2628164,9.7191925,0.087828208,1620000000000 ,1620000000000 ,1620000000000 ,1616812585080 -1616812585102 ,112.567344,26.862918,66.12255096,177.3858674,178.2751543,9.716518,0.087806184,1620000000000 ,1620000000000 ,1620000000000 ,1616812585080 -1616812585113 ,112.567344,26.86291712,66.12294006,177.3902387,178.2715594,9.711569,0.087763832,1620000000000 ,1620000000000 ,1620000000000 ,1616812585100 -1616812585127 ,112.5673441,26.86291624,66.1232605,177.3953203,178.2707544,9.708878,0.08773217,1620000000000 ,1620000000000 ,1620000000000 ,1616812585110 -1616812585133 ,112.5673441,26.86291537,66.12351227,177.3996643,178.3039218,9.704278,0.087693367,1620000000000 ,1620000000000 ,1620000000000 ,1616812585120 -1616812585143 ,112.5673442,26.86291361,66.12388611,177.4066585,178.329602,9.698457,0.175302018,1620000000000 ,1620000000000 ,1620000000000 ,1616812585130 -1616812585152 ,112.5673442,26.86291361,66.12388611,177.4066585,-400,9.698457,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812585140 -1616812585162 ,112.5673442,26.86291186,66.12424469,177.411221,178.3297366,9.689525,0.175144769,1620000000000 ,1620000000000 ,1620000000000 ,1616812585150 -1616812585172 ,112.5673442,26.86291099,66.12442017,177.4132428,178.3454319,9.6858015,0.087515105,1620000000000 ,1620000000000 ,1620000000000 ,1616812585160 -1616812585183 ,112.5673443,26.86291011,66.1245575,177.4158382,178.3645498,9.682689,0.087483688,1620000000000 ,1620000000000 ,1620000000000 ,1616812585170 -1616812585194 ,112.5673443,26.86290924,66.12463379,177.4188162,178.3709942,9.680148,0.087463409,1620000000000 ,1620000000000 ,1620000000000 ,1616812585180 -1616812585203 ,112.5673443,26.86290837,66.12468719,177.4215209,178.3864006,9.675155,0.087414198,1620000000000 ,1620000000000 ,1620000000000 ,1616812585190 -1616812585213 ,112.5673443,26.86290749,66.12478638,177.4137892,177.2085931,9.684428,0.087544838,1620000000000 ,1620000000000 ,1620000000000 ,1616812585200 -1616812585225 ,112.5673444,26.86290662,66.12494659,177.4152645,175.7045221,9.679758,0.08783641,1620000000000 ,1620000000000 ,1620000000000 ,1616812585210 -1616812585234 ,112.5673445,26.86290574,66.12513733,177.4178053,175.7124079,9.675182,0.08779488,1620000000000 ,1620000000000 ,1620000000000 ,1616812585220 -1616812585243 ,112.5673445,26.86290487,66.12535858,177.4196631,175.7163394,9.669941,0.087745097,1620000000000 ,1620000000000 ,1620000000000 ,1616812585230 -1616812585255 ,112.5673446,26.86290399,66.12566376,177.421439,175.7294295,9.665243,0.087702204,1620000000000 ,1620000000000 ,1620000000000 ,1616812585240 -1616812585264 ,112.5673447,26.86290312,66.12600708,177.4234061,175.7309948,9.662652,0.08767577,1620000000000 ,1620000000000 ,1620000000000 ,1616812585250 -1616812585274 ,112.5673447,26.86290224,66.12635803,177.4266299,175.7324557,9.6609125,0.087656459,1620000000000 ,1620000000000 ,1620000000000 ,1616812585260 -1616812585286 ,112.5673448,26.86290137,66.12671661,177.4291161,175.7373288,9.656557,0.087624773,1620000000000 ,1620000000000 ,1620000000000 ,1616812585270 -1616812585295 ,112.5673449,26.8629005,66.12713623,177.4310559,175.7419905,9.650619,0.087572004,1620000000000 ,1620000000000 ,1620000000000 ,1616812585280 -1616812585307 ,112.5673449,26.86289962,66.12766266,177.4328864,175.7535722,9.644302,0.087518098,1620000000000 ,1620000000000 ,1620000000000 ,1616812585290 -1616812585317 ,112.567345,26.86289875,66.12826538,177.4347715,175.7662951,9.639325,0.08746878,1620000000000 ,1620000000000 ,1620000000000 ,1616812585300 -1616812585325 ,112.5673451,26.86289788,66.1289444,177.435837,175.7731506,9.634929,0.087433969,1620000000000 ,1620000000000 ,1620000000000 ,1616812585310 -1616812585338 ,112.5673451,26.86289701,66.12969971,177.4355638,175.7729469,9.630804,0.087393344,1620000000000 ,1620000000000 ,1620000000000 ,1616812585320 -1616812585344 ,112.5673452,26.86289614,66.13053131,177.4355365,175.7674722,9.626154,0.087354331,1620000000000 ,1620000000000 ,1620000000000 ,1616812585330 -1616812585355 ,112.5673453,26.86289526,66.13140869,177.4376402,175.7692914,9.621741,0.08731564,1620000000000 ,1620000000000 ,1620000000000 ,1616812585340 -1616812585367 ,112.5673453,26.86289439,66.13232422,177.4386784,175.7713693,9.618954,0.08729061,1620000000000 ,1620000000000 ,1620000000000 ,1616812585350 -1616812585375 ,112.5673454,26.86289352,66.13329315,177.4407001,175.7689476,9.613368,0.087244282,1620000000000 ,1620000000000 ,1620000000000 ,1616812585360 -1616812585387 ,112.5673454,26.86289265,66.13433838,177.4432956,175.757071,9.608384,0.087201583,1620000000000 ,1620000000000 ,1620000000000 ,1616812585370 -1616812585402 ,112.5673455,26.86289179,66.13546753,177.4459184,175.75109,9.602605,0.087156144,1620000000000 ,1620000000000 ,1620000000000 ,1616812585380 -1616812585408 ,112.5673456,26.86289092,66.13663483,177.450399,175.745525,9.598319,0.087113342,1620000000000 ,1620000000000 ,1620000000000 ,1616812585390 -1616812585419 ,112.5673456,26.86289005,66.13780212,177.4531311,175.7618185,9.59475,0.087079777,1620000000000 ,1620000000000 ,1620000000000 ,1616812585400 -1616812585427 ,112.5673457,26.86288918,66.13899231,177.4562729,175.7652152,9.589949,0.087041225,1620000000000 ,1620000000000 ,1620000000000 ,1616812585410 -1616812585435 ,112.5673458,26.86288831,66.1402359,177.4587591,175.7535983,9.586458,0.087010219,1620000000000 ,1620000000000 ,1620000000000 ,1616812585420 -1616812585445 ,112.5673458,26.86288745,66.14154053,177.4601525,175.7683946,9.581462,0.086968997,1620000000000 ,1620000000000 ,1620000000000 ,1616812585430 -1616812585457 ,112.5673459,26.86288658,66.14283752,177.4629939,175.7671881,9.577178,0.086927309,1620000000000 ,1620000000000 ,1620000000000 ,1616812585440 -1616812585467 ,112.5673459,26.86288571,66.144104,177.4672559,176.9677708,9.571812,0.086676442,1620000000000 ,1620000000000 ,1620000000000 ,1616812585450 -1616812585477 ,112.567346,26.86288485,66.14537811,177.4702065,178.1650387,9.567539,0.086468563,1620000000000 ,1620000000000 ,1620000000000 ,1616812585460 -1616812585486 ,112.567346,26.86288398,66.14672089,177.4731299,178.1536213,9.562393,0.086422528,1620000000000 ,1620000000000 ,1620000000000 ,1616812585470 -1616812585496 ,112.567346,26.86288312,66.14811707,177.4755887,178.1485872,9.558342,0.086388504,1620000000000 ,1620000000000 ,1620000000000 ,1616812585480 -1616812585506 ,112.5673461,26.86288226,66.14950562,177.4791677,178.1671983,9.555092,0.086360161,1620000000000 ,1620000000000 ,1620000000000 ,1616812585490 -1616812585523 ,112.5673461,26.8628814,66.15086365,177.4841674,178.1845726,9.552412,0.086335113,1620000000000 ,1620000000000 ,1620000000000 ,1616812585500 -1616812585527 ,112.5673461,26.86288053,66.15221405,177.4876645,178.1854402,9.547045,0.086291155,1620000000000 ,1620000000000 ,1620000000000 ,1616812585510 -1616812585545 ,112.5673461,26.86287967,66.15357971,177.4912982,178.1810125,9.542546,0.086253855,1620000000000 ,1620000000000 ,1620000000000 ,1616812585520 -1616812585557 ,112.5673462,26.86287881,66.15489197,177.4959427,178.1785889,9.5400095,0.086220673,1620000000000 ,1620000000000 ,1620000000000 ,1616812585530 -1616812585567 ,112.5673462,26.86287795,66.15610504,177.5000408,178.1931938,9.538233,0.086202866,1620000000000 ,1620000000000 ,1620000000000 ,1616812585540 -1616812585571 ,112.5673462,26.86287709,66.15723419,177.504658,178.2047151,9.5355625,0.086180536,1620000000000 ,1620000000000 ,1620000000000 ,1616812585550 -1616812585578 ,112.5673462,26.86287622,66.15836334,177.5071988,178.206657,9.53264,0.086155759,1620000000000 ,1620000000000 ,1620000000000 ,1616812585560 -1616812585590 ,112.5673463,26.86287536,66.15949249,177.511133,178.1872766,9.529323,0.086126024,1620000000000 ,1620000000000 ,1620000000000 ,1616812585570 -1616812585599 ,112.5673463,26.8628745,66.16057587,177.5140017,178.1832325,9.526308,0.086098025,1620000000000 ,1620000000000 ,1620000000000 ,1616812585580 -1616812585608 ,112.5673463,26.86287364,66.16156006,177.519821,178.1925191,9.5246725,0.086076625,1620000000000 ,1620000000000 ,1620000000000 ,1616812585590 -1616812585617 ,112.5673464,26.86287278,66.16244507,177.5233181,178.2098636,9.521967,0.086051693,1620000000000 ,1620000000000 ,1620000000000 ,1616812585600 -1616812585629 ,112.5673464,26.86287192,66.16327667,177.5278533,178.2112116,9.520426,0.086034709,1620000000000 ,1620000000000 ,1620000000000 ,1616812585610 -1616812585637 ,112.5673464,26.86287106,66.16409302,177.534383,178.1994014,9.5182905,0.086018513,1620000000000 ,1620000000000 ,1620000000000 ,1616812585620 -1616812585648 ,112.5673464,26.8628702,66.16487122,177.5405848,178.202844,9.5163,0.085995048,1620000000000 ,1620000000000 ,1620000000000 ,1616812585630 -1616812585658 ,112.5673465,26.86286934,66.16558838,177.5441638,178.2145756,9.515028,0.08598006,1620000000000 ,1620000000000 ,1620000000000 ,1616812585640 -1616812585668 ,112.5673465,26.86286848,66.16623688,177.5480707,178.229279,9.513201,0.085963551,1620000000000 ,1620000000000 ,1620000000000 ,1616812585650 -1616812585677 ,112.5673465,26.86286763,66.1668396,177.5505842,178.2399664,9.511366,0.085944075,1620000000000 ,1620000000000 ,1620000000000 ,1616812585660 -1616812585688 ,112.5673465,26.86286677,66.16738892,177.5540539,178.2442073,9.510662,0.085933004,1620000000000 ,1620000000000 ,1620000000000 ,1616812585670 -1616812585698 ,112.5673466,26.86286591,66.16785431,177.5572231,178.2570689,9.508846,0.085917483,1620000000000 ,1620000000000 ,1620000000000 ,1616812585680 -1616812585708 ,112.5673466,26.86286505,66.16825104,177.5600918,178.2784561,9.507996,0.085905738,1620000000000 ,1620000000000 ,1620000000000 ,1616812585690 -1616812585722 ,112.5673466,26.86286419,66.16859436,177.5650096,178.2782773,9.506698,0.085893038,1620000000000 ,1620000000000 ,1620000000000 ,1616812585700 -1616812585732 ,112.5673466,26.86286333,66.16892242,177.5670586,178.2943974,9.503398,0.085865519,1620000000000 ,1620000000000 ,1620000000000 ,1616812585710 -1616812585742 ,112.5673467,26.86286247,66.16925812,177.5715392,178.2927178,9.501323,0.085844509,1620000000000 ,1620000000000 ,1620000000000 ,1616812585720 -1616812585750 ,112.5673467,26.86286162,66.16957855,177.5742713,178.2961339,9.499948,0.085827018,1620000000000 ,1620000000000 ,1620000000000 ,1616812585730 -1616812585760 ,112.5673467,26.86286076,66.1698761,177.5768394,178.3243598,9.498589,0.085816566,1620000000000 ,1620000000000 ,1620000000000 ,1616812585740 -1616812585770 ,112.5673467,26.8628599,66.17015839,177.5787246,178.3438598,9.497124,0.08580082,1620000000000 ,1620000000000 ,1620000000000 ,1616812585750 -1616812585778 ,112.5673468,26.86285904,66.1704483,177.5814567,178.3471972,9.493403,0.085773001,1620000000000 ,1620000000000 ,1620000000000 ,1616812585760 -1616812585791 ,112.5673468,26.86285819,66.17073822,177.5833145,178.3428001,9.493306,0.085760168,1620000000000 ,1620000000000 ,1620000000000 ,1616812585770 -1616812585799 ,112.5673468,26.86285733,66.17102814,177.586511,178.3486138,9.492866,0.085758731,1620000000000 ,1620000000000 ,1620000000000 ,1616812585780 -1616812585811 ,112.5673468,26.86285647,66.17131805,177.5892977,178.3642229,9.492086,0.085752296,1620000000000 ,1620000000000 ,1620000000000 ,1616812585790 -1616812585823 ,112.5673469,26.86285562,66.17163849,177.5905545,178.3646619,9.4883375,0.085725711,1620000000000 ,1620000000000 ,1620000000000 ,1616812585800 -1616812585829 ,112.5673469,26.86285476,66.17201996,177.5932592,178.3544549,9.486248,0.085704727,1620000000000 ,1620000000000 ,1620000000000 ,1616812585810 -1616812585839 ,112.5673469,26.8628539,66.17243195,177.5965104,178.3440925,9.482929,0.085673601,1620000000000 ,1620000000000 ,1620000000000 ,1616812585820 -1616812585850 ,112.5673469,26.86285305,66.17284393,177.5993517,178.3286686,9.482404,0.085662421,1620000000000 ,1620000000000 ,1620000000000 ,1616812585830 -1616812585859 ,112.567347,26.86285219,66.17324829,177.603122,178.3277718,9.480147,0.085649318,1620000000000 ,1620000000000 ,1620000000000 ,1616812585840 -1616812585870 ,112.567347,26.86285133,66.17363739,177.6056082,178.3298564,9.479202,0.085632981,1620000000000 ,1620000000000 ,1620000000000 ,1616812585850 -1616812585880 ,112.567347,26.86285048,66.17409515,177.6077392,178.3192797,9.476623,0.085617236,1620000000000 ,1620000000000 ,1620000000000 ,1616812585860 -1616812585890 ,112.567347,26.86284962,66.17461395,177.6113182,178.3113742,9.474291,0.085593982,1620000000000 ,1620000000000 ,1620000000000 ,1616812585870 -1616812585900 ,112.5673471,26.86284877,66.17520142,177.6135312,178.311573,9.4746275,0.085593543,1620000000000 ,1620000000000 ,1620000000000 ,1616812585880 -1616812585913 ,112.5673471,26.86284791,66.17579651,177.6158808,178.322965,9.474979,0.085594974,1620000000000 ,1620000000000 ,1620000000000 ,1616812585890 -1616812585922 ,112.5673471,26.86284706,66.1763916,177.6179845,178.3365057,9.474395,0.085595244,1620000000000 ,1620000000000 ,1620000000000 ,1616812585900 -1616812585931 ,112.5673471,26.8628462,66.17700958,177.6202521,178.3318061,9.473336,0.085584881,1620000000000 ,1620000000000 ,1620000000000 ,1616812585910 -1616812585939 ,112.5673472,26.86284534,66.1776886,177.6222465,178.3182548,9.471764,0.085572772,1620000000000 ,1620000000000 ,1620000000000 ,1616812585920 -1616812585953 ,112.5673472,26.86284449,66.17843628,177.6248147,178.3306352,9.469218,0.085555454,1620000000000 ,1620000000000 ,1620000000000 ,1616812585930 -1616812585961 ,112.5673472,26.86284363,66.17922211,177.627738,178.3468595,9.470398,0.085556719,1620000000000 ,1620000000000 ,1620000000000 ,1616812585940 -1616812585971 ,112.5673472,26.86284278,66.18005371,177.6292407,178.3633377,9.468996,0.085553128,1620000000000 ,1620000000000 ,1620000000000 ,1616812585950 -1616812585982 ,112.5673473,26.86284192,66.18089294,177.6303881,178.3566032,9.467884,0.085538002,1620000000000 ,1620000000000 ,1620000000000 ,1616812585960 -1616812586004 ,112.5673473,26.86284107,66.18174744,177.6321913,178.3511215,9.465584,0.085525733,1620000000000 ,1620000000000 ,1620000000000 ,1616812585970 -1616812586012 ,112.5673473,26.86284021,66.18257904,177.6327924,178.3705386,9.465942,0.085517356,1620000000000 ,1620000000000 ,1620000000000 ,1616812585980 -1616812586014 ,112.5673473,26.86283936,66.18340302,177.6353332,178.3828284,9.465745,0.085520716,1620000000000 ,1620000000000 ,1620000000000 ,1616812585990 -1616812586023 ,112.5673474,26.86283851,66.18422699,177.6348687,178.3826392,9.464842,0.085509149,1620000000000 ,1620000000000 ,1620000000000 ,1616812586000 -1616812586035 ,112.5673474,26.86283765,66.18511963,177.6339671,178.3951786,9.464244,0.085508166,1620000000000 ,1620000000000 ,1620000000000 ,1616812586010 -1616812586042 ,112.5673474,26.8628368,66.18605804,177.6348961,178.3937433,9.464322,0.085505243,1620000000000 ,1620000000000 ,1620000000000 ,1616812586020 -1616812586051 ,112.5673474,26.86283594,66.18703461,177.6359889,178.4001925,9.465249,0.0855172,1620000000000 ,1620000000000 ,1620000000000 ,1616812586030 -1616812586061 ,112.5673475,26.86283509,66.18801117,177.6372456,178.4092997,9.463915,0.085507757,1620000000000 ,1620000000000 ,1620000000000 ,1616812586040 -1616812586072 ,112.5673475,26.86283423,66.18899536,177.6383111,178.4030947,9.463106,0.085500781,1620000000000 ,1620000000000 ,1620000000000 ,1616812586050 -1616812586084 ,112.5673475,26.86283338,66.18998718,177.6385024,178.3987539,9.46149,0.085488853,1620000000000 ,1620000000000 ,1620000000000 ,1616812586060 -1616812586092 ,112.5673475,26.86283252,66.19094849,177.6374096,178.4017309,9.4612055,0.085479961,1620000000000 ,1620000000000 ,1620000000000 ,1616812586070 -1616812586103 ,112.5673476,26.86283167,66.19184875,177.6368358,178.4132144,9.460436,0.085475093,1620000000000 ,1620000000000 ,1620000000000 ,1616812586080 -1616812586112 ,112.5673476,26.86283081,66.19271851,177.6358796,178.406274,9.460316,0.085470443,1620000000000 ,1620000000000 ,1620000000000 ,1616812586090 -1616812586122 ,112.5673476,26.86282996,66.19360352,177.6351146,178.3777382,9.459606,0.085465634,1620000000000 ,1620000000000 ,1620000000000 ,1616812586100 -1616812586133 ,112.5673476,26.8628291,66.19451904,177.634377,178.3624938,9.459972,0.085469015,1620000000000 ,1620000000000 ,1620000000000 ,1616812586120 -1616812586142 ,112.5673477,26.86282825,66.19540405,177.6331748,178.3588086,9.459847,0.085466796,1620000000000 ,1620000000000 ,1620000000000 ,1616812586130 -1616812586152 ,112.5673477,26.8628274,66.19624329,177.6344862,178.3716134,9.459493,0.085467665,1620000000000 ,1620000000000 ,1620000000000 ,1616812586140 -1616812586167 ,112.5673477,26.86282654,66.19708252,177.6330929,178.3819353,9.458319,0.085454449,1620000000000 ,1620000000000 ,1620000000000 ,1616812586150 -1616812586173 ,112.5673477,26.86282569,66.19797516,177.6350873,178.3599072,9.456861,0.085445928,1620000000000 ,1620000000000 ,1620000000000 ,1616812586160 -1616812586184 ,112.5673478,26.86282398,66.19976044,177.6363987,178.3499414,9.456659,0.170873545,1620000000000 ,1620000000000 ,1620000000000 ,1616812586170 -1616812586194 ,112.5673478,26.86282398,66.19976044,177.6363987,-400,9.456659,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812586180 -1616812586203 ,112.5673478,26.86282313,66.20056915,177.6370271,178.3874306,9.457696,0.085443194,1620000000000 ,1620000000000 ,1620000000000 ,1616812586180 -1616812586213 ,112.5673479,26.86282142,66.20256805,177.6382019,177.6613573,9.454398,0.170922707,1620000000000 ,1620000000000 ,1620000000000 ,1616812586200 -1616812586228 ,112.5673479,26.86282142,66.20256805,177.6382019,-400,9.454398,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812586210 -1616812586232 ,112.567348,26.86281971,66.20571136,177.634295,175.0472917,9.450577,0.171123898,1620000000000 ,1620000000000 ,1620000000000 ,1616812586220 -1616812586245 ,112.5673481,26.86281886,66.20715332,177.6341857,175.0757333,9.448296,0.085533319,1620000000000 ,1620000000000 ,1620000000000 ,1616812586230 -1616812586254 ,112.5673482,26.86281801,66.20854187,177.6344862,175.1050644,9.451199,0.085549575,1620000000000 ,1620000000000 ,1620000000000 ,1616812586240 -1616812586266 ,112.5673482,26.86281716,66.20995331,177.6310711,175.0776005,9.451251,0.085556857,1620000000000 ,1620000000000 ,1620000000000 ,1616812586250 -1616812586275 ,112.5673483,26.8628163,66.21147919,177.6298417,175.0446647,9.4509735,0.085562043,1620000000000 ,1620000000000 ,1620000000000 ,1616812586260 -1616812586284 ,112.5673484,26.86281545,66.21308899,177.6285303,175.0624796,9.4483,0.085545927,1620000000000 ,1620000000000 ,1620000000000 ,1616812586270 -1616812586293 ,112.5673485,26.8628146,66.21469879,177.6267818,175.0824851,9.445743,0.085517481,1620000000000 ,1620000000000 ,1620000000000 ,1616812586280 -1616812586303 ,112.5673485,26.86281375,66.21624756,177.6270277,175.1016286,9.446264,0.085514596,1620000000000 ,1620000000000 ,1620000000000 ,1616812586290 -1616812586314 ,112.5673486,26.8628129,66.2177124,177.6270823,175.0995473,9.44687,0.085519222,1620000000000 ,1620000000000 ,1620000000000 ,1616812586300 -1616812586323 ,112.5673487,26.86281204,66.21910095,177.6265905,175.0994125,9.449644,0.0855383,1620000000000 ,1620000000000 ,1620000000000 ,1616812586310 -1616812586334 ,112.5673487,26.86281119,66.22041321,177.6286396,175.0909911,9.448877,0.085538937,1620000000000 ,1620000000000 ,1620000000000 ,1616812586320 -1616812586345 ,112.5673488,26.86281034,66.22168732,177.6293499,175.0971846,9.446697,0.085519063,1620000000000 ,1620000000000 ,1620000000000 ,1616812586330 -1616812586357 ,112.5673489,26.86280949,66.22299194,177.6294592,175.105514,9.446372,0.085510294,1620000000000 ,1620000000000 ,1620000000000 ,1616812586340 -1616812586365 ,112.567349,26.86280863,66.22437286,177.6283937,175.0903658,9.446195,0.085511945,1620000000000 ,1620000000000 ,1620000000000 ,1616812586350 -1616812586374 ,112.567349,26.86280778,66.22575378,177.6274921,175.0836158,9.449277,0.085534281,1620000000000 ,1620000000000 ,1620000000000 ,1616812586360 -1616812586385 ,112.5673491,26.86280693,66.22704315,177.6276287,175.0949063,9.451986,0.085556456,1620000000000 ,1620000000000 ,1620000000000 ,1616812586370 -1616812586394 ,112.5673492,26.86280608,66.22821045,177.6274648,175.1209387,9.454244,0.08557115,1620000000000 ,1620000000000 ,1620000000000 ,1616812586380 -1616812586404 ,112.5673493,26.86280522,66.22930145,177.6253338,175.1285583,9.455877,0.085586761,1620000000000 ,1620000000000 ,1620000000000 ,1616812586390 -1616812586414 ,112.5673493,26.86280437,66.23036194,177.6233121,175.1230853,9.459378,0.085611064,1620000000000 ,1620000000000 ,1620000000000 ,1616812586400 -1616812586427 ,112.5673494,26.86280352,66.23140717,177.6204707,175.1257418,9.460104,0.085624161,1620000000000 ,1620000000000 ,1620000000000 ,1616812586410 -1616812586438 ,112.5673495,26.86280267,66.23243713,177.6191593,175.1399334,9.463659,0.085643639,1620000000000 ,1620000000000 ,1620000000000 ,1616812586420 -1616812586448 ,112.5673496,26.86280181,66.23345184,177.6185036,175.1374901,9.465893,0.085670953,1620000000000 ,1620000000000 ,1620000000000 ,1616812586430 -1616812586458 ,112.5673496,26.86280096,66.23444366,177.6162633,175.1360395,9.4700365,0.085699381,1620000000000 ,1620000000000 ,1620000000000 ,1616812586440 -1616812586465 ,112.5673497,26.8628001,66.23518372,177.6160994,176.5677073,9.47426,0.08563228,1620000000000 ,1620000000000 ,1620000000000 ,1616812586450 -1616812586475 ,112.5673497,26.86279925,66.23561859,177.6164545,178.0045413,9.479649,0.085624472,1620000000000 ,1620000000000 ,1620000000000 ,1616812586460 -1616812586485 ,112.5673497,26.86279839,66.23593903,177.6168644,178.0053474,9.48473,0.085667475,1620000000000 ,1620000000000 ,1620000000000 ,1616812586470 -1616812586495 ,112.5673498,26.86279753,66.23618317,177.6166458,178.0038707,9.489624,0.085706445,1620000000000 ,1620000000000 ,1620000000000 ,1616812586480 -1616812586505 ,112.5673498,26.86279668,66.23644257,177.6157715,178.0043431,9.492354,0.085737867,1620000000000 ,1620000000000 ,1620000000000 ,1616812586490 -1616812586518 ,112.5673498,26.86279582,66.236763,177.6155256,178.0071483,9.494264,0.085757976,1620000000000 ,1620000000000 ,1620000000000 ,1616812586500 -1616812586527 ,112.5673499,26.86279496,66.23712921,177.6160994,177.9952268,9.49626,0.085776431,1620000000000 ,1620000000000 ,1620000000000 ,1616812586510 -1616812586536 ,112.5673499,26.86279411,66.23752594,177.6145967,178.0050114,9.4984455,0.085797928,1620000000000 ,1620000000000 ,1620000000000 ,1616812586520 -1616812586546 ,112.5673499,26.86279325,66.2379303,177.6150885,178.0189285,9.501729,0.08581997,1620000000000 ,1620000000000 ,1620000000000 ,1616812586530 -1616812586562 ,112.5673499,26.86279239,66.23835754,177.6143782,178.0146891,9.505466,0.085859525,1620000000000 ,1620000000000 ,1620000000000 ,1616812586540 -1616812586566 ,112.56735,26.86279153,66.23881531,177.6138864,178.0163444,9.507093,0.085875636,1620000000000 ,1620000000000 ,1620000000000 ,1616812586550 -1616812586578 ,112.56735,26.86279067,66.23928833,177.6133673,178.0174217,9.5100565,0.085899526,1620000000000 ,1620000000000 ,1620000000000 ,1616812586560 -1616812586587 ,112.56735,26.86278981,66.23980713,177.6135039,178.0176722,9.510449,0.085913786,1620000000000 ,1620000000000 ,1620000000000 ,1616812586570 -1616812586599 ,112.5673501,26.86278896,66.24037933,177.6124111,178.0172098,9.510602,0.08591072,1620000000000 ,1620000000000 ,1620000000000 ,1616812586580 -1616812586609 ,112.5673501,26.8627881,66.24102783,177.6124384,178.0100107,9.513049,0.085932721,1620000000000 ,1620000000000 ,1620000000000 ,1616812586590 -1616812586617 ,112.5673501,26.86278724,66.24175262,177.6114822,177.9886862,9.511743,0.085932921,1620000000000 ,1620000000000 ,1620000000000 ,1616812586600 -1616812586627 ,112.5673502,26.86278638,66.24256897,177.6110997,177.9980762,9.513651,0.085944928,1620000000000 ,1620000000000 ,1620000000000 ,1616812586610 -1616812586638 ,112.5673502,26.86278552,66.24344635,177.6109904,177.9981634,9.517266,0.085975153,1620000000000 ,1620000000000 ,1620000000000 ,1616812586620 -1616812586647 ,112.5673502,26.86278466,66.24432373,177.6115641,177.9922801,9.519683,0.085996387,1620000000000 ,1620000000000 ,1620000000000 ,1616812586630 -1616812586657 ,112.5673502,26.8627838,66.24517822,177.6134766,178.004226,9.524718,0.086039044,1620000000000 ,1620000000000 ,1620000000000 ,1616812586640 -1616812586666 ,112.5673503,26.86278294,66.24598694,177.6148699,177.9979666,9.527054,0.086066325,1620000000000 ,1620000000000 ,1620000000000 ,1616812586650 -1616812586676 ,112.5673503,26.86278208,66.24679565,177.6174654,178.0100404,9.529105,0.086085099,1620000000000 ,1620000000000 ,1620000000000 ,1616812586660 -1616812586688 ,112.5673503,26.86278122,66.24765015,177.6185582,178.0016127,9.530735,0.086102055,1620000000000 ,1620000000000 ,1620000000000 ,1616812586670 -1616812586697 ,112.5673504,26.86278036,66.2485733,177.6197057,178.000915,9.5318,0.086114465,1620000000000 ,1620000000000 ,1620000000000 ,1616812586680 -1616812586710 ,112.5673504,26.8627795,66.24954987,177.6223285,178.0123853,9.534095,0.086133272,1620000000000 ,1620000000000 ,1620000000000 ,1616812586690 -1616812586719 ,112.5673504,26.86277864,66.25054169,177.6249513,178.0152168,9.53869,0.086171736,1620000000000 ,1620000000000 ,1620000000000 ,1616812586700 -1616812586731 ,112.5673505,26.86277778,66.25153351,177.6264266,178.0113399,9.541991,0.086201936,1620000000000 ,1620000000000 ,1620000000000 ,1616812586710 -1616812586740 ,112.5673505,26.86277691,66.25254059,177.6276014,178.0100227,9.545462,0.086237513,1620000000000 ,1620000000000 ,1620000000000 ,1616812586720 -1616812586759 ,112.5673505,26.86277605,66.2535553,177.6287489,178.0135252,9.549108,0.086272377,1620000000000 ,1620000000000 ,1620000000000 ,1616812586730 -1616812586761 ,112.5673505,26.86277519,66.25457764,177.6299783,178.0264669,9.551126,0.086292159,1620000000000 ,1620000000000 ,1620000000000 ,1616812586740 -1616812586770 ,112.5673506,26.86277433,66.25561523,177.6307706,178.0330435,9.55394,0.086314471,1620000000000 ,1620000000000 ,1620000000000 ,1616812586750 -1616812586778 ,112.5673506,26.86277346,66.2566452,177.6322733,178.0338077,9.555044,0.086331435,1620000000000 ,1620000000000 ,1620000000000 ,1616812586760 -1616812586791 ,112.5673506,26.8627726,66.25765991,177.6353878,178.0344549,9.556679,0.086347421,1620000000000 ,1620000000000 ,1620000000000 ,1616812586770 -1616812586798 ,112.5673507,26.86277174,66.25861359,177.6374642,178.040241,9.560388,0.086370712,1620000000000 ,1620000000000 ,1620000000000 ,1616812586780 -1616812586809 ,112.5673507,26.86277087,66.25950623,177.6396499,178.051739,9.563468,0.086400923,1620000000000 ,1620000000000 ,1620000000000 ,1616812586790 -1616812586819 ,112.5673507,26.86277001,66.26030731,177.6416716,178.0558561,9.568027,0.086431601,1620000000000 ,1620000000000 ,1620000000000 ,1616812586800 -1616812586828 ,112.5673507,26.86276915,66.26105499,177.6434748,178.0618991,9.571733,0.086468832,1620000000000 ,1620000000000 ,1620000000000 ,1616812586810 -1616812586839 ,112.5673508,26.86276828,66.26177979,177.644349,178.0498595,9.573239,0.086489236,1620000000000 ,1620000000000 ,1620000000000 ,1616812586820 -1616812586851 ,112.5673508,26.86276742,66.26248169,177.6462068,178.0399854,9.576682,0.08651323,1620000000000 ,1620000000000 ,1620000000000 ,1616812586830 -1616812586858 ,112.5673508,26.86276655,66.26312256,177.6464527,178.0248162,9.579447,0.086537427,1620000000000 ,1620000000000 ,1620000000000 ,1616812586840 -1616812586873 ,112.5673509,26.86276569,66.26371002,177.6492394,178.018836,9.581095,0.086551806,1620000000000 ,1620000000000 ,1620000000000 ,1616812586850 -1616812586881 ,112.5673509,26.86276482,66.26430511,177.6483105,178.0291756,9.58439,0.086580296,1620000000000 ,1620000000000 ,1620000000000 ,1616812586860 -1616812586891 ,112.5673509,26.86276396,66.26494598,177.6491028,178.0156879,9.58615,0.08660293,1620000000000 ,1620000000000 ,1620000000000 ,1616812586870 -1616812586900 ,112.567351,26.86276309,66.26560211,177.650906,178.0109682,9.589737,0.08662688,1620000000000 ,1620000000000 ,1620000000000 ,1616812586880 -1616812586911 ,112.567351,26.86276222,66.26624298,177.6519169,178.009207,9.593493,0.086664286,1620000000000 ,1620000000000 ,1620000000000 ,1616812586890 -1616812586919 ,112.567351,26.86276136,66.26685333,177.6541845,178.0093975,9.596164,0.086688082,1620000000000 ,1620000000000 ,1620000000000 ,1616812586900 -1616812586929 ,112.567351,26.86276049,66.26745605,177.6545943,178.0145506,9.598968,0.086712323,1620000000000 ,1620000000000 ,1620000000000 ,1616812586910 -1616812586939 ,112.5673511,26.86275962,66.26808167,177.65525,178.0132071,9.601871,0.086741799,1620000000000 ,1620000000000 ,1620000000000 ,1616812586920 -1616812586949 ,112.5673511,26.86275962,66.26808167,177.657545,-400,9.603167,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812586930 -1616812586960 ,112.5673511,26.86275789,66.2694397,177.658911,178.0122017,9.60565,0.173532108,1620000000000 ,1620000000000 ,1620000000000 ,1616812586940 -1616812586986 ,112.5673512,26.86275702,66.2701416,177.6592115,178.0162676,9.609193,0.086810297,1620000000000 ,1620000000000 ,1620000000000 ,1616812586950 -1616812586991 ,112.5673512,26.86275616,66.27081299,177.6609327,178.015219,9.612981,0.086839989,1620000000000 ,1620000000000 ,1620000000000 ,1616812586960 -1616812586995 ,112.5673512,26.86275529,66.27146912,177.6598945,178.0214552,9.615704,0.08686733,1620000000000 ,1620000000000 ,1620000000000 ,1616812586970 -1616812587002 ,112.5673513,26.86275442,66.27212524,177.6592388,178.0175821,9.617822,0.086890101,1620000000000 ,1620000000000 ,1620000000000 ,1616812586980 -1616812587010 ,112.5673513,26.86275355,66.27278137,177.6597033,178.0239395,9.619985,0.086906226,1620000000000 ,1620000000000 ,1620000000000 ,1616812586990 -1616812587020 ,112.5673513,26.86275268,66.27342224,177.6597033,178.022369,9.623193,0.086931995,1620000000000 ,1620000000000 ,1620000000000 ,1616812587000 -1616812587030 ,112.5673513,26.86275181,66.27404022,177.6607688,178.0260298,9.626111,0.086959934,1620000000000 ,1620000000000 ,1620000000000 ,1616812587010 -1616812587040 ,112.5673514,26.86275094,66.27463531,177.659594,178.035254,9.629942,0.086990842,1620000000000 ,1620000000000 ,1620000000000 ,1616812587020 -1616812587051 ,112.5673514,26.86275007,66.27519989,177.6588564,178.0299967,9.631911,0.087011947,1620000000000 ,1620000000000 ,1620000000000 ,1616812587030 -1616812587060 ,112.5673514,26.8627492,66.27577209,177.6580641,178.0401845,9.63408,0.087032005,1620000000000 ,1620000000000 ,1620000000000 ,1616812587040 -1616812587073 ,112.5673515,26.86274833,66.27636719,177.6570805,178.0493187,9.636648,0.087053167,1620000000000 ,1620000000000 ,1620000000000 ,1616812587050 -1616812587081 ,112.5673515,26.86274746,66.27693176,177.6574357,178.0524471,9.640095,0.087082054,1620000000000 ,1620000000000 ,1620000000000 ,1616812587060 -1616812587093 ,112.5673515,26.86274659,66.27748871,177.6573537,178.0570957,9.640834,0.087092906,1620000000000 ,1620000000000 ,1620000000000 ,1616812587070 -1616812587101 ,112.5673516,26.86274572,66.27806091,177.6583919,178.0580802,9.64405,0.08711947,1620000000000 ,1620000000000 ,1620000000000 ,1616812587080 -1616812587111 ,112.5673516,26.86274485,66.27863312,177.6576542,178.0563629,9.646891,0.087142332,1620000000000 ,1620000000000 ,1620000000000 ,1616812587090 -1616812587121 ,112.5673516,26.86274398,66.27918243,177.658146,178.053843,9.650831,0.087172696,1620000000000 ,1620000000000 ,1620000000000 ,1616812587100 -1616812587132 ,112.5673516,26.86274311,66.27967834,177.6561516,178.061488,9.653191,0.087197489,1620000000000 ,1620000000000 ,1620000000000 ,1616812587110 -1616812587141 ,112.5673517,26.86274224,66.28018951,177.6545943,178.0717692,9.6554365,0.087220725,1620000000000 ,1620000000000 ,1620000000000 ,1616812587120 -1616812587151 ,112.5673517,26.86274136,66.28072357,177.6535288,178.0566272,9.658027,0.087242597,1620000000000 ,1620000000000 ,1620000000000 ,1616812587130 -1616812587162 ,112.5673517,26.86274049,66.28128052,177.6530644,178.0486785,9.659756,0.087255829,1620000000000 ,1620000000000 ,1620000000000 ,1616812587140 -1616812587180 ,112.5673518,26.86273962,66.28183746,177.6512339,178.0451295,9.662489,0.087281944,1620000000000 ,1620000000000 ,1620000000000 ,1616812587150 -1616812587186 ,112.5673518,26.86273875,66.28237152,177.6511246,178.0356484,9.66565,0.087306636,1620000000000 ,1620000000000 ,1620000000000 ,1616812587160 -1616812587191 ,112.5673518,26.86273788,66.28292084,177.6524087,178.0343685,9.668204,0.087328694,1620000000000 ,1620000000000 ,1620000000000 ,1616812587180 -1616812587205 ,112.5673519,26.862737,66.28349304,177.6536654,178.0276865,9.670768,0.087352085,1620000000000 ,1620000000000 ,1620000000000 ,1616812587180 -1616812587213 ,112.5673519,26.86273613,66.28409576,177.6536108,178.0113245,9.672395,0.087370015,1620000000000 ,1620000000000 ,1620000000000 ,1616812587190 -1616812587223 ,112.5673519,26.86273526,66.28505707,177.661807,176.653404,9.666489,0.087395303,1620000000000 ,1620000000000 ,1620000000000 ,1616812587200 -1616812587234 ,112.5673521,26.86273351,66.28812408,177.6622441,175.1742627,9.670282,0.174848686,1620000000000 ,1620000000000 ,1620000000000 ,1616812587220 -1616812587242 ,112.5673521,26.86273351,66.28812408,177.6622441,-400,9.670282,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812587230 -1616812587252 ,112.5673522,26.86273264,66.28970337,177.6618343,175.1695688,9.671176,0.087443834,1620000000000 ,1620000000000 ,1620000000000 ,1616812587240 -1616812587262 ,112.5673522,26.86273177,66.29133606,177.6645391,175.1729336,9.673092,0.087461292,1620000000000 ,1620000000000 ,1620000000000 ,1616812587240 -1616812587274 ,112.5673524,26.86273003,66.29469299,177.6657139,175.1583764,9.6758585,0.174954704,1620000000000 ,1620000000000 ,1620000000000 ,1616812587260 -1616812587285 ,112.5673524,26.86272916,66.29640198,177.6672985,175.1726958,9.676756,0.087498875,1620000000000 ,1620000000000 ,1620000000000 ,1616812587270 -1616812587294 ,112.5673525,26.86272828,66.29812622,177.6673531,175.1740309,9.678552,0.087512568,1620000000000 ,1620000000000 ,1620000000000 ,1616812587280 -1616812587306 ,112.5673525,26.86272828,66.29812622,177.6673531,-400,9.678552,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812587290 -1616812587313 ,112.5673527,26.86272654,66.30181122,177.6650855,175.1698886,9.680594,0.175054541,1620000000000 ,1620000000000 ,1620000000000 ,1616812587300 -1616812587323 ,112.5673527,26.86272567,66.30371857,177.6651128,175.1608085,9.680622,0.087541073,1620000000000 ,1620000000000 ,1620000000000 ,1616812587310 -1616812587336 ,112.5673528,26.8627248,66.30563354,177.6648669,175.1756514,9.681641,0.087543583,1620000000000 ,1620000000000 ,1620000000000 ,1616812587320 -1616812587345 ,112.5673529,26.86272392,66.30758667,177.66402,175.1930371,9.682032,0.087551822,1620000000000 ,1620000000000 ,1620000000000 ,1616812587330 -1616812587360 ,112.567353,26.86272305,66.30961609,177.6628452,175.196564,9.682967,0.087562583,1620000000000 ,1620000000000 ,1620000000000 ,1616812587340 -1616812587365 ,112.567353,26.86272218,66.31169128,177.6605502,175.1891624,9.6849575,0.087578818,1620000000000 ,1620000000000 ,1620000000000 ,1616812587350 -1616812587377 ,112.5673531,26.8627213,66.31375885,177.6587198,175.2070049,9.686252,0.087591596,1620000000000 ,1620000000000 ,1620000000000 ,1616812587360 -1616812587386 ,112.5673532,26.86272043,66.31583405,177.6555232,175.23154,9.686614,0.087597551,1620000000000 ,1620000000000 ,1620000000000 ,1616812587370 -1616812587394 ,112.5673533,26.86271956,66.31791687,177.6512065,175.2352113,9.688417,0.087614011,1620000000000 ,1620000000000 ,1620000000000 ,1616812587380 -1616812587404 ,112.5673533,26.86271869,66.32004547,177.6458244,175.2310006,9.6883745,0.087618177,1620000000000 ,1620000000000 ,1620000000000 ,1616812587390 -1616812587415 ,112.5673534,26.86271781,66.32218933,177.6426005,175.2308788,9.689995,0.087626251,1620000000000 ,1620000000000 ,1620000000000 ,1616812587400 -1616812587424 ,112.5673535,26.86271694,66.3243103,177.6376828,175.2298508,9.690192,0.087636103,1620000000000 ,1620000000000 ,1620000000000 ,1616812587410 -1616812587434 ,112.5673535,26.86271607,66.32640076,177.6325191,175.248252,9.692372,0.087648784,1620000000000 ,1620000000000 ,1620000000000 ,1616812587420 -1616812587444 ,112.5673536,26.86271519,66.32847595,177.6290494,175.2471988,9.69289,0.087658014,1620000000000 ,1620000000000 ,1620000000000 ,1616812587430 -1616812587455 ,112.5673537,26.86271432,66.33056641,177.6242683,175.2294291,9.693551,0.087666752,1620000000000 ,1620000000000 ,1620000000000 ,1616812587440 -1616812587464 ,112.5673537,26.86271344,66.33232117,177.6187222,176.5625363,9.694887,0.087618806,1620000000000 ,1620000000000 ,1620000000000 ,1616812587450 -1616812587474 ,112.5673538,26.86271257,66.3336792,177.6130941,177.9046407,9.696072,0.087614246,1620000000000 ,1620000000000 ,1620000000000 ,1616812587460 -1616812587485 ,112.5673538,26.86271169,66.33496857,177.6085862,177.9051428,9.698151,0.087633409,1620000000000 ,1620000000000 ,1620000000000 ,1616812587470 -1616812587495 ,112.5673538,26.86271082,66.33622742,177.6050891,177.9064977,9.698898,0.087640618,1620000000000 ,1620000000000 ,1620000000000 ,1616812587480 -1616812587507 ,112.5673539,26.86270994,66.33750916,177.6005265,177.8891047,9.700891,0.087657292,1620000000000 ,1620000000000 ,1620000000000 ,1616812587490 -1616812587514 ,112.5673539,26.86270906,66.33879089,177.5962645,177.8708917,9.700907,0.087663481,1620000000000 ,1620000000000 ,1620000000000 ,1616812587500 -1616812587525 ,112.5673539,26.86270819,66.34004211,177.5926035,177.8639017,9.702501,0.087674628,1620000000000 ,1620000000000 ,1620000000000 ,1616812587510 -1616812587535 ,112.567354,26.86270731,66.34120178,177.5901993,177.860397,9.70411,0.087684975,1620000000000 ,1620000000000 ,1620000000000 ,1616812587520 -1616812587546 ,112.567354,26.86270644,66.34229279,177.5891611,177.8538052,9.704305,0.087687636,1620000000000 ,1620000000000 ,1620000000000 ,1616812587530 -1616812587555 ,112.567354,26.86270556,66.34335327,177.5874945,177.8337175,9.705732,0.087701993,1620000000000 ,1620000000000 ,1620000000000 ,1616812587540 -1616812587566 ,112.5673541,26.86270468,66.34440613,177.5873853,177.8037419,9.704623,0.087692381,1620000000000 ,1620000000000 ,1620000000000 ,1616812587550 -1616812587577 ,112.5673541,26.86270381,66.34545135,177.5856914,177.7985747,9.704921,0.087691494,1620000000000 ,1620000000000 ,1620000000000 ,1616812587560 -1616812587588 ,112.5673541,26.86270293,66.34644318,177.586511,177.786808,9.7062845,0.087702301,1620000000000 ,1620000000000 ,1620000000000 ,1616812587570 -1616812587595 ,112.5673542,26.86270205,66.34735107,177.5853908,177.7890857,9.7080345,0.08771459,1620000000000 ,1620000000000 ,1620000000000 ,1616812587580 -1616812587606 ,112.5673542,26.86270118,66.34822845,177.5845985,177.7862651,9.709402,0.087723445,1620000000000 ,1620000000000 ,1620000000000 ,1616812587590 -1616812587616 ,112.5673542,26.8627003,66.34911346,177.5859099,177.7610857,9.709456,0.087731607,1620000000000 ,1620000000000 ,1620000000000 ,1616812587600 -1616812587634 ,112.5673543,26.86269942,66.34998322,177.5873033,177.7647107,9.710594,0.087733937,1620000000000 ,1620000000000 ,1620000000000 ,1616812587610 -1616812587637 ,112.5673543,26.86269855,66.35079956,177.5910462,177.7686359,9.710574,0.087737999,1620000000000 ,1620000000000 ,1620000000000 ,1616812587620 -1616812587647 ,112.5673543,26.86269767,66.3515625,177.5941335,177.7610274,9.71061,0.087736308,1620000000000 ,1620000000000 ,1620000000000 ,1616812587630 -1616812587656 ,112.5673544,26.86269679,66.35232544,177.5964284,177.7567183,9.710324,0.087734614,1620000000000 ,1620000000000 ,1620000000000 ,1616812587640 -1616812587667 ,112.5673544,26.86269592,66.35308075,177.6005812,177.7490471,9.711413,0.087737704,1620000000000 ,1620000000000 ,1620000000000 ,1616812587650 -1616812587676 ,112.5673544,26.86269504,66.35381317,177.6047066,177.7634391,9.71218,0.087745805,1620000000000 ,1620000000000 ,1620000000000 ,1616812587660 -1616812587688 ,112.5673545,26.86269416,66.35451508,177.6091599,177.7632501,9.713077,0.08774848,1620000000000 ,1620000000000 ,1620000000000 ,1616812587670 -1616812587698 ,112.5673545,26.86269329,66.35519409,177.612575,177.777295,9.713275,0.087756454,1620000000000 ,1620000000000 ,1620000000000 ,1616812587680 -1616812587707 ,112.5673545,26.86269241,66.35591125,177.6161267,177.7868453,9.712884,0.087749228,1620000000000 ,1620000000000 ,1620000000000 ,1616812587690 -1616812587719 ,112.5673546,26.86269153,66.35668182,177.6202794,177.7866827,9.712643,0.087750917,1620000000000 ,1620000000000 ,1620000000000 ,1616812587700 -1616812587728 ,112.5673546,26.86269066,66.35748291,177.6244595,177.7989567,9.712518,0.087749926,1620000000000 ,1620000000000 ,1620000000000 ,1616812587710 -1616812587738 ,112.5673547,26.86268978,66.35832214,177.6303881,177.8200674,9.711586,0.087744159,1620000000000 ,1620000000000 ,1620000000000 ,1616812587720 -1616812587747 ,112.5673547,26.8626889,66.35917664,177.6347321,177.8289684,9.710959,0.087735127,1620000000000 ,1620000000000 ,1620000000000 ,1616812587730 -1616812587757 ,112.5673547,26.86268803,66.36006165,177.6405514,177.8356365,9.708997,0.087722818,1620000000000 ,1620000000000 ,1620000000000 ,1616812587740 -1616812587767 ,112.5673547,26.86268715,66.36096191,177.645879,177.8433358,9.709965,0.087724224,1620000000000 ,1620000000000 ,1620000000000 ,1616812587750 -1616812587777 ,112.5673548,26.86268627,66.36184692,177.6518622,177.8442648,9.711266,0.08773432,1620000000000 ,1620000000000 ,1620000000000 ,1616812587760 -1616812587788 ,112.5673548,26.8626854,66.36271667,177.6542118,177.8484624,9.710742,0.087732419,1620000000000 ,1620000000000 ,1620000000000 ,1616812587770 -1616812587797 ,112.5673548,26.86268452,66.3635788,177.658228,177.8551282,9.710667,0.087730457,1620000000000 ,1620000000000 ,1620000000000 ,1616812587780 -1616812587808 ,112.5673549,26.86268364,66.36443329,177.6620256,177.8555036,9.709205,0.087718425,1620000000000 ,1620000000000 ,1620000000000 ,1616812587790 -1616812587821 ,112.5673549,26.86268277,66.36531067,177.6662876,177.8649755,9.707547,0.087703711,1620000000000 ,1620000000000 ,1620000000000 ,1616812587800 -1616812587831 ,112.5673549,26.86268189,66.36621094,177.6703311,177.8706174,9.706575,0.087694953,1620000000000 ,1620000000000 ,1620000000000 ,1616812587810 -1616812587839 ,112.567355,26.86268101,66.36716461,177.6744565,177.8735322,9.705382,0.087687607,1620000000000 ,1620000000000 ,1620000000000 ,1616812587820 -1616812587850 ,112.567355,26.86268014,66.36817932,177.677653,177.8929223,9.704628,0.087676626,1620000000000 ,1620000000000 ,1620000000000 ,1616812587830 -1616812587860 ,112.567355,26.86267926,66.36924744,177.6849204,177.89558,9.705088,0.087684129,1620000000000 ,1620000000000 ,1620000000000 ,1616812587840 -1616812587871 ,112.5673551,26.86267839,66.37033081,177.6908763,177.906294,9.703968,0.087676476,1620000000000 ,1620000000000 ,1620000000000 ,1616812587850 -1616812587885 ,112.5673551,26.86267751,66.37147522,177.695111,177.906123,9.701972,0.08766119,1620000000000 ,1620000000000 ,1620000000000 ,1616812587860 -1616812587894 ,112.5673551,26.86267663,66.37265778,177.6998648,177.9040786,9.7012005,0.087653436,1620000000000 ,1620000000000 ,1620000000000 ,1616812587870 -1616812587903 ,112.5673552,26.86267576,66.37387085,177.7050831,177.9146456,9.70007,0.087645902,1620000000000 ,1620000000000 ,1620000000000 ,1616812587880 -1616812587917 ,112.5673552,26.86267488,66.37506866,177.7091265,177.9335014,9.700809,0.087646444,1620000000000 ,1620000000000 ,1620000000000 ,1616812587890 -1616812587923 ,112.5673552,26.86267401,66.37627411,177.7150552,177.9436289,9.699922,0.087642469,1620000000000 ,1620000000000 ,1620000000000 ,1616812587900 -1616812587930 ,112.5673553,26.86267313,66.37753296,177.7195631,177.9463957,9.698863,0.087635582,1620000000000 ,1620000000000 ,1620000000000 ,1616812587910 -1616812587940 ,112.5673553,26.86267225,66.37882996,177.7220219,177.957545,9.697396,0.087622601,1620000000000 ,1620000000000 ,1620000000000 ,1616812587920 -1616812587951 ,112.5673553,26.86267138,66.38011932,177.7256556,177.9624405,9.6960335,0.087611807,1620000000000 ,1620000000000 ,1620000000000 ,1616812587930 -1616812587963 ,112.5673554,26.8626705,66.38137817,177.7263933,177.9821905,9.695604,0.087602485,1620000000000 ,1620000000000 ,1620000000000 ,1616812587940 -1616812587973 ,112.5673554,26.86266963,66.38264465,177.7265299,177.999276,9.695498,0.087604483,1620000000000 ,1620000000000 ,1620000000000 ,1616812587950 -1616812587986 ,112.5673554,26.86266875,66.38395691,177.7267211,177.999339,9.693441,0.08758994,1620000000000 ,1620000000000 ,1620000000000 ,1616812587960 -1616812587993 ,112.5673555,26.86266788,66.38529205,177.7266665,178.0000062,9.693746,0.087589258,1620000000000 ,1620000000000 ,1620000000000 ,1616812587970 -1616812588002 ,112.5673555,26.862667,66.38659668,177.7267211,178.002244,9.693449,0.087583954,1620000000000 ,1620000000000 ,1620000000000 ,1616812587980 -1616812588012 ,112.5673555,26.86266613,66.38782501,177.7246721,178.0187899,9.69363,0.087584625,1620000000000 ,1620000000000 ,1620000000000 ,1616812587990 -1616812588021 ,112.5673555,26.86266525,66.3890152,177.7238251,178.0416095,9.691932,0.087574028,1620000000000 ,1620000000000 ,1620000000000 ,1616812588000 -1616812588032 ,112.5673556,26.86266438,66.3902359,177.7209564,178.0289375,9.690283,0.087558931,1620000000000 ,1620000000000 ,1620000000000 ,1616812588010 -1616812588041 ,112.5673556,26.8626635,66.39151001,177.7183883,178.0194091,9.688187,0.087542381,1620000000000 ,1620000000000 ,1620000000000 ,1616812588020 -1616812588053 ,112.5673556,26.86266263,66.39277649,177.7154376,178.0262169,9.6883,0.087536818,1620000000000 ,1620000000000 ,1620000000000 ,1616812588040 -1616812588062 ,112.5673557,26.86266175,66.3939743,177.7119952,178.0375485,9.688106,0.087534136,1620000000000 ,1620000000000 ,1620000000000 ,1616812588050 -1616812588072 ,112.5673557,26.86266088,66.39510345,177.7071868,178.0532647,9.687571,0.087531881,1620000000000 ,1620000000000 ,1620000000000 ,1616812588050 -1616812588084 ,112.5673557,26.86266,66.39622498,177.7011762,178.0468426,9.688071,0.087530965,1620000000000 ,1620000000000 ,1620000000000 ,1616812588070 -1616812588094 ,112.5673558,26.86265913,66.39735413,177.6958487,178.0377978,9.688543,0.087537618,1620000000000 ,1620000000000 ,1620000000000 ,1616812588080 -1616812588106 ,112.5673558,26.86265825,66.39848328,177.6894556,178.0378525,9.688117,0.087534496,1620000000000 ,1620000000000 ,1620000000000 ,1616812588080 -1616812588115 ,112.5673558,26.8626565,66.40071106,177.6803032,178.0407777,9.685159,0.175033989,1620000000000 ,1620000000000 ,1620000000000 ,1616812588100 -1616812588123 ,112.5673559,26.86265563,66.40184021,177.6748936,178.0286114,9.684958,0.087506364,1620000000000 ,1620000000000 ,1620000000000 ,1616812588110 -1616812588133 ,112.5673559,26.86265475,66.40296936,177.6710687,178.0096267,9.68542,0.08750824,1620000000000 ,1620000000000 ,1620000000000 ,1616812588120 -1616812588144 ,112.5673559,26.86265388,66.40407562,177.6648669,178.0044615,9.685355,0.087506978,1620000000000 ,1620000000000 ,1620000000000 ,1616812588130 -1616812588154 ,112.567356,26.862653,66.40518188,177.660277,178.0042623,9.685626,0.087513144,1620000000000 ,1620000000000 ,1620000000000 ,1616812588140 -1616812588163 ,112.567356,26.86265213,66.40631104,177.6535015,177.9939596,9.684174,0.087501382,1620000000000 ,1620000000000 ,1620000000000 ,1616812588150 -1616812588172 ,112.567356,26.86265126,66.4074707,177.6488296,177.9781597,9.682374,0.087484423,1620000000000 ,1620000000000 ,1620000000000 ,1616812588160 -1616812588188 ,112.5673561,26.86265038,66.40863037,177.6445403,177.9685096,9.682485,0.087485944,1620000000000 ,1620000000000 ,1620000000000 ,1616812588170 -1616812588194 ,112.5673561,26.86264951,66.40975952,177.640852,177.9622967,9.68252,0.087481812,1620000000000 ,1620000000000 ,1620000000000 ,1616812588180 -1616812588205 ,112.5673561,26.86264863,66.41085815,177.6355518,177.956253,9.682145,0.087477411,1620000000000 ,1620000000000 ,1620000000000 ,1616812588190 -1616812588213 ,112.5673561,26.86264776,66.41163635,177.6389942,177.9002205,9.683276,0.087437032,1620000000000 ,1620000000000 ,1620000000000 ,1616812588200 -1616812588224 ,112.5673562,26.86264689,66.41194916,177.6353332,177.7612861,9.682431,0.087409897,1620000000000 ,1620000000000 ,1620000000000 ,1616812588210 -1616812588235 ,112.5673562,26.86264601,66.41229248,177.6312351,177.754088,9.6814575,0.087398456,1620000000000 ,1620000000000 ,1620000000000 ,1616812588220 -1616812588244 ,112.5673563,26.86264514,66.4126358,177.6278746,177.7500503,9.680647,0.087388872,1620000000000 ,1620000000000 ,1620000000000 ,1616812588230 -1616812588258 ,112.5673563,26.86264427,66.41293335,177.6253611,177.735764,9.678951,0.08737717,1620000000000 ,1620000000000 ,1620000000000 ,1616812588240 -1616812588265 ,112.5673563,26.86264339,66.41318512,177.6209078,177.7313125,9.679468,0.087373964,1620000000000 ,1620000000000 ,1620000000000 ,1616812588250 -1616812588273 ,112.5673564,26.86264252,66.41343689,177.6158808,177.7176382,9.678115,0.087367675,1620000000000 ,1620000000000 ,1620000000000 ,1616812588260 -1616812588284 ,112.5673564,26.86264165,66.41371155,177.6106079,177.7009277,9.67649,0.087351506,1620000000000 ,1620000000000 ,1620000000000 ,1616812588270 -1616812588298 ,112.5673564,26.86264077,66.41401672,177.6067557,177.7046723,9.675236,0.087342035,1620000000000 ,1620000000000 ,1620000000000 ,1616812588280 -1616812588305 ,112.5673565,26.8626399,66.41430664,177.6037231,177.7075505,9.6747875,0.08733113,1620000000000 ,1620000000000 ,1620000000000 ,1616812588290 -1616812588317 ,112.5673565,26.86263903,66.41458893,177.5988873,177.7025526,9.673565,0.087325446,1620000000000 ,1620000000000 ,1620000000000 ,1616812588300 -1616812588325 ,112.5673565,26.86263816,66.41488647,177.594352,177.6891899,9.674338,0.087326821,1620000000000 ,1620000000000 ,1620000000000 ,1616812588310 -1616812588339 ,112.5673566,26.86263728,66.41517639,177.5911828,177.6802818,9.673587,0.087327127,1620000000000 ,1620000000000 ,1620000000000 ,1616812588320 -1616812588345 ,112.5673566,26.86263641,66.41545868,177.5868935,177.6837128,9.672436,0.087312425,1620000000000 ,1620000000000 ,1620000000000 ,1616812588330 -1616812588355 ,112.5673566,26.86263554,66.41573334,177.5817299,177.6861897,9.670756,0.087303094,1620000000000 ,1620000000000 ,1620000000000 ,1616812588340 -1616812588364 ,112.5673567,26.86263467,66.41602325,177.5774951,177.6798795,9.6699505,0.087289176,1620000000000 ,1620000000000 ,1620000000000 ,1616812588350 -1616812588374 ,112.5673567,26.8626338,66.41632843,177.5746811,177.6681623,9.669851,0.087286691,1620000000000 ,1620000000000 ,1620000000000 ,1616812588360 -1616812588386 ,112.5673567,26.86263292,66.41661835,177.571266,177.6659111,9.669533,0.087288423,1620000000000 ,1620000000000 ,1620000000000 ,1616812588370 -1616812588403 ,112.5673568,26.86263205,66.41689301,177.5683973,177.6700417,9.669186,0.08728512,1620000000000 ,1620000000000 ,1620000000000 ,1616812588380 -1616812588406 ,112.5673568,26.86263118,66.41718292,177.5632337,177.6661004,9.667831,0.08727348,1620000000000 ,1620000000000 ,1620000000000 ,1616812588390 -1616812588416 ,112.5673569,26.86263031,66.41752625,177.5591902,177.6612893,9.665634,0.087255842,1620000000000 ,1620000000000 ,1620000000000 ,1616812588400 -1616812588427 ,112.5673569,26.86262944,66.41790009,177.5550921,177.6541618,9.66457,0.087246683,1620000000000 ,1620000000000 ,1620000000000 ,1616812588410 -1616812588438 ,112.5673569,26.86262856,66.41827393,177.5517317,177.6549732,9.663606,0.087238439,1620000000000 ,1620000000000 ,1620000000000 ,1616812588420 -1616812588445 ,112.567357,26.86262769,66.4186554,177.5461582,177.6589958,9.661868,0.087225163,1620000000000 ,1620000000000 ,1620000000000 ,1616812588430 -1616812588456 ,112.567357,26.86262682,66.41907501,177.5423333,177.6619354,9.66029,0.087211767,1620000000000 ,1620000000000 ,1620000000000 ,1616812588440 -1616812588466 ,112.567357,26.86262595,66.41990662,177.5365413,177.6993509,9.658156,0.087234182,1620000000000 ,1620000000000 ,1620000000000 ,1616812588450 -1616812588476 ,112.5673571,26.86262508,66.4210968,177.5323339,177.7476142,9.658012,0.087266129,1620000000000 ,1620000000000 ,1620000000000 ,1616812588460 -1616812588488 ,112.5673571,26.86262421,66.42228699,177.5285637,177.7409062,9.656487,0.087255534,1620000000000 ,1620000000000 ,1620000000000 ,1616812588470 -1616812588497 ,112.5673571,26.86262333,66.42346191,177.5230995,177.7328404,9.655619,0.087245764,1620000000000 ,1620000000000 ,1620000000000 ,1616812588480 -1616812588507 ,112.5673572,26.86262246,66.42466736,177.5189194,177.7240366,9.654734,0.087239503,1620000000000 ,1620000000000 ,1620000000000 ,1616812588490 -1616812588517 ,112.5673572,26.86262159,66.4258728,177.5152585,177.7114056,9.652295,0.087222681,1620000000000 ,1620000000000 ,1620000000000 ,1616812588500 -1616812588528 ,112.5673572,26.86262072,66.42707825,177.51198,177.7073329,9.65117,0.087211407,1620000000000 ,1620000000000 ,1620000000000 ,1616812588510 -1616812588537 ,112.5673573,26.86261985,66.42826843,177.5067617,177.7068145,9.649063,0.087194224,1620000000000 ,1620000000000 ,1620000000000 ,1616812588520 -1616812588546 ,112.5673573,26.86261898,66.42944336,177.5029641,177.702303,9.64928,0.087191196,1620000000000 ,1620000000000 ,1620000000000 ,1616812588530 -1616812588558 ,112.5673573,26.86261811,66.43061066,177.4971448,177.6963093,9.6482315,0.087186558,1620000000000 ,1620000000000 ,1620000000000 ,1616812588540 -1616812588570 ,112.5673574,26.86261723,66.43177032,177.4921178,177.6922762,9.64742,0.087177835,1620000000000 ,1620000000000 ,1620000000000 ,1616812588550 -1616812588578 ,112.5673574,26.86261636,66.43296051,177.4870634,177.6910146,9.64485,0.08716088,1620000000000 ,1620000000000 ,1620000000000 ,1616812588560 -1616812588590 ,112.5673574,26.86261549,66.43416595,177.4840035,177.6850265,9.643533,0.087149133,1620000000000 ,1620000000000 ,1620000000000 ,1616812588570 -1616812588601 ,112.5673575,26.86261462,66.43535614,177.4806704,177.6816801,9.642086,0.087135118,1620000000000 ,1620000000000 ,1620000000000 ,1616812588580 -1616812588610 ,112.5673575,26.86261375,66.43650818,177.4788126,177.6776736,9.641462,0.087127261,1620000000000 ,1620000000000 ,1620000000000 ,1616812588590 -1616812588618 ,112.5673576,26.86261288,66.43761444,177.4740861,177.6634955,9.639962,0.087116558,1620000000000 ,1620000000000 ,1620000000000 ,1616812588600 -1616812588628 ,112.5673576,26.86261201,66.4386673,177.4708349,177.6562367,9.639331,0.08710815,1620000000000 ,1620000000000 ,1620000000000 ,1616812588610 -1616812588638 ,112.5673576,26.86261114,66.43968201,177.4666548,177.6529953,9.638608,0.087102292,1620000000000 ,1620000000000 ,1620000000000 ,1616812588620 -1616812588649 ,112.5673577,26.86261027,66.44068146,177.4629392,177.6453998,9.637313,0.087091272,1620000000000 ,1620000000000 ,1620000000000 ,1616812588630 -1616812588658 ,112.5673577,26.8626094,66.44166565,177.4594148,177.6342207,9.635981,0.087079007,1620000000000 ,1620000000000 ,1620000000000 ,1616812588640 -1616812588671 ,112.5673577,26.86260853,66.44261169,177.4537321,177.6301349,9.634621,0.087066603,1620000000000 ,1620000000000 ,1620000000000 ,1616812588650 -1616812588680 ,112.5673578,26.86260766,66.44351196,177.4497433,177.628785,9.6337185,0.087056702,1620000000000 ,1620000000000 ,1620000000000 ,1616812588660 -1616812588688 ,112.5673578,26.86260679,66.44436646,177.444525,177.6331177,9.632918,0.087048325,1620000000000 ,1620000000000 ,1620000000000 ,1616812588670 -1616812588705 ,112.5673578,26.86260592,66.4451828,177.4410826,177.638488,9.632549,0.08704241,1620000000000 ,1620000000000 ,1620000000000 ,1616812588680 -1616812588709 ,112.5673579,26.86260505,66.44599915,177.4382412,177.6306876,9.630616,0.087029942,1620000000000 ,1620000000000 ,1620000000000 ,1616812588690 -1616812588719 ,112.5673579,26.86260418,66.44680786,177.4338699,177.6280978,9.628677,0.087010789,1620000000000 ,1620000000000 ,1620000000000 ,1616812588700 -1616812588728 ,112.5673579,26.86260331,66.4475708,177.4290888,177.6340364,9.628587,0.087004239,1620000000000 ,1620000000000 ,1620000000000 ,1616812588710 -1616812588738 ,112.567358,26.86260244,66.44825745,177.4254278,177.6255489,9.627667,0.086996159,1620000000000 ,1620000000000 ,1620000000000 ,1616812588720 -1616812588749 ,112.567358,26.86260157,66.44891357,177.4193353,177.6320188,9.627059,0.08698821,1620000000000 ,1620000000000 ,1620000000000 ,1616812588730 -1616812588760 ,112.5673581,26.86260071,66.44956207,177.4120953,177.6308294,9.6252575,0.086977738,1620000000000 ,1620000000000 ,1620000000000 ,1616812588740 -1616812588771 ,112.5673581,26.86259984,66.45019531,177.4055656,177.631744,9.624146,0.086960377,1620000000000 ,1620000000000 ,1620000000000 ,1616812588750 -1616812588781 ,112.5673581,26.86259897,66.45079041,177.4002927,177.6234057,9.622657,0.086947841,1620000000000 ,1620000000000 ,1620000000000 ,1616812588760 -1616812588794 ,112.5673582,26.8625981,66.45131683,177.3951291,177.6109864,9.623429,0.086948229,1620000000000 ,1620000000000 ,1620000000000 ,1616812588770 -1616812588800 ,112.5673582,26.86259723,66.45178986,177.3888726,177.6178509,9.623572,0.086946963,1620000000000 ,1620000000000 ,1620000000000 ,1616812588780 -1616812588810 ,112.5673582,26.86259636,66.45223999,177.3816326,177.6078681,9.623351,0.086944683,1620000000000 ,1620000000000 ,1620000000000 ,1616812588790 -1616812588825 ,112.5673583,26.86259549,66.45270538,177.3752123,177.5918617,9.621062,0.086929567,1620000000000 ,1620000000000 ,1620000000000 ,1616812588800 -1616812588829 ,112.5673583,26.86259462,66.45317078,177.3678083,177.5851954,9.619839,0.086914493,1620000000000 ,1620000000000 ,1620000000000 ,1616812588810 -1616812588840 ,112.5673583,26.86259376,66.45361328,177.3617978,177.5801266,9.619722,0.086909146,1620000000000 ,1620000000000 ,1620000000000 ,1616812588820 -1616812588852 ,112.5673584,26.86259289,66.45400238,177.3569074,177.566862,9.619669,0.086904768,1620000000000 ,1620000000000 ,1620000000000 ,1616812588830 -1616812588867 ,112.5673584,26.86259202,66.45435333,177.3509241,177.5553654,9.620233,0.086908109,1620000000000 ,1620000000000 ,1620000000000 ,1616812588840 -1616812588880 ,112.5673585,26.86259115,66.45470428,177.3441486,177.5434833,9.619935,0.086909102,1620000000000 ,1620000000000 ,1620000000000 ,1616812588850 -1616812588883 ,112.5673585,26.86259028,66.45508575,177.3360616,177.5307888,9.619378,0.086900576,1620000000000 ,1620000000000 ,1620000000000 ,1616812588860 -1616812588890 ,112.5673585,26.86258941,66.45549774,177.3281113,177.5230548,9.618388,0.086895493,1620000000000 ,1620000000000 ,1620000000000 ,1616812588870 -1616812588900 ,112.5673586,26.86258855,66.45592499,177.3209806,177.518714,9.617949,0.086887933,1620000000000 ,1620000000000 ,1620000000000 ,1616812588880 -1616812588912 ,112.5673586,26.86258768,66.45635986,177.3124292,177.5110636,9.617065,0.086883082,1620000000000 ,1620000000000 ,1620000000000 ,1616812588890 -1616812588925 ,112.5673586,26.86258681,66.45683289,177.3038504,177.493242,9.615984,0.086872461,1620000000000 ,1620000000000 ,1620000000000 ,1616812588900 -1616812588932 ,112.5673587,26.86258594,66.45734406,177.29478,177.4836428,9.615383,0.086865991,1620000000000 ,1620000000000 ,1620000000000 ,1616812588910 -1616812588941 ,112.5673587,26.86258508,66.45788574,177.2866384,177.4811203,9.616009,0.086872731,1620000000000 ,1620000000000 ,1620000000000 ,1616812588920 -1616812588951 ,112.5673588,26.86258421,66.45842743,177.2791798,177.472473,9.616361,0.086871663,1620000000000 ,1620000000000 ,1620000000000 ,1616812588930 -1616812588964 ,112.5673588,26.86258334,66.458992,177.269317,177.4622589,9.615138,0.086866909,1620000000000 ,1620000000000 ,1620000000000 ,1616812588940 -1616812588972 ,112.5673588,26.86258247,66.45962524,177.2600006,177.4498755,9.614756,0.086863285,1620000000000 ,1620000000000 ,1620000000000 ,1616812588950 -1616812588981 ,112.5673589,26.8625816,66.46029663,177.2503018,177.4319891,9.613941,0.086856478,1620000000000 ,1620000000000 ,1620000000000 ,1616812588960 -1616812588991 ,112.5673589,26.86258074,66.46099091,177.2395101,177.4278682,9.613373,0.086851679,1620000000000 ,1620000000000 ,1620000000000 ,1616812588970 -1616812589001 ,112.567359,26.86257987,66.46173859,177.2306581,177.4247691,9.612014,0.086840915,1620000000000 ,1620000000000 ,1620000000000 ,1616812588980 -1616812589011 ,112.567359,26.862579,66.46253967,177.2210412,177.4091186,9.611754,0.086840313,1620000000000 ,1620000000000 ,1620000000000 ,1616812588990 -1616812589022 ,112.567359,26.86257813,66.46338654,177.2112058,177.3933498,9.612238,0.086840539,1620000000000 ,1620000000000 ,1620000000000 ,1616812589000 -1616812589031 ,112.5673591,26.86257727,66.46424866,177.2010698,177.3819958,9.613448,0.086852517,1620000000000 ,1620000000000 ,1620000000000 ,1616812589010 -1616812589041 ,112.5673591,26.8625764,66.46511841,177.190442,177.377771,9.613871,0.086857305,1620000000000 ,1620000000000 ,1620000000000 ,1616812589020 -1616812589053 ,112.5673592,26.86257553,66.46603394,177.1796776,177.3803213,9.615521,0.086872655,1620000000000 ,1620000000000 ,1620000000000 ,1616812589030 -1616812589062 ,112.5673592,26.86257466,66.46698761,177.1693777,177.3666992,9.615508,0.086876559,1620000000000 ,1620000000000 ,1620000000000 ,1616812589050 -1616812589071 ,112.5673592,26.8625738,66.46800232,177.1597608,177.3510407,9.616148,0.086881857,1620000000000 ,1620000000000 ,1620000000000 ,1616812589060 -1616812589081 ,112.5673593,26.86257293,66.46905518,177.1500892,177.3302916,9.617528,0.086894685,1620000000000 ,1620000000000 ,1620000000000 ,1616812589070 -1616812589092 ,112.5673593,26.86257206,66.4701004,177.1414285,177.3144235,9.620253,0.086914062,1620000000000 ,1620000000000 ,1620000000000 ,1616812589080 -1616812589110 ,112.5673594,26.86257119,66.47113037,177.1342432,177.3034939,9.622597,0.086938412,1620000000000 ,1620000000000 ,1620000000000 ,1616812589080 -1616812589116 ,112.5673594,26.86257032,66.47216034,177.1258284,177.2922744,9.624196,0.086954135,1620000000000 ,1620000000000 ,1620000000000 ,1616812589100 -1616812589130 ,112.5673594,26.86256945,66.47322845,177.1169491,177.2777261,9.626581,0.086975489,1620000000000 ,1620000000000 ,1620000000000 ,1616812589110 -1616812589133 ,112.5673595,26.86256771,66.47537231,177.0998464,177.2523133,9.632147,0.174019124,1620000000000 ,1620000000000 ,1620000000000 ,1616812589120 -1616812589142 ,112.5673595,26.86256771,66.47537231,177.0998464,-400,9.632147,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812589130 -1616812589152 ,112.5673596,26.86256598,66.47738647,177.0829348,177.2312977,9.636265,0.174108898,1620000000000 ,1620000000000 ,1620000000000 ,1616812589140 -1616812589163 ,112.5673596,26.86256511,66.47840118,177.07452,177.2047535,9.637968,0.08707893,1620000000000 ,1620000000000 ,1620000000000 ,1616812589150 -1616812589173 ,112.5673597,26.86256424,66.47942352,177.0683455,177.1898506,9.641063,0.08710365,1620000000000 ,1620000000000 ,1620000000000 ,1616812589160 -1616812589183 ,112.5673597,26.86256424,66.47942352,177.0683455,-400,9.641063,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812589170 -1616812589194 ,112.5673598,26.8625625,66.48133087,177.0555321,177.1813013,9.64662,0.174282361,1620000000000 ,1620000000000 ,1620000000000 ,1616812589180 -1616812589204 ,112.5673598,26.8625625,66.48133087,177.0555321,-400,9.64662,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812589180 -1616812589217 ,112.5673599,26.86256076,66.48266602,177.0527454,177.2978825,9.634354,0.174074934,1620000000000 ,1620000000000 ,1620000000000 ,1616812589200 -1616812589226 ,112.5673599,26.86255989,66.48213196,177.04556,177.8712734,9.637365,0.086467674,1620000000000 ,1620000000000 ,1620000000000 ,1616812589210 -1616812589235 ,112.5673599,26.86255903,66.48158264,177.0374457,177.8757876,9.64003,0.086494076,1620000000000 ,1620000000000 ,1620000000000 ,1616812589220 -1616812589245 ,112.56736,26.86255816,66.48099518,177.0316264,177.874713,9.642838,0.086516464,1620000000000 ,1620000000000 ,1620000000000 ,1616812589230 -1616812589259 ,112.56736,26.8625573,66.48039246,177.0244684,177.8657373,9.644485,0.086534792,1620000000000 ,1620000000000 ,1620000000000 ,1616812589240 -1616812589264 ,112.56736,26.86255643,66.47978973,177.0182939,177.8574774,9.646695,0.086552034,1620000000000 ,1620000000000 ,1620000000000 ,1616812589250 -1616812589274 ,112.56736,26.86255557,66.47920227,177.0120648,177.8481902,9.649656,0.086574424,1620000000000 ,1620000000000 ,1620000000000 ,1616812589260 -1616812589287 ,112.5673601,26.8625547,66.47860718,177.0067372,177.8466034,9.652735,0.086605736,1620000000000 ,1620000000000 ,1620000000000 ,1616812589270 -1616812589301 ,112.5673601,26.86255384,66.47801208,177.0013004,177.8489903,9.654944,0.086627435,1620000000000 ,1620000000000 ,1620000000000 ,1616812589280 -1616812589306 ,112.5673601,26.86255297,66.47738647,176.9968744,177.8391076,9.65761,0.086648424,1620000000000 ,1620000000000 ,1620000000000 ,1616812589290 -1616812589315 ,112.5673602,26.86255211,66.47677612,176.9908365,177.8319041,9.658614,0.086660583,1620000000000 ,1620000000000 ,1620000000000 ,1616812589300 -1616812589326 ,112.5673602,26.86255124,66.47615814,176.9854817,177.8235716,9.661399,0.08668138,1620000000000 ,1620000000000 ,1620000000000 ,1616812589310 -1616812589335 ,112.5673602,26.86255037,66.47548676,176.9814655,177.8164934,9.665402,0.086718381,1620000000000 ,1620000000000 ,1620000000000 ,1616812589320 -1616812589344 ,112.5673603,26.86254951,66.47477722,176.9755096,177.8185189,9.667808,0.086735992,1620000000000 ,1620000000000 ,1620000000000 ,1616812589330 -1616812589356 ,112.5673603,26.86254864,66.47405243,176.969581,177.8124455,9.670677,0.086762123,1620000000000 ,1620000000000 ,1620000000000 ,1616812589340 -1616812589371 ,112.5673603,26.86254777,66.47332764,176.9645813,177.8031621,9.671961,0.086778883,1620000000000 ,1620000000000 ,1620000000000 ,1616812589350 -1616812589375 ,112.5673604,26.8625469,66.47260284,176.9615214,177.803716,9.674695,0.086797863,1620000000000 ,1620000000000 ,1620000000000 ,1616812589360 -1616812589386 ,112.5673604,26.86254604,66.47187805,176.9583795,177.7979128,9.676637,0.086819731,1620000000000 ,1620000000000 ,1620000000000 ,1616812589370 -1616812589397 ,112.5673604,26.86254517,66.47114563,176.9550463,177.7984364,9.678615,0.086834856,1620000000000 ,1620000000000 ,1620000000000 ,1616812589380 -1616812589404 ,112.5673605,26.8625443,66.47040558,176.9511122,177.8083924,9.681703,0.086860537,1620000000000 ,1620000000000 ,1620000000000 ,1616812589390 -1616812589414 ,112.5673605,26.86254343,66.46964264,176.9472053,177.811006,9.685517,0.086892797,1620000000000 ,1620000000000 ,1620000000000 ,1616812589400 -1616812589425 ,112.5673605,26.86254256,66.46886444,176.9425608,177.8114506,9.688031,0.086918144,1620000000000 ,1620000000000 ,1620000000000 ,1616812589410 -1616812589435 ,112.5673606,26.8625417,66.46807861,176.9373971,177.8118243,9.6908865,0.086942919,1620000000000 ,1620000000000 ,1620000000000 ,1616812589420 -1616812589445 ,112.5673606,26.86254083,66.46730804,176.9314139,177.8140006,9.69324,0.086964085,1620000000000 ,1620000000000 ,1620000000000 ,1616812589430 -1616812589456 ,112.5673606,26.86253996,66.46656036,176.9264142,177.7969139,9.694626,0.086979562,1620000000000 ,1620000000000 ,1620000000000 ,1616812589440 -1616812589466 ,112.5673607,26.86253909,66.46641541,176.9208134,177.5260398,9.69647,0.087290809,1620000000000 ,1620000000000 ,1620000000000 ,1616812589450 -1616812589475 ,112.5673607,26.86253821,66.4668808,176.9140652,177.253613,9.698236,0.087606341,1620000000000 ,1620000000000 ,1620000000000 ,1616812589460 -1616812589486 ,112.5673608,26.86253734,66.46735382,176.9084371,177.2502515,9.700833,0.087627087,1620000000000 ,1620000000000 ,1620000000000 ,1616812589470 -1616812589496 ,112.5673608,26.86253646,66.46784973,176.9027817,177.2471328,9.704118,0.087654561,1620000000000 ,1620000000000 ,1620000000000 ,1616812589480 -1616812589509 ,112.5673609,26.86253558,66.46833038,176.8962248,177.2405752,9.707376,0.087683123,1620000000000 ,1620000000000 ,1620000000000 ,1616812589490 -1616812589518 ,112.5673609,26.86253471,66.46879578,176.8906786,177.2441029,9.710579,0.087712017,1620000000000 ,1620000000000 ,1620000000000 ,1616812589500 -1616812589526 ,112.5673609,26.86253383,66.46927643,176.8851052,177.2379141,9.713345,0.08773935,1620000000000 ,1620000000000 ,1620000000000 ,1616812589510 -1616812589539 ,112.567361,26.86253296,66.46982574,176.8781111,177.2217106,9.714478,0.087753738,1620000000000 ,1620000000000 ,1620000000000 ,1616812589520 -1616812589549 ,112.567361,26.86253208,66.47042847,176.8731934,177.2040373,9.714679,0.087758746,1620000000000 ,1620000000000 ,1620000000000 ,1616812589530 -1616812589557 ,112.5673611,26.8625312,66.47104645,176.8680844,177.1883828,9.717637,0.087779617,1620000000000 ,1620000000000 ,1620000000000 ,1616812589540 -1616812589567 ,112.5673611,26.86253032,66.47161865,176.8633032,177.1863813,9.7203,0.087802539,1620000000000 ,1620000000000 ,1620000000000 ,1616812589550 -1616812589577 ,112.5673612,26.86252945,66.47212982,176.8579484,177.178091,9.7252655,0.087838793,1620000000000 ,1620000000000 ,1620000000000 ,1616812589560 -1616812589588 ,112.5673612,26.86252857,66.47262573,176.8526481,177.1627153,9.728202,0.087869045,1620000000000 ,1620000000000 ,1620000000000 ,1616812589570 -1616812589597 ,112.5673612,26.86252769,66.47315216,176.8484954,177.1391602,9.73158,0.087901598,1620000000000 ,1620000000000 ,1620000000000 ,1616812589580 -1616812589606 ,112.5673613,26.86252681,66.47371674,176.8425121,177.1279167,9.733133,0.087920796,1620000000000 ,1620000000000 ,1620000000000 ,1616812589590 -1616812589616 ,112.5673613,26.86252594,66.47429657,176.8386053,177.1241073,9.735703,0.087939795,1620000000000 ,1620000000000 ,1620000000000 ,1616812589600 -1616812589628 ,112.5673614,26.86252506,66.47485352,176.8335783,177.1260799,9.73778,0.087959687,1620000000000 ,1620000000000 ,1620000000000 ,1616812589610 -1616812589640 ,112.5673614,26.86252418,66.47541046,176.8286605,177.124295,9.741413,0.087988557,1620000000000 ,1620000000000 ,1620000000000 ,1616812589620 -1616812589647 ,112.5673615,26.8625233,66.47600555,176.822568,177.1116595,9.744634,0.088021207,1620000000000 ,1620000000000 ,1620000000000 ,1616812589630 -1616812589658 ,112.5673615,26.86252242,66.47663879,176.8178415,177.1057539,9.746816,0.08804268,1620000000000 ,1620000000000 ,1620000000000 ,1616812589640 -1616812589667 ,112.5673615,26.86252154,66.47728729,176.8133882,177.1149293,9.750046,0.08806992,1620000000000 ,1620000000000 ,1620000000000 ,1616812589650 -1616812589677 ,112.5673616,26.86252066,66.47798157,176.8082246,177.1205352,9.752457,0.088095661,1620000000000 ,1620000000000 ,1620000000000 ,1616812589660 -1616812589687 ,112.5673616,26.86251978,66.47874451,176.8028424,177.1113985,9.754478,0.088116923,1620000000000 ,1620000000000 ,1620000000000 ,1616812589670 -1616812589697 ,112.5673617,26.8625189,66.47957611,176.7967772,177.0967233,9.757363,0.088142327,1620000000000 ,1620000000000 ,1620000000000 ,1616812589680 -1616812589709 ,112.5673617,26.86251802,66.4804306,176.7927884,177.0908596,9.759797,0.08816729,1620000000000 ,1620000000000 ,1620000000000 ,1616812589690 -1616812589719 ,112.5673618,26.86251714,66.48126984,176.7868598,177.1061425,9.762614,0.088192474,1620000000000 ,1620000000000 ,1620000000000 ,1616812589700 -1616812589728 ,112.5673618,26.86251626,66.48210144,176.781177,177.1060932,9.765685,0.088219683,1620000000000 ,1620000000000 ,1620000000000 ,1616812589710 -1616812589738 ,112.5673619,26.86251538,66.4829483,176.7747567,177.0958628,9.770465,0.088261411,1620000000000 ,1620000000000 ,1620000000000 ,1616812589720 -1616812589749 ,112.5673619,26.86251449,66.4838028,176.7688827,177.0854728,9.774549,0.088299528,1620000000000 ,1620000000000 ,1620000000000 ,1616812589730 -1616812589759 ,112.5673619,26.86251361,66.48466492,176.7629268,177.0775064,9.779075,0.088342338,1620000000000 ,1620000000000 ,1620000000000 ,1616812589740 -1616812589768 ,112.567362,26.86251273,66.48552704,176.7574626,177.0673348,9.781526,0.088367846,1620000000000 ,1620000000000 ,1620000000000 ,1616812589750 -1616812589778 ,112.567362,26.86251185,66.48638153,176.7527088,177.0585528,9.785353,0.088398954,1620000000000 ,1620000000000 ,1620000000000 ,1616812589760 -1616812589789 ,112.5673621,26.86251096,66.48725891,176.7478184,177.0462948,9.788454,0.088432416,1620000000000 ,1620000000000 ,1620000000000 ,1616812589770 -1616812589798 ,112.5673621,26.86251008,66.4881134,176.7438296,177.0184255,9.793728,0.088475549,1620000000000 ,1620000000000 ,1620000000000 ,1616812589780 -1616812589812 ,112.5673622,26.8625092,66.48891449,176.7398134,177.0060823,9.7985115,0.088519268,1620000000000 ,1620000000000 ,1620000000000 ,1616812589790 -1616812589819 ,112.5673622,26.86250831,66.48967743,176.7345405,176.9994127,9.803781,0.088562622,1620000000000 ,1620000000000 ,1620000000000 ,1616812589800 -1616812589829 ,112.5673623,26.86250743,66.49047089,176.7283114,176.9903216,9.808134,0.088605826,1620000000000 ,1620000000000 ,1620000000000 ,1616812589810 -1616812589838 ,112.5673623,26.86250654,66.49129486,176.7250602,176.9806577,9.812882,0.088652124,1620000000000 ,1620000000000 ,1620000000000 ,1616812589820 -1616812589849 ,112.5673624,26.86250566,66.49212646,176.7210441,176.9633207,9.815164,0.088678061,1620000000000 ,1620000000000 ,1620000000000 ,1616812589830 -1616812589860 ,112.5673624,26.86250477,66.49295044,176.7170279,176.9641308,9.818737,0.088707552,1620000000000 ,1620000000000 ,1620000000000 ,1616812589840 -1616812589871 ,112.5673625,26.86250388,66.49376678,176.7124927,176.9533621,9.822996,0.08874681,1620000000000 ,1620000000000 ,1620000000000 ,1616812589850 -1616812589879 ,112.5673625,26.862503,66.49456024,176.7086678,176.9431533,9.82712,0.088781442,1620000000000 ,1620000000000 ,1620000000000 ,1616812589860 -1616812589890 ,112.5673626,26.86250211,66.49530029,176.7041052,176.9526503,9.83279,0.088831717,1620000000000 ,1620000000000 ,1620000000000 ,1616812589870 -1616812589901 ,112.5673626,26.86250122,66.49597168,176.7014824,176.9494243,9.836544,0.088863904,1620000000000 ,1620000000000 ,1620000000000 ,1616812589880 -1616812589911 ,112.5673626,26.86250034,66.49659729,176.6966193,176.9513614,9.842517,0.088914811,1620000000000 ,1620000000000 ,1620000000000 ,1616812589890 -1616812589922 ,112.5673627,26.86249945,66.49719238,176.6905541,176.9452181,9.846858,0.088957663,1620000000000 ,1620000000000 ,1620000000000 ,1616812589900 -1616812589930 ,112.5673627,26.86249856,66.49772644,176.6862921,176.9432034,9.8517475,0.088998595,1620000000000 ,1620000000000 ,1620000000000 ,1616812589910 -1616812589939 ,112.5673628,26.86249767,66.4981842,176.6824672,176.9476709,9.85634,0.089037807,1620000000000 ,1620000000000 ,1620000000000 ,1616812589920 -1616812589950 ,112.5673628,26.86249678,66.49856567,176.6767025,176.9529913,9.860799,0.089074372,1620000000000 ,1620000000000 ,1620000000000 ,1616812589930 -1616812589960 ,112.5673629,26.86249589,66.49890137,176.6715935,176.9543136,9.866508,0.089126382,1620000000000 ,1620000000000 ,1620000000000 ,1616812589940 -1616812589972 ,112.5673629,26.862495,66.49919128,176.666184,176.9454884,9.870555,0.089162905,1620000000000 ,1620000000000 ,1620000000000 ,1616812589950 -1616812589980 ,112.567363,26.86249411,66.49941254,176.6599822,176.9371342,9.876204,0.089208506,1620000000000 ,1620000000000 ,1620000000000 ,1616812589960 -1616812589992 ,112.567363,26.86249322,66.49957275,176.6514854,176.9289445,9.880853,0.089250709,1620000000000 ,1620000000000 ,1620000000000 ,1616812589970 -1616812590002 ,112.5673631,26.86249233,66.49968719,176.64583,176.9323011,9.8863325,0.089294072,1620000000000 ,1620000000000 ,1620000000000 ,1616812589980 -1616812590011 ,112.5673631,26.86249143,66.49980927,176.6394916,176.9284796,9.89048,0.089337648,1620000000000 ,1620000000000 ,1620000000000 ,1616812589990 -1616812590021 ,112.5673632,26.86249054,66.49995422,176.636377,176.9138867,9.893649,0.089369734,1620000000000 ,1620000000000 ,1620000000000 ,1616812590000 -1616812590030 ,112.5673632,26.86248965,66.50009918,176.6338635,176.9036953,9.8982525,0.089404019,1620000000000 ,1620000000000 ,1620000000000 ,1616812590010 -1616812590041 ,112.5673633,26.86248876,66.50022888,176.627006,176.8932279,9.901791,0.089438743,1620000000000 ,1620000000000 ,1620000000000 ,1616812590020 -1616812590052 ,112.5673633,26.86248786,66.50035095,176.6223068,176.8886239,9.90796,0.089485718,1620000000000 ,1620000000000 ,1620000000000 ,1616812590030 -1616812590062 ,112.5673634,26.86248697,66.50046539,176.6170066,176.8795232,9.914151,0.089545104,1620000000000 ,1620000000000 ,1620000000000 ,1616812590040 -1616812590073 ,112.5673634,26.86248607,66.50058746,176.6121435,176.8786102,9.91835,0.089585253,1620000000000 ,1620000000000 ,1620000000000 ,1616812590050 -1616812590082 ,112.5673635,26.86248518,66.50074005,176.6060237,176.8724143,9.921563,0.089621043,1620000000000 ,1620000000000 ,1620000000000 ,1616812590060 -1616812590093 ,112.5673635,26.86248428,66.50093842,176.6027725,176.8564245,9.924275,0.089643962,1620000000000 ,1620000000000 ,1620000000000 ,1616812590070 -1616812590101 ,112.5673636,26.86248339,66.5011673,176.5983465,176.8454888,9.928845,0.089679866,1620000000000 ,1620000000000 ,1620000000000 ,1616812590080 -1616812590111 ,112.5673636,26.86248249,66.50137329,176.5941391,176.841476,9.935053,0.089733536,1620000000000 ,1620000000000 ,1620000000000 ,1616812590090 -1616812590122 ,112.5673637,26.8624816,66.5015564,176.5897405,176.8348089,9.940806,0.089787854,1620000000000 ,1620000000000 ,1620000000000 ,1616812590100 -1616812590133 ,112.5673637,26.8624807,66.50177002,176.5818448,176.8275624,9.946421,0.089836468,1620000000000 ,1620000000000 ,1620000000000 ,1616812590110 -1616812590142 ,112.5673638,26.8624798,66.50206757,176.576408,176.824063,9.949616,0.089874659,1620000000000 ,1620000000000 ,1620000000000 ,1616812590120 -1616812590154 ,112.5673638,26.8624789,66.50241089,176.5705887,176.8099525,9.953766,0.089909484,1620000000000 ,1620000000000 ,1620000000000 ,1616812590140 -1616812590165 ,112.5673639,26.862478,66.50278473,176.5675834,176.8058285,9.957557,0.089948077,1620000000000 ,1620000000000 ,1620000000000 ,1616812590140 -1616812590173 ,112.5673639,26.86247711,66.50319672,176.5621465,176.8032845,9.959887,0.08996859,1620000000000 ,1620000000000 ,1620000000000 ,1616812590160 -1616812590187 ,112.567364,26.86247621,66.50367737,176.5558628,176.8010606,9.9639015,0.090006294,1620000000000 ,1620000000000 ,1620000000000 ,1616812590170 -1616812590194 ,112.567364,26.86247531,66.50419617,176.5489506,176.8067897,9.9684925,0.090046123,1620000000000 ,1620000000000 ,1620000000000 ,1616812590180 -1616812590202 ,112.5673641,26.86247441,66.50467682,176.545153,176.8007617,9.974978,0.090099569,1620000000000 ,1620000000000 ,1620000000000 ,1616812590180 -1616812590214 ,112.5673642,26.86247261,66.50605011,176.543022,176.7909739,9.98134,0.180314114,1620000000000 ,1620000000000 ,1620000000000 ,1616812590200 -1616812590223 ,112.5673642,26.86247261,66.50605011,176.543022,-400,9.98134,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812590210 -1616812590233 ,112.5673643,26.86247081,66.50958252,176.5271487,176.7382437,9.986664,0.180210163,1620000000000 ,1620000000000 ,1620000000000 ,1616812590220 -1616812590243 ,112.5673643,26.86246991,66.51138306,176.5204277,176.7277586,9.990905,0.09015239,1620000000000 ,1620000000000 ,1620000000000 ,1616812590230 -1616812590253 ,112.5673644,26.86246901,66.51320648,176.511931,176.7170238,9.994608,0.090187268,1620000000000 ,1620000000000 ,1620000000000 ,1616812590240 -1616812590264 ,112.5673644,26.86246901,66.51320648,176.511931,-400,9.994608,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812590250 -1616812590273 ,112.5673645,26.86246721,66.51686859,176.4968499,176.6951989,10.00619,0.180527283,1620000000000 ,1620000000000 ,1620000000000 ,1616812590260 -1616812590283 ,112.5673645,26.86246631,66.51870728,176.4903203,176.6885699,10.012437,0.090343619,1620000000000 ,1620000000000 ,1620000000000 ,1616812590270 -1616812590293 ,112.5673646,26.8624654,66.52056122,176.4818508,176.6839674,10.016717,0.0903899,1620000000000 ,1620000000000 ,1620000000000 ,1616812590280 -1616812590304 ,112.5673646,26.8624645,66.52245331,176.4739005,176.6735856,10.020139,0.090420295,1620000000000 ,1620000000000 ,1620000000000 ,1616812590290 -1616812590314 ,112.5673647,26.8624636,66.52437592,176.4667425,176.6650403,10.023926,0.090457022,1620000000000 ,1620000000000 ,1620000000000 ,1616812590300 -1616812590324 ,112.5673647,26.86246269,66.52630615,176.4595571,176.6521507,10.028563,0.090495969,1620000000000 ,1620000000000 ,1620000000000 ,1616812590310 -1616812590336 ,112.5673648,26.86246179,66.52820587,176.4529182,176.6423829,10.034838,0.090550325,1620000000000 ,1620000000000 ,1620000000000 ,1616812590320 -1616812590344 ,112.5673648,26.86246089,66.53009033,176.4461426,176.6336548,10.039479,0.090596359,1620000000000 ,1620000000000 ,1620000000000 ,1616812590330 -1616812590354 ,112.5673649,26.86245998,66.53197479,176.4376459,176.6169001,10.043717,0.090633583,1620000000000 ,1620000000000 ,1620000000000 ,1616812590340 -1616812590364 ,112.5673649,26.86245908,66.53385925,176.4314987,176.6028114,10.0479145,0.090675333,1620000000000 ,1620000000000 ,1620000000000 ,1616812590350 -1616812590376 ,112.567365,26.86245817,66.53574371,176.4250783,176.5907376,10.052399,0.090712177,1620000000000 ,1620000000000 ,1620000000000 ,1616812590360 -1616812590385 ,112.5673651,26.86245726,66.53759003,176.418494,176.5725858,10.057752,0.090758104,1620000000000 ,1620000000000 ,1620000000000 ,1616812590370 -1616812590395 ,112.5673651,26.86245636,66.53939056,176.4121283,176.5541067,10.062633,0.090807921,1620000000000 ,1620000000000 ,1620000000000 ,1616812590380 -1616812590407 ,112.5673652,26.86245545,66.54114532,176.4052708,176.5532918,10.068719,0.090852403,1620000000000 ,1620000000000 ,1620000000000 ,1616812590390 -1616812590416 ,112.5673652,26.86245454,66.54288483,176.3992329,176.5453868,10.073992,0.090907835,1620000000000 ,1620000000000 ,1620000000000 ,1616812590400 -1616812590427 ,112.5673653,26.86245364,66.54463196,176.3931403,176.5283803,10.077008,0.09093522,1620000000000 ,1620000000000 ,1620000000000 ,1616812590410 -1616812590436 ,112.5673653,26.86245273,66.54639435,176.3870478,176.5211216,10.081072,0.09097403,1620000000000 ,1620000000000 ,1620000000000 ,1616812590420 -1616812590445 ,112.5673654,26.86245182,66.54819489,176.3819662,176.5205448,10.084938,0.091009684,1620000000000 ,1620000000000 ,1620000000000 ,1616812590430 -1616812590454 ,112.5673654,26.86245091,66.54998779,176.3783052,176.5180854,10.089993,0.091052599,1620000000000 ,1620000000000 ,1620000000000 ,1616812590440 -1616812590465 ,112.5673655,26.86245,66.55127716,176.3749174,176.5263608,10.095506,0.091156131,1620000000000 ,1620000000000 ,1620000000000 ,1616812590450 -1616812590475 ,112.5673656,26.86244909,66.55208588,176.3722673,176.5250617,10.100351,0.091257515,1620000000000 ,1620000000000 ,1620000000000 ,1616812590460 -1616812590487 ,112.5673656,26.86244818,66.55290222,176.3668851,176.5122005,10.103377,0.091286687,1620000000000 ,1620000000000 ,1620000000000 ,1616812590470 -1616812590496 ,112.5673657,26.86244727,66.55371094,176.3632788,176.5109597,10.108103,0.091324575,1620000000000 ,1620000000000 ,1620000000000 ,1616812590480 -1616812590512 ,112.5673657,26.86244635,66.55450439,176.3602188,176.5089068,10.11218,0.091363096,1620000000000 ,1620000000000 ,1620000000000 ,1616812590490 -1616812590516 ,112.5673658,26.86244544,66.55529022,176.3565852,176.5090726,10.116622,0.09140323,1620000000000 ,1620000000000 ,1620000000000 ,1616812590500 -1616812590524 ,112.5673658,26.86244453,66.5561142,176.3520772,176.4890448,10.12145,0.09144751,1620000000000 ,1620000000000 ,1620000000000 ,1616812590510 -1616812590535 ,112.5673659,26.86244362,66.55699158,176.3496457,176.4673212,10.124356,0.091479444,1620000000000 ,1620000000000 ,1620000000000 ,1616812590520 -1616812590546 ,112.5673659,26.8624427,66.55784607,176.3477332,176.4561255,10.13042,0.091525273,1620000000000 ,1620000000000 ,1620000000000 ,1616812590530 -1616812590555 ,112.567366,26.86244179,66.55864716,176.3475966,176.4678942,10.136301,0.091577952,1620000000000 ,1620000000000 ,1620000000000 ,1616812590540 -1616812590566 ,112.5673661,26.86244087,66.55939484,176.3483616,176.4718681,10.141316,0.091622498,1620000000000 ,1620000000000 ,1620000000000 ,1616812590550 -1616812590576 ,112.5673661,26.86243996,66.56011963,176.347624,176.4553999,10.145801,0.091668608,1620000000000 ,1620000000000 ,1620000000000 ,1616812590560 -1616812590587 ,112.5673662,26.86243904,66.56084442,176.3460667,176.4484276,10.149437,0.09170009,1620000000000 ,1620000000000 ,1620000000000 ,1616812590570 -1616812590597 ,112.5673662,26.86243813,66.56156921,176.3481704,176.4422991,10.153283,0.091735248,1620000000000 ,1620000000000 ,1620000000000 ,1616812590580 -1616812590608 ,112.5673663,26.86243721,66.56224823,176.3496184,176.4491153,10.158263,0.091771448,1620000000000 ,1620000000000 ,1620000000000 ,1616812590590 -1616812590619 ,112.5673663,26.8624363,66.56289673,176.3510664,176.4550443,10.163617,0.091823915,1620000000000 ,1620000000000 ,1620000000000 ,1616812590600 -1616812590627 ,112.5673664,26.86243538,66.5635376,176.3515855,176.4540973,10.167667,0.091860129,1620000000000 ,1620000000000 ,1620000000000 ,1616812590610 -1616812590640 ,112.5673665,26.86243446,66.56417847,176.3516948,176.4587788,10.169293,0.09188133,1620000000000 ,1620000000000 ,1620000000000 ,1616812590620 -1616812590646 ,112.5673665,26.86243355,66.56484985,176.353334,176.4583547,10.17287,0.091908138,1620000000000 ,1620000000000 ,1620000000000 ,1616812590630 -1616812590656 ,112.5673666,26.86243263,66.56552887,176.3522685,176.4652553,10.175845,0.091936776,1620000000000 ,1620000000000 ,1620000000000 ,1616812590640 -1616812590667 ,112.5673666,26.86243171,66.56620789,176.3531701,176.4762741,10.181147,0.091976779,1620000000000 ,1620000000000 ,1620000000000 ,1616812590650 -1616812590676 ,112.5673667,26.86243079,66.56686401,176.3545634,176.484152,10.185741,0.092020722,1620000000000 ,1620000000000 ,1620000000000 ,1616812590660 -1616812590689 ,112.5673667,26.86242987,66.56748962,176.3574594,176.4912395,10.190827,0.092063147,1620000000000 ,1620000000000 ,1620000000000 ,1616812590670 -1616812590703 ,112.5673668,26.86242895,66.56811523,176.3613936,176.4882001,10.195347,0.092105806,1620000000000 ,1620000000000 ,1620000000000 ,1616812590680 -1616812590707 ,112.5673668,26.86242803,66.56876373,176.3615029,176.493319,10.198206,0.092137747,1620000000000 ,1620000000000 ,1620000000000 ,1616812590690 -1616812590727 ,112.5673669,26.86242711,66.56941986,176.3628416,176.4943105,10.200439,0.092153988,1620000000000 ,1620000000000 ,1620000000000 ,1616812590700 -1616812590731 ,112.567367,26.86242619,66.57008362,176.3622952,176.5098011,10.204325,0.092185284,1620000000000 ,1620000000000 ,1620000000000 ,1616812590710 -1616812590740 ,112.567367,26.86242527,66.57073975,176.3619947,176.5176374,10.211521,0.092242036,1620000000000 ,1620000000000 ,1620000000000 ,1616812590720 -1616812590748 ,112.5673671,26.86242435,66.57138062,176.362705,176.5109903,10.219215,0.092310489,1620000000000 ,1620000000000 ,1620000000000 ,1616812590730 -1616812590760 ,112.5673671,26.86242343,66.57200623,176.3608472,176.5034174,10.226038,0.092373036,1620000000000 ,1620000000000 ,1620000000000 ,1616812590740 -1616812590769 ,112.5673672,26.86242251,66.57263947,176.3618308,176.5020923,10.228848,0.092408684,1620000000000 ,1620000000000 ,1620000000000 ,1616812590750 -1616812590777 ,112.5673672,26.86242158,66.57331085,176.3600549,176.5088277,10.231695,0.092432746,1620000000000 ,1620000000000 ,1620000000000 ,1616812590760 -1616812590793 ,112.5673673,26.86242066,66.57403564,176.3598363,176.5166817,10.234377,0.09245996,1620000000000 ,1620000000000 ,1620000000000 ,1616812590770 -1616812590805 ,112.5673674,26.86241974,66.57479095,176.3579512,176.5257691,10.238713,0.092491063,1620000000000 ,1620000000000 ,1620000000000 ,1616812590780 -1616812590811 ,112.5673674,26.86241881,66.57553101,176.358443,176.5260214,10.24388,0.09253628,1620000000000 ,1620000000000 ,1620000000000 ,1616812590790 -1616812590818 ,112.5673675,26.86241789,66.57624054,176.357596,176.5293669,10.248623,0.092578585,1620000000000 ,1620000000000 ,1620000000000 ,1616812590800 -1616812590828 ,112.5673675,26.86241697,66.57695007,176.3550006,176.5422387,10.253424,0.092623677,1620000000000 ,1620000000000 ,1620000000000 ,1616812590810 -1616812590838 ,112.5673676,26.86241604,66.57770538,176.3524051,176.5443392,10.258283,0.092667672,1620000000000 ,1620000000000 ,1620000000000 ,1616812590820 -1616812590847 ,112.5673676,26.86241512,66.57853699,176.3484982,176.5402562,10.261531,0.092699831,1620000000000 ,1620000000000 ,1620000000000 ,1616812590830 -1616812590858 ,112.5673677,26.86241419,66.57943726,176.3451651,176.5435454,10.263876,0.092725569,1620000000000 ,1620000000000 ,1620000000000 ,1616812590840 -1616812590870 ,112.5673677,26.86241326,66.58039093,176.3410397,176.5436486,10.267044,0.092750374,1620000000000 ,1620000000000 ,1620000000000 ,1616812590850 -1616812590880 ,112.5673678,26.86241234,66.58137512,176.3367776,176.5374075,10.270104,0.09278542,1620000000000 ,1620000000000 ,1620000000000 ,1616812590860 -1616812590888 ,112.5673679,26.86241141,66.58234406,176.3322697,176.5177367,10.275981,0.092826765,1620000000000 ,1620000000000 ,1620000000000 ,1616812590870 -1616812590898 ,112.5673679,26.86241048,66.58331299,176.3301114,176.5127553,10.27997,0.092871934,1620000000000 ,1620000000000 ,1620000000000 ,1616812590880 -1616812590909 ,112.567368,26.86240956,66.58430481,176.3283901,176.4996845,10.283407,0.092900979,1620000000000 ,1620000000000 ,1620000000000 ,1616812590890 -1616812590918 ,112.567368,26.86240863,66.58537292,176.3256308,176.4954572,10.285729,0.092928244,1620000000000 ,1620000000000 ,1620000000000 ,1616812590900 -1616812590928 ,112.5673681,26.8624077,66.58653259,176.3248931,176.4882832,10.288868,0.092955309,1620000000000 ,1620000000000 ,1620000000000 ,1616812590910 -1616812590946 ,112.5673681,26.86240677,66.58776855,176.3231446,176.4858262,10.291985,0.092985222,1620000000000 ,1620000000000 ,1620000000000 ,1616812590920 -1616812590951 ,112.5673682,26.86240584,66.58905792,176.3215053,176.4886556,10.296506,0.093025992,1620000000000 ,1620000000000 ,1620000000000 ,1616812590930 -1616812590960 ,112.5673683,26.86240492,66.59038544,176.3216419,176.4647881,10.301736,0.093075924,1620000000000 ,1620000000000 ,1620000000000 ,1616812590940 -1616812590993 ,112.5673683,26.86240399,66.59171295,176.322161,176.4511008,10.306347,0.093117285,1620000000000 ,1620000000000 ,1620000000000 ,1616812590950 -1616812590997 ,112.5673684,26.86240306,66.59307861,176.3218605,176.4452251,10.310055,0.093155474,1620000000000 ,1620000000000 ,1620000000000 ,1616812590960 -1616812590999 ,112.5673684,26.86240213,66.59452057,176.32156,176.4314068,10.311091,0.093175131,1620000000000 ,1620000000000 ,1620000000000 ,1616812590970 -1616812591003 ,112.5673685,26.8624012,66.59603882,176.3237456,176.4302571,10.315138,0.093204457,1620000000000 ,1620000000000 ,1620000000000 ,1616812590980 -1616812591010 ,112.5673685,26.86240027,66.5975647,176.3264504,176.4239076,10.318996,0.093243366,1620000000000 ,1620000000000 ,1620000000000 ,1616812590990 -1616812591023 ,112.5673686,26.86239934,66.59901428,176.3272154,176.4178807,10.323393,0.093279542,1620000000000 ,1620000000000 ,1620000000000 ,1616812591000 -1616812591037 ,112.5673687,26.8623984,66.60041046,176.3280077,176.4137012,10.327146,0.093315966,1620000000000 ,1620000000000 ,1620000000000 ,1616812591010 -1616812591044 ,112.5673687,26.86239747,66.60173035,176.3327888,176.4143087,10.334255,0.093368521,1620000000000 ,1620000000000 ,1620000000000 ,1616812591020 -1616812591053 ,112.5673688,26.86239654,66.60303497,176.3345646,176.4161926,10.337537,0.093413718,1620000000000 ,1620000000000 ,1620000000000 ,1616812591030 -1616812591063 ,112.5673688,26.86239561,66.6043396,176.3380617,176.4119432,10.340049,0.093435796,1620000000000 ,1620000000000 ,1620000000000 ,1616812591040 -1616812591073 ,112.5673689,26.86239467,66.60567474,176.3422145,176.4117202,10.341975,0.093456812,1620000000000 ,1620000000000 ,1620000000000 ,1616812591050 -1616812591080 ,112.567369,26.86239374,66.60697174,176.3501921,176.4155294,10.346778,0.0934929,1620000000000 ,1620000000000 ,1620000000000 ,1616812591060 -1616812591091 ,112.567369,26.86239281,66.60817719,176.3559568,176.4228206,10.351635,0.093533984,1620000000000 ,1620000000000 ,1620000000000 ,1616812591070 -1616812591106 ,112.5673691,26.86239187,66.60926819,176.3616395,176.4245147,10.356893,0.093577262,1620000000000 ,1620000000000 ,1620000000000 ,1616812591080 -1616812591111 ,112.5673691,26.86239094,66.6102829,176.3671856,176.4268715,10.363058,0.093631382,1620000000000 ,1620000000000 ,1620000000000 ,1616812591090 -1616812591123 ,112.5673692,26.86239,66.61125183,176.3732782,176.4299291,10.367257,0.093673834,1620000000000 ,1620000000000 ,1620000000000 ,1616812591100 -1616812591130 ,112.5673692,26.86238907,66.61220551,176.3792887,176.4224309,10.370218,0.093702744,1620000000000 ,1620000000000 ,1620000000000 ,1616812591110 -1616812591140 ,112.5673693,26.86238813,66.61315155,176.3844523,176.4120505,10.372909,0.093725934,1620000000000 ,1620000000000 ,1620000000000 ,1616812591120 -1616812591151 ,112.5673694,26.8623872,66.61405945,176.3902717,176.4162334,10.3772545,0.093762005,1620000000000 ,1620000000000 ,1620000000000 ,1616812591130 -1616812591160 ,112.5673694,26.86238626,66.6149292,176.3963095,176.4283294,10.381183,0.093797021,1620000000000 ,1620000000000 ,1620000000000 ,1616812591140 -1616812591170 ,112.5673695,26.86238533,66.6157608,176.4046151,176.421178,10.385608,0.093833029,1620000000000 ,1620000000000 ,1620000000000 ,1616812591150 -1616812591181 ,112.5673695,26.86238439,66.61656952,176.4124834,176.4207323,10.390159,0.093875356,1620000000000 ,1620000000000 ,1620000000000 ,1616812591160 -1616812591191 ,112.5673696,26.86238345,66.61737061,176.4205704,176.4255171,10.395889,0.093921693,1620000000000 ,1620000000000 ,1620000000000 ,1616812591170 -1616812591203 ,112.5673697,26.86238251,66.61813354,176.4284114,176.4409379,10.398773,0.093956848,1620000000000 ,1620000000000 ,1620000000000 ,1616812591180 -1616812591212 ,112.5673697,26.86238158,66.61888123,176.4365803,176.4554489,10.401342,0.093977598,1620000000000 ,1620000000000 ,1620000000000 ,1616812591190 -1616812591225 ,112.5673698,26.86238064,66.61997223,176.4380283,176.4373588,10.409715,0.09410028,1620000000000 ,1620000000000 ,1620000000000 ,1616812591200 -1616812591234 ,112.5673698,26.8623797,66.62166595,176.4448859,176.3910063,10.41311,0.094287115,1620000000000 ,1620000000000 ,1620000000000 ,1616812591210 -1616812591241 ,112.5673699,26.86237875,66.62333679,176.4519073,176.4016637,10.41722,0.094323115,1620000000000 ,1620000000000 ,1620000000000 ,1616812591220 -1616812591252 ,112.56737,26.86237781,66.62495422,176.4592019,176.420781,10.421498,0.094359489,1620000000000 ,1620000000000 ,1620000000000 ,1616812591230 -1616812591261 ,112.56737,26.86237687,66.62652588,176.464748,176.4328476,10.425291,0.094391641,1620000000000 ,1620000000000 ,1620000000000 ,1616812591240 -1616812591274 ,112.5673701,26.86237593,66.62807465,176.4701576,176.4498195,10.4284525,0.094421781,1620000000000 ,1620000000000 ,1620000000000 ,1616812591260 -1616812591282 ,112.5673701,26.86237498,66.62963867,176.476496,176.4688895,10.430258,0.094439559,1620000000000 ,1620000000000 ,1620000000000 ,1616812591270 -1616812591294 ,112.5673702,26.86237404,66.6312027,176.4819874,176.4788942,10.43409,0.094469827,1620000000000 ,1620000000000 ,1620000000000 ,1616812591280 -1616812591303 ,112.5673702,26.8623731,66.63275909,176.4882985,176.4935941,10.437541,0.094500859,1620000000000 ,1620000000000 ,1620000000000 ,1616812591280 -1616812591312 ,112.5673703,26.86237216,66.63428497,176.4937627,176.5183556,10.440938,0.094530472,1620000000000 ,1620000000000 ,1620000000000 ,1616812591300 -1616812591322 ,112.5673704,26.86237121,66.63579559,176.4989263,176.5393076,10.443832,0.094554471,1620000000000 ,1620000000000 ,1620000000000 ,1616812591310 -1616812591332 ,112.5673705,26.86236932,66.63897705,176.5109474,176.5484808,10.449828,0.1891932,1620000000000 ,1620000000000 ,1620000000000 ,1616812591320 -1616812591342 ,112.5673705,26.86236838,66.64063263,176.516275,176.5780915,10.453665,0.094646323,1620000000000 ,1620000000000 ,1620000000000 ,1616812591330 -1616812591353 ,112.5673706,26.86236743,66.64227295,176.5212474,176.5825803,10.455956,0.09466579,1620000000000 ,1620000000000 ,1620000000000 ,1616812591340 -1616812591364 ,112.5673706,26.86236649,66.64387512,176.5284327,176.5813509,10.458707,0.094687243,1620000000000 ,1620000000000 ,1620000000000 ,1616812591350 -1616812591374 ,112.5673707,26.86236554,66.64543915,176.533651,176.5951444,10.462746,0.094721536,1620000000000 ,1620000000000 ,1620000000000 ,1616812591360 -1616812591387 ,112.5673708,26.8623646,66.64696503,176.5387327,176.6034578,10.467321,0.094760832,1620000000000 ,1620000000000 ,1620000000000 ,1616812591370 -1616812591394 ,112.5673708,26.86236365,66.64852142,176.54294,176.6036216,10.4710655,0.094792599,1620000000000 ,1620000000000 ,1620000000000 ,1616812591380 -1616812591404 ,112.5673709,26.8623627,66.65013885,176.5479671,176.5966631,10.474517,0.094828006,1620000000000 ,1620000000000 ,1620000000000 ,1616812591390 -1616812591413 ,112.5673709,26.86236176,66.65180969,176.55324,176.5986233,10.475721,0.094847285,1620000000000 ,1620000000000 ,1620000000000 ,1616812591400 -1616812591423 ,112.567371,26.86236081,66.65351868,176.5590866,176.6062691,10.479225,0.094872536,1620000000000 ,1620000000000 ,1620000000000 ,1616812591410 -1616812591436 ,112.567371,26.86235986,66.65522003,176.5665725,176.6088798,10.482366,0.094898305,1620000000000 ,1620000000000 ,1620000000000 ,1616812591420 -1616812591443 ,112.5673711,26.86235891,66.65692902,176.5729929,176.615333,10.486786,0.094936603,1620000000000 ,1620000000000 ,1620000000000 ,1616812591430 -1616812591454 ,112.5673711,26.86235797,66.65866089,176.5795225,176.6206444,10.489601,0.094968889,1620000000000 ,1620000000000 ,1620000000000 ,1616812591440 -1616812591464 ,112.5673712,26.86235702,66.6601181,176.5867079,176.657965,10.4916315,0.094888346,1620000000000 ,1620000000000 ,1620000000000 ,1616812591450 -1616812591474 ,112.5673713,26.86235607,66.66133118,176.5944943,176.6985784,10.493297,0.094808218,1620000000000 ,1620000000000 ,1620000000000 ,1616812591460 -1616812591484 ,112.5673713,26.86235513,66.66262054,176.6009693,176.6994203,10.495306,0.094826302,1620000000000 ,1620000000000 ,1620000000000 ,1616812591470 -1616812591494 ,112.5673714,26.86235418,66.66394043,176.6084825,176.7124291,10.498441,0.09485674,1620000000000 ,1620000000000 ,1620000000000 ,1616812591480 -1616812591504 ,112.5673714,26.86235323,66.66527557,176.6162416,176.7175746,10.501532,0.094882817,1620000000000 ,1620000000000 ,1620000000000 ,1616812591490 -1616812591514 ,112.5673715,26.86235228,66.66664886,176.6238915,176.7161448,10.504382,0.09491074,1620000000000 ,1620000000000 ,1620000000000 ,1616812591500 -1616812591525 ,112.5673715,26.86235134,66.66806793,176.6302845,176.7192983,10.506564,0.094932268,1620000000000 ,1620000000000 ,1620000000000 ,1616812591510 -1616812591537 ,112.5673716,26.86235039,66.66950989,176.6373879,176.7249743,10.509482,0.094958112,1620000000000 ,1620000000000 ,1620000000000 ,1616812591520 -1616812591545 ,112.5673716,26.86234944,66.6709671,176.6473327,176.7351057,10.5115385,0.094983025,1620000000000 ,1620000000000 ,1620000000000 ,1616812591530 -1616812591557 ,112.5673717,26.86234849,66.67243958,176.6544907,176.7510361,10.513997,0.095002496,1620000000000 ,1620000000000 ,1620000000000 ,1616812591540 -1616812591571 ,112.5673717,26.86234754,66.67394257,176.6648453,176.7513229,10.516061,0.095026022,1620000000000 ,1620000000000 ,1620000000000 ,1616812591550 -1616812591578 ,112.5673718,26.86234659,66.67546844,176.6755277,176.7489755,10.518404,0.095044009,1620000000000 ,1620000000000 ,1620000000000 ,1616812591560 -1616812591588 ,112.5673719,26.86234564,66.67700958,176.6858549,176.7631131,10.52148,0.09507422,1620000000000 ,1620000000000 ,1620000000000 ,1616812591570 -1616812591596 ,112.5673719,26.8623447,66.67851257,176.6964281,176.7712061,10.523468,0.095094251,1620000000000 ,1620000000000 ,1620000000000 ,1616812591580 -1616812591606 ,112.567372,26.86234375,66.68003082,176.7061269,176.7887482,10.525826,0.095116709,1620000000000 ,1620000000000 ,1620000000000 ,1616812591590 -1616812591614 ,112.567372,26.8623428,66.68157196,176.717547,176.7909024,10.529009,0.095143202,1620000000000 ,1620000000000 ,1620000000000 ,1616812591600 -1616812591625 ,112.5673721,26.86234185,66.68312836,176.7292949,176.7939728,10.531587,0.095170089,1620000000000 ,1620000000000 ,1620000000000 ,1616812591610 -1616812591639 ,112.5673721,26.8623409,66.68466949,176.7395675,176.805083,10.53352,0.095188343,1620000000000 ,1620000000000 ,1620000000000 ,1616812591620 -1616812591646 ,112.5673722,26.86233994,66.68617249,176.7503592,176.8182181,10.535433,0.095206242,1620000000000 ,1620000000000 ,1620000000000 ,1616812591630 -1616812591656 ,112.5673722,26.86233899,66.68766785,176.7622438,176.8265184,10.538173,0.095227923,1620000000000 ,1620000000000 ,1620000000000 ,1616812591640 -1616812591668 ,112.5673723,26.86233804,66.68913269,176.7738004,176.8336945,10.54164,0.095257639,1620000000000 ,1620000000000 ,1620000000000 ,1616812591650 -1616812591675 ,112.5673723,26.86233709,66.69054413,176.7851386,176.8429215,10.544571,0.095284046,1620000000000 ,1620000000000 ,1620000000000 ,1616812591660 -1616812591686 ,112.5673724,26.86233614,66.69186401,176.7972143,176.8540738,10.547455,0.095311189,1620000000000 ,1620000000000 ,1620000000000 ,1616812591670 -1616812591696 ,112.5673724,26.86233519,66.69309998,176.809618,176.8688434,10.55114,0.095336765,1620000000000 ,1620000000000 ,1620000000000 ,1616812591680 -1616812591706 ,112.5673725,26.86233424,66.69429016,176.8213932,176.8792107,10.553541,0.095359737,1620000000000 ,1620000000000 ,1620000000000 ,1616812591690 -1616812591717 ,112.5673725,26.86233328,66.69546509,176.833469,176.8865343,10.5547085,0.095374375,1620000000000 ,1620000000000 ,1620000000000 ,1616812591700 -1616812591727 ,112.5673726,26.86233233,66.69662476,176.8461731,176.8961415,10.558136,0.095399253,1620000000000 ,1620000000000 ,1620000000000 ,1616812591710 -1616812591737 ,112.5673726,26.86233138,66.69773865,176.8564184,176.9117791,10.560932,0.095424029,1620000000000 ,1620000000000 ,1620000000000 ,1616812591720 -1616812591747 ,112.5673727,26.86233042,66.69876862,176.8680297,176.9302841,10.56395,0.095445894,1620000000000 ,1620000000000 ,1620000000000 ,1616812591730 -1616812591758 ,112.5673727,26.86232947,66.69971466,176.8783843,176.9371844,10.566953,0.095473533,1620000000000 ,1620000000000 ,1620000000000 ,1616812591740 -1616812591770 ,112.5673728,26.86232852,66.70059204,176.8907606,176.9490531,10.571183,0.095505068,1620000000000 ,1620000000000 ,1620000000000 ,1616812591750 -1616812591780 ,112.5673728,26.86232756,66.70141602,176.9018255,176.9605895,10.573383,0.095525695,1620000000000 ,1620000000000 ,1620000000000 ,1616812591760 -1616812591787 ,112.5673729,26.86232661,66.70220184,176.9140106,176.9706996,10.575041,0.095541042,1620000000000 ,1620000000000 ,1620000000000 ,1616812591770 -1616812591799 ,112.5673729,26.86232566,66.70297241,176.9258951,176.990635,10.577397,0.095559904,1620000000000 ,1620000000000 ,1620000000000 ,1616812591780 -1616812591809 ,112.567373,26.8623247,66.70375061,176.9359765,177.0069667,10.579137,0.095576727,1620000000000 ,1620000000000 ,1620000000000 ,1616812591790 -1616812591817 ,112.567373,26.86232375,66.70453644,176.9479703,177.0196771,10.581622,0.095594623,1620000000000 ,1620000000000 ,1620000000000 ,1616812591800 -1616812591829 ,112.5673731,26.86232279,66.7053299,176.9588986,177.0299325,10.58459,0.095620189,1620000000000 ,1620000000000 ,1620000000000 ,1616812591810 -1616812591837 ,112.5673731,26.86232184,66.70613861,176.9704006,177.0461123,10.588341,0.095651427,1620000000000 ,1620000000000 ,1620000000000 ,1616812591820 -1616812591847 ,112.5673732,26.86232088,66.7069397,176.9822305,177.0626709,10.591304,0.095680618,1620000000000 ,1620000000000 ,1620000000000 ,1616812591830 -1616812591857 ,112.5673732,26.86231992,66.70773315,176.9925577,177.0815668,10.593723,0.09570345,1620000000000 ,1620000000000 ,1620000000000 ,1616812591840 -1616812591868 ,112.5673733,26.86231897,66.70855713,177.0041144,177.0933581,10.595549,0.095719298,1620000000000 ,1620000000000 ,1620000000000 ,1616812591850 -1616812591878 ,112.5673733,26.86231801,66.70942688,177.0163268,177.1050138,10.59794,0.095740453,1620000000000 ,1620000000000 ,1620000000000 ,1616812591860 -1616812591889 ,112.5673734,26.86231706,66.71032715,177.0263262,177.124366,10.601304,0.095769671,1620000000000 ,1620000000000 ,1620000000000 ,1616812591870 -1616812591903 ,112.5673734,26.8623161,66.71122742,177.0366534,177.1333274,10.604172,0.095796189,1620000000000 ,1620000000000 ,1620000000000 ,1616812591880 -1616812591911 ,112.5673735,26.86231514,66.7121582,177.0466528,177.1512501,10.606925,0.095821306,1620000000000 ,1620000000000 ,1620000000000 ,1616812591890 -1616812591918 ,112.5673735,26.86231418,66.7131424,177.057226,177.1668946,10.609262,0.095844035,1620000000000 ,1620000000000 ,1620000000000 ,1616812591900 -1616812591929 ,112.5673736,26.86231323,66.71417236,177.0685641,177.1741499,10.612583,0.095870728,1620000000000 ,1620000000000 ,1620000000000 ,1616812591910 -1616812591939 ,112.5673736,26.86231227,66.71523285,177.0790006,177.192161,10.614318,0.095890617,1620000000000 ,1620000000000 ,1620000000000 ,1616812591920 -1616812591949 ,112.5673737,26.86231131,66.71632385,177.0909671,177.2100825,10.618003,0.095922204,1620000000000 ,1620000000000 ,1620000000000 ,1616812591930 -1616812591958 ,112.5673737,26.86231035,66.71743774,177.1007206,177.22207,10.620742,0.095948258,1620000000000 ,1620000000000 ,1620000000000 ,1616812591940 -1616812591970 ,112.5673738,26.86230939,66.71858978,177.1109659,177.2410909,10.622758,0.095968251,1620000000000 ,1620000000000 ,1620000000000 ,1616812591950 -1616812591984 ,112.5673738,26.86230844,66.71975708,177.1203916,177.2531815,10.626305,0.095998206,1620000000000 ,1620000000000 ,1620000000000 ,1616812591960 -1616812591991 ,112.5673739,26.86230748,66.72092438,177.1311833,177.2642882,10.628529,0.096023007,1620000000000 ,1620000000000 ,1620000000000 ,1616812591970 -1616812592001 ,112.5673739,26.86230652,66.7220993,177.140445,177.2785367,10.632794,0.09605391,1620000000000 ,1620000000000 ,1620000000000 ,1616812591980 -1616812592010 ,112.5673739,26.86230556,66.72328186,177.1497614,177.2832176,10.635631,0.096084728,1620000000000 ,1620000000000 ,1620000000000 ,1616812591990 -1616812592026 ,112.567374,26.8623046,66.72451019,177.1601979,177.2892277,10.636748,0.096099585,1620000000000 ,1620000000000 ,1620000000000 ,1616812592000 -1616812592031 ,112.567374,26.86230364,66.7257843,177.1714267,177.3015418,10.6402645,0.096129457,1620000000000 ,1620000000000 ,1620000000000 ,1616812592010 -1616812592039 ,112.5673741,26.86230268,66.72708893,177.1821365,177.312394,10.643002,0.096154986,1620000000000 ,1620000000000 ,1620000000000 ,1616812592020 -1616812592048 ,112.5673741,26.86230172,66.72843933,177.1927369,177.3247807,10.646609,0.096185855,1620000000000 ,1620000000000 ,1620000000000 ,1616812592030 -1616812592065 ,112.5673742,26.86230075,66.72981262,177.2030369,177.3225599,10.649783,0.096222527,1620000000000 ,1620000000000 ,1620000000000 ,1616812592040 -1616812592076 ,112.5673742,26.86229979,66.7312088,177.2123806,177.3242367,10.651326,0.096237152,1620000000000 ,1620000000000 ,1620000000000 ,1616812592050 -1616812592082 ,112.5673743,26.86229883,66.73261261,177.2236367,177.3430354,10.653223,0.096253185,1620000000000 ,1620000000000 ,1620000000000 ,1616812592060 -1616812592092 ,112.5673743,26.86229787,66.73403931,177.2342645,177.3579083,10.655361,0.096273539,1620000000000 ,1620000000000 ,1620000000000 ,1616812592070 -1616812592102 ,112.5673743,26.86229691,66.73549652,177.2478156,177.3622438,10.659232,0.096309541,1620000000000 ,1620000000000 ,1620000000000 ,1616812592080 -1616812592112 ,112.5673744,26.86229595,66.73696899,177.2596181,177.365994,10.663059,0.096344394,1620000000000 ,1620000000000 ,1620000000000 ,1616812592090 -1616812592123 ,112.5673744,26.86229498,66.73842621,177.2703279,177.3755974,10.666938,0.096379852,1620000000000 ,1620000000000 ,1620000000000 ,1616812592100 -1616812592134 ,112.5673745,26.86229402,66.73987579,177.2800541,177.3864516,10.669009,0.096402282,1620000000000 ,1620000000000 ,1620000000000 ,1616812592110 -1616812592140 ,112.5673745,26.86229306,66.74131012,177.2913922,177.4095074,10.6719885,0.096427609,1620000000000 ,1620000000000 ,1620000000000 ,1616812592120 -1616812592150 ,112.5673746,26.86229209,66.74272156,177.3027303,177.4131155,10.675614,0.096460722,1620000000000 ,1620000000000 ,1620000000000 ,1616812592130 -1616812592162 ,112.5673746,26.86229113,66.74409485,177.3125111,177.4176667,10.678618,0.096486248,1620000000000 ,1620000000000 ,1620000000000 ,1616812592140 -1616812592172 ,112.5673747,26.86229016,66.74542999,177.3227018,177.4278292,10.682213,0.096519291,1620000000000 ,1620000000000 ,1620000000000 ,1616812592150 -1616812592181 ,112.5673747,26.8622892,66.74668884,177.3328104,177.4408739,10.687286,0.096559329,1620000000000 ,1620000000000 ,1620000000000 ,1616812592160 -1616812592191 ,112.5673747,26.86228824,66.74787903,177.3420995,177.464038,10.692018,0.096599391,1620000000000 ,1620000000000 ,1620000000000 ,1616812592170 -1616812592201 ,112.5673748,26.86228727,66.74901581,177.3524267,177.4804955,10.697128,0.096645429,1620000000000 ,1620000000000 ,1620000000000 ,1616812592180 -1616812592211 ,112.5673748,26.8622863,66.75012207,177.3643113,177.4953343,10.70071,0.0966829,1620000000000 ,1620000000000 ,1620000000000 ,1616812592190 -1616812592223 ,112.5673749,26.86228534,66.75076294,177.3852936,177.5935473,10.695546,0.09659367,1620000000000 ,1620000000000 ,1620000000000 ,1616812592200 -1616812592232 ,112.5673749,26.86228438,66.7506485,177.3969323,177.7604306,10.700436,0.0964101,1620000000000 ,1620000000000 ,1620000000000 ,1616812592210 -1616812592243 ,112.5673749,26.86228341,66.75045013,177.4072595,177.7784148,10.7046585,0.096451656,1620000000000 ,1620000000000 ,1620000000000 ,1616812592220 -1616812592253 ,112.567375,26.86228245,66.75021362,177.4174228,177.793384,10.710362,0.096499159,1620000000000 ,1620000000000 ,1620000000000 ,1616812592230 -1616812592265 ,112.567375,26.86228148,66.74996185,177.4269578,177.8022943,10.714866,0.096538272,1620000000000 ,1620000000000 ,1620000000000 ,1616812592240 -1616812592273 ,112.5673751,26.86228052,66.74968719,177.4364654,177.8081113,10.720963,0.096589948,1620000000000 ,1620000000000 ,1620000000000 ,1616812592250 -1616812592282 ,112.5673751,26.86227955,66.74936676,177.4482133,177.8119935,10.726733,0.096642656,1620000000000 ,1620000000000 ,1620000000000 ,1616812592260 -1616812592291 ,112.5673751,26.86227859,66.74897003,177.4589777,177.8220342,10.731538,0.096685062,1620000000000 ,1620000000000 ,1620000000000 ,1616812592270 -1616812592301 ,112.5673752,26.86227762,66.7485199,177.4711628,177.8318164,10.737253,0.096733273,1620000000000 ,1620000000000 ,1620000000000 ,1616812592280 -1616812592312 ,112.5673752,26.86227665,66.74806976,177.4827194,177.8337193,10.741586,0.096773203,1620000000000 ,1620000000000 ,1620000000000 ,1616812592300 -1616812592325 ,112.5673752,26.86227568,66.74763489,177.4953963,177.838864,10.7482605,0.096829101,1620000000000 ,1620000000000 ,1620000000000 ,1616812592310 -1616812592336 ,112.5673753,26.86227472,66.74719238,177.5084829,177.8409268,10.752708,0.096875097,1620000000000 ,1620000000000 ,1620000000000 ,1616812592320 -1616812592343 ,112.5673753,26.86227278,66.74625397,177.535066,177.8604255,10.762404,0.193876796,1620000000000 ,1620000000000 ,1620000000000 ,1616812592330 -1616812592354 ,112.5673754,26.86227181,66.74576569,177.5493821,177.8778237,10.768209,0.097010328,1620000000000 ,1620000000000 ,1620000000000 ,1616812592340 -1616812592362 ,112.5673754,26.86227084,66.74526215,177.5659658,177.8823961,10.775032,0.097064863,1620000000000 ,1620000000000 ,1620000000000 ,1616812592350 -1616812592372 ,112.5673755,26.86226987,66.74473572,177.5803092,177.8939402,10.781212,0.097122351,1620000000000 ,1620000000000 ,1620000000000 ,1616812592360 -1616812592382 ,112.5673755,26.8622689,66.7441864,177.5946526,177.9022922,10.786913,0.097174988,1620000000000 ,1620000000000 ,1620000000000 ,1616812592370 -1616812592392 ,112.5673755,26.86226793,66.74362183,177.608996,177.9265217,10.792468,0.097224436,1620000000000 ,1620000000000 ,1620000000000 ,1616812592380 -1616812592402 ,112.5673755,26.86226793,66.74362183,177.608996,-400,10.792468,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812592390 -1616812592413 ,112.5673756,26.86226598,66.74243164,177.6431196,177.9585114,10.805211,0.194608851,1620000000000 ,1620000000000 ,1620000000000 ,1616812592400 -1616812592423 ,112.5673756,26.86226501,66.74185181,177.6602497,177.9792387,10.8103285,0.097382298,1620000000000 ,1620000000000 ,1620000000000 ,1616812592410 -1616812592436 ,112.5673757,26.86226403,66.74128723,177.6771066,177.998349,10.815852,0.097431616,1620000000000 ,1620000000000 ,1620000000000 ,1616812592420 -1616812592443 ,112.5673757,26.86226306,66.74072266,177.6924609,178.0145767,10.821532,0.097480987,1620000000000 ,1620000000000 ,1620000000000 ,1616812592430 -1616812592457 ,112.5673757,26.86226209,66.74014282,177.7096183,178.0381678,10.828185,0.097536289,1620000000000 ,1620000000000 ,1620000000000 ,1616812592440 -1616812592464 ,112.5673758,26.86226111,66.73999023,177.7276227,177.9651366,10.834301,0.097719654,1620000000000 ,1620000000000 ,1620000000000 ,1616812592450 -1616812592474 ,112.5673758,26.86226013,66.74027252,177.7460096,177.8799018,10.84023,0.097895083,1620000000000 ,1620000000000 ,1620000000000 ,1616812592460 -1616812592486 ,112.5673758,26.86225915,66.74059296,177.7637954,177.893871,10.845497,0.097944229,1620000000000 ,1620000000000 ,1620000000000 ,1616812592470 -1616812592493 ,112.5673759,26.86225817,66.74092102,177.7839581,177.9045281,10.849264,0.097983054,1620000000000 ,1620000000000 ,1620000000000 ,1616812592480 -1616812592507 ,112.5673759,26.86225719,66.74127197,177.8017986,177.928393,10.852739,0.098015326,1620000000000 ,1620000000000 ,1620000000000 ,1616812592490 -1616812592520 ,112.5673759,26.86225621,66.74169159,177.8187374,177.9420686,10.858817,0.098061107,1620000000000 ,1620000000000 ,1620000000000 ,1616812592500 -1616812592526 ,112.567376,26.86225523,66.74217224,177.8376161,177.9539081,10.865607,0.098123551,1620000000000 ,1620000000000 ,1620000000000 ,1616812592510 -1616812592534 ,112.567376,26.86225425,66.74269104,177.8564947,177.9645212,10.87175,0.098179204,1620000000000 ,1620000000000 ,1620000000000 ,1616812592520 -1616812592546 ,112.567376,26.86225327,66.7432251,177.8741439,177.9872569,10.877732,0.098236523,1620000000000 ,1620000000000 ,1620000000000 ,1616812592530 -1616812592554 ,112.5673761,26.86225229,66.74378204,177.8928586,178.0121489,10.882198,0.098276554,1620000000000 ,1620000000000 ,1620000000000 ,1616812592540 -1616812592564 ,112.5673761,26.8622513,66.74436188,177.9126389,178.0362202,10.886333,0.098314031,1620000000000 ,1620000000000 ,1620000000000 ,1616812592550 -1616812592575 ,112.5673761,26.86225032,66.74499512,177.9310257,178.0579545,10.889537,0.098345151,1620000000000 ,1620000000000 ,1620000000000 ,1616812592560 -1616812592589 ,112.5673762,26.86224934,66.74568176,177.9504508,178.0802794,10.895027,0.098391882,1620000000000 ,1620000000000 ,1620000000000 ,1616812592570 -1616812592595 ,112.5673762,26.86224835,66.74642944,177.9685371,178.1049025,10.899593,0.09843208,1620000000000 ,1620000000000 ,1620000000000 ,1616812592580 -1616812592607 ,112.5673762,26.86224737,66.74719238,177.9881808,178.1326148,10.906584,0.098489459,1620000000000 ,1620000000000 ,1620000000000 ,1616812592590 -1616812592616 ,112.5673763,26.86224639,66.74797821,178.0067862,178.1658847,10.911631,0.098542991,1620000000000 ,1620000000000 ,1620000000000 ,1616812592600 -1616812592627 ,112.5673763,26.8622454,66.74880981,178.0239163,178.1938888,10.916981,0.098589502,1620000000000 ,1620000000000 ,1620000000000 ,1616812592610 -1616812592636 ,112.5673763,26.86224441,66.74970245,178.041183,178.2186275,10.92105,0.098628723,1620000000000 ,1620000000000 ,1620000000000 ,1616812592620 -1616812592648 ,112.5673764,26.86224343,66.75061798,178.058559,178.2402829,10.925194,0.098665432,1620000000000 ,1620000000000 ,1620000000000 ,1616812592630 -1616812592657 ,112.5673764,26.86224244,66.75157928,178.0762356,178.2721359,10.929539,0.098704543,1620000000000 ,1620000000000 ,1620000000000 ,1616812592640 -1616812592666 ,112.5673764,26.86224145,66.75254059,178.0944039,178.2905791,10.935381,0.098754552,1620000000000 ,1620000000000 ,1620000000000 ,1616812592650 -1616812592676 ,112.5673765,26.86224047,66.75351715,178.1116706,178.3183385,10.941713,0.098809361,1620000000000 ,1620000000000 ,1620000000000 ,1616812592660 -1616812592685 ,112.5673765,26.86223948,66.75450897,178.1303307,178.3374379,10.949856,0.098877347,1620000000000 ,1620000000000 ,1620000000000 ,1616812592670 -1616812592696 ,112.5673765,26.86223849,66.75550842,178.1475154,178.3473649,10.955158,0.098933231,1620000000000 ,1620000000000 ,1620000000000 ,1616812592680 -1616812592707 ,112.5673765,26.8622375,66.75649261,178.1661482,178.3661034,10.961298,0.098985119,1620000000000 ,1620000000000 ,1620000000000 ,1616812592690 -1616812592716 ,112.5673766,26.86223651,66.75749207,178.1857371,178.3876516,10.965538,0.099027629,1620000000000 ,1620000000000 ,1620000000000 ,1616812592700 -1616812592726 ,112.5673766,26.86223552,66.75850677,178.2059545,178.3983773,10.97149,0.099073529,1620000000000 ,1620000000000 ,1620000000000 ,1616812592710 -1616812592736 ,112.5673766,26.86223453,66.75959778,178.2233032,178.4161043,10.978013,0.099138395,1620000000000 ,1620000000000 ,1620000000000 ,1616812592720 -1616812592745 ,112.5673767,26.86223354,66.76071167,178.2414169,178.4285872,10.984944,0.099196287,1620000000000 ,1620000000000 ,1620000000000 ,1616812592730 -1616812592756 ,112.5673767,26.86223254,66.76185608,178.2595578,178.4462396,10.991913,0.099262371,1620000000000 ,1620000000000 ,1620000000000 ,1616812592740 -1616812592766 ,112.5673767,26.86223155,66.76301575,178.2770431,178.4604573,10.997247,0.099312811,1620000000000 ,1620000000000 ,1620000000000 ,1616812592750 -1616812592776 ,112.5673767,26.86223056,66.76420593,178.2954027,178.4833529,11.003526,0.099370977,1620000000000 ,1620000000000 ,1620000000000 ,1616812592760 -1616812592788 ,112.5673768,26.86222956,66.76541901,178.3152102,178.4966969,11.008716,0.099416804,1620000000000 ,1620000000000 ,1620000000000 ,1616812592770 -1616812592797 ,112.5673768,26.86222857,66.76667023,178.3340615,178.5180684,11.013529,0.099463935,1620000000000 ,1620000000000 ,1620000000000 ,1616812592780 -1616812592809 ,112.5673768,26.86222758,66.76794434,178.3545521,178.5331509,11.018554,0.099510262,1620000000000 ,1620000000000 ,1620000000000 ,1616812592790 -1616812592816 ,112.5673768,26.86222658,66.7692337,178.3732941,178.5626232,11.02482,0.099563287,1620000000000 ,1620000000000 ,1620000000000 ,1616812592800 -1616812592828 ,112.5673769,26.86222558,66.7705307,178.3924187,178.591114,11.031285,0.099621601,1620000000000 ,1620000000000 ,1620000000000 ,1616812592810 -1616812592837 ,112.5673769,26.86222459,66.77186584,178.411188,178.6219594,11.038568,0.099690314,1620000000000 ,1620000000000 ,1620000000000 ,1616812592820 -1616812592846 ,112.5673769,26.86222359,66.77320099,178.4301213,178.639554,11.045655,0.099751185,1620000000000 ,1620000000000 ,1620000000000 ,1616812592830 -1616812592857 ,112.5673769,26.86222259,66.77453613,178.4483169,178.6651799,11.050169,0.099803278,1620000000000 ,1620000000000 ,1620000000000 ,1616812592840 -1616812592867 ,112.567377,26.86222159,66.77587128,178.4666492,178.690576,11.055531,0.099846807,1620000000000 ,1620000000000 ,1620000000000 ,1616812592850 -1616812592877 ,112.567377,26.8622206,66.77723694,178.4860196,178.7107589,11.060834,0.099900974,1620000000000 ,1620000000000 ,1620000000000 ,1616812592860 -1616812592888 ,112.567377,26.8622196,66.77861023,178.5045704,178.7411945,11.068122,0.099955355,1620000000000 ,1620000000000 ,1620000000000 ,1616812592870 -1616812592897 ,112.567377,26.8622186,66.77998352,178.5224928,178.7725486,11.074282,0.100021286,1620000000000 ,1620000000000 ,1620000000000 ,1616812592880 -1616812592909 ,112.567377,26.8622176,66.78131866,178.5412622,178.7852073,11.081538,0.10008354,1620000000000 ,1620000000000 ,1620000000000 ,1616812592890 -1616812592917 ,112.5673771,26.86221659,66.78263855,178.5583103,178.8036103,11.08728,0.100137092,1620000000000 ,1620000000000 ,1620000000000 ,1616812592900 -1616812592927 ,112.5673771,26.86221559,66.78391266,178.5795932,178.8191752,11.095196,0.100203871,1620000000000 ,1620000000000 ,1620000000000 ,1616812592910 -1616812592938 ,112.5673771,26.86221459,66.78514099,178.5978708,178.8415876,11.101006,0.10026134,1620000000000 ,1620000000000 ,1620000000000 ,1616812592920 -1616812592949 ,112.5673771,26.86221359,66.78635406,178.6151648,178.8619768,11.107772,0.100322279,1620000000000 ,1620000000000 ,1620000000000 ,1616812592930 -1616812592971 ,112.5673771,26.86221258,66.78759003,178.6339615,178.8687111,11.11251,0.10036776,1620000000000 ,1620000000000 ,1620000000000 ,1616812592940 -1616812592975 ,112.5673772,26.86221158,66.78884125,178.6529767,178.8842537,11.120146,0.100433401,1620000000000 ,1620000000000 ,1620000000000 ,1616812592950 -1616812592978 ,112.5673772,26.86221058,66.79005432,178.6714182,178.8944975,11.126232,0.100492418,1620000000000 ,1620000000000 ,1620000000000 ,1616812592960 -1616812592989 ,112.5673772,26.86220957,66.79117584,178.6899417,178.9174568,11.132209,0.100543825,1620000000000 ,1620000000000 ,1620000000000 ,1616812592970 -1616812593000 ,112.5673772,26.86220856,66.79223633,178.7092575,178.9357021,11.138344,0.100596938,1620000000000 ,1620000000000 ,1620000000000 ,1616812592980 -1616812593011 ,112.5673772,26.86220756,66.79328156,178.7284367,178.9522318,11.144371,0.100651954,1620000000000 ,1620000000000 ,1620000000000 ,1616812592990 -1616812593020 ,112.5673773,26.86220655,66.79430389,178.7486813,178.9666933,11.152939,0.100723741,1620000000000 ,1620000000000 ,1620000000000 ,1616812593000 -1616812593030 ,112.5673773,26.86220554,66.79524994,178.7674507,178.9869769,11.160129,0.100789405,1620000000000 ,1620000000000 ,1620000000000 ,1616812593010 -1616812593040 ,112.5673773,26.86220453,66.7960968,178.7877227,179.0196883,11.168424,0.10086051,1620000000000 ,1620000000000 ,1620000000000 ,1616812593020 -1616812593048 ,112.5673773,26.86220353,66.79685211,178.8069292,179.0508871,11.1748705,0.100920531,1620000000000 ,1620000000000 ,1620000000000 ,1616812593030 -1616812593058 ,112.5673773,26.86220252,66.79754639,178.8278842,179.0720584,11.181145,0.100977362,1620000000000 ,1620000000000 ,1620000000000 ,1616812593040 -1616812593069 ,112.5673773,26.86220151,66.79819489,178.8461072,179.0861459,11.186916,0.10102545,1620000000000 ,1620000000000 ,1620000000000 ,1616812593050 -1616812593078 ,112.5673774,26.86220049,66.7988205,178.8653956,179.1105841,11.194858,0.101095686,1620000000000 ,1620000000000 ,1620000000000 ,1616812593060 -1616812593089 ,112.5673774,26.86219948,66.7993927,178.8861047,179.1423436,11.203099,0.101158984,1620000000000 ,1620000000000 ,1620000000000 ,1616812593070 -1616812593099 ,112.5673774,26.86219847,66.79991913,178.9063767,179.1739909,11.211424,0.101242216,1620000000000 ,1620000000000 ,1620000000000 ,1616812593080 -1616812593109 ,112.5673774,26.86219746,66.80040741,178.9259111,179.1957005,11.219195,0.101307767,1620000000000 ,1620000000000 ,1620000000000 ,1616812593090 -1616812593125 ,112.5673774,26.86219644,66.80088806,178.9451176,179.2180903,11.225224,0.101364667,1620000000000 ,1620000000000 ,1620000000000 ,1616812593100 -1616812593130 ,112.5673774,26.86219543,66.80136108,178.9662092,179.2317844,11.231967,0.101423872,1620000000000 ,1620000000000 ,1620000000000 ,1616812593110 -1616812593139 ,112.5673774,26.86219442,66.80181885,178.98476,179.2507022,11.239327,0.101488521,1620000000000 ,1620000000000 ,1620000000000 ,1616812593120 -1616812593150 ,112.5673774,26.8621934,66.80225372,179.0049774,179.272145,11.247999,0.101565842,1620000000000 ,1620000000000 ,1620000000000 ,1616812593130 -1616812593160 ,112.5673775,26.86219238,66.80265045,179.0251128,179.295153,11.254776,0.101624268,1620000000000 ,1620000000000 ,1620000000000 ,1616812593140 -1616812593169 ,112.5673775,26.86219137,66.80303955,179.0466142,179.3136099,11.260496,0.101681534,1620000000000 ,1620000000000 ,1620000000000 ,1616812593150 -1616812593180 ,112.5673775,26.86219035,66.80343628,179.0673506,179.3305207,11.266348,0.101732249,1620000000000 ,1620000000000 ,1620000000000 ,1616812593160 -1616812593190 ,112.5673775,26.86218933,66.80384827,179.0871855,179.3473068,11.2744665,0.101798222,1620000000000 ,1620000000000 ,1620000000000 ,1616812593170 -1616812593203 ,112.5673775,26.86218831,66.804245,179.1081952,179.3613545,11.282464,0.10187129,1620000000000 ,1620000000000 ,1620000000000 ,1616812593180 -1616812593212 ,112.5673775,26.86218729,66.80465698,179.1282213,179.3859594,11.291691,0.101950649,1620000000000 ,1620000000000 ,1620000000000 ,1616812593190 -1616812593220 ,112.5673775,26.86218628,66.80503082,179.1469907,179.5493314,11.283603,0.1018829,1620000000000 ,1620000000000 ,1620000000000 ,1616812593200 -1616812593230 ,112.5673775,26.86218526,66.80529785,179.1673993,179.8184478,11.290324,0.101685407,1620000000000 ,1620000000000 ,1620000000000 ,1616812593210 -1616812593240 ,112.5673775,26.86218424,66.80560303,179.1869609,179.8380213,11.296542,0.101744498,1620000000000 ,1620000000000 ,1620000000000 ,1616812593220 -1616812593250 ,112.5673775,26.86218322,66.80590057,179.2088448,179.8550235,11.305162,0.101816832,1620000000000 ,1620000000000 ,1620000000000 ,1616812593230 -1616812593260 ,112.5673775,26.8621822,66.80621338,179.2297179,179.8779286,11.312225,0.101885016,1620000000000 ,1620000000000 ,1620000000000 ,1616812593240 -1616812593271 ,112.5673775,26.86218118,66.80653381,179.2520663,179.8985506,11.320994,0.101960209,1620000000000 ,1620000000000 ,1620000000000 ,1616812593250 -1616812593282 ,112.5673775,26.86218016,66.80690002,179.2734584,179.9169448,11.327373,0.102021875,1620000000000 ,1620000000000 ,1620000000000 ,1616812593260 -1616812593293 ,112.5673775,26.86217914,66.80732727,179.2932113,179.9421535,11.333908,0.102084371,1620000000000 ,1620000000000 ,1620000000000 ,1616812593270 -1616812593302 ,112.5673775,26.86217812,66.80780792,179.3132921,179.9683466,11.33988,0.102141109,1620000000000 ,1620000000000 ,1620000000000 ,1616812593280 -1616812593311 ,112.5673775,26.8621771,66.80831146,179.3342471,179.9961611,11.347982,0.102208985,1620000000000 ,1620000000000 ,1620000000000 ,1616812593290 -1616812593325 ,112.5673775,26.86217608,66.80883789,179.3562676,180.0160121,11.355153,0.102275225,1620000000000 ,1620000000000 ,1620000000000 ,1616812593300 -1616812593330 ,112.5673775,26.86217505,66.80943298,179.3752556,180.0408448,11.3639145,0.102355747,1620000000000 ,1620000000000 ,1620000000000 ,1616812593310 -1616812593341 ,112.5673775,26.86217403,66.81008911,179.3960467,180.0634867,11.372019,0.102426234,1620000000000 ,1620000000000 ,1620000000000 ,1616812593320 -1616812593352 ,112.5673775,26.862173,66.8107605,179.4158269,180.0933014,11.379094,0.102497924,1620000000000 ,1620000000000 ,1620000000000 ,1616812593330 -1616812593364 ,112.5673775,26.86217198,66.81143951,179.4371917,180.1240507,11.385937,0.10256196,1620000000000 ,1620000000000 ,1620000000000 ,1616812593340 -1616812593378 ,112.5673775,26.86217095,66.81211853,179.4582834,180.1470372,11.394154,0.102628695,1620000000000 ,1620000000000 ,1620000000000 ,1616812593350 -1616812593387 ,112.5673775,26.86216993,66.81280518,179.4771893,180.1688713,11.4019985,0.102703064,1620000000000 ,1620000000000 ,1620000000000 ,1616812593360 -1616812593393 ,112.5673775,26.8621689,66.81346893,179.4977892,180.1863807,11.410638,0.102779253,1620000000000 ,1620000000000 ,1620000000000 ,1616812593370 -1616812593402 ,112.5673775,26.86216787,66.8141098,179.5169957,180.2160247,11.418805,0.102854483,1620000000000 ,1620000000000 ,1620000000000 ,1616812593380 -1616812593412 ,112.5673775,26.86216684,66.81482697,179.5349727,180.242054,11.424565,0.102908777,1620000000000 ,1620000000000 ,1620000000000 ,1616812593390 -1616812593423 ,112.5673775,26.86216581,66.81565094,179.5540153,180.2604738,11.431663,0.102979007,1620000000000 ,1620000000000 ,1620000000000 ,1616812593400 -1616812593433 ,112.5673775,26.86216375,66.81745148,179.5939856,180.287417,11.449627,0.206185702,1620000000000 ,1620000000000 ,1620000000000 ,1616812593420 -1616812593444 ,112.5673775,26.86216375,66.81745148,179.5939856,-400,11.449627,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812593430 -1616812593458 ,112.5673775,26.86216168,66.81904602,179.6366059,180.33371,11.471696,0.206560695,1620000000000 ,1620000000000 ,1620000000000 ,1616812593440 -1616812593470 ,112.5673775,26.86216065,66.81986237,179.6554299,180.2189124,11.480717,0.103542686,1620000000000 ,1620000000000 ,1620000000000 ,1616812593450 -1616812593475 ,112.5673775,26.86215961,66.82072449,179.6764942,180.1017052,11.489385,0.10374278,1620000000000 ,1620000000000 ,1620000000000 ,1616812593460 -1616812593482 ,112.5673775,26.86215857,66.82155609,179.6981869,180.1218251,11.49902,0.103834123,1620000000000 ,1620000000000 ,1620000000000 ,1616812593470 -1616812593494 ,112.5673775,26.86215753,66.82235718,179.71906,180.1327071,11.509177,0.103918571,1620000000000 ,1620000000000 ,1620000000000 ,1616812593480 -1616812593503 ,112.5673775,26.86215649,66.82315826,179.7385943,180.1533308,11.520274,0.104013755,1620000000000 ,1620000000000 ,1620000000000 ,1616812593490 -1616812593513 ,112.5673775,26.86215545,66.8239212,179.7586478,180.17083,11.532977,0.104126952,1620000000000 ,1620000000000 ,1620000000000 ,1616812593500 -1616812593523 ,112.5673775,26.86215441,66.82460785,179.7782094,180.1955284,11.543467,0.104227958,1620000000000 ,1620000000000 ,1620000000000 ,1616812593510 -1616812593535 ,112.5673775,26.86215337,66.82527924,179.7973339,180.2200872,11.5554285,0.104327012,1620000000000 ,1620000000000 ,1620000000000 ,1616812593520 -1616812593546 ,112.5673775,26.86215232,66.82597351,179.8165678,180.2377475,11.5665865,0.104433446,1620000000000 ,1620000000000 ,1620000000000 ,1616812593530 -1616812593555 ,112.5673775,26.86215128,66.8266983,179.8344629,180.2521699,11.577368,0.104524094,1620000000000 ,1620000000000 ,1620000000000 ,1616812593540 -1616812593565 ,112.5673775,26.86215023,66.82736969,179.8564561,180.2740707,11.589903,0.104639553,1620000000000 ,1620000000000 ,1620000000000 ,1616812593550 -1616812593573 ,112.5673775,26.86214918,66.82798004,179.8767281,180.3077521,11.600149,0.104734001,1620000000000 ,1620000000000 ,1620000000000 ,1616812593560 -1616812593585 ,112.5673774,26.86214813,66.82859039,179.896317,180.3312039,11.608478,0.10481077,1620000000000 ,1620000000000 ,1620000000000 ,1616812593570 -1616812593593 ,112.5673774,26.86214708,66.82923889,179.9161519,180.3514987,11.617695,0.10489066,1620000000000 ,1620000000000 ,1620000000000 ,1616812593580 -1616812593603 ,112.5673774,26.86214604,66.82988739,179.9358775,180.37709,11.625593,0.104966487,1620000000000 ,1620000000000 ,1620000000000 ,1616812593590 -1616812593616 ,112.5673774,26.86214498,66.83052063,179.955166,180.4046294,11.633322,0.105036531,1620000000000 ,1620000000000 ,1620000000000 ,1616812593600 -1616812593628 ,112.5673774,26.86214393,66.83117676,179.9732796,180.4314995,11.639603,0.105097081,1620000000000 ,1620000000000 ,1620000000000 ,1616812593610 -1616812593635 ,112.5673774,26.86214288,66.83187103,179.9893442,180.4443458,11.647585,0.105161013,1620000000000 ,1620000000000 ,1620000000000 ,1616812593620 -1616812593644 ,112.5673774,26.86214183,66.83260345,180.0077038,180.4657014,11.65507,0.105236373,1620000000000 ,1620000000000 ,1620000000000 ,1616812593630 -1616812593656 ,112.5673774,26.86214078,66.83334351,180.0273474,180.5010461,11.663942,0.105310205,1620000000000 ,1620000000000 ,1620000000000 ,1616812593640 -1616812593665 ,112.5673774,26.86213972,66.83409119,180.0444229,180.5298292,11.671954,0.105385948,1620000000000 ,1620000000000 ,1620000000000 ,1616812593650 -1616812593674 ,112.5673774,26.86213867,66.8348465,180.0615257,180.5426939,11.678727,0.105448041,1620000000000 ,1620000000000 ,1620000000000 ,1616812593660 -1616812593684 ,112.5673774,26.86213761,66.83561707,180.0794754,180.5659028,11.68666,0.105523585,1620000000000 ,1620000000000 ,1620000000000 ,1616812593670 -1616812593702 ,112.5673773,26.86213656,66.83635712,180.0968514,180.5955816,11.697544,0.105607407,1620000000000 ,1620000000000 ,1620000000000 ,1616812593680 -1616812593708 ,112.5673773,26.8621355,66.83708191,180.1160306,180.6217892,11.710042,0.105718291,1620000000000 ,1620000000000 ,1620000000000 ,1616812593690 -1616812593717 ,112.5673773,26.86213444,66.83782959,180.1316854,180.6365746,11.7191515,0.105812787,1620000000000 ,1620000000000 ,1620000000000 ,1616812593700 -1616812593726 ,112.5673773,26.86213338,66.83864594,180.1478866,180.6545412,11.732399,0.105922252,1620000000000 ,1620000000000 ,1620000000000 ,1616812593710 -1616812593737 ,112.5673773,26.86213232,66.83953094,180.1644156,180.6638886,11.747213,0.106051979,1620000000000 ,1620000000000 ,1620000000000 ,1616812593720 -1616812593746 ,112.5673773,26.86213126,66.84039307,180.1811906,180.6846603,11.765416,0.106210726,1620000000000 ,1620000000000 ,1620000000000 ,1616812593730 -1616812593756 ,112.5673773,26.8621302,66.84120941,180.1981294,180.7033247,11.782467,0.106368192,1620000000000 ,1620000000000 ,1620000000000 ,1616812593740 -1616812593765 ,112.5673773,26.86212913,66.84199524,180.2154781,180.7179015,11.799055,0.10651594,1620000000000 ,1620000000000 ,1620000000000 ,1616812593750 -1616812593775 ,112.5673772,26.86212807,66.84281921,180.230204,180.718505,11.811203,0.106638844,1620000000000 ,1620000000000 ,1620000000000 ,1616812593760 -1616812593786 ,112.5673772,26.862127,66.84367371,180.2472795,180.7334528,11.826376,0.10676844,1620000000000 ,1620000000000 ,1620000000000 ,1616812593770 -1616812593795 ,112.5673772,26.86212593,66.8445282,180.2622786,180.7542868,11.841163,0.106904971,1620000000000 ,1620000000000 ,1620000000000 ,1616812593780 -1616812593807 ,112.5673772,26.86212486,66.84535217,180.2777148,180.7887645,11.857617,0.107047106,1620000000000 ,1620000000000 ,1620000000000 ,1616812593790 -1616812593817 ,112.5673772,26.86212379,66.84614563,180.2936155,180.8099002,11.876253,0.107215536,1620000000000 ,1620000000000 ,1620000000000 ,1616812593800 -1616812593831 ,112.5673772,26.86212271,66.84690094,180.3081228,180.8236853,11.890889,0.107355105,1620000000000 ,1620000000000 ,1620000000000 ,1616812593810 -1616812593839 ,112.5673772,26.86212164,66.84767151,180.322193,180.8395952,11.905037,0.107485646,1620000000000 ,1620000000000 ,1620000000000 ,1616812593820 -1616812593848 ,112.5673771,26.86212056,66.84844208,180.3345966,180.8594243,11.915191,0.107586678,1620000000000 ,1620000000000 ,1620000000000 ,1616812593830 -1616812593856 ,112.5673771,26.86211949,66.84921265,180.3468363,180.8831726,11.928457,0.107697954,1620000000000 ,1620000000000 ,1620000000000 ,1616812593840 -1616812593870 ,112.5673771,26.86211841,66.84997559,180.359759,180.9116823,11.939701,0.107804558,1620000000000 ,1620000000000 ,1620000000000 ,1616812593850 -1616812593879 ,112.5673771,26.86211733,66.85072327,180.3710152,180.9283208,11.950478,0.107903773,1620000000000 ,1620000000000 ,1620000000000 ,1616812593860 -1616812593888 ,112.5673771,26.86211625,66.85147095,180.3818889,180.9348144,11.962299,0.108009041,1620000000000 ,1620000000000 ,1620000000000 ,1616812593870 -1616812593897 ,112.5673771,26.86211517,66.85222626,180.3909867,180.9506394,11.979029,0.108150078,1620000000000 ,1620000000000 ,1620000000000 ,1616812593880 -1616812593908 ,112.567377,26.86211409,66.85293579,180.4012319,180.965014,11.993439,0.108283761,1620000000000 ,1620000000000 ,1620000000000 ,1616812593890 -1616812593924 ,112.567377,26.862113,66.85354614,180.411969,180.9813146,12.007873,0.10841386,1620000000000 ,1620000000000 ,1620000000000 ,1616812593900 -1616812593930 ,112.567377,26.86211192,66.85411835,180.4218318,181.0024455,12.025371,0.108560753,1620000000000 ,1620000000000 ,1620000000000 ,1616812593910 -1616812593937 ,112.567377,26.86211083,66.85466766,180.4310662,181.0073704,12.042615,0.10871705,1620000000000 ,1620000000000 ,1620000000000 ,1616812593920 -1616812593948 ,112.567377,26.86210974,66.85515594,180.4406558,181.0025685,12.061043,0.10888181,1620000000000 ,1620000000000 ,1620000000000 ,1616812593930 -1616812593956 ,112.5673769,26.86210865,66.85557556,180.4492892,181.0165004,12.0816345,0.109062722,1620000000000 ,1620000000000 ,1620000000000 ,1616812593940 -1616812593967 ,112.5673769,26.86210756,66.85592651,180.4587968,181.0251913,12.101614,0.109234805,1620000000000 ,1620000000000 ,1620000000000 ,1616812593950 -1616812593977 ,112.5673769,26.86210646,66.85623169,180.4695338,181.0308138,12.121869,0.10942061,1620000000000 ,1620000000000 ,1620000000000 ,1616812593960 -1616812593991 ,112.5673769,26.86210537,66.8564682,180.4789322,181.0301531,12.141004,0.109595512,1620000000000 ,1620000000000 ,1620000000000 ,1616812593970 -1616812593997 ,112.5673769,26.86210427,66.85662079,180.4882486,181.042192,12.163306,0.109783896,1620000000000 ,1620000000000 ,1620000000000 ,1616812593980 -1616812594008 ,112.5673768,26.86210317,66.85668182,180.4972098,181.0576423,12.1826725,0.109962312,1620000000000 ,1620000000000 ,1620000000000 ,1616812593990 -1616812594018 ,112.5673768,26.86210207,66.85668182,180.505488,181.0613207,12.201284,0.11013249,1620000000000 ,1620000000000 ,1620000000000 ,1616812594000 -1616812594029 ,112.5673768,26.86210097,66.85665894,180.5131104,181.0621225,12.218005,0.110287244,1620000000000 ,1620000000000 ,1620000000000 ,1616812594010 -1616812594038 ,112.5673768,26.86209986,66.85665131,180.5214706,181.0650082,12.234969,0.110432667,1620000000000 ,1620000000000 ,1620000000000 ,1616812594020 -1616812594048 ,112.5673768,26.86209876,66.85665894,180.5283008,181.0728211,12.250734,0.110580306,1620000000000 ,1620000000000 ,1620000000000 ,1616812594030 -1616812594058 ,112.5673767,26.86209765,66.85665131,180.5367702,181.0858695,12.267265,0.110730355,1620000000000 ,1620000000000 ,1620000000000 ,1616812594040 -1616812594072 ,112.5673767,26.86209654,66.85665131,180.5425895,181.096339,12.284806,0.110883398,1620000000000 ,1620000000000 ,1620000000000 ,1616812594050 -1616812594081 ,112.5673767,26.86209543,66.85670471,180.5490919,181.0977345,12.30044,0.111024547,1620000000000 ,1620000000000 ,1620000000000 ,1616812594060 -1616812594090 ,112.5673767,26.86209432,66.85678864,180.5545834,181.0890261,12.3154335,0.111163718,1620000000000 ,1620000000000 ,1620000000000 ,1616812594070 -1616812594098 ,112.5673767,26.86209321,66.85688782,180.5615501,181.0878912,12.33302,0.111318749,1620000000000 ,1620000000000 ,1620000000000 ,1616812594080 -1616812594109 ,112.5673766,26.86209209,66.85700989,180.5665225,181.0927203,12.352194,0.111487675,1620000000000 ,1620000000000 ,1620000000000 ,1616812594090 -1616812594119 ,112.5673766,26.86209098,66.8571701,180.5699376,181.090874,12.368588,0.11163723,1620000000000 ,1620000000000 ,1620000000000 ,1616812594100 -1616812594130 ,112.5673766,26.86208986,66.85738373,180.5758116,181.0909274,12.385921,0.111795822,1620000000000 ,1620000000000 ,1620000000000 ,1616812594110 -1616812594139 ,112.5673766,26.86208874,66.85765839,180.5804015,181.0973211,12.40523,0.111966553,1620000000000 ,1620000000000 ,1620000000000 ,1616812594120 -1616812594149 ,112.5673765,26.86208762,66.85797882,180.5860569,181.0979639,12.425013,0.112142119,1620000000000 ,1620000000000 ,1620000000000 ,1616812594130 -1616812594164 ,112.5673765,26.86208649,66.85831451,180.5913844,181.0981592,12.44298,0.112304952,1620000000000 ,1620000000000 ,1620000000000 ,1616812594140 -1616812594170 ,112.5673765,26.86208537,66.85868835,180.5960563,181.1053941,12.46181,0.112477386,1620000000000 ,1620000000000 ,1620000000000 ,1616812594150 -1616812594180 ,112.5673765,26.86208424,66.85910034,180.601739,181.1066747,12.480541,0.112648554,1620000000000 ,1620000000000 ,1620000000000 ,1616812594160 -1616812594191 ,112.5673765,26.86208312,66.85957336,180.6064382,181.1202768,12.500043,0.112820878,1620000000000 ,1620000000000 ,1620000000000 ,1616812594170 -1616812594201 ,112.5673764,26.86208199,66.86010742,180.6122575,181.1297172,12.518889,0.112994268,1620000000000 ,1620000000000 ,1620000000000 ,1616812594180 -1616812594210 ,112.5673764,26.86208085,66.86070251,180.6170659,181.1253306,12.535796,0.113150952,1620000000000 ,1620000000000 ,1620000000000 ,1616812594190 -1616812594221 ,112.5673764,26.86207972,66.86200714,180.6302345,181.1450261,12.538685,0.113201789,1620000000000 ,1620000000000 ,1620000000000 ,1616812594200 -1616812594231 ,112.5673764,26.86207859,66.86443329,180.6336769,181.1685113,12.556399,0.113101102,1620000000000 ,1620000000000 ,1620000000000 ,1616812594210 -1616812594253 ,112.5673763,26.86207746,66.86689758,180.6375565,181.1713589,12.573288,0.113253433,1620000000000 ,1620000000000 ,1620000000000 ,1616812594220 -1616812594255 ,112.5673763,26.86207633,66.86943817,180.6400154,181.1786068,12.592574,0.113426614,1620000000000 ,1620000000000 ,1620000000000 ,1616812594230 -1616812594262 ,112.5673763,26.86207519,66.87202454,180.6436217,181.1736168,12.610307,0.113587923,1620000000000 ,1620000000000 ,1620000000000 ,1616812594240 -1616812594272 ,112.5673763,26.86207405,66.87462616,180.6464904,181.1720778,12.628756,0.113751157,1620000000000 ,1620000000000 ,1620000000000 ,1616812594250 -1616812594280 ,112.5673763,26.86207291,66.87722778,180.6503699,181.1646566,12.646215,0.11391529,1620000000000 ,1620000000000 ,1620000000000 ,1616812594260 -1616812594291 ,112.5673762,26.86207177,66.87984467,180.6544134,181.1517651,12.665448,0.114086976,1620000000000 ,1620000000000 ,1620000000000 ,1616812594270 -1616812594300 ,112.5673762,26.86207063,66.88249969,180.6597136,181.1472636,12.681716,0.114232343,1620000000000 ,1620000000000 ,1620000000000 ,1616812594280 -1616812594310 ,112.5673762,26.86206949,66.88520813,180.664003,181.1469678,12.701674,0.114406627,1620000000000 ,1620000000000 ,1620000000000 ,1616812594290 -1616812594322 ,112.5673762,26.86206834,66.88796997,180.6694671,181.1433189,12.719012,0.11457507,1620000000000 ,1620000000000 ,1620000000000 ,1616812594300 -1616812594331 ,112.5673761,26.8620672,66.89073944,180.6750679,181.1526362,12.73523,0.114723459,1620000000000 ,1620000000000 ,1620000000000 ,1616812594310 -1616812594342 ,112.5673761,26.86206605,66.8935318,180.6801496,181.162829,12.753212,0.114874876,1620000000000 ,1620000000000 ,1620000000000 ,1616812594320 -1616812594351 ,112.5673761,26.8620649,66.8963623,180.6845482,181.1667561,12.769983,0.115036348,1620000000000 ,1620000000000 ,1620000000000 ,1616812594330 -1616812594361 ,112.5673761,26.86206374,66.89923096,180.6891381,181.1714775,12.788356,0.11519975,1620000000000 ,1620000000000 ,1620000000000 ,1616812594340 -1616812594372 ,112.567376,26.86206259,66.90209961,180.6930176,181.186405,12.807617,0.115373284,1620000000000 ,1620000000000 ,1620000000000 ,1616812594350 -1616812594381 ,112.567376,26.86206144,66.90494537,180.69799,181.1987996,12.826067,0.115535484,1620000000000 ,1620000000000 ,1620000000000 ,1616812594360 -1616812594391 ,112.567376,26.86206028,66.90777588,180.7018696,181.2058072,12.843323,0.115695639,1620000000000 ,1620000000000 ,1620000000000 ,1616812594370 -1616812594402 ,112.567376,26.86205912,66.91062927,180.7048748,181.2016927,12.86159,0.115862004,1620000000000 ,1620000000000 ,1620000000000 ,1616812594380 -1616812594412 ,112.567376,26.86205796,66.91347504,180.7079348,181.204295,12.880511,0.116030549,1620000000000 ,1620000000000 ,1620000000000 ,1616812594390 -1616812594425 ,112.5673759,26.8620568,66.91631317,180.7099019,181.2118681,12.898685,0.11619036,1620000000000 ,1620000000000 ,1620000000000 ,1616812594400 -1616812594442 ,112.5673759,26.86205447,66.92197418,180.7166774,181.2088691,12.933508,0.116513053,1620000000000 ,1620000000000 ,1620000000000 ,1616812594420 -1616812594436 ,112.5673759,26.86205564,66.91913605,180.7129071,181.2159892,12.915864,0.116354994,1620000000000 ,1620000000000 ,1620000000000 ,1616812594420 -1616812594453 ,112.5673759,26.8620533,66.92483521,180.7199832,181.2013377,12.951907,0.116674698,1620000000000 ,1620000000000 ,1620000000000 ,1616812594440 -1616812594462 ,112.5673758,26.86205097,66.92990112,180.7265675,181.1902148,12.986792,0.233934861,1620000000000 ,1620000000000 ,1620000000000 ,1616812594450 -1616812594473 ,112.5673758,26.86205097,66.92990112,180.7265675,-400,12.986792,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812594460 -1616812594483 ,112.5673758,26.86204862,66.9329834,180.731977,181.1698771,13.02513,0.234997502,1620000000000 ,1620000000000 ,1620000000000 ,1616812594470 -1616812594494 ,112.5673757,26.86204744,66.93456268,180.7354468,181.1475747,13.042326,0.117738978,1620000000000 ,1620000000000 ,1620000000000 ,1616812594480 -1616812594504 ,112.5673757,26.86204744,66.93456268,180.7354468,-400,13.042326,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812594480 -1616812594514 ,112.5673757,26.86204508,66.93766785,180.7456101,181.1454002,13.079107,0.235970435,1620000000000 ,1620000000000 ,1620000000000 ,1616812594500 -1616812594525 ,112.5673757,26.8620439,66.93914795,180.7505278,181.1655386,13.098119,0.118234365,1620000000000 ,1620000000000 ,1620000000000 ,1616812594510 -1616812594535 ,112.5673756,26.86204271,66.94059753,180.7580684,181.175561,13.117923,0.118411169,1620000000000 ,1620000000000 ,1620000000000 ,1616812594520 -1616812594547 ,112.5673756,26.86204153,66.94203186,180.7645161,181.173202,13.137853,0.118589601,1620000000000 ,1620000000000 ,1620000000000 ,1616812594530 -1616812594557 ,112.5673756,26.86204034,66.94346619,180.771838,181.1747838,13.156396,0.118762512,1620000000000 ,1620000000000 ,1620000000000 ,1616812594540 -1616812594565 ,112.5673756,26.86203915,66.94489288,180.7767284,181.1836436,13.174438,0.11892651,1620000000000 ,1620000000000 ,1620000000000 ,1616812594550 -1616812594575 ,112.5673755,26.86203796,66.94630432,180.7851979,181.1855331,13.192535,0.119086249,1620000000000 ,1620000000000 ,1620000000000 ,1616812594560 -1616812594584 ,112.5673755,26.86203677,66.94771576,180.7899244,181.1919047,13.211375,0.119256432,1620000000000 ,1620000000000 ,1620000000000 ,1616812594570 -1616812594594 ,112.5673755,26.86203558,66.94915009,180.7955524,181.1931031,13.229617,0.119422831,1620000000000 ,1620000000000 ,1620000000000 ,1616812594580 -1616812594604 ,112.5673755,26.86203438,66.95059204,180.8016723,181.1912351,13.247056,0.119580683,1620000000000 ,1620000000000 ,1620000000000 ,1616812594590 -1616812594615 ,112.5673754,26.86203318,66.95204163,180.8087757,181.1951618,13.264726,0.119742109,1620000000000 ,1620000000000 ,1620000000000 ,1616812594600 -1616812594625 ,112.5673754,26.86203198,66.95349121,180.8148955,181.2036564,13.282802,0.119901847,1620000000000 ,1620000000000 ,1620000000000 ,1616812594610 -1616812594634 ,112.5673754,26.86203078,66.95496368,180.8204416,181.2032455,13.301528,0.120068664,1620000000000 ,1620000000000 ,1620000000000 ,1616812594620 -1616812594650 ,112.5673754,26.86202958,66.95648193,180.825496,181.2072031,13.319986,0.120238118,1620000000000 ,1620000000000 ,1620000000000 ,1616812594630 -1616812594658 ,112.5673753,26.86202838,66.95805359,180.8311514,181.2117926,13.3401985,0.120421235,1620000000000 ,1620000000000 ,1620000000000 ,1616812594640 -1616812594668 ,112.5673753,26.86202717,66.95963287,180.8386919,181.2136379,13.358961,0.120593771,1620000000000 ,1620000000000 ,1620000000000 ,1616812594650 -1616812594674 ,112.5673753,26.86202596,66.96124268,180.8449484,181.2264072,13.378688,0.120765385,1620000000000 ,1620000000000 ,1620000000000 ,1616812594660 -1616812594686 ,112.5673753,26.86202476,66.96286011,180.8507677,181.2400789,13.39627,0.120938727,1620000000000 ,1620000000000 ,1620000000000 ,1616812594670 -1616812594697 ,112.5673752,26.86202354,66.9644165,180.8586907,181.2384963,13.415052,0.121097053,1620000000000 ,1620000000000 ,1620000000000 ,1616812594680 -1616812594706 ,112.5673752,26.86202233,66.96590424,180.8644007,181.2516975,13.434455,0.121275424,1620000000000 ,1620000000000 ,1620000000000 ,1616812594690 -1616812594716 ,112.5673752,26.86202112,66.9673996,180.8689906,181.2624899,13.453042,0.121442344,1620000000000 ,1620000000000 ,1620000000000 ,1616812594700 -1616812594724 ,112.5673752,26.8620199,66.96896362,180.8736352,181.2763372,13.472047,0.1216172,1620000000000 ,1620000000000 ,1620000000000 ,1616812594710 -1616812594735 ,112.5673751,26.86201868,66.97057343,180.8816401,181.2837931,13.489024,0.121774958,1620000000000 ,1620000000000 ,1620000000000 ,1616812594720 -1616812594745 ,112.5673751,26.86201747,66.97222137,180.8904921,181.2813186,13.505807,0.121929765,1620000000000 ,1620000000000 ,1620000000000 ,1616812594730 -1616812594755 ,112.5673751,26.86201624,66.97389984,180.8985517,181.2857268,13.523296,0.122087615,1620000000000 ,1620000000000 ,1620000000000 ,1616812594740 -1616812594765 ,112.567375,26.86201502,66.97557831,180.905737,181.2945064,13.542725,0.122259833,1620000000000 ,1620000000000 ,1620000000000 ,1616812594750 -1616812594775 ,112.567375,26.8620138,66.97720337,180.9126765,181.3078698,13.563696,0.122445764,1620000000000 ,1620000000000 ,1620000000000 ,1616812594760 -1616812594785 ,112.567375,26.86201257,66.97875977,180.9205722,181.3159872,13.580365,0.122608064,1620000000000 ,1620000000000 ,1620000000000 ,1616812594770 -1616812594795 ,112.567375,26.86201135,66.98031616,180.9272658,181.3148007,13.596469,0.122754729,1620000000000 ,1620000000000 ,1620000000000 ,1616812594780 -1616812594805 ,112.5673749,26.86201012,66.98188782,180.9361177,181.3064588,13.613012,0.122903335,1620000000000 ,1620000000000 ,1620000000000 ,1616812594790 -1616812594815 ,112.5673749,26.86200889,66.98344421,180.9459805,181.3137027,13.6320305,0.123070105,1620000000000 ,1620000000000 ,1620000000000 ,1616812594800 -1616812594826 ,112.5673749,26.86200765,66.98497772,180.9577831,181.3231858,13.652279,0.123249622,1620000000000 ,1620000000000 ,1620000000000 ,1616812594810 -1616812594839 ,112.5673748,26.86200642,66.98646545,180.9663072,181.3256442,13.670552,0.123421105,1620000000000 ,1620000000000 ,1620000000000 ,1616812594820 -1616812594846 ,112.5673748,26.86200518,66.98793793,180.9754323,181.326998,13.688292,0.123581845,1620000000000 ,1620000000000 ,1620000000000 ,1616812594830 -1616812594857 ,112.5673748,26.86200395,66.98935699,180.986825,181.3297614,13.705017,0.123736213,1620000000000 ,1620000000000 ,1620000000000 ,1616812594840 -1616812594867 ,112.5673748,26.86200271,66.9907074,180.9960595,181.335339,13.721294,0.123878973,1620000000000 ,1620000000000 ,1620000000000 ,1616812594850 -1616812594876 ,112.5673747,26.86200147,66.99198151,181.0065506,181.3467748,13.73935,0.124040399,1620000000000 ,1620000000000 ,1620000000000 ,1616812594860 -1616812594886 ,112.5673747,26.86200023,66.99321747,181.0160583,181.3601038,13.757911,0.124203311,1620000000000 ,1620000000000 ,1620000000000 ,1616812594870 -1616812594896 ,112.5673747,26.86199898,66.99440765,181.027533,181.3677535,13.775561,0.124368715,1620000000000 ,1620000000000 ,1620000000000 ,1616812594880 -1616812594914 ,112.5673746,26.86199774,66.99557495,181.0375597,181.3727247,13.792705,0.124522816,1620000000000 ,1620000000000 ,1620000000000 ,1616812594890 -1616812594917 ,112.5673746,26.86199649,66.99669647,181.0473952,181.3775914,13.809174,0.12467256,1620000000000 ,1620000000000 ,1620000000000 ,1616812594900 -1616812594927 ,112.5673746,26.86199525,66.99777985,181.0573126,181.3919176,13.827635,0.124830889,1620000000000 ,1620000000000 ,1620000000000 ,1616812594910 -1616812594938 ,112.5673746,26.861994,66.99879456,181.0685414,181.4045611,13.845756,0.124996735,1620000000000 ,1620000000000 ,1620000000000 ,1616812594920 -1616812594946 ,112.5673745,26.86199274,66.99976349,181.0781037,181.4165719,13.864365,0.1251643,1620000000000 ,1620000000000 ,1620000000000 ,1616812594930 -1616812594956 ,112.5673745,26.86199149,67.00071716,181.0875567,181.4181936,13.880049,0.125313007,1620000000000 ,1620000000000 ,1620000000000 ,1616812594940 -1616812594967 ,112.5673745,26.86199024,67.00166321,181.0966272,181.419838,13.895751,0.125451619,1620000000000 ,1620000000000 ,1620000000000 ,1616812594950 -1616812594976 ,112.5673744,26.86198898,67.00259399,181.1079106,181.4349717,13.91281,0.125604097,1620000000000 ,1620000000000 ,1620000000000 ,1616812594960 -1616812594993 ,112.5673744,26.86198772,67.00350952,181.1192214,181.4501753,13.929725,0.125757332,1620000000000 ,1620000000000 ,1620000000000 ,1616812594970 -1616812594998 ,112.5673744,26.86198647,67.00441742,181.1274996,181.4670281,13.946322,0.125908768,1620000000000 ,1620000000000 ,1620000000000 ,1616812594980 -1616812595007 ,112.5673743,26.86198521,67.00536346,181.1360237,181.4736901,13.96383,0.126065608,1620000000000 ,1620000000000 ,1620000000000 ,1616812594990 -1616812595017 ,112.5673743,26.86198394,67.00634766,181.1445478,181.4750127,13.979531,0.126215438,1620000000000 ,1620000000000 ,1620000000000 ,1616812595000 -1616812595028 ,112.5673743,26.86198268,67.00733948,181.1540554,181.4890449,13.995605,0.126359287,1620000000000 ,1620000000000 ,1620000000000 ,1616812595010 -1616812595038 ,112.5673742,26.86198142,67.0083313,181.1629893,181.5006205,14.010596,0.12649316,1620000000000 ,1620000000000 ,1620000000000 ,1616812595020 -1616812595048 ,112.5673742,26.86198015,67.00933075,181.1734531,181.5133478,14.025415,0.126625277,1620000000000 ,1620000000000 ,1620000000000 ,1616812595030 -1616812595058 ,112.5673742,26.86197888,67.01037598,181.1826602,181.5206967,14.040926,0.126772284,1620000000000 ,1620000000000 ,1620000000000 ,1616812595040 -1616812595069 ,112.5673741,26.86197761,67.01144409,181.1900915,181.5220666,14.057089,0.126918016,1620000000000 ,1620000000000 ,1620000000000 ,1616812595050 -1616812595080 ,112.5673741,26.86197634,67.01251984,181.1981238,181.5328946,14.071084,0.12704693,1620000000000 ,1620000000000 ,1620000000000 ,1616812595060 -1616812595091 ,112.5673741,26.86197507,67.0135498,181.2074948,181.5474554,14.088392,0.127191338,1620000000000 ,1620000000000 ,1620000000000 ,1616812595070 -1616812595099 ,112.567374,26.8619738,67.01451111,181.2159369,181.5602757,14.104819,0.127340995,1620000000000 ,1620000000000 ,1620000000000 ,1616812595080 -1616812595108 ,112.567374,26.86197253,67.01545715,181.2232042,181.5647704,14.121885,0.127493636,1620000000000 ,1620000000000 ,1620000000000 ,1616812595090 -1616812595118 ,112.567374,26.86197125,67.01642609,181.2328211,181.5640762,14.138142,0.127645225,1620000000000 ,1620000000000 ,1620000000000 ,1616812595100 -1616812595129 ,112.5673739,26.86196997,67.01737213,181.2404983,181.5677918,14.153962,0.127791453,1620000000000 ,1620000000000 ,1620000000000 ,1616812595110 -1616812595139 ,112.5673739,26.86196869,67.01828003,181.2494595,181.5809871,14.169476,0.127927432,1620000000000 ,1620000000000 ,1620000000000 ,1616812595120 -1616812595149 ,112.5673739,26.86196741,67.01916504,181.2550329,181.6004328,14.1841345,0.128058013,1620000000000 ,1620000000000 ,1620000000000 ,1616812595130 -1616812595161 ,112.5673738,26.86196613,67.02007294,181.2616172,181.5997241,14.199078,0.128193223,1620000000000 ,1620000000000 ,1620000000000 ,1616812595140 -1616812595170 ,112.5673738,26.86196485,67.02103424,181.2667262,181.6029128,14.215568,0.128341901,1620000000000 ,1620000000000 ,1620000000000 ,1616812595150 -1616812595179 ,112.5673737,26.86196356,67.02200317,181.2715893,181.6136947,14.231798,0.128490301,1620000000000 ,1620000000000 ,1620000000000 ,1616812595160 -1616812595190 ,112.5673737,26.86196228,67.02296448,181.2780097,181.6292353,14.247266,0.128629834,1620000000000 ,1620000000000 ,1620000000000 ,1616812595170 -1616812595199 ,112.5673737,26.86196099,67.02397156,181.2844301,181.6441177,14.2606535,0.128753887,1620000000000 ,1620000000000 ,1620000000000 ,1616812595180 -1616812595210 ,112.5673736,26.8619597,67.02502441,181.2921891,181.6477828,14.2757015,0.128888889,1620000000000 ,1620000000000 ,1620000000000 ,1616812595190 -1616812595220 ,112.5673736,26.86195841,67.02586365,181.3102755,181.923653,14.305496,0.129291248,1620000000000 ,1620000000000 ,1620000000000 ,1616812595200 -1616812595230 ,112.5673735,26.86195711,67.02627563,181.3165046,182.3799165,14.321699,0.129819558,1620000000000 ,1620000000000 ,1620000000000 ,1616812595210 -1616812595241 ,112.5673735,26.86195582,67.02666473,181.3219414,182.3894664,14.336005,0.129954974,1620000000000 ,1620000000000 ,1620000000000 ,1616812595220 -1616812595250 ,112.5673734,26.86195452,67.02709198,181.3281159,182.3997048,14.348966,0.130076316,1620000000000 ,1620000000000 ,1620000000000 ,1616812595230 -1616812595261 ,112.5673734,26.86195322,67.02761078,181.333061,182.4012926,14.363705,0.130205156,1620000000000 ,1620000000000 ,1620000000000 ,1616812595240 -1616812595271 ,112.5673733,26.86195191,67.02822113,181.3387164,182.4149588,14.37697,0.130324278,1620000000000 ,1620000000000 ,1620000000000 ,1616812595250 -1616812595280 ,112.5673733,26.86195061,67.02890778,181.3454919,182.4287225,14.391217,0.130459239,1620000000000 ,1620000000000 ,1620000000000 ,1616812595260 -1616812595292 ,112.5673732,26.86194931,67.02964783,181.3516118,182.4255871,14.403738,0.130576399,1620000000000 ,1620000000000 ,1620000000000 ,1616812595270 -1616812595300 ,112.5673732,26.861948,67.03040314,181.3572945,182.4290059,14.418003,0.130702549,1620000000000 ,1620000000000 ,1620000000000 ,1616812595280 -1616812595310 ,112.5673731,26.86194669,67.03115845,181.3624855,182.4424769,14.434154,0.130840514,1620000000000 ,1620000000000 ,1620000000000 ,1616812595290 -1616812595322 ,112.567373,26.86194538,67.03190613,181.3646711,182.4584679,14.447932,0.130976311,1620000000000 ,1620000000000 ,1620000000000 ,1616812595300 -1616812595330 ,112.567373,26.86194407,67.03266907,181.3678676,182.4584696,14.461919,0.131096938,1620000000000 ,1620000000000 ,1620000000000 ,1616812595310 -1616812595342 ,112.5673729,26.86194276,67.03349304,181.3721024,182.4652608,14.47582,0.131225448,1620000000000 ,1620000000000 ,1620000000000 ,1616812595320 -1616812595351 ,112.5673729,26.86194145,67.03440094,181.3761732,182.4705278,14.487826,0.131339161,1620000000000 ,1620000000000 ,1620000000000 ,1616812595330 -1616812595360 ,112.5673728,26.86194014,67.03539276,181.3792604,182.4742537,14.499859,0.131452806,1620000000000 ,1620000000000 ,1620000000000 ,1616812595340 -1616812595371 ,112.5673728,26.86193882,67.03637695,181.3826482,182.4775769,14.513183,0.131568914,1620000000000 ,1620000000000 ,1620000000000 ,1616812595350 -1616812595381 ,112.5673727,26.86193751,67.03726959,181.3863638,182.4848266,14.532639,0.131726454,1620000000000 ,1620000000000 ,1620000000000 ,1616812595360 -1616812595405 ,112.5673726,26.86193619,67.03810883,181.3904619,182.4891933,14.545784,0.131860811,1620000000000 ,1620000000000 ,1620000000000 ,1616812595370 -1616812595413 ,112.5673726,26.86193487,67.03900146,181.3928935,182.4934967,14.555679,0.131956267,1620000000000 ,1620000000000 ,1620000000000 ,1616812595380 -1616812595416 ,112.5673725,26.86193355,67.0400238,181.3958441,182.4982475,14.568031,0.132063755,1620000000000 ,1620000000000 ,1620000000000 ,1616812595390 -1616812595429 ,112.5673725,26.86193223,67.0410614,181.3990133,182.4788744,14.5811405,0.132178777,1620000000000 ,1620000000000 ,1620000000000 ,1616812595400 -1616812595437 ,112.5673724,26.86193091,67.04199982,181.4004613,182.4885222,14.595995,0.13230913,1620000000000 ,1620000000000 ,1620000000000 ,1616812595410 -1616812595444 ,112.5673724,26.86192959,67.04284668,181.4027016,182.5047361,14.6108675,0.132443127,1620000000000 ,1620000000000 ,1620000000000 ,1616812595420 -1616812595452 ,112.5673723,26.86192826,67.04368591,181.4023464,182.4909226,14.619641,0.132537395,1620000000000 ,1620000000000 ,1620000000000 ,1616812595430 -1616812595463 ,112.5673722,26.86192694,67.04464722,181.4029475,182.4651628,14.630731,0.132626273,1620000000000 ,1620000000000 ,1620000000000 ,1616812595450 -1616812595472 ,112.5673722,26.86192561,67.04592896,181.4062806,182.1952248,14.639533,0.132449948,1620000000000 ,1620000000000 ,1620000000000 ,1616812595460 -1616812595482 ,112.5673721,26.86192429,67.04743958,181.411253,181.9423002,14.651485,0.132288751,1620000000000 ,1620000000000 ,1620000000000 ,1616812595460 -1616812595493 ,112.5673721,26.86192297,67.04898071,181.4159795,181.9414292,14.66379,0.132408401,1620000000000 ,1620000000000 ,1620000000000 ,1616812595480 -1616812595502 ,112.5673721,26.86192164,67.05058289,181.4195858,181.9422209,14.673421,0.132501702,1620000000000 ,1620000000000 ,1620000000000 ,1616812595480 -1616812595514 ,112.567372,26.86191899,67.05395508,181.4219901,181.9493483,14.692011,0.265270107,1620000000000 ,1620000000000 ,1620000000000 ,1616812595500 -1616812595524 ,112.5673719,26.86191767,67.05570221,181.4226458,181.9686131,14.70133,0.132751894,1620000000000 ,1620000000000 ,1620000000000 ,1616812595510 -1616812595532 ,112.5673719,26.86191634,67.05756378,181.4224818,181.9810226,14.710233,0.132846507,1620000000000 ,1620000000000 ,1620000000000 ,1616812595520 -1616812595546 ,112.5673718,26.86191501,67.05953217,181.4226731,181.9832515,14.717481,0.132914941,1620000000000 ,1620000000000 ,1620000000000 ,1616812595530 -1616812595552 ,112.5673718,26.86191368,67.0615921,181.4237386,181.9814413,14.725446,0.132986051,1620000000000 ,1620000000000 ,1620000000000 ,1616812595540 -1616812595563 ,112.5673717,26.86191235,67.06369019,181.4244762,181.9968713,14.7287655,0.133035463,1620000000000 ,1620000000000 ,1620000000000 ,1616812595550 -1616812595574 ,112.5673717,26.86191102,67.06575012,181.4223452,181.9803771,14.74287,0.133132328,1620000000000 ,1620000000000 ,1620000000000 ,1616812595560 -1616812595585 ,112.5673716,26.86190969,67.06780243,181.4186023,181.9969322,14.751386,0.133227486,1620000000000 ,1620000000000 ,1620000000000 ,1616812595570 -1616812595595 ,112.5673716,26.86190836,67.06986237,181.4182198,182.0136788,14.7602005,0.133308336,1620000000000 ,1620000000000 ,1620000000000 ,1616812595580 -1616812595605 ,112.5673715,26.86190702,67.07193756,181.421389,182.0032639,14.766176,0.133380912,1620000000000 ,1620000000000 ,1620000000000 ,1616812595590 -1616812595615 ,112.5673715,26.86190569,67.07406616,181.4217169,181.9918584,14.773021,0.133437394,1620000000000 ,1620000000000 ,1620000000000 ,1616812595600 -1616812595628 ,112.5673715,26.86190436,67.07621765,181.4174002,181.9816776,14.781581,0.133511719,1620000000000 ,1620000000000 ,1620000000000 ,1616812595610 -1616812595635 ,112.5673714,26.86190302,67.07826233,181.4171543,181.9875055,14.792712,0.133608112,1620000000000 ,1620000000000 ,1620000000000 ,1616812595620 -1616812595646 ,112.5673714,26.86190168,67.08015442,181.4164986,182.0014811,14.804208,0.133717402,1620000000000 ,1620000000000 ,1620000000000 ,1616812595630 -1616812595655 ,112.5673713,26.86190035,67.08194733,181.4145861,182.0068469,14.811852,0.133793091,1620000000000 ,1620000000000 ,1620000000000 ,1616812595640 -1616812595665 ,112.5673713,26.86189901,67.08380127,181.4107612,182.0016265,14.817081,0.133850865,1620000000000 ,1620000000000 ,1620000000000 ,1616812595650 -1616812595676 ,112.5673712,26.86189767,67.08570099,181.4092586,181.9802495,14.823776,0.133908057,1620000000000 ,1620000000000 ,1620000000000 ,1616812595660 -1616812595698 ,112.5673712,26.86189633,67.08747864,181.4090673,181.9702114,14.835272,0.13400073,1620000000000 ,1620000000000 ,1620000000000 ,1616812595670 -1616812595702 ,112.5673711,26.86189499,67.08904266,181.4099962,181.9833556,14.846526,0.134096801,1620000000000 ,1620000000000 ,1620000000000 ,1616812595680 -1616812595706 ,112.5673711,26.86189365,67.09042358,181.408357,181.9810984,14.856776,0.134198471,1620000000000 ,1620000000000 ,1620000000000 ,1616812595690 -1616812595717 ,112.567371,26.86189231,67.09170532,181.4062533,181.9667421,14.862566,0.134254239,1620000000000 ,1620000000000 ,1620000000000 ,1616812595700 -1616812595724 ,112.567371,26.86189097,67.09294128,181.4039584,181.9518858,14.8709345,0.13432386,1620000000000 ,1620000000000 ,1620000000000 ,1616812595710 -1616812595735 ,112.5673709,26.86188962,67.09404755,181.402647,181.9517573,14.880343,0.13440067,1620000000000 ,1620000000000 ,1620000000000 ,1616812595720 -1616812595749 ,112.5673709,26.86188828,67.09493256,181.4013082,181.9630446,14.891264,0.134495856,1620000000000 ,1620000000000 ,1620000000000 ,1616812595730 -1616812595756 ,112.5673709,26.86188693,67.0956192,181.3972921,181.9770344,14.900139,0.134574815,1620000000000 ,1620000000000 ,1620000000000 ,1616812595740 -1616812595765 ,112.5673708,26.86188559,67.09619904,181.3920465,181.976551,14.906904,0.134636554,1620000000000 ,1620000000000 ,1620000000000 ,1616812595750 -1616812595775 ,112.5673708,26.86188424,67.09674072,181.3872381,181.9739656,14.913376,0.134694789,1620000000000 ,1620000000000 ,1620000000000 ,1616812595760 -1616812595787 ,112.5673707,26.8618829,67.09727478,181.3821291,181.9820853,14.920538,0.134756247,1620000000000 ,1620000000000 ,1620000000000 ,1616812595770 -1616812595795 ,112.5673707,26.86188155,67.09776306,181.3763371,181.9851453,14.929784,0.134836395,1620000000000 ,1620000000000 ,1620000000000 ,1616812595780 -1616812595809 ,112.5673706,26.8618802,67.09817505,181.3702719,181.9878563,14.93878,0.134914121,1620000000000 ,1620000000000 ,1620000000000 ,1616812595790 -1616812595816 ,112.5673706,26.86187885,67.09853363,181.3609282,181.9847311,14.945484,0.134978671,1620000000000 ,1620000000000 ,1620000000000 ,1616812595800 -1616812595827 ,112.5673705,26.8618775,67.09889221,181.3532237,181.97776,14.950428,0.135025513,1620000000000 ,1620000000000 ,1620000000000 ,1616812595810 -1616812595837 ,112.5673705,26.86187615,67.09925079,181.3441805,181.9644496,14.95761,0.135085131,1620000000000 ,1620000000000 ,1620000000000 ,1616812595820 -1616812595854 ,112.5673704,26.8618748,67.09960938,181.3330064,181.9590292,14.965479,0.135154327,1620000000000 ,1620000000000 ,1620000000000 ,1616812595830 -1616812595856 ,112.5673704,26.86187345,67.09999084,181.3217229,181.9534125,14.971402,0.135214145,1620000000000 ,1620000000000 ,1620000000000 ,1616812595840 -1616812595866 ,112.5673703,26.8618721,67.10040283,181.3118328,181.9366588,14.97595,0.135257673,1620000000000 ,1620000000000 ,1620000000000 ,1616812595850 -1616812595875 ,112.5673703,26.86187075,67.10084534,181.3027896,181.9272968,14.982131,0.135305895,1620000000000 ,1620000000000 ,1620000000000 ,1616812595860 -1616812595886 ,112.5673703,26.86186939,67.10127258,181.2891292,181.9206356,14.988499,0.135364158,1620000000000 ,1620000000000 ,1620000000000 ,1616812595870 -1616812595895 ,112.5673702,26.86186804,67.10166931,181.2746765,181.911977,14.999336,0.135448188,1620000000000 ,1620000000000 ,1620000000000 ,1616812595880 -1616812595907 ,112.5673702,26.86186668,67.10202789,181.259814,181.9131252,15.008432,0.135534008,1620000000000 ,1620000000000 ,1620000000000 ,1616812595890 -1616812595916 ,112.5673701,26.86186533,67.10235596,181.2429571,181.9112722,15.018784,0.135619728,1620000000000 ,1620000000000 ,1620000000000 ,1616812595900 -1616812595928 ,112.5673701,26.86186397,67.10271454,181.2251987,181.8997735,15.025013,0.13569187,1620000000000 ,1620000000000 ,1620000000000 ,1616812595910 -1616812595938 ,112.56737,26.86186262,67.10319519,181.2069757,181.8802575,15.02943,0.135733889,1620000000000 ,1620000000000 ,1620000000000 ,1616812595920 -1616812595951 ,112.56737,26.86186126,67.10381317,181.186048,181.858348,15.032386,0.135764724,1620000000000 ,1620000000000 ,1620000000000 ,1616812595930 -1616812595958 ,112.5673699,26.8618599,67.10451508,181.1673606,181.8502732,15.037315,0.135805523,1620000000000 ,1620000000000 ,1620000000000 ,1616812595940 -1616812595967 ,112.5673699,26.86185854,67.1053009,181.1472525,181.8384642,15.044645,0.135866128,1620000000000 ,1620000000000 ,1620000000000 ,1616812595950 -1616812595976 ,112.5673699,26.86185718,67.1061554,181.1279094,181.8176997,15.053194,0.135943338,1620000000000 ,1620000000000 ,1620000000000 ,1616812595960 -1616812595987 ,112.5673698,26.86185583,67.10704041,181.1069817,181.7924611,15.063935,0.136031008,1620000000000 ,1620000000000 ,1620000000000 ,1616812595970 -1616812595996 ,112.5673698,26.86185446,67.10791016,181.0866005,181.7704019,15.07401,0.136125086,1620000000000 ,1620000000000 ,1620000000000 ,1616812595980 -1616812596007 ,112.5673697,26.8618531,67.10878754,181.0650171,181.74874,15.079931,0.136186796,1620000000000 ,1620000000000 ,1620000000000 ,1616812595990 -1616812596017 ,112.5673697,26.86185174,67.10977173,181.0391716,181.7259258,15.083113,0.136224426,1620000000000 ,1620000000000 ,1620000000000 ,1616812596000 -1616812596027 ,112.5673696,26.86185038,67.11087036,181.0156211,181.6995352,15.087878,0.136262491,1620000000000 ,1620000000000 ,1620000000000 ,1616812596010 -1616812596036 ,112.5673696,26.86184902,67.11205292,180.9898303,181.6734405,15.095702,0.136326589,1620000000000 ,1620000000000 ,1620000000000 ,1616812596020 -1616812596047 ,112.5673696,26.86184765,67.11328125,180.9645586,181.6478444,15.10596,0.136414853,1620000000000 ,1620000000000 ,1620000000000 ,1616812596030 -1616812596057 ,112.5673695,26.86184629,67.11453247,180.9378936,181.6199232,15.116737,0.136510926,1620000000000 ,1620000000000 ,1620000000000 ,1616812596040 -1616812596068 ,112.5673695,26.86184492,67.11581421,180.9128678,181.5902156,15.125515,0.13659643,1620000000000 ,1620000000000 ,1620000000000 ,1616812596050 -1616812596077 ,112.5673695,26.86184356,67.11719513,180.8856563,181.5588937,15.13103,0.13665466,1620000000000 ,1620000000000 ,1620000000000 ,1616812596060 -1616812596091 ,112.5673694,26.86184219,67.11872101,180.8591552,181.528648,15.133877,0.136689095,1620000000000 ,1620000000000 ,1620000000000 ,1616812596070 -1616812596108 ,112.5673694,26.86184082,67.1203537,180.8322988,181.495183,15.140075,0.136737695,1620000000000 ,1620000000000 ,1620000000000 ,1616812596080 -1616812596113 ,112.5673693,26.86183946,67.12202454,180.8056338,181.4615505,15.1464405,0.136795615,1620000000000 ,1620000000000 ,1620000000000 ,1616812596090 -1616812596117 ,112.5673693,26.86183809,67.123703,180.779078,181.4281342,15.154092,0.136862505,1620000000000 ,1620000000000 ,1620000000000 ,1616812596100 -1616812596128 ,112.5673693,26.86183672,67.12541962,180.7511016,181.3953591,15.161462,0.136930836,1620000000000 ,1620000000000 ,1620000000000 ,1616812596110 -1616812596139 ,112.5673692,26.86183535,67.12719727,180.7229065,181.3606956,15.167756,0.136989013,1620000000000 ,1620000000000 ,1620000000000 ,1616812596120 -1616812596148 ,112.5673692,26.86183398,67.12905884,180.6959956,181.3267734,15.174235,0.13705203,1620000000000 ,1620000000000 ,1620000000000 ,1616812596130 -1616812596159 ,112.5673692,26.86183261,67.1309433,180.6697677,181.2965768,15.181017,0.137113598,1620000000000 ,1620000000000 ,1620000000000 ,1616812596140 -1616812596169 ,112.5673692,26.86183124,67.13282776,180.6425016,181.2561631,15.188066,0.137175709,1620000000000 ,1620000000000 ,1620000000000 ,1616812596150 -1616812596180 ,112.5673691,26.86182987,67.13466644,180.6166561,181.2129407,15.195489,0.137243103,1620000000000 ,1620000000000 ,1620000000000 ,1616812596160 -1616812596190 ,112.5673691,26.86182849,67.13640594,180.5879693,181.1736594,15.203695,0.137309991,1620000000000 ,1620000000000 ,1620000000000 ,1616812596170 -1616812596199 ,112.5673691,26.86182712,67.13804626,180.5602114,181.1470689,15.21104,0.137377283,1620000000000 ,1620000000000 ,1620000000000 ,1616812596180 -1616812596209 ,112.567369,26.86182574,67.13960266,180.5309509,181.1189016,15.218379,0.137444533,1620000000000 ,1620000000000 ,1620000000000 ,1616812596190 -1616812596219 ,112.567369,26.86182437,67.14100647,180.5077009,181.3752968,15.214688,0.1373644,1620000000000 ,1620000000000 ,1620000000000 ,1616812596200 -1616812596230 ,112.567369,26.861823,67.14224243,180.4787956,181.8054857,15.221229,0.1371992,1620000000000 ,1620000000000 ,1620000000000 ,1616812596210 -1616812596240 ,112.5673689,26.86182163,67.14347076,180.4500815,181.7692546,15.229047,0.137269207,1620000000000 ,1620000000000 ,1620000000000 ,1616812596220 -1616812596250 ,112.5673689,26.86182026,67.1446228,180.4196735,181.7406795,15.237365,0.137338309,1620000000000 ,1620000000000 ,1620000000000 ,1616812596230 -1616812596260 ,112.5673688,26.86181888,67.14570618,180.3901944,181.7054344,15.245813,0.137413773,1620000000000 ,1620000000000 ,1620000000000 ,1616812596240 -1616812596270 ,112.5673688,26.86181751,67.14677429,180.3594039,181.6662934,15.252976,0.137479386,1620000000000 ,1620000000000 ,1620000000000 ,1616812596250 -1616812596279 ,112.5673688,26.86181613,67.14788818,180.3275479,181.6292796,15.2594185,0.137542014,1620000000000 ,1620000000000 ,1620000000000 ,1616812596260 -1616812596290 ,112.5673687,26.86181476,67.14905548,180.2970579,181.5976993,15.265185,0.137598117,1620000000000 ,1620000000000 ,1620000000000 ,1616812596270 -1616812596301 ,112.5673687,26.86181338,67.15023804,180.2668411,181.5626749,15.270338,0.137643162,1620000000000 ,1620000000000 ,1620000000000 ,1616812596280 -1616812596312 ,112.5673686,26.86181201,67.15141296,180.2392472,181.5270623,15.275478,0.137691088,1620000000000 ,1620000000000 ,1620000000000 ,1616812596290 -1616812596321 ,112.5673686,26.86181063,67.15249634,180.2127734,181.4847678,15.282589,0.137748319,1620000000000 ,1620000000000 ,1620000000000 ,1616812596300 -1616812596331 ,112.5673686,26.86180925,67.15345764,180.1841959,181.4516338,15.290325,0.137811649,1620000000000 ,1620000000000 ,1620000000000 ,1616812596310 -1616812596342 ,112.5673685,26.86180787,67.15432739,180.1550993,181.42817,15.299059,0.137886816,1620000000000 ,1620000000000 ,1620000000000 ,1616812596320 -1616812596350 ,112.5673685,26.86180649,67.15512848,180.1244454,181.4047842,15.307604,0.137964964,1620000000000 ,1620000000000 ,1620000000000 ,1616812596330 -1616812596360 ,112.5673685,26.86180511,67.15589905,180.0935729,181.3780985,15.314004,0.138027835,1620000000000 ,1620000000000 ,1620000000000 ,1616812596340 -1616812596370 ,112.5673684,26.86180373,67.15664673,180.0613071,181.3485062,15.319756,0.138079347,1620000000000 ,1620000000000 ,1620000000000 ,1616812596350 -1616812596380 ,112.5673684,26.86180235,67.15739441,180.0288227,181.3138077,15.327038,0.138142274,1620000000000 ,1620000000000 ,1620000000000 ,1616812596360 -1616812596393 ,112.5673684,26.86180097,67.15807343,179.998442,181.2776453,15.335237,0.138210415,1620000000000 ,1620000000000 ,1620000000000 ,1616812596370 -1616812596405 ,112.5673684,26.86179959,67.15864563,179.9652746,181.242999,15.3423195,0.138275284,1620000000000 ,1620000000000 ,1620000000000 ,1616812596380 -1616812596413 ,112.5673683,26.8617982,67.15913391,179.9337192,181.2105042,15.348894,0.138330418,1620000000000 ,1620000000000 ,1620000000000 ,1616812596390 -1616812596424 ,112.5673683,26.86179682,67.15965271,179.9022183,181.1746179,15.3557005,0.138391703,1620000000000 ,1620000000000 ,1620000000000 ,1616812596400 -1616812596432 ,112.5673683,26.86179544,67.16020966,179.8699252,181.1377018,15.361405,0.138450231,1620000000000 ,1620000000000 ,1620000000000 ,1616812596410 -1616812596441 ,112.5673682,26.86179405,67.16074371,179.8387795,181.1053724,15.369233,0.138510142,1620000000000 ,1620000000000 ,1620000000000 ,1616812596420 -1616812596451 ,112.5673682,26.86179267,67.16118622,179.8089179,181.0745007,15.376188,0.138571032,1620000000000 ,1620000000000 ,1620000000000 ,1616812596430 -1616812596462 ,112.5673682,26.86179128,67.16152191,179.7783187,181.045415,15.38199,0.138625325,1620000000000 ,1620000000000 ,1620000000000 ,1616812596440 -1616812596473 ,112.5673682,26.86178989,67.16195679,179.7462714,180.7245516,15.387919,0.138819504,1620000000000 ,1620000000000 ,1620000000000 ,1616812596450 -1616812596487 ,112.5673682,26.8617885,67.16253662,179.7125576,180.4118361,15.393922,0.139020091,1620000000000 ,1620000000000 ,1620000000000 ,1616812596460 -1616812596495 ,112.5673682,26.86178711,67.16310883,179.6787892,180.3826177,15.401487,0.139085873,1620000000000 ,1620000000000 ,1620000000000 ,1616812596470 -1616812596502 ,112.5673681,26.86178572,67.1636734,179.6439006,180.3515958,15.408398,0.139150673,1620000000000 ,1620000000000 ,1620000000000 ,1616812596480 -1616812596512 ,112.5673681,26.86178433,67.16425323,179.6105419,180.3231784,15.414366,0.13920596,1620000000000 ,1620000000000 ,1620000000000 ,1616812596500 -1616812596524 ,112.5673681,26.86178294,67.16484833,179.5767462,180.2790975,15.418734,0.139248336,1620000000000 ,1620000000000 ,1620000000000 ,1616812596500 -1616812596532 ,112.5673681,26.86178154,67.16545868,179.5422947,180.2317287,15.422864,0.139282909,1620000000000 ,1620000000000 ,1620000000000 ,1616812596520 -1616812596544 ,112.5673681,26.86177876,67.16671753,179.4790198,180.1786029,15.432082,0.278688771,1620000000000 ,1620000000000 ,1620000000000 ,1616812596530 -1616812596555 ,112.5673681,26.86177876,67.16671753,179.4790198,-400,15.432082,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812596540 -1616812596563 ,112.5673681,26.86177597,67.16822815,179.4115102,180.0971247,15.442477,0.278873632,1620000000000 ,1620000000000 ,1620000000000 ,1616812596550 -1616812596574 ,112.5673681,26.86177457,67.16901398,179.3789985,180.0451504,15.448554,0.139514871,1620000000000 ,1620000000000 ,1620000000000 ,1616812596560 -1616812596584 ,112.5673681,26.86177318,67.16983032,179.3436181,180.0105873,15.454587,0.139568705,1620000000000 ,1620000000000 ,1620000000000 ,1616812596570 -1616812596593 ,112.5673681,26.86177178,67.17068481,179.3086202,179.9733385,15.458457,0.139604103,1620000000000 ,1620000000000 ,1620000000000 ,1616812596580 -1616812596603 ,112.5673681,26.86177178,67.17068481,179.3086202,-400,15.458457,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812596590 -1616812596613 ,112.5673681,26.86176899,67.17250061,179.2386518,179.9135516,15.470993,0.279363839,1620000000000 ,1620000000000 ,1620000000000 ,1616812596600 -1616812596623 ,112.5673681,26.86176759,67.1734848,179.2031894,179.8512799,15.477352,0.139771707,1620000000000 ,1620000000000 ,1620000000000 ,1616812596610 -1616812596634 ,112.5673681,26.86176619,67.17456818,179.1667982,179.8079254,15.481395,0.139819097,1620000000000 ,1620000000000 ,1620000000000 ,1616812596620 -1616812596644 ,112.5673681,26.86176479,67.17572784,179.1294507,179.7586234,15.483997,0.139849702,1620000000000 ,1620000000000 ,1620000000000 ,1616812596630 -1616812596655 ,112.5673681,26.86176339,67.17697144,179.0917481,179.7156466,15.4874935,0.139873566,1620000000000 ,1620000000000 ,1620000000000 ,1616812596640 -1616812596664 ,112.5673681,26.86176199,67.17825317,179.0575425,179.6734003,15.493949,0.139926915,1620000000000 ,1620000000000 ,1620000000000 ,1616812596650 -1616812596677 ,112.5673682,26.86176059,67.17956543,179.0216703,179.6357074,15.504682,0.140014445,1620000000000 ,1620000000000 ,1620000000000 ,1616812596660 -1616812596683 ,112.5673682,26.86175919,67.18087769,178.9828749,179.590495,15.511764,0.140085836,1620000000000 ,1620000000000 ,1620000000000 ,1616812596670 -1616812596693 ,112.5673682,26.86175779,67.18219757,178.9409102,179.5340884,15.513077,0.140113619,1620000000000 ,1620000000000 ,1620000000000 ,1616812596680 -1616812596704 ,112.5673682,26.86175639,67.18354797,178.9009672,179.5064,15.51617,0.14012956,1620000000000 ,1620000000000 ,1620000000000 ,1616812596690 -1616812596714 ,112.5673682,26.86175499,67.18494415,178.8610243,179.4908429,15.523079,0.140183122,1620000000000 ,1620000000000 ,1620000000000 ,1616812596700 -1616812596727 ,112.5673682,26.86175359,67.18638611,178.8231031,179.4600877,15.53032,0.140251207,1620000000000 ,1620000000000 ,1620000000000 ,1616812596710 -1616812596755 ,112.5673682,26.86175218,67.18788147,178.7855644,179.4286972,15.540265,0.140338711,1620000000000 ,1620000000000 ,1620000000000 ,1616812596720 -1616812596758 ,112.5673682,26.86175078,67.18946075,178.744993,179.388203,15.5475445,0.140410611,1620000000000 ,1620000000000 ,1620000000000 ,1616812596730 -1616812596764 ,112.5673683,26.86174937,67.19113159,178.7028918,179.3429548,15.55136,0.140458111,1620000000000 ,1620000000000 ,1620000000000 ,1616812596740 -1616812596766 ,112.5673683,26.86174797,67.19281006,178.6570475,179.3107896,15.55398,0.140478074,1620000000000 ,1620000000000 ,1620000000000 ,1616812596750 -1616812596775 ,112.5673683,26.86174656,67.19443512,178.6126513,179.2715905,15.555527,0.140495478,1620000000000 ,1620000000000 ,1620000000000 ,1616812596760 -1616812596785 ,112.5673683,26.86174516,67.19599152,178.5686922,179.2171418,15.559895,0.140524284,1620000000000 ,1620000000000 ,1620000000000 ,1616812596770 -1616812596796 ,112.5673683,26.86174375,67.19749451,178.5254434,179.1640719,15.56849,0.140588609,1620000000000 ,1620000000000 ,1620000000000 ,1616812596780 -1616812596807 ,112.5673684,26.86174235,67.19897461,178.48214,179.0960546,15.578407,0.140675771,1620000000000 ,1620000000000 ,1620000000000 ,1616812596790 -1616812596816 ,112.5673684,26.86174094,67.20051575,178.4413775,179.0145937,15.588744,0.14076688,1620000000000 ,1620000000000 ,1620000000000 ,1616812596800 -1616812596828 ,112.5673684,26.86173953,67.20227051,178.3984019,178.9568019,15.594081,0.140830589,1620000000000 ,1620000000000 ,1620000000000 ,1616812596810 -1616812596837 ,112.5673684,26.86173812,67.20424652,178.354716,178.8828899,15.593988,0.140846043,1620000000000 ,1620000000000 ,1620000000000 ,1616812596820 -1616812596845 ,112.5673685,26.86173672,67.2062912,178.3108389,178.8185986,15.596785,0.140869386,1620000000000 ,1620000000000 ,1620000000000 ,1616812596830 -1616812596855 ,112.5673685,26.86173531,67.20828247,178.2708686,178.7827775,15.601787,0.140900034,1620000000000 ,1620000000000 ,1620000000000 ,1616812596840 -1616812596865 ,112.5673685,26.8617339,67.21019745,178.2337397,178.7343635,15.611548,0.140972607,1620000000000 ,1620000000000 ,1620000000000 ,1616812596850 -1616812596875 ,112.5673686,26.86173249,67.21213531,178.1958185,178.6571524,15.61952,0.141057746,1620000000000 ,1620000000000 ,1620000000000 ,1616812596860 -1616812596889 ,112.5673686,26.86173108,67.21429443,178.1566679,178.6040378,15.621465,0.141101687,1620000000000 ,1620000000000 ,1620000000000 ,1616812596870 -1616812596895 ,112.5673686,26.86172967,67.21663666,178.1155228,178.5739642,15.6189575,0.141085028,1620000000000 ,1620000000000 ,1620000000000 ,1616812596880 -1616812596908 ,112.5673687,26.86172826,67.21894836,178.0748695,178.5499216,15.619849,0.141079923,1620000000000 ,1620000000000 ,1620000000000 ,1616812596890 -1616812596920 ,112.5673687,26.86172685,67.22104645,178.0369483,178.5316844,15.624867,0.141112689,1620000000000 ,1620000000000 ,1620000000000 ,1616812596900 -1616812596928 ,112.5673687,26.86172543,67.22285461,177.9987812,178.5142333,15.639849,0.141214332,1620000000000 ,1620000000000 ,1620000000000 ,1616812596910 -1616812596935 ,112.5673688,26.86172402,67.2244873,177.9642205,178.4449352,15.658095,0.141379097,1620000000000 ,1620000000000 ,1620000000000 ,1616812596920 -1616812596947 ,112.5673688,26.86172261,67.2261734,177.9263539,178.3427741,15.664925,0.141462839,1620000000000 ,1620000000000 ,1620000000000 ,1616812596930 -1616812596959 ,112.5673689,26.86172119,67.2281189,177.8854274,178.2963031,15.664007,0.141482439,1620000000000 ,1620000000000 ,1620000000000 ,1616812596940 -1616812596966 ,112.5673689,26.86171978,67.23039246,177.8454571,178.3002505,15.657198,0.141442007,1620000000000 ,1620000000000 ,1620000000000 ,1616812596950 -1616812596991 ,112.5673689,26.86171836,67.23283386,177.8055961,178.2892582,15.658748,0.141430117,1620000000000 ,1620000000000 ,1620000000000 ,1616812596960 -1616812597002 ,112.567369,26.86171695,67.23526001,177.7681394,178.2325594,15.668982,0.141506087,1620000000000 ,1620000000000 ,1620000000000 ,1616812596970 -1616812597007 ,112.567369,26.86171553,67.23751068,177.7318847,178.170403,15.683522,0.141626781,1620000000000 ,1620000000000 ,1620000000000 ,1616812596980 -1616812597010 ,112.5673691,26.86171412,67.23957825,177.6957667,178.1169537,15.693253,0.141726012,1620000000000 ,1620000000000 ,1620000000000 ,1616812596990 -1616812597017 ,112.5673691,26.8617127,67.24153137,177.661725,178.0781258,15.6944,0.141757632,1620000000000 ,1620000000000 ,1620000000000 ,1616812597000 -1616812597026 ,112.5673692,26.86171128,67.24356842,177.6272189,178.057613,15.6932745,0.141741997,1620000000000 ,1620000000000 ,1620000000000 ,1616812597010 -1616812597038 ,112.5673692,26.86170987,67.24581909,177.5920298,178.0412549,15.698054,0.141786771,1620000000000 ,1620000000000 ,1620000000000 ,1616812597020 -1616812597047 ,112.5673693,26.86170845,67.24825287,177.5558844,178.0179948,15.701822,0.141821426,1620000000000 ,1620000000000 ,1620000000000 ,1616812597030 -1616812597058 ,112.5673693,26.86170703,67.25077057,177.5159961,177.9739633,15.710165,0.141899151,1620000000000 ,1620000000000 ,1620000000000 ,1616812597040 -1616812597067 ,112.5673694,26.86170561,67.25326538,177.4759985,177.9315348,15.716444,0.141955164,1620000000000 ,1620000000000 ,1620000000000 ,1616812597050 -1616812597077 ,112.5673694,26.86170419,67.25566101,177.4355911,177.9115408,15.721738,0.142012151,1620000000000 ,1620000000000 ,1620000000000 ,1616812597060 -1616812597086 ,112.5673695,26.86170277,67.25797272,177.3984895,177.9026079,15.726861,0.142060503,1620000000000 ,1620000000000 ,1620000000000 ,1616812597070 -1616812597097 ,112.5673695,26.86170135,67.26025391,177.3617158,177.8650021,15.729012,0.142084775,1620000000000 ,1620000000000 ,1620000000000 ,1616812597080 -1616812597108 ,112.5673696,26.86169993,67.26263428,177.3256524,177.8069261,15.734036,0.142128654,1620000000000 ,1620000000000 ,1620000000000 ,1616812597090 -1616812597118 ,112.5673696,26.86169851,67.26516724,177.2870209,177.7629859,15.739895,0.142187062,1620000000000 ,1620000000000 ,1620000000000 ,1616812597100 -1616812597127 ,112.5673697,26.86169709,67.26773834,177.2509028,177.7267031,15.745371,0.142243121,1620000000000 ,1620000000000 ,1620000000000 ,1616812597110 -1616812597139 ,112.5673697,26.86169567,67.27024078,177.216506,177.6938823,15.752189,0.14229664,1620000000000 ,1620000000000 ,1620000000000 ,1616812597120 -1616812597150 ,112.5673698,26.86169425,67.2726059,177.1850052,177.6647614,15.759856,0.142369249,1620000000000 ,1620000000000 ,1620000000000 ,1616812597130 -1616812597159 ,112.5673699,26.86169283,67.27484131,177.1514279,177.6202868,15.766738,0.142430461,1620000000000 ,1620000000000 ,1620000000000 ,1616812597140 -1616812597169 ,112.5673699,26.8616914,67.27696991,177.1176322,177.5702517,15.770727,0.142477172,1620000000000 ,1620000000000 ,1620000000000 ,1616812597150 -1616812597180 ,112.56737,26.86168998,67.27896881,177.0834812,177.5284486,15.777655,0.142527443,1620000000000 ,1620000000000 ,1620000000000 ,1616812597160 -1616812597190 ,112.56737,26.86168855,67.28083038,177.050669,177.5012881,15.783593,0.142588232,1620000000000 ,1620000000000 ,1620000000000 ,1616812597170 -1616812597201 ,112.5673701,26.86168713,67.28257751,177.0183485,177.4866512,15.796019,0.14267875,1620000000000 ,1620000000000 ,1620000000000 ,1616812597180 -1616812597208 ,112.5673702,26.8616857,67.28424835,176.9880225,177.4572136,15.800382,0.14273675,1620000000000 ,1620000000000 ,1620000000000 ,1616812597190 -1616812597219 ,112.5673702,26.86168427,67.28594971,176.95868,177.4981857,15.816606,0.142924934,1620000000000 ,1620000000000 ,1620000000000 ,1616812597200 -1616812597230 ,112.5673703,26.86168284,67.28786469,176.9279715,177.5387132,15.821832,0.143182792,1620000000000 ,1620000000000 ,1620000000000 ,1616812597210 -1616812597238 ,112.5673704,26.86168141,67.28965759,176.8952958,177.4984727,15.82789,0.14322836,1620000000000 ,1620000000000 ,1620000000000 ,1616812597220 -1616812597248 ,112.5673704,26.86167998,67.29135132,176.8649971,177.4736914,15.834968,0.143291442,1620000000000 ,1620000000000 ,1620000000000 ,1616812597230 -1616812597259 ,112.5673705,26.86167855,67.2930069,176.8360371,177.4417115,15.843379,0.143366621,1620000000000 ,1620000000000 ,1620000000000 ,1616812597240 -1616812597269 ,112.5673706,26.86167712,67.29472351,176.8049461,177.3871178,15.851567,0.143448057,1620000000000 ,1620000000000 ,1620000000000 ,1616812597250 -1616812597280 ,112.5673706,26.86167568,67.29650116,176.777762,177.3206741,15.855179,0.143485981,1620000000000 ,1620000000000 ,1620000000000 ,1616812597260 -1616812597289 ,112.5673707,26.86167425,67.29824066,176.7549218,177.2769561,15.861219,0.143536824,1620000000000 ,1620000000000 ,1620000000000 ,1616812597270 -1616812597299 ,112.5673708,26.86167281,67.29981232,176.7339395,177.247785,15.868528,0.143592608,1620000000000 ,1620000000000 ,1620000000000 ,1616812597280 -1616812597309 ,112.5673708,26.86167138,67.30120087,176.7109081,177.2114315,15.8754225,0.143656093,1620000000000 ,1620000000000 ,1620000000000 ,1616812597290 -1616812597319 ,112.5673709,26.86166994,67.30250549,176.6856637,177.1736721,15.881594,0.143708222,1620000000000 ,1620000000000 ,1620000000000 ,1616812597300 -1616812597329 ,112.567371,26.86166851,67.30381012,176.6635339,177.1313275,15.889308,0.14377609,1620000000000 ,1620000000000 ,1620000000000 ,1616812597310 -1616812597339 ,112.567371,26.86166707,67.30511475,176.6418412,177.0968502,15.898283,0.143851197,1620000000000 ,1620000000000 ,1620000000000 ,1616812597320 -1616812597349 ,112.5673711,26.86166563,67.306427,176.6211047,177.0689914,15.90668,0.143931703,1620000000000 ,1620000000000 ,1620000000000 ,1616812597330 -1616812597362 ,112.5673712,26.8616642,67.30780792,176.5991662,177.0360677,15.912976,0.143999146,1620000000000 ,1620000000000 ,1620000000000 ,1616812597340 -1616812597370 ,112.5673713,26.86166276,67.3092804,176.5784024,176.9897749,15.917268,0.14403847,1620000000000 ,1620000000000 ,1620000000000 ,1616812597350 -1616812597385 ,112.5673713,26.86166132,67.31075287,176.5595511,176.9486804,15.923449,0.144091123,1620000000000 ,1620000000000 ,1620000000000 ,1616812597360 -1616812597391 ,112.5673714,26.86165988,67.31217194,176.5377218,176.9241876,15.929498,0.144147338,1620000000000 ,1620000000000 ,1620000000000 ,1616812597370 -1616812597401 ,112.5673715,26.86165844,67.31360626,176.5191983,176.8935883,15.933919,0.144195687,1620000000000 ,1620000000000 ,1620000000000 ,1616812597380 -1616812597411 ,112.5673716,26.861657,67.3151474,176.4998825,176.8502591,15.938828,0.144238851,1620000000000 ,1620000000000 ,1620000000000 ,1616812597390 -1616812597420 ,112.5673717,26.86165556,67.3167572,176.4813317,176.8184822,15.94347,0.144284516,1620000000000 ,1620000000000 ,1620000000000 ,1616812597400 -1616812597430 ,112.5673717,26.86165412,67.318367,176.4631634,176.7929766,15.951155,0.144346117,1620000000000 ,1620000000000 ,1620000000000 ,1616812597410 -1616812597442 ,112.5673718,26.86165268,67.31993866,176.4457601,176.7788916,15.957552,0.144409753,1620000000000 ,1620000000000 ,1620000000000 ,1616812597420 -1616812597454 ,112.5673719,26.86165123,67.32151794,176.4276465,176.7492189,15.965085,0.144476879,1620000000000 ,1620000000000 ,1620000000000 ,1616812597430 -1616812597461 ,112.567372,26.86164979,67.32312012,176.4086039,176.722026,15.971265,0.144533613,1620000000000 ,1620000000000 ,1620000000000 ,1616812597440 -1616812597473 ,112.5673721,26.86164835,67.32467651,176.3906268,176.6108973,15.978514,0.14448469,1620000000000 ,1620000000000 ,1620000000000 ,1616812597450 -1616812597480 ,112.5673722,26.86164691,67.32620239,176.3732508,176.495671,15.983517,0.144416766,1620000000000 ,1620000000000 ,1620000000000 ,1616812597460 -1616812597491 ,112.5673722,26.86164546,67.32781982,176.3584976,176.4688931,15.988088,0.144464669,1620000000000 ,1620000000000 ,1620000000000 ,1616812597470 -1616812597500 ,112.5673723,26.86164402,67.32948303,176.344646,176.4376123,15.993874,0.144515415,1620000000000 ,1620000000000 ,1620000000000 ,1616812597480 -1616812597510 ,112.5673724,26.86164258,67.33107758,176.3324336,176.4066176,15.999188,0.144560444,1620000000000 ,1620000000000 ,1620000000000 ,1616812597490 -1616812597521 ,112.5673725,26.86164114,67.33246613,176.3213687,176.3824843,16.008171,0.144636899,1620000000000 ,1620000000000 ,1620000000000 ,1616812597500 -1616812597531 ,112.5673726,26.86163969,67.33358002,176.3079815,176.379059,16.015327,0.144685828,1620000000000 ,1620000000000 ,1620000000000 ,1616812597510 -1616812597542 ,112.5673727,26.86163825,67.33448792,176.2958511,176.364209,16.024801,0.144767036,1620000000000 ,1620000000000 ,1620000000000 ,1616812597520 -1616812597551 ,112.5673728,26.8616368,67.33537292,176.2818083,176.3318114,16.032146,0.144837441,1620000000000 ,1620000000000 ,1620000000000 ,1616812597530 -1616812597562 ,112.5673729,26.86163536,67.33636475,176.2695686,176.3051315,16.038942,0.14490105,1620000000000 ,1620000000000 ,1620000000000 ,1616812597540 -1616812597572 ,112.567373,26.86163391,67.33746338,176.2596511,176.2939716,16.043007,0.144945306,1620000000000 ,1620000000000 ,1620000000000 ,1616812597560 -1616812597586 ,112.5673731,26.86163246,67.33863068,176.2514549,176.2850015,16.047798,0.144988057,1620000000000 ,1620000000000 ,1620000000000 ,1616812597570 -1616812597593 ,112.5673732,26.86163102,67.33984375,176.2439144,176.2692168,16.054844,0.145044807,1620000000000 ,1620000000000 ,1620000000000 ,1616812597580 -1616812597611 ,112.5673733,26.86162957,67.34107208,176.2358001,176.2528762,16.060902,0.14510802,1620000000000 ,1620000000000 ,1620000000000 ,1616812597580 -1616812597620 ,112.5673735,26.86162667,67.34342957,176.2261286,176.2298413,16.071404,0.29035977,1620000000000 ,1620000000000 ,1620000000000 ,1616812597600 -1616812597628 ,112.5673735,26.86162667,67.34342957,176.2261286,-400,16.071404,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812597610 -1616812597633 ,112.5673736,26.86162377,67.34597015,176.2165663,176.2039565,16.082325,0.290540381,1620000000000 ,1620000000000 ,1620000000000 ,1616812597620 -1616812597643 ,112.5673737,26.86162232,67.3473053,176.2115666,176.1931467,16.089941,0.145362432,1620000000000 ,1620000000000 ,1620000000000 ,1616812597630 -1616812597653 ,112.5673738,26.86162087,67.34867096,176.2071679,176.1840675,16.097872,0.145431592,1620000000000 ,1620000000000 ,1620000000000 ,1616812597640 -1616812597665 ,112.5673739,26.86161942,67.35006714,176.2033977,176.1767402,16.102823,0.145488995,1620000000000 ,1620000000000 ,1620000000000 ,1616812597650 -1616812597676 ,112.567374,26.86161797,67.35153961,176.1983707,176.172001,16.107689,0.145527472,1620000000000 ,1620000000000 ,1620000000000 ,1616812597660 -1616812597684 ,112.5673741,26.86161651,67.35307312,176.1921415,176.1616818,16.11492,0.145592977,1620000000000 ,1620000000000 ,1620000000000 ,1616812597670 -1616812597694 ,112.5673742,26.86161506,67.35467529,176.1859944,176.1681932,16.123777,0.145667088,1620000000000 ,1620000000000 ,1620000000000 ,1616812597680 -1616812597705 ,112.5673742,26.86161506,67.35467529,176.1859944,-400,16.123777,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812597690 -1616812597715 ,112.5673744,26.86161215,67.35810852,176.1775249,176.1726302,16.13265,0.291490472,1620000000000 ,1620000000000 ,1620000000000 ,1616812597700 -1616812597724 ,112.5673745,26.8616107,67.3600235,176.1742738,176.172206,16.136656,0.145801516,1620000000000 ,1620000000000 ,1620000000000 ,1616812597710 -1616812597733 ,112.5673746,26.86160924,67.36201477,176.1723067,176.1711919,16.141857,0.145852296,1620000000000 ,1620000000000 ,1620000000000 ,1616812597720 -1616812597743 ,112.5673747,26.86160779,67.36402893,176.1699298,176.1816375,16.147158,0.145899685,1620000000000 ,1620000000000 ,1620000000000 ,1616812597730 -1616812597753 ,112.5673748,26.86160633,67.36610413,176.1651486,176.1912184,16.151787,0.145946812,1620000000000 ,1620000000000 ,1620000000000 ,1616812597740 -1616812597764 ,112.5673749,26.86160487,67.36823273,176.1605861,176.1874582,16.15807,0.145995708,1620000000000 ,1620000000000 ,1620000000000 ,1616812597750 -1616812597774 ,112.567375,26.86160341,67.37031555,176.1608319,176.1818538,16.165974,0.146069273,1620000000000 ,1620000000000 ,1620000000000 ,1616812597760 -1616812597784 ,112.5673751,26.86160196,67.37226105,176.1590015,176.1863249,16.175411,0.146145215,1620000000000 ,1620000000000 ,1620000000000 ,1616812597770 -1616812597795 ,112.5673752,26.8616005,67.37407684,176.1559689,176.1935519,16.182854,0.146213267,1620000000000 ,1620000000000 ,1620000000000 ,1616812597780 -1616812597805 ,112.5673753,26.86159904,67.37586975,176.1530182,176.1872378,16.189634,0.146279572,1620000000000 ,1620000000000 ,1620000000000 ,1616812597790 -1616812597815 ,112.5673754,26.86159758,67.37771606,176.1516522,176.1688884,16.19323,0.146322757,1620000000000 ,1620000000000 ,1620000000000 ,1616812597800 -1616812597823 ,112.5673755,26.86159612,67.37960052,176.151297,176.1621435,16.200937,0.146384267,1620000000000 ,1620000000000 ,1620000000000 ,1616812597810 -1616812597833 ,112.5673756,26.86159466,67.3814621,176.154193,176.1747722,16.205656,0.14641585,1620000000000 ,1620000000000 ,1620000000000 ,1616812597820 -1616812597852 ,112.5673757,26.8615932,67.38327789,176.159903,176.1736847,16.21405,0.146503922,1620000000000 ,1620000000000 ,1620000000000 ,1616812597830 -1616812597858 ,112.5673758,26.86159173,67.38505554,176.1637279,176.1528146,16.222733,0.146573102,1620000000000 ,1620000000000 ,1620000000000 ,1616812597840 -1616812597865 ,112.5673759,26.86159027,67.38686371,176.1677987,176.141187,16.22981,0.146642674,1620000000000 ,1620000000000 ,1620000000000 ,1616812597850 -1616812597878 ,112.567376,26.86158881,67.3886795,176.1722793,176.1477298,16.235228,0.146690119,1620000000000 ,1620000000000 ,1620000000000 ,1616812597860 -1616812597886 ,112.5673761,26.86158734,67.39047241,176.1771424,176.1546231,16.24207,0.146755174,1620000000000 ,1620000000000 ,1620000000000 ,1616812597870 -1616812597896 ,112.5673762,26.86158588,67.39225769,176.1821695,176.1497414,16.247925,0.146812081,1620000000000 ,1620000000000 ,1620000000000 ,1616812597880 -1616812597906 ,112.5673763,26.86158441,67.39402771,176.1899286,176.1460851,16.252884,0.146856403,1620000000000 ,1620000000000 ,1620000000000 ,1616812597890 -1616812597915 ,112.5673764,26.86158295,67.39575195,176.1990264,176.1431159,16.259224,0.146911497,1620000000000 ,1620000000000 ,1620000000000 ,1616812597900 -1616812597925 ,112.5673765,26.86158148,67.39739227,176.2073319,176.140514,16.265343,0.146962421,1620000000000 ,1620000000000 ,1620000000000 ,1616812597910 -1616812597937 ,112.5673766,26.86158001,67.39897156,176.215009,176.155953,16.271772,0.147019241,1620000000000 ,1620000000000 ,1620000000000 ,1616812597920 -1616812597947 ,112.5673767,26.86157855,67.40050507,176.2222763,176.1653037,16.278141,0.147076127,1620000000000 ,1620000000000 ,1620000000000 ,1616812597930 -1616812597959 ,112.5673768,26.86157708,67.4019928,176.2291065,176.1704877,16.285435,0.147135579,1620000000000 ,1620000000000 ,1620000000000 ,1616812597940 -1616812597966 ,112.5673769,26.86157561,67.40345001,176.2370842,176.1751611,16.297096,0.147229214,1620000000000 ,1620000000000 ,1620000000000 ,1616812597950 -1616812597976 ,112.567377,26.86157414,67.40490723,176.2437778,176.1833431,16.30524,0.147320567,1620000000000 ,1620000000000 ,1620000000000 ,1616812597960 -1616812597988 ,112.5673771,26.86157267,67.40638733,176.2517827,176.1858233,16.308687,0.147359758,1620000000000 ,1620000000000 ,1620000000000 ,1616812597970 -1616812597996 ,112.5673772,26.8615712,67.40796661,176.2594052,176.1798505,16.311142,0.147389563,1620000000000 ,1620000000000 ,1620000000000 ,1616812597980 -1616812598007 ,112.5673773,26.86156973,67.40966034,176.2676015,176.1861131,16.312134,0.147404267,1620000000000 ,1620000000000 ,1620000000000 ,1616812597990 -1616812598018 ,112.5673774,26.86156826,67.41138458,176.2766173,176.1931026,16.319052,0.147452246,1620000000000 ,1620000000000 ,1620000000000 ,1616812598000 -1616812598029 ,112.5673775,26.86156678,67.41299438,176.2879281,176.1991453,16.327145,0.147520676,1620000000000 ,1620000000000 ,1620000000000 ,1616812598010 -1616812598038 ,112.5673776,26.86156531,67.41435242,176.2971352,176.2115622,16.338537,0.147607366,1620000000000 ,1620000000000 ,1620000000000 ,1616812598020 -1616812598048 ,112.5673777,26.86156384,67.41547394,176.3073805,176.2249097,16.350271,0.147705089,1620000000000 ,1620000000000 ,1620000000000 ,1616812598030 -1616812598057 ,112.5673778,26.86156236,67.41644287,176.3119157,176.2264462,16.35753,0.147780321,1620000000000 ,1620000000000 ,1620000000000 ,1616812598040 -1616812598068 ,112.5673779,26.86156089,67.41740417,176.3150576,176.2349486,16.361454,0.147821533,1620000000000 ,1620000000000 ,1620000000000 ,1616812598050 -1616812598078 ,112.5673779,26.86155941,67.4185257,176.3160412,176.2537811,16.365812,0.147862031,1620000000000 ,1620000000000 ,1620000000000 ,1616812598060 -1616812598087 ,112.567378,26.86155794,67.41975403,176.3180629,176.2691765,16.374628,0.147927778,1620000000000 ,1620000000000 ,1620000000000 ,1616812598070 -1616812598099 ,112.5673781,26.86155646,67.42092896,176.3215326,176.2843231,16.383495,0.148011635,1620000000000 ,1620000000000 ,1620000000000 ,1616812598080 -1616812598110 ,112.5673782,26.86155498,67.42201996,176.3248111,176.2932629,16.39186,0.148085801,1620000000000 ,1620000000000 ,1620000000000 ,1616812598090 -1616812598118 ,112.5673783,26.8615535,67.42304993,176.3275432,176.2947565,16.39751,0.148143805,1620000000000 ,1620000000000 ,1620000000000 ,1616812598100 -1616812598134 ,112.5673784,26.86155202,67.42407227,176.3288273,176.289749,16.402905,0.148184064,1620000000000 ,1620000000000 ,1620000000000 ,1616812598110 -1616812598139 ,112.5673785,26.86155054,67.42501068,176.3300567,176.2979438,16.407495,0.148231977,1620000000000 ,1620000000000 ,1620000000000 ,1616812598120 -1616812598149 ,112.5673786,26.86154906,67.42586517,176.3289639,176.3371802,16.414944,0.148276238,1620000000000 ,1620000000000 ,1620000000000 ,1616812598130 -1616812598160 ,112.5673787,26.86154758,67.4267807,176.3268875,176.3500129,16.42482,0.148364988,1620000000000 ,1620000000000 ,1620000000000 ,1616812598140 -1616812598169 ,112.5673788,26.8615461,67.42782593,176.3231719,176.3341917,16.432037,0.148441174,1620000000000 ,1620000000000 ,1620000000000 ,1616812598150 -1616812598183 ,112.5673789,26.86154462,67.429039,176.3188825,176.3392071,16.436993,0.148500575,1620000000000 ,1620000000000 ,1620000000000 ,1616812598160 -1616812598190 ,112.567379,26.86154314,67.43035126,176.3136369,176.3520016,16.437567,0.148515307,1620000000000 ,1620000000000 ,1620000000000 ,1616812598170 -1616812598199 ,112.5673791,26.86154166,67.43171692,176.3096481,176.3680438,16.440828,0.14853003,1620000000000 ,1620000000000 ,1620000000000 ,1616812598180 -1616812598211 ,112.5673792,26.86154017,67.43308258,176.3069707,176.371728,16.447836,0.148586735,1620000000000 ,1620000000000 ,1620000000000 ,1616812598190 -1616812598222 ,112.5673793,26.86153869,67.43408966,176.3063696,176.5430383,16.476591,0.148898845,1620000000000 ,1620000000000 ,1620000000000 ,1616812598200 -1616812598228 ,112.5673794,26.8615372,67.4345932,176.2985286,176.823759,16.483847,0.149342164,1620000000000 ,1620000000000 ,1620000000000 ,1616812598210 -1616812598240 ,112.5673794,26.8615357,67.43516541,176.2907695,176.8154528,16.488068,0.149390651,1620000000000 ,1620000000000 ,1620000000000 ,1616812598220 -1616812598249 ,112.5673795,26.86153421,67.43585968,176.2858244,176.8163606,16.49106,0.149422462,1620000000000 ,1620000000000 ,1620000000000 ,1616812598230 -1616812598259 ,112.5673796,26.86153272,67.43666077,176.2795406,176.8145957,16.493263,0.149449878,1620000000000 ,1620000000000 ,1620000000000 ,1616812598240 -1616812598271 ,112.5673797,26.86153123,67.43759155,176.2722187,176.8017755,16.500322,0.149498735,1620000000000 ,1620000000000 ,1620000000000 ,1616812598250 -1616812598281 ,112.5673798,26.86152973,67.43858337,176.2663994,176.7942211,16.509193,0.149584201,1620000000000 ,1620000000000 ,1620000000000 ,1616812598260 -1616812598291 ,112.5673799,26.86152824,67.43956757,176.2596784,176.7898622,16.513735,0.14964205,1620000000000 ,1620000000000 ,1620000000000 ,1616812598270 -1616812598300 ,112.5673799,26.86152675,67.44054413,176.2524111,176.7807823,16.517721,0.149676306,1620000000000 ,1620000000000 ,1620000000000 ,1616812598280 -1616812598309 ,112.56738,26.86152525,67.44155121,176.2446793,176.773785,16.52263,0.149719799,1620000000000 ,1620000000000 ,1620000000000 ,1616812598290 -1616812598320 ,112.5673801,26.86152376,67.44256592,176.2401168,176.7643317,16.53187,0.149794293,1620000000000 ,1620000000000 ,1620000000000 ,1616812598300 -1616812598330 ,112.5673802,26.86152226,67.44355011,176.2362099,176.7514213,16.537724,0.149862943,1620000000000 ,1620000000000 ,1620000000000 ,1616812598310 -1616812598341 ,112.5673803,26.86152076,67.4444809,176.2339423,176.7416282,16.541864,0.149898375,1620000000000 ,1620000000000 ,1620000000000 ,1616812598320 -1616812598350 ,112.5673804,26.86151927,67.44543457,176.2272487,176.7394711,16.54719,0.149945804,1620000000000 ,1620000000000 ,1620000000000 ,1616812598330 -1616812598362 ,112.5673804,26.86151777,67.44642639,176.2217026,176.7411828,16.554628,0.150011279,1620000000000 ,1620000000000 ,1620000000000 ,1616812598340 -1616812598371 ,112.5673805,26.86151627,67.44743347,176.2159926,176.7345839,16.56005,0.150065188,1620000000000 ,1620000000000 ,1620000000000 ,1616812598350 -1616812598381 ,112.5673806,26.86151477,67.44837189,176.2118398,176.72686,16.56772,0.150131908,1620000000000 ,1620000000000 ,1620000000000 ,1616812598360 -1616812598390 ,112.5673807,26.86151327,67.44921112,176.2061571,176.7145514,16.57647,0.150208794,1620000000000 ,1620000000000 ,1620000000000 ,1616812598370 -1616812598401 ,112.5673808,26.86151177,67.44994354,176.2017584,176.6995047,16.583792,0.150277058,1620000000000 ,1620000000000 ,1620000000000 ,1616812598380 -1616812598412 ,112.5673809,26.86151027,67.45057678,176.1972232,176.6961931,16.590204,0.150331751,1620000000000 ,1620000000000 ,1620000000000 ,1616812598390 -1616812598421 ,112.567381,26.86150877,67.45109558,176.1943545,176.6929075,16.596151,0.150381779,1620000000000 ,1620000000000 ,1620000000000 ,1616812598400 -1616812598433 ,112.5673811,26.86150727,67.45148468,176.1894641,176.6731736,16.600183,0.150419535,1620000000000 ,1620000000000 ,1620000000000 ,1616812598410 -1616812598445 ,112.5673811,26.86150576,67.45170593,176.1836721,176.6738027,16.61173,0.150504335,1620000000000 ,1620000000000 ,1620000000000 ,1616812598420 -1616812598453 ,112.5673812,26.86150426,67.45170593,176.1792188,176.6859672,16.620401,0.150559241,1620000000000 ,1620000000000 ,1620000000000 ,1616812598430 -1616812598462 ,112.5673813,26.86150276,67.45153046,176.1758584,176.6776953,16.631111,0.150667676,1620000000000 ,1620000000000 ,1620000000000 ,1616812598440 -1616812598472 ,112.5673814,26.86150125,67.4516983,176.1696566,176.4831538,16.640093,0.150534973,1620000000000 ,1620000000000 ,1620000000000 ,1616812598450 -1616812598481 ,112.5673815,26.86149975,67.45239258,176.1639465,176.3036596,16.643179,0.150358806,1620000000000 ,1620000000000 ,1620000000000 ,1616812598460 -1616812598493 ,112.5673816,26.86149825,67.45323944,176.1588649,176.3153721,16.64155,0.150359117,1620000000000 ,1620000000000 ,1620000000000 ,1616812598470 -1616812598501 ,112.5673817,26.86149675,67.45415497,176.1531275,176.3122484,16.645334,0.150379343,1620000000000 ,1620000000000 ,1620000000000 ,1616812598480 -1616812598513 ,112.5673818,26.86149525,67.45504761,176.1485103,176.3044071,16.653048,0.150439269,1620000000000 ,1620000000000 ,1620000000000 ,1616812598490 -1616812598523 ,112.5673819,26.86149375,67.45590973,176.1440843,176.2980491,16.663034,0.150524073,1620000000000 ,1620000000000 ,1620000000000 ,1616812598500 -1616812598532 ,112.5673821,26.86149074,67.45768738,176.134604,176.2678942,16.673439,0.301232466,1620000000000 ,1620000000000 ,1620000000000 ,1616812598520 -1616812598543 ,112.5673821,26.86149074,67.45768738,176.134604,-400,16.673439,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812598530 -1616812598554 ,112.5673823,26.86148774,67.46006012,176.12455,176.2520268,16.68253,0.301375899,1620000000000 ,1620000000000 ,1620000000000 ,1616812598540 -1616812598564 ,112.5673824,26.86148623,67.46144867,176.1190858,176.2568834,16.690989,0.150793324,1620000000000 ,1620000000000 ,1620000000000 ,1616812598550 -1616812598576 ,112.5673825,26.86148473,67.46290588,176.1125015,176.2446991,16.69922,0.15086521,1620000000000 ,1620000000000 ,1620000000000 ,1616812598560 -1616812598591 ,112.5673826,26.86148322,67.46440887,176.1087586,176.23276,16.703344,0.150924168,1620000000000 ,1620000000000 ,1620000000000 ,1616812598570 -1616812598593 ,112.5673827,26.86148171,67.46594238,176.1020377,176.2221083,16.706406,0.150950652,1620000000000 ,1620000000000 ,1620000000000 ,1616812598580 -1616812598605 ,112.5673827,26.86148171,67.46594238,176.1020377,-400,16.706406,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812598590 -1616812598613 ,112.5673829,26.8614787,67.46897125,176.0962457,176.1948412,16.720757,0.302062525,1620000000000 ,1620000000000 ,1620000000000 ,1616812598600 -1616812598623 ,112.567383,26.86147719,67.47049713,176.0906996,176.1823636,16.729908,0.151158307,1620000000000 ,1620000000000 ,1620000000000 ,1616812598610 -1616812598633 ,112.5673831,26.86147568,67.47202301,176.0858365,176.1821074,16.735567,0.15121974,1620000000000 ,1620000000000 ,1620000000000 ,1616812598620 -1616812598644 ,112.5673832,26.86147417,67.47355652,176.0795254,176.1758943,16.741098,0.151260338,1620000000000 ,1620000000000 ,1620000000000 ,1616812598630 -1616812598653 ,112.5673833,26.86147266,67.47510529,176.0753726,176.1607754,16.746117,0.151311911,1620000000000 ,1620000000000 ,1620000000000 ,1616812598640 -1616812598665 ,112.5673834,26.86147115,67.47668457,176.0699085,176.1475101,16.752298,0.151372189,1620000000000 ,1620000000000 ,1620000000000 ,1616812598650 -1616812598676 ,112.5673835,26.86146964,67.47821808,176.0661382,176.1371845,16.759216,0.151431423,1620000000000 ,1620000000000 ,1620000000000 ,1616812598660 -1616812598685 ,112.5673836,26.86146813,67.47963715,176.0626411,176.1326528,16.766474,0.151492212,1620000000000 ,1620000000000 ,1620000000000 ,1616812598670 -1616812598695 ,112.5673837,26.86146662,67.48097229,176.0572863,176.1286377,16.772614,0.151546632,1620000000000 ,1620000000000 ,1620000000000 ,1616812598680 -1616812598705 ,112.5673838,26.86146511,67.4822998,176.0523139,176.12169,16.77997,0.151613491,1620000000000 ,1620000000000 ,1620000000000 ,1616812598690 -1616812598717 ,112.5673839,26.86146359,67.48361206,176.0490081,176.1053633,16.787695,0.151678948,1620000000000 ,1620000000000 ,1620000000000 ,1616812598700 -1616812598724 ,112.567384,26.86146208,67.4848175,176.0485163,176.0902749,16.793196,0.151735167,1620000000000 ,1620000000000 ,1620000000000 ,1616812598710 -1616812598734 ,112.5673841,26.86146057,67.48581696,176.0474508,176.0821588,16.803963,0.151802979,1620000000000 ,1620000000000 ,1620000000000 ,1616812598720 -1616812598744 ,112.5673842,26.86145905,67.48660278,176.0443362,176.0915454,16.80453,0.151825379,1620000000000 ,1620000000000 ,1620000000000 ,1616812598730 -1616812598754 ,112.5673843,26.86145753,67.48726654,176.0435713,176.0983102,16.815344,0.151907391,1620000000000 ,1620000000000 ,1620000000000 ,1616812598740 -1616812598767 ,112.5673844,26.86145602,67.4879303,176.0379432,176.0814795,16.825512,0.151982137,1620000000000 ,1620000000000 ,1620000000000 ,1616812598750 -1616812598775 ,112.5673845,26.8614545,67.48875427,176.0331894,176.0723211,16.83285,0.152065997,1620000000000 ,1620000000000 ,1620000000000 ,1616812598760 -1616812598785 ,112.5673846,26.86145298,67.48974609,176.0278072,176.078748,16.834896,0.152102421,1620000000000 ,1620000000000 ,1620000000000 ,1616812598770 -1616812598794 ,112.5673847,26.86145147,67.49085999,176.0249112,176.0792658,16.83844,0.152127009,1620000000000 ,1620000000000 ,1620000000000 ,1616812598780 -1616812598804 ,112.5673848,26.86144995,67.49201965,176.0222337,176.0778417,16.846869,0.152191923,1620000000000 ,1620000000000 ,1620000000000 ,1616812598790 -1616812598816 ,112.5673849,26.86144843,67.49314117,176.0175346,176.0714764,16.856182,0.152273401,1620000000000 ,1620000000000 ,1620000000000 ,1616812598800 -1616812598825 ,112.567385,26.86144691,67.49423981,176.013655,176.0691352,16.863525,0.152344459,1620000000000 ,1620000000000 ,1620000000000 ,1616812598810 -1616812598837 ,112.5673851,26.86144539,67.49542236,176.0085734,176.0646706,16.86609,0.152375193,1620000000000 ,1620000000000 ,1620000000000 ,1616812598820 -1616812598847 ,112.5673853,26.86144387,67.49676514,176.0028087,176.067374,16.86783,0.152399276,1620000000000 ,1620000000000 ,1620000000000 ,1616812598830 -1616812598857 ,112.5673854,26.86144235,67.49826813,176.0001039,176.0831372,16.874493,0.152446813,1620000000000 ,1620000000000 ,1620000000000 ,1616812598840 -1616812598866 ,112.5673855,26.86144083,67.49983978,175.9957053,176.0814271,16.880465,0.152506051,1620000000000 ,1620000000000 ,1620000000000 ,1616812598850 -1616812598876 ,112.5673856,26.8614393,67.50147247,175.9876457,176.0698085,16.887867,0.152568188,1620000000000 ,1620000000000 ,1620000000000 ,1616812598860 -1616812598885 ,112.5673857,26.86143778,67.50315094,175.9818263,176.0611437,16.895147,0.15263636,1620000000000 ,1620000000000 ,1620000000000 ,1616812598870 -1616812598896 ,112.5673858,26.86143626,67.50486755,175.9756245,176.0650873,16.902853,0.152706547,1620000000000 ,1620000000000 ,1620000000000 ,1616812598880 -1616812598907 ,112.5673859,26.86143473,67.50668335,175.9663355,176.0688798,16.908747,0.152767388,1620000000000 ,1620000000000 ,1620000000000 ,1616812598890 -1616812598918 ,112.567386,26.86143321,67.50865173,175.9593687,176.0559132,16.911777,0.152806702,1620000000000 ,1620000000000 ,1620000000000 ,1616812598900 -1616812598927 ,112.5673861,26.86143168,67.51078033,175.9521014,176.0391833,16.914244,0.152835595,1620000000000 ,1620000000000 ,1620000000000 ,1616812598910 -1616812598941 ,112.5673862,26.86143016,67.51296997,175.9465006,176.0303653,16.9197,0.152875555,1620000000000 ,1620000000000 ,1620000000000 ,1616812598920 -1616812598947 ,112.5673863,26.86142863,67.51515961,175.942102,176.0258775,16.926458,0.15293744,1620000000000 ,1620000000000 ,1620000000000 ,1616812598930 -1616812598956 ,112.5673864,26.86142711,67.51734161,175.9348346,176.0173959,16.931112,0.152986446,1620000000000 ,1620000000000 ,1620000000000 ,1616812598940 -1616812598967 ,112.5673865,26.86142558,67.51953888,175.9292339,176.0069978,16.934689,0.15302469,1620000000000 ,1620000000000 ,1620000000000 ,1616812598950 -1616812598976 ,112.5673866,26.86142405,67.52178192,175.9222125,175.9969644,16.939001,0.153063413,1620000000000 ,1620000000000 ,1620000000000 ,1616812598960 -1616812598991 ,112.5673867,26.86142253,67.524086,175.9163385,175.9907955,16.944864,0.153112552,1620000000000 ,1620000000000 ,1620000000000 ,1616812598970 -1616812598997 ,112.5673868,26.861421,67.52643585,175.9110929,175.9883197,16.952715,0.153186828,1620000000000 ,1620000000000 ,1620000000000 ,1616812598980 -1616812599008 ,112.5673869,26.86141947,67.52877808,175.9064757,175.9784147,16.958187,0.153239688,1620000000000 ,1620000000000 ,1620000000000 ,1616812598990 -1616812599017 ,112.5673871,26.86141794,67.53106689,175.9016399,175.9697106,16.963099,0.153289226,1620000000000 ,1620000000000 ,1620000000000 ,1616812599000 -1616812599027 ,112.5673872,26.86141641,67.53327179,175.8960938,175.9554568,16.96885,0.153336024,1620000000000 ,1620000000000 ,1620000000000 ,1616812599010 -1616812599037 ,112.5673873,26.86141488,67.53533173,175.892023,175.9461193,16.975431,0.153392757,1620000000000 ,1620000000000 ,1620000000000 ,1616812599020 -1616812599047 ,112.5673874,26.86141335,67.53725433,175.8861491,175.9393496,16.981451,0.153448455,1620000000000 ,1620000000000 ,1620000000000 ,1616812599030 -1616812599057 ,112.5673875,26.86141182,67.53907013,175.8798653,175.9291241,16.988695,0.153502492,1620000000000 ,1620000000000 ,1620000000000 ,1616812599040 -1616812599068 ,112.5673876,26.86141029,67.54083252,175.8762316,175.9169949,16.993608,0.153560575,1620000000000 ,1620000000000 ,1620000000000 ,1616812599050 -1616812599078 ,112.5673877,26.86140876,67.54254913,175.8721062,175.9130828,17.0002,0.153610394,1620000000000 ,1620000000000 ,1620000000000 ,1616812599060 -1616812599089 ,112.5673878,26.86140722,67.54425049,175.8675163,175.9019675,17.004501,0.153656397,1620000000000 ,1620000000000 ,1620000000000 ,1616812599070 -1616812599098 ,112.5673879,26.86140569,67.54590607,175.8623527,175.874988,17.010014,0.153701648,1620000000000 ,1620000000000 ,1620000000000 ,1616812599080 -1616812599108 ,112.567388,26.86140416,67.54750061,175.8564787,175.8706965,17.017221,0.153762077,1620000000000 ,1620000000000 ,1620000000000 ,1616812599090 -1616812599118 ,112.5673881,26.86140262,67.54901886,175.8501949,175.8704694,17.025024,0.153832077,1620000000000 ,1620000000000 ,1620000000000 ,1616812599100 -1616812599128 ,112.5673883,26.86140109,67.55054474,175.8421353,175.8593222,17.029245,0.153879399,1620000000000 ,1620000000000 ,1620000000000 ,1616812599110 -1616812599137 ,112.5673884,26.86139955,67.55217743,175.8353598,175.8429528,17.034779,0.153928399,1620000000000 ,1620000000000 ,1620000000000 ,1616812599120 -1616812599151 ,112.5673885,26.86139802,67.55387878,175.831289,175.8257012,17.039677,0.153978166,1620000000000 ,1620000000000 ,1620000000000 ,1616812599130 -1616812599160 ,112.5673886,26.86139648,67.55558014,175.8271362,175.8221568,17.042137,0.154007812,1620000000000 ,1620000000000 ,1620000000000 ,1616812599140 -1616812599170 ,112.5673887,26.86139494,67.55722046,175.8237485,175.8151765,17.046461,0.154042498,1620000000000 ,1620000000000 ,1620000000000 ,1616812599150 -1616812599178 ,112.5673888,26.86139341,67.55877686,175.8205246,175.8171433,17.05271,0.154091071,1620000000000 ,1620000000000 ,1620000000000 ,1616812599160 -1616812599188 ,112.5673889,26.86139187,67.56026459,175.8151697,175.8158941,17.060934,0.154162827,1620000000000 ,1620000000000 ,1620000000000 ,1616812599170 -1616812599198 ,112.567389,26.86139033,67.56167603,175.8083122,175.8056895,17.06817,0.154224587,1620000000000 ,1620000000000 ,1620000000000 ,1616812599180 -1616812599208 ,112.5673892,26.86138879,67.56301117,175.8025202,175.7992245,17.071686,0.154265446,1620000000000 ,1620000000000 ,1620000000000 ,1616812599190 -1616812599220 ,112.5673893,26.86138725,67.56469727,175.8066183,175.8162952,17.07119,0.154222169,1620000000000 ,1620000000000 ,1620000000000 ,1616812599200 -1616812599230 ,112.5673894,26.86138572,67.56711578,175.797302,175.8457611,17.07482,0.154038825,1620000000000 ,1620000000000 ,1620000000000 ,1616812599210 -1616812599245 ,112.5673895,26.86138418,67.56952667,175.7884774,175.8544096,17.081007,0.154111439,1620000000000 ,1620000000000 ,1620000000000 ,1616812599220 -1616812599257 ,112.5673896,26.86138264,67.57196045,175.7837235,175.8529365,17.09087,0.154184775,1620000000000 ,1620000000000 ,1620000000000 ,1616812599230 -1616812599265 ,112.5673897,26.8613811,67.57440948,175.7781774,175.840149,17.0991,0.15426885,1620000000000 ,1620000000000 ,1620000000000 ,1616812599240 -1616812599271 ,112.5673898,26.86137957,67.5769577,175.7724674,175.8293556,17.09717,0.154271333,1620000000000 ,1620000000000 ,1620000000000 ,1616812599250 -1616812599281 ,112.5673899,26.86137803,67.57962036,175.7669759,175.8245774,17.096514,0.154265687,1620000000000 ,1620000000000 ,1620000000000 ,1616812599260 -1616812599291 ,112.5673901,26.86137649,67.58226776,175.7625226,175.8220923,17.104275,0.154316052,1620000000000 ,1620000000000 ,1620000000000 ,1616812599270 -1616812599299 ,112.5673902,26.86137495,67.58473969,175.7561296,175.8239531,17.118315,0.15442581,1620000000000 ,1620000000000 ,1620000000000 ,1616812599280 -1616812599310 ,112.5673903,26.86137341,67.58703613,175.7474143,175.8473798,17.128117,0.154519439,1620000000000 ,1620000000000 ,1620000000000 ,1616812599290 -1616812599321 ,112.5673904,26.86137187,67.58932495,175.7366499,175.8499796,17.13241,0.15457267,1620000000000 ,1620000000000 ,1620000000000 ,1616812599300 -1616812599330 ,112.5673905,26.86137032,67.59175873,175.7267598,175.8252337,17.133947,0.154599219,1620000000000 ,1620000000000 ,1620000000000 ,1616812599310 -1616812599344 ,112.5673906,26.86136878,67.59439087,175.7156129,175.806268,17.134676,0.154612572,1620000000000 ,1620000000000 ,1620000000000 ,1616812599320 -1616812599349 ,112.5673907,26.86136724,67.59712982,175.707444,175.8082677,17.139482,0.154643777,1620000000000 ,1620000000000 ,1620000000000 ,1616812599330 -1616812599359 ,112.5673908,26.8613657,67.59981537,175.6996849,175.80954,17.150503,0.154739421,1620000000000 ,1620000000000 ,1620000000000 ,1616812599340 -1616812599370 ,112.567391,26.86136415,67.60238647,175.6903139,175.8019893,17.157774,0.154810194,1620000000000 ,1620000000000 ,1620000000000 ,1616812599350 -1616812599380 ,112.5673911,26.86136261,67.60494232,175.6778829,175.7938721,17.161972,0.154858787,1620000000000 ,1620000000000 ,1620000000000 ,1616812599360 -1616812599391 ,112.5673912,26.86136106,67.60757446,175.6670912,175.7829652,17.165512,0.154894557,1620000000000 ,1620000000000 ,1620000000000 ,1616812599370 -1616812599400 ,112.5673913,26.86135952,67.61026764,175.6557258,175.7799423,17.169865,0.154933295,1620000000000 ,1620000000000 ,1620000000000 ,1616812599380 -1616812599410 ,112.5673914,26.86135797,67.61292267,175.6481033,175.7752182,17.176058,0.154989839,1620000000000 ,1620000000000 ,1620000000000 ,1616812599390 -1616812599420 ,112.5673915,26.86135643,67.61547089,175.6391421,175.7627215,17.18056,0.155029786,1620000000000 ,1620000000000 ,1620000000000 ,1616812599400 -1616812599430 ,112.5673916,26.86135488,67.61795807,175.6289515,175.7479965,17.185884,0.155076307,1620000000000 ,1620000000000 ,1620000000000 ,1616812599410 -1616812599440 ,112.5673918,26.86135333,67.62041473,175.6174221,175.7311302,17.193232,0.155137422,1620000000000 ,1620000000000 ,1620000000000 ,1616812599420 -1616812599451 ,112.5673919,26.86135179,67.62282562,175.6058381,175.7276092,17.199348,0.155194282,1620000000000 ,1620000000000 ,1620000000000 ,1616812599430 -1616812599460 ,112.567392,26.86135024,67.62519073,175.5950737,175.7274741,17.203754,0.155238216,1620000000000 ,1620000000000 ,1620000000000 ,1616812599440 -1616812599473 ,112.5673921,26.86134869,67.62702942,175.5831345,175.6832029,17.209503,0.155406268,1620000000000 ,1620000000000 ,1620000000000 ,1616812599450 -1616812599485 ,112.5673922,26.86134714,67.62831116,175.5726434,175.6286724,17.217607,0.155596098,1620000000000 ,1620000000000 ,1620000000000 ,1616812599460 -1616812599493 ,112.5673923,26.86134558,67.62948608,175.5639007,175.6118041,17.22714,0.155677247,1620000000000 ,1620000000000 ,1620000000000 ,1616812599470 -1616812599504 ,112.5673925,26.86134403,67.63050079,175.5520162,175.6086683,17.23239,0.155730791,1620000000000 ,1620000000000 ,1620000000000 ,1616812599480 -1616812599518 ,112.5673926,26.86134248,67.63143158,175.5413611,175.603041,17.236807,0.155768914,1620000000000 ,1620000000000 ,1620000000000 ,1616812599490 -1616812599525 ,112.5673927,26.86134092,67.63237,175.5310065,175.5895172,17.235483,0.155765921,1620000000000 ,1620000000000 ,1620000000000 ,1616812599500 -1616812599532 ,112.5673928,26.86133937,67.6333847,175.5211984,175.577137,17.23941,0.155795189,1620000000000 ,1620000000000 ,1620000000000 ,1616812599510 -1616812599542 ,112.5673929,26.86133782,67.63445282,175.5124011,175.5551167,17.24628,0.155848618,1620000000000 ,1620000000000 ,1620000000000 ,1616812599520 -1616812599554 ,112.5673931,26.86133626,67.63554382,175.5033033,175.5379834,17.255129,0.155925912,1620000000000 ,1620000000000 ,1620000000000 ,1616812599530 -1616812599562 ,112.5673932,26.86133471,67.63665009,175.4942601,175.5310842,17.260191,0.155979969,1620000000000 ,1620000000000 ,1620000000000 ,1616812599540 -1616812599574 ,112.5673933,26.86133315,67.63780212,175.4848071,175.5244592,17.262863,0.156012136,1620000000000 ,1620000000000 ,1620000000000 ,1616812599550 -1616812599585 ,112.5673934,26.8613316,67.63909912,175.4735783,175.5211386,17.26454,0.156036152,1620000000000 ,1620000000000 ,1620000000000 ,1616812599570 -1616812599593 ,112.5673935,26.86133004,67.64053345,175.4613659,175.5119461,17.26796,0.156064875,1620000000000 ,1620000000000 ,1620000000000 ,1616812599580 -1616812599603 ,112.5673937,26.86132849,67.64201355,175.4515305,175.5014046,17.271257,0.156093787,1620000000000 ,1620000000000 ,1620000000000 ,1616812599580 -1616812599612 ,112.5673938,26.86132693,67.64350891,175.4399738,175.4908476,17.274803,0.156132157,1620000000000 ,1620000000000 ,1620000000000 ,1616812599600 -1616812599622 ,112.5673939,26.86132537,67.64503479,175.428663,175.4794668,17.279596,0.156169992,1620000000000 ,1620000000000 ,1620000000000 ,1616812599600 -1616812599632 ,112.5673942,26.86132226,67.64822388,175.4040743,175.461921,17.288073,0.312473205,1620000000000 ,1620000000000 ,1620000000000 ,1616812599620 -1616812599643 ,112.5673943,26.8613207,67.64989471,175.3921078,175.4493032,17.292788,0.156297995,1620000000000 ,1620000000000 ,1620000000000 ,1616812599630 -1616812599653 ,112.5673944,26.86131914,67.65158081,175.3789119,175.4388179,17.294048,0.156319547,1620000000000 ,1620000000000 ,1620000000000 ,1616812599640 -1616812599663 ,112.5673945,26.86131758,67.65325165,175.3653881,175.4177382,17.29704,0.156340492,1620000000000 ,1620000000000 ,1620000000000 ,1616812599650 -1616812599673 ,112.5673947,26.86131602,67.65486145,175.3530938,175.4045331,17.30109,0.15637742,1620000000000 ,1620000000000 ,1620000000000 ,1616812599660 -1616812599684 ,112.5673948,26.86131446,67.65641022,175.3394061,175.3962393,17.306461,0.15641783,1620000000000 ,1620000000000 ,1620000000000 ,1616812599670 -1616812599695 ,112.5673949,26.8613129,67.65795135,175.3255818,175.3808597,17.311909,0.1564676,1620000000000 ,1620000000000 ,1620000000000 ,1616812599680 -1616812599703 ,112.567395,26.86131134,67.65947723,175.3109378,175.361829,17.315441,0.156505703,1620000000000 ,1620000000000 ,1620000000000 ,1616812599690 -1616812599721 ,112.5673952,26.86130978,67.66101074,175.2958841,175.3536675,17.319614,0.156537349,1620000000000 ,1620000000000 ,1620000000000 ,1616812599700 -1616812599725 ,112.5673953,26.86130822,67.66254425,175.2826609,175.3456671,17.322905,0.156567305,1620000000000 ,1620000000000 ,1620000000000 ,1616812599710 -1616812599734 ,112.5673954,26.86130666,67.66403198,175.2674978,175.3310673,17.326193,0.156595254,1620000000000 ,1620000000000 ,1620000000000 ,1616812599720 -1616812599746 ,112.5673955,26.8613051,67.66548157,175.2525807,175.3190612,17.33007,0.156626565,1620000000000 ,1620000000000 ,1620000000000 ,1616812599730 -1616812599756 ,112.5673957,26.86130354,67.66693115,175.2358058,175.3005236,17.334682,0.156667549,1620000000000 ,1620000000000 ,1620000000000 ,1616812599740 -1616812599765 ,112.5673958,26.86130198,67.66844177,175.2190581,175.2799731,17.33874,0.156700249,1620000000000 ,1620000000000 ,1620000000000 ,1616812599750 -1616812599774 ,112.5673959,26.86130042,67.66998291,175.2029935,175.2624979,17.342953,0.156739839,1620000000000 ,1620000000000 ,1620000000000 ,1616812599760 -1616812599784 ,112.5673961,26.86129885,67.67153168,175.1874753,175.2394302,17.344938,0.156760565,1620000000000 ,1620000000000 ,1620000000000 ,1616812599770 -1616812599795 ,112.5673962,26.86129729,67.67306519,175.1712195,175.2209177,17.349178,0.156790907,1620000000000 ,1620000000000 ,1620000000000 ,1616812599780 -1616812599806 ,112.5673963,26.86129573,67.67460632,175.1554554,175.206818,17.349884,0.156804264,1620000000000 ,1620000000000 ,1620000000000 ,1616812599790 -1616812599814 ,112.5673965,26.86129417,67.67617035,175.1400738,175.1910405,17.357359,0.156852747,1620000000000 ,1620000000000 ,1620000000000 ,1616812599800 -1616812599826 ,112.5673966,26.8612926,67.67783356,175.1237907,175.1717678,17.362589,0.156906522,1620000000000 ,1620000000000 ,1620000000000 ,1616812599810 -1616812599834 ,112.5673967,26.86129104,67.67965698,175.1053492,175.1492284,17.364609,0.156939557,1620000000000 ,1620000000000 ,1620000000000 ,1616812599820 -1616812599844 ,112.5673969,26.86128948,67.68166351,175.0869076,175.1383395,17.363491,0.156937163,1620000000000 ,1620000000000 ,1620000000000 ,1616812599830 -1616812599855 ,112.567397,26.86128791,67.68383789,175.0671274,175.1280721,17.362461,0.15692713,1620000000000 ,1620000000000 ,1620000000000 ,1616812599840 -1616812599865 ,112.5673971,26.86128635,67.68613434,175.0507896,175.1086365,17.3656,0.156952516,1620000000000 ,1620000000000 ,1620000000000 ,1616812599850 -1616812599877 ,112.5673973,26.86128478,67.68847656,175.0351895,175.0834068,17.371891,0.157005481,1620000000000 ,1620000000000 ,1620000000000 ,1616812599860 -1616812599886 ,112.5673974,26.86128322,67.69084167,175.0192888,175.0571683,17.37982,0.157072869,1620000000000 ,1620000000000 ,1620000000000 ,1616812599870 -1616812599896 ,112.5673975,26.86128165,67.69330597,175.0048907,175.0307695,17.381252,0.157107552,1620000000000 ,1620000000000 ,1620000000000 ,1616812599880 -1616812599906 ,112.5673977,26.86128009,67.695961,174.9886895,175.0060894,17.379496,0.157107577,1620000000000 ,1620000000000 ,1620000000000 ,1616812599890 -1616812599916 ,112.5673978,26.86127852,67.69882202,174.9733079,174.9967581,17.376783,0.157088535,1620000000000 ,1620000000000 ,1620000000000 ,1616812599900 -1616812599928 ,112.5673979,26.86127696,67.70178223,174.9582542,174.9857746,17.377869,0.157094084,1620000000000 ,1620000000000 ,1620000000000 ,1616812599910 -1616812599936 ,112.5673981,26.86127539,67.70476532,174.9432005,174.9624473,17.38364,0.157138395,1620000000000 ,1620000000000 ,1620000000000 ,1616812599920 -1616812599946 ,112.5673982,26.86127383,67.70771027,174.9265621,174.9400178,17.387136,0.157181492,1620000000000 ,1620000000000 ,1620000000000 ,1616812599930 -1616812599956 ,112.5673984,26.86127226,67.71063995,174.9109073,174.9205124,17.39078,0.157217624,1620000000000 ,1620000000000 ,1620000000000 ,1616812599940 -1616812599972 ,112.5673985,26.8612707,67.71356964,174.895635,174.9028271,17.39356,0.157248624,1620000000000 ,1620000000000 ,1620000000000 ,1616812599950 -1616812599977 ,112.5673986,26.86126913,67.71651459,174.881155,174.8907442,17.394968,0.157270343,1620000000000 ,1620000000000 ,1620000000000 ,1616812599960 -1616812599988 ,112.5673988,26.86126756,67.71943665,174.8670029,174.8744551,17.397861,0.157294958,1620000000000 ,1620000000000 ,1620000000000 ,1616812599970 -1616812599997 ,112.5673989,26.861266,67.72224426,174.8538616,174.8523398,17.399729,0.157315914,1620000000000 ,1620000000000 ,1620000000000 ,1616812599980 -1616812600011 ,112.5673991,26.86126443,67.72492981,174.8407203,174.8294828,17.40413,0.157352465,1620000000000 ,1620000000000 ,1620000000000 ,1616812599990 -1616812600018 ,112.5673992,26.86126286,67.72744751,174.8302291,174.8122089,17.408972,0.157391232,1620000000000 ,1620000000000 ,1620000000000 ,1616812600000 -1616812600026 ,112.5673993,26.86126129,67.72978973,174.8190549,174.8018704,17.412039,0.157425183,1620000000000 ,1620000000000 ,1620000000000 ,1616812600010 -1616812600037 ,112.5673995,26.86125973,67.731987,174.8069245,174.7857604,17.414381,0.157448117,1620000000000 ,1620000000000 ,1620000000000 ,1616812600020 -1616812600046 ,112.5673996,26.86125816,67.73410034,174.7958323,174.7665992,17.416225,0.157463812,1620000000000 ,1620000000000 ,1620000000000 ,1616812600030 -1616812600057 ,112.5673998,26.86125659,67.73613739,174.7851772,174.7504756,17.421726,0.15750677,1620000000000 ,1620000000000 ,1620000000000 ,1616812600040 -1616812600067 ,112.5673999,26.86125502,67.73805237,174.7752871,174.7386048,17.42652,0.157548335,1620000000000 ,1620000000000 ,1620000000000 ,1616812600050 -1616812600076 ,112.5674001,26.86125345,67.73986053,174.7662439,174.7254786,17.426725,0.157565984,1620000000000 ,1620000000000 ,1620000000000 ,1616812600060 -1616812600087 ,112.5674002,26.86125188,67.74156952,174.7592498,174.7003101,17.431734,0.157591642,1620000000000 ,1620000000000 ,1620000000000 ,1616812600070 -1616812600096 ,112.5674004,26.86125031,67.74316406,174.755862,174.6800199,17.431448,0.157598726,1620000000000 ,1620000000000 ,1620000000000 ,1616812600080 -1616812600108 ,112.5674005,26.86124874,67.74458313,174.7527748,174.663111,17.436552,0.157638663,1620000000000 ,1620000000000 ,1620000000000 ,1616812600090 -1616812600119 ,112.5674006,26.86124717,67.74585724,174.7484035,174.655259,17.441412,0.157667591,1620000000000 ,1620000000000 ,1620000000000 ,1616812600100 -1616812600128 ,112.5674008,26.8612456,67.74704742,174.7437043,174.6455983,17.444777,0.157698661,1620000000000 ,1620000000000 ,1620000000000 ,1616812600110 -1616812600140 ,112.5674009,26.86124403,67.74822235,174.7417918,174.6267227,17.445242,0.157715777,1620000000000 ,1620000000000 ,1620000000000 ,1616812600120 -1616812600151 ,112.5674011,26.86124246,67.74941254,174.7423383,174.6070127,17.447273,0.157731364,1620000000000 ,1620000000000 ,1620000000000 ,1616812600130 -1616812600160 ,112.5674012,26.86124089,67.75056458,174.7432125,174.5855992,17.451353,0.157759284,1620000000000 ,1620000000000 ,1620000000000 ,1616812600140 -1616812600169 ,112.5674014,26.86123932,67.7516098,174.7457807,174.5757043,17.45604,0.157793182,1620000000000 ,1620000000000 ,1620000000000 ,1616812600150 -1616812600179 ,112.5674015,26.86123775,67.75253296,174.7488679,174.5754162,17.460741,0.157831834,1620000000000 ,1620000000000 ,1620000000000 ,1616812600160 -1616812600194 ,112.5674017,26.86123618,67.75341797,174.750234,174.5777659,17.463171,0.157860008,1620000000000 ,1620000000000 ,1620000000000 ,1616812600170 -1616812600201 ,112.5674018,26.86123461,67.75436401,174.7536491,174.5649897,17.46403,0.157867956,1620000000000 ,1620000000000 ,1620000000000 ,1616812600180 -1616812600211 ,112.567402,26.86123304,67.75533295,174.7578018,174.5519624,17.465006,0.157879293,1620000000000 ,1620000000000 ,1620000000000 ,1616812600190 -1616812600220 ,112.5674021,26.86123146,67.75613403,174.76608,174.6305969,17.46724,0.157758227,1620000000000 ,1620000000000 ,1620000000000 ,1616812600200 -1616812600230 ,112.5674023,26.8612299,67.7567749,174.7665445,174.7520571,17.469591,0.157617585,1620000000000 ,1620000000000 ,1620000000000 ,1616812600210 -1616812600240 ,112.5674024,26.86122833,67.75745392,174.7691126,174.7597931,17.47149,0.157624114,1620000000000 ,1620000000000 ,1620000000000 ,1616812600220 -1616812600249 ,112.5674026,26.86122676,67.7582016,174.771189,174.7709233,17.471134,0.157631489,1620000000000 ,1620000000000 ,1620000000000 ,1616812600230 -1616812600259 ,112.5674027,26.86122519,67.75906372,174.775451,174.7820992,17.470818,0.157630496,1620000000000 ,1620000000000 ,1620000000000 ,1616812600240 -1616812600271 ,112.5674029,26.86122362,67.7600708,174.7790847,174.7840288,17.471025,0.157631641,1620000000000 ,1620000000000 ,1620000000000 ,1616812600250 -1616812600280 ,112.567403,26.86122205,67.76120758,174.7808878,174.7918311,17.476122,0.157668347,1620000000000 ,1620000000000 ,1620000000000 ,1616812600260 -1616812600292 ,112.5674031,26.86122048,67.76237488,174.7817621,174.8066359,17.481224,0.157717022,1620000000000 ,1620000000000 ,1620000000000 ,1616812600270 -1616812600301 ,112.5674033,26.8612189,67.76358795,174.7788115,174.822978,17.482994,0.157742637,1620000000000 ,1620000000000 ,1620000000000 ,1616812600280 -1616812600311 ,112.5674034,26.86121733,67.76495361,174.7765985,174.8414684,17.482235,0.15774769,1620000000000 ,1620000000000 ,1620000000000 ,1616812600290 -1616812600320 ,112.5674036,26.86121576,67.7665329,174.7727736,174.8480381,17.479506,0.157733332,1620000000000 ,1620000000000 ,1620000000000 ,1616812600300 -1616812600334 ,112.5674037,26.86121419,67.76832581,174.7700688,174.8439725,17.4776,0.157721468,1620000000000 ,1620000000000 ,1620000000000 ,1616812600310 -1616812600340 ,112.5674038,26.86121262,67.77023315,174.7677739,174.846277,17.478464,0.157723809,1620000000000 ,1620000000000 ,1620000000000 ,1616812600320 -1616812600352 ,112.567404,26.86121105,67.77211761,174.7675007,174.8586477,17.482637,0.157756712,1620000000000 ,1620000000000 ,1620000000000 ,1616812600330 -1616812600361 ,112.5674041,26.86120948,67.77388763,174.7640309,174.8633806,17.48733,0.157804825,1620000000000 ,1620000000000 ,1620000000000 ,1616812600340 -1616812600372 ,112.5674043,26.86120791,67.77558136,174.7590859,174.862584,17.491718,0.157820031,1620000000000 ,1620000000000 ,1620000000000 ,1616812600350 -1616812600381 ,112.5674044,26.86120633,67.77722931,174.7546599,174.8676436,17.48954,0.15786519,1620000000000 ,1620000000000 ,1620000000000 ,1616812600360 -1616812600392 ,112.5674046,26.86120476,67.77879333,174.7478024,174.869709,17.49824,0.157872571,1620000000000 ,1620000000000 ,1620000000000 ,1616812600370 -1616812600401 ,112.5674047,26.86120319,67.78048706,174.73865,174.8757657,17.492039,0.157864752,1620000000000 ,1620000000000 ,1620000000000 ,1616812600380 -1616812600411 ,112.5674048,26.86120162,67.78233337,174.7305903,174.8648609,17.491776,0.157860798,1620000000000 ,1620000000000 ,1620000000000 ,1616812600390 -1616812600421 ,112.567405,26.86120004,67.78424072,174.7250715,174.8619939,17.494297,0.157894452,1620000000000 ,1620000000000 ,1620000000000 ,1616812600400 -1616812600432 ,112.5674051,26.86119847,67.78603363,174.723405,174.8635373,17.499107,0.157918228,1620000000000 ,1620000000000 ,1620000000000 ,1616812600410 -1616812600443 ,112.5674053,26.8611969,67.78764343,174.7194981,174.8595335,17.502832,0.157950962,1620000000000 ,1620000000000 ,1620000000000 ,1616812600420 -1616812600452 ,112.5674054,26.86119532,67.78913879,174.7139793,174.8505731,17.505297,0.157978824,1620000000000 ,1620000000000 ,1620000000000 ,1616812600440 -1616812600462 ,112.5674055,26.86119375,67.79058075,174.7047449,174.8319683,17.506115,0.157993755,1620000000000 ,1620000000000 ,1620000000000 ,1616812600450 -1616812600472 ,112.5674057,26.86119218,67.79219055,174.6981879,174.7583615,17.503443,0.158127679,1620000000000 ,1620000000000 ,1620000000000 ,1616812600460 -1616812600483 ,112.5674058,26.8611906,67.79394531,174.6926418,174.6814455,17.504324,0.158274192,1620000000000 ,1620000000000 ,1620000000000 ,1616812600470 -1616812600493 ,112.567406,26.86118902,67.79566956,174.6883798,174.6753384,17.507692,0.158301936,1620000000000 ,1620000000000 ,1620000000000 ,1616812600480 -1616812600502 ,112.5674061,26.86118745,67.79735565,174.6830522,174.657232,17.510967,0.158332928,1620000000000 ,1620000000000 ,1620000000000 ,1616812600480 -1616812600514 ,112.5674064,26.86118429,67.80043793,174.6753751,174.6397785,17.518251,0.31676344,1620000000000 ,1620000000000 ,1620000000000 ,1616812600500 -1616812600524 ,112.5674064,26.86118429,67.80043793,174.6753751,-400,17.518251,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812600510 -1616812600532 ,112.5674067,26.86118114,67.80324554,174.6670149,174.6328657,17.514399,0.316776678,1620000000000 ,1620000000000 ,1620000000000 ,1616812600520 -1616812600543 ,112.5674069,26.86117956,67.80471802,174.6613049,174.6037745,17.512161,0.15835957,1620000000000 ,1620000000000 ,1620000000000 ,1616812600530 -1616812600555 ,112.567407,26.86117799,67.80613708,174.6608951,174.5888037,17.51331,0.158358056,1620000000000 ,1620000000000 ,1620000000000 ,1616812600540 -1616812600564 ,112.5674072,26.86117641,67.80737305,174.6604033,174.5863787,17.515781,0.158372993,1620000000000 ,1620000000000 ,1620000000000 ,1616812600550 -1616812600573 ,112.5674072,26.86117641,67.80737305,174.6604033,-400,17.515781,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812600560 -1616812600583 ,112.5674075,26.86117326,67.80935669,174.6543654,174.5853812,17.523205,0.316828208,1620000000000 ,1620000000000 ,1620000000000 ,1616812600570 -1616812600595 ,112.5674076,26.86117168,67.81034851,174.651005,174.5681353,17.524784,0.158451744,1620000000000 ,1620000000000 ,1620000000000 ,1616812600580 -1616812600606 ,112.5674078,26.8611701,67.81136322,174.6482183,174.5603974,17.523666,0.158446817,1620000000000 ,1620000000000 ,1620000000000 ,1616812600590 -1616812600614 ,112.5674079,26.86116852,67.81236267,174.6470981,174.5568498,17.523048,0.158438152,1620000000000 ,1620000000000 ,1620000000000 ,1616812600600 -1616812600625 ,112.5674081,26.86116695,67.81334686,174.6425902,174.5555166,17.522518,0.158433139,1620000000000 ,1620000000000 ,1620000000000 ,1616812600610 -1616812600638 ,112.5674082,26.86116537,67.8143158,174.6393663,174.5527254,17.522747,0.158429014,1620000000000 ,1620000000000 ,1620000000000 ,1616812600620 -1616812600644 ,112.5674084,26.86116379,67.81519318,174.6365523,174.5479352,17.523758,0.158433838,1620000000000 ,1620000000000 ,1620000000000 ,1616812600630 -1616812600654 ,112.5674085,26.86116222,67.8159256,174.6357873,174.5415763,17.527279,0.158448308,1620000000000 ,1620000000000 ,1620000000000 ,1616812600640 -1616812600664 ,112.5674087,26.86116064,67.81654358,174.6342027,174.5360038,17.53155,0.158488306,1620000000000 ,1620000000000 ,1620000000000 ,1616812600650 -1616812600675 ,112.5674088,26.86115906,67.81708527,174.6303505,174.5303497,17.537466,0.158528329,1620000000000 ,1620000000000 ,1620000000000 ,1616812600660 -1616812600684 ,112.567409,26.86115748,67.81763458,174.6281648,174.5175798,17.540077,0.158552743,1620000000000 ,1620000000000 ,1620000000000 ,1616812600670 -1616812600695 ,112.5674091,26.8611559,67.81825256,174.6253781,174.5064558,17.54032,0.158562656,1620000000000 ,1620000000000 ,1620000000000 ,1616812600680 -1616812600704 ,112.5674093,26.86115432,67.8190155,174.6205696,174.5084222,17.535078,0.158534036,1620000000000 ,1620000000000 ,1620000000000 ,1616812600690 -1616812600714 ,112.5674094,26.86115275,67.81994629,174.6159251,174.5123457,17.528528,0.158476964,1620000000000 ,1620000000000 ,1620000000000 ,1616812600700 -1616812600725 ,112.5674096,26.86115117,67.820961,174.6109527,174.5112746,17.526146,0.158440561,1620000000000 ,1620000000000 ,1620000000000 ,1616812600710 -1616812600737 ,112.5674097,26.86114959,67.82197571,174.6087124,174.5033585,17.529058,0.158452246,1620000000000 ,1620000000000 ,1620000000000 ,1616812600720 -1616812600746 ,112.5674099,26.86114802,67.82294464,174.6079475,174.503358,17.536175,0.158503876,1620000000000 ,1620000000000 ,1620000000000 ,1616812600730 -1616812600757 ,112.56741,26.86114644,67.82393646,174.6039313,174.5027742,17.540304,0.158547396,1620000000000 ,1620000000000 ,1620000000000 ,1616812600740 -1616812600765 ,112.5674102,26.86114486,67.82506561,174.5984672,174.4949421,17.540617,0.158563088,1620000000000 ,1620000000000 ,1620000000000 ,1616812600750 -1616812600775 ,112.5674103,26.86114328,67.82644653,174.5931669,174.4953311,17.536442,0.158538157,1620000000000 ,1620000000000 ,1620000000000 ,1616812600760 -1616812600787 ,112.5674105,26.8611417,67.82809448,174.5884131,174.4965199,17.530033,0.158488134,1620000000000 ,1620000000000 ,1620000000000 ,1616812600770 -1616812600794 ,112.5674106,26.86114013,67.8299942,174.5832768,174.4847847,17.526731,0.158452218,1620000000000 ,1620000000000 ,1620000000000 ,1616812600780 -1616812600805 ,112.5674108,26.86113855,67.83210754,174.5779766,174.4708158,17.525366,0.158445756,1620000000000 ,1620000000000 ,1620000000000 ,1616812600790 -1616812600817 ,112.567411,26.86113697,67.83435059,174.5755177,174.4510439,17.523859,0.158435514,1620000000000 ,1620000000000 ,1620000000000 ,1616812600800 -1616812600829 ,112.5674111,26.8611354,67.83657074,174.5762827,174.4403174,17.524569,0.158438679,1620000000000 ,1620000000000 ,1620000000000 ,1616812600810 -1616812600836 ,112.5674113,26.86113382,67.83876038,174.5775395,174.4476337,17.525028,0.158440864,1620000000000 ,1620000000000 ,1620000000000 ,1616812600820 -1616812600846 ,112.5674114,26.86113224,67.84104156,174.5731408,174.4498056,17.52434,0.158437288,1620000000000 ,1620000000000 ,1620000000000 ,1616812600830 -1616812600858 ,112.5674116,26.86113066,67.84352112,174.5678133,174.4445831,17.522444,0.158432038,1620000000000 ,1620000000000 ,1620000000000 ,1616812600840 -1616812600868 ,112.5674117,26.86112909,67.84615326,174.5636059,174.4468899,17.52015,0.158410796,1620000000000 ,1620000000000 ,1620000000000 ,1616812600850 -1616812600876 ,112.5674119,26.86112751,67.8489151,174.5587155,174.4521205,17.51927,0.158401118,1620000000000 ,1620000000000 ,1620000000000 ,1616812600860 -1616812600887 ,112.567412,26.86112593,67.85180664,174.5541256,174.4512231,17.517574,0.158394921,1620000000000 ,1620000000000 ,1620000000000 ,1616812600870 -1616812600896 ,112.5674122,26.86112436,67.85482788,174.5522951,174.4438193,17.516954,0.158390938,1620000000000 ,1620000000000 ,1620000000000 ,1616812600880 -1616812600908 ,112.5674123,26.86112278,67.85790253,174.5516667,174.430551,17.51644,0.158389601,1620000000000 ,1620000000000 ,1620000000000 ,1616812600890 -1616812600916 ,112.5674125,26.86112121,67.86097717,174.5504919,174.4299633,17.512442,0.158364449,1620000000000 ,1620000000000 ,1620000000000 ,1616812600900 -1616812600927 ,112.5674126,26.86111963,67.86400604,174.5516394,174.439205,17.510418,0.158341575,1620000000000 ,1620000000000 ,1620000000000 ,1616812600910 -1616812600940 ,112.5674128,26.86111805,67.86694336,174.550929,174.4423983,17.508894,0.158323964,1620000000000 ,1620000000000 ,1620000000000 ,1616812600920 -1616812600948 ,112.5674129,26.86111648,67.86968231,174.5500001,174.4348461,17.51443,0.158348099,1620000000000 ,1620000000000 ,1620000000000 ,1616812600930 -1616812600957 ,112.5674131,26.8611149,67.87221527,174.5495084,174.4343953,17.514202,0.158359532,1620000000000 ,1620000000000 ,1620000000000 ,1616812600940 -1616812600967 ,112.5674133,26.86111333,67.87460327,174.5479511,174.4478825,17.517942,0.158384607,1620000000000 ,1620000000000 ,1620000000000 ,1616812600950 -1616812600982 ,112.5674134,26.86111175,67.87705231,174.5434705,174.4433049,17.515142,0.158369012,1620000000000 ,1620000000000 ,1620000000000 ,1616812600960 -1616812601006 ,112.5674136,26.86111017,67.87969971,174.5380336,174.4373931,17.51207,0.158347952,1620000000000 ,1620000000000 ,1620000000000 ,1616812600970 -1616812601008 ,112.5674137,26.8611086,67.88259125,174.5333618,174.4449645,17.504572,0.158299366,1620000000000 ,1620000000000 ,1620000000000 ,1616812600980 -1616812601010 ,112.5674139,26.86110702,67.88563538,174.5290998,174.4474122,17.499996,0.158257295,1620000000000 ,1620000000000 ,1620000000000 ,1616812600990 -1616812601018 ,112.567414,26.86110545,67.8886795,174.5281435,174.4436141,17.501568,0.158260047,1620000000000 ,1620000000000 ,1620000000000 ,1616812601000 -1616812601029 ,112.5674142,26.86110387,67.89157104,174.5268048,174.4397931,17.505943,0.158292973,1620000000000 ,1620000000000 ,1620000000000 ,1616812601010 -1616812601038 ,112.5674143,26.8611023,67.89427948,174.5254115,174.4417729,17.508444,0.158319585,1620000000000 ,1620000000000 ,1620000000000 ,1616812601020 -1616812601049 ,112.5674145,26.86110072,67.89686584,174.5230072,174.4419558,17.506603,0.158316181,1620000000000 ,1620000000000 ,1620000000000 ,1616812601030 -1616812601061 ,112.5674146,26.86109914,67.89942169,174.5204937,174.4374395,17.504211,0.15829611,1620000000000 ,1620000000000 ,1620000000000 ,1616812601040 -1616812601069 ,112.5674148,26.86109757,67.90200043,174.5205757,174.4380512,17.499596,0.158258511,1620000000000 ,1620000000000 ,1620000000000 ,1616812601050 -1616812601080 ,112.5674149,26.86109599,67.9046402,174.519237,174.4346795,17.496357,0.158231026,1620000000000 ,1620000000000 ,1620000000000 ,1616812601060 -1616812601091 ,112.5674151,26.86109442,67.90731049,174.5197014,174.4319988,17.495468,0.158223837,1620000000000 ,1620000000000 ,1620000000000 ,1616812601070 -1616812601100 ,112.5674152,26.86109285,67.90991211,174.5188818,174.4297102,17.494083,0.158212046,1620000000000 ,1620000000000 ,1620000000000 ,1616812601080 -1616812601114 ,112.5674154,26.86109127,67.91234589,174.5201112,174.419393,17.493902,0.158205855,1620000000000 ,1620000000000 ,1620000000000 ,1616812601090 -1616812601119 ,112.5674156,26.8610897,67.91461182,174.5212587,174.4161428,17.494406,0.158207604,1620000000000 ,1620000000000 ,1620000000000 ,1616812601100 -1616812601129 ,112.5674157,26.86108812,67.91678619,174.5236083,174.4158114,17.493738,0.158206568,1620000000000 ,1620000000000 ,1620000000000 ,1616812601110 -1616812601140 ,112.5674159,26.86108655,67.91893005,174.5251382,174.4098798,17.492712,0.158202752,1620000000000 ,1620000000000 ,1620000000000 ,1616812601120 -1616812601151 ,112.567416,26.86108497,67.92100525,174.5284987,174.4119081,17.490108,0.158178063,1620000000000 ,1620000000000 ,1620000000000 ,1616812601130 -1616812601162 ,112.5674162,26.8610834,67.92295074,174.5311761,174.4126429,17.4896,0.158164834,1620000000000 ,1620000000000 ,1620000000000 ,1616812601140 -1616812601171 ,112.5674163,26.86108182,67.92469788,174.5359026,174.4022756,17.491003,0.158170228,1620000000000 ,1620000000000 ,1620000000000 ,1616812601150 -1616812601181 ,112.5674165,26.86108025,67.9262085,174.5393177,174.3945824,17.491776,0.158170585,1620000000000 ,1620000000000 ,1620000000000 ,1616812601160 -1616812601193 ,112.5674166,26.86107868,67.92750549,174.5438256,174.3902399,17.49208,0.158168603,1620000000000 ,1620000000000 ,1620000000000 ,1616812601170 -1616812601200 ,112.5674168,26.8610771,67.92869568,174.5472134,174.3879364,17.491444,0.158162671,1620000000000 ,1620000000000 ,1620000000000 ,1616812601180 -1616812601211 ,112.5674169,26.86107553,67.92987061,174.5519126,174.3840264,17.489845,0.158148601,1620000000000 ,1620000000000 ,1620000000000 ,1616812601190 -1616812601221 ,112.5674171,26.86107396,67.93045807,174.5506012,174.4792485,17.457682,0.157703319,1620000000000 ,1620000000000 ,1620000000000 ,1616812601200 -1616812601233 ,112.5674172,26.8610724,67.9300766,174.5580871,174.633793,17.456697,0.15697303,1620000000000 ,1620000000000 ,1620000000000 ,1616812601210 -1616812601244 ,112.5674174,26.86107083,67.9295578,174.5629775,174.6345687,17.455551,0.156962071,1620000000000 ,1620000000000 ,1620000000000 ,1616812601220 -1616812601253 ,112.5674175,26.86106927,67.92887878,174.5686329,174.6514234,17.45754,0.156959172,1620000000000 ,1620000000000 ,1620000000000 ,1616812601230 -1616812601261 ,112.5674177,26.86106771,67.92810059,174.5748893,174.6654617,17.459234,0.156971986,1620000000000 ,1620000000000 ,1620000000000 ,1616812601240 -1616812601270 ,112.5674178,26.86106614,67.92736053,174.5813097,174.6664152,17.459227,0.156979772,1620000000000 ,1620000000000 ,1620000000000 ,1616812601250 -1616812601280 ,112.567418,26.86106458,67.9267807,174.5873476,174.6628174,17.45498,0.156956912,1620000000000 ,1620000000000 ,1620000000000 ,1616812601260 -1616812601291 ,112.5674181,26.86106302,67.9263382,174.59079,174.6670587,17.449183,0.156908175,1620000000000 ,1620000000000 ,1620000000000 ,1616812601270 -1616812601301 ,112.5674183,26.86106146,67.92594147,174.5957624,174.6727039,17.444752,0.156860463,1620000000000 ,1620000000000 ,1620000000000 ,1616812601280 -1616812601312 ,112.5674184,26.8610599,67.92549896,174.6002703,174.6840841,17.445898,0.156853906,1620000000000 ,1620000000000 ,1620000000000 ,1616812601290 -1616812601325 ,112.5674186,26.86105833,67.92498779,174.6031936,174.6914895,17.449978,0.156884882,1620000000000 ,1620000000000 ,1620000000000 ,1616812601300 -1616812601332 ,112.5674187,26.86105677,67.92446899,174.6087671,174.6926114,17.45215,0.156909899,1620000000000 ,1620000000000 ,1620000000000 ,1616812601310 -1616812601341 ,112.5674188,26.86105521,67.9240036,174.6130564,174.6861153,17.450426,0.156900541,1620000000000 ,1620000000000 ,1620000000000 ,1616812601320 -1616812601352 ,112.567419,26.86105365,67.9236145,174.6192036,174.6900969,17.44583,0.156869775,1620000000000 ,1620000000000 ,1620000000000 ,1616812601340 -1616812601362 ,112.5674191,26.86105209,67.92329407,174.624941,174.7093194,17.440796,0.156824173,1620000000000 ,1620000000000 ,1620000000000 ,1616812601350 -1616812601373 ,112.5674193,26.86105052,67.9230423,174.6278096,174.7313961,17.438017,0.156791762,1620000000000 ,1620000000000 ,1620000000000 ,1616812601360 -1616812601383 ,112.5674194,26.86104896,67.92289734,174.629886,174.7483918,17.435537,0.156773477,1620000000000 ,1620000000000 ,1620000000000 ,1616812601370 -1616812601401 ,112.5674197,26.86104584,67.92298889,174.6332465,174.7562855,17.429783,0.313469024,1620000000000 ,1620000000000 ,1620000000000 ,1616812601380 -1616812601411 ,112.5674197,26.86104584,67.92298889,174.6332465,-400,17.429783,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812601380 -1616812601413 ,112.56742,26.86104272,67.92343903,174.637126,174.7628186,17.427132,0.313418719,1620000000000 ,1620000000000 ,1620000000000 ,1616812601400 -1616812601424 ,112.5674201,26.86104116,67.92381287,174.6370987,174.772537,17.422937,0.156675302,1620000000000 ,1620000000000 ,1620000000000 ,1616812601410 -1616812601433 ,112.5674203,26.8610396,67.92428589,174.6361971,174.7858948,17.419025,0.156641619,1620000000000 ,1620000000000 ,1620000000000 ,1616812601420 -1616812601443 ,112.5674203,26.8610396,67.92428589,174.6361971,-400,17.419025,0,1620000000000 ,1620000000000 ,1620000000000 ,1616812601430 -1616812601453 ,112.5674206,26.86103648,67.92541504,174.6378364,174.7849313,17.41088,0.31318232,1620000000000 ,1620000000000 ,1620000000000 ,1616812601440 -1616812601463 ,112.5674207,26.86103492,67.92655182,174.6386287,174.6911538,17.408834,0.156975054,1620000000000 ,1620000000000 ,1620000000000 ,1616812601450 -1616812601475 ,112.5674209,26.86103335,67.92822266,174.6424263,174.6048544,17.407629,0.157387375,1620000000000 ,1620000000000 ,1620000000000 ,1616812601460 -1616812601485 ,112.567421,26.86103178,67.92986298,174.6424263,174.6159898,17.408298,0.157389967,1620000000000 ,1620000000000 ,1620000000000 ,1616812601470 -1616812601494 ,112.5674212,26.86103022,67.93154144,174.6420711,174.6274089,17.40702,0.15738505,1620000000000 ,1620000000000 ,1620000000000 ,1616812601480 -1616812601503 ,112.5674213,26.86102865,67.93332672,174.640869,174.6336808,17.402306,0.157355042,1620000000000 ,1620000000000 ,1620000000000 ,1616812601490 -1616812601513 ,112.5674214,26.86102708,67.93519592,174.6373173,174.6258912,17.399536,0.157322103,1620000000000 ,1620000000000 ,1620000000000 ,1616812601500 -1616812601523 ,112.5674216,26.86102552,67.93708038,174.6361152,174.6291079,17.392181,0.157274263,1620000000000 ,1620000000000 ,1620000000000 ,1616812601510 -1616812601534 ,112.5674217,26.86102395,67.93891907,174.636443,174.6419844,17.392805,0.157257982,1620000000000 ,1620000000000 ,1620000000000 ,1616812601520 -1616812601548 ,112.5674219,26.86102239,67.94078827,174.6352409,174.6462237,17.390718,0.157245796,1620000000000 ,1620000000000 ,1620000000000 ,1616812601530 -1616812601556 ,112.567422,26.86102082,67.94274902,174.6327274,174.6383547,17.387194,0.157220543,1620000000000 ,1620000000000 ,1620000000000 ,1616812601540 -1616812601566 ,112.5674222,26.86101926,67.94472504,174.6311428,174.6338014,17.384182,0.157197331,1620000000000 ,1620000000000 ,1620000000000 ,1616812601550 -1616812601576 ,112.5674223,26.86101769,67.94664764,174.6277277,174.6441365,17.380827,0.157164112,1620000000000 ,1620000000000 ,1620000000000 ,1616812601560 -1616812601585 ,112.5674225,26.86101613,67.94850922,174.6235203,174.6579965,17.380135,0.15714939,1620000000000 ,1620000000000 ,1620000000000 ,1616812601570 -1616812601596 ,112.5674226,26.86101456,67.95040131,174.6174551,174.653302,17.37966,0.157150088,1620000000000 ,1620000000000 ,1620000000000 ,1616812601580 -1616812601605 ,112.5674228,26.861013,67.95236969,174.6136302,174.6408342,17.375147,0.157122477,1620000000000 ,1620000000000 ,1620000000000 ,1616812601590 -1616812601615 ,112.5674229,26.86101143,67.95443726,174.6078655,174.6404531,17.36854,0.157076087,1620000000000 ,1620000000000 ,1620000000000 ,1616812601600 -1616812601627 ,112.5674231,26.86100987,67.95656586,174.6042592,174.635382,17.364235,0.157032006,1620000000000 ,1620000000000 ,1620000000000 ,1616812601610 -1616812601637 ,112.5674232,26.86100831,67.95867157,174.6035215,174.6313069,17.362259,0.157011518,1620000000000 ,1620000000000 ,1620000000000 ,1616812601620 -1616812601647 ,112.5674234,26.86100674,67.96066284,174.601691,174.6272149,17.361443,0.156999967,1620000000000 ,1620000000000 ,1620000000000 ,1616812601630 -1616812601657 ,112.5674235,26.86100518,67.96250153,174.6006528,174.6246223,17.3611,0.156995063,1620000000000 ,1620000000000 ,1620000000000 ,1616812601640 -1616812601666 ,112.5674237,26.86100362,67.96418762,174.5980573,174.6218009,17.358566,0.156974609,1620000000000 ,1620000000000 ,1620000000000 ,1616812601650 -1616812601677 ,112.5674238,26.86100206,67.96575165,174.5962815,174.618785,17.35502,0.15694326,1620000000000 ,1620000000000 ,1620000000000 ,1616812601660 -1616812601686 ,112.5674239,26.86100049,67.9672699,174.5941505,174.6168475,17.350445,0.156907994,1620000000000 ,1620000000000 ,1620000000000 ,1616812601670 -1616812601697 ,112.5674241,26.86099893,67.96876526,174.5949428,174.6087277,17.345028,0.156856835,1620000000000 ,1620000000000 ,1620000000000 ,1616812601680 -1616812601708 ,112.5674242,26.86099737,67.9701767,174.5960629,174.6062523,17.342089,0.156822583,1620000000000 ,1620000000000 ,1620000000000 ,1616812601690 -1616812601723 ,112.5674244,26.86099581,67.97142792,174.5982759,174.6006086,17.33944,0.156790885,1620000000000 ,1620000000000 ,1620000000000 ,1616812601700 -1616812601728 ,112.5674245,26.86099425,67.97251892,174.600161,174.5845522,17.336763,0.156763624,1620000000000 ,1620000000000 ,1620000000000 ,1616812601710 -1616812601736 ,112.5674247,26.86099269,67.97353363,174.6006255,174.5681186,17.33536,0.156746913,1620000000000 ,1620000000000 ,1620000000000 ,1616812601720 -1616812601748 ,112.5674248,26.86099113,67.97454071,174.6057618,174.5609702,17.334082,0.156734791,1620000000000 ,1620000000000 ,1620000000000 ,1616812601730 -1616812601757 ,112.567425,26.86098957,67.9755249,174.6128106,174.5577509,17.328983,0.156697912,1620000000000 ,1620000000000 ,1620000000000 ,1616812601740 -1616812601767 ,112.5674251,26.86098801,67.97649384,174.6232471,174.5486104,17.321653,0.156637129,1620000000000 ,1620000000000 ,1620000000000 ,1616812601750 -1616812601778 ,112.5674253,26.86098645,67.97744751,174.6339295,174.5325315,17.315054,0.156573313,1620000000000 ,1620000000000 ,1620000000000 ,1616812601760 -1616812601790 ,112.5674254,26.86098489,67.97830963,174.646497,174.5208329,17.311586,0.156531347,1620000000000 ,1620000000000 ,1620000000000 ,1616812601770 -1616812601799 ,112.5674256,26.86098334,67.97901154,174.6613869,174.522321,17.308493,0.156492161,1620000000000 ,1620000000000 ,1620000000000 ,1616812601780 -1616812601808 ,112.5674257,26.86098178,67.97958374,174.674856,174.5350852,17.308151,0.156477805,1620000000000 ,1620000000000 ,1620000000000 ,1616812601790 -1616812601820 ,112.5674259,26.86098022,67.98014069,174.6895819,174.5399469,17.303776,0.156445855,1620000000000 ,1620000000000 ,1620000000000 ,1616812601800 -1616812601830 ,112.567426,26.86097866,67.98073578,174.7033789,174.5334134,17.299862,0.156412388,1620000000000 ,1620000000000 ,1620000000000 ,1616812601810 -1616812601840 ,112.5674262,26.86097711,67.98137665,174.7175583,174.5316788,17.29456,0.156361552,1620000000000 ,1620000000000 ,1620000000000 ,1616812601820 -1616812601850 ,112.5674263,26.86097555,67.98200989,174.7320383,174.5347649,17.29056,0.156317082,1620000000000 ,1620000000000 ,1620000000000 ,1616812601830 -1616812601861 ,112.5674265,26.86097399,67.98265839,174.7471194,174.5483703,17.28596,0.15627959,1620000000000 ,1620000000000 ,1620000000000 ,1616812601840 -1616812601871 ,112.5674266,26.86097244,67.98337555,174.7635118,174.5549257,17.281534,0.15624072,1620000000000 ,1620000000000 ,1620000000000 ,1616812601850 -1616812601880 ,112.5674268,26.86097088,67.98420715,174.7806146,174.5578186,17.276884,0.156199845,1620000000000 ,1620000000000 ,1620000000000 ,1616812601860 -1616812601891 ,112.5674269,26.86096933,67.98511505,174.7988376,174.5618958,17.274826,0.156172605,1620000000000 ,1620000000000 ,1620000000000 ,1616812601870 -1616812601900 ,112.5674271,26.86096777,67.98600006,174.8181534,174.5794312,17.276224,0.156175616,1620000000000 ,1620000000000 ,1620000000000 ,1616812601880 -1616812601910 ,112.5674272,26.86096622,67.98678589,174.8338901,174.6083223,17.278082,0.156187616,1620000000000 ,1620000000000 ,1620000000000 ,1616812601890 -1616812601920 ,112.5674274,26.86096467,67.98758698,174.84572,174.635679,17.275808,0.156173386,1620000000000 ,1620000000000 ,1620000000000 ,1616812601900 -1616812601936 ,112.5674275,26.86096311,67.98851776,174.8582329,174.6577542,17.270731,0.156136433,1620000000000 ,1620000000000 ,1620000000000 ,1616812601910 -1616812601943 ,112.5674276,26.86096156,67.98962402,174.8713742,174.680494,17.261204,0.156064199,1620000000000 ,1620000000000 ,1620000000000 ,1616812601920 -1616812601951 ,112.5674278,26.86096,67.99093628,174.884133,174.7024641,17.251663,0.155983563,1620000000000 ,1620000000000 ,1620000000000 ,1616812601930 -1616812601965 ,112.5674279,26.86095845,67.99243927,174.8939685,174.725604,17.243425,0.155907759,1620000000000 ,1620000000000 ,1620000000000 ,1616812601940 -1616812601971 ,112.5674281,26.8609569,67.99402618,174.9041045,174.7450668,17.23962,0.155861975,1620000000000 ,1620000000000 ,1620000000000 ,1616812601950 -1616812601981 ,112.5674282,26.86095535,67.99559021,174.9125466,174.7679919,17.238562,0.155849254,1620000000000 ,1620000000000 ,1620000000000 ,1616812601960 -1616812601993 ,112.5674284,26.86095379,67.99711609,174.9191309,174.8031033,17.236168,0.155831119,1620000000000 ,1620000000000 ,1620000000000 ,1616812601970 -1616812602006 ,112.5674285,26.86095224,67.99874878,174.9230924,174.8233256,17.231688,0.155800614,1620000000000 ,1620000000000 ,1620000000000 ,1616812601980 -1616812602012 ,112.5674286,26.86095069,68.00055695,174.9287478,174.832678,17.224213,0.155743241,1620000000000 ,1620000000000 ,1620000000000 ,1616812601990 -1616812602021 ,112.5674288,26.86094914,68.00251007,174.9330645,174.8485154,17.219074,0.155696488,1620000000000 ,1620000000000 ,1620000000000 ,1616812602000 -1616812602034 ,112.5674289,26.86094759,68.00452423,174.939157,174.8705843,17.213615,0.155647861,1620000000000 ,1620000000000 ,1620000000000 ,1616812602010 -1616812602042 ,112.5674291,26.86094604,68.0065155,174.9445119,174.8901203,17.209625,0.155607195,1620000000000 ,1620000000000 ,1620000000000 ,1616812602020 -1616812602052 ,112.5674292,26.86094449,68.00846863,174.9492384,174.9010447,17.205336,0.15557472,1620000000000 ,1620000000000 ,1620000000000 ,1616812602030 -1616812602061 ,112.5674293,26.86094294,68.01041412,174.9520524,174.9100267,17.202147,0.155540909,1620000000000 ,1620000000000 ,1620000000000 ,1616812602040 -1616812602071 ,112.5674295,26.86094139,68.01233673,174.9531452,174.9277952,17.198456,0.155509081,1620000000000 ,1620000000000 ,1620000000000 ,1616812602050 -1616812602083 ,112.5674296,26.86093984,68.01417542,174.9551943,174.9460258,17.192625,0.155461848,1620000000000 ,1620000000000 ,1620000000000 ,1616812602060 -1616812602094 ,112.5674297,26.8609383,68.01595306,174.9577078,174.9622929,17.186,0.155401417,1620000000000 ,1620000000000 ,1620000000000 ,1616812602080 -1616812602107 ,112.5674299,26.86093675,68.01770782,174.9566969,174.9589509,17.18159,0.155350379,1620000000000 ,1620000000000 ,1620000000000 ,1616812602080 diff --git a/modules/mogo-module-splash-noop/build/generated/source/buildConfig/debug/com/zhidao/mogo/module/splash/BuildConfig.java b/modules/mogo-module-splash-noop/build/generated/source/buildConfig/debug/com/zhidao/mogo/module/splash/BuildConfig.java new file mode 100644 index 0000000000..1b17d555d6 --- /dev/null +++ b/modules/mogo-module-splash-noop/build/generated/source/buildConfig/debug/com/zhidao/mogo/module/splash/BuildConfig.java @@ -0,0 +1,18 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package com.zhidao.mogo.module.splash; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String LIBRARY_PACKAGE_NAME = "com.zhidao.mogo.module.splash"; + /** + * @deprecated APPLICATION_ID is misleading in libraries. For the library package name use LIBRARY_PACKAGE_NAME + */ + @Deprecated + public static final String APPLICATION_ID = "com.zhidao.mogo.module.splash"; + public static final String BUILD_TYPE = "debug"; + public static final String FLAVOR = ""; + public static final int VERSION_CODE = 1; + public static final String VERSION_NAME = "2.0.16"; +} diff --git a/modules/mogo-module-splash-noop/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$carmachine.java b/modules/mogo-module-splash-noop/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$carmachine.java new file mode 100644 index 0000000000..2d8a935287 --- /dev/null +++ b/modules/mogo-module-splash-noop/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$carmachine.java @@ -0,0 +1,18 @@ +package com.alibaba.android.arouter.routes; + +import com.alibaba.android.arouter.facade.enums.RouteType; +import com.alibaba.android.arouter.facade.model.RouteMeta; +import com.alibaba.android.arouter.facade.template.IRouteGroup; +import com.zhidao.mogo.module.splash.BydProvider; +import java.lang.Override; +import java.lang.String; +import java.util.Map; + +/** + * DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER. */ +public class ARouter$$Group$$carmachine implements IRouteGroup { + @Override + public void loadInto(Map atlas) { + atlas.put("/carmachine/byd", RouteMeta.build(RouteType.PROVIDER, BydProvider.class, "/carmachine/byd", "carmachine", null, -1, -2147483648)); + } +} diff --git a/modules/mogo-module-splash-noop/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogomodulesplashnoop.java b/modules/mogo-module-splash-noop/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogomodulesplashnoop.java new file mode 100644 index 0000000000..79d53886a4 --- /dev/null +++ b/modules/mogo-module-splash-noop/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogomodulesplashnoop.java @@ -0,0 +1,18 @@ +package com.alibaba.android.arouter.routes; + +import com.alibaba.android.arouter.facade.enums.RouteType; +import com.alibaba.android.arouter.facade.model.RouteMeta; +import com.alibaba.android.arouter.facade.template.IProviderGroup; +import com.zhidao.mogo.module.splash.BydProvider; +import java.lang.Override; +import java.lang.String; +import java.util.Map; + +/** + * DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER. */ +public class ARouter$$Providers$$mogomodulesplashnoop implements IProviderGroup { + @Override + public void loadInto(Map providers) { + providers.put("com.mogo.service.module.IMogoModuleProvider", RouteMeta.build(RouteType.PROVIDER, BydProvider.class, "/carmachine/byd", "carmachine", null, -1, -2147483648)); + } +} diff --git a/modules/mogo-module-splash-noop/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Root$$mogomodulesplashnoop.java b/modules/mogo-module-splash-noop/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Root$$mogomodulesplashnoop.java new file mode 100644 index 0000000000..34984514ca --- /dev/null +++ b/modules/mogo-module-splash-noop/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Root$$mogomodulesplashnoop.java @@ -0,0 +1,17 @@ +package com.alibaba.android.arouter.routes; + +import com.alibaba.android.arouter.facade.template.IRouteGroup; +import com.alibaba.android.arouter.facade.template.IRouteRoot; +import java.lang.Class; +import java.lang.Override; +import java.lang.String; +import java.util.Map; + +/** + * DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER. */ +public class ARouter$$Root$$mogomodulesplashnoop implements IRouteRoot { + @Override + public void loadInto(Map> routes) { + routes.put("carmachine", ARouter$$Group$$carmachine.class); + } +} diff --git a/modules/mogo-module-splash-noop/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/modules/mogo-module-splash-noop/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml new file mode 100644 index 0000000000..fca2138b85 --- /dev/null +++ b/modules/mogo-module-splash-noop/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-splash-noop/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json b/modules/mogo-module-splash-noop/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json new file mode 100644 index 0000000000..f2631d9684 --- /dev/null +++ b/modules/mogo-module-splash-noop/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"2.0.16","enabled":true,"outputFile":"mogo-module-splash-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.zhidao.mogo.module.splash","split":""}}] \ No newline at end of file diff --git a/modules/mogo-module-splash-noop/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/modules/mogo-module-splash-noop/build/intermediates/annotation_processor_list/debug/annotationProcessors.json new file mode 100644 index 0000000000..9e26dfeeb6 --- /dev/null +++ b/modules/mogo-module-splash-noop/build/intermediates/annotation_processor_list/debug/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/foudations/mogo-aicloud-services-apk/consumer-rules.pro b/modules/mogo-module-splash-noop/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt similarity index 100% rename from foudations/mogo-aicloud-services-apk/consumer-rules.pro rename to modules/mogo-module-splash-noop/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt diff --git a/modules/mogo-module-splash-noop/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar b/modules/mogo-module-splash-noop/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar new file mode 100644 index 0000000000..1a239ab888 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar differ diff --git a/modules/mogo-module-splash-noop/build/intermediates/consumer_proguard_file/debug/proguard.txt b/modules/mogo-module-splash-noop/build/intermediates/consumer_proguard_file/debug/proguard.txt new file mode 100644 index 0000000000..3ef05240ac --- /dev/null +++ b/modules/mogo-module-splash-noop/build/intermediates/consumer_proguard_file/debug/proguard.txt @@ -0,0 +1 @@ +-keep class com.zhidao.mogo.module.splash.BydConst{*;} \ No newline at end of file diff --git a/modules/mogo-module-splash-noop/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/modules/mogo-module-splash-noop/build/intermediates/incremental/debug-mergeJavaRes/merge-state new file mode 100644 index 0000000000..3a5364f8b4 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ diff --git a/modules/mogo-module-splash-noop/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/modules/mogo-module-splash-noop/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml new file mode 100644 index 0000000000..6d1612ad02 --- /dev/null +++ b/modules/mogo-module-splash-noop/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-splash-noop/build/intermediates/incremental/mergeDebugShaders/merger.xml b/modules/mogo-module-splash-noop/build/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000000..83880d6220 --- /dev/null +++ b/modules/mogo-module-splash-noop/build/intermediates/incremental/mergeDebugShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-splash-noop/build/intermediates/incremental/packageDebugAssets/merger.xml b/modules/mogo-module-splash-noop/build/intermediates/incremental/packageDebugAssets/merger.xml new file mode 100644 index 0000000000..32a051f73b --- /dev/null +++ b/modules/mogo-module-splash-noop/build/intermediates/incremental/packageDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-splash-noop/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/modules/mogo-module-splash-noop/build/intermediates/incremental/packageDebugResources/compile-file-map.properties new file mode 100644 index 0000000000..6a5db4cb52 --- /dev/null +++ b/modules/mogo-module-splash-noop/build/intermediates/incremental/packageDebugResources/compile-file-map.properties @@ -0,0 +1 @@ +#Tue Aug 31 15:00:17 CST 2021 diff --git a/modules/mogo-module-splash-noop/build/intermediates/incremental/packageDebugResources/merger.xml b/modules/mogo-module-splash-noop/build/intermediates/incremental/packageDebugResources/merger.xml new file mode 100644 index 0000000000..cb7ab19ca8 --- /dev/null +++ b/modules/mogo-module-splash-noop/build/intermediates/incremental/packageDebugResources/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-splash-noop/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$carmachine.class b/modules/mogo-module-splash-noop/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$carmachine.class new file mode 100644 index 0000000000..6d0582ac18 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$carmachine.class differ diff --git a/modules/mogo-module-splash-noop/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogomodulesplashnoop.class b/modules/mogo-module-splash-noop/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogomodulesplashnoop.class new file mode 100644 index 0000000000..b4ae085628 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogomodulesplashnoop.class differ diff --git a/modules/mogo-module-splash-noop/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Root$$mogomodulesplashnoop.class b/modules/mogo-module-splash-noop/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Root$$mogomodulesplashnoop.class new file mode 100644 index 0000000000..23c22b4408 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Root$$mogomodulesplashnoop.class differ diff --git a/modules/mogo-module-splash-noop/build/intermediates/javac/debug/classes/com/zhidao/mogo/module/splash/BuildConfig.class b/modules/mogo-module-splash-noop/build/intermediates/javac/debug/classes/com/zhidao/mogo/module/splash/BuildConfig.class new file mode 100644 index 0000000000..13eefe7aef Binary files /dev/null and b/modules/mogo-module-splash-noop/build/intermediates/javac/debug/classes/com/zhidao/mogo/module/splash/BuildConfig.class differ diff --git a/modules/mogo-module-splash-noop/build/intermediates/library_manifest/debug/AndroidManifest.xml b/modules/mogo-module-splash-noop/build/intermediates/library_manifest/debug/AndroidManifest.xml new file mode 100644 index 0000000000..fca2138b85 --- /dev/null +++ b/modules/mogo-module-splash-noop/build/intermediates/library_manifest/debug/AndroidManifest.xml @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-splash-noop/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt b/modules/mogo-module-splash-noop/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt new file mode 100644 index 0000000000..78ac5b8bef --- /dev/null +++ b/modules/mogo-module-splash-noop/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt @@ -0,0 +1,2 @@ +R_DEF: Internal format may change without notice +local diff --git a/modules/mogo-module-splash-noop/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/modules/mogo-module-splash-noop/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt new file mode 100644 index 0000000000..58f10201d6 --- /dev/null +++ b/modules/mogo-module-splash-noop/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt @@ -0,0 +1,13 @@ +1 +2 +6 +7 /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml +9 android:targetSdkVersion="19" /> +9-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml +10 +11 diff --git a/modules/mogo-module-splash-noop/build/intermediates/merged_java_res/debug/out.jar b/modules/mogo-module-splash-noop/build/intermediates/merged_java_res/debug/out.jar new file mode 100644 index 0000000000..e1eaea19ba Binary files /dev/null and b/modules/mogo-module-splash-noop/build/intermediates/merged_java_res/debug/out.jar differ diff --git a/modules/mogo-module-splash-noop/build/intermediates/merged_manifests/debug/output.json b/modules/mogo-module-splash-noop/build/intermediates/merged_manifests/debug/output.json new file mode 100644 index 0000000000..e4c6d64ed0 --- /dev/null +++ b/modules/mogo-module-splash-noop/build/intermediates/merged_manifests/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"2.0.16","enabled":true,"outputFile":"mogo-module-splash-debug.aar","fullName":"debug","baseName":"debug"},"path":"../../library_manifest/debug/AndroidManifest.xml","properties":{"packageId":"com.zhidao.mogo.module.splash","split":""}}] \ No newline at end of file diff --git a/modules/mogo-module-splash-noop/build/intermediates/packaged-classes/debug/classes.jar b/modules/mogo-module-splash-noop/build/intermediates/packaged-classes/debug/classes.jar new file mode 100644 index 0000000000..b6ed4599e2 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/intermediates/packaged-classes/debug/classes.jar differ diff --git a/modules/mogo-module-splash-noop/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt b/modules/mogo-module-splash-noop/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt new file mode 100644 index 0000000000..1875215eee --- /dev/null +++ b/modules/mogo-module-splash-noop/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt @@ -0,0 +1,1341 @@ +com.zhidao.mogo.module.splash +anim abc_fade_in +anim abc_fade_out +anim abc_grow_fade_in_from_bottom +anim abc_popup_enter +anim abc_popup_exit +anim abc_shrink_fade_out_from_bottom +anim abc_slide_in_bottom +anim abc_slide_in_top +anim abc_slide_out_bottom +anim abc_slide_out_top +anim abc_tooltip_enter +anim abc_tooltip_exit +anim btn_checkbox_to_checked_box_inner_merged_animation +anim btn_checkbox_to_checked_box_outer_merged_animation +anim btn_checkbox_to_checked_icon_null_animation +anim btn_checkbox_to_unchecked_box_inner_merged_animation +anim btn_checkbox_to_unchecked_check_path_merged_animation +anim btn_checkbox_to_unchecked_icon_null_animation +anim btn_radio_to_off_mtrl_dot_group_animation +anim btn_radio_to_off_mtrl_ring_outer_animation +anim btn_radio_to_off_mtrl_ring_outer_path_animation +anim btn_radio_to_on_mtrl_dot_group_animation +anim btn_radio_to_on_mtrl_ring_outer_animation +anim btn_radio_to_on_mtrl_ring_outer_path_animation +attr actionBarDivider +attr actionBarItemBackground +attr actionBarPopupTheme +attr actionBarSize +attr actionBarSplitStyle +attr actionBarStyle +attr actionBarTabBarStyle +attr actionBarTabStyle +attr actionBarTabTextStyle +attr actionBarTheme +attr actionBarWidgetTheme +attr actionButtonStyle +attr actionDropDownStyle +attr actionLayout +attr actionMenuTextAppearance +attr actionMenuTextColor +attr actionModeBackground +attr actionModeCloseButtonStyle +attr actionModeCloseDrawable +attr actionModeCopyDrawable +attr actionModeCutDrawable +attr actionModeFindDrawable +attr actionModePasteDrawable +attr actionModePopupWindowStyle +attr actionModeSelectAllDrawable +attr actionModeShareDrawable +attr actionModeSplitBackground +attr actionModeStyle +attr actionModeWebSearchDrawable +attr actionOverflowButtonStyle +attr actionOverflowMenuStyle +attr actionProviderClass +attr actionViewClass +attr activityChooserViewStyle +attr alertDialogButtonGroupStyle +attr alertDialogCenterButtons +attr alertDialogStyle +attr alertDialogTheme +attr allowStacking +attr alpha +attr alphabeticModifiers +attr arrowHeadLength +attr arrowShaftLength +attr autoCompleteTextViewStyle +attr autoSizeMaxTextSize +attr autoSizeMinTextSize +attr autoSizePresetSizes +attr autoSizeStepGranularity +attr autoSizeTextType +attr background +attr backgroundSplit +attr backgroundStacked +attr backgroundTint +attr backgroundTintMode +attr barLength +attr barrierAllowsGoneWidgets +attr barrierDirection +attr borderlessButtonStyle +attr buttonBarButtonStyle +attr buttonBarNegativeButtonStyle +attr buttonBarNeutralButtonStyle +attr buttonBarPositiveButtonStyle +attr buttonBarStyle +attr buttonCompat +attr buttonGravity +attr buttonIconDimen +attr buttonPanelSideLayout +attr buttonStyle +attr buttonStyleSmall +attr buttonTint +attr buttonTintMode +attr chainUseRtl +attr checkboxStyle +attr checkedTextViewStyle +attr closeIcon +attr closeItemLayout +attr collapseContentDescription +attr collapseIcon +attr color +attr colorAccent +attr colorBackgroundFloating +attr colorButtonNormal +attr colorControlActivated +attr colorControlHighlight +attr colorControlNormal +attr colorError +attr colorPrimary +attr colorPrimaryDark +attr colorSwitchThumbNormal +attr commitIcon +attr constraintSet +attr constraint_referenced_ids +attr content +attr contentDescription +attr contentInsetEnd +attr contentInsetEndWithActions +attr contentInsetLeft +attr contentInsetRight +attr contentInsetStart +attr contentInsetStartWithNavigation +attr controlBackground +attr coordinatorLayoutStyle +attr customNavigationLayout +attr defaultQueryHint +attr dialogCornerRadius +attr dialogPreferredPadding +attr dialogTheme +attr displayOptions +attr divider +attr dividerHorizontal +attr dividerPadding +attr dividerVertical +attr drawableBottomCompat +attr drawableEndCompat +attr drawableLeftCompat +attr drawableRightCompat +attr drawableSize +attr drawableStartCompat +attr drawableTint +attr drawableTintMode +attr drawableTopCompat +attr drawerArrowStyle +attr dropDownListViewStyle +attr dropdownListPreferredItemHeight +attr editTextBackground +attr editTextColor +attr editTextStyle +attr elevation +attr emptyVisibility +attr expandActivityOverflowButtonDrawable +attr firstBaselineToTopHeight +attr font +attr fontFamily +attr fontProviderAuthority +attr fontProviderCerts +attr fontProviderFetchStrategy +attr fontProviderFetchTimeout +attr fontProviderPackage +attr fontProviderQuery +attr fontStyle +attr fontVariationSettings +attr fontWeight +attr gapBetweenBars +attr goIcon +attr height +attr hideOnContentScroll +attr homeAsUpIndicator +attr homeLayout +attr icon +attr iconTint +attr iconTintMode +attr iconifiedByDefault +attr imageButtonStyle +attr indeterminateProgressStyle +attr initialActivityCount +attr isLightTheme +attr itemPadding +attr keylines +attr lastBaselineToBottomHeight +attr layout +attr layout_anchor +attr layout_anchorGravity +attr layout_behavior +attr layout_constrainedHeight +attr layout_constrainedWidth +attr layout_constraintBaseline_creator +attr layout_constraintBaseline_toBaselineOf +attr layout_constraintBottom_creator +attr layout_constraintBottom_toBottomOf +attr layout_constraintBottom_toTopOf +attr layout_constraintCircle +attr layout_constraintCircleAngle +attr layout_constraintCircleRadius +attr layout_constraintDimensionRatio +attr layout_constraintEnd_toEndOf +attr layout_constraintEnd_toStartOf +attr layout_constraintGuide_begin +attr layout_constraintGuide_end +attr layout_constraintGuide_percent +attr layout_constraintHeight_default +attr layout_constraintHeight_max +attr layout_constraintHeight_min +attr layout_constraintHeight_percent +attr layout_constraintHorizontal_bias +attr layout_constraintHorizontal_chainStyle +attr layout_constraintHorizontal_weight +attr layout_constraintLeft_creator +attr layout_constraintLeft_toLeftOf +attr layout_constraintLeft_toRightOf +attr layout_constraintRight_creator +attr layout_constraintRight_toLeftOf +attr layout_constraintRight_toRightOf +attr layout_constraintStart_toEndOf +attr layout_constraintStart_toStartOf +attr layout_constraintTop_creator +attr layout_constraintTop_toBottomOf +attr layout_constraintTop_toTopOf +attr layout_constraintVertical_bias +attr layout_constraintVertical_chainStyle +attr layout_constraintVertical_weight +attr layout_constraintWidth_default +attr layout_constraintWidth_max +attr layout_constraintWidth_min +attr layout_constraintWidth_percent +attr layout_dodgeInsetEdges +attr layout_editor_absoluteX +attr layout_editor_absoluteY +attr layout_goneMarginBottom +attr layout_goneMarginEnd +attr layout_goneMarginLeft +attr layout_goneMarginRight +attr layout_goneMarginStart +attr layout_goneMarginTop +attr layout_insetEdge +attr layout_keyline +attr layout_optimizationLevel +attr lineHeight +attr listChoiceBackgroundIndicator +attr listChoiceIndicatorMultipleAnimated +attr listChoiceIndicatorSingleAnimated +attr listDividerAlertDialog +attr listItemLayout +attr listLayout +attr listMenuViewStyle +attr listPopupWindowStyle +attr listPreferredItemHeight +attr listPreferredItemHeightLarge +attr listPreferredItemHeightSmall +attr listPreferredItemPaddingEnd +attr listPreferredItemPaddingLeft +attr listPreferredItemPaddingRight +attr listPreferredItemPaddingStart +attr logo +attr logoDescription +attr maxButtonHeight +attr measureWithLargestChild +attr menu +attr multiChoiceItemLayout +attr navigationContentDescription +attr navigationIcon +attr navigationMode +attr numericModifiers +attr overlapAnchor +attr paddingBottomNoButtons +attr paddingEnd +attr paddingStart +attr paddingTopNoTitle +attr panelBackground +attr panelMenuListTheme +attr panelMenuListWidth +attr popupMenuStyle +attr popupTheme +attr popupWindowStyle +attr preserveIconSpacing +attr progressBarPadding +attr progressBarStyle +attr queryBackground +attr queryHint +attr radioButtonStyle +attr ratingBarStyle +attr ratingBarStyleIndicator +attr ratingBarStyleSmall +attr searchHintIcon +attr searchIcon +attr searchViewStyle +attr seekBarStyle +attr selectableItemBackground +attr selectableItemBackgroundBorderless +attr showAsAction +attr showDividers +attr showText +attr showTitle +attr singleChoiceItemLayout +attr spinBars +attr spinnerDropDownItemStyle +attr spinnerStyle +attr splitTrack +attr srcCompat +attr state_above_anchor +attr statusBarBackground +attr subMenuArrow +attr submitBackground +attr subtitle +attr subtitleTextAppearance +attr subtitleTextColor +attr subtitleTextStyle +attr suggestionRowLayout +attr switchMinWidth +attr switchPadding +attr switchStyle +attr switchTextAppearance +attr textAllCaps +attr textAppearanceLargePopupMenu +attr textAppearanceListItem +attr textAppearanceListItemSecondary +attr textAppearanceListItemSmall +attr textAppearancePopupMenuHeader +attr textAppearanceSearchResultSubtitle +attr textAppearanceSearchResultTitle +attr textAppearanceSmallPopupMenu +attr textColorAlertDialogListItem +attr textColorSearchUrl +attr textLocale +attr theme +attr thickness +attr thumbTextPadding +attr thumbTint +attr thumbTintMode +attr tickMark +attr tickMarkTint +attr tickMarkTintMode +attr tint +attr tintMode +attr title +attr titleMargin +attr titleMarginBottom +attr titleMarginEnd +attr titleMarginStart +attr titleMarginTop +attr titleMargins +attr titleTextAppearance +attr titleTextColor +attr titleTextStyle +attr toolbarNavigationButtonStyle +attr toolbarStyle +attr tooltipForegroundColor +attr tooltipFrameBackground +attr tooltipText +attr track +attr trackTint +attr trackTintMode +attr ttcIndex +attr viewInflaterClass +attr voiceIcon +attr windowActionBar +attr windowActionBarOverlay +attr windowActionModeOverlay +attr windowFixedHeightMajor +attr windowFixedHeightMinor +attr windowFixedWidthMajor +attr windowFixedWidthMinor +attr windowMinWidthMajor +attr windowMinWidthMinor +attr windowNoTitle +bool abc_action_bar_embed_tabs +bool abc_allow_stacked_button_bar +bool abc_config_actionMenuItemAllCaps +color abc_background_cache_hint_selector_material_dark +color abc_background_cache_hint_selector_material_light +color abc_btn_colored_borderless_text_material +color abc_btn_colored_text_material +color abc_color_highlight_material +color abc_hint_foreground_material_dark +color abc_hint_foreground_material_light +color abc_input_method_navigation_guard +color abc_primary_text_disable_only_material_dark +color abc_primary_text_disable_only_material_light +color abc_primary_text_material_dark +color abc_primary_text_material_light +color abc_search_url_text +color abc_search_url_text_normal +color abc_search_url_text_pressed +color abc_search_url_text_selected +color abc_secondary_text_material_dark +color abc_secondary_text_material_light +color abc_tint_btn_checkable +color abc_tint_default +color abc_tint_edittext +color abc_tint_seek_thumb +color abc_tint_spinner +color abc_tint_switch_track +color accent_material_dark +color accent_material_light +color androidx_core_ripple_material_light +color androidx_core_secondary_text_default_material_light +color background_floating_material_dark +color background_floating_material_light +color background_material_dark +color background_material_light +color bright_foreground_disabled_material_dark +color bright_foreground_disabled_material_light +color bright_foreground_inverse_material_dark +color bright_foreground_inverse_material_light +color bright_foreground_material_dark +color bright_foreground_material_light +color button_material_dark +color button_material_light +color dim_foreground_disabled_material_dark +color dim_foreground_disabled_material_light +color dim_foreground_material_dark +color dim_foreground_material_light +color error_color_material_dark +color error_color_material_light +color foreground_material_dark +color foreground_material_light +color highlighted_text_material_dark +color highlighted_text_material_light +color material_blue_grey_800 +color material_blue_grey_900 +color material_blue_grey_950 +color material_deep_teal_200 +color material_deep_teal_500 +color material_grey_100 +color material_grey_300 +color material_grey_50 +color material_grey_600 +color material_grey_800 +color material_grey_850 +color material_grey_900 +color notification_action_color_filter +color notification_icon_bg_color +color notification_material_background_media_default_color +color primary_dark_material_dark +color primary_dark_material_light +color primary_material_dark +color primary_material_light +color primary_text_default_material_dark +color primary_text_default_material_light +color primary_text_disabled_material_dark +color primary_text_disabled_material_light +color ripple_material_dark +color ripple_material_light +color secondary_text_default_material_dark +color secondary_text_default_material_light +color secondary_text_disabled_material_dark +color secondary_text_disabled_material_light +color switch_thumb_disabled_material_dark +color switch_thumb_disabled_material_light +color switch_thumb_material_dark +color switch_thumb_material_light +color switch_thumb_normal_material_dark +color switch_thumb_normal_material_light +color tooltip_background_dark +color tooltip_background_light +dimen abc_action_bar_content_inset_material +dimen abc_action_bar_content_inset_with_nav +dimen abc_action_bar_default_height_material +dimen abc_action_bar_default_padding_end_material +dimen abc_action_bar_default_padding_start_material +dimen abc_action_bar_elevation_material +dimen abc_action_bar_icon_vertical_padding_material +dimen abc_action_bar_overflow_padding_end_material +dimen abc_action_bar_overflow_padding_start_material +dimen abc_action_bar_stacked_max_height +dimen abc_action_bar_stacked_tab_max_width +dimen abc_action_bar_subtitle_bottom_margin_material +dimen abc_action_bar_subtitle_top_margin_material +dimen abc_action_button_min_height_material +dimen abc_action_button_min_width_material +dimen abc_action_button_min_width_overflow_material +dimen abc_alert_dialog_button_bar_height +dimen abc_alert_dialog_button_dimen +dimen abc_button_inset_horizontal_material +dimen abc_button_inset_vertical_material +dimen abc_button_padding_horizontal_material +dimen abc_button_padding_vertical_material +dimen abc_cascading_menus_min_smallest_width +dimen abc_config_prefDialogWidth +dimen abc_control_corner_material +dimen abc_control_inset_material +dimen abc_control_padding_material +dimen abc_dialog_corner_radius_material +dimen abc_dialog_fixed_height_major +dimen abc_dialog_fixed_height_minor +dimen abc_dialog_fixed_width_major +dimen abc_dialog_fixed_width_minor +dimen abc_dialog_list_padding_bottom_no_buttons +dimen abc_dialog_list_padding_top_no_title +dimen abc_dialog_min_width_major +dimen abc_dialog_min_width_minor +dimen abc_dialog_padding_material +dimen abc_dialog_padding_top_material +dimen abc_dialog_title_divider_material +dimen abc_disabled_alpha_material_dark +dimen abc_disabled_alpha_material_light +dimen abc_dropdownitem_icon_width +dimen abc_dropdownitem_text_padding_left +dimen abc_dropdownitem_text_padding_right +dimen abc_edit_text_inset_bottom_material +dimen abc_edit_text_inset_horizontal_material +dimen abc_edit_text_inset_top_material +dimen abc_floating_window_z +dimen abc_list_item_height_large_material +dimen abc_list_item_height_material +dimen abc_list_item_height_small_material +dimen abc_list_item_padding_horizontal_material +dimen abc_panel_menu_list_width +dimen abc_progress_bar_height_material +dimen abc_search_view_preferred_height +dimen abc_search_view_preferred_width +dimen abc_seekbar_track_background_height_material +dimen abc_seekbar_track_progress_height_material +dimen abc_select_dialog_padding_start_material +dimen abc_switch_padding +dimen abc_text_size_body_1_material +dimen abc_text_size_body_2_material +dimen abc_text_size_button_material +dimen abc_text_size_caption_material +dimen abc_text_size_display_1_material +dimen abc_text_size_display_2_material +dimen abc_text_size_display_3_material +dimen abc_text_size_display_4_material +dimen abc_text_size_headline_material +dimen abc_text_size_large_material +dimen abc_text_size_medium_material +dimen abc_text_size_menu_header_material +dimen abc_text_size_menu_material +dimen abc_text_size_small_material +dimen abc_text_size_subhead_material +dimen abc_text_size_subtitle_material_toolbar +dimen abc_text_size_title_material +dimen abc_text_size_title_material_toolbar +dimen compat_button_inset_horizontal_material +dimen compat_button_inset_vertical_material +dimen compat_button_padding_horizontal_material +dimen compat_button_padding_vertical_material +dimen compat_control_corner_material +dimen compat_notification_large_icon_max_height +dimen compat_notification_large_icon_max_width +dimen disabled_alpha_material_dark +dimen disabled_alpha_material_light +dimen highlight_alpha_material_colored +dimen highlight_alpha_material_dark +dimen highlight_alpha_material_light +dimen hint_alpha_material_dark +dimen hint_alpha_material_light +dimen hint_pressed_alpha_material_dark +dimen hint_pressed_alpha_material_light +dimen notification_action_icon_size +dimen notification_action_text_size +dimen notification_big_circle_margin +dimen notification_content_margin_start +dimen notification_large_icon_height +dimen notification_large_icon_width +dimen notification_main_column_padding_top +dimen notification_media_narrow_margin +dimen notification_right_icon_size +dimen notification_right_side_padding_top +dimen notification_small_icon_background_padding +dimen notification_small_icon_size_as_large +dimen notification_subtext_size +dimen notification_top_pad +dimen notification_top_pad_large_text +dimen subtitle_corner_radius +dimen subtitle_outline_width +dimen subtitle_shadow_offset +dimen subtitle_shadow_radius +dimen tooltip_corner_radius +dimen tooltip_horizontal_padding +dimen tooltip_margin +dimen tooltip_precise_anchor_extra_offset +dimen tooltip_precise_anchor_threshold +dimen tooltip_vertical_padding +dimen tooltip_y_offset_non_touch +dimen tooltip_y_offset_touch +drawable abc_ab_share_pack_mtrl_alpha +drawable abc_action_bar_item_background_material +drawable abc_btn_borderless_material +drawable abc_btn_check_material +drawable abc_btn_check_material_anim +drawable abc_btn_check_to_on_mtrl_000 +drawable abc_btn_check_to_on_mtrl_015 +drawable abc_btn_colored_material +drawable abc_btn_default_mtrl_shape +drawable abc_btn_radio_material +drawable abc_btn_radio_material_anim +drawable abc_btn_radio_to_on_mtrl_000 +drawable abc_btn_radio_to_on_mtrl_015 +drawable abc_btn_switch_to_on_mtrl_00001 +drawable abc_btn_switch_to_on_mtrl_00012 +drawable abc_cab_background_internal_bg +drawable abc_cab_background_top_material +drawable abc_cab_background_top_mtrl_alpha +drawable abc_control_background_material +drawable abc_dialog_material_background +drawable abc_edit_text_material +drawable abc_ic_ab_back_material +drawable abc_ic_arrow_drop_right_black_24dp +drawable abc_ic_clear_material +drawable abc_ic_commit_search_api_mtrl_alpha +drawable abc_ic_go_search_api_material +drawable abc_ic_menu_copy_mtrl_am_alpha +drawable abc_ic_menu_cut_mtrl_alpha +drawable abc_ic_menu_overflow_material +drawable abc_ic_menu_paste_mtrl_am_alpha +drawable abc_ic_menu_selectall_mtrl_alpha +drawable abc_ic_menu_share_mtrl_alpha +drawable abc_ic_search_api_material +drawable abc_ic_star_black_16dp +drawable abc_ic_star_black_36dp +drawable abc_ic_star_black_48dp +drawable abc_ic_star_half_black_16dp +drawable abc_ic_star_half_black_36dp +drawable abc_ic_star_half_black_48dp +drawable abc_ic_voice_search_api_material +drawable abc_item_background_holo_dark +drawable abc_item_background_holo_light +drawable abc_list_divider_material +drawable abc_list_divider_mtrl_alpha +drawable abc_list_focused_holo +drawable abc_list_longpressed_holo +drawable abc_list_pressed_holo_dark +drawable abc_list_pressed_holo_light +drawable abc_list_selector_background_transition_holo_dark +drawable abc_list_selector_background_transition_holo_light +drawable abc_list_selector_disabled_holo_dark +drawable abc_list_selector_disabled_holo_light +drawable abc_list_selector_holo_dark +drawable abc_list_selector_holo_light +drawable abc_menu_hardkey_panel_mtrl_mult +drawable abc_popup_background_mtrl_mult +drawable abc_ratingbar_indicator_material +drawable abc_ratingbar_material +drawable abc_ratingbar_small_material +drawable abc_scrubber_control_off_mtrl_alpha +drawable abc_scrubber_control_to_pressed_mtrl_000 +drawable abc_scrubber_control_to_pressed_mtrl_005 +drawable abc_scrubber_primary_mtrl_alpha +drawable abc_scrubber_track_mtrl_alpha +drawable abc_seekbar_thumb_material +drawable abc_seekbar_tick_mark_material +drawable abc_seekbar_track_material +drawable abc_spinner_mtrl_am_alpha +drawable abc_spinner_textfield_background_material +drawable abc_switch_thumb_material +drawable abc_switch_track_mtrl_alpha +drawable abc_tab_indicator_material +drawable abc_tab_indicator_mtrl_alpha +drawable abc_text_cursor_material +drawable abc_text_select_handle_left_mtrl_dark +drawable abc_text_select_handle_left_mtrl_light +drawable abc_text_select_handle_middle_mtrl_dark +drawable abc_text_select_handle_middle_mtrl_light +drawable abc_text_select_handle_right_mtrl_dark +drawable abc_text_select_handle_right_mtrl_light +drawable abc_textfield_activated_mtrl_alpha +drawable abc_textfield_default_mtrl_alpha +drawable abc_textfield_search_activated_mtrl_alpha +drawable abc_textfield_search_default_mtrl_alpha +drawable abc_textfield_search_material +drawable abc_vector_test +drawable btn_checkbox_checked_mtrl +drawable btn_checkbox_checked_to_unchecked_mtrl_animation +drawable btn_checkbox_unchecked_mtrl +drawable btn_checkbox_unchecked_to_checked_mtrl_animation +drawable btn_radio_off_mtrl +drawable btn_radio_off_to_on_mtrl_animation +drawable btn_radio_on_mtrl +drawable btn_radio_on_to_off_mtrl_animation +drawable notification_action_background +drawable notification_bg +drawable notification_bg_low +drawable notification_bg_low_normal +drawable notification_bg_low_pressed +drawable notification_bg_normal +drawable notification_bg_normal_pressed +drawable notification_icon_background +drawable notification_template_icon_bg +drawable notification_template_icon_low_bg +drawable notification_tile_bg +drawable notify_panel_notification_icon_bg +drawable tooltip_frame_dark +drawable tooltip_frame_light +id accessibility_action_clickable_span +id accessibility_custom_action_0 +id accessibility_custom_action_1 +id accessibility_custom_action_10 +id accessibility_custom_action_11 +id accessibility_custom_action_12 +id accessibility_custom_action_13 +id accessibility_custom_action_14 +id accessibility_custom_action_15 +id accessibility_custom_action_16 +id accessibility_custom_action_17 +id accessibility_custom_action_18 +id accessibility_custom_action_19 +id accessibility_custom_action_2 +id accessibility_custom_action_20 +id accessibility_custom_action_21 +id accessibility_custom_action_22 +id accessibility_custom_action_23 +id accessibility_custom_action_24 +id accessibility_custom_action_25 +id accessibility_custom_action_26 +id accessibility_custom_action_27 +id accessibility_custom_action_28 +id accessibility_custom_action_29 +id accessibility_custom_action_3 +id accessibility_custom_action_30 +id accessibility_custom_action_31 +id accessibility_custom_action_4 +id accessibility_custom_action_5 +id accessibility_custom_action_6 +id accessibility_custom_action_7 +id accessibility_custom_action_8 +id accessibility_custom_action_9 +id action0 +id action_bar +id action_bar_activity_content +id action_bar_container +id action_bar_root +id action_bar_spinner +id action_bar_subtitle +id action_bar_title +id action_container +id action_context_bar +id action_divider +id action_image +id action_menu_divider +id action_menu_presenter +id action_mode_bar +id action_mode_bar_stub +id action_mode_close_button +id action_text +id actions +id activity_chooser_view_content +id add +id alertTitle +id async +id blocking +id bottom +id buttonPanel +id cancel_action +id checkbox +id checked +id chronometer +id content +id contentPanel +id custom +id customPanel +id decor_content_parent +id default_activity_button +id dialog_button +id edit_query +id end +id end_padder +id expand_activities_button +id expanded_menu +id forever +id gone +id group_divider +id home +id icon +id icon_group +id image +id info +id invisible +id italic +id left +id line1 +id line3 +id listMode +id list_item +id media_actions +id message +id multiply +id none +id normal +id notification_background +id notification_main_column +id notification_main_column_container +id off +id on +id packed +id parent +id parentPanel +id percent +id progress_circular +id progress_horizontal +id radio +id right +id right_icon +id right_side +id screen +id scrollIndicatorDown +id scrollIndicatorUp +id scrollView +id search_badge +id search_bar +id search_button +id search_close_btn +id search_edit_frame +id search_go_btn +id search_mag_icon +id search_plate +id search_src_text +id search_voice_btn +id select_dialog_listview +id shortcut +id spacer +id split_action_bar +id spread +id spread_inside +id src_atop +id src_in +id src_over +id start +id status_bar_latest_event_content +id submenuarrow +id submit_area +id tabMode +id tag_accessibility_actions +id tag_accessibility_clickable_spans +id tag_accessibility_heading +id tag_accessibility_pane_title +id tag_screen_reader_focusable +id tag_transition_group +id tag_unhandled_key_event_manager +id tag_unhandled_key_listeners +id text +id text2 +id textSpacerNoButtons +id textSpacerNoTitle +id time +id title +id titleDividerNoCustom +id title_template +id top +id topPanel +id unchecked +id uniform +id up +id wrap +id wrap_content +integer abc_config_activityDefaultDur +integer abc_config_activityShortDur +integer cancel_button_image_alpha +integer config_tooltipAnimTime +integer status_bar_notification_info_maxnum +interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 +interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 +interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 +interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 +interpolator btn_radio_to_off_mtrl_animation_interpolator_0 +interpolator btn_radio_to_on_mtrl_animation_interpolator_0 +interpolator fast_out_slow_in +layout abc_action_bar_title_item +layout abc_action_bar_up_container +layout abc_action_menu_item_layout +layout abc_action_menu_layout +layout abc_action_mode_bar +layout abc_action_mode_close_item_material +layout abc_activity_chooser_view +layout abc_activity_chooser_view_list_item +layout abc_alert_dialog_button_bar_material +layout abc_alert_dialog_material +layout abc_alert_dialog_title_material +layout abc_cascading_menu_item_layout +layout abc_dialog_title_material +layout abc_expanded_menu_layout +layout abc_list_menu_item_checkbox +layout abc_list_menu_item_icon +layout abc_list_menu_item_layout +layout abc_list_menu_item_radio +layout abc_popup_menu_header_item_layout +layout abc_popup_menu_item_layout +layout abc_screen_content_include +layout abc_screen_simple +layout abc_screen_simple_overlay_action_mode +layout abc_screen_toolbar +layout abc_search_dropdown_item_icons_2line +layout abc_search_view +layout abc_select_dialog_material +layout abc_tooltip +layout custom_dialog +layout notification_action +layout notification_action_tombstone +layout notification_media_action +layout notification_media_cancel_action +layout notification_template_big_media +layout notification_template_big_media_custom +layout notification_template_big_media_narrow +layout notification_template_big_media_narrow_custom +layout notification_template_custom_big +layout notification_template_icon_group +layout notification_template_lines_media +layout notification_template_media +layout notification_template_media_custom +layout notification_template_part_chronometer +layout notification_template_part_time +layout select_dialog_item_material +layout select_dialog_multichoice_material +layout select_dialog_singlechoice_material +layout support_simple_spinner_dropdown_item +string abc_action_bar_home_description +string abc_action_bar_up_description +string abc_action_menu_overflow_description +string abc_action_mode_done +string abc_activity_chooser_view_see_all +string abc_activitychooserview_choose_application +string abc_capital_off +string abc_capital_on +string abc_menu_alt_shortcut_label +string abc_menu_ctrl_shortcut_label +string abc_menu_delete_shortcut_label +string abc_menu_enter_shortcut_label +string abc_menu_function_shortcut_label +string abc_menu_meta_shortcut_label +string abc_menu_shift_shortcut_label +string abc_menu_space_shortcut_label +string abc_menu_sym_shortcut_label +string abc_prepend_shortcut_label +string abc_search_hint +string abc_searchview_description_clear +string abc_searchview_description_query +string abc_searchview_description_search +string abc_searchview_description_submit +string abc_searchview_description_voice +string abc_shareactionprovider_share_with +string abc_shareactionprovider_share_with_application +string abc_toolbar_collapse_description +string search_menu_title +string status_bar_notification_info_overflow +style AlertDialog_AppCompat +style AlertDialog_AppCompat_Light +style Animation_AppCompat_Dialog +style Animation_AppCompat_DropDownUp +style Animation_AppCompat_Tooltip +style Base_AlertDialog_AppCompat +style Base_AlertDialog_AppCompat_Light +style Base_Animation_AppCompat_Dialog +style Base_Animation_AppCompat_DropDownUp +style Base_Animation_AppCompat_Tooltip +style Base_DialogWindowTitleBackground_AppCompat +style Base_DialogWindowTitle_AppCompat +style Base_TextAppearance_AppCompat +style Base_TextAppearance_AppCompat_Body1 +style Base_TextAppearance_AppCompat_Body2 +style Base_TextAppearance_AppCompat_Button +style Base_TextAppearance_AppCompat_Caption +style Base_TextAppearance_AppCompat_Display1 +style Base_TextAppearance_AppCompat_Display2 +style Base_TextAppearance_AppCompat_Display3 +style Base_TextAppearance_AppCompat_Display4 +style Base_TextAppearance_AppCompat_Headline +style Base_TextAppearance_AppCompat_Inverse +style Base_TextAppearance_AppCompat_Large +style Base_TextAppearance_AppCompat_Large_Inverse +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Medium +style Base_TextAppearance_AppCompat_Medium_Inverse +style Base_TextAppearance_AppCompat_Menu +style Base_TextAppearance_AppCompat_SearchResult +style Base_TextAppearance_AppCompat_SearchResult_Subtitle +style Base_TextAppearance_AppCompat_SearchResult_Title +style Base_TextAppearance_AppCompat_Small +style Base_TextAppearance_AppCompat_Small_Inverse +style Base_TextAppearance_AppCompat_Subhead +style Base_TextAppearance_AppCompat_Subhead_Inverse +style Base_TextAppearance_AppCompat_Title +style Base_TextAppearance_AppCompat_Title_Inverse +style Base_TextAppearance_AppCompat_Tooltip +style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionMode_Title +style Base_TextAppearance_AppCompat_Widget_Button +style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Inverse +style Base_TextAppearance_AppCompat_Widget_DropDownItem +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Widget_Switch +style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style Base_TextAppearance_Widget_AppCompat_Toolbar_Title +style Base_ThemeOverlay_AppCompat +style Base_ThemeOverlay_AppCompat_ActionBar +style Base_ThemeOverlay_AppCompat_Dark +style Base_ThemeOverlay_AppCompat_Dark_ActionBar +style Base_ThemeOverlay_AppCompat_Dialog +style Base_ThemeOverlay_AppCompat_Dialog_Alert +style Base_ThemeOverlay_AppCompat_Light +style Base_Theme_AppCompat +style Base_Theme_AppCompat_CompactMenu +style Base_Theme_AppCompat_Dialog +style Base_Theme_AppCompat_DialogWhenLarge +style Base_Theme_AppCompat_Dialog_Alert +style Base_Theme_AppCompat_Dialog_FixedSize +style Base_Theme_AppCompat_Dialog_MinWidth +style Base_Theme_AppCompat_Light +style Base_Theme_AppCompat_Light_DarkActionBar +style Base_Theme_AppCompat_Light_Dialog +style Base_Theme_AppCompat_Light_DialogWhenLarge +style Base_Theme_AppCompat_Light_Dialog_Alert +style Base_Theme_AppCompat_Light_Dialog_FixedSize +style Base_Theme_AppCompat_Light_Dialog_MinWidth +style Base_V21_ThemeOverlay_AppCompat_Dialog +style Base_V21_Theme_AppCompat +style Base_V21_Theme_AppCompat_Dialog +style Base_V21_Theme_AppCompat_Light +style Base_V21_Theme_AppCompat_Light_Dialog +style Base_V22_Theme_AppCompat +style Base_V22_Theme_AppCompat_Light +style Base_V23_Theme_AppCompat +style Base_V23_Theme_AppCompat_Light +style Base_V26_Theme_AppCompat +style Base_V26_Theme_AppCompat_Light +style Base_V26_Widget_AppCompat_Toolbar +style Base_V28_Theme_AppCompat +style Base_V28_Theme_AppCompat_Light +style Base_V7_ThemeOverlay_AppCompat_Dialog +style Base_V7_Theme_AppCompat +style Base_V7_Theme_AppCompat_Dialog +style Base_V7_Theme_AppCompat_Light +style Base_V7_Theme_AppCompat_Light_Dialog +style Base_V7_Widget_AppCompat_AutoCompleteTextView +style Base_V7_Widget_AppCompat_EditText +style Base_V7_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_ActionBar +style Base_Widget_AppCompat_ActionBar_Solid +style Base_Widget_AppCompat_ActionBar_TabBar +style Base_Widget_AppCompat_ActionBar_TabText +style Base_Widget_AppCompat_ActionBar_TabView +style Base_Widget_AppCompat_ActionButton +style Base_Widget_AppCompat_ActionButton_CloseMode +style Base_Widget_AppCompat_ActionButton_Overflow +style Base_Widget_AppCompat_ActionMode +style Base_Widget_AppCompat_ActivityChooserView +style Base_Widget_AppCompat_AutoCompleteTextView +style Base_Widget_AppCompat_Button +style Base_Widget_AppCompat_ButtonBar +style Base_Widget_AppCompat_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Borderless +style Base_Widget_AppCompat_Button_Borderless_Colored +style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Colored +style Base_Widget_AppCompat_Button_Small +style Base_Widget_AppCompat_CompoundButton_CheckBox +style Base_Widget_AppCompat_CompoundButton_RadioButton +style Base_Widget_AppCompat_CompoundButton_Switch +style Base_Widget_AppCompat_DrawerArrowToggle +style Base_Widget_AppCompat_DrawerArrowToggle_Common +style Base_Widget_AppCompat_DropDownItem_Spinner +style Base_Widget_AppCompat_EditText +style Base_Widget_AppCompat_ImageButton +style Base_Widget_AppCompat_Light_ActionBar +style Base_Widget_AppCompat_Light_ActionBar_Solid +style Base_Widget_AppCompat_Light_ActionBar_TabBar +style Base_Widget_AppCompat_Light_ActionBar_TabText +style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Base_Widget_AppCompat_Light_ActionBar_TabView +style Base_Widget_AppCompat_Light_PopupMenu +style Base_Widget_AppCompat_Light_PopupMenu_Overflow +style Base_Widget_AppCompat_ListMenuView +style Base_Widget_AppCompat_ListPopupWindow +style Base_Widget_AppCompat_ListView +style Base_Widget_AppCompat_ListView_DropDown +style Base_Widget_AppCompat_ListView_Menu +style Base_Widget_AppCompat_PopupMenu +style Base_Widget_AppCompat_PopupMenu_Overflow +style Base_Widget_AppCompat_PopupWindow +style Base_Widget_AppCompat_ProgressBar +style Base_Widget_AppCompat_ProgressBar_Horizontal +style Base_Widget_AppCompat_RatingBar +style Base_Widget_AppCompat_RatingBar_Indicator +style Base_Widget_AppCompat_RatingBar_Small +style Base_Widget_AppCompat_SearchView +style Base_Widget_AppCompat_SearchView_ActionBar +style Base_Widget_AppCompat_SeekBar +style Base_Widget_AppCompat_SeekBar_Discrete +style Base_Widget_AppCompat_Spinner +style Base_Widget_AppCompat_Spinner_Underlined +style Base_Widget_AppCompat_TextView +style Base_Widget_AppCompat_TextView_SpinnerItem +style Base_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_Toolbar_Button_Navigation +style Platform_AppCompat +style Platform_AppCompat_Light +style Platform_ThemeOverlay_AppCompat +style Platform_ThemeOverlay_AppCompat_Dark +style Platform_ThemeOverlay_AppCompat_Light +style Platform_V21_AppCompat +style Platform_V21_AppCompat_Light +style Platform_V25_AppCompat +style Platform_V25_AppCompat_Light +style Platform_Widget_AppCompat_Spinner +style RtlOverlay_DialogWindowTitle_AppCompat +style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +style RtlOverlay_Widget_AppCompat_DialogTitle_Icon +style RtlOverlay_Widget_AppCompat_PopupMenuItem +style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +style RtlOverlay_Widget_AppCompat_SearchView_MagIcon +style RtlOverlay_Widget_AppCompat_Search_DropDown +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Query +style RtlOverlay_Widget_AppCompat_Search_DropDown_Text +style RtlUnderlay_Widget_AppCompat_ActionButton +style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +style TextAppearance_AppCompat +style TextAppearance_AppCompat_Body1 +style TextAppearance_AppCompat_Body2 +style TextAppearance_AppCompat_Button +style TextAppearance_AppCompat_Caption +style TextAppearance_AppCompat_Display1 +style TextAppearance_AppCompat_Display2 +style TextAppearance_AppCompat_Display3 +style TextAppearance_AppCompat_Display4 +style TextAppearance_AppCompat_Headline +style TextAppearance_AppCompat_Inverse +style TextAppearance_AppCompat_Large +style TextAppearance_AppCompat_Large_Inverse +style TextAppearance_AppCompat_Light_SearchResult_Subtitle +style TextAppearance_AppCompat_Light_SearchResult_Title +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Medium +style TextAppearance_AppCompat_Medium_Inverse +style TextAppearance_AppCompat_Menu +style TextAppearance_AppCompat_SearchResult_Subtitle +style TextAppearance_AppCompat_SearchResult_Title +style TextAppearance_AppCompat_Small +style TextAppearance_AppCompat_Small_Inverse +style TextAppearance_AppCompat_Subhead +style TextAppearance_AppCompat_Subhead_Inverse +style TextAppearance_AppCompat_Title +style TextAppearance_AppCompat_Title_Inverse +style TextAppearance_AppCompat_Tooltip +style TextAppearance_AppCompat_Widget_ActionBar_Menu +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionBar_Title +style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Title +style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +style TextAppearance_AppCompat_Widget_Button +style TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style TextAppearance_AppCompat_Widget_Button_Colored +style TextAppearance_AppCompat_Widget_Button_Inverse +style TextAppearance_AppCompat_Widget_DropDownItem +style TextAppearance_AppCompat_Widget_PopupMenu_Header +style TextAppearance_AppCompat_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Widget_Switch +style TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style TextAppearance_Compat_Notification +style TextAppearance_Compat_Notification_Info +style TextAppearance_Compat_Notification_Info_Media +style TextAppearance_Compat_Notification_Line2 +style TextAppearance_Compat_Notification_Line2_Media +style TextAppearance_Compat_Notification_Media +style TextAppearance_Compat_Notification_Time +style TextAppearance_Compat_Notification_Time_Media +style TextAppearance_Compat_Notification_Title +style TextAppearance_Compat_Notification_Title_Media +style TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style TextAppearance_Widget_AppCompat_Toolbar_Title +style ThemeOverlay_AppCompat +style ThemeOverlay_AppCompat_ActionBar +style ThemeOverlay_AppCompat_Dark +style ThemeOverlay_AppCompat_Dark_ActionBar +style ThemeOverlay_AppCompat_DayNight +style ThemeOverlay_AppCompat_DayNight_ActionBar +style ThemeOverlay_AppCompat_Dialog +style ThemeOverlay_AppCompat_Dialog_Alert +style ThemeOverlay_AppCompat_Light +style Theme_AppCompat +style Theme_AppCompat_CompactMenu +style Theme_AppCompat_DayNight +style Theme_AppCompat_DayNight_DarkActionBar +style Theme_AppCompat_DayNight_Dialog +style Theme_AppCompat_DayNight_DialogWhenLarge +style Theme_AppCompat_DayNight_Dialog_Alert +style Theme_AppCompat_DayNight_Dialog_MinWidth +style Theme_AppCompat_DayNight_NoActionBar +style Theme_AppCompat_Dialog +style Theme_AppCompat_DialogWhenLarge +style Theme_AppCompat_Dialog_Alert +style Theme_AppCompat_Dialog_MinWidth +style Theme_AppCompat_Light +style Theme_AppCompat_Light_DarkActionBar +style Theme_AppCompat_Light_Dialog +style Theme_AppCompat_Light_DialogWhenLarge +style Theme_AppCompat_Light_Dialog_Alert +style Theme_AppCompat_Light_Dialog_MinWidth +style Theme_AppCompat_Light_NoActionBar +style Theme_AppCompat_NoActionBar +style Widget_AppCompat_ActionBar +style Widget_AppCompat_ActionBar_Solid +style Widget_AppCompat_ActionBar_TabBar +style Widget_AppCompat_ActionBar_TabText +style Widget_AppCompat_ActionBar_TabView +style Widget_AppCompat_ActionButton +style Widget_AppCompat_ActionButton_CloseMode +style Widget_AppCompat_ActionButton_Overflow +style Widget_AppCompat_ActionMode +style Widget_AppCompat_ActivityChooserView +style Widget_AppCompat_AutoCompleteTextView +style Widget_AppCompat_Button +style Widget_AppCompat_ButtonBar +style Widget_AppCompat_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Borderless +style Widget_AppCompat_Button_Borderless_Colored +style Widget_AppCompat_Button_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Colored +style Widget_AppCompat_Button_Small +style Widget_AppCompat_CompoundButton_CheckBox +style Widget_AppCompat_CompoundButton_RadioButton +style Widget_AppCompat_CompoundButton_Switch +style Widget_AppCompat_DrawerArrowToggle +style Widget_AppCompat_DropDownItem_Spinner +style Widget_AppCompat_EditText +style Widget_AppCompat_ImageButton +style Widget_AppCompat_Light_ActionBar +style Widget_AppCompat_Light_ActionBar_Solid +style Widget_AppCompat_Light_ActionBar_Solid_Inverse +style Widget_AppCompat_Light_ActionBar_TabBar +style Widget_AppCompat_Light_ActionBar_TabBar_Inverse +style Widget_AppCompat_Light_ActionBar_TabText +style Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Widget_AppCompat_Light_ActionBar_TabView +style Widget_AppCompat_Light_ActionBar_TabView_Inverse +style Widget_AppCompat_Light_ActionButton +style Widget_AppCompat_Light_ActionButton_CloseMode +style Widget_AppCompat_Light_ActionButton_Overflow +style Widget_AppCompat_Light_ActionMode_Inverse +style Widget_AppCompat_Light_ActivityChooserView +style Widget_AppCompat_Light_AutoCompleteTextView +style Widget_AppCompat_Light_DropDownItem_Spinner +style Widget_AppCompat_Light_ListPopupWindow +style Widget_AppCompat_Light_ListView_DropDown +style Widget_AppCompat_Light_PopupMenu +style Widget_AppCompat_Light_PopupMenu_Overflow +style Widget_AppCompat_Light_SearchView +style Widget_AppCompat_Light_Spinner_DropDown_ActionBar +style Widget_AppCompat_ListMenuView +style Widget_AppCompat_ListPopupWindow +style Widget_AppCompat_ListView +style Widget_AppCompat_ListView_DropDown +style Widget_AppCompat_ListView_Menu +style Widget_AppCompat_PopupMenu +style Widget_AppCompat_PopupMenu_Overflow +style Widget_AppCompat_PopupWindow +style Widget_AppCompat_ProgressBar +style Widget_AppCompat_ProgressBar_Horizontal +style Widget_AppCompat_RatingBar +style Widget_AppCompat_RatingBar_Indicator +style Widget_AppCompat_RatingBar_Small +style Widget_AppCompat_SearchView +style Widget_AppCompat_SearchView_ActionBar +style Widget_AppCompat_SeekBar +style Widget_AppCompat_SeekBar_Discrete +style Widget_AppCompat_Spinner +style Widget_AppCompat_Spinner_DropDown +style Widget_AppCompat_Spinner_DropDown_ActionBar +style Widget_AppCompat_Spinner_Underlined +style Widget_AppCompat_TextView +style Widget_AppCompat_TextView_SpinnerItem +style Widget_AppCompat_Toolbar +style Widget_AppCompat_Toolbar_Button_Navigation +style Widget_Compat_NotificationActionContainer +style Widget_Compat_NotificationActionText +style Widget_Support_CoordinatorLayout +styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle +styleable ActionBarLayout android_layout_gravity +styleable ActionMenuItemView android_minWidth +styleable ActionMenuView +styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle +styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount +styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout +styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible +styleable AnimatedStateListDrawableItem android_drawable android_id +styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId +styleable AppCompatImageView android_src srcCompat tint tintMode +styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode +styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance +styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale +styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle +styleable ButtonBarLayout allowStacking +styleable ColorStateListItem alpha android_alpha android_color +styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode +styleable ConstraintLayout_Layout android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation barrierAllowsGoneWidgets barrierDirection chainUseRtl constraintSet constraint_referenced_ids layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_optimizationLevel +styleable ConstraintLayout_placeholder content emptyVisibility +styleable ConstraintSet android_alpha android_elevation android_id android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ android_visibility barrierAllowsGoneWidgets barrierDirection chainUseRtl constraint_referenced_ids layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop +styleable CoordinatorLayout keylines statusBarBackground +styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline +styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness +styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery +styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex +styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type +styleable GradientColorItem android_color android_offset +styleable LinearConstraintLayout android_orientation +styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers +styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width +styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset +styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible +styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText +styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow +styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor +styleable PopupWindowBackgroundState state_above_anchor +styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle +styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon +styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme +styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible +styleable StateListDrawableItem android_drawable +styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode +styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale +styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor +styleable View android_focusable android_theme paddingEnd paddingStart theme +styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode +styleable ViewStubCompat android_id android_inflatedId android_layout diff --git a/modules/mogo-module-splash-noop/build/intermediates/symbols/debug/R.txt b/modules/mogo-module-splash-noop/build/intermediates/symbols/debug/R.txt new file mode 100644 index 0000000000..b8a11e6dfd --- /dev/null +++ b/modules/mogo-module-splash-noop/build/intermediates/symbols/debug/R.txt @@ -0,0 +1,1917 @@ +int anim abc_fade_in 0x7f010001 +int anim abc_fade_out 0x7f010002 +int anim abc_grow_fade_in_from_bottom 0x7f010003 +int anim abc_popup_enter 0x7f010004 +int anim abc_popup_exit 0x7f010005 +int anim abc_shrink_fade_out_from_bottom 0x7f010006 +int anim abc_slide_in_bottom 0x7f010007 +int anim abc_slide_in_top 0x7f010008 +int anim abc_slide_out_bottom 0x7f010009 +int anim abc_slide_out_top 0x7f01000a +int anim abc_tooltip_enter 0x7f01000b +int anim abc_tooltip_exit 0x7f01000c +int anim btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000d +int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000e +int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000f +int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f010010 +int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010011 +int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010012 +int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010013 +int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010014 +int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010015 +int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010016 +int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010017 +int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010018 +int attr actionBarDivider 0x7f040001 +int attr actionBarItemBackground 0x7f040002 +int attr actionBarPopupTheme 0x7f040003 +int attr actionBarSize 0x7f040004 +int attr actionBarSplitStyle 0x7f040005 +int attr actionBarStyle 0x7f040006 +int attr actionBarTabBarStyle 0x7f040007 +int attr actionBarTabStyle 0x7f040008 +int attr actionBarTabTextStyle 0x7f040009 +int attr actionBarTheme 0x7f04000a +int attr actionBarWidgetTheme 0x7f04000b +int attr actionButtonStyle 0x7f04000c +int attr actionDropDownStyle 0x7f04000d +int attr actionLayout 0x7f04000e +int attr actionMenuTextAppearance 0x7f04000f +int attr actionMenuTextColor 0x7f040010 +int attr actionModeBackground 0x7f040011 +int attr actionModeCloseButtonStyle 0x7f040012 +int attr actionModeCloseDrawable 0x7f040013 +int attr actionModeCopyDrawable 0x7f040014 +int attr actionModeCutDrawable 0x7f040015 +int attr actionModeFindDrawable 0x7f040016 +int attr actionModePasteDrawable 0x7f040017 +int attr actionModePopupWindowStyle 0x7f040018 +int attr actionModeSelectAllDrawable 0x7f040019 +int attr actionModeShareDrawable 0x7f04001a +int attr actionModeSplitBackground 0x7f04001b +int attr actionModeStyle 0x7f04001c +int attr actionModeWebSearchDrawable 0x7f04001d +int attr actionOverflowButtonStyle 0x7f04001e +int attr actionOverflowMenuStyle 0x7f04001f +int attr actionProviderClass 0x7f040020 +int attr actionViewClass 0x7f040021 +int attr activityChooserViewStyle 0x7f040022 +int attr alertDialogButtonGroupStyle 0x7f040023 +int attr alertDialogCenterButtons 0x7f040024 +int attr alertDialogStyle 0x7f040025 +int attr alertDialogTheme 0x7f040026 +int attr allowStacking 0x7f040027 +int attr alpha 0x7f040028 +int attr alphabeticModifiers 0x7f040029 +int attr arrowHeadLength 0x7f04002a +int attr arrowShaftLength 0x7f04002b +int attr autoCompleteTextViewStyle 0x7f04002c +int attr autoSizeMaxTextSize 0x7f04002d +int attr autoSizeMinTextSize 0x7f04002e +int attr autoSizePresetSizes 0x7f04002f +int attr autoSizeStepGranularity 0x7f040030 +int attr autoSizeTextType 0x7f040031 +int attr background 0x7f040032 +int attr backgroundSplit 0x7f040033 +int attr backgroundStacked 0x7f040034 +int attr backgroundTint 0x7f040035 +int attr backgroundTintMode 0x7f040036 +int attr barLength 0x7f040037 +int attr barrierAllowsGoneWidgets 0x7f040038 +int attr barrierDirection 0x7f040039 +int attr borderlessButtonStyle 0x7f04003a +int attr buttonBarButtonStyle 0x7f04003b +int attr buttonBarNegativeButtonStyle 0x7f04003c +int attr buttonBarNeutralButtonStyle 0x7f04003d +int attr buttonBarPositiveButtonStyle 0x7f04003e +int attr buttonBarStyle 0x7f04003f +int attr buttonCompat 0x7f040040 +int attr buttonGravity 0x7f040041 +int attr buttonIconDimen 0x7f040042 +int attr buttonPanelSideLayout 0x7f040043 +int attr buttonStyle 0x7f040044 +int attr buttonStyleSmall 0x7f040045 +int attr buttonTint 0x7f040046 +int attr buttonTintMode 0x7f040047 +int attr chainUseRtl 0x7f040048 +int attr checkboxStyle 0x7f040049 +int attr checkedTextViewStyle 0x7f04004a +int attr closeIcon 0x7f04004b +int attr closeItemLayout 0x7f04004c +int attr collapseContentDescription 0x7f04004d +int attr collapseIcon 0x7f04004e +int attr color 0x7f04004f +int attr colorAccent 0x7f040050 +int attr colorBackgroundFloating 0x7f040051 +int attr colorButtonNormal 0x7f040052 +int attr colorControlActivated 0x7f040053 +int attr colorControlHighlight 0x7f040054 +int attr colorControlNormal 0x7f040055 +int attr colorError 0x7f040056 +int attr colorPrimary 0x7f040057 +int attr colorPrimaryDark 0x7f040058 +int attr colorSwitchThumbNormal 0x7f040059 +int attr commitIcon 0x7f04005a +int attr constraintSet 0x7f04005b +int attr constraint_referenced_ids 0x7f04005c +int attr content 0x7f04005d +int attr contentDescription 0x7f04005e +int attr contentInsetEnd 0x7f04005f +int attr contentInsetEndWithActions 0x7f040060 +int attr contentInsetLeft 0x7f040061 +int attr contentInsetRight 0x7f040062 +int attr contentInsetStart 0x7f040063 +int attr contentInsetStartWithNavigation 0x7f040064 +int attr controlBackground 0x7f040065 +int attr coordinatorLayoutStyle 0x7f040066 +int attr customNavigationLayout 0x7f040067 +int attr defaultQueryHint 0x7f040068 +int attr dialogCornerRadius 0x7f040069 +int attr dialogPreferredPadding 0x7f04006a +int attr dialogTheme 0x7f04006b +int attr displayOptions 0x7f04006c +int attr divider 0x7f04006d +int attr dividerHorizontal 0x7f04006e +int attr dividerPadding 0x7f04006f +int attr dividerVertical 0x7f040070 +int attr drawableBottomCompat 0x7f040071 +int attr drawableEndCompat 0x7f040072 +int attr drawableLeftCompat 0x7f040073 +int attr drawableRightCompat 0x7f040074 +int attr drawableSize 0x7f040075 +int attr drawableStartCompat 0x7f040076 +int attr drawableTint 0x7f040077 +int attr drawableTintMode 0x7f040078 +int attr drawableTopCompat 0x7f040079 +int attr drawerArrowStyle 0x7f04007a +int attr dropDownListViewStyle 0x7f04007b +int attr dropdownListPreferredItemHeight 0x7f04007c +int attr editTextBackground 0x7f04007d +int attr editTextColor 0x7f04007e +int attr editTextStyle 0x7f04007f +int attr elevation 0x7f040080 +int attr emptyVisibility 0x7f040081 +int attr expandActivityOverflowButtonDrawable 0x7f040082 +int attr firstBaselineToTopHeight 0x7f040083 +int attr font 0x7f040084 +int attr fontFamily 0x7f040085 +int attr fontProviderAuthority 0x7f040086 +int attr fontProviderCerts 0x7f040087 +int attr fontProviderFetchStrategy 0x7f040088 +int attr fontProviderFetchTimeout 0x7f040089 +int attr fontProviderPackage 0x7f04008a +int attr fontProviderQuery 0x7f04008b +int attr fontStyle 0x7f04008c +int attr fontVariationSettings 0x7f04008d +int attr fontWeight 0x7f04008e +int attr gapBetweenBars 0x7f04008f +int attr goIcon 0x7f040090 +int attr height 0x7f040091 +int attr hideOnContentScroll 0x7f040092 +int attr homeAsUpIndicator 0x7f040093 +int attr homeLayout 0x7f040094 +int attr icon 0x7f040095 +int attr iconTint 0x7f040096 +int attr iconTintMode 0x7f040097 +int attr iconifiedByDefault 0x7f040098 +int attr imageButtonStyle 0x7f040099 +int attr indeterminateProgressStyle 0x7f04009a +int attr initialActivityCount 0x7f04009b +int attr isLightTheme 0x7f04009c +int attr itemPadding 0x7f04009d +int attr keylines 0x7f04009e +int attr lastBaselineToBottomHeight 0x7f04009f +int attr layout 0x7f0400a0 +int attr layout_anchor 0x7f0400a1 +int attr layout_anchorGravity 0x7f0400a2 +int attr layout_behavior 0x7f0400a3 +int attr layout_constrainedHeight 0x7f0400a4 +int attr layout_constrainedWidth 0x7f0400a5 +int attr layout_constraintBaseline_creator 0x7f0400a6 +int attr layout_constraintBaseline_toBaselineOf 0x7f0400a7 +int attr layout_constraintBottom_creator 0x7f0400a8 +int attr layout_constraintBottom_toBottomOf 0x7f0400a9 +int attr layout_constraintBottom_toTopOf 0x7f0400aa +int attr layout_constraintCircle 0x7f0400ab +int attr layout_constraintCircleAngle 0x7f0400ac +int attr layout_constraintCircleRadius 0x7f0400ad +int attr layout_constraintDimensionRatio 0x7f0400ae +int attr layout_constraintEnd_toEndOf 0x7f0400af +int attr layout_constraintEnd_toStartOf 0x7f0400b0 +int attr layout_constraintGuide_begin 0x7f0400b1 +int attr layout_constraintGuide_end 0x7f0400b2 +int attr layout_constraintGuide_percent 0x7f0400b3 +int attr layout_constraintHeight_default 0x7f0400b4 +int attr layout_constraintHeight_max 0x7f0400b5 +int attr layout_constraintHeight_min 0x7f0400b6 +int attr layout_constraintHeight_percent 0x7f0400b7 +int attr layout_constraintHorizontal_bias 0x7f0400b8 +int attr layout_constraintHorizontal_chainStyle 0x7f0400b9 +int attr layout_constraintHorizontal_weight 0x7f0400ba +int attr layout_constraintLeft_creator 0x7f0400bb +int attr layout_constraintLeft_toLeftOf 0x7f0400bc +int attr layout_constraintLeft_toRightOf 0x7f0400bd +int attr layout_constraintRight_creator 0x7f0400be +int attr layout_constraintRight_toLeftOf 0x7f0400bf +int attr layout_constraintRight_toRightOf 0x7f0400c0 +int attr layout_constraintStart_toEndOf 0x7f0400c1 +int attr layout_constraintStart_toStartOf 0x7f0400c2 +int attr layout_constraintTop_creator 0x7f0400c3 +int attr layout_constraintTop_toBottomOf 0x7f0400c4 +int attr layout_constraintTop_toTopOf 0x7f0400c5 +int attr layout_constraintVertical_bias 0x7f0400c6 +int attr layout_constraintVertical_chainStyle 0x7f0400c7 +int attr layout_constraintVertical_weight 0x7f0400c8 +int attr layout_constraintWidth_default 0x7f0400c9 +int attr layout_constraintWidth_max 0x7f0400ca +int attr layout_constraintWidth_min 0x7f0400cb +int attr layout_constraintWidth_percent 0x7f0400cc +int attr layout_dodgeInsetEdges 0x7f0400cd +int attr layout_editor_absoluteX 0x7f0400ce +int attr layout_editor_absoluteY 0x7f0400cf +int attr layout_goneMarginBottom 0x7f0400d0 +int attr layout_goneMarginEnd 0x7f0400d1 +int attr layout_goneMarginLeft 0x7f0400d2 +int attr layout_goneMarginRight 0x7f0400d3 +int attr layout_goneMarginStart 0x7f0400d4 +int attr layout_goneMarginTop 0x7f0400d5 +int attr layout_insetEdge 0x7f0400d6 +int attr layout_keyline 0x7f0400d7 +int attr layout_optimizationLevel 0x7f0400d8 +int attr lineHeight 0x7f0400d9 +int attr listChoiceBackgroundIndicator 0x7f0400da +int attr listChoiceIndicatorMultipleAnimated 0x7f0400db +int attr listChoiceIndicatorSingleAnimated 0x7f0400dc +int attr listDividerAlertDialog 0x7f0400dd +int attr listItemLayout 0x7f0400de +int attr listLayout 0x7f0400df +int attr listMenuViewStyle 0x7f0400e0 +int attr listPopupWindowStyle 0x7f0400e1 +int attr listPreferredItemHeight 0x7f0400e2 +int attr listPreferredItemHeightLarge 0x7f0400e3 +int attr listPreferredItemHeightSmall 0x7f0400e4 +int attr listPreferredItemPaddingEnd 0x7f0400e5 +int attr listPreferredItemPaddingLeft 0x7f0400e6 +int attr listPreferredItemPaddingRight 0x7f0400e7 +int attr listPreferredItemPaddingStart 0x7f0400e8 +int attr logo 0x7f0400e9 +int attr logoDescription 0x7f0400ea +int attr maxButtonHeight 0x7f0400eb +int attr measureWithLargestChild 0x7f0400ec +int attr menu 0x7f0400ed +int attr multiChoiceItemLayout 0x7f0400ee +int attr navigationContentDescription 0x7f0400ef +int attr navigationIcon 0x7f0400f0 +int attr navigationMode 0x7f0400f1 +int attr numericModifiers 0x7f0400f2 +int attr overlapAnchor 0x7f0400f3 +int attr paddingBottomNoButtons 0x7f0400f4 +int attr paddingEnd 0x7f0400f5 +int attr paddingStart 0x7f0400f6 +int attr paddingTopNoTitle 0x7f0400f7 +int attr panelBackground 0x7f0400f8 +int attr panelMenuListTheme 0x7f0400f9 +int attr panelMenuListWidth 0x7f0400fa +int attr popupMenuStyle 0x7f0400fb +int attr popupTheme 0x7f0400fc +int attr popupWindowStyle 0x7f0400fd +int attr preserveIconSpacing 0x7f0400fe +int attr progressBarPadding 0x7f0400ff +int attr progressBarStyle 0x7f040100 +int attr queryBackground 0x7f040101 +int attr queryHint 0x7f040102 +int attr radioButtonStyle 0x7f040103 +int attr ratingBarStyle 0x7f040104 +int attr ratingBarStyleIndicator 0x7f040105 +int attr ratingBarStyleSmall 0x7f040106 +int attr searchHintIcon 0x7f040107 +int attr searchIcon 0x7f040108 +int attr searchViewStyle 0x7f040109 +int attr seekBarStyle 0x7f04010a +int attr selectableItemBackground 0x7f04010b +int attr selectableItemBackgroundBorderless 0x7f04010c +int attr showAsAction 0x7f04010d +int attr showDividers 0x7f04010e +int attr showText 0x7f04010f +int attr showTitle 0x7f040110 +int attr singleChoiceItemLayout 0x7f040111 +int attr spinBars 0x7f040112 +int attr spinnerDropDownItemStyle 0x7f040113 +int attr spinnerStyle 0x7f040114 +int attr splitTrack 0x7f040115 +int attr srcCompat 0x7f040116 +int attr state_above_anchor 0x7f040117 +int attr statusBarBackground 0x7f040118 +int attr subMenuArrow 0x7f040119 +int attr submitBackground 0x7f04011a +int attr subtitle 0x7f04011b +int attr subtitleTextAppearance 0x7f04011c +int attr subtitleTextColor 0x7f04011d +int attr subtitleTextStyle 0x7f04011e +int attr suggestionRowLayout 0x7f04011f +int attr switchMinWidth 0x7f040120 +int attr switchPadding 0x7f040121 +int attr switchStyle 0x7f040122 +int attr switchTextAppearance 0x7f040123 +int attr textAllCaps 0x7f040124 +int attr textAppearanceLargePopupMenu 0x7f040125 +int attr textAppearanceListItem 0x7f040126 +int attr textAppearanceListItemSecondary 0x7f040127 +int attr textAppearanceListItemSmall 0x7f040128 +int attr textAppearancePopupMenuHeader 0x7f040129 +int attr textAppearanceSearchResultSubtitle 0x7f04012a +int attr textAppearanceSearchResultTitle 0x7f04012b +int attr textAppearanceSmallPopupMenu 0x7f04012c +int attr textColorAlertDialogListItem 0x7f04012d +int attr textColorSearchUrl 0x7f04012e +int attr textLocale 0x7f04012f +int attr theme 0x7f040130 +int attr thickness 0x7f040131 +int attr thumbTextPadding 0x7f040132 +int attr thumbTint 0x7f040133 +int attr thumbTintMode 0x7f040134 +int attr tickMark 0x7f040135 +int attr tickMarkTint 0x7f040136 +int attr tickMarkTintMode 0x7f040137 +int attr tint 0x7f040138 +int attr tintMode 0x7f040139 +int attr title 0x7f04013a +int attr titleMargin 0x7f04013b +int attr titleMarginBottom 0x7f04013c +int attr titleMarginEnd 0x7f04013d +int attr titleMarginStart 0x7f04013e +int attr titleMarginTop 0x7f04013f +int attr titleMargins 0x7f040140 +int attr titleTextAppearance 0x7f040141 +int attr titleTextColor 0x7f040142 +int attr titleTextStyle 0x7f040143 +int attr toolbarNavigationButtonStyle 0x7f040144 +int attr toolbarStyle 0x7f040145 +int attr tooltipForegroundColor 0x7f040146 +int attr tooltipFrameBackground 0x7f040147 +int attr tooltipText 0x7f040148 +int attr track 0x7f040149 +int attr trackTint 0x7f04014a +int attr trackTintMode 0x7f04014b +int attr ttcIndex 0x7f04014c +int attr viewInflaterClass 0x7f04014d +int attr voiceIcon 0x7f04014e +int attr windowActionBar 0x7f04014f +int attr windowActionBarOverlay 0x7f040150 +int attr windowActionModeOverlay 0x7f040151 +int attr windowFixedHeightMajor 0x7f040152 +int attr windowFixedHeightMinor 0x7f040153 +int attr windowFixedWidthMajor 0x7f040154 +int attr windowFixedWidthMinor 0x7f040155 +int attr windowMinWidthMajor 0x7f040156 +int attr windowMinWidthMinor 0x7f040157 +int attr windowNoTitle 0x7f040158 +int bool abc_action_bar_embed_tabs 0x7f050001 +int bool abc_allow_stacked_button_bar 0x7f050002 +int bool abc_config_actionMenuItemAllCaps 0x7f050003 +int color abc_background_cache_hint_selector_material_dark 0x7f060001 +int color abc_background_cache_hint_selector_material_light 0x7f060002 +int color abc_btn_colored_borderless_text_material 0x7f060003 +int color abc_btn_colored_text_material 0x7f060004 +int color abc_color_highlight_material 0x7f060005 +int color abc_hint_foreground_material_dark 0x7f060006 +int color abc_hint_foreground_material_light 0x7f060007 +int color abc_input_method_navigation_guard 0x7f060008 +int color abc_primary_text_disable_only_material_dark 0x7f060009 +int color abc_primary_text_disable_only_material_light 0x7f06000a +int color abc_primary_text_material_dark 0x7f06000b +int color abc_primary_text_material_light 0x7f06000c +int color abc_search_url_text 0x7f06000d +int color abc_search_url_text_normal 0x7f06000e +int color abc_search_url_text_pressed 0x7f06000f +int color abc_search_url_text_selected 0x7f060010 +int color abc_secondary_text_material_dark 0x7f060011 +int color abc_secondary_text_material_light 0x7f060012 +int color abc_tint_btn_checkable 0x7f060013 +int color abc_tint_default 0x7f060014 +int color abc_tint_edittext 0x7f060015 +int color abc_tint_seek_thumb 0x7f060016 +int color abc_tint_spinner 0x7f060017 +int color abc_tint_switch_track 0x7f060018 +int color accent_material_dark 0x7f060019 +int color accent_material_light 0x7f06001a +int color androidx_core_ripple_material_light 0x7f06001b +int color androidx_core_secondary_text_default_material_light 0x7f06001c +int color background_floating_material_dark 0x7f06001d +int color background_floating_material_light 0x7f06001e +int color background_material_dark 0x7f06001f +int color background_material_light 0x7f060020 +int color bright_foreground_disabled_material_dark 0x7f060021 +int color bright_foreground_disabled_material_light 0x7f060022 +int color bright_foreground_inverse_material_dark 0x7f060023 +int color bright_foreground_inverse_material_light 0x7f060024 +int color bright_foreground_material_dark 0x7f060025 +int color bright_foreground_material_light 0x7f060026 +int color button_material_dark 0x7f060027 +int color button_material_light 0x7f060028 +int color dim_foreground_disabled_material_dark 0x7f060029 +int color dim_foreground_disabled_material_light 0x7f06002a +int color dim_foreground_material_dark 0x7f06002b +int color dim_foreground_material_light 0x7f06002c +int color error_color_material_dark 0x7f06002d +int color error_color_material_light 0x7f06002e +int color foreground_material_dark 0x7f06002f +int color foreground_material_light 0x7f060030 +int color highlighted_text_material_dark 0x7f060031 +int color highlighted_text_material_light 0x7f060032 +int color material_blue_grey_800 0x7f060033 +int color material_blue_grey_900 0x7f060034 +int color material_blue_grey_950 0x7f060035 +int color material_deep_teal_200 0x7f060036 +int color material_deep_teal_500 0x7f060037 +int color material_grey_100 0x7f060038 +int color material_grey_300 0x7f060039 +int color material_grey_50 0x7f06003a +int color material_grey_600 0x7f06003b +int color material_grey_800 0x7f06003c +int color material_grey_850 0x7f06003d +int color material_grey_900 0x7f06003e +int color notification_action_color_filter 0x7f06003f +int color notification_icon_bg_color 0x7f060040 +int color notification_material_background_media_default_color 0x7f060041 +int color primary_dark_material_dark 0x7f060042 +int color primary_dark_material_light 0x7f060043 +int color primary_material_dark 0x7f060044 +int color primary_material_light 0x7f060045 +int color primary_text_default_material_dark 0x7f060046 +int color primary_text_default_material_light 0x7f060047 +int color primary_text_disabled_material_dark 0x7f060048 +int color primary_text_disabled_material_light 0x7f060049 +int color ripple_material_dark 0x7f06004a +int color ripple_material_light 0x7f06004b +int color secondary_text_default_material_dark 0x7f06004c +int color secondary_text_default_material_light 0x7f06004d +int color secondary_text_disabled_material_dark 0x7f06004e +int color secondary_text_disabled_material_light 0x7f06004f +int color switch_thumb_disabled_material_dark 0x7f060050 +int color switch_thumb_disabled_material_light 0x7f060051 +int color switch_thumb_material_dark 0x7f060052 +int color switch_thumb_material_light 0x7f060053 +int color switch_thumb_normal_material_dark 0x7f060054 +int color switch_thumb_normal_material_light 0x7f060055 +int color tooltip_background_dark 0x7f060056 +int color tooltip_background_light 0x7f060057 +int dimen abc_action_bar_content_inset_material 0x7f070001 +int dimen abc_action_bar_content_inset_with_nav 0x7f070002 +int dimen abc_action_bar_default_height_material 0x7f070003 +int dimen abc_action_bar_default_padding_end_material 0x7f070004 +int dimen abc_action_bar_default_padding_start_material 0x7f070005 +int dimen abc_action_bar_elevation_material 0x7f070006 +int dimen abc_action_bar_icon_vertical_padding_material 0x7f070007 +int dimen abc_action_bar_overflow_padding_end_material 0x7f070008 +int dimen abc_action_bar_overflow_padding_start_material 0x7f070009 +int dimen abc_action_bar_stacked_max_height 0x7f07000a +int dimen abc_action_bar_stacked_tab_max_width 0x7f07000b +int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07000c +int dimen abc_action_bar_subtitle_top_margin_material 0x7f07000d +int dimen abc_action_button_min_height_material 0x7f07000e +int dimen abc_action_button_min_width_material 0x7f07000f +int dimen abc_action_button_min_width_overflow_material 0x7f070010 +int dimen abc_alert_dialog_button_bar_height 0x7f070011 +int dimen abc_alert_dialog_button_dimen 0x7f070012 +int dimen abc_button_inset_horizontal_material 0x7f070013 +int dimen abc_button_inset_vertical_material 0x7f070014 +int dimen abc_button_padding_horizontal_material 0x7f070015 +int dimen abc_button_padding_vertical_material 0x7f070016 +int dimen abc_cascading_menus_min_smallest_width 0x7f070017 +int dimen abc_config_prefDialogWidth 0x7f070018 +int dimen abc_control_corner_material 0x7f070019 +int dimen abc_control_inset_material 0x7f07001a +int dimen abc_control_padding_material 0x7f07001b +int dimen abc_dialog_corner_radius_material 0x7f07001c +int dimen abc_dialog_fixed_height_major 0x7f07001d +int dimen abc_dialog_fixed_height_minor 0x7f07001e +int dimen abc_dialog_fixed_width_major 0x7f07001f +int dimen abc_dialog_fixed_width_minor 0x7f070020 +int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f070021 +int dimen abc_dialog_list_padding_top_no_title 0x7f070022 +int dimen abc_dialog_min_width_major 0x7f070023 +int dimen abc_dialog_min_width_minor 0x7f070024 +int dimen abc_dialog_padding_material 0x7f070025 +int dimen abc_dialog_padding_top_material 0x7f070026 +int dimen abc_dialog_title_divider_material 0x7f070027 +int dimen abc_disabled_alpha_material_dark 0x7f070028 +int dimen abc_disabled_alpha_material_light 0x7f070029 +int dimen abc_dropdownitem_icon_width 0x7f07002a +int dimen abc_dropdownitem_text_padding_left 0x7f07002b +int dimen abc_dropdownitem_text_padding_right 0x7f07002c +int dimen abc_edit_text_inset_bottom_material 0x7f07002d +int dimen abc_edit_text_inset_horizontal_material 0x7f07002e +int dimen abc_edit_text_inset_top_material 0x7f07002f +int dimen abc_floating_window_z 0x7f070030 +int dimen abc_list_item_height_large_material 0x7f070031 +int dimen abc_list_item_height_material 0x7f070032 +int dimen abc_list_item_height_small_material 0x7f070033 +int dimen abc_list_item_padding_horizontal_material 0x7f070034 +int dimen abc_panel_menu_list_width 0x7f070035 +int dimen abc_progress_bar_height_material 0x7f070036 +int dimen abc_search_view_preferred_height 0x7f070037 +int dimen abc_search_view_preferred_width 0x7f070038 +int dimen abc_seekbar_track_background_height_material 0x7f070039 +int dimen abc_seekbar_track_progress_height_material 0x7f07003a +int dimen abc_select_dialog_padding_start_material 0x7f07003b +int dimen abc_switch_padding 0x7f07003c +int dimen abc_text_size_body_1_material 0x7f07003d +int dimen abc_text_size_body_2_material 0x7f07003e +int dimen abc_text_size_button_material 0x7f07003f +int dimen abc_text_size_caption_material 0x7f070040 +int dimen abc_text_size_display_1_material 0x7f070041 +int dimen abc_text_size_display_2_material 0x7f070042 +int dimen abc_text_size_display_3_material 0x7f070043 +int dimen abc_text_size_display_4_material 0x7f070044 +int dimen abc_text_size_headline_material 0x7f070045 +int dimen abc_text_size_large_material 0x7f070046 +int dimen abc_text_size_medium_material 0x7f070047 +int dimen abc_text_size_menu_header_material 0x7f070048 +int dimen abc_text_size_menu_material 0x7f070049 +int dimen abc_text_size_small_material 0x7f07004a +int dimen abc_text_size_subhead_material 0x7f07004b +int dimen abc_text_size_subtitle_material_toolbar 0x7f07004c +int dimen abc_text_size_title_material 0x7f07004d +int dimen abc_text_size_title_material_toolbar 0x7f07004e +int dimen compat_button_inset_horizontal_material 0x7f07004f +int dimen compat_button_inset_vertical_material 0x7f070050 +int dimen compat_button_padding_horizontal_material 0x7f070051 +int dimen compat_button_padding_vertical_material 0x7f070052 +int dimen compat_control_corner_material 0x7f070053 +int dimen compat_notification_large_icon_max_height 0x7f070054 +int dimen compat_notification_large_icon_max_width 0x7f070055 +int dimen disabled_alpha_material_dark 0x7f070056 +int dimen disabled_alpha_material_light 0x7f070057 +int dimen highlight_alpha_material_colored 0x7f070058 +int dimen highlight_alpha_material_dark 0x7f070059 +int dimen highlight_alpha_material_light 0x7f07005a +int dimen hint_alpha_material_dark 0x7f07005b +int dimen hint_alpha_material_light 0x7f07005c +int dimen hint_pressed_alpha_material_dark 0x7f07005d +int dimen hint_pressed_alpha_material_light 0x7f07005e +int dimen notification_action_icon_size 0x7f07005f +int dimen notification_action_text_size 0x7f070060 +int dimen notification_big_circle_margin 0x7f070061 +int dimen notification_content_margin_start 0x7f070062 +int dimen notification_large_icon_height 0x7f070063 +int dimen notification_large_icon_width 0x7f070064 +int dimen notification_main_column_padding_top 0x7f070065 +int dimen notification_media_narrow_margin 0x7f070066 +int dimen notification_right_icon_size 0x7f070067 +int dimen notification_right_side_padding_top 0x7f070068 +int dimen notification_small_icon_background_padding 0x7f070069 +int dimen notification_small_icon_size_as_large 0x7f07006a +int dimen notification_subtext_size 0x7f07006b +int dimen notification_top_pad 0x7f07006c +int dimen notification_top_pad_large_text 0x7f07006d +int dimen subtitle_corner_radius 0x7f07006e +int dimen subtitle_outline_width 0x7f07006f +int dimen subtitle_shadow_offset 0x7f070070 +int dimen subtitle_shadow_radius 0x7f070071 +int dimen tooltip_corner_radius 0x7f070072 +int dimen tooltip_horizontal_padding 0x7f070073 +int dimen tooltip_margin 0x7f070074 +int dimen tooltip_precise_anchor_extra_offset 0x7f070075 +int dimen tooltip_precise_anchor_threshold 0x7f070076 +int dimen tooltip_vertical_padding 0x7f070077 +int dimen tooltip_y_offset_non_touch 0x7f070078 +int dimen tooltip_y_offset_touch 0x7f070079 +int drawable abc_ab_share_pack_mtrl_alpha 0x7f080001 +int drawable abc_action_bar_item_background_material 0x7f080002 +int drawable abc_btn_borderless_material 0x7f080003 +int drawable abc_btn_check_material 0x7f080004 +int drawable abc_btn_check_material_anim 0x7f080005 +int drawable abc_btn_check_to_on_mtrl_000 0x7f080006 +int drawable abc_btn_check_to_on_mtrl_015 0x7f080007 +int drawable abc_btn_colored_material 0x7f080008 +int drawable abc_btn_default_mtrl_shape 0x7f080009 +int drawable abc_btn_radio_material 0x7f08000a +int drawable abc_btn_radio_material_anim 0x7f08000b +int drawable abc_btn_radio_to_on_mtrl_000 0x7f08000c +int drawable abc_btn_radio_to_on_mtrl_015 0x7f08000d +int drawable abc_btn_switch_to_on_mtrl_00001 0x7f08000e +int drawable abc_btn_switch_to_on_mtrl_00012 0x7f08000f +int drawable abc_cab_background_internal_bg 0x7f080010 +int drawable abc_cab_background_top_material 0x7f080011 +int drawable abc_cab_background_top_mtrl_alpha 0x7f080012 +int drawable abc_control_background_material 0x7f080013 +int drawable abc_dialog_material_background 0x7f080014 +int drawable abc_edit_text_material 0x7f080015 +int drawable abc_ic_ab_back_material 0x7f080016 +int drawable abc_ic_arrow_drop_right_black_24dp 0x7f080017 +int drawable abc_ic_clear_material 0x7f080018 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f080019 +int drawable abc_ic_go_search_api_material 0x7f08001a +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f08001b +int drawable abc_ic_menu_cut_mtrl_alpha 0x7f08001c +int drawable abc_ic_menu_overflow_material 0x7f08001d +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f08001e +int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f08001f +int drawable abc_ic_menu_share_mtrl_alpha 0x7f080020 +int drawable abc_ic_search_api_material 0x7f080021 +int drawable abc_ic_star_black_16dp 0x7f080022 +int drawable abc_ic_star_black_36dp 0x7f080023 +int drawable abc_ic_star_black_48dp 0x7f080024 +int drawable abc_ic_star_half_black_16dp 0x7f080025 +int drawable abc_ic_star_half_black_36dp 0x7f080026 +int drawable abc_ic_star_half_black_48dp 0x7f080027 +int drawable abc_ic_voice_search_api_material 0x7f080028 +int drawable abc_item_background_holo_dark 0x7f080029 +int drawable abc_item_background_holo_light 0x7f08002a +int drawable abc_list_divider_material 0x7f08002b +int drawable abc_list_divider_mtrl_alpha 0x7f08002c +int drawable abc_list_focused_holo 0x7f08002d +int drawable abc_list_longpressed_holo 0x7f08002e +int drawable abc_list_pressed_holo_dark 0x7f08002f +int drawable abc_list_pressed_holo_light 0x7f080030 +int drawable abc_list_selector_background_transition_holo_dark 0x7f080031 +int drawable abc_list_selector_background_transition_holo_light 0x7f080032 +int drawable abc_list_selector_disabled_holo_dark 0x7f080033 +int drawable abc_list_selector_disabled_holo_light 0x7f080034 +int drawable abc_list_selector_holo_dark 0x7f080035 +int drawable abc_list_selector_holo_light 0x7f080036 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f080037 +int drawable abc_popup_background_mtrl_mult 0x7f080038 +int drawable abc_ratingbar_indicator_material 0x7f080039 +int drawable abc_ratingbar_material 0x7f08003a +int drawable abc_ratingbar_small_material 0x7f08003b +int drawable abc_scrubber_control_off_mtrl_alpha 0x7f08003c +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f08003d +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f08003e +int drawable abc_scrubber_primary_mtrl_alpha 0x7f08003f +int drawable abc_scrubber_track_mtrl_alpha 0x7f080040 +int drawable abc_seekbar_thumb_material 0x7f080041 +int drawable abc_seekbar_tick_mark_material 0x7f080042 +int drawable abc_seekbar_track_material 0x7f080043 +int drawable abc_spinner_mtrl_am_alpha 0x7f080044 +int drawable abc_spinner_textfield_background_material 0x7f080045 +int drawable abc_switch_thumb_material 0x7f080046 +int drawable abc_switch_track_mtrl_alpha 0x7f080047 +int drawable abc_tab_indicator_material 0x7f080048 +int drawable abc_tab_indicator_mtrl_alpha 0x7f080049 +int drawable abc_text_cursor_material 0x7f08004a +int drawable abc_text_select_handle_left_mtrl_dark 0x7f08004b +int drawable abc_text_select_handle_left_mtrl_light 0x7f08004c +int drawable abc_text_select_handle_middle_mtrl_dark 0x7f08004d +int drawable abc_text_select_handle_middle_mtrl_light 0x7f08004e +int drawable abc_text_select_handle_right_mtrl_dark 0x7f08004f +int drawable abc_text_select_handle_right_mtrl_light 0x7f080050 +int drawable abc_textfield_activated_mtrl_alpha 0x7f080051 +int drawable abc_textfield_default_mtrl_alpha 0x7f080052 +int drawable abc_textfield_search_activated_mtrl_alpha 0x7f080053 +int drawable abc_textfield_search_default_mtrl_alpha 0x7f080054 +int drawable abc_textfield_search_material 0x7f080055 +int drawable abc_vector_test 0x7f080056 +int drawable btn_checkbox_checked_mtrl 0x7f080057 +int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f080058 +int drawable btn_checkbox_unchecked_mtrl 0x7f080059 +int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f08005a +int drawable btn_radio_off_mtrl 0x7f08005b +int drawable btn_radio_off_to_on_mtrl_animation 0x7f08005c +int drawable btn_radio_on_mtrl 0x7f08005d +int drawable btn_radio_on_to_off_mtrl_animation 0x7f08005e +int drawable notification_action_background 0x7f08005f +int drawable notification_bg 0x7f080060 +int drawable notification_bg_low 0x7f080061 +int drawable notification_bg_low_normal 0x7f080062 +int drawable notification_bg_low_pressed 0x7f080063 +int drawable notification_bg_normal 0x7f080064 +int drawable notification_bg_normal_pressed 0x7f080065 +int drawable notification_icon_background 0x7f080066 +int drawable notification_template_icon_bg 0x7f080067 +int drawable notification_template_icon_low_bg 0x7f080068 +int drawable notification_tile_bg 0x7f080069 +int drawable notify_panel_notification_icon_bg 0x7f08006a +int drawable tooltip_frame_dark 0x7f08006b +int drawable tooltip_frame_light 0x7f08006c +int id accessibility_action_clickable_span 0x7f0b0001 +int id accessibility_custom_action_0 0x7f0b0002 +int id accessibility_custom_action_1 0x7f0b0003 +int id accessibility_custom_action_10 0x7f0b0004 +int id accessibility_custom_action_11 0x7f0b0005 +int id accessibility_custom_action_12 0x7f0b0006 +int id accessibility_custom_action_13 0x7f0b0007 +int id accessibility_custom_action_14 0x7f0b0008 +int id accessibility_custom_action_15 0x7f0b0009 +int id accessibility_custom_action_16 0x7f0b000a +int id accessibility_custom_action_17 0x7f0b000b +int id accessibility_custom_action_18 0x7f0b000c +int id accessibility_custom_action_19 0x7f0b000d +int id accessibility_custom_action_2 0x7f0b000e +int id accessibility_custom_action_20 0x7f0b000f +int id accessibility_custom_action_21 0x7f0b0010 +int id accessibility_custom_action_22 0x7f0b0011 +int id accessibility_custom_action_23 0x7f0b0012 +int id accessibility_custom_action_24 0x7f0b0013 +int id accessibility_custom_action_25 0x7f0b0014 +int id accessibility_custom_action_26 0x7f0b0015 +int id accessibility_custom_action_27 0x7f0b0016 +int id accessibility_custom_action_28 0x7f0b0017 +int id accessibility_custom_action_29 0x7f0b0018 +int id accessibility_custom_action_3 0x7f0b0019 +int id accessibility_custom_action_30 0x7f0b001a +int id accessibility_custom_action_31 0x7f0b001b +int id accessibility_custom_action_4 0x7f0b001c +int id accessibility_custom_action_5 0x7f0b001d +int id accessibility_custom_action_6 0x7f0b001e +int id accessibility_custom_action_7 0x7f0b001f +int id accessibility_custom_action_8 0x7f0b0020 +int id accessibility_custom_action_9 0x7f0b0021 +int id action0 0x7f0b0022 +int id action_bar 0x7f0b0023 +int id action_bar_activity_content 0x7f0b0024 +int id action_bar_container 0x7f0b0025 +int id action_bar_root 0x7f0b0026 +int id action_bar_spinner 0x7f0b0027 +int id action_bar_subtitle 0x7f0b0028 +int id action_bar_title 0x7f0b0029 +int id action_container 0x7f0b002a +int id action_context_bar 0x7f0b002b +int id action_divider 0x7f0b002c +int id action_image 0x7f0b002d +int id action_menu_divider 0x7f0b002e +int id action_menu_presenter 0x7f0b002f +int id action_mode_bar 0x7f0b0030 +int id action_mode_bar_stub 0x7f0b0031 +int id action_mode_close_button 0x7f0b0032 +int id action_text 0x7f0b0033 +int id actions 0x7f0b0034 +int id activity_chooser_view_content 0x7f0b0035 +int id add 0x7f0b0036 +int id alertTitle 0x7f0b0037 +int id async 0x7f0b0038 +int id blocking 0x7f0b0039 +int id bottom 0x7f0b003a +int id buttonPanel 0x7f0b003b +int id cancel_action 0x7f0b003c +int id checkbox 0x7f0b003d +int id checked 0x7f0b003e +int id chronometer 0x7f0b003f +int id content 0x7f0b0040 +int id contentPanel 0x7f0b0041 +int id custom 0x7f0b0042 +int id customPanel 0x7f0b0043 +int id decor_content_parent 0x7f0b0044 +int id default_activity_button 0x7f0b0045 +int id dialog_button 0x7f0b0046 +int id edit_query 0x7f0b0047 +int id end 0x7f0b0048 +int id end_padder 0x7f0b0049 +int id expand_activities_button 0x7f0b004a +int id expanded_menu 0x7f0b004b +int id forever 0x7f0b004c +int id gone 0x7f0b004d +int id group_divider 0x7f0b004e +int id home 0x7f0b004f +int id icon 0x7f0b0050 +int id icon_group 0x7f0b0051 +int id image 0x7f0b0052 +int id info 0x7f0b0053 +int id invisible 0x7f0b0054 +int id italic 0x7f0b0055 +int id left 0x7f0b0056 +int id line1 0x7f0b0057 +int id line3 0x7f0b0058 +int id listMode 0x7f0b0059 +int id list_item 0x7f0b005a +int id media_actions 0x7f0b005b +int id message 0x7f0b005c +int id multiply 0x7f0b005d +int id none 0x7f0b005e +int id normal 0x7f0b005f +int id notification_background 0x7f0b0060 +int id notification_main_column 0x7f0b0061 +int id notification_main_column_container 0x7f0b0062 +int id off 0x7f0b0063 +int id on 0x7f0b0064 +int id packed 0x7f0b0065 +int id parent 0x7f0b0066 +int id parentPanel 0x7f0b0067 +int id percent 0x7f0b0068 +int id progress_circular 0x7f0b0069 +int id progress_horizontal 0x7f0b006a +int id radio 0x7f0b006b +int id right 0x7f0b006c +int id right_icon 0x7f0b006d +int id right_side 0x7f0b006e +int id screen 0x7f0b006f +int id scrollIndicatorDown 0x7f0b0070 +int id scrollIndicatorUp 0x7f0b0071 +int id scrollView 0x7f0b0072 +int id search_badge 0x7f0b0073 +int id search_bar 0x7f0b0074 +int id search_button 0x7f0b0075 +int id search_close_btn 0x7f0b0076 +int id search_edit_frame 0x7f0b0077 +int id search_go_btn 0x7f0b0078 +int id search_mag_icon 0x7f0b0079 +int id search_plate 0x7f0b007a +int id search_src_text 0x7f0b007b +int id search_voice_btn 0x7f0b007c +int id select_dialog_listview 0x7f0b007d +int id shortcut 0x7f0b007e +int id spacer 0x7f0b007f +int id split_action_bar 0x7f0b0080 +int id spread 0x7f0b0081 +int id spread_inside 0x7f0b0082 +int id src_atop 0x7f0b0083 +int id src_in 0x7f0b0084 +int id src_over 0x7f0b0085 +int id start 0x7f0b0086 +int id status_bar_latest_event_content 0x7f0b0087 +int id submenuarrow 0x7f0b0088 +int id submit_area 0x7f0b0089 +int id tabMode 0x7f0b008a +int id tag_accessibility_actions 0x7f0b008b +int id tag_accessibility_clickable_spans 0x7f0b008c +int id tag_accessibility_heading 0x7f0b008d +int id tag_accessibility_pane_title 0x7f0b008e +int id tag_screen_reader_focusable 0x7f0b008f +int id tag_transition_group 0x7f0b0090 +int id tag_unhandled_key_event_manager 0x7f0b0091 +int id tag_unhandled_key_listeners 0x7f0b0092 +int id text 0x7f0b0093 +int id text2 0x7f0b0094 +int id textSpacerNoButtons 0x7f0b0095 +int id textSpacerNoTitle 0x7f0b0096 +int id time 0x7f0b0097 +int id title 0x7f0b0098 +int id titleDividerNoCustom 0x7f0b0099 +int id title_template 0x7f0b009a +int id top 0x7f0b009b +int id topPanel 0x7f0b009c +int id unchecked 0x7f0b009d +int id uniform 0x7f0b009e +int id up 0x7f0b009f +int id wrap 0x7f0b00a0 +int id wrap_content 0x7f0b00a1 +int integer abc_config_activityDefaultDur 0x7f0c0001 +int integer abc_config_activityShortDur 0x7f0c0002 +int integer cancel_button_image_alpha 0x7f0c0003 +int integer config_tooltipAnimTime 0x7f0c0004 +int integer status_bar_notification_info_maxnum 0x7f0c0005 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x7f0d0001 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x7f0d0002 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x7f0d0003 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x7f0d0004 +int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x7f0d0005 +int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x7f0d0006 +int interpolator fast_out_slow_in 0x7f0d0007 +int layout abc_action_bar_title_item 0x7f0e0001 +int layout abc_action_bar_up_container 0x7f0e0002 +int layout abc_action_menu_item_layout 0x7f0e0003 +int layout abc_action_menu_layout 0x7f0e0004 +int layout abc_action_mode_bar 0x7f0e0005 +int layout abc_action_mode_close_item_material 0x7f0e0006 +int layout abc_activity_chooser_view 0x7f0e0007 +int layout abc_activity_chooser_view_list_item 0x7f0e0008 +int layout abc_alert_dialog_button_bar_material 0x7f0e0009 +int layout abc_alert_dialog_material 0x7f0e000a +int layout abc_alert_dialog_title_material 0x7f0e000b +int layout abc_cascading_menu_item_layout 0x7f0e000c +int layout abc_dialog_title_material 0x7f0e000d +int layout abc_expanded_menu_layout 0x7f0e000e +int layout abc_list_menu_item_checkbox 0x7f0e000f +int layout abc_list_menu_item_icon 0x7f0e0010 +int layout abc_list_menu_item_layout 0x7f0e0011 +int layout abc_list_menu_item_radio 0x7f0e0012 +int layout abc_popup_menu_header_item_layout 0x7f0e0013 +int layout abc_popup_menu_item_layout 0x7f0e0014 +int layout abc_screen_content_include 0x7f0e0015 +int layout abc_screen_simple 0x7f0e0016 +int layout abc_screen_simple_overlay_action_mode 0x7f0e0017 +int layout abc_screen_toolbar 0x7f0e0018 +int layout abc_search_dropdown_item_icons_2line 0x7f0e0019 +int layout abc_search_view 0x7f0e001a +int layout abc_select_dialog_material 0x7f0e001b +int layout abc_tooltip 0x7f0e001c +int layout custom_dialog 0x7f0e001d +int layout notification_action 0x7f0e001e +int layout notification_action_tombstone 0x7f0e001f +int layout notification_media_action 0x7f0e0020 +int layout notification_media_cancel_action 0x7f0e0021 +int layout notification_template_big_media 0x7f0e0022 +int layout notification_template_big_media_custom 0x7f0e0023 +int layout notification_template_big_media_narrow 0x7f0e0024 +int layout notification_template_big_media_narrow_custom 0x7f0e0025 +int layout notification_template_custom_big 0x7f0e0026 +int layout notification_template_icon_group 0x7f0e0027 +int layout notification_template_lines_media 0x7f0e0028 +int layout notification_template_media 0x7f0e0029 +int layout notification_template_media_custom 0x7f0e002a +int layout notification_template_part_chronometer 0x7f0e002b +int layout notification_template_part_time 0x7f0e002c +int layout select_dialog_item_material 0x7f0e002d +int layout select_dialog_multichoice_material 0x7f0e002e +int layout select_dialog_singlechoice_material 0x7f0e002f +int layout support_simple_spinner_dropdown_item 0x7f0e0030 +int string abc_action_bar_home_description 0x7f140001 +int string abc_action_bar_up_description 0x7f140002 +int string abc_action_menu_overflow_description 0x7f140003 +int string abc_action_mode_done 0x7f140004 +int string abc_activity_chooser_view_see_all 0x7f140005 +int string abc_activitychooserview_choose_application 0x7f140006 +int string abc_capital_off 0x7f140007 +int string abc_capital_on 0x7f140008 +int string abc_menu_alt_shortcut_label 0x7f140009 +int string abc_menu_ctrl_shortcut_label 0x7f14000a +int string abc_menu_delete_shortcut_label 0x7f14000b +int string abc_menu_enter_shortcut_label 0x7f14000c +int string abc_menu_function_shortcut_label 0x7f14000d +int string abc_menu_meta_shortcut_label 0x7f14000e +int string abc_menu_shift_shortcut_label 0x7f14000f +int string abc_menu_space_shortcut_label 0x7f140010 +int string abc_menu_sym_shortcut_label 0x7f140011 +int string abc_prepend_shortcut_label 0x7f140012 +int string abc_search_hint 0x7f140013 +int string abc_searchview_description_clear 0x7f140014 +int string abc_searchview_description_query 0x7f140015 +int string abc_searchview_description_search 0x7f140016 +int string abc_searchview_description_submit 0x7f140017 +int string abc_searchview_description_voice 0x7f140018 +int string abc_shareactionprovider_share_with 0x7f140019 +int string abc_shareactionprovider_share_with_application 0x7f14001a +int string abc_toolbar_collapse_description 0x7f14001b +int string search_menu_title 0x7f14001c +int string status_bar_notification_info_overflow 0x7f14001d +int style AlertDialog_AppCompat 0x7f150001 +int style AlertDialog_AppCompat_Light 0x7f150002 +int style Animation_AppCompat_Dialog 0x7f150003 +int style Animation_AppCompat_DropDownUp 0x7f150004 +int style Animation_AppCompat_Tooltip 0x7f150005 +int style Base_AlertDialog_AppCompat 0x7f150006 +int style Base_AlertDialog_AppCompat_Light 0x7f150007 +int style Base_Animation_AppCompat_Dialog 0x7f150008 +int style Base_Animation_AppCompat_DropDownUp 0x7f150009 +int style Base_Animation_AppCompat_Tooltip 0x7f15000a +int style Base_DialogWindowTitleBackground_AppCompat 0x7f15000b +int style Base_DialogWindowTitle_AppCompat 0x7f15000c +int style Base_TextAppearance_AppCompat 0x7f15000d +int style Base_TextAppearance_AppCompat_Body1 0x7f15000e +int style Base_TextAppearance_AppCompat_Body2 0x7f15000f +int style Base_TextAppearance_AppCompat_Button 0x7f150010 +int style Base_TextAppearance_AppCompat_Caption 0x7f150011 +int style Base_TextAppearance_AppCompat_Display1 0x7f150012 +int style Base_TextAppearance_AppCompat_Display2 0x7f150013 +int style Base_TextAppearance_AppCompat_Display3 0x7f150014 +int style Base_TextAppearance_AppCompat_Display4 0x7f150015 +int style Base_TextAppearance_AppCompat_Headline 0x7f150016 +int style Base_TextAppearance_AppCompat_Inverse 0x7f150017 +int style Base_TextAppearance_AppCompat_Large 0x7f150018 +int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f150019 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f15001a +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f15001b +int style Base_TextAppearance_AppCompat_Medium 0x7f15001c +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f15001d +int style Base_TextAppearance_AppCompat_Menu 0x7f15001e +int style Base_TextAppearance_AppCompat_SearchResult 0x7f15001f +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f150020 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f150021 +int style Base_TextAppearance_AppCompat_Small 0x7f150022 +int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f150023 +int style Base_TextAppearance_AppCompat_Subhead 0x7f150024 +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f150025 +int style Base_TextAppearance_AppCompat_Title 0x7f150026 +int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f150027 +int style Base_TextAppearance_AppCompat_Tooltip 0x7f150028 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f150029 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f15002a +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f15002b +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f15002c +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f15002d +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f15002e +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f15002f +int style Base_TextAppearance_AppCompat_Widget_Button 0x7f150030 +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150031 +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f150032 +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150033 +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f150034 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f150035 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f150036 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f150037 +int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f150038 +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f150039 +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f15003a +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f15003b +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f15003c +int style Base_ThemeOverlay_AppCompat 0x7f15003d +int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f15003e +int style Base_ThemeOverlay_AppCompat_Dark 0x7f15003f +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150040 +int style Base_ThemeOverlay_AppCompat_Dialog 0x7f150041 +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f150042 +int style Base_ThemeOverlay_AppCompat_Light 0x7f150043 +int style Base_Theme_AppCompat 0x7f150044 +int style Base_Theme_AppCompat_CompactMenu 0x7f150045 +int style Base_Theme_AppCompat_Dialog 0x7f150046 +int style Base_Theme_AppCompat_DialogWhenLarge 0x7f150047 +int style Base_Theme_AppCompat_Dialog_Alert 0x7f150048 +int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f150049 +int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f15004a +int style Base_Theme_AppCompat_Light 0x7f15004b +int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f15004c +int style Base_Theme_AppCompat_Light_Dialog 0x7f15004d +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f15004e +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f15004f +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f150050 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f150051 +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f150052 +int style Base_V21_Theme_AppCompat 0x7f150053 +int style Base_V21_Theme_AppCompat_Dialog 0x7f150054 +int style Base_V21_Theme_AppCompat_Light 0x7f150055 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f150056 +int style Base_V22_Theme_AppCompat 0x7f150057 +int style Base_V22_Theme_AppCompat_Light 0x7f150058 +int style Base_V23_Theme_AppCompat 0x7f150059 +int style Base_V23_Theme_AppCompat_Light 0x7f15005a +int style Base_V26_Theme_AppCompat 0x7f15005b +int style Base_V26_Theme_AppCompat_Light 0x7f15005c +int style Base_V26_Widget_AppCompat_Toolbar 0x7f15005d +int style Base_V28_Theme_AppCompat 0x7f15005e +int style Base_V28_Theme_AppCompat_Light 0x7f15005f +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f150060 +int style Base_V7_Theme_AppCompat 0x7f150061 +int style Base_V7_Theme_AppCompat_Dialog 0x7f150062 +int style Base_V7_Theme_AppCompat_Light 0x7f150063 +int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f150064 +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f150065 +int style Base_V7_Widget_AppCompat_EditText 0x7f150066 +int style Base_V7_Widget_AppCompat_Toolbar 0x7f150067 +int style Base_Widget_AppCompat_ActionBar 0x7f150068 +int style Base_Widget_AppCompat_ActionBar_Solid 0x7f150069 +int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f15006a +int style Base_Widget_AppCompat_ActionBar_TabText 0x7f15006b +int style Base_Widget_AppCompat_ActionBar_TabView 0x7f15006c +int style Base_Widget_AppCompat_ActionButton 0x7f15006d +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f15006e +int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f15006f +int style Base_Widget_AppCompat_ActionMode 0x7f150070 +int style Base_Widget_AppCompat_ActivityChooserView 0x7f150071 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f150072 +int style Base_Widget_AppCompat_Button 0x7f150073 +int style Base_Widget_AppCompat_ButtonBar 0x7f150074 +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f150075 +int style Base_Widget_AppCompat_Button_Borderless 0x7f150076 +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f150077 +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f150078 +int style Base_Widget_AppCompat_Button_Colored 0x7f150079 +int style Base_Widget_AppCompat_Button_Small 0x7f15007a +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f15007b +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f15007c +int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f15007d +int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f15007e +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f15007f +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f150080 +int style Base_Widget_AppCompat_EditText 0x7f150081 +int style Base_Widget_AppCompat_ImageButton 0x7f150082 +int style Base_Widget_AppCompat_Light_ActionBar 0x7f150083 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f150084 +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f150085 +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f150086 +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f150087 +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f150088 +int style Base_Widget_AppCompat_Light_PopupMenu 0x7f150089 +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f15008a +int style Base_Widget_AppCompat_ListMenuView 0x7f15008b +int style Base_Widget_AppCompat_ListPopupWindow 0x7f15008c +int style Base_Widget_AppCompat_ListView 0x7f15008d +int style Base_Widget_AppCompat_ListView_DropDown 0x7f15008e +int style Base_Widget_AppCompat_ListView_Menu 0x7f15008f +int style Base_Widget_AppCompat_PopupMenu 0x7f150090 +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f150091 +int style Base_Widget_AppCompat_PopupWindow 0x7f150092 +int style Base_Widget_AppCompat_ProgressBar 0x7f150093 +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f150094 +int style Base_Widget_AppCompat_RatingBar 0x7f150095 +int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f150096 +int style Base_Widget_AppCompat_RatingBar_Small 0x7f150097 +int style Base_Widget_AppCompat_SearchView 0x7f150098 +int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f150099 +int style Base_Widget_AppCompat_SeekBar 0x7f15009a +int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f15009b +int style Base_Widget_AppCompat_Spinner 0x7f15009c +int style Base_Widget_AppCompat_Spinner_Underlined 0x7f15009d +int style Base_Widget_AppCompat_TextView 0x7f15009e +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f15009f +int style Base_Widget_AppCompat_Toolbar 0x7f1500a0 +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f1500a1 +int style Platform_AppCompat 0x7f1500a2 +int style Platform_AppCompat_Light 0x7f1500a3 +int style Platform_ThemeOverlay_AppCompat 0x7f1500a4 +int style Platform_ThemeOverlay_AppCompat_Dark 0x7f1500a5 +int style Platform_ThemeOverlay_AppCompat_Light 0x7f1500a6 +int style Platform_V21_AppCompat 0x7f1500a7 +int style Platform_V21_AppCompat_Light 0x7f1500a8 +int style Platform_V25_AppCompat 0x7f1500a9 +int style Platform_V25_AppCompat_Light 0x7f1500aa +int style Platform_Widget_AppCompat_Spinner 0x7f1500ab +int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f1500ac +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f1500ad +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f1500ae +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f1500af +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f1500b0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f1500b1 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f1500b2 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f1500b3 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f1500b4 +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f1500b5 +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f1500b6 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f1500b7 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f1500b8 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f1500b9 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f1500ba +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f1500bb +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f1500bc +int style TextAppearance_AppCompat 0x7f1500bd +int style TextAppearance_AppCompat_Body1 0x7f1500be +int style TextAppearance_AppCompat_Body2 0x7f1500bf +int style TextAppearance_AppCompat_Button 0x7f1500c0 +int style TextAppearance_AppCompat_Caption 0x7f1500c1 +int style TextAppearance_AppCompat_Display1 0x7f1500c2 +int style TextAppearance_AppCompat_Display2 0x7f1500c3 +int style TextAppearance_AppCompat_Display3 0x7f1500c4 +int style TextAppearance_AppCompat_Display4 0x7f1500c5 +int style TextAppearance_AppCompat_Headline 0x7f1500c6 +int style TextAppearance_AppCompat_Inverse 0x7f1500c7 +int style TextAppearance_AppCompat_Large 0x7f1500c8 +int style TextAppearance_AppCompat_Large_Inverse 0x7f1500c9 +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f1500ca +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f1500cb +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f1500cc +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f1500cd +int style TextAppearance_AppCompat_Medium 0x7f1500ce +int style TextAppearance_AppCompat_Medium_Inverse 0x7f1500cf +int style TextAppearance_AppCompat_Menu 0x7f1500d0 +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f1500d1 +int style TextAppearance_AppCompat_SearchResult_Title 0x7f1500d2 +int style TextAppearance_AppCompat_Small 0x7f1500d3 +int style TextAppearance_AppCompat_Small_Inverse 0x7f1500d4 +int style TextAppearance_AppCompat_Subhead 0x7f1500d5 +int style TextAppearance_AppCompat_Subhead_Inverse 0x7f1500d6 +int style TextAppearance_AppCompat_Title 0x7f1500d7 +int style TextAppearance_AppCompat_Title_Inverse 0x7f1500d8 +int style TextAppearance_AppCompat_Tooltip 0x7f1500d9 +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f1500da +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f1500db +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f1500dc +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f1500dd +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f1500de +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f1500df +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f1500e0 +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f1500e1 +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f1500e2 +int style TextAppearance_AppCompat_Widget_Button 0x7f1500e3 +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f1500e4 +int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f1500e5 +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f1500e6 +int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f1500e7 +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f1500e8 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f1500e9 +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f1500ea +int style TextAppearance_AppCompat_Widget_Switch 0x7f1500eb +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f1500ec +int style TextAppearance_Compat_Notification 0x7f1500ed +int style TextAppearance_Compat_Notification_Info 0x7f1500ee +int style TextAppearance_Compat_Notification_Info_Media 0x7f1500ef +int style TextAppearance_Compat_Notification_Line2 0x7f1500f0 +int style TextAppearance_Compat_Notification_Line2_Media 0x7f1500f1 +int style TextAppearance_Compat_Notification_Media 0x7f1500f2 +int style TextAppearance_Compat_Notification_Time 0x7f1500f3 +int style TextAppearance_Compat_Notification_Time_Media 0x7f1500f4 +int style TextAppearance_Compat_Notification_Title 0x7f1500f5 +int style TextAppearance_Compat_Notification_Title_Media 0x7f1500f6 +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f1500f7 +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f1500f8 +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f1500f9 +int style ThemeOverlay_AppCompat 0x7f1500fa +int style ThemeOverlay_AppCompat_ActionBar 0x7f1500fb +int style ThemeOverlay_AppCompat_Dark 0x7f1500fc +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f1500fd +int style ThemeOverlay_AppCompat_DayNight 0x7f1500fe +int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x7f1500ff +int style ThemeOverlay_AppCompat_Dialog 0x7f150100 +int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f150101 +int style ThemeOverlay_AppCompat_Light 0x7f150102 +int style Theme_AppCompat 0x7f150103 +int style Theme_AppCompat_CompactMenu 0x7f150104 +int style Theme_AppCompat_DayNight 0x7f150105 +int style Theme_AppCompat_DayNight_DarkActionBar 0x7f150106 +int style Theme_AppCompat_DayNight_Dialog 0x7f150107 +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f150108 +int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f150109 +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f15010a +int style Theme_AppCompat_DayNight_NoActionBar 0x7f15010b +int style Theme_AppCompat_Dialog 0x7f15010c +int style Theme_AppCompat_DialogWhenLarge 0x7f15010d +int style Theme_AppCompat_Dialog_Alert 0x7f15010e +int style Theme_AppCompat_Dialog_MinWidth 0x7f15010f +int style Theme_AppCompat_Light 0x7f150110 +int style Theme_AppCompat_Light_DarkActionBar 0x7f150111 +int style Theme_AppCompat_Light_Dialog 0x7f150112 +int style Theme_AppCompat_Light_DialogWhenLarge 0x7f150113 +int style Theme_AppCompat_Light_Dialog_Alert 0x7f150114 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f150115 +int style Theme_AppCompat_Light_NoActionBar 0x7f150116 +int style Theme_AppCompat_NoActionBar 0x7f150117 +int style Widget_AppCompat_ActionBar 0x7f150118 +int style Widget_AppCompat_ActionBar_Solid 0x7f150119 +int style Widget_AppCompat_ActionBar_TabBar 0x7f15011a +int style Widget_AppCompat_ActionBar_TabText 0x7f15011b +int style Widget_AppCompat_ActionBar_TabView 0x7f15011c +int style Widget_AppCompat_ActionButton 0x7f15011d +int style Widget_AppCompat_ActionButton_CloseMode 0x7f15011e +int style Widget_AppCompat_ActionButton_Overflow 0x7f15011f +int style Widget_AppCompat_ActionMode 0x7f150120 +int style Widget_AppCompat_ActivityChooserView 0x7f150121 +int style Widget_AppCompat_AutoCompleteTextView 0x7f150122 +int style Widget_AppCompat_Button 0x7f150123 +int style Widget_AppCompat_ButtonBar 0x7f150124 +int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f150125 +int style Widget_AppCompat_Button_Borderless 0x7f150126 +int style Widget_AppCompat_Button_Borderless_Colored 0x7f150127 +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f150128 +int style Widget_AppCompat_Button_Colored 0x7f150129 +int style Widget_AppCompat_Button_Small 0x7f15012a +int style Widget_AppCompat_CompoundButton_CheckBox 0x7f15012b +int style Widget_AppCompat_CompoundButton_RadioButton 0x7f15012c +int style Widget_AppCompat_CompoundButton_Switch 0x7f15012d +int style Widget_AppCompat_DrawerArrowToggle 0x7f15012e +int style Widget_AppCompat_DropDownItem_Spinner 0x7f15012f +int style Widget_AppCompat_EditText 0x7f150130 +int style Widget_AppCompat_ImageButton 0x7f150131 +int style Widget_AppCompat_Light_ActionBar 0x7f150132 +int style Widget_AppCompat_Light_ActionBar_Solid 0x7f150133 +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f150134 +int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f150135 +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f150136 +int style Widget_AppCompat_Light_ActionBar_TabText 0x7f150137 +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f150138 +int style Widget_AppCompat_Light_ActionBar_TabView 0x7f150139 +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f15013a +int style Widget_AppCompat_Light_ActionButton 0x7f15013b +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f15013c +int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f15013d +int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f15013e +int style Widget_AppCompat_Light_ActivityChooserView 0x7f15013f +int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f150140 +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f150141 +int style Widget_AppCompat_Light_ListPopupWindow 0x7f150142 +int style Widget_AppCompat_Light_ListView_DropDown 0x7f150143 +int style Widget_AppCompat_Light_PopupMenu 0x7f150144 +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f150145 +int style Widget_AppCompat_Light_SearchView 0x7f150146 +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f150147 +int style Widget_AppCompat_ListMenuView 0x7f150148 +int style Widget_AppCompat_ListPopupWindow 0x7f150149 +int style Widget_AppCompat_ListView 0x7f15014a +int style Widget_AppCompat_ListView_DropDown 0x7f15014b +int style Widget_AppCompat_ListView_Menu 0x7f15014c +int style Widget_AppCompat_PopupMenu 0x7f15014d +int style Widget_AppCompat_PopupMenu_Overflow 0x7f15014e +int style Widget_AppCompat_PopupWindow 0x7f15014f +int style Widget_AppCompat_ProgressBar 0x7f150150 +int style Widget_AppCompat_ProgressBar_Horizontal 0x7f150151 +int style Widget_AppCompat_RatingBar 0x7f150152 +int style Widget_AppCompat_RatingBar_Indicator 0x7f150153 +int style Widget_AppCompat_RatingBar_Small 0x7f150154 +int style Widget_AppCompat_SearchView 0x7f150155 +int style Widget_AppCompat_SearchView_ActionBar 0x7f150156 +int style Widget_AppCompat_SeekBar 0x7f150157 +int style Widget_AppCompat_SeekBar_Discrete 0x7f150158 +int style Widget_AppCompat_Spinner 0x7f150159 +int style Widget_AppCompat_Spinner_DropDown 0x7f15015a +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f15015b +int style Widget_AppCompat_Spinner_Underlined 0x7f15015c +int style Widget_AppCompat_TextView 0x7f15015d +int style Widget_AppCompat_TextView_SpinnerItem 0x7f15015e +int style Widget_AppCompat_Toolbar 0x7f15015f +int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f150160 +int style Widget_Compat_NotificationActionContainer 0x7f150161 +int style Widget_Compat_NotificationActionText 0x7f150162 +int style Widget_Support_CoordinatorLayout 0x7f150163 +int[] styleable ActionBar { 0x7f040032, 0x7f040033, 0x7f040034, 0x7f04005f, 0x7f040060, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f040064, 0x7f040067, 0x7f04006c, 0x7f04006d, 0x7f040080, 0x7f040091, 0x7f040092, 0x7f040093, 0x7f040094, 0x7f040095, 0x7f04009a, 0x7f04009d, 0x7f0400e9, 0x7f0400f1, 0x7f0400fc, 0x7f0400ff, 0x7f040100, 0x7f04011b, 0x7f04011e, 0x7f04013a, 0x7f040143 } +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionBarLayout { 0x10100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x7f040032, 0x7f040033, 0x7f04004c, 0x7f040091, 0x7f04011e, 0x7f040143 } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x7f040082, 0x7f04009b } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable AlertDialog { 0x10100f2, 0x7f040042, 0x7f040043, 0x7f0400de, 0x7f0400df, 0x7f0400ee, 0x7f040110, 0x7f040111 } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable AnimatedStateListDrawableCompat_android_constantSize 0 +int styleable AnimatedStateListDrawableCompat_android_dither 1 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 +int styleable AnimatedStateListDrawableCompat_android_visible 5 +int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } +int styleable AnimatedStateListDrawableItem_android_drawable 0 +int styleable AnimatedStateListDrawableItem_android_id 1 +int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_fromId 1 +int styleable AnimatedStateListDrawableTransition_android_reversible 2 +int styleable AnimatedStateListDrawableTransition_android_toId 3 +int[] styleable AppCompatImageView { 0x1010119, 0x7f040116, 0x7f040138, 0x7f040139 } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x1010142, 0x7f040135, 0x7f040136, 0x7f040137 } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } +int styleable AppCompatTextHelper_android_drawableBottom 0 +int styleable AppCompatTextHelper_android_drawableEnd 1 +int styleable AppCompatTextHelper_android_drawableLeft 2 +int styleable AppCompatTextHelper_android_drawableRight 3 +int styleable AppCompatTextHelper_android_drawableStart 4 +int styleable AppCompatTextHelper_android_drawableTop 5 +int styleable AppCompatTextHelper_android_textAppearance 6 +int[] styleable AppCompatTextView { 0x1010034, 0x7f04002d, 0x7f04002e, 0x7f04002f, 0x7f040030, 0x7f040031, 0x7f040071, 0x7f040072, 0x7f040073, 0x7f040074, 0x7f040076, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f040083, 0x7f040085, 0x7f04008d, 0x7f04009f, 0x7f0400d9, 0x7f040124, 0x7f04012f } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_drawableBottomCompat 6 +int styleable AppCompatTextView_drawableEndCompat 7 +int styleable AppCompatTextView_drawableLeftCompat 8 +int styleable AppCompatTextView_drawableRightCompat 9 +int styleable AppCompatTextView_drawableStartCompat 10 +int styleable AppCompatTextView_drawableTint 11 +int styleable AppCompatTextView_drawableTintMode 12 +int styleable AppCompatTextView_drawableTopCompat 13 +int styleable AppCompatTextView_firstBaselineToTopHeight 14 +int styleable AppCompatTextView_fontFamily 15 +int styleable AppCompatTextView_fontVariationSettings 16 +int styleable AppCompatTextView_lastBaselineToBottomHeight 17 +int styleable AppCompatTextView_lineHeight 18 +int styleable AppCompatTextView_textAllCaps 19 +int styleable AppCompatTextView_textLocale 20 +int[] styleable AppCompatTheme { 0x7f040001, 0x7f040002, 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000d, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040022, 0x7f040023, 0x7f040024, 0x7f040025, 0x7f040026, 0x10100ae, 0x1010057, 0x7f04002c, 0x7f04003a, 0x7f04003b, 0x7f04003c, 0x7f04003d, 0x7f04003e, 0x7f04003f, 0x7f040044, 0x7f040045, 0x7f040049, 0x7f04004a, 0x7f040050, 0x7f040051, 0x7f040052, 0x7f040053, 0x7f040054, 0x7f040055, 0x7f040056, 0x7f040057, 0x7f040058, 0x7f040059, 0x7f040065, 0x7f040069, 0x7f04006a, 0x7f04006b, 0x7f04006e, 0x7f040070, 0x7f04007b, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f04007f, 0x7f040093, 0x7f040099, 0x7f0400da, 0x7f0400db, 0x7f0400dc, 0x7f0400dd, 0x7f0400e0, 0x7f0400e1, 0x7f0400e2, 0x7f0400e3, 0x7f0400e4, 0x7f0400e5, 0x7f0400e6, 0x7f0400e7, 0x7f0400e8, 0x7f0400f8, 0x7f0400f9, 0x7f0400fa, 0x7f0400fb, 0x7f0400fd, 0x7f040103, 0x7f040104, 0x7f040105, 0x7f040106, 0x7f040109, 0x7f04010a, 0x7f04010b, 0x7f04010c, 0x7f040113, 0x7f040114, 0x7f040122, 0x7f040125, 0x7f040126, 0x7f040127, 0x7f040128, 0x7f040129, 0x7f04012a, 0x7f04012b, 0x7f04012c, 0x7f04012d, 0x7f04012e, 0x7f040144, 0x7f040145, 0x7f040146, 0x7f040147, 0x7f04014d, 0x7f04014f, 0x7f040150, 0x7f040151, 0x7f040152, 0x7f040153, 0x7f040154, 0x7f040155, 0x7f040156, 0x7f040157, 0x7f040158 } +int styleable AppCompatTheme_actionBarDivider 0 +int styleable AppCompatTheme_actionBarItemBackground 1 +int styleable AppCompatTheme_actionBarPopupTheme 2 +int styleable AppCompatTheme_actionBarSize 3 +int styleable AppCompatTheme_actionBarSplitStyle 4 +int styleable AppCompatTheme_actionBarStyle 5 +int styleable AppCompatTheme_actionBarTabBarStyle 6 +int styleable AppCompatTheme_actionBarTabStyle 7 +int styleable AppCompatTheme_actionBarTabTextStyle 8 +int styleable AppCompatTheme_actionBarTheme 9 +int styleable AppCompatTheme_actionBarWidgetTheme 10 +int styleable AppCompatTheme_actionButtonStyle 11 +int styleable AppCompatTheme_actionDropDownStyle 12 +int styleable AppCompatTheme_actionMenuTextAppearance 13 +int styleable AppCompatTheme_actionMenuTextColor 14 +int styleable AppCompatTheme_actionModeBackground 15 +int styleable AppCompatTheme_actionModeCloseButtonStyle 16 +int styleable AppCompatTheme_actionModeCloseDrawable 17 +int styleable AppCompatTheme_actionModeCopyDrawable 18 +int styleable AppCompatTheme_actionModeCutDrawable 19 +int styleable AppCompatTheme_actionModeFindDrawable 20 +int styleable AppCompatTheme_actionModePasteDrawable 21 +int styleable AppCompatTheme_actionModePopupWindowStyle 22 +int styleable AppCompatTheme_actionModeSelectAllDrawable 23 +int styleable AppCompatTheme_actionModeShareDrawable 24 +int styleable AppCompatTheme_actionModeSplitBackground 25 +int styleable AppCompatTheme_actionModeStyle 26 +int styleable AppCompatTheme_actionModeWebSearchDrawable 27 +int styleable AppCompatTheme_actionOverflowButtonStyle 28 +int styleable AppCompatTheme_actionOverflowMenuStyle 29 +int styleable AppCompatTheme_activityChooserViewStyle 30 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 31 +int styleable AppCompatTheme_alertDialogCenterButtons 32 +int styleable AppCompatTheme_alertDialogStyle 33 +int styleable AppCompatTheme_alertDialogTheme 34 +int styleable AppCompatTheme_android_windowAnimationStyle 35 +int styleable AppCompatTheme_android_windowIsFloating 36 +int styleable AppCompatTheme_autoCompleteTextViewStyle 37 +int styleable AppCompatTheme_borderlessButtonStyle 38 +int styleable AppCompatTheme_buttonBarButtonStyle 39 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42 +int styleable AppCompatTheme_buttonBarStyle 43 +int styleable AppCompatTheme_buttonStyle 44 +int styleable AppCompatTheme_buttonStyleSmall 45 +int styleable AppCompatTheme_checkboxStyle 46 +int styleable AppCompatTheme_checkedTextViewStyle 47 +int styleable AppCompatTheme_colorAccent 48 +int styleable AppCompatTheme_colorBackgroundFloating 49 +int styleable AppCompatTheme_colorButtonNormal 50 +int styleable AppCompatTheme_colorControlActivated 51 +int styleable AppCompatTheme_colorControlHighlight 52 +int styleable AppCompatTheme_colorControlNormal 53 +int styleable AppCompatTheme_colorError 54 +int styleable AppCompatTheme_colorPrimary 55 +int styleable AppCompatTheme_colorPrimaryDark 56 +int styleable AppCompatTheme_colorSwitchThumbNormal 57 +int styleable AppCompatTheme_controlBackground 58 +int styleable AppCompatTheme_dialogCornerRadius 59 +int styleable AppCompatTheme_dialogPreferredPadding 60 +int styleable AppCompatTheme_dialogTheme 61 +int styleable AppCompatTheme_dividerHorizontal 62 +int styleable AppCompatTheme_dividerVertical 63 +int styleable AppCompatTheme_dropDownListViewStyle 64 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 65 +int styleable AppCompatTheme_editTextBackground 66 +int styleable AppCompatTheme_editTextColor 67 +int styleable AppCompatTheme_editTextStyle 68 +int styleable AppCompatTheme_homeAsUpIndicator 69 +int styleable AppCompatTheme_imageButtonStyle 70 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 71 +int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 72 +int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 73 +int styleable AppCompatTheme_listDividerAlertDialog 74 +int styleable AppCompatTheme_listMenuViewStyle 75 +int styleable AppCompatTheme_listPopupWindowStyle 76 +int styleable AppCompatTheme_listPreferredItemHeight 77 +int styleable AppCompatTheme_listPreferredItemHeightLarge 78 +int styleable AppCompatTheme_listPreferredItemHeightSmall 79 +int styleable AppCompatTheme_listPreferredItemPaddingEnd 80 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 81 +int styleable AppCompatTheme_listPreferredItemPaddingRight 82 +int styleable AppCompatTheme_listPreferredItemPaddingStart 83 +int styleable AppCompatTheme_panelBackground 84 +int styleable AppCompatTheme_panelMenuListTheme 85 +int styleable AppCompatTheme_panelMenuListWidth 86 +int styleable AppCompatTheme_popupMenuStyle 87 +int styleable AppCompatTheme_popupWindowStyle 88 +int styleable AppCompatTheme_radioButtonStyle 89 +int styleable AppCompatTheme_ratingBarStyle 90 +int styleable AppCompatTheme_ratingBarStyleIndicator 91 +int styleable AppCompatTheme_ratingBarStyleSmall 92 +int styleable AppCompatTheme_searchViewStyle 93 +int styleable AppCompatTheme_seekBarStyle 94 +int styleable AppCompatTheme_selectableItemBackground 95 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 96 +int styleable AppCompatTheme_spinnerDropDownItemStyle 97 +int styleable AppCompatTheme_spinnerStyle 98 +int styleable AppCompatTheme_switchStyle 99 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 100 +int styleable AppCompatTheme_textAppearanceListItem 101 +int styleable AppCompatTheme_textAppearanceListItemSecondary 102 +int styleable AppCompatTheme_textAppearanceListItemSmall 103 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 104 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 105 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 106 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 107 +int styleable AppCompatTheme_textColorAlertDialogListItem 108 +int styleable AppCompatTheme_textColorSearchUrl 109 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 110 +int styleable AppCompatTheme_toolbarStyle 111 +int styleable AppCompatTheme_tooltipForegroundColor 112 +int styleable AppCompatTheme_tooltipFrameBackground 113 +int styleable AppCompatTheme_viewInflaterClass 114 +int styleable AppCompatTheme_windowActionBar 115 +int styleable AppCompatTheme_windowActionBarOverlay 116 +int styleable AppCompatTheme_windowActionModeOverlay 117 +int styleable AppCompatTheme_windowFixedHeightMajor 118 +int styleable AppCompatTheme_windowFixedHeightMinor 119 +int styleable AppCompatTheme_windowFixedWidthMajor 120 +int styleable AppCompatTheme_windowFixedWidthMinor 121 +int styleable AppCompatTheme_windowMinWidthMajor 122 +int styleable AppCompatTheme_windowMinWidthMinor 123 +int styleable AppCompatTheme_windowNoTitle 124 +int[] styleable ButtonBarLayout { 0x7f040027 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable ColorStateListItem { 0x7f040028, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable CompoundButton { 0x1010107, 0x7f040040, 0x7f040046, 0x7f040047 } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonCompat 1 +int styleable CompoundButton_buttonTint 2 +int styleable CompoundButton_buttonTintMode 3 +int[] styleable ConstraintLayout_Layout { 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x7f040038, 0x7f040039, 0x7f040048, 0x7f04005b, 0x7f04005c, 0x7f0400a4, 0x7f0400a5, 0x7f0400a6, 0x7f0400a7, 0x7f0400a8, 0x7f0400a9, 0x7f0400aa, 0x7f0400ab, 0x7f0400ac, 0x7f0400ad, 0x7f0400ae, 0x7f0400af, 0x7f0400b0, 0x7f0400b1, 0x7f0400b2, 0x7f0400b3, 0x7f0400b4, 0x7f0400b5, 0x7f0400b6, 0x7f0400b7, 0x7f0400b8, 0x7f0400b9, 0x7f0400ba, 0x7f0400bb, 0x7f0400bc, 0x7f0400bd, 0x7f0400be, 0x7f0400bf, 0x7f0400c0, 0x7f0400c1, 0x7f0400c2, 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400c6, 0x7f0400c7, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400cb, 0x7f0400cc, 0x7f0400ce, 0x7f0400cf, 0x7f0400d0, 0x7f0400d1, 0x7f0400d2, 0x7f0400d3, 0x7f0400d4, 0x7f0400d5, 0x7f0400d8 } +int styleable ConstraintLayout_Layout_android_maxHeight 0 +int styleable ConstraintLayout_Layout_android_maxWidth 1 +int styleable ConstraintLayout_Layout_android_minHeight 2 +int styleable ConstraintLayout_Layout_android_minWidth 3 +int styleable ConstraintLayout_Layout_android_orientation 4 +int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 5 +int styleable ConstraintLayout_Layout_barrierDirection 6 +int styleable ConstraintLayout_Layout_chainUseRtl 7 +int styleable ConstraintLayout_Layout_constraintSet 8 +int styleable ConstraintLayout_Layout_constraint_referenced_ids 9 +int styleable ConstraintLayout_Layout_layout_constrainedHeight 10 +int styleable ConstraintLayout_Layout_layout_constrainedWidth 11 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 12 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 13 +int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 14 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 15 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 16 +int styleable ConstraintLayout_Layout_layout_constraintCircle 17 +int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 18 +int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 19 +int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 20 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 21 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 22 +int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 23 +int styleable ConstraintLayout_Layout_layout_constraintGuide_end 24 +int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 25 +int styleable ConstraintLayout_Layout_layout_constraintHeight_default 26 +int styleable ConstraintLayout_Layout_layout_constraintHeight_max 27 +int styleable ConstraintLayout_Layout_layout_constraintHeight_min 28 +int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 29 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 30 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 31 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 32 +int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 33 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 34 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 35 +int styleable ConstraintLayout_Layout_layout_constraintRight_creator 36 +int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 37 +int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 38 +int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 39 +int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 40 +int styleable ConstraintLayout_Layout_layout_constraintTop_creator 41 +int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 42 +int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 43 +int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 44 +int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 45 +int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 46 +int styleable ConstraintLayout_Layout_layout_constraintWidth_default 47 +int styleable ConstraintLayout_Layout_layout_constraintWidth_max 48 +int styleable ConstraintLayout_Layout_layout_constraintWidth_min 49 +int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 50 +int styleable ConstraintLayout_Layout_layout_editor_absoluteX 51 +int styleable ConstraintLayout_Layout_layout_editor_absoluteY 52 +int styleable ConstraintLayout_Layout_layout_goneMarginBottom 53 +int styleable ConstraintLayout_Layout_layout_goneMarginEnd 54 +int styleable ConstraintLayout_Layout_layout_goneMarginLeft 55 +int styleable ConstraintLayout_Layout_layout_goneMarginRight 56 +int styleable ConstraintLayout_Layout_layout_goneMarginStart 57 +int styleable ConstraintLayout_Layout_layout_goneMarginTop 58 +int styleable ConstraintLayout_Layout_layout_optimizationLevel 59 +int[] styleable ConstraintLayout_placeholder { 0x7f04005d, 0x7f040081 } +int styleable ConstraintLayout_placeholder_content 0 +int styleable ConstraintLayout_placeholder_emptyVisibility 1 +int[] styleable ConstraintSet { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x7f040038, 0x7f040039, 0x7f040048, 0x7f04005c, 0x7f0400a4, 0x7f0400a5, 0x7f0400a6, 0x7f0400a7, 0x7f0400a8, 0x7f0400a9, 0x7f0400aa, 0x7f0400ab, 0x7f0400ac, 0x7f0400ad, 0x7f0400ae, 0x7f0400af, 0x7f0400b0, 0x7f0400b1, 0x7f0400b2, 0x7f0400b3, 0x7f0400b4, 0x7f0400b5, 0x7f0400b6, 0x7f0400b7, 0x7f0400b8, 0x7f0400b9, 0x7f0400ba, 0x7f0400bb, 0x7f0400bc, 0x7f0400bd, 0x7f0400be, 0x7f0400bf, 0x7f0400c0, 0x7f0400c1, 0x7f0400c2, 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400c6, 0x7f0400c7, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400cb, 0x7f0400cc, 0x7f0400ce, 0x7f0400cf, 0x7f0400d0, 0x7f0400d1, 0x7f0400d2, 0x7f0400d3, 0x7f0400d4, 0x7f0400d5 } +int styleable ConstraintSet_android_alpha 0 +int styleable ConstraintSet_android_elevation 1 +int styleable ConstraintSet_android_id 2 +int styleable ConstraintSet_android_layout_height 3 +int styleable ConstraintSet_android_layout_marginBottom 4 +int styleable ConstraintSet_android_layout_marginEnd 5 +int styleable ConstraintSet_android_layout_marginLeft 6 +int styleable ConstraintSet_android_layout_marginRight 7 +int styleable ConstraintSet_android_layout_marginStart 8 +int styleable ConstraintSet_android_layout_marginTop 9 +int styleable ConstraintSet_android_layout_width 10 +int styleable ConstraintSet_android_maxHeight 11 +int styleable ConstraintSet_android_maxWidth 12 +int styleable ConstraintSet_android_minHeight 13 +int styleable ConstraintSet_android_minWidth 14 +int styleable ConstraintSet_android_orientation 15 +int styleable ConstraintSet_android_rotation 16 +int styleable ConstraintSet_android_rotationX 17 +int styleable ConstraintSet_android_rotationY 18 +int styleable ConstraintSet_android_scaleX 19 +int styleable ConstraintSet_android_scaleY 20 +int styleable ConstraintSet_android_transformPivotX 21 +int styleable ConstraintSet_android_transformPivotY 22 +int styleable ConstraintSet_android_translationX 23 +int styleable ConstraintSet_android_translationY 24 +int styleable ConstraintSet_android_translationZ 25 +int styleable ConstraintSet_android_visibility 26 +int styleable ConstraintSet_barrierAllowsGoneWidgets 27 +int styleable ConstraintSet_barrierDirection 28 +int styleable ConstraintSet_chainUseRtl 29 +int styleable ConstraintSet_constraint_referenced_ids 30 +int styleable ConstraintSet_layout_constrainedHeight 31 +int styleable ConstraintSet_layout_constrainedWidth 32 +int styleable ConstraintSet_layout_constraintBaseline_creator 33 +int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 34 +int styleable ConstraintSet_layout_constraintBottom_creator 35 +int styleable ConstraintSet_layout_constraintBottom_toBottomOf 36 +int styleable ConstraintSet_layout_constraintBottom_toTopOf 37 +int styleable ConstraintSet_layout_constraintCircle 38 +int styleable ConstraintSet_layout_constraintCircleAngle 39 +int styleable ConstraintSet_layout_constraintCircleRadius 40 +int styleable ConstraintSet_layout_constraintDimensionRatio 41 +int styleable ConstraintSet_layout_constraintEnd_toEndOf 42 +int styleable ConstraintSet_layout_constraintEnd_toStartOf 43 +int styleable ConstraintSet_layout_constraintGuide_begin 44 +int styleable ConstraintSet_layout_constraintGuide_end 45 +int styleable ConstraintSet_layout_constraintGuide_percent 46 +int styleable ConstraintSet_layout_constraintHeight_default 47 +int styleable ConstraintSet_layout_constraintHeight_max 48 +int styleable ConstraintSet_layout_constraintHeight_min 49 +int styleable ConstraintSet_layout_constraintHeight_percent 50 +int styleable ConstraintSet_layout_constraintHorizontal_bias 51 +int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 52 +int styleable ConstraintSet_layout_constraintHorizontal_weight 53 +int styleable ConstraintSet_layout_constraintLeft_creator 54 +int styleable ConstraintSet_layout_constraintLeft_toLeftOf 55 +int styleable ConstraintSet_layout_constraintLeft_toRightOf 56 +int styleable ConstraintSet_layout_constraintRight_creator 57 +int styleable ConstraintSet_layout_constraintRight_toLeftOf 58 +int styleable ConstraintSet_layout_constraintRight_toRightOf 59 +int styleable ConstraintSet_layout_constraintStart_toEndOf 60 +int styleable ConstraintSet_layout_constraintStart_toStartOf 61 +int styleable ConstraintSet_layout_constraintTop_creator 62 +int styleable ConstraintSet_layout_constraintTop_toBottomOf 63 +int styleable ConstraintSet_layout_constraintTop_toTopOf 64 +int styleable ConstraintSet_layout_constraintVertical_bias 65 +int styleable ConstraintSet_layout_constraintVertical_chainStyle 66 +int styleable ConstraintSet_layout_constraintVertical_weight 67 +int styleable ConstraintSet_layout_constraintWidth_default 68 +int styleable ConstraintSet_layout_constraintWidth_max 69 +int styleable ConstraintSet_layout_constraintWidth_min 70 +int styleable ConstraintSet_layout_constraintWidth_percent 71 +int styleable ConstraintSet_layout_editor_absoluteX 72 +int styleable ConstraintSet_layout_editor_absoluteY 73 +int styleable ConstraintSet_layout_goneMarginBottom 74 +int styleable ConstraintSet_layout_goneMarginEnd 75 +int styleable ConstraintSet_layout_goneMarginLeft 76 +int styleable ConstraintSet_layout_goneMarginRight 77 +int styleable ConstraintSet_layout_goneMarginStart 78 +int styleable ConstraintSet_layout_goneMarginTop 79 +int[] styleable CoordinatorLayout { 0x7f04009e, 0x7f040118 } +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x7f0400a1, 0x7f0400a2, 0x7f0400a3, 0x7f0400cd, 0x7f0400d6, 0x7f0400d7 } +int styleable CoordinatorLayout_Layout_android_layout_gravity 0 +int styleable CoordinatorLayout_Layout_layout_anchor 1 +int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 +int styleable CoordinatorLayout_Layout_layout_behavior 3 +int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 +int styleable CoordinatorLayout_Layout_layout_insetEdge 5 +int styleable CoordinatorLayout_Layout_layout_keyline 6 +int[] styleable DrawerArrowToggle { 0x7f04002a, 0x7f04002b, 0x7f040037, 0x7f04004f, 0x7f040075, 0x7f04008f, 0x7f040112, 0x7f040131 } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable FontFamily { 0x7f040086, 0x7f040087, 0x7f040088, 0x7f040089, 0x7f04008a, 0x7f04008b } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040084, 0x7f04008c, 0x7f04008d, 0x7f04008e, 0x7f04014c } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int[] styleable LinearConstraintLayout { 0x10100c4 } +int styleable LinearConstraintLayout_android_orientation 0 +int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x7f04006d, 0x7f04006f, 0x7f0400ec, 0x7f04010e } +int styleable LinearLayoutCompat_android_baselineAligned 0 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 +int styleable LinearLayoutCompat_android_gravity 2 +int styleable LinearLayoutCompat_android_orientation 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_height 1 +int styleable LinearLayoutCompat_Layout_android_layout_weight 2 +int styleable LinearLayoutCompat_Layout_android_layout_width 3 +int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } +int styleable MenuGroup_android_checkableBehavior 0 +int styleable MenuGroup_android_enabled 1 +int styleable MenuGroup_android_id 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_visible 5 +int[] styleable MenuItem { 0x7f04000e, 0x7f040020, 0x7f040021, 0x7f040029, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x7f04005e, 0x7f040096, 0x7f040097, 0x7f0400f2, 0x7f04010d, 0x7f040148 } +int styleable MenuItem_actionLayout 0 +int styleable MenuItem_actionProviderClass 1 +int styleable MenuItem_actionViewClass 2 +int styleable MenuItem_alphabeticModifiers 3 +int styleable MenuItem_android_alphabeticShortcut 4 +int styleable MenuItem_android_checkable 5 +int styleable MenuItem_android_checked 6 +int styleable MenuItem_android_enabled 7 +int styleable MenuItem_android_icon 8 +int styleable MenuItem_android_id 9 +int styleable MenuItem_android_menuCategory 10 +int styleable MenuItem_android_numericShortcut 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_android_orderInCategory 13 +int styleable MenuItem_android_title 14 +int styleable MenuItem_android_titleCondensed 15 +int styleable MenuItem_android_visible 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x7f0400fe, 0x7f040119 } +int styleable MenuView_android_headerBackground 0 +int styleable MenuView_android_horizontalDivider 1 +int styleable MenuView_android_itemBackground 2 +int styleable MenuView_android_itemIconDisabledAlpha 3 +int styleable MenuView_android_itemTextAppearance 4 +int styleable MenuView_android_verticalDivider 5 +int styleable MenuView_android_windowAnimationStyle 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x7f0400f3 } +int styleable PopupWindow_android_popupAnimationStyle 0 +int styleable PopupWindow_android_popupBackground 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x7f040117 } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable RecycleListView { 0x7f0400f4, 0x7f0400f7 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x7f04004b, 0x7f04005a, 0x7f040068, 0x7f040090, 0x7f040098, 0x7f0400a0, 0x7f040101, 0x7f040102, 0x7f040107, 0x7f040108, 0x7f04011a, 0x7f04011f, 0x7f04014e } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_imeOptions 1 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_maxWidth 3 +int styleable SearchView_closeIcon 4 +int styleable SearchView_commitIcon 5 +int styleable SearchView_defaultQueryHint 6 +int styleable SearchView_goIcon 7 +int styleable SearchView_iconifiedByDefault 8 +int styleable SearchView_layout 9 +int styleable SearchView_queryBackground 10 +int styleable SearchView_queryHint 11 +int styleable SearchView_searchHintIcon 12 +int styleable SearchView_searchIcon 13 +int styleable SearchView_submitBackground 14 +int styleable SearchView_suggestionRowLayout 15 +int styleable SearchView_voiceIcon 16 +int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x7f0400fc } +int styleable Spinner_android_dropDownWidth 0 +int styleable Spinner_android_entries 1 +int styleable Spinner_android_popupBackground 2 +int styleable Spinner_android_prompt 3 +int styleable Spinner_popupTheme 4 +int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable StateListDrawable_android_constantSize 0 +int styleable StateListDrawable_android_dither 1 +int styleable StateListDrawable_android_enterFadeDuration 2 +int styleable StateListDrawable_android_exitFadeDuration 3 +int styleable StateListDrawable_android_variablePadding 4 +int styleable StateListDrawable_android_visible 5 +int[] styleable StateListDrawableItem { 0x1010199 } +int styleable StateListDrawableItem_android_drawable 0 +int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x7f04010f, 0x7f040115, 0x7f040120, 0x7f040121, 0x7f040123, 0x7f040132, 0x7f040133, 0x7f040134, 0x7f040149, 0x7f04014a, 0x7f04014b } +int styleable SwitchCompat_android_textOff 0 +int styleable SwitchCompat_android_textOn 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x7f040085, 0x7f04008d, 0x7f040124, 0x7f04012f } +int styleable TextAppearance_android_fontFamily 0 +int styleable TextAppearance_android_shadowColor 1 +int styleable TextAppearance_android_shadowDx 2 +int styleable TextAppearance_android_shadowDy 3 +int styleable TextAppearance_android_shadowRadius 4 +int styleable TextAppearance_android_textColor 5 +int styleable TextAppearance_android_textColorHint 6 +int styleable TextAppearance_android_textColorLink 7 +int styleable TextAppearance_android_textFontWeight 8 +int styleable TextAppearance_android_textSize 9 +int styleable TextAppearance_android_textStyle 10 +int styleable TextAppearance_android_typeface 11 +int styleable TextAppearance_fontFamily 12 +int styleable TextAppearance_fontVariationSettings 13 +int styleable TextAppearance_textAllCaps 14 +int styleable TextAppearance_textLocale 15 +int[] styleable Toolbar { 0x10100af, 0x1010140, 0x7f040041, 0x7f04004d, 0x7f04004e, 0x7f04005f, 0x7f040060, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f040064, 0x7f0400e9, 0x7f0400ea, 0x7f0400eb, 0x7f0400ed, 0x7f0400ef, 0x7f0400f0, 0x7f0400fc, 0x7f04011b, 0x7f04011c, 0x7f04011d, 0x7f04013a, 0x7f04013b, 0x7f04013c, 0x7f04013d, 0x7f04013e, 0x7f04013f, 0x7f040140, 0x7f040141, 0x7f040142 } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_menu 14 +int styleable Toolbar_navigationContentDescription 15 +int styleable Toolbar_navigationIcon 16 +int styleable Toolbar_popupTheme 17 +int styleable Toolbar_subtitle 18 +int styleable Toolbar_subtitleTextAppearance 19 +int styleable Toolbar_subtitleTextColor 20 +int styleable Toolbar_title 21 +int styleable Toolbar_titleMargin 22 +int styleable Toolbar_titleMarginBottom 23 +int styleable Toolbar_titleMarginEnd 24 +int styleable Toolbar_titleMarginStart 25 +int styleable Toolbar_titleMarginTop 26 +int styleable Toolbar_titleMargins 27 +int styleable Toolbar_titleTextAppearance 28 +int styleable Toolbar_titleTextColor 29 +int[] styleable View { 0x10100da, 0x1010000, 0x7f0400f5, 0x7f0400f6, 0x7f040130 } +int styleable View_android_focusable 0 +int styleable View_android_theme 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x10100d4, 0x7f040035, 0x7f040036 } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_inflatedId 1 +int styleable ViewStubCompat_android_layout 2 diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/build-history.bin b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/build-history.bin new file mode 100644 index 0000000000..0a60372de6 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/build-history.bin differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab new file mode 100644 index 0000000000..28100f9669 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream new file mode 100644 index 0000000000..421508ba00 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len new file mode 100644 index 0000000000..d897d44a32 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len new file mode 100644 index 0000000000..01bdaa1da7 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at new file mode 100644 index 0000000000..f516b4c513 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i new file mode 100644 index 0000000000..f9dd54c0bb Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab new file mode 100644 index 0000000000..13c365dd11 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream new file mode 100644 index 0000000000..5fefbd7c4a Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len new file mode 100644 index 0000000000..8143849975 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len new file mode 100644 index 0000000000..01bdaa1da7 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at new file mode 100644 index 0000000000..19003d89e7 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i new file mode 100644 index 0000000000..9964039332 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab new file mode 100644 index 0000000000..ce954487e3 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream new file mode 100644 index 0000000000..394e225462 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len new file mode 100644 index 0000000000..11d24d584a Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len new file mode 100644 index 0000000000..2a17e6e5bd Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at new file mode 100644 index 0000000000..dd8166bbfc Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i new file mode 100644 index 0000000000..9370c0c189 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab new file mode 100644 index 0000000000..13c365dd11 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream new file mode 100644 index 0000000000..431f47845a Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len new file mode 100644 index 0000000000..8143849975 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len new file mode 100644 index 0000000000..01bdaa1da7 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at new file mode 100644 index 0000000000..19003d89e7 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i new file mode 100644 index 0000000000..5d4cfaae55 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab new file mode 100644 index 0000000000..77e4867b0e Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream new file mode 100644 index 0000000000..ae81cd0583 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len new file mode 100644 index 0000000000..24095040df Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len new file mode 100644 index 0000000000..a9f80ae024 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at new file mode 100644 index 0000000000..841341a069 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i new file mode 100644 index 0000000000..19ee7d1469 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab new file mode 100644 index 0000000000..d5748a3034 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream new file mode 100644 index 0000000000..1d1ee20901 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len new file mode 100644 index 0000000000..d897d44a32 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len new file mode 100644 index 0000000000..01bdaa1da7 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at new file mode 100644 index 0000000000..78afb772e2 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i new file mode 100644 index 0000000000..becad4a25a Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab new file mode 100644 index 0000000000..bdf584a84b Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream new file mode 100644 index 0000000000..a4bbd5abf7 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len new file mode 100644 index 0000000000..79ad34c0ca Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len new file mode 100644 index 0000000000..2a17e6e5bd Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at new file mode 100644 index 0000000000..39088e87b8 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i new file mode 100644 index 0000000000..5b3b52690d Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab new file mode 100644 index 0000000000..bdf584a84b Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream new file mode 100644 index 0000000000..2789eb6a95 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len new file mode 100644 index 0000000000..541378f226 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len new file mode 100644 index 0000000000..2a17e6e5bd Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at new file mode 100644 index 0000000000..9eb6a660cb Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i new file mode 100644 index 0000000000..55f40bcada Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab new file mode 100644 index 0000000000..2ceb12b8de --- /dev/null +++ b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab @@ -0,0 +1,2 @@ +2 +0 \ No newline at end of file diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab new file mode 100644 index 0000000000..4eb88452e3 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream new file mode 100644 index 0000000000..1d1ee20901 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len new file mode 100644 index 0000000000..d897d44a32 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len new file mode 100644 index 0000000000..01bdaa1da7 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at new file mode 100644 index 0000000000..7d30a43be1 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i new file mode 100644 index 0000000000..9da8c9f7cc Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab new file mode 100644 index 0000000000..5cbf720d5f Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream new file mode 100644 index 0000000000..100d20553b Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len new file mode 100644 index 0000000000..ccfcbf4136 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len new file mode 100644 index 0000000000..01bdaa1da7 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at new file mode 100644 index 0000000000..19003d89e7 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i new file mode 100644 index 0000000000..f768a77ff2 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab new file mode 100644 index 0000000000..eb007115d5 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream new file mode 100644 index 0000000000..edd98edfb5 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len new file mode 100644 index 0000000000..b287d95f65 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len new file mode 100644 index 0000000000..5ffc1b29da Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.at new file mode 100644 index 0000000000..9237a6d0b9 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i new file mode 100644 index 0000000000..ba5a1b4a61 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/last-build.bin b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/last-build.bin new file mode 100644 index 0000000000..c3d861df8c Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/compileDebugKotlin/last-build.bin differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin new file mode 100644 index 0000000000..f31e66c776 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab new file mode 100644 index 0000000000..ccbe21588a Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream new file mode 100644 index 0000000000..421508ba00 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len new file mode 100644 index 0000000000..d897d44a32 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.len new file mode 100644 index 0000000000..01bdaa1da7 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at new file mode 100644 index 0000000000..b26dcb3b39 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i new file mode 100644 index 0000000000..f9dd54c0bb Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab new file mode 100644 index 0000000000..13c365dd11 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream new file mode 100644 index 0000000000..5fefbd7c4a Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len new file mode 100644 index 0000000000..8143849975 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len new file mode 100644 index 0000000000..01bdaa1da7 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at new file mode 100644 index 0000000000..19003d89e7 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i new file mode 100644 index 0000000000..9964039332 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab new file mode 100644 index 0000000000..ce954487e3 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream new file mode 100644 index 0000000000..394e225462 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len new file mode 100644 index 0000000000..11d24d584a Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len new file mode 100644 index 0000000000..2a17e6e5bd Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at new file mode 100644 index 0000000000..dd8166bbfc Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i new file mode 100644 index 0000000000..9370c0c189 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab new file mode 100644 index 0000000000..13c365dd11 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream new file mode 100644 index 0000000000..431f47845a Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len new file mode 100644 index 0000000000..8143849975 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len new file mode 100644 index 0000000000..01bdaa1da7 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at new file mode 100644 index 0000000000..19003d89e7 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i new file mode 100644 index 0000000000..5d4cfaae55 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab new file mode 100644 index 0000000000..77e4867b0e Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream new file mode 100644 index 0000000000..ae81cd0583 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len new file mode 100644 index 0000000000..24095040df Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len new file mode 100644 index 0000000000..a9f80ae024 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at new file mode 100644 index 0000000000..841341a069 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i new file mode 100644 index 0000000000..19ee7d1469 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab new file mode 100644 index 0000000000..d5748a3034 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream new file mode 100644 index 0000000000..1d1ee20901 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len new file mode 100644 index 0000000000..d897d44a32 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len new file mode 100644 index 0000000000..01bdaa1da7 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at new file mode 100644 index 0000000000..78afb772e2 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i new file mode 100644 index 0000000000..becad4a25a Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab new file mode 100644 index 0000000000..bdf584a84b Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream new file mode 100644 index 0000000000..a4bbd5abf7 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len new file mode 100644 index 0000000000..79ad34c0ca Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len new file mode 100644 index 0000000000..2a17e6e5bd Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at new file mode 100644 index 0000000000..39088e87b8 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i new file mode 100644 index 0000000000..5b3b52690d Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab new file mode 100644 index 0000000000..bdf584a84b Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream new file mode 100644 index 0000000000..2789eb6a95 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len new file mode 100644 index 0000000000..541378f226 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len new file mode 100644 index 0000000000..2a17e6e5bd Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at new file mode 100644 index 0000000000..9eb6a660cb Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i new file mode 100644 index 0000000000..55f40bcada Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/counters.tab b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/counters.tab new file mode 100644 index 0000000000..2ceb12b8de --- /dev/null +++ b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/counters.tab @@ -0,0 +1,2 @@ +2 +0 \ No newline at end of file diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab new file mode 100644 index 0000000000..4eb88452e3 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream new file mode 100644 index 0000000000..1d1ee20901 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len new file mode 100644 index 0000000000..d897d44a32 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.len new file mode 100644 index 0000000000..01bdaa1da7 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at new file mode 100644 index 0000000000..7d30a43be1 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i new file mode 100644 index 0000000000..9da8c9f7cc Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab new file mode 100644 index 0000000000..5cbf720d5f Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream new file mode 100644 index 0000000000..100d20553b Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len new file mode 100644 index 0000000000..ccfcbf4136 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.len new file mode 100644 index 0000000000..01bdaa1da7 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at new file mode 100644 index 0000000000..19003d89e7 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i new file mode 100644 index 0000000000..f768a77ff2 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab new file mode 100644 index 0000000000..7872b0d616 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream new file mode 100644 index 0000000000..d6206bbb95 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len new file mode 100644 index 0000000000..cf8a30a1c9 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.len new file mode 100644 index 0000000000..3085af4de9 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.values.at b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.values.at new file mode 100644 index 0000000000..ff1bb03186 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.values.at differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i new file mode 100644 index 0000000000..cdb5a15299 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i.len b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i.len differ diff --git a/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin new file mode 100644 index 0000000000..ca57ecb3b3 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin differ diff --git a/modules/mogo-module-splash-noop/build/outputs/aar/mogo-module-splash-noop-debug.aar b/modules/mogo-module-splash-noop/build/outputs/aar/mogo-module-splash-noop-debug.aar new file mode 100644 index 0000000000..41913f9fa2 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/outputs/aar/mogo-module-splash-noop-debug.aar differ diff --git a/modules/mogo-module-splash-noop/build/outputs/logs/manifest-merger-debug-report.txt b/modules/mogo-module-splash-noop/build/outputs/logs/manifest-merger-debug-report.txt new file mode 100644 index 0000000000..c1b06787f0 --- /dev/null +++ b/modules/mogo-module-splash-noop/build/outputs/logs/manifest-merger-debug-report.txt @@ -0,0 +1,37 @@ +-- Merging decision tree log --- +manifest +ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:1:1-3:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:1:1-3:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:1:1-3:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:1:1-3:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:1:1-3:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:1:1-3:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:1:1-3:12 + package + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:2:5-44 + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + android:versionName + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:1:1-3:12 + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + android:versionCode + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:1:1-3:12 + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + xmlns:android + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:1:11-69 +uses-sdk +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml reason: use-sdk injection requested +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + android:targetSdkVersion + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + android:minSdkVersion + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml diff --git a/modules/mogo-module-splash-noop/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin b/modules/mogo-module-splash-noop/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin new file mode 100644 index 0000000000..aae35e6ec9 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin differ diff --git a/modules/mogo-module-splash-noop/build/tmp/kapt3/incApCache/debug/apt-cache.bin b/modules/mogo-module-splash-noop/build/tmp/kapt3/incApCache/debug/apt-cache.bin new file mode 100644 index 0000000000..9983310f1d Binary files /dev/null and b/modules/mogo-module-splash-noop/build/tmp/kapt3/incApCache/debug/apt-cache.bin differ diff --git a/modules/mogo-module-splash-noop/build/tmp/kapt3/incApCache/debug/classpath-entries.bin b/modules/mogo-module-splash-noop/build/tmp/kapt3/incApCache/debug/classpath-entries.bin new file mode 100644 index 0000000000..dce980ecb8 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/tmp/kapt3/incApCache/debug/classpath-entries.bin differ diff --git a/modules/mogo-module-splash-noop/build/tmp/kapt3/incApCache/debug/classpath-structure.bin b/modules/mogo-module-splash-noop/build/tmp/kapt3/incApCache/debug/classpath-structure.bin new file mode 100644 index 0000000000..bb1b603402 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/tmp/kapt3/incApCache/debug/classpath-structure.bin differ diff --git a/modules/mogo-module-splash-noop/build/tmp/kapt3/incApCache/debug/java-cache.bin b/modules/mogo-module-splash-noop/build/tmp/kapt3/incApCache/debug/java-cache.bin new file mode 100644 index 0000000000..64bae7c8d2 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/tmp/kapt3/incApCache/debug/java-cache.bin differ diff --git a/modules/mogo-module-splash-noop/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-module-splash-noop_debug.kotlin_module b/modules/mogo-module-splash-noop/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-module-splash-noop_debug.kotlin_module new file mode 100644 index 0000000000..609d952938 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-module-splash-noop_debug.kotlin_module differ diff --git a/modules/mogo-module-splash-noop/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/BydConst.class b/modules/mogo-module-splash-noop/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/BydConst.class new file mode 100644 index 0000000000..34a53fc49e Binary files /dev/null and b/modules/mogo-module-splash-noop/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/BydConst.class differ diff --git a/modules/mogo-module-splash-noop/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/BydProvider.class b/modules/mogo-module-splash-noop/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/BydProvider.class new file mode 100644 index 0000000000..1818d29932 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/BydProvider.class differ diff --git a/modules/mogo-module-splash-noop/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/BydConst.java b/modules/mogo-module-splash-noop/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/BydConst.java new file mode 100644 index 0000000000..5222ce80e9 --- /dev/null +++ b/modules/mogo-module-splash-noop/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/BydConst.java @@ -0,0 +1,17 @@ +package com.zhidao.mogo.module.splash; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u0002\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0006"}, d2 = {"Lcom/zhidao/mogo/module/splash/BydConst;", "", "()V", "MODULE_NAME", "", "PATH_NAME", "mogo-module-splash-noop_debug"}) +public final class BydConst { + @org.jetbrains.annotations.NotNull() + public static final java.lang.String MODULE_NAME = "MODULE_BYD"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String PATH_NAME = "/carmachine/byd"; + @org.jetbrains.annotations.NotNull() + public static final com.zhidao.mogo.module.splash.BydConst INSTANCE = null; + + private BydConst() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-splash-noop/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/BydConst.kapt_metadata b/modules/mogo-module-splash-noop/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/BydConst.kapt_metadata new file mode 100644 index 0000000000..42943b6ce0 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/BydConst.kapt_metadata differ diff --git a/modules/mogo-module-splash-noop/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/BydProvider.java b/modules/mogo-module-splash-noop/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/BydProvider.java new file mode 100644 index 0000000000..f2c814424d --- /dev/null +++ b/modules/mogo-module-splash-noop/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/BydProvider.java @@ -0,0 +1,90 @@ +package com.zhidao.mogo.module.splash; + +import java.lang.System; + +/** + * 比亚迪车机provider + * + * @author tongchenfei + */ +@com.alibaba.android.arouter.facade.annotation.Route(path = "/carmachine/byd") +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000X\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0002\n\u0000\b\u0007\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\u001e\u0010\u0003\u001a\u0004\u0018\u00010\u00042\b\u0010\u0005\u001a\u0004\u0018\u00010\u00062\b\u0010\u0007\u001a\u0004\u0018\u00010\bH\u0016J\u0014\u0010\t\u001a\u0004\u0018\u00010\n2\b\u0010\u0005\u001a\u0004\u0018\u00010\u0006H\u0016J\b\u0010\u000b\u001a\u00020\fH\u0016J\b\u0010\r\u001a\u00020\fH\u0016J\n\u0010\u000e\u001a\u0004\u0018\u00010\u000fH\u0016J\n\u0010\u0010\u001a\u0004\u0018\u00010\u0011H\u0016J\n\u0010\u0012\u001a\u0004\u0018\u00010\u0013H\u0016J\n\u0010\u0014\u001a\u0004\u0018\u00010\u0015H\u0016J\b\u0010\u0016\u001a\u00020\fH\u0016J\n\u0010\u0017\u001a\u0004\u0018\u00010\u0018H\u0016J\b\u0010\u0019\u001a\u00020\u001aH\u0016J\u0012\u0010\u001b\u001a\u00020\u001c2\b\u0010\u0005\u001a\u0004\u0018\u00010\u0006H\u0016\u00a8\u0006\u001d"}, d2 = {"Lcom/zhidao/mogo/module/splash/BydProvider;", "Lcom/mogo/service/module/IMogoModuleProvider;", "()V", "createFragment", "Landroidx/fragment/app/Fragment;", "context", "Landroid/content/Context;", "data", "Landroid/os/Bundle;", "createView", "Landroid/view/View;", "getAppName", "", "getAppPackage", "getCardLifecycle", "Lcom/mogo/service/module/IMogoModuleLifecycle;", "getLocationListener", "Lcom/mogo/map/location/IMogoLocationListener;", "getMapListener", "Lcom/mogo/map/listener/IMogoMapListener;", "getMarkerClickListener", "Lcom/mogo/map/marker/IMogoMarkerClickListener;", "getModuleName", "getNaviListener", "Lcom/mogo/map/navi/IMogoNaviListener;", "getType", "", "init", "", "mogo-module-splash-noop_debug"}) +public final class BydProvider implements com.mogo.service.module.IMogoModuleProvider { + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public com.mogo.map.navi.IMogoNaviListener getNaviListener() { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public com.mogo.map.location.IMogoLocationListener getLocationListener() { + return null; + } + + @java.lang.Override() + public int getType() { + return 0; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public com.mogo.map.marker.IMogoMarkerClickListener getMarkerClickListener() { + return null; + } + + @java.lang.Override() + public void init(@org.jetbrains.annotations.Nullable() + android.content.Context context) { + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public com.mogo.map.listener.IMogoMapListener getMapListener() { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String getAppPackage() { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public android.view.View createView(@org.jetbrains.annotations.Nullable() + android.content.Context context) { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public androidx.fragment.app.Fragment createFragment(@org.jetbrains.annotations.Nullable() + android.content.Context context, @org.jetbrains.annotations.Nullable() + android.os.Bundle data) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String getModuleName() { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String getAppName() { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public com.mogo.service.module.IMogoModuleLifecycle getCardLifecycle() { + return null; + } + + public BydProvider() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-splash-noop/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/BydProvider.kapt_metadata b/modules/mogo-module-splash-noop/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/BydProvider.kapt_metadata new file mode 100644 index 0000000000..95fe52fd0e Binary files /dev/null and b/modules/mogo-module-splash-noop/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/BydProvider.kapt_metadata differ diff --git a/modules/mogo-module-splash-noop/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java b/modules/mogo-module-splash-noop/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java new file mode 100644 index 0000000000..73693e1c55 --- /dev/null +++ b/modules/mogo-module-splash-noop/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java @@ -0,0 +1,4 @@ +package error; + +public final class NonExistentClass { +} \ No newline at end of file diff --git a/modules/mogo-module-splash-noop/build/tmp/kotlin-classes/debug/META-INF/mogo-module-splash-noop_debug.kotlin_module b/modules/mogo-module-splash-noop/build/tmp/kotlin-classes/debug/META-INF/mogo-module-splash-noop_debug.kotlin_module new file mode 100644 index 0000000000..609d952938 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/tmp/kotlin-classes/debug/META-INF/mogo-module-splash-noop_debug.kotlin_module differ diff --git a/modules/mogo-module-splash-noop/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/BydConst.class b/modules/mogo-module-splash-noop/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/BydConst.class new file mode 100644 index 0000000000..c0f0b02779 Binary files /dev/null and b/modules/mogo-module-splash-noop/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/BydConst.class differ diff --git a/modules/mogo-module-splash-noop/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/BydProvider.class b/modules/mogo-module-splash-noop/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/BydProvider.class new file mode 100644 index 0000000000..0f2eadacbe Binary files /dev/null and b/modules/mogo-module-splash-noop/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/BydProvider.class differ diff --git a/modules/mogo-module-splash/build/generated/source/buildConfig/debug/com/zhidao/mogo/module/splash/BuildConfig.java b/modules/mogo-module-splash/build/generated/source/buildConfig/debug/com/zhidao/mogo/module/splash/BuildConfig.java new file mode 100644 index 0000000000..1b17d555d6 --- /dev/null +++ b/modules/mogo-module-splash/build/generated/source/buildConfig/debug/com/zhidao/mogo/module/splash/BuildConfig.java @@ -0,0 +1,18 @@ +/** + * Automatically generated file. DO NOT MODIFY + */ +package com.zhidao.mogo.module.splash; + +public final class BuildConfig { + public static final boolean DEBUG = Boolean.parseBoolean("true"); + public static final String LIBRARY_PACKAGE_NAME = "com.zhidao.mogo.module.splash"; + /** + * @deprecated APPLICATION_ID is misleading in libraries. For the library package name use LIBRARY_PACKAGE_NAME + */ + @Deprecated + public static final String APPLICATION_ID = "com.zhidao.mogo.module.splash"; + public static final String BUILD_TYPE = "debug"; + public static final String FLAVOR = ""; + public static final int VERSION_CODE = 1; + public static final String VERSION_NAME = "2.0.16"; +} diff --git a/modules/mogo-module-splash/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$splash.java b/modules/mogo-module-splash/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$splash.java new file mode 100644 index 0000000000..77caf8941f --- /dev/null +++ b/modules/mogo-module-splash/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Group$$splash.java @@ -0,0 +1,18 @@ +package com.alibaba.android.arouter.routes; + +import com.alibaba.android.arouter.facade.enums.RouteType; +import com.alibaba.android.arouter.facade.model.RouteMeta; +import com.alibaba.android.arouter.facade.template.IRouteGroup; +import com.zhidao.mogo.module.splash.SplashProvider; +import java.lang.Override; +import java.lang.String; +import java.util.Map; + +/** + * DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER. */ +public class ARouter$$Group$$splash implements IRouteGroup { + @Override + public void loadInto(Map atlas) { + atlas.put("/splash/api", RouteMeta.build(RouteType.PROVIDER, SplashProvider.class, "/splash/api", "splash", null, -1, -2147483648)); + } +} diff --git a/modules/mogo-module-splash/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogomodulesplash.java b/modules/mogo-module-splash/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogomodulesplash.java new file mode 100644 index 0000000000..757db6d16b --- /dev/null +++ b/modules/mogo-module-splash/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogomodulesplash.java @@ -0,0 +1,18 @@ +package com.alibaba.android.arouter.routes; + +import com.alibaba.android.arouter.facade.enums.RouteType; +import com.alibaba.android.arouter.facade.model.RouteMeta; +import com.alibaba.android.arouter.facade.template.IProviderGroup; +import com.zhidao.mogo.module.splash.SplashProvider; +import java.lang.Override; +import java.lang.String; +import java.util.Map; + +/** + * DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER. */ +public class ARouter$$Providers$$mogomodulesplash implements IProviderGroup { + @Override + public void loadInto(Map providers) { + providers.put("com.mogo.service.module.IMogoModuleProvider", RouteMeta.build(RouteType.PROVIDER, SplashProvider.class, "/splash/api", "splash", null, -1, -2147483648)); + } +} diff --git a/modules/mogo-module-splash/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Root$$mogomodulesplash.java b/modules/mogo-module-splash/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Root$$mogomodulesplash.java new file mode 100644 index 0000000000..8375e790cf --- /dev/null +++ b/modules/mogo-module-splash/build/generated/source/kapt/debug/com/alibaba/android/arouter/routes/ARouter$$Root$$mogomodulesplash.java @@ -0,0 +1,17 @@ +package com.alibaba.android.arouter.routes; + +import com.alibaba.android.arouter.facade.template.IRouteGroup; +import com.alibaba.android.arouter.facade.template.IRouteRoot; +import java.lang.Class; +import java.lang.Override; +import java.lang.String; +import java.util.Map; + +/** + * DO NOT EDIT THIS FILE!!! IT WAS GENERATED BY AROUTER. */ +public class ARouter$$Root$$mogomodulesplash implements IRouteRoot { + @Override + public void loadInto(Map> routes) { + routes.put("splash", ARouter$$Group$$splash.class); + } +} diff --git a/modules/mogo-module-splash/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml b/modules/mogo-module-splash/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml new file mode 100644 index 0000000000..fca2138b85 --- /dev/null +++ b/modules/mogo-module-splash/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/AndroidManifest.xml @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-splash/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json b/modules/mogo-module-splash/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json new file mode 100644 index 0000000000..f2631d9684 --- /dev/null +++ b/modules/mogo-module-splash/build/intermediates/aapt_friendly_merged_manifests/debug/aapt/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"AAPT_FRIENDLY_MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"2.0.16","enabled":true,"outputFile":"mogo-module-splash-debug.aar","fullName":"debug","baseName":"debug"},"path":"AndroidManifest.xml","properties":{"packageId":"com.zhidao.mogo.module.splash","split":""}}] \ No newline at end of file diff --git a/modules/mogo-module-splash/build/intermediates/annotation_processor_list/debug/annotationProcessors.json b/modules/mogo-module-splash/build/intermediates/annotation_processor_list/debug/annotationProcessors.json new file mode 100644 index 0000000000..9e26dfeeb6 --- /dev/null +++ b/modules/mogo-module-splash/build/intermediates/annotation_processor_list/debug/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/modules/mogo-module-splash/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt b/modules/mogo-module-splash/build/intermediates/annotations_typedef_file/debug/extractDebugAnnotations/typedefs.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/modules/mogo-module-splash/build/intermediates/compile_library_classes/debug/classes.jar b/modules/mogo-module-splash/build/intermediates/compile_library_classes/debug/classes.jar new file mode 100644 index 0000000000..95a00eb6d4 Binary files /dev/null and b/modules/mogo-module-splash/build/intermediates/compile_library_classes/debug/classes.jar differ diff --git a/modules/mogo-module-splash/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar b/modules/mogo-module-splash/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar new file mode 100644 index 0000000000..598d4dd68f Binary files /dev/null and b/modules/mogo-module-splash/build/intermediates/compile_only_not_namespaced_r_class_jar/debug/R.jar differ diff --git a/modules/mogo-module-splash/build/intermediates/consumer_proguard_file/debug/proguard.txt b/modules/mogo-module-splash/build/intermediates/consumer_proguard_file/debug/proguard.txt new file mode 100644 index 0000000000..633730835f --- /dev/null +++ b/modules/mogo-module-splash/build/intermediates/consumer_proguard_file/debug/proguard.txt @@ -0,0 +1,2 @@ +#-----ModuleSplash----- +-keep class com.zhidao.mogo.module.splash.SplashConst{*;} \ No newline at end of file diff --git a/modules/mogo-module-splash/build/intermediates/incremental/debug-mergeJavaRes/merge-state b/modules/mogo-module-splash/build/intermediates/incremental/debug-mergeJavaRes/merge-state new file mode 100644 index 0000000000..19b3372cfc Binary files /dev/null and b/modules/mogo-module-splash/build/intermediates/incremental/debug-mergeJavaRes/merge-state differ diff --git a/modules/mogo-module-splash/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml b/modules/mogo-module-splash/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml new file mode 100644 index 0000000000..6d1612ad02 --- /dev/null +++ b/modules/mogo-module-splash/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-splash/build/intermediates/incremental/mergeDebugShaders/merger.xml b/modules/mogo-module-splash/build/intermediates/incremental/mergeDebugShaders/merger.xml new file mode 100644 index 0000000000..83880d6220 --- /dev/null +++ b/modules/mogo-module-splash/build/intermediates/incremental/mergeDebugShaders/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-splash/build/intermediates/incremental/packageDebugAssets/merger.xml b/modules/mogo-module-splash/build/intermediates/incremental/packageDebugAssets/merger.xml new file mode 100644 index 0000000000..32a051f73b --- /dev/null +++ b/modules/mogo-module-splash/build/intermediates/incremental/packageDebugAssets/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-splash/build/intermediates/incremental/packageDebugResources/compile-file-map.properties b/modules/mogo-module-splash/build/intermediates/incremental/packageDebugResources/compile-file-map.properties new file mode 100644 index 0000000000..c4918aac79 --- /dev/null +++ b/modules/mogo-module-splash/build/intermediates/incremental/packageDebugResources/compile-file-map.properties @@ -0,0 +1,6 @@ +#Tue Aug 31 15:00:18 CST 2021 +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/res/drawable/byd_enter_btn_bg.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/build/intermediates/packaged_res/debug/drawable/byd_enter_btn_bg.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/res/drawable/byd_count_down_bg.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/build/intermediates/packaged_res/debug/drawable/byd_count_down_bg.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/res/layout/fragment_byd_splash.xml=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/build/intermediates/packaged_res/debug/layout/fragment_byd_splash.xml +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/res/drawable/module_byd_splash.webp=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/build/intermediates/packaged_res/debug/drawable/module_byd_splash.webp +/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/res/drawable-xhdpi-1920x1000/module_byd_splash.webp=/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/build/intermediates/packaged_res/debug/drawable-xhdpi-1920x1000-v4/module_byd_splash.webp diff --git a/modules/mogo-module-splash/build/intermediates/incremental/packageDebugResources/merger.xml b/modules/mogo-module-splash/build/intermediates/incremental/packageDebugResources/merger.xml new file mode 100644 index 0000000000..4d95af4fc4 --- /dev/null +++ b/modules/mogo-module-splash/build/intermediates/incremental/packageDebugResources/merger.xml @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/modules/mogo-module-splash/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$splash.class b/modules/mogo-module-splash/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$splash.class new file mode 100644 index 0000000000..f01da78219 Binary files /dev/null and b/modules/mogo-module-splash/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Group$$splash.class differ diff --git a/modules/mogo-module-splash/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogomodulesplash.class b/modules/mogo-module-splash/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogomodulesplash.class new file mode 100644 index 0000000000..4d84482063 Binary files /dev/null and b/modules/mogo-module-splash/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Providers$$mogomodulesplash.class differ diff --git a/modules/mogo-module-splash/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Root$$mogomodulesplash.class b/modules/mogo-module-splash/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Root$$mogomodulesplash.class new file mode 100644 index 0000000000..75b08be12f Binary files /dev/null and b/modules/mogo-module-splash/build/intermediates/javac/debug/classes/com/alibaba/android/arouter/routes/ARouter$$Root$$mogomodulesplash.class differ diff --git a/modules/mogo-module-splash/build/intermediates/javac/debug/classes/com/zhidao/mogo/module/splash/BuildConfig.class b/modules/mogo-module-splash/build/intermediates/javac/debug/classes/com/zhidao/mogo/module/splash/BuildConfig.class new file mode 100644 index 0000000000..13eefe7aef Binary files /dev/null and b/modules/mogo-module-splash/build/intermediates/javac/debug/classes/com/zhidao/mogo/module/splash/BuildConfig.class differ diff --git a/modules/mogo-module-splash/build/intermediates/library_java_res/debug/res.jar b/modules/mogo-module-splash/build/intermediates/library_java_res/debug/res.jar new file mode 100644 index 0000000000..ad0b40c9c1 Binary files /dev/null and b/modules/mogo-module-splash/build/intermediates/library_java_res/debug/res.jar differ diff --git a/modules/mogo-module-splash/build/intermediates/library_manifest/debug/AndroidManifest.xml b/modules/mogo-module-splash/build/intermediates/library_manifest/debug/AndroidManifest.xml new file mode 100644 index 0000000000..fca2138b85 --- /dev/null +++ b/modules/mogo-module-splash/build/intermediates/library_manifest/debug/AndroidManifest.xml @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-splash/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt b/modules/mogo-module-splash/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt new file mode 100644 index 0000000000..5270cafa06 --- /dev/null +++ b/modules/mogo-module-splash/build/intermediates/local_only_symbol_list/debug/parseDebugLibraryResources/R-def.txt @@ -0,0 +1,8 @@ +R_DEF: Internal format may change without notice +local +drawable byd_count_down_bg +drawable byd_enter_btn_bg +drawable module_byd_splash +id tvByd +id tvCountDown +layout fragment_byd_splash diff --git a/modules/mogo-module-splash/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/modules/mogo-module-splash/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt new file mode 100644 index 0000000000..58f10201d6 --- /dev/null +++ b/modules/mogo-module-splash/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt @@ -0,0 +1,13 @@ +1 +2 +6 +7 /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml +9 android:targetSdkVersion="19" /> +9-->/Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml +10 +11 diff --git a/modules/mogo-module-splash/build/intermediates/merged_java_res/debug/out.jar b/modules/mogo-module-splash/build/intermediates/merged_java_res/debug/out.jar new file mode 100644 index 0000000000..e7c94ca92d Binary files /dev/null and b/modules/mogo-module-splash/build/intermediates/merged_java_res/debug/out.jar differ diff --git a/modules/mogo-module-splash/build/intermediates/merged_manifests/debug/output.json b/modules/mogo-module-splash/build/intermediates/merged_manifests/debug/output.json new file mode 100644 index 0000000000..e4c6d64ed0 --- /dev/null +++ b/modules/mogo-module-splash/build/intermediates/merged_manifests/debug/output.json @@ -0,0 +1 @@ +[{"outputType":{"type":"MERGED_MANIFESTS"},"apkData":{"type":"MAIN","splits":[],"versionCode":1,"versionName":"2.0.16","enabled":true,"outputFile":"mogo-module-splash-debug.aar","fullName":"debug","baseName":"debug"},"path":"../../library_manifest/debug/AndroidManifest.xml","properties":{"packageId":"com.zhidao.mogo.module.splash","split":""}}] \ No newline at end of file diff --git a/modules/mogo-module-splash/build/intermediates/packaged-classes/debug/classes.jar b/modules/mogo-module-splash/build/intermediates/packaged-classes/debug/classes.jar new file mode 100644 index 0000000000..7b364c2c92 Binary files /dev/null and b/modules/mogo-module-splash/build/intermediates/packaged-classes/debug/classes.jar differ diff --git a/modules/mogo-module-splash/build/intermediates/packaged_res/debug/drawable-xhdpi-1920x1000-v4/module_byd_splash.webp b/modules/mogo-module-splash/build/intermediates/packaged_res/debug/drawable-xhdpi-1920x1000-v4/module_byd_splash.webp new file mode 100644 index 0000000000..d39b3abe55 Binary files /dev/null and b/modules/mogo-module-splash/build/intermediates/packaged_res/debug/drawable-xhdpi-1920x1000-v4/module_byd_splash.webp differ diff --git a/modules/mogo-module-splash/build/intermediates/packaged_res/debug/drawable/byd_count_down_bg.xml b/modules/mogo-module-splash/build/intermediates/packaged_res/debug/drawable/byd_count_down_bg.xml new file mode 100644 index 0000000000..83bc413969 --- /dev/null +++ b/modules/mogo-module-splash/build/intermediates/packaged_res/debug/drawable/byd_count_down_bg.xml @@ -0,0 +1,8 @@ + + + + + \ No newline at end of file diff --git a/modules/mogo-module-splash/build/intermediates/packaged_res/debug/drawable/byd_enter_btn_bg.xml b/modules/mogo-module-splash/build/intermediates/packaged_res/debug/drawable/byd_enter_btn_bg.xml new file mode 100644 index 0000000000..e34b2f6181 --- /dev/null +++ b/modules/mogo-module-splash/build/intermediates/packaged_res/debug/drawable/byd_enter_btn_bg.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-splash/build/intermediates/packaged_res/debug/drawable/module_byd_splash.webp b/modules/mogo-module-splash/build/intermediates/packaged_res/debug/drawable/module_byd_splash.webp new file mode 100644 index 0000000000..d39b3abe55 Binary files /dev/null and b/modules/mogo-module-splash/build/intermediates/packaged_res/debug/drawable/module_byd_splash.webp differ diff --git a/modules/mogo-module-splash/build/intermediates/packaged_res/debug/layout/fragment_byd_splash.xml b/modules/mogo-module-splash/build/intermediates/packaged_res/debug/layout/fragment_byd_splash.xml new file mode 100644 index 0000000000..bb79601719 --- /dev/null +++ b/modules/mogo-module-splash/build/intermediates/packaged_res/debug/layout/fragment_byd_splash.xml @@ -0,0 +1,41 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/modules/mogo-module-splash/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt b/modules/mogo-module-splash/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt new file mode 100644 index 0000000000..c7a4245029 --- /dev/null +++ b/modules/mogo-module-splash/build/intermediates/res/symbol-table-with-package/debug/package-aware-r.txt @@ -0,0 +1,1347 @@ +com.zhidao.mogo.module.splash +anim abc_fade_in +anim abc_fade_out +anim abc_grow_fade_in_from_bottom +anim abc_popup_enter +anim abc_popup_exit +anim abc_shrink_fade_out_from_bottom +anim abc_slide_in_bottom +anim abc_slide_in_top +anim abc_slide_out_bottom +anim abc_slide_out_top +anim abc_tooltip_enter +anim abc_tooltip_exit +anim btn_checkbox_to_checked_box_inner_merged_animation +anim btn_checkbox_to_checked_box_outer_merged_animation +anim btn_checkbox_to_checked_icon_null_animation +anim btn_checkbox_to_unchecked_box_inner_merged_animation +anim btn_checkbox_to_unchecked_check_path_merged_animation +anim btn_checkbox_to_unchecked_icon_null_animation +anim btn_radio_to_off_mtrl_dot_group_animation +anim btn_radio_to_off_mtrl_ring_outer_animation +anim btn_radio_to_off_mtrl_ring_outer_path_animation +anim btn_radio_to_on_mtrl_dot_group_animation +anim btn_radio_to_on_mtrl_ring_outer_animation +anim btn_radio_to_on_mtrl_ring_outer_path_animation +attr actionBarDivider +attr actionBarItemBackground +attr actionBarPopupTheme +attr actionBarSize +attr actionBarSplitStyle +attr actionBarStyle +attr actionBarTabBarStyle +attr actionBarTabStyle +attr actionBarTabTextStyle +attr actionBarTheme +attr actionBarWidgetTheme +attr actionButtonStyle +attr actionDropDownStyle +attr actionLayout +attr actionMenuTextAppearance +attr actionMenuTextColor +attr actionModeBackground +attr actionModeCloseButtonStyle +attr actionModeCloseDrawable +attr actionModeCopyDrawable +attr actionModeCutDrawable +attr actionModeFindDrawable +attr actionModePasteDrawable +attr actionModePopupWindowStyle +attr actionModeSelectAllDrawable +attr actionModeShareDrawable +attr actionModeSplitBackground +attr actionModeStyle +attr actionModeWebSearchDrawable +attr actionOverflowButtonStyle +attr actionOverflowMenuStyle +attr actionProviderClass +attr actionViewClass +attr activityChooserViewStyle +attr alertDialogButtonGroupStyle +attr alertDialogCenterButtons +attr alertDialogStyle +attr alertDialogTheme +attr allowStacking +attr alpha +attr alphabeticModifiers +attr arrowHeadLength +attr arrowShaftLength +attr autoCompleteTextViewStyle +attr autoSizeMaxTextSize +attr autoSizeMinTextSize +attr autoSizePresetSizes +attr autoSizeStepGranularity +attr autoSizeTextType +attr background +attr backgroundSplit +attr backgroundStacked +attr backgroundTint +attr backgroundTintMode +attr barLength +attr barrierAllowsGoneWidgets +attr barrierDirection +attr borderlessButtonStyle +attr buttonBarButtonStyle +attr buttonBarNegativeButtonStyle +attr buttonBarNeutralButtonStyle +attr buttonBarPositiveButtonStyle +attr buttonBarStyle +attr buttonCompat +attr buttonGravity +attr buttonIconDimen +attr buttonPanelSideLayout +attr buttonStyle +attr buttonStyleSmall +attr buttonTint +attr buttonTintMode +attr chainUseRtl +attr checkboxStyle +attr checkedTextViewStyle +attr closeIcon +attr closeItemLayout +attr collapseContentDescription +attr collapseIcon +attr color +attr colorAccent +attr colorBackgroundFloating +attr colorButtonNormal +attr colorControlActivated +attr colorControlHighlight +attr colorControlNormal +attr colorError +attr colorPrimary +attr colorPrimaryDark +attr colorSwitchThumbNormal +attr commitIcon +attr constraintSet +attr constraint_referenced_ids +attr content +attr contentDescription +attr contentInsetEnd +attr contentInsetEndWithActions +attr contentInsetLeft +attr contentInsetRight +attr contentInsetStart +attr contentInsetStartWithNavigation +attr controlBackground +attr coordinatorLayoutStyle +attr customNavigationLayout +attr defaultQueryHint +attr dialogCornerRadius +attr dialogPreferredPadding +attr dialogTheme +attr displayOptions +attr divider +attr dividerHorizontal +attr dividerPadding +attr dividerVertical +attr drawableBottomCompat +attr drawableEndCompat +attr drawableLeftCompat +attr drawableRightCompat +attr drawableSize +attr drawableStartCompat +attr drawableTint +attr drawableTintMode +attr drawableTopCompat +attr drawerArrowStyle +attr dropDownListViewStyle +attr dropdownListPreferredItemHeight +attr editTextBackground +attr editTextColor +attr editTextStyle +attr elevation +attr emptyVisibility +attr expandActivityOverflowButtonDrawable +attr firstBaselineToTopHeight +attr font +attr fontFamily +attr fontProviderAuthority +attr fontProviderCerts +attr fontProviderFetchStrategy +attr fontProviderFetchTimeout +attr fontProviderPackage +attr fontProviderQuery +attr fontStyle +attr fontVariationSettings +attr fontWeight +attr gapBetweenBars +attr goIcon +attr height +attr hideOnContentScroll +attr homeAsUpIndicator +attr homeLayout +attr icon +attr iconTint +attr iconTintMode +attr iconifiedByDefault +attr imageButtonStyle +attr indeterminateProgressStyle +attr initialActivityCount +attr isLightTheme +attr itemPadding +attr keylines +attr lastBaselineToBottomHeight +attr layout +attr layout_anchor +attr layout_anchorGravity +attr layout_behavior +attr layout_constrainedHeight +attr layout_constrainedWidth +attr layout_constraintBaseline_creator +attr layout_constraintBaseline_toBaselineOf +attr layout_constraintBottom_creator +attr layout_constraintBottom_toBottomOf +attr layout_constraintBottom_toTopOf +attr layout_constraintCircle +attr layout_constraintCircleAngle +attr layout_constraintCircleRadius +attr layout_constraintDimensionRatio +attr layout_constraintEnd_toEndOf +attr layout_constraintEnd_toStartOf +attr layout_constraintGuide_begin +attr layout_constraintGuide_end +attr layout_constraintGuide_percent +attr layout_constraintHeight_default +attr layout_constraintHeight_max +attr layout_constraintHeight_min +attr layout_constraintHeight_percent +attr layout_constraintHorizontal_bias +attr layout_constraintHorizontal_chainStyle +attr layout_constraintHorizontal_weight +attr layout_constraintLeft_creator +attr layout_constraintLeft_toLeftOf +attr layout_constraintLeft_toRightOf +attr layout_constraintRight_creator +attr layout_constraintRight_toLeftOf +attr layout_constraintRight_toRightOf +attr layout_constraintStart_toEndOf +attr layout_constraintStart_toStartOf +attr layout_constraintTop_creator +attr layout_constraintTop_toBottomOf +attr layout_constraintTop_toTopOf +attr layout_constraintVertical_bias +attr layout_constraintVertical_chainStyle +attr layout_constraintVertical_weight +attr layout_constraintWidth_default +attr layout_constraintWidth_max +attr layout_constraintWidth_min +attr layout_constraintWidth_percent +attr layout_dodgeInsetEdges +attr layout_editor_absoluteX +attr layout_editor_absoluteY +attr layout_goneMarginBottom +attr layout_goneMarginEnd +attr layout_goneMarginLeft +attr layout_goneMarginRight +attr layout_goneMarginStart +attr layout_goneMarginTop +attr layout_insetEdge +attr layout_keyline +attr layout_optimizationLevel +attr lineHeight +attr listChoiceBackgroundIndicator +attr listChoiceIndicatorMultipleAnimated +attr listChoiceIndicatorSingleAnimated +attr listDividerAlertDialog +attr listItemLayout +attr listLayout +attr listMenuViewStyle +attr listPopupWindowStyle +attr listPreferredItemHeight +attr listPreferredItemHeightLarge +attr listPreferredItemHeightSmall +attr listPreferredItemPaddingEnd +attr listPreferredItemPaddingLeft +attr listPreferredItemPaddingRight +attr listPreferredItemPaddingStart +attr logo +attr logoDescription +attr maxButtonHeight +attr measureWithLargestChild +attr menu +attr multiChoiceItemLayout +attr navigationContentDescription +attr navigationIcon +attr navigationMode +attr numericModifiers +attr overlapAnchor +attr paddingBottomNoButtons +attr paddingEnd +attr paddingStart +attr paddingTopNoTitle +attr panelBackground +attr panelMenuListTheme +attr panelMenuListWidth +attr popupMenuStyle +attr popupTheme +attr popupWindowStyle +attr preserveIconSpacing +attr progressBarPadding +attr progressBarStyle +attr queryBackground +attr queryHint +attr radioButtonStyle +attr ratingBarStyle +attr ratingBarStyleIndicator +attr ratingBarStyleSmall +attr searchHintIcon +attr searchIcon +attr searchViewStyle +attr seekBarStyle +attr selectableItemBackground +attr selectableItemBackgroundBorderless +attr showAsAction +attr showDividers +attr showText +attr showTitle +attr singleChoiceItemLayout +attr spinBars +attr spinnerDropDownItemStyle +attr spinnerStyle +attr splitTrack +attr srcCompat +attr state_above_anchor +attr statusBarBackground +attr subMenuArrow +attr submitBackground +attr subtitle +attr subtitleTextAppearance +attr subtitleTextColor +attr subtitleTextStyle +attr suggestionRowLayout +attr switchMinWidth +attr switchPadding +attr switchStyle +attr switchTextAppearance +attr textAllCaps +attr textAppearanceLargePopupMenu +attr textAppearanceListItem +attr textAppearanceListItemSecondary +attr textAppearanceListItemSmall +attr textAppearancePopupMenuHeader +attr textAppearanceSearchResultSubtitle +attr textAppearanceSearchResultTitle +attr textAppearanceSmallPopupMenu +attr textColorAlertDialogListItem +attr textColorSearchUrl +attr textLocale +attr theme +attr thickness +attr thumbTextPadding +attr thumbTint +attr thumbTintMode +attr tickMark +attr tickMarkTint +attr tickMarkTintMode +attr tint +attr tintMode +attr title +attr titleMargin +attr titleMarginBottom +attr titleMarginEnd +attr titleMarginStart +attr titleMarginTop +attr titleMargins +attr titleTextAppearance +attr titleTextColor +attr titleTextStyle +attr toolbarNavigationButtonStyle +attr toolbarStyle +attr tooltipForegroundColor +attr tooltipFrameBackground +attr tooltipText +attr track +attr trackTint +attr trackTintMode +attr ttcIndex +attr viewInflaterClass +attr voiceIcon +attr windowActionBar +attr windowActionBarOverlay +attr windowActionModeOverlay +attr windowFixedHeightMajor +attr windowFixedHeightMinor +attr windowFixedWidthMajor +attr windowFixedWidthMinor +attr windowMinWidthMajor +attr windowMinWidthMinor +attr windowNoTitle +bool abc_action_bar_embed_tabs +bool abc_allow_stacked_button_bar +bool abc_config_actionMenuItemAllCaps +color abc_background_cache_hint_selector_material_dark +color abc_background_cache_hint_selector_material_light +color abc_btn_colored_borderless_text_material +color abc_btn_colored_text_material +color abc_color_highlight_material +color abc_hint_foreground_material_dark +color abc_hint_foreground_material_light +color abc_input_method_navigation_guard +color abc_primary_text_disable_only_material_dark +color abc_primary_text_disable_only_material_light +color abc_primary_text_material_dark +color abc_primary_text_material_light +color abc_search_url_text +color abc_search_url_text_normal +color abc_search_url_text_pressed +color abc_search_url_text_selected +color abc_secondary_text_material_dark +color abc_secondary_text_material_light +color abc_tint_btn_checkable +color abc_tint_default +color abc_tint_edittext +color abc_tint_seek_thumb +color abc_tint_spinner +color abc_tint_switch_track +color accent_material_dark +color accent_material_light +color androidx_core_ripple_material_light +color androidx_core_secondary_text_default_material_light +color background_floating_material_dark +color background_floating_material_light +color background_material_dark +color background_material_light +color bright_foreground_disabled_material_dark +color bright_foreground_disabled_material_light +color bright_foreground_inverse_material_dark +color bright_foreground_inverse_material_light +color bright_foreground_material_dark +color bright_foreground_material_light +color button_material_dark +color button_material_light +color dim_foreground_disabled_material_dark +color dim_foreground_disabled_material_light +color dim_foreground_material_dark +color dim_foreground_material_light +color error_color_material_dark +color error_color_material_light +color foreground_material_dark +color foreground_material_light +color highlighted_text_material_dark +color highlighted_text_material_light +color material_blue_grey_800 +color material_blue_grey_900 +color material_blue_grey_950 +color material_deep_teal_200 +color material_deep_teal_500 +color material_grey_100 +color material_grey_300 +color material_grey_50 +color material_grey_600 +color material_grey_800 +color material_grey_850 +color material_grey_900 +color notification_action_color_filter +color notification_icon_bg_color +color notification_material_background_media_default_color +color primary_dark_material_dark +color primary_dark_material_light +color primary_material_dark +color primary_material_light +color primary_text_default_material_dark +color primary_text_default_material_light +color primary_text_disabled_material_dark +color primary_text_disabled_material_light +color ripple_material_dark +color ripple_material_light +color secondary_text_default_material_dark +color secondary_text_default_material_light +color secondary_text_disabled_material_dark +color secondary_text_disabled_material_light +color switch_thumb_disabled_material_dark +color switch_thumb_disabled_material_light +color switch_thumb_material_dark +color switch_thumb_material_light +color switch_thumb_normal_material_dark +color switch_thumb_normal_material_light +color tooltip_background_dark +color tooltip_background_light +dimen abc_action_bar_content_inset_material +dimen abc_action_bar_content_inset_with_nav +dimen abc_action_bar_default_height_material +dimen abc_action_bar_default_padding_end_material +dimen abc_action_bar_default_padding_start_material +dimen abc_action_bar_elevation_material +dimen abc_action_bar_icon_vertical_padding_material +dimen abc_action_bar_overflow_padding_end_material +dimen abc_action_bar_overflow_padding_start_material +dimen abc_action_bar_stacked_max_height +dimen abc_action_bar_stacked_tab_max_width +dimen abc_action_bar_subtitle_bottom_margin_material +dimen abc_action_bar_subtitle_top_margin_material +dimen abc_action_button_min_height_material +dimen abc_action_button_min_width_material +dimen abc_action_button_min_width_overflow_material +dimen abc_alert_dialog_button_bar_height +dimen abc_alert_dialog_button_dimen +dimen abc_button_inset_horizontal_material +dimen abc_button_inset_vertical_material +dimen abc_button_padding_horizontal_material +dimen abc_button_padding_vertical_material +dimen abc_cascading_menus_min_smallest_width +dimen abc_config_prefDialogWidth +dimen abc_control_corner_material +dimen abc_control_inset_material +dimen abc_control_padding_material +dimen abc_dialog_corner_radius_material +dimen abc_dialog_fixed_height_major +dimen abc_dialog_fixed_height_minor +dimen abc_dialog_fixed_width_major +dimen abc_dialog_fixed_width_minor +dimen abc_dialog_list_padding_bottom_no_buttons +dimen abc_dialog_list_padding_top_no_title +dimen abc_dialog_min_width_major +dimen abc_dialog_min_width_minor +dimen abc_dialog_padding_material +dimen abc_dialog_padding_top_material +dimen abc_dialog_title_divider_material +dimen abc_disabled_alpha_material_dark +dimen abc_disabled_alpha_material_light +dimen abc_dropdownitem_icon_width +dimen abc_dropdownitem_text_padding_left +dimen abc_dropdownitem_text_padding_right +dimen abc_edit_text_inset_bottom_material +dimen abc_edit_text_inset_horizontal_material +dimen abc_edit_text_inset_top_material +dimen abc_floating_window_z +dimen abc_list_item_height_large_material +dimen abc_list_item_height_material +dimen abc_list_item_height_small_material +dimen abc_list_item_padding_horizontal_material +dimen abc_panel_menu_list_width +dimen abc_progress_bar_height_material +dimen abc_search_view_preferred_height +dimen abc_search_view_preferred_width +dimen abc_seekbar_track_background_height_material +dimen abc_seekbar_track_progress_height_material +dimen abc_select_dialog_padding_start_material +dimen abc_switch_padding +dimen abc_text_size_body_1_material +dimen abc_text_size_body_2_material +dimen abc_text_size_button_material +dimen abc_text_size_caption_material +dimen abc_text_size_display_1_material +dimen abc_text_size_display_2_material +dimen abc_text_size_display_3_material +dimen abc_text_size_display_4_material +dimen abc_text_size_headline_material +dimen abc_text_size_large_material +dimen abc_text_size_medium_material +dimen abc_text_size_menu_header_material +dimen abc_text_size_menu_material +dimen abc_text_size_small_material +dimen abc_text_size_subhead_material +dimen abc_text_size_subtitle_material_toolbar +dimen abc_text_size_title_material +dimen abc_text_size_title_material_toolbar +dimen compat_button_inset_horizontal_material +dimen compat_button_inset_vertical_material +dimen compat_button_padding_horizontal_material +dimen compat_button_padding_vertical_material +dimen compat_control_corner_material +dimen compat_notification_large_icon_max_height +dimen compat_notification_large_icon_max_width +dimen disabled_alpha_material_dark +dimen disabled_alpha_material_light +dimen highlight_alpha_material_colored +dimen highlight_alpha_material_dark +dimen highlight_alpha_material_light +dimen hint_alpha_material_dark +dimen hint_alpha_material_light +dimen hint_pressed_alpha_material_dark +dimen hint_pressed_alpha_material_light +dimen notification_action_icon_size +dimen notification_action_text_size +dimen notification_big_circle_margin +dimen notification_content_margin_start +dimen notification_large_icon_height +dimen notification_large_icon_width +dimen notification_main_column_padding_top +dimen notification_media_narrow_margin +dimen notification_right_icon_size +dimen notification_right_side_padding_top +dimen notification_small_icon_background_padding +dimen notification_small_icon_size_as_large +dimen notification_subtext_size +dimen notification_top_pad +dimen notification_top_pad_large_text +dimen subtitle_corner_radius +dimen subtitle_outline_width +dimen subtitle_shadow_offset +dimen subtitle_shadow_radius +dimen tooltip_corner_radius +dimen tooltip_horizontal_padding +dimen tooltip_margin +dimen tooltip_precise_anchor_extra_offset +dimen tooltip_precise_anchor_threshold +dimen tooltip_vertical_padding +dimen tooltip_y_offset_non_touch +dimen tooltip_y_offset_touch +drawable abc_ab_share_pack_mtrl_alpha +drawable abc_action_bar_item_background_material +drawable abc_btn_borderless_material +drawable abc_btn_check_material +drawable abc_btn_check_material_anim +drawable abc_btn_check_to_on_mtrl_000 +drawable abc_btn_check_to_on_mtrl_015 +drawable abc_btn_colored_material +drawable abc_btn_default_mtrl_shape +drawable abc_btn_radio_material +drawable abc_btn_radio_material_anim +drawable abc_btn_radio_to_on_mtrl_000 +drawable abc_btn_radio_to_on_mtrl_015 +drawable abc_btn_switch_to_on_mtrl_00001 +drawable abc_btn_switch_to_on_mtrl_00012 +drawable abc_cab_background_internal_bg +drawable abc_cab_background_top_material +drawable abc_cab_background_top_mtrl_alpha +drawable abc_control_background_material +drawable abc_dialog_material_background +drawable abc_edit_text_material +drawable abc_ic_ab_back_material +drawable abc_ic_arrow_drop_right_black_24dp +drawable abc_ic_clear_material +drawable abc_ic_commit_search_api_mtrl_alpha +drawable abc_ic_go_search_api_material +drawable abc_ic_menu_copy_mtrl_am_alpha +drawable abc_ic_menu_cut_mtrl_alpha +drawable abc_ic_menu_overflow_material +drawable abc_ic_menu_paste_mtrl_am_alpha +drawable abc_ic_menu_selectall_mtrl_alpha +drawable abc_ic_menu_share_mtrl_alpha +drawable abc_ic_search_api_material +drawable abc_ic_star_black_16dp +drawable abc_ic_star_black_36dp +drawable abc_ic_star_black_48dp +drawable abc_ic_star_half_black_16dp +drawable abc_ic_star_half_black_36dp +drawable abc_ic_star_half_black_48dp +drawable abc_ic_voice_search_api_material +drawable abc_item_background_holo_dark +drawable abc_item_background_holo_light +drawable abc_list_divider_material +drawable abc_list_divider_mtrl_alpha +drawable abc_list_focused_holo +drawable abc_list_longpressed_holo +drawable abc_list_pressed_holo_dark +drawable abc_list_pressed_holo_light +drawable abc_list_selector_background_transition_holo_dark +drawable abc_list_selector_background_transition_holo_light +drawable abc_list_selector_disabled_holo_dark +drawable abc_list_selector_disabled_holo_light +drawable abc_list_selector_holo_dark +drawable abc_list_selector_holo_light +drawable abc_menu_hardkey_panel_mtrl_mult +drawable abc_popup_background_mtrl_mult +drawable abc_ratingbar_indicator_material +drawable abc_ratingbar_material +drawable abc_ratingbar_small_material +drawable abc_scrubber_control_off_mtrl_alpha +drawable abc_scrubber_control_to_pressed_mtrl_000 +drawable abc_scrubber_control_to_pressed_mtrl_005 +drawable abc_scrubber_primary_mtrl_alpha +drawable abc_scrubber_track_mtrl_alpha +drawable abc_seekbar_thumb_material +drawable abc_seekbar_tick_mark_material +drawable abc_seekbar_track_material +drawable abc_spinner_mtrl_am_alpha +drawable abc_spinner_textfield_background_material +drawable abc_switch_thumb_material +drawable abc_switch_track_mtrl_alpha +drawable abc_tab_indicator_material +drawable abc_tab_indicator_mtrl_alpha +drawable abc_text_cursor_material +drawable abc_text_select_handle_left_mtrl_dark +drawable abc_text_select_handle_left_mtrl_light +drawable abc_text_select_handle_middle_mtrl_dark +drawable abc_text_select_handle_middle_mtrl_light +drawable abc_text_select_handle_right_mtrl_dark +drawable abc_text_select_handle_right_mtrl_light +drawable abc_textfield_activated_mtrl_alpha +drawable abc_textfield_default_mtrl_alpha +drawable abc_textfield_search_activated_mtrl_alpha +drawable abc_textfield_search_default_mtrl_alpha +drawable abc_textfield_search_material +drawable abc_vector_test +drawable btn_checkbox_checked_mtrl +drawable btn_checkbox_checked_to_unchecked_mtrl_animation +drawable btn_checkbox_unchecked_mtrl +drawable btn_checkbox_unchecked_to_checked_mtrl_animation +drawable btn_radio_off_mtrl +drawable btn_radio_off_to_on_mtrl_animation +drawable btn_radio_on_mtrl +drawable btn_radio_on_to_off_mtrl_animation +drawable byd_count_down_bg +drawable byd_enter_btn_bg +drawable module_byd_splash +drawable notification_action_background +drawable notification_bg +drawable notification_bg_low +drawable notification_bg_low_normal +drawable notification_bg_low_pressed +drawable notification_bg_normal +drawable notification_bg_normal_pressed +drawable notification_icon_background +drawable notification_template_icon_bg +drawable notification_template_icon_low_bg +drawable notification_tile_bg +drawable notify_panel_notification_icon_bg +drawable tooltip_frame_dark +drawable tooltip_frame_light +id accessibility_action_clickable_span +id accessibility_custom_action_0 +id accessibility_custom_action_1 +id accessibility_custom_action_10 +id accessibility_custom_action_11 +id accessibility_custom_action_12 +id accessibility_custom_action_13 +id accessibility_custom_action_14 +id accessibility_custom_action_15 +id accessibility_custom_action_16 +id accessibility_custom_action_17 +id accessibility_custom_action_18 +id accessibility_custom_action_19 +id accessibility_custom_action_2 +id accessibility_custom_action_20 +id accessibility_custom_action_21 +id accessibility_custom_action_22 +id accessibility_custom_action_23 +id accessibility_custom_action_24 +id accessibility_custom_action_25 +id accessibility_custom_action_26 +id accessibility_custom_action_27 +id accessibility_custom_action_28 +id accessibility_custom_action_29 +id accessibility_custom_action_3 +id accessibility_custom_action_30 +id accessibility_custom_action_31 +id accessibility_custom_action_4 +id accessibility_custom_action_5 +id accessibility_custom_action_6 +id accessibility_custom_action_7 +id accessibility_custom_action_8 +id accessibility_custom_action_9 +id action0 +id action_bar +id action_bar_activity_content +id action_bar_container +id action_bar_root +id action_bar_spinner +id action_bar_subtitle +id action_bar_title +id action_container +id action_context_bar +id action_divider +id action_image +id action_menu_divider +id action_menu_presenter +id action_mode_bar +id action_mode_bar_stub +id action_mode_close_button +id action_text +id actions +id activity_chooser_view_content +id add +id alertTitle +id async +id blocking +id bottom +id buttonPanel +id cancel_action +id checkbox +id checked +id chronometer +id content +id contentPanel +id custom +id customPanel +id decor_content_parent +id default_activity_button +id dialog_button +id edit_query +id end +id end_padder +id expand_activities_button +id expanded_menu +id forever +id gone +id group_divider +id home +id icon +id icon_group +id image +id info +id invisible +id italic +id left +id line1 +id line3 +id listMode +id list_item +id media_actions +id message +id multiply +id none +id normal +id notification_background +id notification_main_column +id notification_main_column_container +id off +id on +id packed +id parent +id parentPanel +id percent +id progress_circular +id progress_horizontal +id radio +id right +id right_icon +id right_side +id screen +id scrollIndicatorDown +id scrollIndicatorUp +id scrollView +id search_badge +id search_bar +id search_button +id search_close_btn +id search_edit_frame +id search_go_btn +id search_mag_icon +id search_plate +id search_src_text +id search_voice_btn +id select_dialog_listview +id shortcut +id spacer +id split_action_bar +id spread +id spread_inside +id src_atop +id src_in +id src_over +id start +id status_bar_latest_event_content +id submenuarrow +id submit_area +id tabMode +id tag_accessibility_actions +id tag_accessibility_clickable_spans +id tag_accessibility_heading +id tag_accessibility_pane_title +id tag_screen_reader_focusable +id tag_transition_group +id tag_unhandled_key_event_manager +id tag_unhandled_key_listeners +id text +id text2 +id textSpacerNoButtons +id textSpacerNoTitle +id time +id title +id titleDividerNoCustom +id title_template +id top +id topPanel +id tvByd +id tvCountDown +id unchecked +id uniform +id up +id wrap +id wrap_content +integer abc_config_activityDefaultDur +integer abc_config_activityShortDur +integer cancel_button_image_alpha +integer config_tooltipAnimTime +integer status_bar_notification_info_maxnum +interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 +interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 +interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 +interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 +interpolator btn_radio_to_off_mtrl_animation_interpolator_0 +interpolator btn_radio_to_on_mtrl_animation_interpolator_0 +interpolator fast_out_slow_in +layout abc_action_bar_title_item +layout abc_action_bar_up_container +layout abc_action_menu_item_layout +layout abc_action_menu_layout +layout abc_action_mode_bar +layout abc_action_mode_close_item_material +layout abc_activity_chooser_view +layout abc_activity_chooser_view_list_item +layout abc_alert_dialog_button_bar_material +layout abc_alert_dialog_material +layout abc_alert_dialog_title_material +layout abc_cascading_menu_item_layout +layout abc_dialog_title_material +layout abc_expanded_menu_layout +layout abc_list_menu_item_checkbox +layout abc_list_menu_item_icon +layout abc_list_menu_item_layout +layout abc_list_menu_item_radio +layout abc_popup_menu_header_item_layout +layout abc_popup_menu_item_layout +layout abc_screen_content_include +layout abc_screen_simple +layout abc_screen_simple_overlay_action_mode +layout abc_screen_toolbar +layout abc_search_dropdown_item_icons_2line +layout abc_search_view +layout abc_select_dialog_material +layout abc_tooltip +layout custom_dialog +layout fragment_byd_splash +layout notification_action +layout notification_action_tombstone +layout notification_media_action +layout notification_media_cancel_action +layout notification_template_big_media +layout notification_template_big_media_custom +layout notification_template_big_media_narrow +layout notification_template_big_media_narrow_custom +layout notification_template_custom_big +layout notification_template_icon_group +layout notification_template_lines_media +layout notification_template_media +layout notification_template_media_custom +layout notification_template_part_chronometer +layout notification_template_part_time +layout select_dialog_item_material +layout select_dialog_multichoice_material +layout select_dialog_singlechoice_material +layout support_simple_spinner_dropdown_item +string abc_action_bar_home_description +string abc_action_bar_up_description +string abc_action_menu_overflow_description +string abc_action_mode_done +string abc_activity_chooser_view_see_all +string abc_activitychooserview_choose_application +string abc_capital_off +string abc_capital_on +string abc_menu_alt_shortcut_label +string abc_menu_ctrl_shortcut_label +string abc_menu_delete_shortcut_label +string abc_menu_enter_shortcut_label +string abc_menu_function_shortcut_label +string abc_menu_meta_shortcut_label +string abc_menu_shift_shortcut_label +string abc_menu_space_shortcut_label +string abc_menu_sym_shortcut_label +string abc_prepend_shortcut_label +string abc_search_hint +string abc_searchview_description_clear +string abc_searchview_description_query +string abc_searchview_description_search +string abc_searchview_description_submit +string abc_searchview_description_voice +string abc_shareactionprovider_share_with +string abc_shareactionprovider_share_with_application +string abc_toolbar_collapse_description +string search_menu_title +string status_bar_notification_info_overflow +style AlertDialog_AppCompat +style AlertDialog_AppCompat_Light +style Animation_AppCompat_Dialog +style Animation_AppCompat_DropDownUp +style Animation_AppCompat_Tooltip +style Base_AlertDialog_AppCompat +style Base_AlertDialog_AppCompat_Light +style Base_Animation_AppCompat_Dialog +style Base_Animation_AppCompat_DropDownUp +style Base_Animation_AppCompat_Tooltip +style Base_DialogWindowTitleBackground_AppCompat +style Base_DialogWindowTitle_AppCompat +style Base_TextAppearance_AppCompat +style Base_TextAppearance_AppCompat_Body1 +style Base_TextAppearance_AppCompat_Body2 +style Base_TextAppearance_AppCompat_Button +style Base_TextAppearance_AppCompat_Caption +style Base_TextAppearance_AppCompat_Display1 +style Base_TextAppearance_AppCompat_Display2 +style Base_TextAppearance_AppCompat_Display3 +style Base_TextAppearance_AppCompat_Display4 +style Base_TextAppearance_AppCompat_Headline +style Base_TextAppearance_AppCompat_Inverse +style Base_TextAppearance_AppCompat_Large +style Base_TextAppearance_AppCompat_Large_Inverse +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Medium +style Base_TextAppearance_AppCompat_Medium_Inverse +style Base_TextAppearance_AppCompat_Menu +style Base_TextAppearance_AppCompat_SearchResult +style Base_TextAppearance_AppCompat_SearchResult_Subtitle +style Base_TextAppearance_AppCompat_SearchResult_Title +style Base_TextAppearance_AppCompat_Small +style Base_TextAppearance_AppCompat_Small_Inverse +style Base_TextAppearance_AppCompat_Subhead +style Base_TextAppearance_AppCompat_Subhead_Inverse +style Base_TextAppearance_AppCompat_Title +style Base_TextAppearance_AppCompat_Title_Inverse +style Base_TextAppearance_AppCompat_Tooltip +style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title +style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style Base_TextAppearance_AppCompat_Widget_ActionMode_Title +style Base_TextAppearance_AppCompat_Widget_Button +style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Colored +style Base_TextAppearance_AppCompat_Widget_Button_Inverse +style Base_TextAppearance_AppCompat_Widget_DropDownItem +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +style Base_TextAppearance_AppCompat_Widget_Switch +style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style Base_TextAppearance_Widget_AppCompat_Toolbar_Title +style Base_ThemeOverlay_AppCompat +style Base_ThemeOverlay_AppCompat_ActionBar +style Base_ThemeOverlay_AppCompat_Dark +style Base_ThemeOverlay_AppCompat_Dark_ActionBar +style Base_ThemeOverlay_AppCompat_Dialog +style Base_ThemeOverlay_AppCompat_Dialog_Alert +style Base_ThemeOverlay_AppCompat_Light +style Base_Theme_AppCompat +style Base_Theme_AppCompat_CompactMenu +style Base_Theme_AppCompat_Dialog +style Base_Theme_AppCompat_DialogWhenLarge +style Base_Theme_AppCompat_Dialog_Alert +style Base_Theme_AppCompat_Dialog_FixedSize +style Base_Theme_AppCompat_Dialog_MinWidth +style Base_Theme_AppCompat_Light +style Base_Theme_AppCompat_Light_DarkActionBar +style Base_Theme_AppCompat_Light_Dialog +style Base_Theme_AppCompat_Light_DialogWhenLarge +style Base_Theme_AppCompat_Light_Dialog_Alert +style Base_Theme_AppCompat_Light_Dialog_FixedSize +style Base_Theme_AppCompat_Light_Dialog_MinWidth +style Base_V21_ThemeOverlay_AppCompat_Dialog +style Base_V21_Theme_AppCompat +style Base_V21_Theme_AppCompat_Dialog +style Base_V21_Theme_AppCompat_Light +style Base_V21_Theme_AppCompat_Light_Dialog +style Base_V22_Theme_AppCompat +style Base_V22_Theme_AppCompat_Light +style Base_V23_Theme_AppCompat +style Base_V23_Theme_AppCompat_Light +style Base_V26_Theme_AppCompat +style Base_V26_Theme_AppCompat_Light +style Base_V26_Widget_AppCompat_Toolbar +style Base_V28_Theme_AppCompat +style Base_V28_Theme_AppCompat_Light +style Base_V7_ThemeOverlay_AppCompat_Dialog +style Base_V7_Theme_AppCompat +style Base_V7_Theme_AppCompat_Dialog +style Base_V7_Theme_AppCompat_Light +style Base_V7_Theme_AppCompat_Light_Dialog +style Base_V7_Widget_AppCompat_AutoCompleteTextView +style Base_V7_Widget_AppCompat_EditText +style Base_V7_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_ActionBar +style Base_Widget_AppCompat_ActionBar_Solid +style Base_Widget_AppCompat_ActionBar_TabBar +style Base_Widget_AppCompat_ActionBar_TabText +style Base_Widget_AppCompat_ActionBar_TabView +style Base_Widget_AppCompat_ActionButton +style Base_Widget_AppCompat_ActionButton_CloseMode +style Base_Widget_AppCompat_ActionButton_Overflow +style Base_Widget_AppCompat_ActionMode +style Base_Widget_AppCompat_ActivityChooserView +style Base_Widget_AppCompat_AutoCompleteTextView +style Base_Widget_AppCompat_Button +style Base_Widget_AppCompat_ButtonBar +style Base_Widget_AppCompat_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Borderless +style Base_Widget_AppCompat_Button_Borderless_Colored +style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +style Base_Widget_AppCompat_Button_Colored +style Base_Widget_AppCompat_Button_Small +style Base_Widget_AppCompat_CompoundButton_CheckBox +style Base_Widget_AppCompat_CompoundButton_RadioButton +style Base_Widget_AppCompat_CompoundButton_Switch +style Base_Widget_AppCompat_DrawerArrowToggle +style Base_Widget_AppCompat_DrawerArrowToggle_Common +style Base_Widget_AppCompat_DropDownItem_Spinner +style Base_Widget_AppCompat_EditText +style Base_Widget_AppCompat_ImageButton +style Base_Widget_AppCompat_Light_ActionBar +style Base_Widget_AppCompat_Light_ActionBar_Solid +style Base_Widget_AppCompat_Light_ActionBar_TabBar +style Base_Widget_AppCompat_Light_ActionBar_TabText +style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Base_Widget_AppCompat_Light_ActionBar_TabView +style Base_Widget_AppCompat_Light_PopupMenu +style Base_Widget_AppCompat_Light_PopupMenu_Overflow +style Base_Widget_AppCompat_ListMenuView +style Base_Widget_AppCompat_ListPopupWindow +style Base_Widget_AppCompat_ListView +style Base_Widget_AppCompat_ListView_DropDown +style Base_Widget_AppCompat_ListView_Menu +style Base_Widget_AppCompat_PopupMenu +style Base_Widget_AppCompat_PopupMenu_Overflow +style Base_Widget_AppCompat_PopupWindow +style Base_Widget_AppCompat_ProgressBar +style Base_Widget_AppCompat_ProgressBar_Horizontal +style Base_Widget_AppCompat_RatingBar +style Base_Widget_AppCompat_RatingBar_Indicator +style Base_Widget_AppCompat_RatingBar_Small +style Base_Widget_AppCompat_SearchView +style Base_Widget_AppCompat_SearchView_ActionBar +style Base_Widget_AppCompat_SeekBar +style Base_Widget_AppCompat_SeekBar_Discrete +style Base_Widget_AppCompat_Spinner +style Base_Widget_AppCompat_Spinner_Underlined +style Base_Widget_AppCompat_TextView +style Base_Widget_AppCompat_TextView_SpinnerItem +style Base_Widget_AppCompat_Toolbar +style Base_Widget_AppCompat_Toolbar_Button_Navigation +style Platform_AppCompat +style Platform_AppCompat_Light +style Platform_ThemeOverlay_AppCompat +style Platform_ThemeOverlay_AppCompat_Dark +style Platform_ThemeOverlay_AppCompat_Light +style Platform_V21_AppCompat +style Platform_V21_AppCompat_Light +style Platform_V25_AppCompat +style Platform_V25_AppCompat_Light +style Platform_Widget_AppCompat_Spinner +style RtlOverlay_DialogWindowTitle_AppCompat +style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +style RtlOverlay_Widget_AppCompat_DialogTitle_Icon +style RtlOverlay_Widget_AppCompat_PopupMenuItem +style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +style RtlOverlay_Widget_AppCompat_SearchView_MagIcon +style RtlOverlay_Widget_AppCompat_Search_DropDown +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +style RtlOverlay_Widget_AppCompat_Search_DropDown_Query +style RtlOverlay_Widget_AppCompat_Search_DropDown_Text +style RtlUnderlay_Widget_AppCompat_ActionButton +style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +style TextAppearance_AppCompat +style TextAppearance_AppCompat_Body1 +style TextAppearance_AppCompat_Body2 +style TextAppearance_AppCompat_Button +style TextAppearance_AppCompat_Caption +style TextAppearance_AppCompat_Display1 +style TextAppearance_AppCompat_Display2 +style TextAppearance_AppCompat_Display3 +style TextAppearance_AppCompat_Display4 +style TextAppearance_AppCompat_Headline +style TextAppearance_AppCompat_Inverse +style TextAppearance_AppCompat_Large +style TextAppearance_AppCompat_Large_Inverse +style TextAppearance_AppCompat_Light_SearchResult_Subtitle +style TextAppearance_AppCompat_Light_SearchResult_Title +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Medium +style TextAppearance_AppCompat_Medium_Inverse +style TextAppearance_AppCompat_Menu +style TextAppearance_AppCompat_SearchResult_Subtitle +style TextAppearance_AppCompat_SearchResult_Title +style TextAppearance_AppCompat_Small +style TextAppearance_AppCompat_Small_Inverse +style TextAppearance_AppCompat_Subhead +style TextAppearance_AppCompat_Subhead_Inverse +style TextAppearance_AppCompat_Title +style TextAppearance_AppCompat_Title_Inverse +style TextAppearance_AppCompat_Tooltip +style TextAppearance_AppCompat_Widget_ActionBar_Menu +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle +style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionBar_Title +style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle +style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +style TextAppearance_AppCompat_Widget_ActionMode_Title +style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +style TextAppearance_AppCompat_Widget_Button +style TextAppearance_AppCompat_Widget_Button_Borderless_Colored +style TextAppearance_AppCompat_Widget_Button_Colored +style TextAppearance_AppCompat_Widget_Button_Inverse +style TextAppearance_AppCompat_Widget_DropDownItem +style TextAppearance_AppCompat_Widget_PopupMenu_Header +style TextAppearance_AppCompat_Widget_PopupMenu_Large +style TextAppearance_AppCompat_Widget_PopupMenu_Small +style TextAppearance_AppCompat_Widget_Switch +style TextAppearance_AppCompat_Widget_TextView_SpinnerItem +style TextAppearance_Compat_Notification +style TextAppearance_Compat_Notification_Info +style TextAppearance_Compat_Notification_Info_Media +style TextAppearance_Compat_Notification_Line2 +style TextAppearance_Compat_Notification_Line2_Media +style TextAppearance_Compat_Notification_Media +style TextAppearance_Compat_Notification_Time +style TextAppearance_Compat_Notification_Time_Media +style TextAppearance_Compat_Notification_Title +style TextAppearance_Compat_Notification_Title_Media +style TextAppearance_Widget_AppCompat_ExpandedMenu_Item +style TextAppearance_Widget_AppCompat_Toolbar_Subtitle +style TextAppearance_Widget_AppCompat_Toolbar_Title +style ThemeOverlay_AppCompat +style ThemeOverlay_AppCompat_ActionBar +style ThemeOverlay_AppCompat_Dark +style ThemeOverlay_AppCompat_Dark_ActionBar +style ThemeOverlay_AppCompat_DayNight +style ThemeOverlay_AppCompat_DayNight_ActionBar +style ThemeOverlay_AppCompat_Dialog +style ThemeOverlay_AppCompat_Dialog_Alert +style ThemeOverlay_AppCompat_Light +style Theme_AppCompat +style Theme_AppCompat_CompactMenu +style Theme_AppCompat_DayNight +style Theme_AppCompat_DayNight_DarkActionBar +style Theme_AppCompat_DayNight_Dialog +style Theme_AppCompat_DayNight_DialogWhenLarge +style Theme_AppCompat_DayNight_Dialog_Alert +style Theme_AppCompat_DayNight_Dialog_MinWidth +style Theme_AppCompat_DayNight_NoActionBar +style Theme_AppCompat_Dialog +style Theme_AppCompat_DialogWhenLarge +style Theme_AppCompat_Dialog_Alert +style Theme_AppCompat_Dialog_MinWidth +style Theme_AppCompat_Light +style Theme_AppCompat_Light_DarkActionBar +style Theme_AppCompat_Light_Dialog +style Theme_AppCompat_Light_DialogWhenLarge +style Theme_AppCompat_Light_Dialog_Alert +style Theme_AppCompat_Light_Dialog_MinWidth +style Theme_AppCompat_Light_NoActionBar +style Theme_AppCompat_NoActionBar +style Widget_AppCompat_ActionBar +style Widget_AppCompat_ActionBar_Solid +style Widget_AppCompat_ActionBar_TabBar +style Widget_AppCompat_ActionBar_TabText +style Widget_AppCompat_ActionBar_TabView +style Widget_AppCompat_ActionButton +style Widget_AppCompat_ActionButton_CloseMode +style Widget_AppCompat_ActionButton_Overflow +style Widget_AppCompat_ActionMode +style Widget_AppCompat_ActivityChooserView +style Widget_AppCompat_AutoCompleteTextView +style Widget_AppCompat_Button +style Widget_AppCompat_ButtonBar +style Widget_AppCompat_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Borderless +style Widget_AppCompat_Button_Borderless_Colored +style Widget_AppCompat_Button_ButtonBar_AlertDialog +style Widget_AppCompat_Button_Colored +style Widget_AppCompat_Button_Small +style Widget_AppCompat_CompoundButton_CheckBox +style Widget_AppCompat_CompoundButton_RadioButton +style Widget_AppCompat_CompoundButton_Switch +style Widget_AppCompat_DrawerArrowToggle +style Widget_AppCompat_DropDownItem_Spinner +style Widget_AppCompat_EditText +style Widget_AppCompat_ImageButton +style Widget_AppCompat_Light_ActionBar +style Widget_AppCompat_Light_ActionBar_Solid +style Widget_AppCompat_Light_ActionBar_Solid_Inverse +style Widget_AppCompat_Light_ActionBar_TabBar +style Widget_AppCompat_Light_ActionBar_TabBar_Inverse +style Widget_AppCompat_Light_ActionBar_TabText +style Widget_AppCompat_Light_ActionBar_TabText_Inverse +style Widget_AppCompat_Light_ActionBar_TabView +style Widget_AppCompat_Light_ActionBar_TabView_Inverse +style Widget_AppCompat_Light_ActionButton +style Widget_AppCompat_Light_ActionButton_CloseMode +style Widget_AppCompat_Light_ActionButton_Overflow +style Widget_AppCompat_Light_ActionMode_Inverse +style Widget_AppCompat_Light_ActivityChooserView +style Widget_AppCompat_Light_AutoCompleteTextView +style Widget_AppCompat_Light_DropDownItem_Spinner +style Widget_AppCompat_Light_ListPopupWindow +style Widget_AppCompat_Light_ListView_DropDown +style Widget_AppCompat_Light_PopupMenu +style Widget_AppCompat_Light_PopupMenu_Overflow +style Widget_AppCompat_Light_SearchView +style Widget_AppCompat_Light_Spinner_DropDown_ActionBar +style Widget_AppCompat_ListMenuView +style Widget_AppCompat_ListPopupWindow +style Widget_AppCompat_ListView +style Widget_AppCompat_ListView_DropDown +style Widget_AppCompat_ListView_Menu +style Widget_AppCompat_PopupMenu +style Widget_AppCompat_PopupMenu_Overflow +style Widget_AppCompat_PopupWindow +style Widget_AppCompat_ProgressBar +style Widget_AppCompat_ProgressBar_Horizontal +style Widget_AppCompat_RatingBar +style Widget_AppCompat_RatingBar_Indicator +style Widget_AppCompat_RatingBar_Small +style Widget_AppCompat_SearchView +style Widget_AppCompat_SearchView_ActionBar +style Widget_AppCompat_SeekBar +style Widget_AppCompat_SeekBar_Discrete +style Widget_AppCompat_Spinner +style Widget_AppCompat_Spinner_DropDown +style Widget_AppCompat_Spinner_DropDown_ActionBar +style Widget_AppCompat_Spinner_Underlined +style Widget_AppCompat_TextView +style Widget_AppCompat_TextView_SpinnerItem +style Widget_AppCompat_Toolbar +style Widget_AppCompat_Toolbar_Button_Navigation +style Widget_Compat_NotificationActionContainer +style Widget_Compat_NotificationActionText +style Widget_Support_CoordinatorLayout +styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle +styleable ActionBarLayout android_layout_gravity +styleable ActionMenuItemView android_minWidth +styleable ActionMenuView +styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle +styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount +styleable AlertDialog android_layout buttonIconDimen buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout showTitle singleChoiceItemLayout +styleable AnimatedStateListDrawableCompat android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible +styleable AnimatedStateListDrawableItem android_drawable android_id +styleable AnimatedStateListDrawableTransition android_drawable android_fromId android_reversible android_toId +styleable AppCompatImageView android_src srcCompat tint tintMode +styleable AppCompatSeekBar android_thumb tickMark tickMarkTint tickMarkTintMode +styleable AppCompatTextHelper android_drawableBottom android_drawableEnd android_drawableLeft android_drawableRight android_drawableStart android_drawableTop android_textAppearance +styleable AppCompatTextView android_textAppearance autoSizeMaxTextSize autoSizeMinTextSize autoSizePresetSizes autoSizeStepGranularity autoSizeTextType drawableBottomCompat drawableEndCompat drawableLeftCompat drawableRightCompat drawableStartCompat drawableTint drawableTintMode drawableTopCompat firstBaselineToTopHeight fontFamily fontVariationSettings lastBaselineToBottomHeight lineHeight textAllCaps textLocale +styleable AppCompatTheme actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme android_windowAnimationStyle android_windowIsFloating autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorBackgroundFloating colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorError colorPrimary colorPrimaryDark colorSwitchThumbNormal controlBackground dialogCornerRadius dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator imageButtonStyle listChoiceBackgroundIndicator listChoiceIndicatorMultipleAnimated listChoiceIndicatorSingleAnimated listDividerAlertDialog listMenuViewStyle listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingEnd listPreferredItemPaddingLeft listPreferredItemPaddingRight listPreferredItemPaddingStart panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle ratingBarStyleIndicator ratingBarStyleSmall searchViewStyle seekBarStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSecondary textAppearanceListItemSmall textAppearancePopupMenuHeader textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle tooltipForegroundColor tooltipFrameBackground viewInflaterClass windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle +styleable ButtonBarLayout allowStacking +styleable ColorStateListItem alpha android_alpha android_color +styleable CompoundButton android_button buttonCompat buttonTint buttonTintMode +styleable ConstraintLayout_Layout android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation barrierAllowsGoneWidgets barrierDirection chainUseRtl constraintSet constraint_referenced_ids layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop layout_optimizationLevel +styleable ConstraintLayout_placeholder content emptyVisibility +styleable ConstraintSet android_alpha android_elevation android_id android_layout_height android_layout_marginBottom android_layout_marginEnd android_layout_marginLeft android_layout_marginRight android_layout_marginStart android_layout_marginTop android_layout_width android_maxHeight android_maxWidth android_minHeight android_minWidth android_orientation android_rotation android_rotationX android_rotationY android_scaleX android_scaleY android_transformPivotX android_transformPivotY android_translationX android_translationY android_translationZ android_visibility barrierAllowsGoneWidgets barrierDirection chainUseRtl constraint_referenced_ids layout_constrainedHeight layout_constrainedWidth layout_constraintBaseline_creator layout_constraintBaseline_toBaselineOf layout_constraintBottom_creator layout_constraintBottom_toBottomOf layout_constraintBottom_toTopOf layout_constraintCircle layout_constraintCircleAngle layout_constraintCircleRadius layout_constraintDimensionRatio layout_constraintEnd_toEndOf layout_constraintEnd_toStartOf layout_constraintGuide_begin layout_constraintGuide_end layout_constraintGuide_percent layout_constraintHeight_default layout_constraintHeight_max layout_constraintHeight_min layout_constraintHeight_percent layout_constraintHorizontal_bias layout_constraintHorizontal_chainStyle layout_constraintHorizontal_weight layout_constraintLeft_creator layout_constraintLeft_toLeftOf layout_constraintLeft_toRightOf layout_constraintRight_creator layout_constraintRight_toLeftOf layout_constraintRight_toRightOf layout_constraintStart_toEndOf layout_constraintStart_toStartOf layout_constraintTop_creator layout_constraintTop_toBottomOf layout_constraintTop_toTopOf layout_constraintVertical_bias layout_constraintVertical_chainStyle layout_constraintVertical_weight layout_constraintWidth_default layout_constraintWidth_max layout_constraintWidth_min layout_constraintWidth_percent layout_editor_absoluteX layout_editor_absoluteY layout_goneMarginBottom layout_goneMarginEnd layout_goneMarginLeft layout_goneMarginRight layout_goneMarginStart layout_goneMarginTop +styleable CoordinatorLayout keylines statusBarBackground +styleable CoordinatorLayout_Layout android_layout_gravity layout_anchor layout_anchorGravity layout_behavior layout_dodgeInsetEdges layout_insetEdge layout_keyline +styleable DrawerArrowToggle arrowHeadLength arrowShaftLength barLength color drawableSize gapBetweenBars spinBars thickness +styleable FontFamily fontProviderAuthority fontProviderCerts fontProviderFetchStrategy fontProviderFetchTimeout fontProviderPackage fontProviderQuery +styleable FontFamilyFont android_font android_fontStyle android_fontVariationSettings android_fontWeight android_ttcIndex font fontStyle fontVariationSettings fontWeight ttcIndex +styleable GradientColor android_centerColor android_centerX android_centerY android_endColor android_endX android_endY android_gradientRadius android_startColor android_startX android_startY android_tileMode android_type +styleable GradientColorItem android_color android_offset +styleable LinearConstraintLayout android_orientation +styleable LinearLayoutCompat android_baselineAligned android_baselineAlignedChildIndex android_gravity android_orientation android_weightSum divider dividerPadding measureWithLargestChild showDividers +styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_height android_layout_weight android_layout_width +styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset +styleable MenuGroup android_checkableBehavior android_enabled android_id android_menuCategory android_orderInCategory android_visible +styleable MenuItem actionLayout actionProviderClass actionViewClass alphabeticModifiers android_alphabeticShortcut android_checkable android_checked android_enabled android_icon android_id android_menuCategory android_numericShortcut android_onClick android_orderInCategory android_title android_titleCondensed android_visible contentDescription iconTint iconTintMode numericModifiers showAsAction tooltipText +styleable MenuView android_headerBackground android_horizontalDivider android_itemBackground android_itemIconDisabledAlpha android_itemTextAppearance android_verticalDivider android_windowAnimationStyle preserveIconSpacing subMenuArrow +styleable PopupWindow android_popupAnimationStyle android_popupBackground overlapAnchor +styleable PopupWindowBackgroundState state_above_anchor +styleable RecycleListView paddingBottomNoButtons paddingTopNoTitle +styleable SearchView android_focusable android_imeOptions android_inputType android_maxWidth closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon +styleable Spinner android_dropDownWidth android_entries android_popupBackground android_prompt popupTheme +styleable StateListDrawable android_constantSize android_dither android_enterFadeDuration android_exitFadeDuration android_variablePadding android_visible +styleable StateListDrawableItem android_drawable +styleable SwitchCompat android_textOff android_textOn android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding thumbTint thumbTintMode track trackTint trackTintMode +styleable TextAppearance android_fontFamily android_shadowColor android_shadowDx android_shadowDy android_shadowRadius android_textColor android_textColorHint android_textColorLink android_textFontWeight android_textSize android_textStyle android_typeface fontFamily fontVariationSettings textAllCaps textLocale +styleable Toolbar android_gravity android_minHeight buttonGravity collapseContentDescription collapseIcon contentInsetEnd contentInsetEndWithActions contentInsetLeft contentInsetRight contentInsetStart contentInsetStartWithNavigation logo logoDescription maxButtonHeight menu navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance subtitleTextColor title titleMargin titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance titleTextColor +styleable View android_focusable android_theme paddingEnd paddingStart theme +styleable ViewBackgroundHelper android_background backgroundTint backgroundTintMode +styleable ViewStubCompat android_id android_inflatedId android_layout diff --git a/modules/mogo-module-splash/build/intermediates/runtime_library_classes/debug/classes.jar b/modules/mogo-module-splash/build/intermediates/runtime_library_classes/debug/classes.jar new file mode 100644 index 0000000000..95a00eb6d4 Binary files /dev/null and b/modules/mogo-module-splash/build/intermediates/runtime_library_classes/debug/classes.jar differ diff --git a/modules/mogo-module-splash/build/intermediates/symbols/debug/R.txt b/modules/mogo-module-splash/build/intermediates/symbols/debug/R.txt new file mode 100644 index 0000000000..ca05cd29a4 --- /dev/null +++ b/modules/mogo-module-splash/build/intermediates/symbols/debug/R.txt @@ -0,0 +1,1923 @@ +int anim abc_fade_in 0x7f010001 +int anim abc_fade_out 0x7f010002 +int anim abc_grow_fade_in_from_bottom 0x7f010003 +int anim abc_popup_enter 0x7f010004 +int anim abc_popup_exit 0x7f010005 +int anim abc_shrink_fade_out_from_bottom 0x7f010006 +int anim abc_slide_in_bottom 0x7f010007 +int anim abc_slide_in_top 0x7f010008 +int anim abc_slide_out_bottom 0x7f010009 +int anim abc_slide_out_top 0x7f01000a +int anim abc_tooltip_enter 0x7f01000b +int anim abc_tooltip_exit 0x7f01000c +int anim btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000d +int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000e +int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000f +int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f010010 +int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010011 +int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010012 +int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010013 +int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010014 +int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010015 +int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010016 +int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010017 +int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010018 +int attr actionBarDivider 0x7f040001 +int attr actionBarItemBackground 0x7f040002 +int attr actionBarPopupTheme 0x7f040003 +int attr actionBarSize 0x7f040004 +int attr actionBarSplitStyle 0x7f040005 +int attr actionBarStyle 0x7f040006 +int attr actionBarTabBarStyle 0x7f040007 +int attr actionBarTabStyle 0x7f040008 +int attr actionBarTabTextStyle 0x7f040009 +int attr actionBarTheme 0x7f04000a +int attr actionBarWidgetTheme 0x7f04000b +int attr actionButtonStyle 0x7f04000c +int attr actionDropDownStyle 0x7f04000d +int attr actionLayout 0x7f04000e +int attr actionMenuTextAppearance 0x7f04000f +int attr actionMenuTextColor 0x7f040010 +int attr actionModeBackground 0x7f040011 +int attr actionModeCloseButtonStyle 0x7f040012 +int attr actionModeCloseDrawable 0x7f040013 +int attr actionModeCopyDrawable 0x7f040014 +int attr actionModeCutDrawable 0x7f040015 +int attr actionModeFindDrawable 0x7f040016 +int attr actionModePasteDrawable 0x7f040017 +int attr actionModePopupWindowStyle 0x7f040018 +int attr actionModeSelectAllDrawable 0x7f040019 +int attr actionModeShareDrawable 0x7f04001a +int attr actionModeSplitBackground 0x7f04001b +int attr actionModeStyle 0x7f04001c +int attr actionModeWebSearchDrawable 0x7f04001d +int attr actionOverflowButtonStyle 0x7f04001e +int attr actionOverflowMenuStyle 0x7f04001f +int attr actionProviderClass 0x7f040020 +int attr actionViewClass 0x7f040021 +int attr activityChooserViewStyle 0x7f040022 +int attr alertDialogButtonGroupStyle 0x7f040023 +int attr alertDialogCenterButtons 0x7f040024 +int attr alertDialogStyle 0x7f040025 +int attr alertDialogTheme 0x7f040026 +int attr allowStacking 0x7f040027 +int attr alpha 0x7f040028 +int attr alphabeticModifiers 0x7f040029 +int attr arrowHeadLength 0x7f04002a +int attr arrowShaftLength 0x7f04002b +int attr autoCompleteTextViewStyle 0x7f04002c +int attr autoSizeMaxTextSize 0x7f04002d +int attr autoSizeMinTextSize 0x7f04002e +int attr autoSizePresetSizes 0x7f04002f +int attr autoSizeStepGranularity 0x7f040030 +int attr autoSizeTextType 0x7f040031 +int attr background 0x7f040032 +int attr backgroundSplit 0x7f040033 +int attr backgroundStacked 0x7f040034 +int attr backgroundTint 0x7f040035 +int attr backgroundTintMode 0x7f040036 +int attr barLength 0x7f040037 +int attr barrierAllowsGoneWidgets 0x7f040038 +int attr barrierDirection 0x7f040039 +int attr borderlessButtonStyle 0x7f04003a +int attr buttonBarButtonStyle 0x7f04003b +int attr buttonBarNegativeButtonStyle 0x7f04003c +int attr buttonBarNeutralButtonStyle 0x7f04003d +int attr buttonBarPositiveButtonStyle 0x7f04003e +int attr buttonBarStyle 0x7f04003f +int attr buttonCompat 0x7f040040 +int attr buttonGravity 0x7f040041 +int attr buttonIconDimen 0x7f040042 +int attr buttonPanelSideLayout 0x7f040043 +int attr buttonStyle 0x7f040044 +int attr buttonStyleSmall 0x7f040045 +int attr buttonTint 0x7f040046 +int attr buttonTintMode 0x7f040047 +int attr chainUseRtl 0x7f040048 +int attr checkboxStyle 0x7f040049 +int attr checkedTextViewStyle 0x7f04004a +int attr closeIcon 0x7f04004b +int attr closeItemLayout 0x7f04004c +int attr collapseContentDescription 0x7f04004d +int attr collapseIcon 0x7f04004e +int attr color 0x7f04004f +int attr colorAccent 0x7f040050 +int attr colorBackgroundFloating 0x7f040051 +int attr colorButtonNormal 0x7f040052 +int attr colorControlActivated 0x7f040053 +int attr colorControlHighlight 0x7f040054 +int attr colorControlNormal 0x7f040055 +int attr colorError 0x7f040056 +int attr colorPrimary 0x7f040057 +int attr colorPrimaryDark 0x7f040058 +int attr colorSwitchThumbNormal 0x7f040059 +int attr commitIcon 0x7f04005a +int attr constraintSet 0x7f04005b +int attr constraint_referenced_ids 0x7f04005c +int attr content 0x7f04005d +int attr contentDescription 0x7f04005e +int attr contentInsetEnd 0x7f04005f +int attr contentInsetEndWithActions 0x7f040060 +int attr contentInsetLeft 0x7f040061 +int attr contentInsetRight 0x7f040062 +int attr contentInsetStart 0x7f040063 +int attr contentInsetStartWithNavigation 0x7f040064 +int attr controlBackground 0x7f040065 +int attr coordinatorLayoutStyle 0x7f040066 +int attr customNavigationLayout 0x7f040067 +int attr defaultQueryHint 0x7f040068 +int attr dialogCornerRadius 0x7f040069 +int attr dialogPreferredPadding 0x7f04006a +int attr dialogTheme 0x7f04006b +int attr displayOptions 0x7f04006c +int attr divider 0x7f04006d +int attr dividerHorizontal 0x7f04006e +int attr dividerPadding 0x7f04006f +int attr dividerVertical 0x7f040070 +int attr drawableBottomCompat 0x7f040071 +int attr drawableEndCompat 0x7f040072 +int attr drawableLeftCompat 0x7f040073 +int attr drawableRightCompat 0x7f040074 +int attr drawableSize 0x7f040075 +int attr drawableStartCompat 0x7f040076 +int attr drawableTint 0x7f040077 +int attr drawableTintMode 0x7f040078 +int attr drawableTopCompat 0x7f040079 +int attr drawerArrowStyle 0x7f04007a +int attr dropDownListViewStyle 0x7f04007b +int attr dropdownListPreferredItemHeight 0x7f04007c +int attr editTextBackground 0x7f04007d +int attr editTextColor 0x7f04007e +int attr editTextStyle 0x7f04007f +int attr elevation 0x7f040080 +int attr emptyVisibility 0x7f040081 +int attr expandActivityOverflowButtonDrawable 0x7f040082 +int attr firstBaselineToTopHeight 0x7f040083 +int attr font 0x7f040084 +int attr fontFamily 0x7f040085 +int attr fontProviderAuthority 0x7f040086 +int attr fontProviderCerts 0x7f040087 +int attr fontProviderFetchStrategy 0x7f040088 +int attr fontProviderFetchTimeout 0x7f040089 +int attr fontProviderPackage 0x7f04008a +int attr fontProviderQuery 0x7f04008b +int attr fontStyle 0x7f04008c +int attr fontVariationSettings 0x7f04008d +int attr fontWeight 0x7f04008e +int attr gapBetweenBars 0x7f04008f +int attr goIcon 0x7f040090 +int attr height 0x7f040091 +int attr hideOnContentScroll 0x7f040092 +int attr homeAsUpIndicator 0x7f040093 +int attr homeLayout 0x7f040094 +int attr icon 0x7f040095 +int attr iconTint 0x7f040096 +int attr iconTintMode 0x7f040097 +int attr iconifiedByDefault 0x7f040098 +int attr imageButtonStyle 0x7f040099 +int attr indeterminateProgressStyle 0x7f04009a +int attr initialActivityCount 0x7f04009b +int attr isLightTheme 0x7f04009c +int attr itemPadding 0x7f04009d +int attr keylines 0x7f04009e +int attr lastBaselineToBottomHeight 0x7f04009f +int attr layout 0x7f0400a0 +int attr layout_anchor 0x7f0400a1 +int attr layout_anchorGravity 0x7f0400a2 +int attr layout_behavior 0x7f0400a3 +int attr layout_constrainedHeight 0x7f0400a4 +int attr layout_constrainedWidth 0x7f0400a5 +int attr layout_constraintBaseline_creator 0x7f0400a6 +int attr layout_constraintBaseline_toBaselineOf 0x7f0400a7 +int attr layout_constraintBottom_creator 0x7f0400a8 +int attr layout_constraintBottom_toBottomOf 0x7f0400a9 +int attr layout_constraintBottom_toTopOf 0x7f0400aa +int attr layout_constraintCircle 0x7f0400ab +int attr layout_constraintCircleAngle 0x7f0400ac +int attr layout_constraintCircleRadius 0x7f0400ad +int attr layout_constraintDimensionRatio 0x7f0400ae +int attr layout_constraintEnd_toEndOf 0x7f0400af +int attr layout_constraintEnd_toStartOf 0x7f0400b0 +int attr layout_constraintGuide_begin 0x7f0400b1 +int attr layout_constraintGuide_end 0x7f0400b2 +int attr layout_constraintGuide_percent 0x7f0400b3 +int attr layout_constraintHeight_default 0x7f0400b4 +int attr layout_constraintHeight_max 0x7f0400b5 +int attr layout_constraintHeight_min 0x7f0400b6 +int attr layout_constraintHeight_percent 0x7f0400b7 +int attr layout_constraintHorizontal_bias 0x7f0400b8 +int attr layout_constraintHorizontal_chainStyle 0x7f0400b9 +int attr layout_constraintHorizontal_weight 0x7f0400ba +int attr layout_constraintLeft_creator 0x7f0400bb +int attr layout_constraintLeft_toLeftOf 0x7f0400bc +int attr layout_constraintLeft_toRightOf 0x7f0400bd +int attr layout_constraintRight_creator 0x7f0400be +int attr layout_constraintRight_toLeftOf 0x7f0400bf +int attr layout_constraintRight_toRightOf 0x7f0400c0 +int attr layout_constraintStart_toEndOf 0x7f0400c1 +int attr layout_constraintStart_toStartOf 0x7f0400c2 +int attr layout_constraintTop_creator 0x7f0400c3 +int attr layout_constraintTop_toBottomOf 0x7f0400c4 +int attr layout_constraintTop_toTopOf 0x7f0400c5 +int attr layout_constraintVertical_bias 0x7f0400c6 +int attr layout_constraintVertical_chainStyle 0x7f0400c7 +int attr layout_constraintVertical_weight 0x7f0400c8 +int attr layout_constraintWidth_default 0x7f0400c9 +int attr layout_constraintWidth_max 0x7f0400ca +int attr layout_constraintWidth_min 0x7f0400cb +int attr layout_constraintWidth_percent 0x7f0400cc +int attr layout_dodgeInsetEdges 0x7f0400cd +int attr layout_editor_absoluteX 0x7f0400ce +int attr layout_editor_absoluteY 0x7f0400cf +int attr layout_goneMarginBottom 0x7f0400d0 +int attr layout_goneMarginEnd 0x7f0400d1 +int attr layout_goneMarginLeft 0x7f0400d2 +int attr layout_goneMarginRight 0x7f0400d3 +int attr layout_goneMarginStart 0x7f0400d4 +int attr layout_goneMarginTop 0x7f0400d5 +int attr layout_insetEdge 0x7f0400d6 +int attr layout_keyline 0x7f0400d7 +int attr layout_optimizationLevel 0x7f0400d8 +int attr lineHeight 0x7f0400d9 +int attr listChoiceBackgroundIndicator 0x7f0400da +int attr listChoiceIndicatorMultipleAnimated 0x7f0400db +int attr listChoiceIndicatorSingleAnimated 0x7f0400dc +int attr listDividerAlertDialog 0x7f0400dd +int attr listItemLayout 0x7f0400de +int attr listLayout 0x7f0400df +int attr listMenuViewStyle 0x7f0400e0 +int attr listPopupWindowStyle 0x7f0400e1 +int attr listPreferredItemHeight 0x7f0400e2 +int attr listPreferredItemHeightLarge 0x7f0400e3 +int attr listPreferredItemHeightSmall 0x7f0400e4 +int attr listPreferredItemPaddingEnd 0x7f0400e5 +int attr listPreferredItemPaddingLeft 0x7f0400e6 +int attr listPreferredItemPaddingRight 0x7f0400e7 +int attr listPreferredItemPaddingStart 0x7f0400e8 +int attr logo 0x7f0400e9 +int attr logoDescription 0x7f0400ea +int attr maxButtonHeight 0x7f0400eb +int attr measureWithLargestChild 0x7f0400ec +int attr menu 0x7f0400ed +int attr multiChoiceItemLayout 0x7f0400ee +int attr navigationContentDescription 0x7f0400ef +int attr navigationIcon 0x7f0400f0 +int attr navigationMode 0x7f0400f1 +int attr numericModifiers 0x7f0400f2 +int attr overlapAnchor 0x7f0400f3 +int attr paddingBottomNoButtons 0x7f0400f4 +int attr paddingEnd 0x7f0400f5 +int attr paddingStart 0x7f0400f6 +int attr paddingTopNoTitle 0x7f0400f7 +int attr panelBackground 0x7f0400f8 +int attr panelMenuListTheme 0x7f0400f9 +int attr panelMenuListWidth 0x7f0400fa +int attr popupMenuStyle 0x7f0400fb +int attr popupTheme 0x7f0400fc +int attr popupWindowStyle 0x7f0400fd +int attr preserveIconSpacing 0x7f0400fe +int attr progressBarPadding 0x7f0400ff +int attr progressBarStyle 0x7f040100 +int attr queryBackground 0x7f040101 +int attr queryHint 0x7f040102 +int attr radioButtonStyle 0x7f040103 +int attr ratingBarStyle 0x7f040104 +int attr ratingBarStyleIndicator 0x7f040105 +int attr ratingBarStyleSmall 0x7f040106 +int attr searchHintIcon 0x7f040107 +int attr searchIcon 0x7f040108 +int attr searchViewStyle 0x7f040109 +int attr seekBarStyle 0x7f04010a +int attr selectableItemBackground 0x7f04010b +int attr selectableItemBackgroundBorderless 0x7f04010c +int attr showAsAction 0x7f04010d +int attr showDividers 0x7f04010e +int attr showText 0x7f04010f +int attr showTitle 0x7f040110 +int attr singleChoiceItemLayout 0x7f040111 +int attr spinBars 0x7f040112 +int attr spinnerDropDownItemStyle 0x7f040113 +int attr spinnerStyle 0x7f040114 +int attr splitTrack 0x7f040115 +int attr srcCompat 0x7f040116 +int attr state_above_anchor 0x7f040117 +int attr statusBarBackground 0x7f040118 +int attr subMenuArrow 0x7f040119 +int attr submitBackground 0x7f04011a +int attr subtitle 0x7f04011b +int attr subtitleTextAppearance 0x7f04011c +int attr subtitleTextColor 0x7f04011d +int attr subtitleTextStyle 0x7f04011e +int attr suggestionRowLayout 0x7f04011f +int attr switchMinWidth 0x7f040120 +int attr switchPadding 0x7f040121 +int attr switchStyle 0x7f040122 +int attr switchTextAppearance 0x7f040123 +int attr textAllCaps 0x7f040124 +int attr textAppearanceLargePopupMenu 0x7f040125 +int attr textAppearanceListItem 0x7f040126 +int attr textAppearanceListItemSecondary 0x7f040127 +int attr textAppearanceListItemSmall 0x7f040128 +int attr textAppearancePopupMenuHeader 0x7f040129 +int attr textAppearanceSearchResultSubtitle 0x7f04012a +int attr textAppearanceSearchResultTitle 0x7f04012b +int attr textAppearanceSmallPopupMenu 0x7f04012c +int attr textColorAlertDialogListItem 0x7f04012d +int attr textColorSearchUrl 0x7f04012e +int attr textLocale 0x7f04012f +int attr theme 0x7f040130 +int attr thickness 0x7f040131 +int attr thumbTextPadding 0x7f040132 +int attr thumbTint 0x7f040133 +int attr thumbTintMode 0x7f040134 +int attr tickMark 0x7f040135 +int attr tickMarkTint 0x7f040136 +int attr tickMarkTintMode 0x7f040137 +int attr tint 0x7f040138 +int attr tintMode 0x7f040139 +int attr title 0x7f04013a +int attr titleMargin 0x7f04013b +int attr titleMarginBottom 0x7f04013c +int attr titleMarginEnd 0x7f04013d +int attr titleMarginStart 0x7f04013e +int attr titleMarginTop 0x7f04013f +int attr titleMargins 0x7f040140 +int attr titleTextAppearance 0x7f040141 +int attr titleTextColor 0x7f040142 +int attr titleTextStyle 0x7f040143 +int attr toolbarNavigationButtonStyle 0x7f040144 +int attr toolbarStyle 0x7f040145 +int attr tooltipForegroundColor 0x7f040146 +int attr tooltipFrameBackground 0x7f040147 +int attr tooltipText 0x7f040148 +int attr track 0x7f040149 +int attr trackTint 0x7f04014a +int attr trackTintMode 0x7f04014b +int attr ttcIndex 0x7f04014c +int attr viewInflaterClass 0x7f04014d +int attr voiceIcon 0x7f04014e +int attr windowActionBar 0x7f04014f +int attr windowActionBarOverlay 0x7f040150 +int attr windowActionModeOverlay 0x7f040151 +int attr windowFixedHeightMajor 0x7f040152 +int attr windowFixedHeightMinor 0x7f040153 +int attr windowFixedWidthMajor 0x7f040154 +int attr windowFixedWidthMinor 0x7f040155 +int attr windowMinWidthMajor 0x7f040156 +int attr windowMinWidthMinor 0x7f040157 +int attr windowNoTitle 0x7f040158 +int bool abc_action_bar_embed_tabs 0x7f050001 +int bool abc_allow_stacked_button_bar 0x7f050002 +int bool abc_config_actionMenuItemAllCaps 0x7f050003 +int color abc_background_cache_hint_selector_material_dark 0x7f060001 +int color abc_background_cache_hint_selector_material_light 0x7f060002 +int color abc_btn_colored_borderless_text_material 0x7f060003 +int color abc_btn_colored_text_material 0x7f060004 +int color abc_color_highlight_material 0x7f060005 +int color abc_hint_foreground_material_dark 0x7f060006 +int color abc_hint_foreground_material_light 0x7f060007 +int color abc_input_method_navigation_guard 0x7f060008 +int color abc_primary_text_disable_only_material_dark 0x7f060009 +int color abc_primary_text_disable_only_material_light 0x7f06000a +int color abc_primary_text_material_dark 0x7f06000b +int color abc_primary_text_material_light 0x7f06000c +int color abc_search_url_text 0x7f06000d +int color abc_search_url_text_normal 0x7f06000e +int color abc_search_url_text_pressed 0x7f06000f +int color abc_search_url_text_selected 0x7f060010 +int color abc_secondary_text_material_dark 0x7f060011 +int color abc_secondary_text_material_light 0x7f060012 +int color abc_tint_btn_checkable 0x7f060013 +int color abc_tint_default 0x7f060014 +int color abc_tint_edittext 0x7f060015 +int color abc_tint_seek_thumb 0x7f060016 +int color abc_tint_spinner 0x7f060017 +int color abc_tint_switch_track 0x7f060018 +int color accent_material_dark 0x7f060019 +int color accent_material_light 0x7f06001a +int color androidx_core_ripple_material_light 0x7f06001b +int color androidx_core_secondary_text_default_material_light 0x7f06001c +int color background_floating_material_dark 0x7f06001d +int color background_floating_material_light 0x7f06001e +int color background_material_dark 0x7f06001f +int color background_material_light 0x7f060020 +int color bright_foreground_disabled_material_dark 0x7f060021 +int color bright_foreground_disabled_material_light 0x7f060022 +int color bright_foreground_inverse_material_dark 0x7f060023 +int color bright_foreground_inverse_material_light 0x7f060024 +int color bright_foreground_material_dark 0x7f060025 +int color bright_foreground_material_light 0x7f060026 +int color button_material_dark 0x7f060027 +int color button_material_light 0x7f060028 +int color dim_foreground_disabled_material_dark 0x7f060029 +int color dim_foreground_disabled_material_light 0x7f06002a +int color dim_foreground_material_dark 0x7f06002b +int color dim_foreground_material_light 0x7f06002c +int color error_color_material_dark 0x7f06002d +int color error_color_material_light 0x7f06002e +int color foreground_material_dark 0x7f06002f +int color foreground_material_light 0x7f060030 +int color highlighted_text_material_dark 0x7f060031 +int color highlighted_text_material_light 0x7f060032 +int color material_blue_grey_800 0x7f060033 +int color material_blue_grey_900 0x7f060034 +int color material_blue_grey_950 0x7f060035 +int color material_deep_teal_200 0x7f060036 +int color material_deep_teal_500 0x7f060037 +int color material_grey_100 0x7f060038 +int color material_grey_300 0x7f060039 +int color material_grey_50 0x7f06003a +int color material_grey_600 0x7f06003b +int color material_grey_800 0x7f06003c +int color material_grey_850 0x7f06003d +int color material_grey_900 0x7f06003e +int color notification_action_color_filter 0x7f06003f +int color notification_icon_bg_color 0x7f060040 +int color notification_material_background_media_default_color 0x7f060041 +int color primary_dark_material_dark 0x7f060042 +int color primary_dark_material_light 0x7f060043 +int color primary_material_dark 0x7f060044 +int color primary_material_light 0x7f060045 +int color primary_text_default_material_dark 0x7f060046 +int color primary_text_default_material_light 0x7f060047 +int color primary_text_disabled_material_dark 0x7f060048 +int color primary_text_disabled_material_light 0x7f060049 +int color ripple_material_dark 0x7f06004a +int color ripple_material_light 0x7f06004b +int color secondary_text_default_material_dark 0x7f06004c +int color secondary_text_default_material_light 0x7f06004d +int color secondary_text_disabled_material_dark 0x7f06004e +int color secondary_text_disabled_material_light 0x7f06004f +int color switch_thumb_disabled_material_dark 0x7f060050 +int color switch_thumb_disabled_material_light 0x7f060051 +int color switch_thumb_material_dark 0x7f060052 +int color switch_thumb_material_light 0x7f060053 +int color switch_thumb_normal_material_dark 0x7f060054 +int color switch_thumb_normal_material_light 0x7f060055 +int color tooltip_background_dark 0x7f060056 +int color tooltip_background_light 0x7f060057 +int dimen abc_action_bar_content_inset_material 0x7f070001 +int dimen abc_action_bar_content_inset_with_nav 0x7f070002 +int dimen abc_action_bar_default_height_material 0x7f070003 +int dimen abc_action_bar_default_padding_end_material 0x7f070004 +int dimen abc_action_bar_default_padding_start_material 0x7f070005 +int dimen abc_action_bar_elevation_material 0x7f070006 +int dimen abc_action_bar_icon_vertical_padding_material 0x7f070007 +int dimen abc_action_bar_overflow_padding_end_material 0x7f070008 +int dimen abc_action_bar_overflow_padding_start_material 0x7f070009 +int dimen abc_action_bar_stacked_max_height 0x7f07000a +int dimen abc_action_bar_stacked_tab_max_width 0x7f07000b +int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f07000c +int dimen abc_action_bar_subtitle_top_margin_material 0x7f07000d +int dimen abc_action_button_min_height_material 0x7f07000e +int dimen abc_action_button_min_width_material 0x7f07000f +int dimen abc_action_button_min_width_overflow_material 0x7f070010 +int dimen abc_alert_dialog_button_bar_height 0x7f070011 +int dimen abc_alert_dialog_button_dimen 0x7f070012 +int dimen abc_button_inset_horizontal_material 0x7f070013 +int dimen abc_button_inset_vertical_material 0x7f070014 +int dimen abc_button_padding_horizontal_material 0x7f070015 +int dimen abc_button_padding_vertical_material 0x7f070016 +int dimen abc_cascading_menus_min_smallest_width 0x7f070017 +int dimen abc_config_prefDialogWidth 0x7f070018 +int dimen abc_control_corner_material 0x7f070019 +int dimen abc_control_inset_material 0x7f07001a +int dimen abc_control_padding_material 0x7f07001b +int dimen abc_dialog_corner_radius_material 0x7f07001c +int dimen abc_dialog_fixed_height_major 0x7f07001d +int dimen abc_dialog_fixed_height_minor 0x7f07001e +int dimen abc_dialog_fixed_width_major 0x7f07001f +int dimen abc_dialog_fixed_width_minor 0x7f070020 +int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f070021 +int dimen abc_dialog_list_padding_top_no_title 0x7f070022 +int dimen abc_dialog_min_width_major 0x7f070023 +int dimen abc_dialog_min_width_minor 0x7f070024 +int dimen abc_dialog_padding_material 0x7f070025 +int dimen abc_dialog_padding_top_material 0x7f070026 +int dimen abc_dialog_title_divider_material 0x7f070027 +int dimen abc_disabled_alpha_material_dark 0x7f070028 +int dimen abc_disabled_alpha_material_light 0x7f070029 +int dimen abc_dropdownitem_icon_width 0x7f07002a +int dimen abc_dropdownitem_text_padding_left 0x7f07002b +int dimen abc_dropdownitem_text_padding_right 0x7f07002c +int dimen abc_edit_text_inset_bottom_material 0x7f07002d +int dimen abc_edit_text_inset_horizontal_material 0x7f07002e +int dimen abc_edit_text_inset_top_material 0x7f07002f +int dimen abc_floating_window_z 0x7f070030 +int dimen abc_list_item_height_large_material 0x7f070031 +int dimen abc_list_item_height_material 0x7f070032 +int dimen abc_list_item_height_small_material 0x7f070033 +int dimen abc_list_item_padding_horizontal_material 0x7f070034 +int dimen abc_panel_menu_list_width 0x7f070035 +int dimen abc_progress_bar_height_material 0x7f070036 +int dimen abc_search_view_preferred_height 0x7f070037 +int dimen abc_search_view_preferred_width 0x7f070038 +int dimen abc_seekbar_track_background_height_material 0x7f070039 +int dimen abc_seekbar_track_progress_height_material 0x7f07003a +int dimen abc_select_dialog_padding_start_material 0x7f07003b +int dimen abc_switch_padding 0x7f07003c +int dimen abc_text_size_body_1_material 0x7f07003d +int dimen abc_text_size_body_2_material 0x7f07003e +int dimen abc_text_size_button_material 0x7f07003f +int dimen abc_text_size_caption_material 0x7f070040 +int dimen abc_text_size_display_1_material 0x7f070041 +int dimen abc_text_size_display_2_material 0x7f070042 +int dimen abc_text_size_display_3_material 0x7f070043 +int dimen abc_text_size_display_4_material 0x7f070044 +int dimen abc_text_size_headline_material 0x7f070045 +int dimen abc_text_size_large_material 0x7f070046 +int dimen abc_text_size_medium_material 0x7f070047 +int dimen abc_text_size_menu_header_material 0x7f070048 +int dimen abc_text_size_menu_material 0x7f070049 +int dimen abc_text_size_small_material 0x7f07004a +int dimen abc_text_size_subhead_material 0x7f07004b +int dimen abc_text_size_subtitle_material_toolbar 0x7f07004c +int dimen abc_text_size_title_material 0x7f07004d +int dimen abc_text_size_title_material_toolbar 0x7f07004e +int dimen compat_button_inset_horizontal_material 0x7f07004f +int dimen compat_button_inset_vertical_material 0x7f070050 +int dimen compat_button_padding_horizontal_material 0x7f070051 +int dimen compat_button_padding_vertical_material 0x7f070052 +int dimen compat_control_corner_material 0x7f070053 +int dimen compat_notification_large_icon_max_height 0x7f070054 +int dimen compat_notification_large_icon_max_width 0x7f070055 +int dimen disabled_alpha_material_dark 0x7f070056 +int dimen disabled_alpha_material_light 0x7f070057 +int dimen highlight_alpha_material_colored 0x7f070058 +int dimen highlight_alpha_material_dark 0x7f070059 +int dimen highlight_alpha_material_light 0x7f07005a +int dimen hint_alpha_material_dark 0x7f07005b +int dimen hint_alpha_material_light 0x7f07005c +int dimen hint_pressed_alpha_material_dark 0x7f07005d +int dimen hint_pressed_alpha_material_light 0x7f07005e +int dimen notification_action_icon_size 0x7f07005f +int dimen notification_action_text_size 0x7f070060 +int dimen notification_big_circle_margin 0x7f070061 +int dimen notification_content_margin_start 0x7f070062 +int dimen notification_large_icon_height 0x7f070063 +int dimen notification_large_icon_width 0x7f070064 +int dimen notification_main_column_padding_top 0x7f070065 +int dimen notification_media_narrow_margin 0x7f070066 +int dimen notification_right_icon_size 0x7f070067 +int dimen notification_right_side_padding_top 0x7f070068 +int dimen notification_small_icon_background_padding 0x7f070069 +int dimen notification_small_icon_size_as_large 0x7f07006a +int dimen notification_subtext_size 0x7f07006b +int dimen notification_top_pad 0x7f07006c +int dimen notification_top_pad_large_text 0x7f07006d +int dimen subtitle_corner_radius 0x7f07006e +int dimen subtitle_outline_width 0x7f07006f +int dimen subtitle_shadow_offset 0x7f070070 +int dimen subtitle_shadow_radius 0x7f070071 +int dimen tooltip_corner_radius 0x7f070072 +int dimen tooltip_horizontal_padding 0x7f070073 +int dimen tooltip_margin 0x7f070074 +int dimen tooltip_precise_anchor_extra_offset 0x7f070075 +int dimen tooltip_precise_anchor_threshold 0x7f070076 +int dimen tooltip_vertical_padding 0x7f070077 +int dimen tooltip_y_offset_non_touch 0x7f070078 +int dimen tooltip_y_offset_touch 0x7f070079 +int drawable abc_ab_share_pack_mtrl_alpha 0x7f080001 +int drawable abc_action_bar_item_background_material 0x7f080002 +int drawable abc_btn_borderless_material 0x7f080003 +int drawable abc_btn_check_material 0x7f080004 +int drawable abc_btn_check_material_anim 0x7f080005 +int drawable abc_btn_check_to_on_mtrl_000 0x7f080006 +int drawable abc_btn_check_to_on_mtrl_015 0x7f080007 +int drawable abc_btn_colored_material 0x7f080008 +int drawable abc_btn_default_mtrl_shape 0x7f080009 +int drawable abc_btn_radio_material 0x7f08000a +int drawable abc_btn_radio_material_anim 0x7f08000b +int drawable abc_btn_radio_to_on_mtrl_000 0x7f08000c +int drawable abc_btn_radio_to_on_mtrl_015 0x7f08000d +int drawable abc_btn_switch_to_on_mtrl_00001 0x7f08000e +int drawable abc_btn_switch_to_on_mtrl_00012 0x7f08000f +int drawable abc_cab_background_internal_bg 0x7f080010 +int drawable abc_cab_background_top_material 0x7f080011 +int drawable abc_cab_background_top_mtrl_alpha 0x7f080012 +int drawable abc_control_background_material 0x7f080013 +int drawable abc_dialog_material_background 0x7f080014 +int drawable abc_edit_text_material 0x7f080015 +int drawable abc_ic_ab_back_material 0x7f080016 +int drawable abc_ic_arrow_drop_right_black_24dp 0x7f080017 +int drawable abc_ic_clear_material 0x7f080018 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f080019 +int drawable abc_ic_go_search_api_material 0x7f08001a +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f08001b +int drawable abc_ic_menu_cut_mtrl_alpha 0x7f08001c +int drawable abc_ic_menu_overflow_material 0x7f08001d +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f08001e +int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f08001f +int drawable abc_ic_menu_share_mtrl_alpha 0x7f080020 +int drawable abc_ic_search_api_material 0x7f080021 +int drawable abc_ic_star_black_16dp 0x7f080022 +int drawable abc_ic_star_black_36dp 0x7f080023 +int drawable abc_ic_star_black_48dp 0x7f080024 +int drawable abc_ic_star_half_black_16dp 0x7f080025 +int drawable abc_ic_star_half_black_36dp 0x7f080026 +int drawable abc_ic_star_half_black_48dp 0x7f080027 +int drawable abc_ic_voice_search_api_material 0x7f080028 +int drawable abc_item_background_holo_dark 0x7f080029 +int drawable abc_item_background_holo_light 0x7f08002a +int drawable abc_list_divider_material 0x7f08002b +int drawable abc_list_divider_mtrl_alpha 0x7f08002c +int drawable abc_list_focused_holo 0x7f08002d +int drawable abc_list_longpressed_holo 0x7f08002e +int drawable abc_list_pressed_holo_dark 0x7f08002f +int drawable abc_list_pressed_holo_light 0x7f080030 +int drawable abc_list_selector_background_transition_holo_dark 0x7f080031 +int drawable abc_list_selector_background_transition_holo_light 0x7f080032 +int drawable abc_list_selector_disabled_holo_dark 0x7f080033 +int drawable abc_list_selector_disabled_holo_light 0x7f080034 +int drawable abc_list_selector_holo_dark 0x7f080035 +int drawable abc_list_selector_holo_light 0x7f080036 +int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f080037 +int drawable abc_popup_background_mtrl_mult 0x7f080038 +int drawable abc_ratingbar_indicator_material 0x7f080039 +int drawable abc_ratingbar_material 0x7f08003a +int drawable abc_ratingbar_small_material 0x7f08003b +int drawable abc_scrubber_control_off_mtrl_alpha 0x7f08003c +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f08003d +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f08003e +int drawable abc_scrubber_primary_mtrl_alpha 0x7f08003f +int drawable abc_scrubber_track_mtrl_alpha 0x7f080040 +int drawable abc_seekbar_thumb_material 0x7f080041 +int drawable abc_seekbar_tick_mark_material 0x7f080042 +int drawable abc_seekbar_track_material 0x7f080043 +int drawable abc_spinner_mtrl_am_alpha 0x7f080044 +int drawable abc_spinner_textfield_background_material 0x7f080045 +int drawable abc_switch_thumb_material 0x7f080046 +int drawable abc_switch_track_mtrl_alpha 0x7f080047 +int drawable abc_tab_indicator_material 0x7f080048 +int drawable abc_tab_indicator_mtrl_alpha 0x7f080049 +int drawable abc_text_cursor_material 0x7f08004a +int drawable abc_text_select_handle_left_mtrl_dark 0x7f08004b +int drawable abc_text_select_handle_left_mtrl_light 0x7f08004c +int drawable abc_text_select_handle_middle_mtrl_dark 0x7f08004d +int drawable abc_text_select_handle_middle_mtrl_light 0x7f08004e +int drawable abc_text_select_handle_right_mtrl_dark 0x7f08004f +int drawable abc_text_select_handle_right_mtrl_light 0x7f080050 +int drawable abc_textfield_activated_mtrl_alpha 0x7f080051 +int drawable abc_textfield_default_mtrl_alpha 0x7f080052 +int drawable abc_textfield_search_activated_mtrl_alpha 0x7f080053 +int drawable abc_textfield_search_default_mtrl_alpha 0x7f080054 +int drawable abc_textfield_search_material 0x7f080055 +int drawable abc_vector_test 0x7f080056 +int drawable btn_checkbox_checked_mtrl 0x7f080057 +int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f080058 +int drawable btn_checkbox_unchecked_mtrl 0x7f080059 +int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f08005a +int drawable btn_radio_off_mtrl 0x7f08005b +int drawable btn_radio_off_to_on_mtrl_animation 0x7f08005c +int drawable btn_radio_on_mtrl 0x7f08005d +int drawable btn_radio_on_to_off_mtrl_animation 0x7f08005e +int drawable byd_count_down_bg 0x7f08005f +int drawable byd_enter_btn_bg 0x7f080060 +int drawable module_byd_splash 0x7f080061 +int drawable notification_action_background 0x7f080062 +int drawable notification_bg 0x7f080063 +int drawable notification_bg_low 0x7f080064 +int drawable notification_bg_low_normal 0x7f080065 +int drawable notification_bg_low_pressed 0x7f080066 +int drawable notification_bg_normal 0x7f080067 +int drawable notification_bg_normal_pressed 0x7f080068 +int drawable notification_icon_background 0x7f080069 +int drawable notification_template_icon_bg 0x7f08006a +int drawable notification_template_icon_low_bg 0x7f08006b +int drawable notification_tile_bg 0x7f08006c +int drawable notify_panel_notification_icon_bg 0x7f08006d +int drawable tooltip_frame_dark 0x7f08006e +int drawable tooltip_frame_light 0x7f08006f +int id accessibility_action_clickable_span 0x7f0b0001 +int id accessibility_custom_action_0 0x7f0b0002 +int id accessibility_custom_action_1 0x7f0b0003 +int id accessibility_custom_action_10 0x7f0b0004 +int id accessibility_custom_action_11 0x7f0b0005 +int id accessibility_custom_action_12 0x7f0b0006 +int id accessibility_custom_action_13 0x7f0b0007 +int id accessibility_custom_action_14 0x7f0b0008 +int id accessibility_custom_action_15 0x7f0b0009 +int id accessibility_custom_action_16 0x7f0b000a +int id accessibility_custom_action_17 0x7f0b000b +int id accessibility_custom_action_18 0x7f0b000c +int id accessibility_custom_action_19 0x7f0b000d +int id accessibility_custom_action_2 0x7f0b000e +int id accessibility_custom_action_20 0x7f0b000f +int id accessibility_custom_action_21 0x7f0b0010 +int id accessibility_custom_action_22 0x7f0b0011 +int id accessibility_custom_action_23 0x7f0b0012 +int id accessibility_custom_action_24 0x7f0b0013 +int id accessibility_custom_action_25 0x7f0b0014 +int id accessibility_custom_action_26 0x7f0b0015 +int id accessibility_custom_action_27 0x7f0b0016 +int id accessibility_custom_action_28 0x7f0b0017 +int id accessibility_custom_action_29 0x7f0b0018 +int id accessibility_custom_action_3 0x7f0b0019 +int id accessibility_custom_action_30 0x7f0b001a +int id accessibility_custom_action_31 0x7f0b001b +int id accessibility_custom_action_4 0x7f0b001c +int id accessibility_custom_action_5 0x7f0b001d +int id accessibility_custom_action_6 0x7f0b001e +int id accessibility_custom_action_7 0x7f0b001f +int id accessibility_custom_action_8 0x7f0b0020 +int id accessibility_custom_action_9 0x7f0b0021 +int id action0 0x7f0b0022 +int id action_bar 0x7f0b0023 +int id action_bar_activity_content 0x7f0b0024 +int id action_bar_container 0x7f0b0025 +int id action_bar_root 0x7f0b0026 +int id action_bar_spinner 0x7f0b0027 +int id action_bar_subtitle 0x7f0b0028 +int id action_bar_title 0x7f0b0029 +int id action_container 0x7f0b002a +int id action_context_bar 0x7f0b002b +int id action_divider 0x7f0b002c +int id action_image 0x7f0b002d +int id action_menu_divider 0x7f0b002e +int id action_menu_presenter 0x7f0b002f +int id action_mode_bar 0x7f0b0030 +int id action_mode_bar_stub 0x7f0b0031 +int id action_mode_close_button 0x7f0b0032 +int id action_text 0x7f0b0033 +int id actions 0x7f0b0034 +int id activity_chooser_view_content 0x7f0b0035 +int id add 0x7f0b0036 +int id alertTitle 0x7f0b0037 +int id async 0x7f0b0038 +int id blocking 0x7f0b0039 +int id bottom 0x7f0b003a +int id buttonPanel 0x7f0b003b +int id cancel_action 0x7f0b003c +int id checkbox 0x7f0b003d +int id checked 0x7f0b003e +int id chronometer 0x7f0b003f +int id content 0x7f0b0040 +int id contentPanel 0x7f0b0041 +int id custom 0x7f0b0042 +int id customPanel 0x7f0b0043 +int id decor_content_parent 0x7f0b0044 +int id default_activity_button 0x7f0b0045 +int id dialog_button 0x7f0b0046 +int id edit_query 0x7f0b0047 +int id end 0x7f0b0048 +int id end_padder 0x7f0b0049 +int id expand_activities_button 0x7f0b004a +int id expanded_menu 0x7f0b004b +int id forever 0x7f0b004c +int id gone 0x7f0b004d +int id group_divider 0x7f0b004e +int id home 0x7f0b004f +int id icon 0x7f0b0050 +int id icon_group 0x7f0b0051 +int id image 0x7f0b0052 +int id info 0x7f0b0053 +int id invisible 0x7f0b0054 +int id italic 0x7f0b0055 +int id left 0x7f0b0056 +int id line1 0x7f0b0057 +int id line3 0x7f0b0058 +int id listMode 0x7f0b0059 +int id list_item 0x7f0b005a +int id media_actions 0x7f0b005b +int id message 0x7f0b005c +int id multiply 0x7f0b005d +int id none 0x7f0b005e +int id normal 0x7f0b005f +int id notification_background 0x7f0b0060 +int id notification_main_column 0x7f0b0061 +int id notification_main_column_container 0x7f0b0062 +int id off 0x7f0b0063 +int id on 0x7f0b0064 +int id packed 0x7f0b0065 +int id parent 0x7f0b0066 +int id parentPanel 0x7f0b0067 +int id percent 0x7f0b0068 +int id progress_circular 0x7f0b0069 +int id progress_horizontal 0x7f0b006a +int id radio 0x7f0b006b +int id right 0x7f0b006c +int id right_icon 0x7f0b006d +int id right_side 0x7f0b006e +int id screen 0x7f0b006f +int id scrollIndicatorDown 0x7f0b0070 +int id scrollIndicatorUp 0x7f0b0071 +int id scrollView 0x7f0b0072 +int id search_badge 0x7f0b0073 +int id search_bar 0x7f0b0074 +int id search_button 0x7f0b0075 +int id search_close_btn 0x7f0b0076 +int id search_edit_frame 0x7f0b0077 +int id search_go_btn 0x7f0b0078 +int id search_mag_icon 0x7f0b0079 +int id search_plate 0x7f0b007a +int id search_src_text 0x7f0b007b +int id search_voice_btn 0x7f0b007c +int id select_dialog_listview 0x7f0b007d +int id shortcut 0x7f0b007e +int id spacer 0x7f0b007f +int id split_action_bar 0x7f0b0080 +int id spread 0x7f0b0081 +int id spread_inside 0x7f0b0082 +int id src_atop 0x7f0b0083 +int id src_in 0x7f0b0084 +int id src_over 0x7f0b0085 +int id start 0x7f0b0086 +int id status_bar_latest_event_content 0x7f0b0087 +int id submenuarrow 0x7f0b0088 +int id submit_area 0x7f0b0089 +int id tabMode 0x7f0b008a +int id tag_accessibility_actions 0x7f0b008b +int id tag_accessibility_clickable_spans 0x7f0b008c +int id tag_accessibility_heading 0x7f0b008d +int id tag_accessibility_pane_title 0x7f0b008e +int id tag_screen_reader_focusable 0x7f0b008f +int id tag_transition_group 0x7f0b0090 +int id tag_unhandled_key_event_manager 0x7f0b0091 +int id tag_unhandled_key_listeners 0x7f0b0092 +int id text 0x7f0b0093 +int id text2 0x7f0b0094 +int id textSpacerNoButtons 0x7f0b0095 +int id textSpacerNoTitle 0x7f0b0096 +int id time 0x7f0b0097 +int id title 0x7f0b0098 +int id titleDividerNoCustom 0x7f0b0099 +int id title_template 0x7f0b009a +int id top 0x7f0b009b +int id topPanel 0x7f0b009c +int id tvByd 0x7f0b009d +int id tvCountDown 0x7f0b009e +int id unchecked 0x7f0b009f +int id uniform 0x7f0b00a0 +int id up 0x7f0b00a1 +int id wrap 0x7f0b00a2 +int id wrap_content 0x7f0b00a3 +int integer abc_config_activityDefaultDur 0x7f0c0001 +int integer abc_config_activityShortDur 0x7f0c0002 +int integer cancel_button_image_alpha 0x7f0c0003 +int integer config_tooltipAnimTime 0x7f0c0004 +int integer status_bar_notification_info_maxnum 0x7f0c0005 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x7f0d0001 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x7f0d0002 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x7f0d0003 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x7f0d0004 +int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x7f0d0005 +int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x7f0d0006 +int interpolator fast_out_slow_in 0x7f0d0007 +int layout abc_action_bar_title_item 0x7f0e0001 +int layout abc_action_bar_up_container 0x7f0e0002 +int layout abc_action_menu_item_layout 0x7f0e0003 +int layout abc_action_menu_layout 0x7f0e0004 +int layout abc_action_mode_bar 0x7f0e0005 +int layout abc_action_mode_close_item_material 0x7f0e0006 +int layout abc_activity_chooser_view 0x7f0e0007 +int layout abc_activity_chooser_view_list_item 0x7f0e0008 +int layout abc_alert_dialog_button_bar_material 0x7f0e0009 +int layout abc_alert_dialog_material 0x7f0e000a +int layout abc_alert_dialog_title_material 0x7f0e000b +int layout abc_cascading_menu_item_layout 0x7f0e000c +int layout abc_dialog_title_material 0x7f0e000d +int layout abc_expanded_menu_layout 0x7f0e000e +int layout abc_list_menu_item_checkbox 0x7f0e000f +int layout abc_list_menu_item_icon 0x7f0e0010 +int layout abc_list_menu_item_layout 0x7f0e0011 +int layout abc_list_menu_item_radio 0x7f0e0012 +int layout abc_popup_menu_header_item_layout 0x7f0e0013 +int layout abc_popup_menu_item_layout 0x7f0e0014 +int layout abc_screen_content_include 0x7f0e0015 +int layout abc_screen_simple 0x7f0e0016 +int layout abc_screen_simple_overlay_action_mode 0x7f0e0017 +int layout abc_screen_toolbar 0x7f0e0018 +int layout abc_search_dropdown_item_icons_2line 0x7f0e0019 +int layout abc_search_view 0x7f0e001a +int layout abc_select_dialog_material 0x7f0e001b +int layout abc_tooltip 0x7f0e001c +int layout custom_dialog 0x7f0e001d +int layout fragment_byd_splash 0x7f0e001e +int layout notification_action 0x7f0e001f +int layout notification_action_tombstone 0x7f0e0020 +int layout notification_media_action 0x7f0e0021 +int layout notification_media_cancel_action 0x7f0e0022 +int layout notification_template_big_media 0x7f0e0023 +int layout notification_template_big_media_custom 0x7f0e0024 +int layout notification_template_big_media_narrow 0x7f0e0025 +int layout notification_template_big_media_narrow_custom 0x7f0e0026 +int layout notification_template_custom_big 0x7f0e0027 +int layout notification_template_icon_group 0x7f0e0028 +int layout notification_template_lines_media 0x7f0e0029 +int layout notification_template_media 0x7f0e002a +int layout notification_template_media_custom 0x7f0e002b +int layout notification_template_part_chronometer 0x7f0e002c +int layout notification_template_part_time 0x7f0e002d +int layout select_dialog_item_material 0x7f0e002e +int layout select_dialog_multichoice_material 0x7f0e002f +int layout select_dialog_singlechoice_material 0x7f0e0030 +int layout support_simple_spinner_dropdown_item 0x7f0e0031 +int string abc_action_bar_home_description 0x7f140001 +int string abc_action_bar_up_description 0x7f140002 +int string abc_action_menu_overflow_description 0x7f140003 +int string abc_action_mode_done 0x7f140004 +int string abc_activity_chooser_view_see_all 0x7f140005 +int string abc_activitychooserview_choose_application 0x7f140006 +int string abc_capital_off 0x7f140007 +int string abc_capital_on 0x7f140008 +int string abc_menu_alt_shortcut_label 0x7f140009 +int string abc_menu_ctrl_shortcut_label 0x7f14000a +int string abc_menu_delete_shortcut_label 0x7f14000b +int string abc_menu_enter_shortcut_label 0x7f14000c +int string abc_menu_function_shortcut_label 0x7f14000d +int string abc_menu_meta_shortcut_label 0x7f14000e +int string abc_menu_shift_shortcut_label 0x7f14000f +int string abc_menu_space_shortcut_label 0x7f140010 +int string abc_menu_sym_shortcut_label 0x7f140011 +int string abc_prepend_shortcut_label 0x7f140012 +int string abc_search_hint 0x7f140013 +int string abc_searchview_description_clear 0x7f140014 +int string abc_searchview_description_query 0x7f140015 +int string abc_searchview_description_search 0x7f140016 +int string abc_searchview_description_submit 0x7f140017 +int string abc_searchview_description_voice 0x7f140018 +int string abc_shareactionprovider_share_with 0x7f140019 +int string abc_shareactionprovider_share_with_application 0x7f14001a +int string abc_toolbar_collapse_description 0x7f14001b +int string search_menu_title 0x7f14001c +int string status_bar_notification_info_overflow 0x7f14001d +int style AlertDialog_AppCompat 0x7f150001 +int style AlertDialog_AppCompat_Light 0x7f150002 +int style Animation_AppCompat_Dialog 0x7f150003 +int style Animation_AppCompat_DropDownUp 0x7f150004 +int style Animation_AppCompat_Tooltip 0x7f150005 +int style Base_AlertDialog_AppCompat 0x7f150006 +int style Base_AlertDialog_AppCompat_Light 0x7f150007 +int style Base_Animation_AppCompat_Dialog 0x7f150008 +int style Base_Animation_AppCompat_DropDownUp 0x7f150009 +int style Base_Animation_AppCompat_Tooltip 0x7f15000a +int style Base_DialogWindowTitleBackground_AppCompat 0x7f15000b +int style Base_DialogWindowTitle_AppCompat 0x7f15000c +int style Base_TextAppearance_AppCompat 0x7f15000d +int style Base_TextAppearance_AppCompat_Body1 0x7f15000e +int style Base_TextAppearance_AppCompat_Body2 0x7f15000f +int style Base_TextAppearance_AppCompat_Button 0x7f150010 +int style Base_TextAppearance_AppCompat_Caption 0x7f150011 +int style Base_TextAppearance_AppCompat_Display1 0x7f150012 +int style Base_TextAppearance_AppCompat_Display2 0x7f150013 +int style Base_TextAppearance_AppCompat_Display3 0x7f150014 +int style Base_TextAppearance_AppCompat_Display4 0x7f150015 +int style Base_TextAppearance_AppCompat_Headline 0x7f150016 +int style Base_TextAppearance_AppCompat_Inverse 0x7f150017 +int style Base_TextAppearance_AppCompat_Large 0x7f150018 +int style Base_TextAppearance_AppCompat_Large_Inverse 0x7f150019 +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f15001a +int style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f15001b +int style Base_TextAppearance_AppCompat_Medium 0x7f15001c +int style Base_TextAppearance_AppCompat_Medium_Inverse 0x7f15001d +int style Base_TextAppearance_AppCompat_Menu 0x7f15001e +int style Base_TextAppearance_AppCompat_SearchResult 0x7f15001f +int style Base_TextAppearance_AppCompat_SearchResult_Subtitle 0x7f150020 +int style Base_TextAppearance_AppCompat_SearchResult_Title 0x7f150021 +int style Base_TextAppearance_AppCompat_Small 0x7f150022 +int style Base_TextAppearance_AppCompat_Small_Inverse 0x7f150023 +int style Base_TextAppearance_AppCompat_Subhead 0x7f150024 +int style Base_TextAppearance_AppCompat_Subhead_Inverse 0x7f150025 +int style Base_TextAppearance_AppCompat_Title 0x7f150026 +int style Base_TextAppearance_AppCompat_Title_Inverse 0x7f150027 +int style Base_TextAppearance_AppCompat_Tooltip 0x7f150028 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f150029 +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f15002a +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f15002b +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f15002c +int style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f15002d +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f15002e +int style Base_TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f15002f +int style Base_TextAppearance_AppCompat_Widget_Button 0x7f150030 +int style Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f150031 +int style Base_TextAppearance_AppCompat_Widget_Button_Colored 0x7f150032 +int style Base_TextAppearance_AppCompat_Widget_Button_Inverse 0x7f150033 +int style Base_TextAppearance_AppCompat_Widget_DropDownItem 0x7f150034 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f150035 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f150036 +int style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f150037 +int style Base_TextAppearance_AppCompat_Widget_Switch 0x7f150038 +int style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f150039 +int style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f15003a +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f15003b +int style Base_TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f15003c +int style Base_ThemeOverlay_AppCompat 0x7f15003d +int style Base_ThemeOverlay_AppCompat_ActionBar 0x7f15003e +int style Base_ThemeOverlay_AppCompat_Dark 0x7f15003f +int style Base_ThemeOverlay_AppCompat_Dark_ActionBar 0x7f150040 +int style Base_ThemeOverlay_AppCompat_Dialog 0x7f150041 +int style Base_ThemeOverlay_AppCompat_Dialog_Alert 0x7f150042 +int style Base_ThemeOverlay_AppCompat_Light 0x7f150043 +int style Base_Theme_AppCompat 0x7f150044 +int style Base_Theme_AppCompat_CompactMenu 0x7f150045 +int style Base_Theme_AppCompat_Dialog 0x7f150046 +int style Base_Theme_AppCompat_DialogWhenLarge 0x7f150047 +int style Base_Theme_AppCompat_Dialog_Alert 0x7f150048 +int style Base_Theme_AppCompat_Dialog_FixedSize 0x7f150049 +int style Base_Theme_AppCompat_Dialog_MinWidth 0x7f15004a +int style Base_Theme_AppCompat_Light 0x7f15004b +int style Base_Theme_AppCompat_Light_DarkActionBar 0x7f15004c +int style Base_Theme_AppCompat_Light_Dialog 0x7f15004d +int style Base_Theme_AppCompat_Light_DialogWhenLarge 0x7f15004e +int style Base_Theme_AppCompat_Light_Dialog_Alert 0x7f15004f +int style Base_Theme_AppCompat_Light_Dialog_FixedSize 0x7f150050 +int style Base_Theme_AppCompat_Light_Dialog_MinWidth 0x7f150051 +int style Base_V21_ThemeOverlay_AppCompat_Dialog 0x7f150052 +int style Base_V21_Theme_AppCompat 0x7f150053 +int style Base_V21_Theme_AppCompat_Dialog 0x7f150054 +int style Base_V21_Theme_AppCompat_Light 0x7f150055 +int style Base_V21_Theme_AppCompat_Light_Dialog 0x7f150056 +int style Base_V22_Theme_AppCompat 0x7f150057 +int style Base_V22_Theme_AppCompat_Light 0x7f150058 +int style Base_V23_Theme_AppCompat 0x7f150059 +int style Base_V23_Theme_AppCompat_Light 0x7f15005a +int style Base_V26_Theme_AppCompat 0x7f15005b +int style Base_V26_Theme_AppCompat_Light 0x7f15005c +int style Base_V26_Widget_AppCompat_Toolbar 0x7f15005d +int style Base_V28_Theme_AppCompat 0x7f15005e +int style Base_V28_Theme_AppCompat_Light 0x7f15005f +int style Base_V7_ThemeOverlay_AppCompat_Dialog 0x7f150060 +int style Base_V7_Theme_AppCompat 0x7f150061 +int style Base_V7_Theme_AppCompat_Dialog 0x7f150062 +int style Base_V7_Theme_AppCompat_Light 0x7f150063 +int style Base_V7_Theme_AppCompat_Light_Dialog 0x7f150064 +int style Base_V7_Widget_AppCompat_AutoCompleteTextView 0x7f150065 +int style Base_V7_Widget_AppCompat_EditText 0x7f150066 +int style Base_V7_Widget_AppCompat_Toolbar 0x7f150067 +int style Base_Widget_AppCompat_ActionBar 0x7f150068 +int style Base_Widget_AppCompat_ActionBar_Solid 0x7f150069 +int style Base_Widget_AppCompat_ActionBar_TabBar 0x7f15006a +int style Base_Widget_AppCompat_ActionBar_TabText 0x7f15006b +int style Base_Widget_AppCompat_ActionBar_TabView 0x7f15006c +int style Base_Widget_AppCompat_ActionButton 0x7f15006d +int style Base_Widget_AppCompat_ActionButton_CloseMode 0x7f15006e +int style Base_Widget_AppCompat_ActionButton_Overflow 0x7f15006f +int style Base_Widget_AppCompat_ActionMode 0x7f150070 +int style Base_Widget_AppCompat_ActivityChooserView 0x7f150071 +int style Base_Widget_AppCompat_AutoCompleteTextView 0x7f150072 +int style Base_Widget_AppCompat_Button 0x7f150073 +int style Base_Widget_AppCompat_ButtonBar 0x7f150074 +int style Base_Widget_AppCompat_ButtonBar_AlertDialog 0x7f150075 +int style Base_Widget_AppCompat_Button_Borderless 0x7f150076 +int style Base_Widget_AppCompat_Button_Borderless_Colored 0x7f150077 +int style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f150078 +int style Base_Widget_AppCompat_Button_Colored 0x7f150079 +int style Base_Widget_AppCompat_Button_Small 0x7f15007a +int style Base_Widget_AppCompat_CompoundButton_CheckBox 0x7f15007b +int style Base_Widget_AppCompat_CompoundButton_RadioButton 0x7f15007c +int style Base_Widget_AppCompat_CompoundButton_Switch 0x7f15007d +int style Base_Widget_AppCompat_DrawerArrowToggle 0x7f15007e +int style Base_Widget_AppCompat_DrawerArrowToggle_Common 0x7f15007f +int style Base_Widget_AppCompat_DropDownItem_Spinner 0x7f150080 +int style Base_Widget_AppCompat_EditText 0x7f150081 +int style Base_Widget_AppCompat_ImageButton 0x7f150082 +int style Base_Widget_AppCompat_Light_ActionBar 0x7f150083 +int style Base_Widget_AppCompat_Light_ActionBar_Solid 0x7f150084 +int style Base_Widget_AppCompat_Light_ActionBar_TabBar 0x7f150085 +int style Base_Widget_AppCompat_Light_ActionBar_TabText 0x7f150086 +int style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f150087 +int style Base_Widget_AppCompat_Light_ActionBar_TabView 0x7f150088 +int style Base_Widget_AppCompat_Light_PopupMenu 0x7f150089 +int style Base_Widget_AppCompat_Light_PopupMenu_Overflow 0x7f15008a +int style Base_Widget_AppCompat_ListMenuView 0x7f15008b +int style Base_Widget_AppCompat_ListPopupWindow 0x7f15008c +int style Base_Widget_AppCompat_ListView 0x7f15008d +int style Base_Widget_AppCompat_ListView_DropDown 0x7f15008e +int style Base_Widget_AppCompat_ListView_Menu 0x7f15008f +int style Base_Widget_AppCompat_PopupMenu 0x7f150090 +int style Base_Widget_AppCompat_PopupMenu_Overflow 0x7f150091 +int style Base_Widget_AppCompat_PopupWindow 0x7f150092 +int style Base_Widget_AppCompat_ProgressBar 0x7f150093 +int style Base_Widget_AppCompat_ProgressBar_Horizontal 0x7f150094 +int style Base_Widget_AppCompat_RatingBar 0x7f150095 +int style Base_Widget_AppCompat_RatingBar_Indicator 0x7f150096 +int style Base_Widget_AppCompat_RatingBar_Small 0x7f150097 +int style Base_Widget_AppCompat_SearchView 0x7f150098 +int style Base_Widget_AppCompat_SearchView_ActionBar 0x7f150099 +int style Base_Widget_AppCompat_SeekBar 0x7f15009a +int style Base_Widget_AppCompat_SeekBar_Discrete 0x7f15009b +int style Base_Widget_AppCompat_Spinner 0x7f15009c +int style Base_Widget_AppCompat_Spinner_Underlined 0x7f15009d +int style Base_Widget_AppCompat_TextView 0x7f15009e +int style Base_Widget_AppCompat_TextView_SpinnerItem 0x7f15009f +int style Base_Widget_AppCompat_Toolbar 0x7f1500a0 +int style Base_Widget_AppCompat_Toolbar_Button_Navigation 0x7f1500a1 +int style Platform_AppCompat 0x7f1500a2 +int style Platform_AppCompat_Light 0x7f1500a3 +int style Platform_ThemeOverlay_AppCompat 0x7f1500a4 +int style Platform_ThemeOverlay_AppCompat_Dark 0x7f1500a5 +int style Platform_ThemeOverlay_AppCompat_Light 0x7f1500a6 +int style Platform_V21_AppCompat 0x7f1500a7 +int style Platform_V21_AppCompat_Light 0x7f1500a8 +int style Platform_V25_AppCompat 0x7f1500a9 +int style Platform_V25_AppCompat_Light 0x7f1500aa +int style Platform_Widget_AppCompat_Spinner 0x7f1500ab +int style RtlOverlay_DialogWindowTitle_AppCompat 0x7f1500ac +int style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem 0x7f1500ad +int style RtlOverlay_Widget_AppCompat_DialogTitle_Icon 0x7f1500ae +int style RtlOverlay_Widget_AppCompat_PopupMenuItem 0x7f1500af +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup 0x7f1500b0 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut 0x7f1500b1 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow 0x7f1500b2 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text 0x7f1500b3 +int style RtlOverlay_Widget_AppCompat_PopupMenuItem_Title 0x7f1500b4 +int style RtlOverlay_Widget_AppCompat_SearchView_MagIcon 0x7f1500b5 +int style RtlOverlay_Widget_AppCompat_Search_DropDown 0x7f1500b6 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 0x7f1500b7 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 0x7f1500b8 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Query 0x7f1500b9 +int style RtlOverlay_Widget_AppCompat_Search_DropDown_Text 0x7f1500ba +int style RtlUnderlay_Widget_AppCompat_ActionButton 0x7f1500bb +int style RtlUnderlay_Widget_AppCompat_ActionButton_Overflow 0x7f1500bc +int style TextAppearance_AppCompat 0x7f1500bd +int style TextAppearance_AppCompat_Body1 0x7f1500be +int style TextAppearance_AppCompat_Body2 0x7f1500bf +int style TextAppearance_AppCompat_Button 0x7f1500c0 +int style TextAppearance_AppCompat_Caption 0x7f1500c1 +int style TextAppearance_AppCompat_Display1 0x7f1500c2 +int style TextAppearance_AppCompat_Display2 0x7f1500c3 +int style TextAppearance_AppCompat_Display3 0x7f1500c4 +int style TextAppearance_AppCompat_Display4 0x7f1500c5 +int style TextAppearance_AppCompat_Headline 0x7f1500c6 +int style TextAppearance_AppCompat_Inverse 0x7f1500c7 +int style TextAppearance_AppCompat_Large 0x7f1500c8 +int style TextAppearance_AppCompat_Large_Inverse 0x7f1500c9 +int style TextAppearance_AppCompat_Light_SearchResult_Subtitle 0x7f1500ca +int style TextAppearance_AppCompat_Light_SearchResult_Title 0x7f1500cb +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large 0x7f1500cc +int style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small 0x7f1500cd +int style TextAppearance_AppCompat_Medium 0x7f1500ce +int style TextAppearance_AppCompat_Medium_Inverse 0x7f1500cf +int style TextAppearance_AppCompat_Menu 0x7f1500d0 +int style TextAppearance_AppCompat_SearchResult_Subtitle 0x7f1500d1 +int style TextAppearance_AppCompat_SearchResult_Title 0x7f1500d2 +int style TextAppearance_AppCompat_Small 0x7f1500d3 +int style TextAppearance_AppCompat_Small_Inverse 0x7f1500d4 +int style TextAppearance_AppCompat_Subhead 0x7f1500d5 +int style TextAppearance_AppCompat_Subhead_Inverse 0x7f1500d6 +int style TextAppearance_AppCompat_Title 0x7f1500d7 +int style TextAppearance_AppCompat_Title_Inverse 0x7f1500d8 +int style TextAppearance_AppCompat_Tooltip 0x7f1500d9 +int style TextAppearance_AppCompat_Widget_ActionBar_Menu 0x7f1500da +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle 0x7f1500db +int style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse 0x7f1500dc +int style TextAppearance_AppCompat_Widget_ActionBar_Title 0x7f1500dd +int style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse 0x7f1500de +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle 0x7f1500df +int style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse 0x7f1500e0 +int style TextAppearance_AppCompat_Widget_ActionMode_Title 0x7f1500e1 +int style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse 0x7f1500e2 +int style TextAppearance_AppCompat_Widget_Button 0x7f1500e3 +int style TextAppearance_AppCompat_Widget_Button_Borderless_Colored 0x7f1500e4 +int style TextAppearance_AppCompat_Widget_Button_Colored 0x7f1500e5 +int style TextAppearance_AppCompat_Widget_Button_Inverse 0x7f1500e6 +int style TextAppearance_AppCompat_Widget_DropDownItem 0x7f1500e7 +int style TextAppearance_AppCompat_Widget_PopupMenu_Header 0x7f1500e8 +int style TextAppearance_AppCompat_Widget_PopupMenu_Large 0x7f1500e9 +int style TextAppearance_AppCompat_Widget_PopupMenu_Small 0x7f1500ea +int style TextAppearance_AppCompat_Widget_Switch 0x7f1500eb +int style TextAppearance_AppCompat_Widget_TextView_SpinnerItem 0x7f1500ec +int style TextAppearance_Compat_Notification 0x7f1500ed +int style TextAppearance_Compat_Notification_Info 0x7f1500ee +int style TextAppearance_Compat_Notification_Info_Media 0x7f1500ef +int style TextAppearance_Compat_Notification_Line2 0x7f1500f0 +int style TextAppearance_Compat_Notification_Line2_Media 0x7f1500f1 +int style TextAppearance_Compat_Notification_Media 0x7f1500f2 +int style TextAppearance_Compat_Notification_Time 0x7f1500f3 +int style TextAppearance_Compat_Notification_Time_Media 0x7f1500f4 +int style TextAppearance_Compat_Notification_Title 0x7f1500f5 +int style TextAppearance_Compat_Notification_Title_Media 0x7f1500f6 +int style TextAppearance_Widget_AppCompat_ExpandedMenu_Item 0x7f1500f7 +int style TextAppearance_Widget_AppCompat_Toolbar_Subtitle 0x7f1500f8 +int style TextAppearance_Widget_AppCompat_Toolbar_Title 0x7f1500f9 +int style ThemeOverlay_AppCompat 0x7f1500fa +int style ThemeOverlay_AppCompat_ActionBar 0x7f1500fb +int style ThemeOverlay_AppCompat_Dark 0x7f1500fc +int style ThemeOverlay_AppCompat_Dark_ActionBar 0x7f1500fd +int style ThemeOverlay_AppCompat_DayNight 0x7f1500fe +int style ThemeOverlay_AppCompat_DayNight_ActionBar 0x7f1500ff +int style ThemeOverlay_AppCompat_Dialog 0x7f150100 +int style ThemeOverlay_AppCompat_Dialog_Alert 0x7f150101 +int style ThemeOverlay_AppCompat_Light 0x7f150102 +int style Theme_AppCompat 0x7f150103 +int style Theme_AppCompat_CompactMenu 0x7f150104 +int style Theme_AppCompat_DayNight 0x7f150105 +int style Theme_AppCompat_DayNight_DarkActionBar 0x7f150106 +int style Theme_AppCompat_DayNight_Dialog 0x7f150107 +int style Theme_AppCompat_DayNight_DialogWhenLarge 0x7f150108 +int style Theme_AppCompat_DayNight_Dialog_Alert 0x7f150109 +int style Theme_AppCompat_DayNight_Dialog_MinWidth 0x7f15010a +int style Theme_AppCompat_DayNight_NoActionBar 0x7f15010b +int style Theme_AppCompat_Dialog 0x7f15010c +int style Theme_AppCompat_DialogWhenLarge 0x7f15010d +int style Theme_AppCompat_Dialog_Alert 0x7f15010e +int style Theme_AppCompat_Dialog_MinWidth 0x7f15010f +int style Theme_AppCompat_Light 0x7f150110 +int style Theme_AppCompat_Light_DarkActionBar 0x7f150111 +int style Theme_AppCompat_Light_Dialog 0x7f150112 +int style Theme_AppCompat_Light_DialogWhenLarge 0x7f150113 +int style Theme_AppCompat_Light_Dialog_Alert 0x7f150114 +int style Theme_AppCompat_Light_Dialog_MinWidth 0x7f150115 +int style Theme_AppCompat_Light_NoActionBar 0x7f150116 +int style Theme_AppCompat_NoActionBar 0x7f150117 +int style Widget_AppCompat_ActionBar 0x7f150118 +int style Widget_AppCompat_ActionBar_Solid 0x7f150119 +int style Widget_AppCompat_ActionBar_TabBar 0x7f15011a +int style Widget_AppCompat_ActionBar_TabText 0x7f15011b +int style Widget_AppCompat_ActionBar_TabView 0x7f15011c +int style Widget_AppCompat_ActionButton 0x7f15011d +int style Widget_AppCompat_ActionButton_CloseMode 0x7f15011e +int style Widget_AppCompat_ActionButton_Overflow 0x7f15011f +int style Widget_AppCompat_ActionMode 0x7f150120 +int style Widget_AppCompat_ActivityChooserView 0x7f150121 +int style Widget_AppCompat_AutoCompleteTextView 0x7f150122 +int style Widget_AppCompat_Button 0x7f150123 +int style Widget_AppCompat_ButtonBar 0x7f150124 +int style Widget_AppCompat_ButtonBar_AlertDialog 0x7f150125 +int style Widget_AppCompat_Button_Borderless 0x7f150126 +int style Widget_AppCompat_Button_Borderless_Colored 0x7f150127 +int style Widget_AppCompat_Button_ButtonBar_AlertDialog 0x7f150128 +int style Widget_AppCompat_Button_Colored 0x7f150129 +int style Widget_AppCompat_Button_Small 0x7f15012a +int style Widget_AppCompat_CompoundButton_CheckBox 0x7f15012b +int style Widget_AppCompat_CompoundButton_RadioButton 0x7f15012c +int style Widget_AppCompat_CompoundButton_Switch 0x7f15012d +int style Widget_AppCompat_DrawerArrowToggle 0x7f15012e +int style Widget_AppCompat_DropDownItem_Spinner 0x7f15012f +int style Widget_AppCompat_EditText 0x7f150130 +int style Widget_AppCompat_ImageButton 0x7f150131 +int style Widget_AppCompat_Light_ActionBar 0x7f150132 +int style Widget_AppCompat_Light_ActionBar_Solid 0x7f150133 +int style Widget_AppCompat_Light_ActionBar_Solid_Inverse 0x7f150134 +int style Widget_AppCompat_Light_ActionBar_TabBar 0x7f150135 +int style Widget_AppCompat_Light_ActionBar_TabBar_Inverse 0x7f150136 +int style Widget_AppCompat_Light_ActionBar_TabText 0x7f150137 +int style Widget_AppCompat_Light_ActionBar_TabText_Inverse 0x7f150138 +int style Widget_AppCompat_Light_ActionBar_TabView 0x7f150139 +int style Widget_AppCompat_Light_ActionBar_TabView_Inverse 0x7f15013a +int style Widget_AppCompat_Light_ActionButton 0x7f15013b +int style Widget_AppCompat_Light_ActionButton_CloseMode 0x7f15013c +int style Widget_AppCompat_Light_ActionButton_Overflow 0x7f15013d +int style Widget_AppCompat_Light_ActionMode_Inverse 0x7f15013e +int style Widget_AppCompat_Light_ActivityChooserView 0x7f15013f +int style Widget_AppCompat_Light_AutoCompleteTextView 0x7f150140 +int style Widget_AppCompat_Light_DropDownItem_Spinner 0x7f150141 +int style Widget_AppCompat_Light_ListPopupWindow 0x7f150142 +int style Widget_AppCompat_Light_ListView_DropDown 0x7f150143 +int style Widget_AppCompat_Light_PopupMenu 0x7f150144 +int style Widget_AppCompat_Light_PopupMenu_Overflow 0x7f150145 +int style Widget_AppCompat_Light_SearchView 0x7f150146 +int style Widget_AppCompat_Light_Spinner_DropDown_ActionBar 0x7f150147 +int style Widget_AppCompat_ListMenuView 0x7f150148 +int style Widget_AppCompat_ListPopupWindow 0x7f150149 +int style Widget_AppCompat_ListView 0x7f15014a +int style Widget_AppCompat_ListView_DropDown 0x7f15014b +int style Widget_AppCompat_ListView_Menu 0x7f15014c +int style Widget_AppCompat_PopupMenu 0x7f15014d +int style Widget_AppCompat_PopupMenu_Overflow 0x7f15014e +int style Widget_AppCompat_PopupWindow 0x7f15014f +int style Widget_AppCompat_ProgressBar 0x7f150150 +int style Widget_AppCompat_ProgressBar_Horizontal 0x7f150151 +int style Widget_AppCompat_RatingBar 0x7f150152 +int style Widget_AppCompat_RatingBar_Indicator 0x7f150153 +int style Widget_AppCompat_RatingBar_Small 0x7f150154 +int style Widget_AppCompat_SearchView 0x7f150155 +int style Widget_AppCompat_SearchView_ActionBar 0x7f150156 +int style Widget_AppCompat_SeekBar 0x7f150157 +int style Widget_AppCompat_SeekBar_Discrete 0x7f150158 +int style Widget_AppCompat_Spinner 0x7f150159 +int style Widget_AppCompat_Spinner_DropDown 0x7f15015a +int style Widget_AppCompat_Spinner_DropDown_ActionBar 0x7f15015b +int style Widget_AppCompat_Spinner_Underlined 0x7f15015c +int style Widget_AppCompat_TextView 0x7f15015d +int style Widget_AppCompat_TextView_SpinnerItem 0x7f15015e +int style Widget_AppCompat_Toolbar 0x7f15015f +int style Widget_AppCompat_Toolbar_Button_Navigation 0x7f150160 +int style Widget_Compat_NotificationActionContainer 0x7f150161 +int style Widget_Compat_NotificationActionText 0x7f150162 +int style Widget_Support_CoordinatorLayout 0x7f150163 +int[] styleable ActionBar { 0x7f040032, 0x7f040033, 0x7f040034, 0x7f04005f, 0x7f040060, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f040064, 0x7f040067, 0x7f04006c, 0x7f04006d, 0x7f040080, 0x7f040091, 0x7f040092, 0x7f040093, 0x7f040094, 0x7f040095, 0x7f04009a, 0x7f04009d, 0x7f0400e9, 0x7f0400f1, 0x7f0400fc, 0x7f0400ff, 0x7f040100, 0x7f04011b, 0x7f04011e, 0x7f04013a, 0x7f040143 } +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionBarLayout { 0x10100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int[] styleable ActionMenuItemView { 0x101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x7f040032, 0x7f040033, 0x7f04004c, 0x7f040091, 0x7f04011e, 0x7f040143 } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x7f040082, 0x7f04009b } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable AlertDialog { 0x10100f2, 0x7f040042, 0x7f040043, 0x7f0400de, 0x7f0400df, 0x7f0400ee, 0x7f040110, 0x7f040111 } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AnimatedStateListDrawableCompat { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable AnimatedStateListDrawableCompat_android_constantSize 0 +int styleable AnimatedStateListDrawableCompat_android_dither 1 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 +int styleable AnimatedStateListDrawableCompat_android_visible 5 +int[] styleable AnimatedStateListDrawableItem { 0x1010199, 0x10100d0 } +int styleable AnimatedStateListDrawableItem_android_drawable 0 +int styleable AnimatedStateListDrawableItem_android_id 1 +int[] styleable AnimatedStateListDrawableTransition { 0x1010199, 0x101044a, 0x101044b, 0x1010449 } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_fromId 1 +int styleable AnimatedStateListDrawableTransition_android_reversible 2 +int styleable AnimatedStateListDrawableTransition_android_toId 3 +int[] styleable AppCompatImageView { 0x1010119, 0x7f040116, 0x7f040138, 0x7f040139 } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x1010142, 0x7f040135, 0x7f040136, 0x7f040137 } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x101016e, 0x1010393, 0x101016f, 0x1010170, 0x1010392, 0x101016d, 0x1010034 } +int styleable AppCompatTextHelper_android_drawableBottom 0 +int styleable AppCompatTextHelper_android_drawableEnd 1 +int styleable AppCompatTextHelper_android_drawableLeft 2 +int styleable AppCompatTextHelper_android_drawableRight 3 +int styleable AppCompatTextHelper_android_drawableStart 4 +int styleable AppCompatTextHelper_android_drawableTop 5 +int styleable AppCompatTextHelper_android_textAppearance 6 +int[] styleable AppCompatTextView { 0x1010034, 0x7f04002d, 0x7f04002e, 0x7f04002f, 0x7f040030, 0x7f040031, 0x7f040071, 0x7f040072, 0x7f040073, 0x7f040074, 0x7f040076, 0x7f040077, 0x7f040078, 0x7f040079, 0x7f040083, 0x7f040085, 0x7f04008d, 0x7f04009f, 0x7f0400d9, 0x7f040124, 0x7f04012f } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_drawableBottomCompat 6 +int styleable AppCompatTextView_drawableEndCompat 7 +int styleable AppCompatTextView_drawableLeftCompat 8 +int styleable AppCompatTextView_drawableRightCompat 9 +int styleable AppCompatTextView_drawableStartCompat 10 +int styleable AppCompatTextView_drawableTint 11 +int styleable AppCompatTextView_drawableTintMode 12 +int styleable AppCompatTextView_drawableTopCompat 13 +int styleable AppCompatTextView_firstBaselineToTopHeight 14 +int styleable AppCompatTextView_fontFamily 15 +int styleable AppCompatTextView_fontVariationSettings 16 +int styleable AppCompatTextView_lastBaselineToBottomHeight 17 +int styleable AppCompatTextView_lineHeight 18 +int styleable AppCompatTextView_textAllCaps 19 +int styleable AppCompatTextView_textLocale 20 +int[] styleable AppCompatTheme { 0x7f040001, 0x7f040002, 0x7f040003, 0x7f040004, 0x7f040005, 0x7f040006, 0x7f040007, 0x7f040008, 0x7f040009, 0x7f04000a, 0x7f04000b, 0x7f04000c, 0x7f04000d, 0x7f04000f, 0x7f040010, 0x7f040011, 0x7f040012, 0x7f040013, 0x7f040014, 0x7f040015, 0x7f040016, 0x7f040017, 0x7f040018, 0x7f040019, 0x7f04001a, 0x7f04001b, 0x7f04001c, 0x7f04001d, 0x7f04001e, 0x7f04001f, 0x7f040022, 0x7f040023, 0x7f040024, 0x7f040025, 0x7f040026, 0x10100ae, 0x1010057, 0x7f04002c, 0x7f04003a, 0x7f04003b, 0x7f04003c, 0x7f04003d, 0x7f04003e, 0x7f04003f, 0x7f040044, 0x7f040045, 0x7f040049, 0x7f04004a, 0x7f040050, 0x7f040051, 0x7f040052, 0x7f040053, 0x7f040054, 0x7f040055, 0x7f040056, 0x7f040057, 0x7f040058, 0x7f040059, 0x7f040065, 0x7f040069, 0x7f04006a, 0x7f04006b, 0x7f04006e, 0x7f040070, 0x7f04007b, 0x7f04007c, 0x7f04007d, 0x7f04007e, 0x7f04007f, 0x7f040093, 0x7f040099, 0x7f0400da, 0x7f0400db, 0x7f0400dc, 0x7f0400dd, 0x7f0400e0, 0x7f0400e1, 0x7f0400e2, 0x7f0400e3, 0x7f0400e4, 0x7f0400e5, 0x7f0400e6, 0x7f0400e7, 0x7f0400e8, 0x7f0400f8, 0x7f0400f9, 0x7f0400fa, 0x7f0400fb, 0x7f0400fd, 0x7f040103, 0x7f040104, 0x7f040105, 0x7f040106, 0x7f040109, 0x7f04010a, 0x7f04010b, 0x7f04010c, 0x7f040113, 0x7f040114, 0x7f040122, 0x7f040125, 0x7f040126, 0x7f040127, 0x7f040128, 0x7f040129, 0x7f04012a, 0x7f04012b, 0x7f04012c, 0x7f04012d, 0x7f04012e, 0x7f040144, 0x7f040145, 0x7f040146, 0x7f040147, 0x7f04014d, 0x7f04014f, 0x7f040150, 0x7f040151, 0x7f040152, 0x7f040153, 0x7f040154, 0x7f040155, 0x7f040156, 0x7f040157, 0x7f040158 } +int styleable AppCompatTheme_actionBarDivider 0 +int styleable AppCompatTheme_actionBarItemBackground 1 +int styleable AppCompatTheme_actionBarPopupTheme 2 +int styleable AppCompatTheme_actionBarSize 3 +int styleable AppCompatTheme_actionBarSplitStyle 4 +int styleable AppCompatTheme_actionBarStyle 5 +int styleable AppCompatTheme_actionBarTabBarStyle 6 +int styleable AppCompatTheme_actionBarTabStyle 7 +int styleable AppCompatTheme_actionBarTabTextStyle 8 +int styleable AppCompatTheme_actionBarTheme 9 +int styleable AppCompatTheme_actionBarWidgetTheme 10 +int styleable AppCompatTheme_actionButtonStyle 11 +int styleable AppCompatTheme_actionDropDownStyle 12 +int styleable AppCompatTheme_actionMenuTextAppearance 13 +int styleable AppCompatTheme_actionMenuTextColor 14 +int styleable AppCompatTheme_actionModeBackground 15 +int styleable AppCompatTheme_actionModeCloseButtonStyle 16 +int styleable AppCompatTheme_actionModeCloseDrawable 17 +int styleable AppCompatTheme_actionModeCopyDrawable 18 +int styleable AppCompatTheme_actionModeCutDrawable 19 +int styleable AppCompatTheme_actionModeFindDrawable 20 +int styleable AppCompatTheme_actionModePasteDrawable 21 +int styleable AppCompatTheme_actionModePopupWindowStyle 22 +int styleable AppCompatTheme_actionModeSelectAllDrawable 23 +int styleable AppCompatTheme_actionModeShareDrawable 24 +int styleable AppCompatTheme_actionModeSplitBackground 25 +int styleable AppCompatTheme_actionModeStyle 26 +int styleable AppCompatTheme_actionModeWebSearchDrawable 27 +int styleable AppCompatTheme_actionOverflowButtonStyle 28 +int styleable AppCompatTheme_actionOverflowMenuStyle 29 +int styleable AppCompatTheme_activityChooserViewStyle 30 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 31 +int styleable AppCompatTheme_alertDialogCenterButtons 32 +int styleable AppCompatTheme_alertDialogStyle 33 +int styleable AppCompatTheme_alertDialogTheme 34 +int styleable AppCompatTheme_android_windowAnimationStyle 35 +int styleable AppCompatTheme_android_windowIsFloating 36 +int styleable AppCompatTheme_autoCompleteTextViewStyle 37 +int styleable AppCompatTheme_borderlessButtonStyle 38 +int styleable AppCompatTheme_buttonBarButtonStyle 39 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 40 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 41 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 42 +int styleable AppCompatTheme_buttonBarStyle 43 +int styleable AppCompatTheme_buttonStyle 44 +int styleable AppCompatTheme_buttonStyleSmall 45 +int styleable AppCompatTheme_checkboxStyle 46 +int styleable AppCompatTheme_checkedTextViewStyle 47 +int styleable AppCompatTheme_colorAccent 48 +int styleable AppCompatTheme_colorBackgroundFloating 49 +int styleable AppCompatTheme_colorButtonNormal 50 +int styleable AppCompatTheme_colorControlActivated 51 +int styleable AppCompatTheme_colorControlHighlight 52 +int styleable AppCompatTheme_colorControlNormal 53 +int styleable AppCompatTheme_colorError 54 +int styleable AppCompatTheme_colorPrimary 55 +int styleable AppCompatTheme_colorPrimaryDark 56 +int styleable AppCompatTheme_colorSwitchThumbNormal 57 +int styleable AppCompatTheme_controlBackground 58 +int styleable AppCompatTheme_dialogCornerRadius 59 +int styleable AppCompatTheme_dialogPreferredPadding 60 +int styleable AppCompatTheme_dialogTheme 61 +int styleable AppCompatTheme_dividerHorizontal 62 +int styleable AppCompatTheme_dividerVertical 63 +int styleable AppCompatTheme_dropDownListViewStyle 64 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 65 +int styleable AppCompatTheme_editTextBackground 66 +int styleable AppCompatTheme_editTextColor 67 +int styleable AppCompatTheme_editTextStyle 68 +int styleable AppCompatTheme_homeAsUpIndicator 69 +int styleable AppCompatTheme_imageButtonStyle 70 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 71 +int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 72 +int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 73 +int styleable AppCompatTheme_listDividerAlertDialog 74 +int styleable AppCompatTheme_listMenuViewStyle 75 +int styleable AppCompatTheme_listPopupWindowStyle 76 +int styleable AppCompatTheme_listPreferredItemHeight 77 +int styleable AppCompatTheme_listPreferredItemHeightLarge 78 +int styleable AppCompatTheme_listPreferredItemHeightSmall 79 +int styleable AppCompatTheme_listPreferredItemPaddingEnd 80 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 81 +int styleable AppCompatTheme_listPreferredItemPaddingRight 82 +int styleable AppCompatTheme_listPreferredItemPaddingStart 83 +int styleable AppCompatTheme_panelBackground 84 +int styleable AppCompatTheme_panelMenuListTheme 85 +int styleable AppCompatTheme_panelMenuListWidth 86 +int styleable AppCompatTheme_popupMenuStyle 87 +int styleable AppCompatTheme_popupWindowStyle 88 +int styleable AppCompatTheme_radioButtonStyle 89 +int styleable AppCompatTheme_ratingBarStyle 90 +int styleable AppCompatTheme_ratingBarStyleIndicator 91 +int styleable AppCompatTheme_ratingBarStyleSmall 92 +int styleable AppCompatTheme_searchViewStyle 93 +int styleable AppCompatTheme_seekBarStyle 94 +int styleable AppCompatTheme_selectableItemBackground 95 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 96 +int styleable AppCompatTheme_spinnerDropDownItemStyle 97 +int styleable AppCompatTheme_spinnerStyle 98 +int styleable AppCompatTheme_switchStyle 99 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 100 +int styleable AppCompatTheme_textAppearanceListItem 101 +int styleable AppCompatTheme_textAppearanceListItemSecondary 102 +int styleable AppCompatTheme_textAppearanceListItemSmall 103 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 104 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 105 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 106 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 107 +int styleable AppCompatTheme_textColorAlertDialogListItem 108 +int styleable AppCompatTheme_textColorSearchUrl 109 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 110 +int styleable AppCompatTheme_toolbarStyle 111 +int styleable AppCompatTheme_tooltipForegroundColor 112 +int styleable AppCompatTheme_tooltipFrameBackground 113 +int styleable AppCompatTheme_viewInflaterClass 114 +int styleable AppCompatTheme_windowActionBar 115 +int styleable AppCompatTheme_windowActionBarOverlay 116 +int styleable AppCompatTheme_windowActionModeOverlay 117 +int styleable AppCompatTheme_windowFixedHeightMajor 118 +int styleable AppCompatTheme_windowFixedHeightMinor 119 +int styleable AppCompatTheme_windowFixedWidthMajor 120 +int styleable AppCompatTheme_windowFixedWidthMinor 121 +int styleable AppCompatTheme_windowMinWidthMajor 122 +int styleable AppCompatTheme_windowMinWidthMinor 123 +int styleable AppCompatTheme_windowNoTitle 124 +int[] styleable ButtonBarLayout { 0x7f040027 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable ColorStateListItem { 0x7f040028, 0x101031f, 0x10101a5 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int[] styleable CompoundButton { 0x1010107, 0x7f040040, 0x7f040046, 0x7f040047 } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonCompat 1 +int styleable CompoundButton_buttonTint 2 +int styleable CompoundButton_buttonTintMode 3 +int[] styleable ConstraintLayout_Layout { 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x7f040038, 0x7f040039, 0x7f040048, 0x7f04005b, 0x7f04005c, 0x7f0400a4, 0x7f0400a5, 0x7f0400a6, 0x7f0400a7, 0x7f0400a8, 0x7f0400a9, 0x7f0400aa, 0x7f0400ab, 0x7f0400ac, 0x7f0400ad, 0x7f0400ae, 0x7f0400af, 0x7f0400b0, 0x7f0400b1, 0x7f0400b2, 0x7f0400b3, 0x7f0400b4, 0x7f0400b5, 0x7f0400b6, 0x7f0400b7, 0x7f0400b8, 0x7f0400b9, 0x7f0400ba, 0x7f0400bb, 0x7f0400bc, 0x7f0400bd, 0x7f0400be, 0x7f0400bf, 0x7f0400c0, 0x7f0400c1, 0x7f0400c2, 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400c6, 0x7f0400c7, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400cb, 0x7f0400cc, 0x7f0400ce, 0x7f0400cf, 0x7f0400d0, 0x7f0400d1, 0x7f0400d2, 0x7f0400d3, 0x7f0400d4, 0x7f0400d5, 0x7f0400d8 } +int styleable ConstraintLayout_Layout_android_maxHeight 0 +int styleable ConstraintLayout_Layout_android_maxWidth 1 +int styleable ConstraintLayout_Layout_android_minHeight 2 +int styleable ConstraintLayout_Layout_android_minWidth 3 +int styleable ConstraintLayout_Layout_android_orientation 4 +int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 5 +int styleable ConstraintLayout_Layout_barrierDirection 6 +int styleable ConstraintLayout_Layout_chainUseRtl 7 +int styleable ConstraintLayout_Layout_constraintSet 8 +int styleable ConstraintLayout_Layout_constraint_referenced_ids 9 +int styleable ConstraintLayout_Layout_layout_constrainedHeight 10 +int styleable ConstraintLayout_Layout_layout_constrainedWidth 11 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 12 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 13 +int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 14 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 15 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 16 +int styleable ConstraintLayout_Layout_layout_constraintCircle 17 +int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 18 +int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 19 +int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 20 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 21 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 22 +int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 23 +int styleable ConstraintLayout_Layout_layout_constraintGuide_end 24 +int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 25 +int styleable ConstraintLayout_Layout_layout_constraintHeight_default 26 +int styleable ConstraintLayout_Layout_layout_constraintHeight_max 27 +int styleable ConstraintLayout_Layout_layout_constraintHeight_min 28 +int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 29 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 30 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 31 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 32 +int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 33 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 34 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 35 +int styleable ConstraintLayout_Layout_layout_constraintRight_creator 36 +int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 37 +int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 38 +int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 39 +int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 40 +int styleable ConstraintLayout_Layout_layout_constraintTop_creator 41 +int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 42 +int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 43 +int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 44 +int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 45 +int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 46 +int styleable ConstraintLayout_Layout_layout_constraintWidth_default 47 +int styleable ConstraintLayout_Layout_layout_constraintWidth_max 48 +int styleable ConstraintLayout_Layout_layout_constraintWidth_min 49 +int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 50 +int styleable ConstraintLayout_Layout_layout_editor_absoluteX 51 +int styleable ConstraintLayout_Layout_layout_editor_absoluteY 52 +int styleable ConstraintLayout_Layout_layout_goneMarginBottom 53 +int styleable ConstraintLayout_Layout_layout_goneMarginEnd 54 +int styleable ConstraintLayout_Layout_layout_goneMarginLeft 55 +int styleable ConstraintLayout_Layout_layout_goneMarginRight 56 +int styleable ConstraintLayout_Layout_layout_goneMarginStart 57 +int styleable ConstraintLayout_Layout_layout_goneMarginTop 58 +int styleable ConstraintLayout_Layout_layout_optimizationLevel 59 +int[] styleable ConstraintLayout_placeholder { 0x7f04005d, 0x7f040081 } +int styleable ConstraintLayout_placeholder_content 0 +int styleable ConstraintLayout_placeholder_emptyVisibility 1 +int[] styleable ConstraintSet { 0x101031f, 0x1010440, 0x10100d0, 0x10100f5, 0x10100fa, 0x10103b6, 0x10100f7, 0x10100f9, 0x10103b5, 0x10100f8, 0x10100f4, 0x1010120, 0x101011f, 0x1010140, 0x101013f, 0x10100c4, 0x1010326, 0x1010327, 0x1010328, 0x1010324, 0x1010325, 0x1010320, 0x1010321, 0x1010322, 0x1010323, 0x10103fa, 0x10100dc, 0x7f040038, 0x7f040039, 0x7f040048, 0x7f04005c, 0x7f0400a4, 0x7f0400a5, 0x7f0400a6, 0x7f0400a7, 0x7f0400a8, 0x7f0400a9, 0x7f0400aa, 0x7f0400ab, 0x7f0400ac, 0x7f0400ad, 0x7f0400ae, 0x7f0400af, 0x7f0400b0, 0x7f0400b1, 0x7f0400b2, 0x7f0400b3, 0x7f0400b4, 0x7f0400b5, 0x7f0400b6, 0x7f0400b7, 0x7f0400b8, 0x7f0400b9, 0x7f0400ba, 0x7f0400bb, 0x7f0400bc, 0x7f0400bd, 0x7f0400be, 0x7f0400bf, 0x7f0400c0, 0x7f0400c1, 0x7f0400c2, 0x7f0400c3, 0x7f0400c4, 0x7f0400c5, 0x7f0400c6, 0x7f0400c7, 0x7f0400c8, 0x7f0400c9, 0x7f0400ca, 0x7f0400cb, 0x7f0400cc, 0x7f0400ce, 0x7f0400cf, 0x7f0400d0, 0x7f0400d1, 0x7f0400d2, 0x7f0400d3, 0x7f0400d4, 0x7f0400d5 } +int styleable ConstraintSet_android_alpha 0 +int styleable ConstraintSet_android_elevation 1 +int styleable ConstraintSet_android_id 2 +int styleable ConstraintSet_android_layout_height 3 +int styleable ConstraintSet_android_layout_marginBottom 4 +int styleable ConstraintSet_android_layout_marginEnd 5 +int styleable ConstraintSet_android_layout_marginLeft 6 +int styleable ConstraintSet_android_layout_marginRight 7 +int styleable ConstraintSet_android_layout_marginStart 8 +int styleable ConstraintSet_android_layout_marginTop 9 +int styleable ConstraintSet_android_layout_width 10 +int styleable ConstraintSet_android_maxHeight 11 +int styleable ConstraintSet_android_maxWidth 12 +int styleable ConstraintSet_android_minHeight 13 +int styleable ConstraintSet_android_minWidth 14 +int styleable ConstraintSet_android_orientation 15 +int styleable ConstraintSet_android_rotation 16 +int styleable ConstraintSet_android_rotationX 17 +int styleable ConstraintSet_android_rotationY 18 +int styleable ConstraintSet_android_scaleX 19 +int styleable ConstraintSet_android_scaleY 20 +int styleable ConstraintSet_android_transformPivotX 21 +int styleable ConstraintSet_android_transformPivotY 22 +int styleable ConstraintSet_android_translationX 23 +int styleable ConstraintSet_android_translationY 24 +int styleable ConstraintSet_android_translationZ 25 +int styleable ConstraintSet_android_visibility 26 +int styleable ConstraintSet_barrierAllowsGoneWidgets 27 +int styleable ConstraintSet_barrierDirection 28 +int styleable ConstraintSet_chainUseRtl 29 +int styleable ConstraintSet_constraint_referenced_ids 30 +int styleable ConstraintSet_layout_constrainedHeight 31 +int styleable ConstraintSet_layout_constrainedWidth 32 +int styleable ConstraintSet_layout_constraintBaseline_creator 33 +int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 34 +int styleable ConstraintSet_layout_constraintBottom_creator 35 +int styleable ConstraintSet_layout_constraintBottom_toBottomOf 36 +int styleable ConstraintSet_layout_constraintBottom_toTopOf 37 +int styleable ConstraintSet_layout_constraintCircle 38 +int styleable ConstraintSet_layout_constraintCircleAngle 39 +int styleable ConstraintSet_layout_constraintCircleRadius 40 +int styleable ConstraintSet_layout_constraintDimensionRatio 41 +int styleable ConstraintSet_layout_constraintEnd_toEndOf 42 +int styleable ConstraintSet_layout_constraintEnd_toStartOf 43 +int styleable ConstraintSet_layout_constraintGuide_begin 44 +int styleable ConstraintSet_layout_constraintGuide_end 45 +int styleable ConstraintSet_layout_constraintGuide_percent 46 +int styleable ConstraintSet_layout_constraintHeight_default 47 +int styleable ConstraintSet_layout_constraintHeight_max 48 +int styleable ConstraintSet_layout_constraintHeight_min 49 +int styleable ConstraintSet_layout_constraintHeight_percent 50 +int styleable ConstraintSet_layout_constraintHorizontal_bias 51 +int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 52 +int styleable ConstraintSet_layout_constraintHorizontal_weight 53 +int styleable ConstraintSet_layout_constraintLeft_creator 54 +int styleable ConstraintSet_layout_constraintLeft_toLeftOf 55 +int styleable ConstraintSet_layout_constraintLeft_toRightOf 56 +int styleable ConstraintSet_layout_constraintRight_creator 57 +int styleable ConstraintSet_layout_constraintRight_toLeftOf 58 +int styleable ConstraintSet_layout_constraintRight_toRightOf 59 +int styleable ConstraintSet_layout_constraintStart_toEndOf 60 +int styleable ConstraintSet_layout_constraintStart_toStartOf 61 +int styleable ConstraintSet_layout_constraintTop_creator 62 +int styleable ConstraintSet_layout_constraintTop_toBottomOf 63 +int styleable ConstraintSet_layout_constraintTop_toTopOf 64 +int styleable ConstraintSet_layout_constraintVertical_bias 65 +int styleable ConstraintSet_layout_constraintVertical_chainStyle 66 +int styleable ConstraintSet_layout_constraintVertical_weight 67 +int styleable ConstraintSet_layout_constraintWidth_default 68 +int styleable ConstraintSet_layout_constraintWidth_max 69 +int styleable ConstraintSet_layout_constraintWidth_min 70 +int styleable ConstraintSet_layout_constraintWidth_percent 71 +int styleable ConstraintSet_layout_editor_absoluteX 72 +int styleable ConstraintSet_layout_editor_absoluteY 73 +int styleable ConstraintSet_layout_goneMarginBottom 74 +int styleable ConstraintSet_layout_goneMarginEnd 75 +int styleable ConstraintSet_layout_goneMarginLeft 76 +int styleable ConstraintSet_layout_goneMarginRight 77 +int styleable ConstraintSet_layout_goneMarginStart 78 +int styleable ConstraintSet_layout_goneMarginTop 79 +int[] styleable CoordinatorLayout { 0x7f04009e, 0x7f040118 } +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CoordinatorLayout_Layout { 0x10100b3, 0x7f0400a1, 0x7f0400a2, 0x7f0400a3, 0x7f0400cd, 0x7f0400d6, 0x7f0400d7 } +int styleable CoordinatorLayout_Layout_android_layout_gravity 0 +int styleable CoordinatorLayout_Layout_layout_anchor 1 +int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 +int styleable CoordinatorLayout_Layout_layout_behavior 3 +int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 +int styleable CoordinatorLayout_Layout_layout_insetEdge 5 +int styleable CoordinatorLayout_Layout_layout_keyline 6 +int[] styleable DrawerArrowToggle { 0x7f04002a, 0x7f04002b, 0x7f040037, 0x7f04004f, 0x7f040075, 0x7f04008f, 0x7f040112, 0x7f040131 } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable FontFamily { 0x7f040086, 0x7f040087, 0x7f040088, 0x7f040089, 0x7f04008a, 0x7f04008b } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x7f040084, 0x7f04008c, 0x7f04008d, 0x7f04008e, 0x7f04014c } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int[] styleable LinearConstraintLayout { 0x10100c4 } +int styleable LinearConstraintLayout_android_orientation 0 +int[] styleable LinearLayoutCompat { 0x1010126, 0x1010127, 0x10100af, 0x10100c4, 0x1010128, 0x7f04006d, 0x7f04006f, 0x7f0400ec, 0x7f04010e } +int styleable LinearLayoutCompat_android_baselineAligned 0 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 +int styleable LinearLayoutCompat_android_gravity 2 +int styleable LinearLayoutCompat_android_orientation 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearLayoutCompat_Layout { 0x10100b3, 0x10100f5, 0x1010181, 0x10100f4 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_height 1 +int styleable LinearLayoutCompat_Layout_android_layout_weight 2 +int styleable LinearLayoutCompat_Layout_android_layout_width 3 +int[] styleable ListPopupWindow { 0x10102ac, 0x10102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MenuGroup { 0x10101e0, 0x101000e, 0x10100d0, 0x10101de, 0x10101df, 0x1010194 } +int styleable MenuGroup_android_checkableBehavior 0 +int styleable MenuGroup_android_enabled 1 +int styleable MenuGroup_android_id 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_visible 5 +int[] styleable MenuItem { 0x7f04000e, 0x7f040020, 0x7f040021, 0x7f040029, 0x10101e3, 0x10101e5, 0x1010106, 0x101000e, 0x1010002, 0x10100d0, 0x10101de, 0x10101e4, 0x101026f, 0x10101df, 0x10101e1, 0x10101e2, 0x1010194, 0x7f04005e, 0x7f040096, 0x7f040097, 0x7f0400f2, 0x7f04010d, 0x7f040148 } +int styleable MenuItem_actionLayout 0 +int styleable MenuItem_actionProviderClass 1 +int styleable MenuItem_actionViewClass 2 +int styleable MenuItem_alphabeticModifiers 3 +int styleable MenuItem_android_alphabeticShortcut 4 +int styleable MenuItem_android_checkable 5 +int styleable MenuItem_android_checked 6 +int styleable MenuItem_android_enabled 7 +int styleable MenuItem_android_icon 8 +int styleable MenuItem_android_id 9 +int styleable MenuItem_android_menuCategory 10 +int styleable MenuItem_android_numericShortcut 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_android_orderInCategory 13 +int styleable MenuItem_android_title 14 +int styleable MenuItem_android_titleCondensed 15 +int styleable MenuItem_android_visible 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x101012f, 0x101012d, 0x1010130, 0x1010131, 0x101012c, 0x101012e, 0x10100ae, 0x7f0400fe, 0x7f040119 } +int styleable MenuView_android_headerBackground 0 +int styleable MenuView_android_horizontalDivider 1 +int styleable MenuView_android_itemBackground 2 +int styleable MenuView_android_itemIconDisabledAlpha 3 +int styleable MenuView_android_itemTextAppearance 4 +int styleable MenuView_android_verticalDivider 5 +int styleable MenuView_android_windowAnimationStyle 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable PopupWindow { 0x10102c9, 0x1010176, 0x7f0400f3 } +int styleable PopupWindow_android_popupAnimationStyle 0 +int styleable PopupWindow_android_popupBackground 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PopupWindowBackgroundState { 0x7f040117 } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int[] styleable RecycleListView { 0x7f0400f4, 0x7f0400f7 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable SearchView { 0x10100da, 0x1010264, 0x1010220, 0x101011f, 0x7f04004b, 0x7f04005a, 0x7f040068, 0x7f040090, 0x7f040098, 0x7f0400a0, 0x7f040101, 0x7f040102, 0x7f040107, 0x7f040108, 0x7f04011a, 0x7f04011f, 0x7f04014e } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_imeOptions 1 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_maxWidth 3 +int styleable SearchView_closeIcon 4 +int styleable SearchView_commitIcon 5 +int styleable SearchView_defaultQueryHint 6 +int styleable SearchView_goIcon 7 +int styleable SearchView_iconifiedByDefault 8 +int styleable SearchView_layout 9 +int styleable SearchView_queryBackground 10 +int styleable SearchView_queryHint 11 +int styleable SearchView_searchHintIcon 12 +int styleable SearchView_searchIcon 13 +int styleable SearchView_submitBackground 14 +int styleable SearchView_suggestionRowLayout 15 +int styleable SearchView_voiceIcon 16 +int[] styleable Spinner { 0x1010262, 0x10100b2, 0x1010176, 0x101017b, 0x7f0400fc } +int styleable Spinner_android_dropDownWidth 0 +int styleable Spinner_android_entries 1 +int styleable Spinner_android_popupBackground 2 +int styleable Spinner_android_prompt 3 +int styleable Spinner_popupTheme 4 +int[] styleable StateListDrawable { 0x1010196, 0x101011c, 0x101030c, 0x101030d, 0x1010195, 0x1010194 } +int styleable StateListDrawable_android_constantSize 0 +int styleable StateListDrawable_android_dither 1 +int styleable StateListDrawable_android_enterFadeDuration 2 +int styleable StateListDrawable_android_exitFadeDuration 3 +int styleable StateListDrawable_android_variablePadding 4 +int styleable StateListDrawable_android_visible 5 +int[] styleable StateListDrawableItem { 0x1010199 } +int styleable StateListDrawableItem_android_drawable 0 +int[] styleable SwitchCompat { 0x1010125, 0x1010124, 0x1010142, 0x7f04010f, 0x7f040115, 0x7f040120, 0x7f040121, 0x7f040123, 0x7f040132, 0x7f040133, 0x7f040134, 0x7f040149, 0x7f04014a, 0x7f04014b } +int styleable SwitchCompat_android_textOff 0 +int styleable SwitchCompat_android_textOn 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable TextAppearance { 0x10103ac, 0x1010161, 0x1010162, 0x1010163, 0x1010164, 0x1010098, 0x101009a, 0x101009b, 0x1010585, 0x1010095, 0x1010097, 0x1010096, 0x7f040085, 0x7f04008d, 0x7f040124, 0x7f04012f } +int styleable TextAppearance_android_fontFamily 0 +int styleable TextAppearance_android_shadowColor 1 +int styleable TextAppearance_android_shadowDx 2 +int styleable TextAppearance_android_shadowDy 3 +int styleable TextAppearance_android_shadowRadius 4 +int styleable TextAppearance_android_textColor 5 +int styleable TextAppearance_android_textColorHint 6 +int styleable TextAppearance_android_textColorLink 7 +int styleable TextAppearance_android_textFontWeight 8 +int styleable TextAppearance_android_textSize 9 +int styleable TextAppearance_android_textStyle 10 +int styleable TextAppearance_android_typeface 11 +int styleable TextAppearance_fontFamily 12 +int styleable TextAppearance_fontVariationSettings 13 +int styleable TextAppearance_textAllCaps 14 +int styleable TextAppearance_textLocale 15 +int[] styleable Toolbar { 0x10100af, 0x1010140, 0x7f040041, 0x7f04004d, 0x7f04004e, 0x7f04005f, 0x7f040060, 0x7f040061, 0x7f040062, 0x7f040063, 0x7f040064, 0x7f0400e9, 0x7f0400ea, 0x7f0400eb, 0x7f0400ed, 0x7f0400ef, 0x7f0400f0, 0x7f0400fc, 0x7f04011b, 0x7f04011c, 0x7f04011d, 0x7f04013a, 0x7f04013b, 0x7f04013c, 0x7f04013d, 0x7f04013e, 0x7f04013f, 0x7f040140, 0x7f040141, 0x7f040142 } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_menu 14 +int styleable Toolbar_navigationContentDescription 15 +int styleable Toolbar_navigationIcon 16 +int styleable Toolbar_popupTheme 17 +int styleable Toolbar_subtitle 18 +int styleable Toolbar_subtitleTextAppearance 19 +int styleable Toolbar_subtitleTextColor 20 +int styleable Toolbar_title 21 +int styleable Toolbar_titleMargin 22 +int styleable Toolbar_titleMarginBottom 23 +int styleable Toolbar_titleMarginEnd 24 +int styleable Toolbar_titleMarginStart 25 +int styleable Toolbar_titleMarginTop 26 +int styleable Toolbar_titleMargins 27 +int styleable Toolbar_titleTextAppearance 28 +int styleable Toolbar_titleTextColor 29 +int[] styleable View { 0x10100da, 0x1010000, 0x7f0400f5, 0x7f0400f6, 0x7f040130 } +int styleable View_android_focusable 0 +int styleable View_android_theme 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable ViewBackgroundHelper { 0x10100d4, 0x7f040035, 0x7f040036 } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewStubCompat { 0x10100d0, 0x10100f3, 0x10100f2 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_inflatedId 1 +int styleable ViewStubCompat_android_layout 2 diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/build-history.bin b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/build-history.bin new file mode 100644 index 0000000000..4860dfefc3 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/build-history.bin differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab new file mode 100644 index 0000000000..5b22892c63 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream new file mode 100644 index 0000000000..bdb834a9da Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len new file mode 100644 index 0000000000..15b7d8d8c2 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len new file mode 100644 index 0000000000..93a595bd1b Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at new file mode 100644 index 0000000000..2cf755fe9e Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i new file mode 100644 index 0000000000..908235ad1f Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab new file mode 100644 index 0000000000..afb907baf2 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream new file mode 100644 index 0000000000..a0712e7221 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len new file mode 100644 index 0000000000..b6ef7e2a11 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len new file mode 100644 index 0000000000..93a595bd1b Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at new file mode 100644 index 0000000000..2ed519435e Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i new file mode 100644 index 0000000000..5e6443d8c3 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab new file mode 100644 index 0000000000..fcf9b4ea3a Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream new file mode 100644 index 0000000000..140d1432c4 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len new file mode 100644 index 0000000000..f69038b49f Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len new file mode 100644 index 0000000000..01bdaa1da7 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at new file mode 100644 index 0000000000..97aa56de38 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i new file mode 100644 index 0000000000..c82ab66c23 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab new file mode 100644 index 0000000000..f6d5265e8c Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream new file mode 100644 index 0000000000..3d1cf19c45 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len new file mode 100644 index 0000000000..1b6e45bda2 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len new file mode 100644 index 0000000000..9e27f732fe Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at new file mode 100644 index 0000000000..1f97236d41 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i new file mode 100644 index 0000000000..c4acfa6393 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab new file mode 100644 index 0000000000..bdf584a84b Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream new file mode 100644 index 0000000000..dfd78da36a Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len new file mode 100644 index 0000000000..130ab28813 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len new file mode 100644 index 0000000000..2a17e6e5bd Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at new file mode 100644 index 0000000000..46d6744972 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i new file mode 100644 index 0000000000..76affe85cf Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab new file mode 100644 index 0000000000..e2c9fdd56a Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream new file mode 100644 index 0000000000..00b0511f54 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len new file mode 100644 index 0000000000..d897d44a32 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len new file mode 100644 index 0000000000..9e27f732fe Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at new file mode 100644 index 0000000000..1f6bd360b0 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i new file mode 100644 index 0000000000..df5586336b Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab new file mode 100644 index 0000000000..22280ff3a9 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream new file mode 100644 index 0000000000..87a2206ed9 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len new file mode 100644 index 0000000000..15b7d8d8c2 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len new file mode 100644 index 0000000000..93a595bd1b Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at new file mode 100644 index 0000000000..1e089e501a Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i new file mode 100644 index 0000000000..c17f8a9d61 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab new file mode 100644 index 0000000000..fe9ac132c6 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream new file mode 100644 index 0000000000..0f2c884299 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len new file mode 100644 index 0000000000..2a17e6e5bd Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len new file mode 100644 index 0000000000..93a595bd1b Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at new file mode 100644 index 0000000000..4436d3dd58 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i new file mode 100644 index 0000000000..6facc5d276 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab new file mode 100644 index 0000000000..c7adb89d41 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream new file mode 100644 index 0000000000..7763ebbcbb Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len new file mode 100644 index 0000000000..86d2a83a16 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len new file mode 100644 index 0000000000..a9f80ae024 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at new file mode 100644 index 0000000000..34f670f151 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i new file mode 100644 index 0000000000..46aac23bbf Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab new file mode 100644 index 0000000000..26d3b09405 --- /dev/null +++ b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/counters.tab @@ -0,0 +1,2 @@ +4 +0 \ No newline at end of file diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab new file mode 100644 index 0000000000..7ea0db3258 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream new file mode 100644 index 0000000000..87a2206ed9 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len new file mode 100644 index 0000000000..15b7d8d8c2 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len new file mode 100644 index 0000000000..93a595bd1b Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at new file mode 100644 index 0000000000..3e23c2afbb Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i new file mode 100644 index 0000000000..835a492c81 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab new file mode 100644 index 0000000000..6c08511549 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream new file mode 100644 index 0000000000..6e7a926428 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len new file mode 100644 index 0000000000..eb529631c5 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len new file mode 100644 index 0000000000..93a595bd1b Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at new file mode 100644 index 0000000000..2ed519435e Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i new file mode 100644 index 0000000000..6936967cac Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab new file mode 100644 index 0000000000..0558338300 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream new file mode 100644 index 0000000000..800475bb79 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len new file mode 100644 index 0000000000..b5bfefdee3 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len new file mode 100644 index 0000000000..409f6fcbda Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.at b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.at new file mode 100644 index 0000000000..c62a4f3dc0 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i new file mode 100644 index 0000000000..c69e8e1f91 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/caches-jvm/lookups/lookups.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/last-build.bin b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/last-build.bin new file mode 100644 index 0000000000..fb1baa4810 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/compileDebugKotlin/last-build.bin differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin new file mode 100644 index 0000000000..1560e06c9a Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/build-history.bin differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab new file mode 100644 index 0000000000..265ae95750 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream new file mode 100644 index 0000000000..bdb834a9da Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len new file mode 100644 index 0000000000..15b7d8d8c2 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.len new file mode 100644 index 0000000000..93a595bd1b Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at new file mode 100644 index 0000000000..9f42162abf Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i new file mode 100644 index 0000000000..908235ad1f Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/inputs/source-to-output.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab new file mode 100644 index 0000000000..afb907baf2 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream new file mode 100644 index 0000000000..a0712e7221 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len new file mode 100644 index 0000000000..b6ef7e2a11 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len new file mode 100644 index 0000000000..93a595bd1b Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at new file mode 100644 index 0000000000..2ed519435e Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i new file mode 100644 index 0000000000..5e6443d8c3 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab new file mode 100644 index 0000000000..fcf9b4ea3a Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream new file mode 100644 index 0000000000..140d1432c4 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len new file mode 100644 index 0000000000..f69038b49f Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len new file mode 100644 index 0000000000..01bdaa1da7 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at new file mode 100644 index 0000000000..97aa56de38 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i new file mode 100644 index 0000000000..c82ab66c23 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/constants.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab new file mode 100644 index 0000000000..83b4705f69 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream new file mode 100644 index 0000000000..88a56181d0 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len new file mode 100644 index 0000000000..12932448a7 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len new file mode 100644 index 0000000000..ec8f944c8a Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at new file mode 100644 index 0000000000..7c0e94ed42 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i new file mode 100644 index 0000000000..2b65f98912 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab new file mode 100644 index 0000000000..bdf584a84b Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream new file mode 100644 index 0000000000..dfd78da36a Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len new file mode 100644 index 0000000000..130ab28813 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len new file mode 100644 index 0000000000..2a17e6e5bd Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at new file mode 100644 index 0000000000..46d6744972 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i new file mode 100644 index 0000000000..76affe85cf Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/package-parts.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab new file mode 100644 index 0000000000..e2c9fdd56a Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream new file mode 100644 index 0000000000..00b0511f54 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len new file mode 100644 index 0000000000..d897d44a32 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len new file mode 100644 index 0000000000..9e27f732fe Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at new file mode 100644 index 0000000000..1f6bd360b0 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i new file mode 100644 index 0000000000..df5586336b Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/proto.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab new file mode 100644 index 0000000000..9c8eb06abe Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream new file mode 100644 index 0000000000..87a2206ed9 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len new file mode 100644 index 0000000000..15b7d8d8c2 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len new file mode 100644 index 0000000000..93a595bd1b Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at new file mode 100644 index 0000000000..162f8c61a5 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i new file mode 100644 index 0000000000..c17f8a9d61 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab new file mode 100644 index 0000000000..fe9ac132c6 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream new file mode 100644 index 0000000000..0f2c884299 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len new file mode 100644 index 0000000000..2a17e6e5bd Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len new file mode 100644 index 0000000000..93a595bd1b Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at new file mode 100644 index 0000000000..4436d3dd58 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i new file mode 100644 index 0000000000..6facc5d276 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab new file mode 100644 index 0000000000..c7adb89d41 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream new file mode 100644 index 0000000000..7763ebbcbb Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len new file mode 100644 index 0000000000..86d2a83a16 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len new file mode 100644 index 0000000000..a9f80ae024 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at new file mode 100644 index 0000000000..34f670f151 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i new file mode 100644 index 0000000000..46aac23bbf Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/counters.tab b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/counters.tab new file mode 100644 index 0000000000..26d3b09405 --- /dev/null +++ b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/counters.tab @@ -0,0 +1,2 @@ +4 +0 \ No newline at end of file diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab new file mode 100644 index 0000000000..7ea0db3258 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream new file mode 100644 index 0000000000..87a2206ed9 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len new file mode 100644 index 0000000000..15b7d8d8c2 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.len new file mode 100644 index 0000000000..93a595bd1b Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at new file mode 100644 index 0000000000..3e23c2afbb Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i new file mode 100644 index 0000000000..835a492c81 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/file-to-id.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab new file mode 100644 index 0000000000..6c08511549 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream new file mode 100644 index 0000000000..6e7a926428 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len new file mode 100644 index 0000000000..eb529631c5 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.len new file mode 100644 index 0000000000..93a595bd1b Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at new file mode 100644 index 0000000000..2ed519435e Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i new file mode 100644 index 0000000000..6936967cac Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/id-to-file.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab new file mode 100644 index 0000000000..2025dd68a8 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream new file mode 100644 index 0000000000..ce4a6ca91a Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len new file mode 100644 index 0000000000..e5d59a21fb Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.keystream.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.len new file mode 100644 index 0000000000..b4beefbd8b Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.values.at b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.values.at new file mode 100644 index 0000000000..cf326e065e Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab.values.at differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i new file mode 100644 index 0000000000..4bc3df179a Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i.len b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i.len new file mode 100644 index 0000000000..131e265740 Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/caches-jvm/lookups/lookups.tab_i.len differ diff --git a/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin new file mode 100644 index 0000000000..2325c336ea Binary files /dev/null and b/modules/mogo-module-splash/build/kotlin/kaptGenerateStubsDebugKotlin/last-build.bin differ diff --git a/modules/mogo-module-splash/build/outputs/aar/mogo-module-splash-debug.aar b/modules/mogo-module-splash/build/outputs/aar/mogo-module-splash-debug.aar new file mode 100644 index 0000000000..0b289052bc Binary files /dev/null and b/modules/mogo-module-splash/build/outputs/aar/mogo-module-splash-debug.aar differ diff --git a/modules/mogo-module-splash/build/outputs/logs/manifest-merger-debug-report.txt b/modules/mogo-module-splash/build/outputs/logs/manifest-merger-debug-report.txt new file mode 100644 index 0000000000..c1b06787f0 --- /dev/null +++ b/modules/mogo-module-splash/build/outputs/logs/manifest-merger-debug-report.txt @@ -0,0 +1,37 @@ +-- Merging decision tree log --- +manifest +ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:1:1-3:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:1:1-3:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:1:1-3:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:1:1-3:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:1:1-3:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:1:1-3:12 +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:1:1-3:12 + package + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:2:5-44 + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + android:versionName + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:1:1-3:12 + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + android:versionCode + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:1:1-3:12 + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + xmlns:android + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml:1:11-69 +uses-sdk +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml reason: use-sdk injection requested +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml +INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + android:targetSdkVersion + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + android:minSdkVersion + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + ADDED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml + INJECTED from /Users/arrowem/Documents/androidProject/Launcher/modules/mogo-module-splash/src/main/AndroidManifest.xml diff --git a/modules/mogo-module-splash/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin b/modules/mogo-module-splash/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin new file mode 100644 index 0000000000..aae35e6ec9 Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kapt3/incApCache/debug/ap-classpath-entries.bin differ diff --git a/modules/mogo-module-splash/build/tmp/kapt3/incApCache/debug/apt-cache.bin b/modules/mogo-module-splash/build/tmp/kapt3/incApCache/debug/apt-cache.bin new file mode 100644 index 0000000000..9983310f1d Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kapt3/incApCache/debug/apt-cache.bin differ diff --git a/modules/mogo-module-splash/build/tmp/kapt3/incApCache/debug/classpath-entries.bin b/modules/mogo-module-splash/build/tmp/kapt3/incApCache/debug/classpath-entries.bin new file mode 100644 index 0000000000..3a0a2babf5 Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kapt3/incApCache/debug/classpath-entries.bin differ diff --git a/modules/mogo-module-splash/build/tmp/kapt3/incApCache/debug/classpath-structure.bin b/modules/mogo-module-splash/build/tmp/kapt3/incApCache/debug/classpath-structure.bin new file mode 100644 index 0000000000..7544d63d90 Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kapt3/incApCache/debug/classpath-structure.bin differ diff --git a/modules/mogo-module-splash/build/tmp/kapt3/incApCache/debug/java-cache.bin b/modules/mogo-module-splash/build/tmp/kapt3/incApCache/debug/java-cache.bin new file mode 100644 index 0000000000..64bae7c8d2 Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kapt3/incApCache/debug/java-cache.bin differ diff --git a/modules/mogo-module-splash/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-module-splash_debug.kotlin_module b/modules/mogo-module-splash/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-module-splash_debug.kotlin_module new file mode 100644 index 0000000000..56b6730042 Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kapt3/incrementalData/debug/META-INF/mogo-module-splash_debug.kotlin_module differ diff --git a/modules/mogo-module-splash/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/SplashConst.class b/modules/mogo-module-splash/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/SplashConst.class new file mode 100644 index 0000000000..fa8db6ad16 Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/SplashConst.class differ diff --git a/modules/mogo-module-splash/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/SplashProvider.class b/modules/mogo-module-splash/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/SplashProvider.class new file mode 100644 index 0000000000..399ba0edfa Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/SplashProvider.class differ diff --git a/modules/mogo-module-splash/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragment.class b/modules/mogo-module-splash/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragment.class new file mode 100644 index 0000000000..6c380f541b Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragment.class differ diff --git a/modules/mogo-module-splash/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragmentKt.class b/modules/mogo-module-splash/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragmentKt.class new file mode 100644 index 0000000000..8680b170c1 Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragmentKt.class differ diff --git a/modules/mogo-module-splash/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/presenter/BydSplashPresenter.class b/modules/mogo-module-splash/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/presenter/BydSplashPresenter.class new file mode 100644 index 0000000000..64f9842dcd Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kapt3/incrementalData/debug/com/zhidao/mogo/module/splash/presenter/BydSplashPresenter.class differ diff --git a/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/SplashConst.java b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/SplashConst.java new file mode 100644 index 0000000000..4a25ce16b6 --- /dev/null +++ b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/SplashConst.java @@ -0,0 +1,17 @@ +package com.zhidao.mogo.module.splash; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0014\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u000e\n\u0002\b\u0002\b\u00c6\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002\u00a2\u0006\u0002\u0010\u0002R\u000e\u0010\u0003\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0005\u001a\u00020\u0004X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0006"}, d2 = {"Lcom/zhidao/mogo/module/splash/SplashConst;", "", "()V", "MODULE_NAME", "", "PATH_NAME", "mogo-module-splash_debug"}) +public final class SplashConst { + @org.jetbrains.annotations.NotNull() + public static final java.lang.String MODULE_NAME = "MODULE_SPLASH"; + @org.jetbrains.annotations.NotNull() + public static final java.lang.String PATH_NAME = "/splash/api"; + @org.jetbrains.annotations.NotNull() + public static final com.zhidao.mogo.module.splash.SplashConst INSTANCE = null; + + private SplashConst() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/SplashConst.kapt_metadata b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/SplashConst.kapt_metadata new file mode 100644 index 0000000000..ad91ac84cb Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/SplashConst.kapt_metadata differ diff --git a/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/SplashProvider.java b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/SplashProvider.java new file mode 100644 index 0000000000..470184b7e4 --- /dev/null +++ b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/SplashProvider.java @@ -0,0 +1,90 @@ +package com.zhidao.mogo.module.splash; + +import java.lang.System; + +/** + * 比亚迪车机provider + * + * @author tongchenfei + */ +@com.alibaba.android.arouter.facade.annotation.Route(path = "/splash/api") +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000X\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\b\n\u0000\n\u0002\u0010\u0002\n\u0000\b\u0007\u0018\u00002\u00020\u0001B\u0005\u00a2\u0006\u0002\u0010\u0002J\u001e\u0010\u0003\u001a\u0004\u0018\u00010\u00042\b\u0010\u0005\u001a\u0004\u0018\u00010\u00062\b\u0010\u0007\u001a\u0004\u0018\u00010\bH\u0016J\u0014\u0010\t\u001a\u0004\u0018\u00010\n2\b\u0010\u0005\u001a\u0004\u0018\u00010\u0006H\u0016J\b\u0010\u000b\u001a\u00020\fH\u0016J\b\u0010\r\u001a\u00020\fH\u0016J\n\u0010\u000e\u001a\u0004\u0018\u00010\u000fH\u0016J\n\u0010\u0010\u001a\u0004\u0018\u00010\u0011H\u0016J\n\u0010\u0012\u001a\u0004\u0018\u00010\u0013H\u0016J\n\u0010\u0014\u001a\u0004\u0018\u00010\u0015H\u0016J\b\u0010\u0016\u001a\u00020\fH\u0016J\n\u0010\u0017\u001a\u0004\u0018\u00010\u0018H\u0016J\b\u0010\u0019\u001a\u00020\u001aH\u0016J\u0012\u0010\u001b\u001a\u00020\u001c2\b\u0010\u0005\u001a\u0004\u0018\u00010\u0006H\u0016\u00a8\u0006\u001d"}, d2 = {"Lcom/zhidao/mogo/module/splash/SplashProvider;", "Lcom/mogo/service/module/IMogoModuleProvider;", "()V", "createFragment", "Landroidx/fragment/app/Fragment;", "context", "Landroid/content/Context;", "data", "Landroid/os/Bundle;", "createView", "Landroid/view/View;", "getAppName", "", "getAppPackage", "getCardLifecycle", "Lcom/mogo/service/module/IMogoModuleLifecycle;", "getLocationListener", "Lcom/mogo/map/location/IMogoLocationListener;", "getMapListener", "Lcom/mogo/map/listener/IMogoMapListener;", "getMarkerClickListener", "Lcom/mogo/map/marker/IMogoMarkerClickListener;", "getModuleName", "getNaviListener", "Lcom/mogo/map/navi/IMogoNaviListener;", "getType", "", "init", "", "mogo-module-splash_debug"}) +public final class SplashProvider implements com.mogo.service.module.IMogoModuleProvider { + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public com.mogo.map.navi.IMogoNaviListener getNaviListener() { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public com.mogo.map.location.IMogoLocationListener getLocationListener() { + return null; + } + + @java.lang.Override() + public int getType() { + return 0; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public com.mogo.map.marker.IMogoMarkerClickListener getMarkerClickListener() { + return null; + } + + @java.lang.Override() + public void init(@org.jetbrains.annotations.Nullable() + android.content.Context context) { + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public com.mogo.map.listener.IMogoMapListener getMapListener() { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String getAppPackage() { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public android.view.View createView(@org.jetbrains.annotations.Nullable() + android.content.Context context) { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public androidx.fragment.app.Fragment createFragment(@org.jetbrains.annotations.Nullable() + android.content.Context context, @org.jetbrains.annotations.Nullable() + android.os.Bundle data) { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String getModuleName() { + return null; + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + public java.lang.String getAppName() { + return null; + } + + @org.jetbrains.annotations.Nullable() + @java.lang.Override() + public com.mogo.service.module.IMogoModuleLifecycle getCardLifecycle() { + return null; + } + + public SplashProvider() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/SplashProvider.kapt_metadata b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/SplashProvider.kapt_metadata new file mode 100644 index 0000000000..523ca16b20 Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/SplashProvider.kapt_metadata differ diff --git a/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragment.java b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragment.java new file mode 100644 index 0000000000..ef85d3d893 --- /dev/null +++ b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragment.java @@ -0,0 +1,41 @@ +package com.zhidao.mogo.module.splash.fragment; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u00006\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\b\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\u000b\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u0002\n\u0002\b\u0003\u0018\u00002\u000e\u0012\u0004\u0012\u00020\u0000\u0012\u0004\u0012\u00020\u00020\u00012\u00020\u0003B\u0005\u00a2\u0006\u0002\u0010\u0004J\b\u0010\t\u001a\u00020\u0002H\u0014J\b\u0010\n\u001a\u00020\u0006H\u0014J\u0010\u0010\u000b\u001a\u00020\f2\u0006\u0010\r\u001a\u00020\u000eH\u0016J\b\u0010\u000f\u001a\u00020\u0010H\u0002J\b\u0010\u0011\u001a\u00020\u0010H\u0014J\b\u0010\u0012\u001a\u00020\u0010H\u0002R\u000e\u0010\u0005\u001a\u00020\u0006X\u0082\u000e\u00a2\u0006\u0002\n\u0000R\u000e\u0010\u0007\u001a\u00020\bX\u0082\u0004\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0013"}, d2 = {"Lcom/zhidao/mogo/module/splash/fragment/BydSplashFragment;", "Lcom/mogo/commons/mvp/MvpFragment;", "Lcom/zhidao/mogo/module/splash/presenter/BydSplashPresenter;", "Landroid/os/Handler$Callback;", "()V", "countDownTime", "", "handler", "Landroid/os/Handler;", "createPresenter", "getLayoutId", "handleMessage", "", "msg", "Landroid/os/Message;", "hideSplash", "", "initViews", "startCountDown", "mogo-module-splash_debug"}) +public final class BydSplashFragment extends com.mogo.commons.mvp.MvpFragment implements android.os.Handler.Callback { + private final android.os.Handler handler = null; + private int countDownTime = 5; + private java.util.HashMap _$_findViewCache; + + @java.lang.Override() + protected int getLayoutId() { + return 0; + } + + @java.lang.Override() + protected void initViews() { + } + + @org.jetbrains.annotations.NotNull() + @java.lang.Override() + protected com.zhidao.mogo.module.splash.presenter.BydSplashPresenter createPresenter() { + return null; + } + + private final void startCountDown() { + } + + @java.lang.Override() + public boolean handleMessage(@org.jetbrains.annotations.NotNull() + android.os.Message msg) { + return false; + } + + private final void hideSplash() { + } + + public BydSplashFragment() { + super(); + } +} \ No newline at end of file diff --git a/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragment.kapt_metadata b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragment.kapt_metadata new file mode 100644 index 0000000000..bf5a963193 Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragment.kapt_metadata differ diff --git a/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragmentKt.java b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragmentKt.java new file mode 100644 index 0000000000..af0a193cdc --- /dev/null +++ b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragmentKt.java @@ -0,0 +1,10 @@ +package com.zhidao.mogo.module.splash.fragment; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 2, d1 = {"\u0000\u0010\n\u0000\n\u0002\u0010\t\n\u0000\n\u0002\u0010\b\n\u0002\b\u0002\"\u000e\u0010\u0000\u001a\u00020\u0001X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0002\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\"\u000e\u0010\u0004\u001a\u00020\u0003X\u0086T\u00a2\u0006\u0002\n\u0000\u00a8\u0006\u0005"}, d2 = {"DEFAULT_COUNT_DOWN_DELAY", "", "DEFAULT_COUNT_DOWN_TIME", "", "MSG_COUNT_DOWN", "mogo-module-splash_debug"}) +public final class BydSplashFragmentKt { + public static final int DEFAULT_COUNT_DOWN_TIME = 5; + public static final int MSG_COUNT_DOWN = 1001; + public static final long DEFAULT_COUNT_DOWN_DELAY = 1000L; +} \ No newline at end of file diff --git a/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragmentKt.kapt_metadata b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragmentKt.kapt_metadata new file mode 100644 index 0000000000..2b97a3fb46 Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragmentKt.kapt_metadata differ diff --git a/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/presenter/BydSplashPresenter.java b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/presenter/BydSplashPresenter.java new file mode 100644 index 0000000000..63b7e91589 --- /dev/null +++ b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/presenter/BydSplashPresenter.java @@ -0,0 +1,12 @@ +package com.zhidao.mogo.module.splash.presenter; + +import java.lang.System; + +@kotlin.Metadata(mv = {1, 4, 1}, bv = {1, 0, 3}, k = 1, d1 = {"\u0000\u0010\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\u0018\u00002\b\u0012\u0004\u0012\u00020\u00020\u0001B\r\u0012\u0006\u0010\u0003\u001a\u00020\u0002\u00a2\u0006\u0002\u0010\u0004\u00a8\u0006\u0005"}, d2 = {"Lcom/zhidao/mogo/module/splash/presenter/BydSplashPresenter;", "Lcom/mogo/commons/mvp/Presenter;", "Lcom/zhidao/mogo/module/splash/fragment/BydSplashFragment;", "view", "(Lcom/zhidao/mogo/module/splash/fragment/BydSplashFragment;)V", "mogo-module-splash_debug"}) +public final class BydSplashPresenter extends com.mogo.commons.mvp.Presenter { + + public BydSplashPresenter(@org.jetbrains.annotations.NotNull() + com.zhidao.mogo.module.splash.fragment.BydSplashFragment view) { + super(null); + } +} \ No newline at end of file diff --git a/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/presenter/BydSplashPresenter.kapt_metadata b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/presenter/BydSplashPresenter.kapt_metadata new file mode 100644 index 0000000000..ee8173f90e Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/com/zhidao/mogo/module/splash/presenter/BydSplashPresenter.kapt_metadata differ diff --git a/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java new file mode 100644 index 0000000000..73693e1c55 --- /dev/null +++ b/modules/mogo-module-splash/build/tmp/kapt3/stubs/debug/error/NonExistentClass.java @@ -0,0 +1,4 @@ +package error; + +public final class NonExistentClass { +} \ No newline at end of file diff --git a/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/META-INF/mogo-module-splash_debug.kotlin_module b/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/META-INF/mogo-module-splash_debug.kotlin_module new file mode 100644 index 0000000000..56b6730042 Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/META-INF/mogo-module-splash_debug.kotlin_module differ diff --git a/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/SplashConst.class b/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/SplashConst.class new file mode 100644 index 0000000000..1a2df54aac Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/SplashConst.class differ diff --git a/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/SplashProvider.class b/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/SplashProvider.class new file mode 100644 index 0000000000..ea6c74c977 Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/SplashProvider.class differ diff --git a/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragment$initViews$1.class b/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragment$initViews$1.class new file mode 100644 index 0000000000..10e66de21a Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragment$initViews$1.class differ diff --git a/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragment.class b/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragment.class new file mode 100644 index 0000000000..7ca8624810 Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragment.class differ diff --git a/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragmentKt.class b/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragmentKt.class new file mode 100644 index 0000000000..28f1b45cf7 Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/fragment/BydSplashFragmentKt.class differ diff --git a/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/presenter/BydSplashPresenter.class b/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/presenter/BydSplashPresenter.class new file mode 100644 index 0000000000..83bcae04d2 Binary files /dev/null and b/modules/mogo-module-splash/build/tmp/kotlin-classes/debug/com/zhidao/mogo/module/splash/presenter/BydSplashPresenter.class differ diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/locationinfo/CloudLocationInfo.java b/services/mogo-service-api/src/main/java/com/mogo/service/cloud/location/CloudLocationInfo.java similarity index 100% rename from services/mogo-service-api/src/main/java/com/mogo/service/locationinfo/CloudLocationInfo.java rename to services/mogo-service-api/src/main/java/com/mogo/service/cloud/location/CloudLocationInfo.java diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/locationinfo/IMogoLocationInfoService.java b/services/mogo-service-api/src/main/java/com/mogo/service/cloud/location/IMogoLocationInfoService.java similarity index 100% rename from services/mogo-service-api/src/main/java/com/mogo/service/locationinfo/IMogoLocationInfoService.java rename to services/mogo-service-api/src/main/java/com/mogo/service/cloud/location/IMogoLocationInfoService.java diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/passport/IMogoPassportManager.java b/services/mogo-service-api/src/main/java/com/mogo/service/cloud/passport/IMogoPassportManager.java similarity index 100% rename from services/mogo-service-api/src/main/java/com/mogo/service/passport/IMogoPassportManager.java rename to services/mogo-service-api/src/main/java/com/mogo/service/cloud/passport/IMogoPassportManager.java diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/passport/IMogoTicketCallback.java b/services/mogo-service-api/src/main/java/com/mogo/service/cloud/passport/IMogoTicketCallback.java similarity index 100% rename from services/mogo-service-api/src/main/java/com/mogo/service/passport/IMogoTicketCallback.java rename to services/mogo-service-api/src/main/java/com/mogo/service/cloud/passport/IMogoTicketCallback.java diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/connection/IMessageResponse.java b/services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMessageResponse.java similarity index 85% rename from services/mogo-service-api/src/main/java/com/mogo/service/connection/IMessageResponse.java rename to services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMessageResponse.java index 053f90ec35..825c0a7a6e 100644 --- a/services/mogo-service-api/src/main/java/com/mogo/service/connection/IMessageResponse.java +++ b/services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMessageResponse.java @@ -1,4 +1,4 @@ -package com.mogo.service.connection; +package com.mogo.service.cloud.socket; /** * @author congtaowang diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/connection/IMogoLifecycleListener.java b/services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMogoLifecycleListener.java similarity index 77% rename from services/mogo-service-api/src/main/java/com/mogo/service/connection/IMogoLifecycleListener.java rename to services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMogoLifecycleListener.java index a65ddee335..d62560d075 100644 --- a/services/mogo-service-api/src/main/java/com/mogo/service/connection/IMogoLifecycleListener.java +++ b/services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMogoLifecycleListener.java @@ -1,4 +1,4 @@ -package com.mogo.service.connection; +package com.mogo.service.cloud.socket; public interface IMogoLifecycleListener { void onConnectFailure(); diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/connection/IMogoMsgAckListener.java b/services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMogoMsgAckListener.java similarity index 82% rename from services/mogo-service-api/src/main/java/com/mogo/service/connection/IMogoMsgAckListener.java rename to services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMogoMsgAckListener.java index 028587130b..a3392d29c8 100644 --- a/services/mogo-service-api/src/main/java/com/mogo/service/connection/IMogoMsgAckListener.java +++ b/services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMogoMsgAckListener.java @@ -1,4 +1,4 @@ -package com.mogo.service.connection; +package com.mogo.service.cloud.socket; /** * @author congtaowang diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/connection/IMogoOnMessageListener.java b/services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMogoOnMessageListener.java similarity index 82% rename from services/mogo-service-api/src/main/java/com/mogo/service/connection/IMogoOnMessageListener.java rename to services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMogoOnMessageListener.java index 61f6309570..36238d71f6 100644 --- a/services/mogo-service-api/src/main/java/com/mogo/service/connection/IMogoOnMessageListener.java +++ b/services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMogoOnMessageListener.java @@ -1,4 +1,4 @@ -package com.mogo.service.connection; +package com.mogo.service.cloud.socket; /** * @author congtaowang diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/connection/IMogoOnWebSocketMessageListener.java b/services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMogoOnWebSocketMessageListener.java similarity index 90% rename from services/mogo-service-api/src/main/java/com/mogo/service/connection/IMogoOnWebSocketMessageListener.java rename to services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMogoOnWebSocketMessageListener.java index ddddd14868..36d20d35d1 100644 --- a/services/mogo-service-api/src/main/java/com/mogo/service/connection/IMogoOnWebSocketMessageListener.java +++ b/services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMogoOnWebSocketMessageListener.java @@ -1,4 +1,4 @@ -package com.mogo.service.connection; +package com.mogo.service.cloud.socket; /** * 消息回调 diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/connection/IMogoSocketManager.java b/services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMogoSocketManager.java similarity index 97% rename from services/mogo-service-api/src/main/java/com/mogo/service/connection/IMogoSocketManager.java rename to services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMogoSocketManager.java index 791f39faba..b354eb9b07 100644 --- a/services/mogo-service-api/src/main/java/com/mogo/service/connection/IMogoSocketManager.java +++ b/services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMogoSocketManager.java @@ -1,4 +1,4 @@ -package com.mogo.service.connection; +package com.mogo.service.cloud.socket; import android.content.Context; diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/connection/IMogoWebSocketManager.java b/services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMogoWebSocketManager.java similarity index 96% rename from services/mogo-service-api/src/main/java/com/mogo/service/connection/IMogoWebSocketManager.java rename to services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMogoWebSocketManager.java index b9350a0c47..beadee2480 100644 --- a/services/mogo-service-api/src/main/java/com/mogo/service/connection/IMogoWebSocketManager.java +++ b/services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/IMogoWebSocketManager.java @@ -1,4 +1,4 @@ -package com.mogo.service.connection; +package com.mogo.service.cloud.socket; import android.content.Context; diff --git a/services/mogo-service-api/src/main/java/com/mogo/service/connection/WebSocketMsgType.java b/services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/WebSocketMsgType.java similarity index 92% rename from services/mogo-service-api/src/main/java/com/mogo/service/connection/WebSocketMsgType.java rename to services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/WebSocketMsgType.java index 27635e97e7..2ae0149ca3 100644 --- a/services/mogo-service-api/src/main/java/com/mogo/service/connection/WebSocketMsgType.java +++ b/services/mogo-service-api/src/main/java/com/mogo/service/cloud/socket/WebSocketMsgType.java @@ -1,4 +1,4 @@ -package com.mogo.service.connection; +package com.mogo.service.cloud.socket; public enum WebSocketMsgType { diff --git a/services/mogo-service/src/main/java/com/mogo/service/impl/locationinfo/MogoLocationInfoService.java b/services/mogo-service/src/main/java/com/mogo/service/impl/cloud/location/MogoLocationInfoService.java similarity index 93% rename from services/mogo-service/src/main/java/com/mogo/service/impl/locationinfo/MogoLocationInfoService.java rename to services/mogo-service/src/main/java/com/mogo/service/impl/cloud/location/MogoLocationInfoService.java index 411d8783dd..e2a2f20030 100644 --- a/services/mogo-service/src/main/java/com/mogo/service/impl/locationinfo/MogoLocationInfoService.java +++ b/services/mogo-service/src/main/java/com/mogo/service/impl/cloud/location/MogoLocationInfoService.java @@ -1,11 +1,11 @@ -package com.mogo.service.impl.locationinfo; +package com.mogo.service.impl.cloud; import android.content.Context; import com.alibaba.android.arouter.facade.annotation.Route; import com.mogo.map.location.MogoLocation; import com.mogo.service.MogoServicePaths; -import com.mogo.service.locationinfo.IMogoLocationInfoService; +import com.mogo.service.cloud.location.IMogoLocationInfoService; import com.mogo.utils.logger.Logger; import java.lang.reflect.Method; diff --git a/services/mogo-service/src/main/java/com/mogo/service/impl/passport/MogoPassportManager.java b/services/mogo-service/src/main/java/com/mogo/service/impl/cloud/passport/MogoPassportManager.java similarity index 88% rename from services/mogo-service/src/main/java/com/mogo/service/impl/passport/MogoPassportManager.java rename to services/mogo-service/src/main/java/com/mogo/service/impl/cloud/passport/MogoPassportManager.java index b60facf257..4ec53c56dc 100644 --- a/services/mogo-service/src/main/java/com/mogo/service/impl/passport/MogoPassportManager.java +++ b/services/mogo-service/src/main/java/com/mogo/service/impl/cloud/passport/MogoPassportManager.java @@ -1,11 +1,11 @@ -package com.mogo.service.impl.passport; +package com.mogo.service.impl.cloud; import android.content.Context; import com.alibaba.android.arouter.facade.annotation.Route; import com.mogo.service.MogoServicePaths; -import com.mogo.service.passport.IMogoPassportManager; -import com.mogo.service.passport.IMogoTicketCallback; +import com.mogo.service.cloud.passport.IMogoPassportManager; +import com.mogo.service.cloud.passport.IMogoTicketCallback; import com.mogo.utils.logger.Logger; import java.lang.reflect.Method; diff --git a/services/mogo-service/src/main/java/com/mogo/service/impl/connection/MogoSocketManager.java b/services/mogo-service/src/main/java/com/mogo/service/impl/cloud/socket/MogoSocketManager.java similarity index 90% rename from services/mogo-service/src/main/java/com/mogo/service/impl/connection/MogoSocketManager.java rename to services/mogo-service/src/main/java/com/mogo/service/impl/cloud/socket/MogoSocketManager.java index 922c4537cb..14ee89c87d 100644 --- a/services/mogo-service/src/main/java/com/mogo/service/impl/connection/MogoSocketManager.java +++ b/services/mogo-service/src/main/java/com/mogo/service/impl/cloud/socket/MogoSocketManager.java @@ -1,14 +1,14 @@ -package com.mogo.service.impl.connection; +package com.mogo.service.impl.cloud; import android.content.Context; import com.alibaba.android.arouter.facade.annotation.Route; import com.mogo.cloud.socket.entity.MsgBody; import com.mogo.service.MogoServicePaths; -import com.mogo.service.connection.IMogoLifecycleListener; -import com.mogo.service.connection.IMogoMsgAckListener; -import com.mogo.service.connection.IMogoOnMessageListener; -import com.mogo.service.connection.IMogoSocketManager; +import com.mogo.service.cloud.socket.IMogoLifecycleListener; +import com.mogo.service.cloud.socket.IMogoMsgAckListener; +import com.mogo.service.cloud.socket.IMogoOnMessageListener; +import com.mogo.service.cloud.socket.IMogoSocketManager; import com.mogo.utils.logger.Logger; import java.lang.reflect.Method; diff --git a/services/mogo-service/src/main/java/com/mogo/service/impl/connection/MogoWebSocketManager.java b/services/mogo-service/src/main/java/com/mogo/service/impl/cloud/socket/MogoWebSocketManager.java similarity index 91% rename from services/mogo-service/src/main/java/com/mogo/service/impl/connection/MogoWebSocketManager.java rename to services/mogo-service/src/main/java/com/mogo/service/impl/cloud/socket/MogoWebSocketManager.java index 3a7d3c5f22..892fb97f7c 100644 --- a/services/mogo-service/src/main/java/com/mogo/service/impl/connection/MogoWebSocketManager.java +++ b/services/mogo-service/src/main/java/com/mogo/service/impl/cloud/socket/MogoWebSocketManager.java @@ -1,10 +1,10 @@ -package com.mogo.service.impl.connection; +package com.mogo.service.impl.cloud; import android.content.Context; import com.alibaba.android.arouter.facade.annotation.Route; -import com.mogo.service.connection.IMogoOnWebSocketMessageListener; -import com.mogo.service.connection.IMogoWebSocketManager; +import com.mogo.service.cloud.socket.IMogoOnWebSocketMessageListener; +import com.mogo.service.cloud.socket.IMogoWebSocketManager; import com.mogo.utils.logger.Logger; import java.lang.reflect.Method;